Metadata annotation facility - does it work?

This might not be the right forum ... if it is not, does anybody know which forum would be better?
I'm using the beta release of the compiler and tried to define an annotation type, annotate a class and read the annotation. Pretty simple and straightforward, but my innocent attempt made the compiler crash with an uncaught AssertionError.
Since compilers usually do not crash and this is my first attempt with annotations I am wondering whether the annotation facility is supposed to work in the beta release. Does anybody know? Has anybody successfully done anything with annotations?
Perhaps it's my fault and I have been doing something really, really malicious. Can anybody tell? My example looks like this:
public interface SortingOrder<T> {
    boolean isLess(T t1, T t2);
public final class Name {
    // ... stuff ...
public final class LastNameLess implements SortingOrder<Name> {
     public boolean isLess(Name n1, Name n2) {
                      // ... whatever ...
                      return false;
public @interface SortingOrderAnnotation {
    Class<? extends SortingOrder> value();
@SortingOrderAnnotation(LastNameLess.class)
public final class AnnotationReader {
   // ... I intended using the SortingOrder class here but I didn't get that far, hence this is empty  ...
public final class Test {
     public static void main(String[] args) {
                           AnnotationReader ref = new AnnotationReader();  // <<< kills the compiler
}

Yeah I see the same thing with beta 1, by compiling *.java followed by Test.java
The simplest I've got it down to, with an identical stack trace, is this:
SomeAnnotation.java:    @interface SomeAnnotation {
        Class<?> value();
    }Annotated.java:
    @SomeAnnotation(Object.class)
    class Annotated { }Foo.java:
    class Foo {
            public static void main(String[] args) {
                    Annotated a;
    }If you save those three files in an empty directory, cd into that directory and, using beta 1, issue:
javac -source 1.5 *.java
javac -source 1.5 Foo.java... you get this:
java.lang.AssertionError
        at com.sun.tools.javac.jvm.ClassReader$AnnotationDeproxy.deproxy(ClassReader.java:994)
        at com.sun.tools.javac.jvm.ClassReader$AnnotationDeproxy.deproxyCompound(ClassReader.java:967)
        at com.sun.tools.javac.jvm.ClassReader$AnnotationDeproxy.deproxyCompoundList(ClassReader.java:955)
        at com.sun.tools.javac.jvm.ClassReader$AnnotationCompleter.enterAnnotation(ClassReader.java:1107)
        at com.sun.tools.javac.comp.Annotate.flush(Annotate.java:92)
        at com.sun.tools.javac.comp.Attr.visitVarDef(Attr.java:509)
        at com.sun.tools.javac.tree.Tree$VarDef.accept(Tree.java:511)
        at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:256)
        at com.sun.tools.javac.comp.Attr.attribStat(Attr.java:291)
        at com.sun.tools.javac.comp.Attr.attribStats(Attr.java:307)
        at com.sun.tools.javac.comp.Attr.visitBlock(Attr.java:562)
        at com.sun.tools.javac.tree.Tree$Block.accept(Tree.java:540)
        at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:256)
        at com.sun.tools.javac.comp.Attr.attribStat(Attr.java:291)
        at com.sun.tools.javac.comp.Attr.visitMethodDef(Attr.java:498)
        at com.sun.tools.javac.tree.Tree$MethodDef.accept(Tree.java:482)
        at com.sun.tools.javac.comp.Attr.attribTree(Attr.java:256)
        at com.sun.tools.javac.comp.Attr.attribStat(Attr.java:291)
        at com.sun.tools.javac.comp.Attr.attribClassBody(Attr.java:2301)
        at com.sun.tools.javac.comp.Attr.attribClass(Attr.java:2235)
        at com.sun.tools.javac.comp.Attr.attribClass(Attr.java:2188)
        at com.sun.tools.javac.main.JavaCompiler.compile(JavaCompiler.java:412)
        at com.sun.tools.javac.main.Main.compile(Main.java:593)
        at com.sun.tools.javac.main.Main.compile(Main.java:545)
        at com.sun.tools.javac.Main.compile(Main.java:44)
        at com.sun.tools.javac.Main.main(Main.java:35)langer: is that what you're seeing?
I can't reproduce it with the latest CAP build (42) in either case.
Mark

Similar Messages

  • Sync metadata to multiple files - how does that work?

    Frustrating.  In Library Module of LR4.4 under Vista 32, I have corrected a "Capture Time" of a single jpg Photo via the "Edit Capture Time" dialog.  The new date correctly shows up in the "Date Time Original" EXIF field of the Metadata panel on the right.
    Now, I want to sync that date to other jpgs which all come with incorrect "Date Time Original" - so, I highlight the above photo, mark the other ones to less light grey, press "Sync Metadata".  THe dialog of  "Sync Metadata" appears, showing the new date under "ICPT image" as "date created" - so far so good.  I mark that field, and press the ok button and the sync runs.  After that, no change is shown to the respective field of any of the photos metadata fields to be sync'd, no sync has actually happened, and even the "Save Metadata to file" command does cure this situation.
    Using the command with a single target file instead of multiple ones does not help either.
    What does help?
    Why can't I update a set of superold pictures to their correct "date created" date via Metadata sync? This Metadata sync does not sync.
    thanks for comments
    Gerd
    Message was edited by: gerdh - clarification

    Well, of course, one can always take the escape route to software that works. - 
    However, IF Adobe advertises "Metadata sync" in a software licensed for money, THEN this function should work. Am I right or am I right?
    I found, that particularly the one single Metadata field "Capture time" can be set for a multitude of images (selected before using this command from the pulldown menue) - which helped for my problem.  But what about other Metadata fields, if the "Sync Metadata" function does not work as intended?  No word in the documentation such as "there is a function "Sync Metadata" but please do not expect ANY function at all when using it".
    Using a freeware such as ExifMeta to get arund a "non-function" is not the purpose of using a software such as Lightroom - please understand.
    Gerd

  • Database metadata - does it work in Oracle ?

    I have logged previous entries regarding this subject all to no avail.
    I am using Oracle 8.1.6, and the JDK 1.2 thin drivers.
    I am attempting to read the metadata from the database for the user tables, however I keep getting SYSTEM tables as well.
    I have been using the databasemetadata.getTables method with one of the parameters set to {"TABLE"}, this retrieves ALL tables including system tables.
    When I try this with {"SYSTEM TABLE"} it returns NO entries at all. At least if this were to work, I could use the results to prune out the list I get back from the earlier call.
    Is it not possible in Oracle (via the Oracle JDBC drivers) to get a list of user tables as opposed to system tables?
    Both of these operations (i.e. USER versus SYSTEM) work perfectly in Sybase and SQL-Server, so I don't understand why it doesn't work in Oracle.
    The Oracle JavaDoc for these methods actually refers to these specific values as well, suggesting that it should work - has anyone had any success with this ?
    null

    Please explain it does not work in APEX? Is the application updating tables that have a trigger? APEX does NOT override trigger actions. Is it possible the values your trigger is looking for are NOT available in your APEX application? Can you post the trigger code here for review?
    Thank you,
    Tony Miller
    Webster, TX
    What if you really were stalking a paranoid schizophrenic... Would they know?
    If this question is answered, please mark the thread as closed and assign points where earned..

  • Show AppXray dependencies does not work for all projects

    I have three projects. One of them will display the appxray dependncies and the other two will not. When I select show dependencies, nothing happens. There is no logging inside the workshop m7.log.0 but the .log has the following. How do I get this to work?
    Config details follow logging.
    !MESSAGE Warning: Detected recursive attempt by part com.m7.wide.eclipse.jstudio.DocEditor.jsp to create itself (this is probably, but not necessarily, a bug)
    !STACK 1
    org.eclipse.ui.PartInitException: Warning: Detected recursive attempt by part com.m7.wide.eclipse.jstudio.DocEditor.jsp to create itself (this is probably, but not necessarily, a bug)
         at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:543)
         at org.eclipse.ui.internal.WorkbenchPage$6.run(WorkbenchPage.java:1746)
         at org.eclipse.swt.widgets.Synchronizer.syncExec(Synchronizer.java:152)
         at org.eclipse.ui.internal.UISynchronizer.syncExec(UISynchronizer.java:28)
         at org.eclipse.swt.widgets.Display.syncExec(Display.java:3413)
         at org.eclipse.ui.internal.WorkbenchPage.getEditors(WorkbenchPage.java:1743)
         at com.m7.wide.eclipse.Util.activateEditor(Unknown Source)
         at com.m7.wide.eclipse.jstudio.A.requestFocus(Unknown Source)
         at com.m7.wide.doceditor.AbstractEditor.requestFocus(Unknown Source)
         at com.m7.wide.doceditor.AbstractPane.requestFocus(Unknown Source)
         at com.m7.wide.doceditor.flow.FlowDesignPane.requestFocus(Unknown Source)
         at com.m7.wide.doceditor.CompoundPane.requestFocus(Unknown Source)
         at com.m7.wide.doceditor.CompoundPane.setHidden(Unknown Source)
         at com.m7.wide.doceditor.MultiPaneEditor.activePaneChanged(Unknown Source)
         at com.m7.wide.eclipse.jstudio.PaneEditorPart.activate(Unknown Source)
         at com.m7.wide.eclipse.jstudio.DynamicMultiPageEditor.A(Unknown Source)
         at com.m7.wide.eclipse.jstudio.DynamicMultiPageEditor.pageChange(Unknown Source)
         at com.m7.wide.eclipse.jstudio.DynamicMultiPageEditor.createPages(Unknown Source)
         at org.eclipse.ui.part.MultiPageEditorPart.createPartControl(MultiPageEditorPart.java:241)
         at org.eclipse.ui.internal.EditorReference.createPartHelper(EditorReference.java:609)
         at org.eclipse.ui.internal.EditorReference.createPart(EditorReference.java:384)
         at org.eclipse.ui.internal.WorkbenchPartReference.getPart(WorkbenchPartReference.java:552)
         at org.eclipse.ui.internal.PartPane.setVisible(PartPane.java:283)
         at org.eclipse.ui.internal.presentations.PresentablePart.setVisible(PresentablePart.java:126)
         at org.eclipse.ui.internal.presentations.util.PresentablePartFolder.select(PresentablePartFolder.java:268)
         at org.eclipse.ui.internal.presentations.util.LeftToRightTabOrder.select(LeftToRightTabOrder.java:65)
         at org.eclipse.ui.internal.presentations.util.TabbedStackPresentation.selectPart(TabbedStackPresentation.java:391)
         at org.eclipse.ui.internal.PartStack.refreshPresentationSelection(PartStack.java:1102)
         at org.eclipse.ui.internal.PartStack.setSelection(PartStack.java:1051)
         at org.eclipse.ui.internal.PartStack.showPart(PartStack.java:1256)
         at org.eclipse.ui.internal.PartStack.add(PartStack.java:442)
         at org.eclipse.ui.internal.EditorStack.add(EditorStack.java:109)
         at org.eclipse.ui.internal.EditorSashContainer.addEditor(EditorSashContainer.java:60)
         at org.eclipse.ui.internal.EditorAreaHelper.addToLayout(EditorAreaHelper.java:212)
         at org.eclipse.ui.internal.EditorAreaHelper.addEditor(EditorAreaHelper.java:202)
         at org.eclipse.ui.internal.EditorManager.createEditorTab(EditorManager.java:758)
         at org.eclipse.ui.internal.EditorManager.openEditorFromDescriptor(EditorManager.java:665)
         at org.eclipse.ui.internal.EditorManager.openEditor(EditorManager.java:628)
         at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditorBatched(WorkbenchPage.java:2360)
         at org.eclipse.ui.internal.WorkbenchPage.busyOpenEditor(WorkbenchPage.java:2295)
         at org.eclipse.ui.internal.WorkbenchPage.access$9(WorkbenchPage.java:2287)
         at org.eclipse.ui.internal.WorkbenchPage$9.run(WorkbenchPage.java:2273)
         at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
         at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2268)
         at org.eclipse.ui.internal.WorkbenchPage.openEditor(WorkbenchPage.java:2249)
         at org.eclipse.ui.ide.IDE.openEditor(IDE.java:753)
         at org.eclipse.ui.ide.IDE.openEditor(IDE.java:697)
         at com.m7.wide.eclipse.Eclipse3WideEnv.openEditor(Unknown Source)
         at com.m7.wide.eclipse.EclipseWideEnv.openEditor(Unknown Source)
         at com.m7.wide.project.artifact.action.OpenAction.run(Unknown Source)
         at com.m7.wide.eclipse.jstudio.appexplorer.AppExplorerTreeViewer.open(Unknown Source)
         at org.eclipse.jface.viewers.StructuredViewer$2.run(StructuredViewer.java:741)
         at org.eclipse.core.internal.runtime.InternalPlatform.run(InternalPlatform.java:1044)
         at org.eclipse.core.runtime.Platform.run(Platform.java:783)
         at org.eclipse.ui.internal.JFaceUtil$1.run(JFaceUtil.java:44)
         at org.eclipse.jface.util.SafeRunnable.run(SafeRunnable.java:148)
         at org.eclipse.jface.viewers.StructuredViewer.fireOpen(StructuredViewer.java:739)
         at org.eclipse.jface.viewers.StructuredViewer.handleOpen(StructuredViewer.java:968)
         at org.eclipse.jface.viewers.StructuredViewer$6.handleOpen(StructuredViewer.java:1067)
         at org.eclipse.jface.util.OpenStrategy.fireOpenEvent(OpenStrategy.java:243)
         at org.eclipse.jface.util.OpenStrategy.access$2(OpenStrategy.java:238)
         at org.eclipse.jface.util.OpenStrategy$1.handleEvent(OpenStrategy.java:277)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:843)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3080)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2713)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1699)
         at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1663)
         at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:367)
         at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143)
         at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:103)
         at org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:226)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:376)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:163)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at org.eclipse.core.launcher.Main.invokeFramework(Main.java:334)
         at org.eclipse.core.launcher.Main.basicRun(Main.java:278)
         at org.eclipse.core.launcher.Main.run(Main.java:973)
         at org.eclipse.core.launcher.Main.eclipse_main(Main.java:948)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
         at java.lang.reflect.Method.invoke(Unknown Source)
         at com.m7.installer.util.NitroxMain$1.run(NitroxMain.java:29)
         at java.awt.event.InvocationEvent.dispatch(Unknown Source)
         at java.awt.EventQueue.dispatchEvent(Unknown Source)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.pumpEvents(Unknown Source)
         at java.awt.EventDispatchThread.run(Unknown Source)
    !SUBENTRY 1 org.eclipse.ui 4 0 2005-12-13 11:58:43.346
    !MESSAGE Warning: Detected recursive attempt by part com.m7.wide.eclipse.jstudio.DocEditor.jsp to create itself (this is probably, but not necessarily, a bug)
    *** Date: Tue Dec 13 12:48:19 PST 2005
    *** Platform Details:
    *** System properties:
    awt.toolkit=sun.awt.windows.WToolkit
    eclipse.application=org.eclipse.ui.ide.workbench
    eclipse.buildId=M20050929-0840
    eclipse.commands=-os
    win32
    -ws
    win32
    -arch
    x86
    -launcher
    C:\packages\Eclipse3.1\eclipse\eclipse.exe
    -name
    Eclipse
    -showsplash
    600
    -exitdata
    7b4_30
    -feature
    com.m7.nitrox
    -application
    org.eclipse.ui.ide.workbench
    -vm
    C:\WINDOWS\system32\javaw.exe
    eclipse.product=com.m7.nitrox
    eclipse.startTime=1134504472516
    eclipse.vm=C:\WINDOWS\system32\javaw.exe
    eclipse.vmargs=-Xms128M
    -Xmx512M
    -Dosgi.splashLocation=C:\packages\Workshop_for_Struts_3.0_471\Workshop\splash.bmp
    -jar
    C:\packages\Eclipse3.1\eclipse\startup.jar
    eof=eof
    file.encoding=Cp1252
    file.encoding.pkg=sun.io
    file.separator=\
    java.awt.graphicsenv=sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob=sun.awt.windows.WPrinterJob
    java.class.path=C:\packages\Eclipse3.1\eclipse\startup.jar
    java.class.version=48.0
    java.endorsed.dirs=C:\Program Files\Java\j2re1.4.2_04\lib\endorsed
    java.ext.dirs=C:\Program Files\Java\j2re1.4.2_04\lib\ext
    java.home=C:\Program Files\Java\j2re1.4.2_04
    java.io.tmpdir=C:\DOCUME~1\charris\LOCALS~1\Temp\
    java.library.path=C:\WINDOWS\system32;.;C:\WINDOWS\System32;C:\WINDOWS;C:\PROGRA~1\PVCS\vm\win32\bin;C:\PROGRA~1\PVCS\vm\common\bin\win32;C:\Program Files\Common Files\Software AG;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\system32\nls;C:\WINDOWS\system32\nls\ENGLISH;C:\Program Files\Attachmate\E!E2K\;C:\Magicsql\sqlany50\win;C:\Magicsql\netmap;c:\java\bin;c:\java\bin\pstools;C:\Program Files\Microsoft SQL Server\80\Tools\BINN;C:\packages\apache-ant-1.6.2\bin;C:\Program Files\Novell\ZENworks\;C:\packages\jwsdp-1.6\jwsdp-shared\bin;Z:.;Y:.;
    java.runtime.name=Java(TM) 2 Runtime Environment, Standard Edition
    java.runtime.version=1.4.2_04-b05
    java.specification.name=Java Platform API Specification
    java.specification.vendor=Sun Microsystems Inc.
    java.specification.version=1.4
    java.util.prefs.PreferencesFactory=java.util.prefs.WindowsPreferencesFactory
    java.vendor=Sun Microsystems Inc.
    java.vendor.url=http://java.sun.com/
    java.vendor.url.bug=http://java.sun.com/cgi-bin/bugreport.cgi
    java.version=1.4.2_04
    java.vm.info=mixed mode
    java.vm.name=Java HotSpot(TM) Client VM
    java.vm.specification.name=Java Virtual Machine Specification
    java.vm.specification.vendor=Sun Microsystems Inc.
    java.vm.specification.version=1.0
    java.vm.vendor=Sun Microsystems Inc.
    java.vm.version=1.4.2_04-b05
    line.separator=
    m7.launcher=true
    org.eclipse.jdt.debug.ui.scrapbookActive=false
    org.osgi.framework.bootdelegation=*
    org.osgi.framework.executionenvironment=J2SE-1.4
    org.osgi.framework.language=en
    org.osgi.framework.os.name=WindowsXP
    org.osgi.framework.os.version=5.1
    org.osgi.framework.processor=x86
    org.osgi.framework.system.packages=javax.accessibility,javax.crypto,javax.crypto.interfaces,javax.crypto.spec,javax.imageio,javax.imageio.event,javax.imageio.metadata,javax.imageio.plugins.jpeg,javax.imageio.spi,javax.imageio.stream,javax.naming,javax.naming.directory,javax.naming.event,javax.naming.ldap,javax.naming.spi,javax.net,javax.net.ssl,javax.print,javax.print.attribute,javax.print.attribute.standard,javax.print.event,javax.rmi,javax.rmi.CORBA,javax.security.auth,javax.security.auth.callback,javax.security.auth.kerberos,javax.security.auth.login,javax.security.auth.spi,javax.security.auth.x500,javax.security.cert,javax.sound.midi,javax.sound.midi.spi,javax.sound.sampled,javax.sound.sampled.spi,javax.sql,javax.swing,javax.swing.border,javax.swing.colorchooser,javax.swing.event,javax.swing.filechooser,javax.swing.plaf,javax.swing.plaf.basic,javax.swing.plaf.metal,javax.swing.plaf.multi,javax.swing.table,javax.swing.text,javax.swing.text.html,javax.swing.text.html.parser,javax.swing.text.rtf,javax.swing.tree,javax.swing.undo,javax.transaction,javax.transaction.xa,javax.xml.parsers,javax.xml.transform,javax.xml.transform.dom,javax.xml.transform.sax,javax.xml.transform.stream,org.ietf.jgss,org.omg.CORBA,org.omg.CORBA_2_3,org.omg.CORBA_2_3.portable,org.omg.CORBA.DynAnyPackage,org.omg.CORBA.ORBPackage,org.omg.CORBA.portable,org.omg.CORBA.TypeCodePackage,org.omg.CosNaming,org.omg.CosNaming.NamingContextExtPackage,org.omg.CosNaming.NamingContextPackage,org.omg.Dynamic,org.omg.DynamicAny,org.omg.DynamicAny.DynAnyFactoryPackage,org.omg.DynamicAny.DynAnyPackage,org.omg.IOP,org.omg.IOP.CodecFactoryPackage,org.omg.IOP.CodecPackage,org.omg.Messaging,org.omg.PortableInterceptor,org.omg.PortableInterceptor.ORBInitInfoPackage,org.omg.PortableServer,org.omg.PortableServer.CurrentPackage,org.omg.PortableServer.POAManagerPackage,org.omg.PortableServer.POAPackage,org.omg.PortableServer.portable,org.omg.PortableServer.ServantLocatorPackage,org.omg.SendingContext,org.omg.stub.java.rmi,org.w3c.dom,org.xml.sax,org.xml.sax.ext,org.xml.sax.helpers
    org.osgi.framework.vendor=Eclipse
    org.osgi.framework.version=1.3.0
    org.osgi.supports.framework.extension=true
    org.w3c.css.sac.parser=com.steadystate.css.parser.SACParser
    org.xml.sax.driver=org.apache.crimson.parser.XMLReaderImpl
    os.arch=x86
    os.name=Windows XP
    os.version=5.1
    osgi.arch=x86
    osgi.bundles=org.eclipse.core.runtime@2:start, org.eclipse.update.configurator@3:start
    osgi.bundlestore=c:\packages\Eclipse3.1\eclipse\configuration\org.eclipse.osgi\bundles
    osgi.configuration.area=file:/c:/packages/Eclipse3.1/eclipse/configuration/
    osgi.framework=file:/c:/packages/Eclipse3.1/eclipse/plugins/org.eclipse.osgi_3.1.1.jar
    osgi.framework.beginningstartlevel=1
    osgi.framework.shape=jar
    osgi.framework.version=3.1.1
    osgi.install.area=file:/c:/packages/Eclipse3.1/eclipse/
    osgi.instance.area=file:/C:/packages/Eclipse3.1/eclipse/workspace/
    osgi.instance.area.default=file:/C:/Documents and Settings/charris/workspace/
    osgi.logfile=C:\packages\Eclipse3.1\eclipse\workspace\.metadata\.log
    osgi.manifest.cache=c:\packages\Eclipse3.1\eclipse\configuration\org.eclipse.osgi\manifests
    osgi.nl=en_US
    osgi.os=win32
    osgi.splashLocation=C:\packages\Workshop_for_Struts_3.0_471\Workshop\splash.bmp
    osgi.splashPath=platform:/base/plugins/org.eclipse.platform
    osgi.syspath=c:\packages\Eclipse3.1\eclipse\plugins
    osgi.ws=win32
    path.separator=;
    sun.arch.data.model=32
    sun.boot.class.path=C:\Program Files\Java\j2re1.4.2_04\lib\rt.jar;C:\Program Files\Java\j2re1.4.2_04\lib\i18n.jar;C:\Program Files\Java\j2re1.4.2_04\lib\sunrsasign.jar;C:\Program Files\Java\j2re1.4.2_04\lib\jsse.jar;C:\Program Files\Java\j2re1.4.2_04\lib\jce.jar;C:\Program Files\Java\j2re1.4.2_04\lib\charsets.jar;C:\Program Files\Java\j2re1.4.2_04\classes
    sun.boot.library.path=C:\Program Files\Java\j2re1.4.2_04\bin
    sun.cpu.endian=little
    sun.cpu.isalist=pentium i486 i386
    sun.io.unicode.encoding=UnicodeLittle
    sun.java2d.fontpath=
    sun.os.patch.level=Service Pack 1
    user.country=US
    user.dir=C:\packages\Eclipse3.1\eclipse
    user.home=C:\Documents and Settings\charris
    user.language=en
    user.name=CHarris
    user.timezone=America/Los_Angeles
    user.variant=
    vendor=Apache Software Foundation
    vendor-url=http://xml.apache.org/xalan-j
    version=2.4.1
    *** Features:
    com.m7.nitrox (3.0.0) "Workshop"
    org.eclipse.emf (2.1.1) "Eclipse Modeling Framework (EMF)"
    org.eclipse.emf.doc (2.1.1) "Eclipse Modeling Framework (EMF) Programmers Guide"
    org.eclipse.emf.ecore.sdo (2.1.1) "EMF Service Data Objects (SDO)"
    org.eclipse.emf.ecore.sdo.doc (2.1.1) "EMF Service Data Objects (SDO) Programmers Guide"
    org.eclipse.emf.ecore.sdo.source (2.1.1) "EMF Service Data Objects (SDO) Source"
    org.eclipse.emf.examples (2.1.0) "Eclipse Modeling Framework (EMF) Examples"
    org.eclipse.emf.source (2.1.1) "Eclipse Modeling Framework (EMF) Source"
    org.eclipse.gef (3.1.1) "Graphical Editing Framework"
    org.eclipse.gef.examples (3.1.1) "GEF Examples"
    org.eclipse.gef.sdk (3.1.1) "Graphical Editing Framework Developer Resources"
    org.eclipse.gef.source (3.1.1) "Graphical Editing Framework Developer Resources"
    org.eclipse.jdt (3.1.1) "Eclipse Java Development Tools"
    org.eclipse.jdt.source (3.1.1) "Eclipse Java Development Tools SDK"
    org.eclipse.jem (1.1.0.1) "Java EMF Model"
    org.eclipse.jem.sdk (1.1.0.1) "Java EMF Model SDK"
    org.eclipse.jem.source (1.1.0.1) "Java EMF Model Source"
    org.eclipse.jst (0.7.1) "J2EE Standard Tools"
    org.eclipse.jst.sdk (0.7.1) "J2EE Standard Tools SDK"
    org.eclipse.pde (3.1.1) "Eclipse Plug-in Development Environment"
    org.eclipse.pde.source (3.1.1) "Eclipse Plug-in Development Environment Developer Resources"
    org.eclipse.platform (3.1.1) "Eclipse Platform"
    org.eclipse.platform.source (3.1.1) "Eclipse Platform Plug-in Developer Resources"
    org.eclipse.rcp (3.1.1) "Eclipse RCP"
    org.eclipse.rcp.source (3.1.1) "Eclipse RCP Plug-in Developer Resources"
    org.eclipse.sdk (3.1.1) "Eclipse Project SDK"
    org.eclipse.sdk.examples (3.0.1) "Eclipse SDK Examples"
    org.eclipse.team.extras (3.0.0) "Eclipse FTP and WebDAV Support"
    org.eclipse.ve (1.1.0.1) "Visual Editor"
    org.eclipse.ve.sdk (1.1.0.1) "Visual Editor SDK"
    org.eclipse.ve.source (1.1.0.1) "Visual Editor Source"
    org.eclipse.wst (0.7.1) "Web Standard Tools"
    org.eclipse.wst.sdk (0.7.1) "Web Standard Tools SDK"
    org.eclipse.xsd (2.1.1) "XML Schema Infoset Model (XSD)"
    org.eclipse.xsd.doc (2.1.1) "XML Schema Infoset Model (XSD) Programmers Guide"
    org.eclipse.xsd.source (2.1.1) "XML Schema Infoset Model (XSD) Source"
    *** Plug-in Registry:
    com.ibm.etools.emf.event (3.0.0.1) "Event Model" [Resolved]
    com.m7.nitrox (3.0.0) "Workshop" [Active]
    com.m7.nitrox.database (3.0.0) "Workshop Database" [Resolved]
    com.m7.nitrox.debugger (3.0.0) "Workshop JSP Debugger" [Resolved]
    com.m7.nitrox.eclipse3.0 (3.0.0) "Workshop Eclipse 3.0" [Resolved]
    com.m7.nitrox.ejb3 (3.0.0) "Workshop EJB3 Persistence" [Resolved]
    com.m7.nitrox.hibernate (3.0.0) "Workshop Hibernate" [Resolved]
    com.m7.nitrox.jsf (3.0.0) "Workshop JSF" [Resolved]
    com.m7.nitrox.jsp (3.0.0) "Workshop JSP" [Resolved]
    com.m7.nitrox.jstl (3.0.0) "Workshop JSTL" [Resolved]
    com.m7.nitrox.jwebapp (3.0.0) "Workshop Java Web Application" [Resolved]
    com.m7.nitrox.orm (3.0.0) "Workshop ORM" [Resolved]
    com.m7.nitrox.struts (3.0.0) "Workshop Struts" [Resolved]
    org.apache.ant (1.6.5) "Apache Ant" [Active]
    org.apache.axis (1.2.1) "Axis121 Plug-in" [Resolved]
    org.apache.lucene (1.4.3) "Apache Lucene" [Resolved]
    org.apache.wsil4j (1.0.0) "Apache WSIL4J 1.0" [Resolved]
    org.apache.xerces (2.7.0) "Xerces 2.7.0" [Resolved]
    org.eclipse.ant.core (3.1.1) "Ant Build Tool Core" [Resolved]
    org.eclipse.ant.ui (3.1.1) "Ant UI" [Active]
    org.eclipse.compare (3.1.1) "Compare Support" [Resolved]
    org.eclipse.compare.examples (3.0.0) "Compare Example" [Resolved]
    org.eclipse.compare.examples.xml (3.0.0) "XML Compare Support" [Resolved]
    org.eclipse.core.boot (3.1.0) "Core Boot" [Resolved]
    org.eclipse.core.commands (3.1.0) "Commands" [Active]
    org.eclipse.core.expressions (3.1.0) "Expression Language" [Active]
    org.eclipse.core.filebuffers (3.1.0) "File Buffers" [Active]
    org.eclipse.core.resources (3.1.0) "Core Resource Management" [Active]
    org.eclipse.core.resources.compatibility (3.1.0) "Core Resource Management Compatibility Fragment" [Resolved]
    org.eclipse.core.resources.win32 (3.1.0) "Core Resource Management Win32 Fragment" [Resolved]
    org.eclipse.core.runtime (3.1.1) "Core Runtime" [Active]
    org.eclipse.core.runtime.compatibility (3.1.0) "Core Runtime Plug-in Compatibility" [Active]
    org.eclipse.core.variables (3.1.0) "Core Variables" [Resolved]
    org.eclipse.debug.core (3.1.0) "Debug Core" [Active]
    org.eclipse.debug.ui (3.1.1) "Debug UI" [Active]
    org.eclipse.draw2d (3.1.1) "Draw2d" [Resolved]
    org.eclipse.draw2d.doc.isv (3.1.1) "Draw2D Documentation" [Resolved]
    org.eclipse.emf (2.1.1) "Eclipse Modeling Framework (EMF)" [Resolved]
    org.eclipse.emf.activities (2.1.0) "EMF Activities" [Resolved]
    org.eclipse.emf.ant (2.1.0) "EMF Ant Tasks" [Resolved]
    org.eclipse.emf.codegen (2.1.0) "EMF Template Code Generator" [Resolved]
    org.eclipse.emf.codegen.ecore (2.1.0) "EMF Ecore Code Generation" [Resolved]
    org.eclipse.emf.codegen.ecore.ui (2.1.0) "EMF Ecore Code Generation UI" [Resolved]
    org.eclipse.emf.codegen.ui (2.1.0) "EMF Template Code Generator UI" [Resolved]
    org.eclipse.emf.common (2.1.0) "EMF Common" [Active]
    org.eclipse.emf.common.ui (2.1.0) "EMF Common UI" [Resolved]
    org.eclipse.emf.commonj.sdo (2.1.0) "CommonJ SDO" [Resolved]
    org.eclipse.emf.doc (2.1.1) "Eclipse Modeling Framework (EMF) Programmers Guide" [Resolved]
    org.eclipse.emf.ecore (2.1.0) "EMF Ecore" [Active]
    org.eclipse.emf.ecore.change (2.1.0) "EMF Ecore Change Model" [Resolved]
    org.eclipse.emf.ecore.change.edit (2.1.0) "EMF Ecore Change Edit Support" [Resolved]
    org.eclipse.emf.ecore.edit (2.1.1) "EMF Ecore Edit Support" [Resolved]
    org.eclipse.emf.ecore.editor (2.1.0) "Sample Ecore Editor" [Resolved]
    org.eclipse.emf.ecore.sdo (2.1.1) "EMF Service Data Objects (SDO)" [Resolved]
    org.eclipse.emf.ecore.sdo.doc (2.1.1) "EMF Service Data Objects (SDO) Programmers Guide" [Resolved]
    org.eclipse.emf.ecore.sdo.edit (2.1.0) "EMF Service Data Objects (SDO) Edit Support" [Resolved]
    org.eclipse.emf.ecore.sdo.editor (2.1.0) "EMF Service Data Objects (SDO) Editor" [Resolved]
    org.eclipse.emf.ecore.sdo.source (2.1.1) "EMF Service Data Objects (SDO) Source" [Resolved]
    org.eclipse.emf.ecore.xmi (2.1.0) "EMF XMI" [Active]
    org.eclipse.emf.edit (2.1.1) "EMF Edit" [Resolved]
    org.eclipse.emf.edit.ui (2.1.0) "EMF Edit UI" [Resolved]
    org.eclipse.emf.examples (2.1.0) "Eclipse Modeling Framework (EMF) Examples" [Resolved]
    org.eclipse.emf.importer (2.1.0) "EMF Model Import Support" [Resolved]
    org.eclipse.emf.importer.ecore (2.1.0) "EMF Ecore Importer" [Resolved]
    org.eclipse.emf.importer.java (2.1.1) "EMF Annotated Java Importer" [Resolved]
    org.eclipse.emf.importer.rose (2.1.1) "EMF Rose Importer" [Resolved]
    org.eclipse.emf.java (2.1.0) "EMF Java" [Resolved]
    org.eclipse.emf.java.edit (2.1.0) "EMF Java Edit" [Resolved]
    org.eclipse.emf.java.editor (2.1.0) "EMF Java Editor" [Resolved]
    org.eclipse.emf.mapping (2.1.0) "EMF Mapping" [Resolved]
    org.eclipse.emf.mapping.ecore2ecore (2.1.0) "Ecore to Ecore Mapping" [Resolved]
    org.eclipse.emf.mapping.ecore2ecore.editor (2.1.0) "Ecore to Ecore Mapping Editor" [Resolved]
    org.eclipse.emf.mapping.ecore2xml (2.1.0) "Ecore to XML Mapping" [Resolved]
    org.eclipse.emf.mapping.ecore2xml.ui (2.1.1) "Ecore to XML Mapping UI" [Resolved]
    org.eclipse.emf.mapping.ui (2.1.0) "EMF Mapping UI" [Resolved]
    org.eclipse.emf.mapping.xsd2ecore (2.1.0) "XSD to Ecore Mapping" [Resolved]
    org.eclipse.emf.mapping.xsd2ecore.editor (2.1.0) "XSD to Ecore Mapping Editor" [Resolved]
    org.eclipse.emf.source (2.1.1) "Eclipse Modeling Framework (EMF) Source" [Resolved]
    org.eclipse.gef (3.1.1) "Graphical Editing Framework" [Resolved]
    org.eclipse.gef.doc.isv (3.1.1) "Graphical Editing Framework Documentation" [Resolved]
    org.eclipse.gef.examples.flow (3.1.1) "GEF Flow Editor Example" [Resolved]
    org.eclipse.gef.examples.logic (3.1.1) "GEF Logic Editor Example" [Resolved]
    org.eclipse.gef.examples.shapes (3.1.1) "GEF Shape Editor Example" [Resolved]
    org.eclipse.gef.examples.source (3.1.1) "GEF Examples" [Resolved]
    org.eclipse.gef.examples.text (3.1.1) "GEF Text Editor Example" [Resolved]
    org.eclipse.gef.source (3.1.1) "Graphical Editing Framework Developer Resources" [Resolved]
    org.eclipse.help (3.1.0) "Help System Core" [Active]
    org.eclipse.help.appserver (3.1.0) "Help Application Server" [Resolved]
    org.eclipse.help.base (3.1.0) "Help System Base" [Resolved]
    org.eclipse.help.examples.ex1 (3.0.0) "Online Help Sample" [Resolved]
    org.eclipse.help.ui (3.1.1) "Help System UI" [Resolved]
    org.eclipse.help.webapp (3.1.0) "Help System Webapp" [Resolved]
    org.eclipse.jdt (3.1.0) "Eclipse Java Development Tools" [Resolved]
    org.eclipse.jdt.core (3.1.1) "Java Development Tools Core" [Active]
    org.eclipse.jdt.debug (3.1.1) "JDI Debug Model" [Active]
    org.eclipse.jdt.debug.ui (3.1.1) "JDI Debug UI" [Active]
    org.eclipse.jdt.doc.isv (3.1.1) "Eclipse JDT Plug-in Developer Guide" [Resolved]
    org.eclipse.jdt.doc.user (3.1.1) "Eclipse Java Development User Guide" [Resolved]
    org.eclipse.jdt.junit (3.1.1) "Java Development Tools JUnit support" [Resolved]
    org.eclipse.jdt.junit.runtime (3.1.0) "Java Development Tools JUnit runtime support" [Resolved]
    org.eclipse.jdt.launching (3.1.0) "Java Development Tools Launching Support" [Active]
    org.eclipse.jdt.source (3.1.1) "Eclipse Java Development Tools SDK" [Resolved]
    org.eclipse.jdt.ui (3.1.1) "Java Development Tools UI" [Active]
    org.eclipse.jdt.ui.examples.projects (3.0.1) "Java Development Tools Example Projects" [Resolved]
    org.eclipse.jem (1.1.0.1) "Java EMF Model" [Resolved]
    org.eclipse.jem.beaninfo (1.1.0.1) "Java EMF Model BeanInfo (Introspection) Support" [Resolved]
    org.eclipse.jem.proxy (1.1.0.1) "Java EMF Model Proxy Support" [Resolved]
    org.eclipse.jem.sdk (1.1.0) "Java EMF Model SDK" [Resolved]
    org.eclipse.jem.source (1.1.0.1) "Java EMF Model Source" [Resolved]
    org.eclipse.jem.ui (1.1.0.1) "Java EMF Model UI" [Resolved]
    org.eclipse.jem.util (1.1.0) "Java EMF Model Utilities" [Installed]
    org.eclipse.jem.util (1.1.0.1) "Java EMF Model Utilities" [Active]
    org.eclipse.jem.workbench (1.1.0.1) "Java EMF Model Workbench Support" [Resolved]
    org.eclipse.jface (3.1.1) "JFace" [Active]
    org.eclipse.jface.text (3.1.1) "JFace Text" [Active]
    org.eclipse.jst (0.7.0) "J2EE Standard Tools" [Resolved]
    org.eclipse.jst.common.annotations.controller (0.7.1) "Annotation Controller Plug-in" [Resolved]
    org.eclipse.jst.common.annotations.core (0.7.0) "Annotation Core Plug-in" [Resolved]
    org.eclipse.jst.common.annotations.ui (0.7.0) "Ui Plug-in" [Resolved]
    org.eclipse.jst.common.frameworks (0.7.0) "Integration Plug-in" [Resolved]
    org.eclipse.jst.common.navigator.java (0.7.1) "Navigator Plug-in" [Resolved]
    org.eclipse.jst.ejb.ui (0.7.0) "WTP EJB UI Plug-in" [Resolved]
    org.eclipse.jst.j2ee (0.7.1) "J2EE Component" [Resolved]
    org.eclipse.jst.j2ee.core (0.7.1) "J2EE Core Component" [Resolved]
    org.eclipse.jst.j2ee.ejb (0.7.0) "EJB component Plug-in" [Resolved]
    org.eclipse.jst.j2ee.ejb.annotation.model (0.7.0) "EJB Annotation Model Plug-in" [Resolved]
    org.eclipse.jst.j2ee.ejb.annotations.emitter (0.7.0) "EJB Emitter Plug-in" [Resolved]
    org.eclipse.jst.j2ee.ejb.annotations.ui (0.7.1) "EJB Annotations Ui Plug-in" [Resolved]
    org.eclipse.jst.j2ee.ejb.annotations.xdoclet (0.7.1) "Xdoclet Annotations Plug-in" [Resolved]
    org.eclipse.jst.j2ee.jca (0.7.0) "JCA Plug-in" [Resolved]
    org.eclipse.jst.j2ee.jca.ui (0.7.0) "WTP JCA UI Plug-in" [Resolved]
    org.eclipse.jst.j2ee.navigator.ui (0.7.0) "J2EE Extensions to Common Navigator" [Resolved]
    org.eclipse.jst.j2ee.ui (0.7.1) "WTP J2EE UI Plug-in" [Resolved]
    org.eclipse.jst.j2ee.web (0.7.1) "Web Plug-in" [Resolved]
    org.eclipse.jst.j2ee.webservice (0.7.0) "Web Service Plug-in" [Resolved]
    org.eclipse.jst.j2ee.webservices.ui (0.7.0) "WTP Webservice UI Plug-in" [Resolved]
    org.eclipse.jst.jsp.core (0.7.0) "Structured Source JSP Model" [Installed]
    org.eclipse.jst.jsp.core (0.7.1) "Structured Source JSP Model" [Active]
    org.eclipse.jst.jsp.ui (0.7.0) "SSE JSP Source Editor" [Installed]
    org.eclipse.jst.jsp.ui (0.7.1) "SSE JSP Source Editor" [Active]
    org.eclipse.jst.server.core (0.7.0) "Java Server Support" [Resolved]
    org.eclipse.jst.server.generic.core (0.7.0) "Generic Server Plugin" [Resolved]
    org.eclipse.jst.server.generic.serverdefinitions (0.7.0) "Generic server example definitions" [Resolved]
    org.eclipse.jst.server.generic.ui (0.7.0) "Generic Server Plugin UI" [Resolved]
    org.eclipse.jst.server.geronimo.core (0.7.0) "Geronimo server support" [Resolved]
    org.eclipse.jst.server.geronimo.ui (0.7.0) "Geronimo server UI support" [Resolved]
    org.eclipse.jst.server.tomcat.core (0.7.0) "Apache Tomcat Support" [Resolved]
    org.eclipse.jst.server.tomcat.ui (0.7.0) "Apache Tomcat UI Support" [Resolved]
    org.eclipse.jst.server.ui (0.7.0) "Java Server UI Support" [Resolved]
    org.eclipse.jst.server.websphere.core (0.7.0) "WebSphere Generic Server Definition Core Plug-in" [Resolved]
    org.eclipse.jst.servlet.ui (0.7.1) "WTP Servlet UI Plug-in" [Resolved]
    org.eclipse.jst.source (0.7.1) "J2EE Standard Tools SDK" [Resolved]
    org.eclipse.jst.ws (0.7.1) "Web Services" [Resolved]
    org.eclipse.jst.ws.axis.consumption.core (0.7.0) "Web service Axis Consumption Core" [Resolved]
    org.eclipse.jst.ws.axis.consumption.ui (0.7.1) "Webservice Axis Consumption UI" [Resolved]
    org.eclipse.jst.ws.axis.creation.ui (0.7.0) "Webservice Axis Creation UI" [Resolved]
    org.eclipse.jst.ws.consumption (0.7.0) "Web Services Consumption" [Resolved]
    org.eclipse.jst.ws.consumption.ui (0.7.1) "Web Services Consumption Graphical User Interface" [Resolved]
    org.eclipse.jst.ws.creation.ejb.ui (0.7.0) "Web Services Creation EJB Graphical User Interface" [Resolved]
    org.eclipse.jst.ws.creation.ui (0.7.1) "Web Services Creation Graphical User Interface" [Resolved]
    org.eclipse.jst.ws.uddiregistry (0.7.0) "Web Services Universal Description Discovery and Integration Registry" [Resolved]
    org.eclipse.jst.ws.ui (0.7.1) "Web Services Graphical User Interface" [Resolved]
    org.eclipse.ltk.core.refactoring (3.1.0) "Refactoring Core" [Active]
    org.eclipse.ltk.ui.refactoring (3.1.1) "Refactoring UI" [Active]
    org.eclipse.osgi.services (3.1.1) "OSGi Release 3 Services" [Resolved]
    org.eclipse.osgi.util (3.1.1) "OSGi R3 Utility Classes" [Resolved]
    org.eclipse.pde (3.1.0) "Eclipse Plug-in Development Environment" [Resolved]
    org.eclipse.pde.build (3.1.0) "Plug-in Development Environment Build Support" [Resolved]
    org.eclipse.pde.core (3.1.1) "Plug-in Development Core" [Resolved]
    org.eclipse.pde.doc.user (3.1.1) "Eclipse Plug-in Development User Guide" [Resolved]
    org.eclipse.pde.junit.runtime (3.1.0) "PDE JUnit Plug-in Test" [Resolved]
    org.eclipse.pde.runtime (3.1.1) "Plug-in Development Environment Runtime" [Resolved]
    org.eclipse.pde.source (3.1.1) "Eclipse Plug-in Development Environment Developer Resources" [Resolved]
    org.eclipse.pde.ui (3.1.1) "Plug-in Development UI" [Resolved]
    org.eclipse.platform (3.1.1) "Eclipse Platform" [Resolved]
    org.eclipse.platform.doc.isv (3.1.1) "Eclipse Platform Plug-in Developer Guide" [Resolved]
    org.eclipse.platform.doc.user (3.1.1) "Eclipse Workbench User Guide" [Resolved]
    org.eclipse.platform.source (3.1.1) "Eclipse Platform Plug-in Developer Resources" [Resolved]
    org.eclipse.platform.so

    What kind of projects are they (Struts/JSF/Hibernate)? Does the working project differ in any way with other two apps?
    What exactly is not working? Are they recognized by workshop as Struts/JSF/Hibernate app?
    Please send the .log to [email protected]

  • IChat 4 AV does not work in Leopard

    iChat 4 AV does not work in OS 10.5. iChat 3 worked in OS 10.4.x with no problems. Why the problem?
    I have iMac G5 20-inch with 2.5-gb memory using Motorola SB5101 cable modem provided by ISP Roadrunner (Brighthouse Bakersfield CA).
    I am relatively new to the Apple world (12 months switching from the dark side). I am not a hardware-software engineer. Read discussions, and tried a few things to no avail; eg, no where to set port settings on cable modem.
    It appears most people paid for something that does not work. So, now what? Is Apple working on a fix? If so, any idea when it will be released?

    Got similar problems. Interesting, I can chat with Test Buddies but not to real buddies. Here is the error message:
    Date/Time: 2007-11-09 10:04:30.644 +0200
    OS Version: 10.5 (Build 9A581)
    Report Version: 4
    iChat Connection Log:
    2007-11-09 10:04:03 +0200: AVChat started with ID 32662992.
    2007-11-09 10:04:03 +0200: [email protected]: State change from AVChatNoState to AVChatStateWaiting.
    2007-11-09 10:04:03 +0200: 0x10ff5840: State change from AVChatNoState to AVChatStateInvited.
    2007-11-09 10:04:17 +0200: 0x10ff5840: State change from AVChatStateInvited to AVChatStateConnecting.
    2007-11-09 10:04:17 +0200: [email protected]: State change from AVChatStateWaiting to AVChatStateConnecting.
    2007-11-09 10:04:29 +0200: 0x10ff5840: State change from AVChatStateConnecting to AVChatStateEnded.
    2007-11-09 10:04:29 +0200: 0x10ff5840: Error -8 (Did not receive a response from 0x10ff5840.)
    2007-11-09 10:04:29 +0200: [email protected]: State change from AVChatStateConnecting to AVChatStateEnded.
    2007-11-09 10:04:29 +0200: [email protected]: Error -8 (Did not receive a response from 0x10ff5840.)
    Video Conference Error Report:
    859.209385 @SIP/SIP.c:2719 type=4 (900A0015/0)
    [SIPConnectIPPort failed]
    Video Conference Support Report:
    0.392838 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 1 returns 1
    0.965632 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    0.966509 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    7.099533 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK15455e462ad3dd41
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 747
    v=0
    o=dan-paulmedrea 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2160
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:1005295555
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:312059907
    7.307439 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK15455e462ad3dd41
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 INVITE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    7.307679 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK15455e462ad3dd41
    To: "u0" <sip:user@rip:16402>;tag=1991018852
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>
    User-Agent: Viceroy 1.3
    Content-Length: 0
    7.357462 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK15455e462ad3dd41
    To: "u0" <sip:user@rip:16402>;tag=1991018852
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 450
    [v=0
    o=vcm9 0 0 IN IP4 rip
    s=0
    c=IN IP4 rip
    b=AS:2147483647
    t=0 0
    a=hwi:1124:2:2160
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:3440414635
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:431366814
    7.358418 @SIP/Transport.c:2353 type=1 (00000000/0)
    [ACK sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK7514327d7715098f
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=1991018852
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 ACK
    User-Agent: Viceroy 1.3
    Content-Length: 0
    7.766005 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Received the first BWD packet from rip:16402]
    8.079778 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Avg=101080.00, NSDev=1.38%]
    8.436829 @:0 type=1 (00000000/1)
    [Bandwidth Detection]
    [Avg=873079.30, NSDev=2.51%]
    8.823120 @:0 type=1 (00000000/2)
    [Bandwidth Detection]
    [Avg=3173058.20, NSDev=2.84%]
    9.196386 @SIP/Transport.c:347 type=2 (00000000/0)
    [MESSAGE sip:user@lip:16402 SIP/2.0
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK1194d6c34f8224f1
    Max-Forwards: 70
    To: "0" <sip:user@lip:16402>;tag=1838072543
    From: "u0" <sip:user@rip:16402>;tag=1991018852
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    9.197111 @SIP/Transport.c:2353 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK1194d6c34f8224f1
    To: "0" <sip:user@lip:16402>;tag=1838072543
    From: "u0" <sip:user@rip:16402>;tag=1991018852
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    26.645122 @SIP/Transport.c:2353 type=1 (00000000/0)
    [BYE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK189203f968f17316
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=1991018852
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 2 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    26.858240 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK189203f968f17316
    To: "u0" <sip:user@rip:16402>;tag=1991018852
    From: "0" <sip:user@lip:16402>;tag=1838072543
    Call-ID: 63db6ac4-8e98-11dc-ae0c-e993f3274012@lip
    CSeq: 2 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    179.261714 @Video Conference/VCInitiateConference.m:1582 type=2 (00000000/0)
    [Connection Data for call id: 3 returns 1
    179.834273 @Video Conference/VCInitiateConference.m:1597 type=2 (00000000/0)
    [Prepare Connection With Remote Data - remote VCConnectionData: 1, local VCConnectionData: 1
    179.848799 @Video Conference/VCInitiateConference.m:1701 type=2 (00000000/0)
    [Initiate Conference To User: u0 with Remote VCConnectionData: 1 with Local Connection Data: 1 conferenceSettings: 1]
    180.550754 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK0af0869c36687fee
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@sip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 748
    v=0
    o=dan-paulmedrea 0 0 IN IP4 sip
    s=0
    c=IN IP4 sip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2160
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2458756784
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:2067598229
    180.765447 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 100 Trying
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK0af0869c36687fee
    To: "u0" <sip:user@rip:16402>
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 INVITE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    180.765742 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 180 Ringing
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK0af0869c36687fee
    To: "u0" <sip:user@rip:16402>;tag=834309359
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>
    User-Agent: Viceroy 1.3
    Content-Length: 0
    180.837972 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK0af0869c36687fee
    To: "u0" <sip:user@rip:16402>;tag=834309359
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@rip:16402>
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 449
    [v=0
    o=vcm39 0 0 IN IP4 rip
    s=0
    c=IN IP4 rip
    b=AS:2147483647
    t=0 0
    a=hwi:1056:2:2000
    a=bandwidthDetection:YES
    a=iChatEncryption:NO
    m=audio 16402 RTP/AVP 110
    a=rtcp:16402
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpID:2756655198
    m=video 16402 RTP/AVP 126
    a=rtcp:16402
    a=rtpmap:126 X-H264/90000
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480
    a=framerate:20
    a=rtpID:362565796
    180.838262 @SIP/Transport.c:2353 type=1 (00000000/0)
    [ACK sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK4aa5e3bf08e25310
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=834309359
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 ACK
    User-Agent: Viceroy 1.3
    Content-Length: 0
    181.247211 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Received the first BWD packet from rip:16402]
    181.560616 @:0 type=1 (00000000/0)
    [Bandwidth Detection]
    [Avg=100874.10, NSDev=1.96%]
    181.870297 @:0 type=1 (00000000/1)
    [Bandwidth Detection]
    [Avg=1201110.60, NSDev=101.47%]
    182.307391 @:0 type=1 (00000000/2)
    [Bandwidth Detection]
    [Avg=3136373.30, NSDev=4.02%]
    203.448331 @SIP/Transport.c:347 type=2 (00000000/0)
    [MESSAGE sip:user@lip:16402 SIP/2.0
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK3094acac353a305e
    Max-Forwards: 70
    To: "0" <sip:user@lip:16402>;tag=1335411467
    From: "u0" <sip:user@rip:16402>;tag=834309359
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Type: text/plain
    Content-Length: 4
    [PING]
    203.449038 @SIP/Transport.c:2353 type=1 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP rip:16402;branch=z9hG4bK3094acac353a305e
    To: "0" <sip:user@lip:16402>;tag=1335411467
    From: "u0" <sip:user@rip:16402>;tag=834309359
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 1 MESSAGE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    206.325829 @SIP/Transport.c:2353 type=1 (00000000/0)
    [BYE sip:user@rip:16402 SIP/2.0
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK253b08010f40d542
    Max-Forwards: 70
    To: "u0" <sip:user@rip:16402>;tag=834309359
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 2 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    206.535623 @SIP/Transport.c:347 type=2 (00000000/0)
    [SIP/2.0 200 OK
    Via: SIP/2.0/UDP sip:16402;branch=z9hG4bK253b08010f40d542
    To: "u0" <sip:user@rip:16402>;tag=834309359
    From: "0" <sip:user@lip:16402>;tag=1335411467
    Call-ID: cb3df538-8e98-11dc-ae0c-c994e6814012@lip
    CSeq: 2 BYE
    User-Agent: Viceroy 1.3
    Content-Length: 0
    857.209513 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK06d81b3d46cdaf11
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1166564833
    Call-ID: 5e8fe318-8e9a-11dc-ae0c-dd4148874012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 748
    v=0
    o=dan-paulmedrea 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2160
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2180123230
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1488738594
    857.710250 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK06d81b3d46cdaf11
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1166564833
    Call-ID: 5e8fe318-8e9a-11dc-ae0c-dd4148874012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 748
    v=0
    o=dan-paulmedrea 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2160
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2180123230
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1488738594
    858.710845 @SIP/Transport.c:2353 type=1 (00000000/0)
    [INVITE sip:user@rip SIP/2.0
    Via: SIP/2.0/UDP lip:16402;branch=z9hG4bK06d81b3d46cdaf11
    Max-Forwards: 70
    To: "u0" <sip:user@rip>
    From: "0" <sip:user@lip:16402>;tag=1166564833
    Call-ID: 5e8fe318-8e9a-11dc-ae0c-dd4148874012@lip
    CSeq: 1 INVITE
    Contact: <sip:user@lip:16402>;isfocus
    User-Agent: Viceroy 1.3
    Content-Type: application/sdp
    Content-Length: 748
    v=0
    o=dan-paulmedrea 0 0 IN IP4 lip
    s=0
    c=IN IP4 lip
    b=AS:2147483647
    t=0 0
    a=hwi:17412:2:2160
    a=iChatEncryption:YES
    a=bandwidthDetection:YES
    m=audio 16402 RTP/AVP 110 121 12 3 0
    a=rtcp:16402
    a=rtpmap:121 speex/16000
    a=rtpmap:122 speex/8000
    a=rtpmap:113 X-AAC_LD/44100
    a=rtpmap:110 X-AAC_LD/22050
    a=rtpmap:3 GSM/8000
    a=rtpmap:0 PCMU/8000
    a=rtpID:2180123230
    m=video 16402 RTP/AVP 123 126 34
    a=rtcp:16402
    a=rtpmap:123 H264/90000
    a=rtpmap:126 X-H264/90000
    a=rtpmap:34 H263/90000
    a=fmtp:34 imagesize 1 rules 30:352:288
    a=framerate:30
    a=RTCP:AUDIO 16402 VIDEO 16402
    a=fmtp:126 imagesize 0 rules 20:640:480:640:480:20
    a=fmtp:123 imagesize 0 rules 20:640:480:640:480:20
    a=rtpID:1488738594
    Video Conference User Report:
    0.000000 @:0 type=5 (00000000/16402)
    [Local SIP port]
    0.000046 @:0 type=5 (00000000/16402)
    [Local SIP port]
    0.000091 @:0 type=5 (00000000/16402)
    [Local SIP port]
    9.032366 @:0 type=5 (00000000/60)
    [Detected bandwidth (kbits/s): 2627 up, 2627 down. (00000000)
    9.038265 @Video Conference/VideoConferenceMultiController.m:1957 type=5 (00000000/0)
    [Start Conference With UserID: u0]
    182.515961 @:0 type=5 (00000000/60)
    [Detected bandwidth (kbits/s): 2627 up, 2627 down. (00000000)
    182.519862 @Video Conference/VideoConferenceMultiController.m:1957 type=5 (00000000/0)
    [Start Conference With UserID: u0]
    815.539310 @Video Conference/VideoConferenceMultiController.m:1476 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 280 bytes of local IP and port data (7 entries). Remote data was 160 bytes (4 entries).
    843.624494 @Video Conference/VideoConferenceMultiController.m:1476 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 280 bytes of local IP and port data (7 entries). Remote data was 0 bytes (0 entries).
    857.156819 @Video Conference/VideoConferenceMultiController.m:1509 type=5 (00000000/0)
    [Initiate Conference To User Cert Version: u0 with 160 bytes of connection data.
    859.431745 @Video Conference/VideoConferenceMultiController.m:1476 type=5 (00000000/0)
    [IP And Port Data With Caller IP And Port Data: Obtained 280 bytes of local IP and port data (7 entries). Remote data was 0 bytes (0 entries).
    Binary Images Description for "iChat":
    0x1000 - 0x230fff com.apple.iChat 4.0 (601) /Applications/iChat.app/Contents/MacOS/iChat
    0x2a4000 - 0x311fff com.apple.Bluetooth 2.0 (2.0f20) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
    0x35d000 - 0x4aefff com.apple.viceroy.framework 343.5 /System/Library/PrivateFrameworks/VideoConference.framework/Versions/A/VideoCon ference
    0x51c000 - 0x55bfff com.apple.vmutils 4.1 (104) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x57d000 - 0x596fff com.apple.frameworks.preferencepanes 12.0 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x5b0000 - 0x5e9fff com.apple.remotedesktop.screensharing 1.0 /System/Library/PrivateFrameworks/ScreenSharing.framework/Versions/A/ScreenShar ing
    0x5f9000 - 0x60dfff com.apple.ScreenSaver 2.0 /System/Library/Frameworks/ScreenSaver.framework/Versions/A/ScreenSaver
    0x61d000 - 0x63bfff libexpat.1.dylib /usr/lib/libexpat.1.dylib
    0x643000 - 0x674fff com.apple.iChatCommonGUI 4.0 (601) /System/Library/PrivateFrameworks/iChatCommonGUI.framework/iChatCommonGUI
    0x69b000 - 0x69efff com.apple.BezelServicesFW 1.4.533 /System/Library/PrivateFrameworks/BezelServices.framework/Versions/A/BezelServi ces
    0x6e9000 - 0x6eefff com.apple.iChat.Styles.Balloons 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Balloons.transcriptstyle/Contents/MacO S/Balloons
    0x99e3000 - 0x99e6fff com.apple.iChat.Styles.Boxes 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Boxes.transcriptstyle/Contents/MacOS/B oxes
    0x99ed000 - 0x99f3fff com.apple.iChat.Styles.Compact 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Compact.transcriptstyle/Contents/MacOS /Compact
    0x99fb000 - 0x99fdfff com.apple.iChat.Styles.Text 4.0 (601) /Applications/iChat.app/Contents/PlugIns/Text.transcriptstyle/Contents/MacOS/Te xt
    0xd3b9000 - 0xd3b9fff liblangid.dylib /usr/lib/liblangid.dylib
    0xd6ce000 - 0xd6cefff com.apple.JavaPluginCocoa 12.0.0 /Library/Internet Plug-Ins/JavaPluginCocoa.bundle/Contents/MacOS/JavaPluginCocoa
    0xd6dd000 - 0xd6defff com.apple.iChat.PersonIconPlugIn 1.0 (601) /Applications/iChat.app/Contents/PlugIns/PersonIcon.plugin/Contents/MacOS/Perso nIcon
    0xd8e4000 - 0xd9cafff com.apple.RawCamera.bundle 2.0 /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0xe0a0000 - 0xe0a5fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0xe1de000 - 0xe1e7fff com.apple.IOFWDVComponents 1.9.5 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0xe1f7000 - 0xe1fafff com.apple.audio.AudioIPCPlugIn 1.0.4 /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0xe200000 - 0xe205fff com.apple.audio.AppleHDAHALPlugIn 1.4.0 (1.4.0a23) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xe268000 - 0xe2d5fff com.DivXInc.DivXDecoder 6.6.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0xe2e4000 - 0xe31ffff com.apple.QuickTimeFireWireDV.component 7.2.1 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0xe32c000 - 0xe359fff com.apple.QuickTimeIIDCDigitizer 7.2.1 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0xe364000 - 0xe3aefff com.apple.QuickTimeUSBVDCDigitizer 2.1.6 /System/Library/QuickTime/QuickTimeUSBVDCDigitizer.component/Contents/MacOS/Qui ckTimeUSBVDCDigitizer
    0xe3d5000 - 0xe556fff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0xe584000 - 0xe7eafff com.apple.ATIRadeonX1000GLDriver 1.5.16 (5.1.6) /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRade onX1000GLDriver
    0xe82d000 - 0xe849fff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0xf9dd000 - 0xfb6afff com.apple.audio.codecs.Components 1.5 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x10334000 - 0x1033bfff com.apple.JavaVM 12.0.0 /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x10ec5000 - 0x10ec8fff com.apple.iokit.IOQTComponents 1.6 /System/Library/Components/IOQTComponents.component/Contents/MacOS/IOQTComponen ts
    0x11381000 - 0x11386fff com.apple.AppleMPEG2Codec 1.0 (211) /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x113ca000 - 0x113e6fff com.apple.QuartzComposer.ExtraPatches 2.0 (106) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x113f8000 - 0x11415fff com.apple.audio.midi.CoreMIDI 1.6 (42) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1142d000 - 0x1143afff com.apple.QuartzComposer.Backdrops 1.0 (1) /System/Library/Graphics/Quartz Composer Patches/Backdrops.plugin/Contents/MacOS/Backdrops
    0x117d9000 - 0x117f3fff com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x117f8000 - 0x11833fff com.apple.AppleVAFramework 4.0.14 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x119ad000 - 0x119c7fff com.apple.applepixletvideo 1.2.10 (1.2d10) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x12438000 - 0x124aafff com.apple.audio.units.Components 1.5 /System/Library/Components/CoreAudio.component/Contents/MacOS/CACodecs
    0x126dc000 - 0x129d7fff com.apple.QuickTimeH264.component 7.2.1 /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x12a4f000 - 0x12c45fff net.telestream.wmv.import 2.1.3.10 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x12c76000 - 0x12e27fff net.telestream.wmv.advanced 2.1.3.10 /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x12e6a000 - 0x12f81fff www.zygodigital.com ZyGoVideo Pro version 3.5.0.1 Copyright 2004 ZyGoDigital LLC. (3.5.0.1) /Library/QuickTime/ZyGoVideo.component/Contents/MacOS/ZyGoVideo
    0x70000000 - 0x700e3fff com.apple.audio.units.Components 1.5 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe2dfff dyld /usr/lib/dyld
    0x90003000 - 0x90011fff libz.1.dylib /usr/lib/libz.1.dylib
    0x90012000 - 0x90025fff com.apple.IMUtils 4.0 (578) /System/Library/Frameworks/InstantMessage.framework/Frameworks/IMUtils.framewor k/Versions/A/IMUtils
    0x90026000 - 0x9004dfff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x9004e000 - 0x90053fff com.apple.backup.framework 1.0 /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x90054000 - 0x90054fff com.apple.installserver.framework 1.0 (8) /System/Library/PrivateFrameworks/InstallServer.framework/Versions/A/InstallSer ver
    0x90055000 - 0x90055fff com.apple.Carbon 136 /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x90056000 - 0x90072fff com.apple.IMFramework 4.0 (578) /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x90073000 - 0x9007ffff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90080000 - 0x9054cfff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9057e000 - 0x9093cfff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9093d000 - 0x9095cfff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9095d000 - 0x90987fff libauto.dylib /usr/lib/libauto.dylib
    0x90988000 - 0x909e2fff com.apple.CoreText 2.0.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x909e3000 - 0x90a6cfff com.apple.framework.IOKit 1.5.0 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90a6d000 - 0x90a7dfff com.apple.speech.synthesis.framework 3.6.59 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x90a7e000 - 0x90a83fff com.apple.DisplayServicesFW 2.0 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x90a84000 - 0x90ba8fff com.apple.audio.toolbox.AudioToolbox 1.5 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x90e7f000 - 0x90f63fff com.apple.CoreData 100 (185) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x90f64000 - 0x90f75fff com.apple.CFOpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/Frameworks /CFOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x90f76000 - 0x90f7afff com.apple.CoreMediaAuthoringPrivate 1.0.1 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x90f7b000 - 0x90fc0fff com.apple.Metadata 10.5.0 (398) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90fc1000 - 0x91053fff com.apple.ApplicationServices.ATS 3.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x91054000 - 0x910b0fff com.apple.htmlrendering 68 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x910b1000 - 0x910b5fff com.apple.OpenDirectory 10.5 /System/Library/PrivateFrameworks/OpenDirectory.framework/Versions/A/OpenDirect ory
    0x910b6000 - 0x9132ffff com.apple.Foundation 6.5 (677) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91330000 - 0x91354fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x91355000 - 0x913a2fff com.apple.datadetectorscore 1.0 (52.11) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x913a3000 - 0x91452fff com.apple.DesktopServices 1.4.2 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x91453000 - 0x914b0fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x914b1000 - 0x91563fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91564000 - 0x9156bfff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x9156c000 - 0x916c6fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x91705000 - 0x91719fff com.apple.ImageCapture 4.0 (5.0.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x9171a000 - 0x91766fff com.apple.QuickLookUIFramework 1.0 (168.0) /System/Library/PrivateFrameworks/QuickLookUI.framework/Versions/A/QuickLookUI
    0x91767000 - 0x91772fff com.apple.helpdata 1.0 (14) /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x91773000 - 0x91775fff com.apple.securityhi 3.0 (30817) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91776000 - 0x91785fff com.apple.DSObjCWrappers.Framework 1.2 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x91786000 - 0x91788fff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91789000 - 0x91789fff com.apple.MonitorPanelFramework 1.2.0 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x9178a000 - 0x9184ffff com.apple.QuickTimeMPEG4.component 7.2.1 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x91850000 - 0x9185ffff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x91860000 - 0x91998fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x91999000 - 0x919a3fff com.apple.audio.SoundManager 3.9.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x919a4000 - 0x919eefff com.apple.securityinterface 3.0 (32532) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x919ef000 - 0x919f0fff libffi.dylib /usr/lib/libffi.dylib
    0x919f1000 - 0x919f7fff com.apple.print.framework.Print 218 (220) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91a28000 - 0x91a3efff com.apple.DictionaryServices 1.0.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x91a3f000 - 0x91f54fff com.apple.WebCore 5523.10.3 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x91f55000 - 0x91f6dfff com.apple.openscripting 1.2.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x91f6e000 - 0x92129fff com.apple.QuartzComposer 2.0 (106) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9212a000 - 0x9212afff com.apple.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9212b000 - 0x92146fff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x92147000 - 0x92226fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x92227000 - 0x9228cfff com.apple.ISSupport 1.6 (34) /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9228d000 - 0x9228dfff com.apple.CoreServices 32 /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9228e000 - 0x9230dfff com.apple.SearchKit 1.2.0 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9230e000 - 0x92453fff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x92454000 - 0x9245bfff com.apple.agl 3.0.9 (AGL-3.0.9) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9246a000 - 0x92520fff com.apple.CoreServices.OSServices 209 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x92521000 - 0x9258ffff com.apple.iLifeMediaBrowser 1.0.3 (194) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x92590000 - 0x925c6fff com.apple.SystemConfiguration 1.9.0 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x925c7000 - 0x92790fff com.apple.security 5.0 (31122) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92791000 - 0x927affff com.apple.QuickLookFramework 1.0 (168.0) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x927b0000 - 0x927b8fff com.apple.DiskArbitration 2.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x927b9000 - 0x927bdfff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x927be000 - 0x92a97fff com.apple.CoreServices.CarbonCore 783 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92a98000 - 0x92b2bfff com.apple.ink.framework 101.3 (86) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92b2c000 - 0x92b42fff com.apple.CoreVideo 1.5.0 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x92b43000 - 0x92b79fff libtidy.A.dylib /usr/lib/libtidy.A.dylib
    0x92b7a000 - 0x92b7bfff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x92b7c000 - 0x92bbbfff com.apple.ImageIO.framework 2.0.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x92bbc000 - 0x92c33fff com.apple.CFNetwork 217 (219) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x92d14000 - 0x92e15fff com.apple.PubSub 1.0.0 (59) /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x92e16000 - 0x92e66fff com.apple.HIServices 1.6.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x92e67000 - 0x92f10fff com.apple.JavaScriptCore 5523.10.3 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92f11000 - 0x92fdcfff com.apple.ColorSync 4.5.0 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x92fdd000 - 0x93098fff com.apple.WebKit 5523.10.3 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x93099000 - 0x930cbfff com.apple.LDAPFramework 1.4.3 (106) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x930cc000 - 0x933dafff com.apple.QuickTime 7.2.1 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x933db000 - 0x9340cfff com.apple.quartzfilters 1.5.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x93413000 - 0x934f4fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x934f5000 - 0x9357cfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9357d000 - 0x93c14fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93c15000 - 0x93c91fff com.apple.audio.CoreAudio 3.1.0 (3.1) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x93c92000 - 0x93cb0fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x93cb1000 - 0x93ce0fff com.apple.AE 402 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x93ce1000 - 0x93cf1fff com.apple.LangAnalysis 1.6.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x93cf2000 - 0x93d09fff com.apple.datadetectors 1.0 (66.0) /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x93d0a000 - 0x93d15fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93d16000 - 0x93e94fff com.apple.AddressBook.framework 4.1 (687) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x93e95000 - 0x93ee5fff com.apple.framework.familycontrols 1.0 /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x93ee6000 - 0x93ee6fff com.apple.quartzframework 1.5 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x93ee7000 - 0x93f5bfff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x93f5c000 - 0x93f95fff com.apple.securityfoundation 3.0 (32585) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x93f96000 - 0x93f98fff com.apple.CrashReporterSupport 10.5.0 (156) /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x93f99000 - 0x93fa0fff libbsm.dylib /usr/lib/libbsm.dylib
    0x93fa1000 - 0x93fdbfff com.apple.coreui 0.1 (60) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x93fdc000 - 0x94083fff com.apple.QD 3.11.49 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x94084000 - 0x94084fff com.apple.audio.units.AudioUnit 1.5 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94085000 - 0x94085fff com.apple.Cocoa 6.5 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x94086000 - 0x940c8fff com.apple.NavigationServices 3.5 (160) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x940c9000 - 0x940f1fff com.apple.shortcut 1 (1.0) /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x940f2000 - 0x940f4fff com.apple.QuickTimeH264.component 7.2.1 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x9424b000 - 0x94a45fff com.apple.AppKit 6.5 (949) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x94a46000 - 0x94a73fff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x94a74000 - 0x94a79fff com.apple.CommonPanels 1.2.4 (85) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x94a7a000 - 0x94ae9fff com.apple.PDFKit 2.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x94aea000 - 0x94b27fff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94b34000 - 0x94b3dfff com.apple.speech.recognition.framework 3.7.24 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x94b3e000 - 0x94bdcfff com.apple.QuickTimeImporters.component 7.2.1 /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x94bdd000 - 0x94c57fff com.apple.print.framework.PrintCore 5.5 (245) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x94c58000 - 0x94d1ffff com.apple.vImage 3.0 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x94d20000 - 0x94dacfff com.apple.LaunchServices 283 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x94dad000 - 0x94e06fff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94e07000 - 0x94e2bfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94e2c000 - 0x9523cfff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9523d000 - 0x95373fff com.apple.imageKit 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x95374000 - 0x9567afff com.apple.HIToolbox 1.5.0 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x9567b000 - 0x957adfff com.apple.CoreFoundation 6.5 (476) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x958d8000 - 0x9591cfff com.apple.DirectoryService.PasswordServerFramework 3.0 /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x9591d000 - 0x9593bfff com.apple.DirectoryService.Framework 3.5 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9593c000 - 0x9595ffff com.apple.CoreMediaPrivate 1.1 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x95960000 - 0x95967fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x95968000 - 0x95968fff com.apple.Accelerate.vecLib 3.4 (vecLib 3.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x95976000 - 0x959b7fff com.apple.CoreGraphics 1.351.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x959b8000 - 0x959f4fff com.apple.CoreMediaIOServicesPrivate 1.1 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x959f5000 - 0x95a7ffff com.apple.QTKit 7.2.1 /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x95a80000 - 0x95a80fff com.apple.Accelerate 1.4 (Accelerate 1.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x95a81000 - 0x95a8dfff com.apple.opengl 1.5.4 /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x95a8e000 - 0x95b3efff edu.mit.Kerberos 6.0.11 /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x95b49000 - 0x95edefff com.apple.QuartzCore 1.5.0 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x95edf000 - 0x95edffff com.apple.ApplicationServices 34 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x95ee0000 - 0x95ee3fff com.apple.help 1.1 (36) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x95ee4000 - 0x96cdcfff com.apple.QuickTimeComponents.component 7.2.1 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents

  • Slide show does not work

    I created a slide show. It works really well on the Prieview with a browser. Once I put it on the web it does not work. here is the code.
    <%@LANGUAGE="JAVASCRIPT"
    CODEPAGE="65001"%>
    <!doctype html>
    <html><!-- InstanceBegin template="/Templates/template.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta charset="utf-8">
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Untitled Document</title>
    <style type="text/css">
    /* BeginOAWidget_Instance_2141542: #ImageSlideShow */
    #ImageSlideShow.ImageSlideShow {
        width: 300px;
        height: 300px;
        border: solid 5px #000000;
    #ImageSlideShow .ISSClip {
        background-color: #333333;
    /* EndOAWidget_Instance_2141542 */
    </style>
    <!-- InstanceEndEditable -->
    <style type="text/css">
    #apDiv16 {
        position: absolute;
        left: 267px;
        top: 289px;
        width: 402px;
        height: 331px;
        z-index: 14;
        border: thick ridge rgb(0,0,255);
    </style>
    <style type="text/css">
    #apDiv17 {
        position: relative;
        left: 687px;
        top: 287px;
        width: 346px;
        height: 65px;
        z-index: 15;
        font-family: Verdana, Geneva, sans-serif;
        font-size: 18px;
        line-height: 20px;
        font-weight: bold;
        font-style: italic;
    </style>
    <style type="text/css">
    #apDiv18 {
        position: absolute;
        left: 814px;
        top: 318px;
        width: 254px;
        height: 369px;
        z-index: 16;
        font-family: Arial, Helvetica, sans-serif;
        line-height: 3px;
        color: rgb(0,0,0);
        font-weight: bold;
    #apDiv18 P FONT {
        color: rgb(0,0,0);
    #apDiv18 P FONT {
        font-weight: normal;
    </style>
    <style type="text/css">
    #apDiv19 {
        position: absolute;
        left: 301px;
        top: 280px;
        width: 426px;
        height: 328px;
        z-index: 1000;
    </style>
    <style type="text/css">
    #apDiv20 {
        position: absolute;
        left: 314px;
        top: 319px;
        width: 437px;
        height: 312px;
        z-index: 16;
    </style>
    <style type="text/css">
    #apDiv21 {
        position: absolute;
        left: 273px;
        top: 231px;
        width: 520px;
        height: 23px;
        z-index: 16;
        font-size: 18px;
    </style>
    <style type="text/css">
    <!--
    /* ~~ Element/tag selectors ~~ */
    ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
        padding: 0;
        margin: 0;
    h1, h2, h3, h4, h5, h6, p {
        margin-top: 0;     /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
        padding-right: 15px;
        padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
    a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
        border-top-width: medium;
        border-right-width: medium;
        border-bottom-width: medium;
        border-left-width: medium;
        border-top-style: ridge;
        border-right-style: ridge;
        border-bottom-style: ridge;
        border-left-style: ridge;
    /* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
    a:link {
        color: #42413C;
        text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
    a:visited {
        color: #6E6C64;
        text-decoration: underline;
    a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
        text-decoration: none;
        color: #0000FF;
    /* ~~ this fixed width container surrounds the other divs ~~ */
    .container {
        width: 2000px;
        background-color: #666;
        margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
        position: absolute;
        height: 1000px;
        left: 0px;
        top: 0px;
    /* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */
    .header {
        background-color: #333333;
        border-bottom-width: thick;
        border-bottom-style: double;
        border-bottom-color: rgb(255,0,0);
        width: 2000px;
        position: absolute;
        left: 0px;
        top: 0px;
        height: 150px;
    /* ~~ The footer ~~ */
    .footer {
        padding: 10px 0;
        background-color: #FF0000;
        height: 150px;
        width: 2000px;
        border-top-width: thick;
        border-top-style: double;
        border-top-color: rgb(0,0,0);
        left: 0px;
        position: absolute;
        top: 850px;
    /* ~~ miscellaneous float/clear classes ~~ */
    .fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
        float: right;
        margin-left: 8px;
    .fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
        float: left;
        margin-right: 8px;
    .clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
        clear:both;
        height:0;
        font-size: 1px;
        line-height: 0px;
    #apDiv1 {
        position: absolute;
        left: 204px;
        top: 13px;
        width: 317px;
        height: 49px;
        z-index: 1;
        font-family: "Arial Black", Gadget, sans-serif;
        text-transform: uppercase;
        color: #F00;
        font-size: 40px;
    #apDiv4 {
        position: absolute;
        left: 180px;
        top: 19px;
        width: 585px;
        height: 23px;
        z-index: 4;
        font-family: "Arial Black", Gadget, sans-serif;
        font-size: 24px;
        font-style: oblique;
        color: #FF0;
    #apDiv12 {
        position: absolute;
        left: -6px;
        top: 52px;
        width: 201px;
        height: 27px;
        z-index: 9;
        font-family: "Arial Black", Gadget, sans-serif;
        font-size: 36px;
        color: #0FF;
        font-weight: bold;
        text-transform: lowercase;
        font-style: oblique;
    #apDiv5 {
        position: absolute;
        left: 0px;
        top: 53px;
        width: 757px;
        height: 26px;
        z-index: 5;
        font-family: "Arial Black", Gadget, sans-serif;
        font-size: 36px;
        color: #06F;
        text-transform: lowercase;
    #apDiv6 {
        position: absolute;
        left: 366px;
        top: 155px;
        width: 1413px;
        height: 32px;
        z-index: 999;
        color: #999;
        font-family: Georgia, "Times New Roman", Times, serif;
        font-weight: bold;
    -->
    </style>
    <link href="../SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    #apDiv8 {
        position: absolute;
        left: 70px;
        top: 66px;
        width: 1280px;
        height: 41px;
        z-index: 8;
        font-family: Arial, Helvetica, sans-serif;
        color: #000;
        font-weight: bold;
    #apDiv2 {
        position: absolute;
        left: 11px;
        top: 213px;
        width: 140px;
        height: 308px;
        z-index: 9;
    </style>
    <link href="../SpryAssets/SpryMenuBarVertical.css" rel="stylesheet" type="text/css">
    <style type="text/css">
    #apDiv3 {
        position: absolute;
        left: 302px;
        top: 321px;
        width: 654px;
        height: 466px;
        z-index: 10;
        font-family: Verdana, Geneva, sans-serif;
        font-size: 14px;
        font-weight: bold;
        line-height: 10px;
        border-top-width: thick;
        border-top-style: solid;
        border-right-style: solid;
        border-bottom-style: solid;
        border-left-style: solid;
        border-top-color: rgb(0,51,255);
    #apDiv7 {
        position: absolute;
        left: 2px;
        top: 35px;
        width: 302px;
        height: 326px;
        z-index: 7;
        font-family: Verdana, Geneva, sans-serif;
        font-size: 16px;
        line-height: 5px;
        font-weight: normal;
        color: #666;
    #apDiv9 {
        position: absolute;
        left: 270px;
        top: 302px;
        width: 382px;
        height: 295px;
        z-index: 11;
        border: thick solid rgb(0,51,255);
    .style12 {font-size: 18pt}
    #apDiv7 P FONT {
        color: rgb(0,0,0);
        font-family: Verdana, Geneva, sans-serif;
        font-size: 16px;
    #apDiv10 {
        position: absolute;
        left: 4px;
        top: 164px;
        width: 131px;
        height: 293px;
        z-index: 999;
    #apDiv11 {
        position: absolute;
        left: 670px;
        top: 298px;
        width: 268px;
        height: 61px;
        z-index: 13;
        font-family: Verdana, Geneva, sans-serif;
        font-size: 18px;
        color: #000;
    .container .content #apDiv11 P FONT {
        color: rgb(0,0,0);
    #apDiv13 {
        position: absolute;
        left: 134px;
        top: 230px;
        width: 864px;
        height: 551px;
        z-index: 13;
    #apDiv14 {
        position: absolute;
        left: 151px;
        top: 252px;
        width: 605px;
        height: 278px;
        z-index: 13;
    #apDiv15 {
        position: absolute;
        left: 98px;
        top: 392px;
        width: 1350px;
        height: 496px;
        z-index: 13;
    #apDiv16 {
        position: absolute;
        left: 339px;
        top: 249px;
        width: 724px;
        height: 37px;
        z-index: 900;
        border-bottom-width: thick;
        border-bottom-style: solid;
        border-bottom-color: rgb(255,0,0);
    #apDiv17 {
        position: absolute;
        left: 50;
        top: 266px;
        width: 620px;
        height: 1;
        z-index: 13;
        background-color: #FF0000;
    #apDiv22 {
        position: absolute;
        left: 132px;
        top: 50px;
        width: 40px;
        height: 46px;
        z-index: 1000;
        color: #FFF;
    #apDiv23 {
        position: absolute;
        left: -103px;
        top: 340px;
        width: 800px;
        height: 3;
        z-index: 10;
        border-top-width: thick;
        border-top-style: groove;
        border-top-color: rgb(255,0,0);
    #apDiv30 {
        position: absolute;
        height: 30px;
        width: 1000px;
        left: -102px;
        top: 288px;
    </style>
    <script src="../SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <!-- InstanceBeginEditable name="head" -->
    <style type="text/css">
    #apDiv16 {
        position: absolute;
        left: 264px;
        top: 326px;
        width: 402px;
        height: 331px;
        z-index: 14;
        border: thick ridge rgb(0,0,255);
    </style>
    <style type="text/css">
    #apDiv17 {
        position: absolute;
        left: 687px;
        top: 324px;
        width: 346px;
        height: 65px;
        z-index: 15;
        font-family: Verdana, Geneva, sans-serif;
        font-size: 18px;
        line-height: 20px;
        font-weight: bold;
    </style>
    <style type="text/css">
    #apDiv18 {
        position: absolute;
        left: 687px;
        top: 392px;
        width: 254px;
        height: 358px;
        z-index: 16;
        font-family: Verdana, Geneva, sans-serif;
        font-size: 16px;
        line-height: 0px;
    </style>
    <style type="text/css">
    #apDiv19 {
        position: absolute;
        left: 214px;
        top: 293px;
        width: 952px;
        height: 375px;
        z-index: 101;
    </style>
    <style type="text/css">
    #apDiv22 {
        position: absolute;
        left: 216px;
        top: 286px;
        width: 906px;
        height: 348px;
        z-index: 17;
    #apDiv24 {
        position: absolute;
        left: 70px;
        top: 518px;
        width: 785px;
        height: 113px;
        z-index: 1000;
    #apDiv25 {
        position: absolute;
        left: 222px;
        top: 361px;
        width: 115px;
        height: 250;
        z-index: 7;
    </style>
    <link href="../Spry-UI-1.7/css/SpryImageSlideShow.css" rel="stylesheet" type="text/css">
    <script src="../Spry-UI-1.7/includes/SpryDOMUtils.js" type="text/javascript"></script>
    <script src="../Spry-UI-1.7/includes/SpryDOMEffects.js" type="text/javascript"></script>
    <script src="../Spry-UI-1.7/includes/SpryWidget.js" type="text/javascript"></script>
    <script src="../Spry-UI-1.7/includes/SpryPanelSet.js" type="text/javascript"></script>
    <script src="../Spry-UI-1.7/includes/SpryFadingPanels.js" type="text/javascript"></script>
    <script src="../Spry-UI-1.7/includes/SpryImageLoader.js" type="text/javascript"></script>
    <script src="../Spry-UI-1.7/includes/SpryImageSlideShow.js" type="text/javascript"></script>
    <script src="../Spry-UI-1.7/includes/plugins/ImageSlideShow/SpryPanAndZoomPlugin.js" type="text/javascript"></script>
    <script type="text/xml">
    <!--
    <oa:widgets>
      <oa:widget wid="2141542" binding="#ImageSlideShow" />
    </oa:widgets>
    -->
    </script>
    <!-- InstanceEndEditable -->
    </head>
    <body>
    <div>Content for New Div Tag Goes Here</div>
    <div>Content for New Div Tag Goes Here</div>
    <container class="container">
    <div id="apDiv1">
      <!-- InstanceBeginEditable name="EditRegion4" -->
    <div id="apDiv25">
      <ul id="ImageSlideShow">
        <li><a href="../images/bent_shank_wnuts.jpg"><img src="../images/src/bent_shank_wnuts.jpg" alt="" /></a></li>
        <li><a href="../images/champion_rivet_at_operator.JPG"><img src="../images/src/champion_rivet_at_operator.JPG" alt="" /></a></li>
        <li><a href="../images/coining.jpg"><img src="../images/src/coining.jpg" alt="" /></a></li>
        <li><a href="../images/dry_box_workers.jpg"><img src="../images/src/dry_box_workers.jpg" alt="" /></a></li>
        <li><a href="../images/laser_shlomo.jpg"><img src="../images/src/laser_shlomo.jpg" alt="" /></a></li>
      <li><a href="../images/lung-blocker-white-gowns.jpg"><img src="../images/src/lung-blocker-white-gowns.jpg" alt="" /></a></li> 
      </ul>
      <script type="text/javascript">
    // BeginOAWidget_Instance_2141542: #ImageSlideShow
    var ImageSlideShow = new Spry.Widget.ImageSlideShow("#ImageSlideShow", {
        widgetID: "ImageSlideShow",
        injectionType: "replace",
        autoPlay: true,
        displayInterval: 4000,
        transitionDuration: 2000,
        componentOrder: ["view", "controls"],
        plugIns: [ Spry.Widget.ImageSlideShow.PanAndZoomPlugin ]
    // EndOAWidget_Instance_2141542
      </script>
    </div>
    <div id="apDiv23"></div>
    <!-- InstanceEndEditable -->
      NOGAH
      <div id="apDiv5">Machine Designers &amp; Builders</div>
    <div id="apDiv4">smart innovative engineering </div>
    </div>
    <!-- InstanceBeginEditable name="EditRegion3" -->
    <div id="apDiv15">
      <p> </p>
    </div>
    <!-- InstanceEndEditable -->
    <div class="header"><a href="#"><img src="../images/logoN.jpg" alt="Insert Logo Here" name="Insert_logo" width="100" height="150" id="Insert_logo" style="color: #F00; text-transform: uppercase; font-size: 40px; font-family: 'Arial Black', Gadget, sans-serif; display: block;"></a>
    <!-- end .header --></div>
      <div class="content">
        <div id="apDiv6" style="left: 100px; top: 170px">
          <ul id="MenuBar1" class="MenuBarHorizontal">
            <li><a href="index.html">Home</a>        </li>
            <li><a href="facility.html">Our Facility</a></li>
            <li><a href="about%20us.html">About Us</a></li>
    <li><a href="contact%20us.html">Contact Us</a></li>
            <li><a href="#" class="MenuBarItemSubmenu">Medical</a>
              <ul>
                <li><a href="lung%20blocker%20bed%20mounted.html">Lung Blocker Bed Mounted</a></li>
                <li><a href="lung%20blocker%20stand.html">Lung Blocker Stand</a></li>
                <li><a href="couch.html">Radiation Couch</a></li>
                <li><a href="lab%20bench.html">Lab Bench</a></li>
              </ul>
            </li>
            <li><a href="#" class="MenuBarItemSubmenu">Biotech</a>
              <ul>
                <li><a href="mega%20base%20SH.html">Mega Base Dispensing S.H</a></li>
                <li><a href="mega%20base%20DH.html">Mega Base Dispensing D.H</a></li>
                <li><a href="filling%20machine.html">Liquid Filling Machine</a></li>
                <li><a href="powder%20dispenser.html">Powder Dispensing</a></li>
                <li><a href="capper.html">Capper</a></li>
                <li><a href="laser%20labeler.html">Laser Labeler</a></li>
                <li><a href="racker.html">Vial Racker</a></li>
                <li><a href="dry%20box.html">Glove Box</a></li>
                <li><a href="heat%20seal.html">Sealing Press</a></li>
    </ul>
            </li>
            <li><a href="#" class="MenuBarItemSubmenu">Polymers</a>
              <ul>
                <li><a href="lid%20stacking.html">Lid Stacking</a></li>
                <li><a href="heat%20staking%20machine.html">Heat Staking</a></li>
                <li><a href="tire%20assembly.html">Roller Assembly</a></li>
                <li><a href="lint%20trap.html">Lint Trap</a></li>
                <li><a href="bosch.html">Dryer Assembly</a></li>
                <li><a href="marbal.html">Cooling Tower</a></li>
                <li><a href="jar%20trimming.html">Jar Trimming</a></li>
              </ul>
            </li>
            <li><a href="#" class="MenuBarItemSubmenu">Fasteners</a>
              <ul>
                <li><a href="bent%20shank.html">Bent Shank </a></li>
                <li><a href="lug%20nuts%20tapping%20machine.html">Lug Nuts</a></li>
                <li><a href="round%20small%20nuts.html">Rivets Tapping</a></li>
                <li><a href="knurling.html">Knurling</a></li>
                <li><a href="eyebolts.html">Eye Bolts</a></li>
              </ul>
            </li>
            <li><a href="#" class="MenuBarItemSubmenu">Feeding</a>
              <ul>
                <li><a href="feeding%20with%20vision.html">Using Vision</a></li>
              </ul>
            </li>
            <li><a href="#" class="MenuBarItemSubmenu">Metal</a>
              <ul>
                <li><a href="champion.html">Rail Road</a></li>
                <li><a href="assembly.html">Assembly</a></li>
                <li><a href="coining.html">Coining</a></li>
                <li><a href="pointing.html">Pointing</a></li>
                <li><a href="damper%20assembly.html">Damper Assembly</a></li>
                <li><a href="fomo.html">Notching</a></li>
                <li><a href="nut%20welder.html">Nut Welding</a></li>
                <li><a href="soundwich.html">Dashboard</a></li>
                <li><a href="water%20pump.html">Drilling</a></li>
                <li><a href="rotor_deburing.html">Deburing</a></li>
              </ul>
            </li>
            <li><a href="#" class="MenuBarItemSubmenu">General</a>
              <ul>
                <li><a href="road%20construction.html">Road Construction</a></li>
                <li><a href="large%20hose.html">Large Hose Mfg.  Drive</a></li>
              </ul>
            </li>
            <li><a href="IMTS%20show.html">IMTS Show</a></li>
            <li><a href="http://www.yedaengineering.com/">Yeda LLC</a></li>
          </ul>
    </div>
    <h2> </h2>
        <p class="MenuBarHorizontal"> </p>
        <p> </p>
    <p class="style12"> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
        <p> </p>
    </div>
    <div class="footer">
        <div id="apDiv8">Nogah Engineering 1800 London Road Unit C Cleveland Ohio 44112 USA Tel: 216.738.1730 Fax: 216.738.1770 </div>
        <p> </p>
      <!-- end .footer --></div>
    <!-- end .container --></div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"../SpryAssets/SpryMenuBarDownHover.gif", imgRight:"../SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    <!-- InstanceEnd --></html>
    Thanks.

    All these supporting files are missing (404 not found on server). 
    <link href="../Spry-UI-1.7/css/SpryImageSlideShow.css" rel="stylesheet" type="text/css">
    <script src="../Spry-UI-1.7/includes/SpryDOMUtils.js" type="text/javascript"></script>
    <script src="../Spry-UI-1.7/includes/SpryDOMEffects.js" type="text/javascript"></script>
    <script src="../Spry-UI-1.7/includes/SpryWidget.js" type="text/javascript"></script>
    <script src="../Spry-UI-1.7/includes/SpryPanelSet.js" type="text/javascript"></script>
    <script src="../Spry-UI-1.7/includes/SpryFadingPanels.js" type="text/javascript"></script>
    <script src="../Spry-UI-1.7/includes/SpryImageLoader.js" type="text/javascript"></script>
    <script src="../Spry-UI-1.7/includes/SpryImageSlideShow.js" type="text/javascript"></script>
    <script src="../Spry-UI-1.7/includes/plugins/ImageSlideShow/SpryPanAndZoomPlugin.js" type="text/javascript"></script>
    Upload Spry-UI-1.7 folder to your remote server by clicking the folder and hitting the UP arrow in your Files Panel.
    Also, validate your code and fix reported errors.  You have unbalanced div tags.
    HTML - http://validator.w3.org/
    Nancy O.

  • Reports who work in BIP 10G does not work in BIP 11G

    Hi!
    We are in the middle of going from BIP 10G to BIP 11G (latest patch installed the 9 of february). We have used the Upgrade Assistant to migrate the reports from 10G to 11G, about 80-90% are working directly.
    But, as always are there some problems. There are 2 major problems I am struggling with for the moment. 1 is long running reports who gets "Connection reset by peer" before the report ends and the more problematic which is this:
    [2012-02-27T11:09:50.397+01:00] [bi_server1] [ERROR] [] [oracle.xdo] [tid: 24] [userId: <anonymous>] [ecid: 22bf1318a95b3a18:-528a5dc9:135b0d15f61:-8000-0000000000025a30,0] [APP: bipublisher#11.1.1] XSL error:[[
    <Line 80, Column 151>: XML-23002: (Error) internal xpath error
    @Line 80 ==> <_G><xsl:if test="sum($G1[(./QADATE02 = current-group()/QADATE02)]/QATRQT) = '0'" xdofo:ctx="3">
    [2012-02-27T11:09:50.397+01:00] [bi_server1] [WARNING] [] [oracle.xdo] [tid: 24] [userId: <anonymous>] [ecid: 22bf1318a95b3a18:-528a5dc9:135b0d15f61:-8000-0000000000025a30,0] [APP: bipublisher#11.1.1] oracle.xdo.XDOException: java.lang.reflect.InvocationTargetException[[
         at oracle.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1205)
         at oracle.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:276)
         at oracle.xdo.template.FOProcessor.createFO(FOProcessor.java:1973)
         at oracle.xdo.template.FOProcessor.generate(FOProcessor.java:1117)
         at oracle.xdo.servlet.RTFCoreProcessor.transform(RTFCoreProcessor.java:124)
         at oracle.xdo.servlet.CoreProcessor.process(CoreProcessor.java:372)
         at oracle.xdo.servlet.CoreProcessor.generateDocument(CoreProcessor.java:93)
         at oracle.xdo.servlet.ReportImpl.renderBodyHTTP(ReportImpl.java:1059)
         at oracle.xdo.servlet.ReportImpl.renderReportBodyHTTP(ReportImpl.java:624)
         at oracle.xdo.servlet.XDOServlet.writeReport(XDOServlet.java:477)
         at oracle.xdo.servlet.XDOServlet.writeReport(XDOServlet.java:447)
         at oracle.xdo.servlet.XDOServlet.doGet(XDOServlet.java:267)
         at oracle.xdo.servlet.XDOServlet.doPost(XDOServlet.java:299)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:821)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.xdo.servlet.metadata.track.MostRecentFilter.doFilter(MostRecentFilter.java:65)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.xdo.servlet.security.SecurityFilter.doFilter(SecurityFilter.java:122)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.xdo.servlet.init.InitCheckingFilter.doFilter(InitCheckingFilter.java:64)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:57)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.GeneratedMethodAccessor7820.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.xdo.common.xml.XSLT10gR1.invokeProcessXSL(XSLT10gR1.java:917)
         at oracle.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:609)
         at oracle.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:328)
         at oracle.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:187)
         at oracle.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1181)
         ... 40 more
    Caused by: oracle.xdo11g.xqxp.XQException: XPTY0004
         at oracle.xdo11g.xslt.XSLStylesheet.flushErrors(XSLStylesheet.java:1850)
         at oracle.xdo11g.xslt.XSLStylesheet.execute(XSLStylesheet.java:616)
         at oracle.xdo11g.xslt.XSLStylesheet.execute(XSLStylesheet.java:551)
         at oracle.xdo11g.xslt.XSLProcessor.processXSL(XSLProcessor.java:345)
         at oracle.xdo11g.xslt.XSLProcessor.processXSL(XSLProcessor.java:194)
         at oracle.xdo11g.xslt.XSLProcessor.processXSL(XSLProcessor.java:230)
         at oracle.xdo11g.parser.v2.XSLProcessor.processXSL(XSLProcessor.java:124)
         at sun.reflect.GeneratedMethodAccessor7820.invoke(Unknown Source)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.xdo.common.xml.XSLT10gR1.invokeProcessXSL(XSLT10gR1.java:920)
         ... 44 more
    Does anyone have the solution for this type of error, we have about 30-40 reports that is behaving like this in BIP 11G but works fine in BIP 10G.
    Can we do anything general in the BIP 11G or does we need to find the solution for each report and change in the template?
    All ideas are appreciated, thanks,
    Anders B

    Hi!
    Have everyone out there been able to use the upgrade assistant without any problem?
    The UA.bat program says everything is ok but the report actually created in BIP 10G does not work in BIP 11G. We are looking for documentation or "findings" of what the problem can be, in a more general way. We are aware of that we probably have to fix this manually, but we dont know what to fix, and it is not so "fun" to be forced to re create all this templates and reports. The datamodell seems for the most of the time works, so we get a working xml source but the creation of the report thru the template dont work.
    Best regards,
    Anders

  • Cannot complete Lync2013 integration because autodiscover/metadata/json/1 does not exist

    Hello,
    I am trying to setup integration between Microsoft Lync 2013 Server and Exchange 2013 Server so that in OWA you can see presence information and also use Instant Messaging.
    I am able to complete all the steps except for the following line on the Lync server:
    New-CsPartnerApplication -Identity Exchange -ApplicationTrustLevel Full -MetadataUrl "https://autodiscover.domain.com/autodiscover/metadata/json/1"
    I am getting an error that its not found:
    New-CsPartnerApplication : Cannot bind parameter 'MetadataUrl' to the target. Exception setting "MetadataUrl": "The
    metadata document could not be downloaded from the URL in the MetadataUrl parameter or downloaded data is not a valid
    metadata document, error: The remote server returned an error: (404) Not Found."
    Now I've already followed THIS thread: http://blogs.technet.com/b/jenstr/archive/2012/11/22/getting-internal-server-error-500-when-creating-new-cspartnerapplication-for-exchange-2013.aspx  But that did not help me at all.  Nor should it because
    that particular thread is a procedure to remedy an error 500.  Remember I am getting an error 404.
    I can validate that the path to /autodiscover/metadata/json/1 does not exist because I get a 404 in any web browser that I attempt to access this path.  Also in IIS Manager on Exchange I do not even see a metadata folder.  IIS has been reset and
    also the server has been rebooted as of 7:40 AM EST today and the issue persists.
    I am not sure what goes in that location but I would be willing to accept if someone else would upload their metadata/json/1 file on SkyDrive and I could put it at this location.
    Otherwise Autodiscover service appears to be working as Outlook and Lync clients do not pose an error.  Testing e-mail autodiscover returns correct values and the paths /autodiscover/Autodiscover.svc and also autodiscover/autodiscover.xml are both reachable
    in a web browser.

    Hi KJSTech1,
    You could try to modify the autodiscover Url by following command.
    Get-ClientAccessServer | Set-ClientAccessServer -AutoDiscoverServiceInternalUri "https://autodiscover.contoso.com/autodiscover/autodiscover.xml"
    Run the following command in Lync Management Shell.
    Set-CsOAuthConfiguration -Identity global -ExchangeAutodiscoverUrl "https://autodiscover.contoso.com/autodiscover/autodiscover.svc"
    After doing the above work, please re-run the New-CsPartnerApplication command to test.
    Best regards,
    Eric

  • Sync with Itunes does not work

    Hi,
    I reinstalled latest Itunes completly but still sync with outlook 2007 does not work.
    Itunes says Sync finished, but nothing is synced.
    Here is the log:
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] ===================
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] iTunes.exe begins
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] ===================
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] "C:\Programme\iTunes\iTunes.exe"
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] ALLUSERSPROFILE=C:\Dokumente und Einstellungen\All Users
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] APPDATA=C:\Dokumente und Einstellungen\mispde\Anwendungsdaten
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] asl.log=Destination=file;OnFirstLog=command,environment
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] CIHOLOSCLI=C:\Programme\Seagate Software\Open Olap\
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] CLASSPATH=.;C:\Programme\Java\jre6\lib\ext\QTJava.zip
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] CommonProgramFiles=C:\Programme\Gemeinsame Dateien
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] COMPUTERNAME=MISPDE0
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] ComSpec=C:\WINDOWS\system32\cmd.exe
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] FPNO_HOSTCHECK=NO
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] HARVESTHOME=C:\Programme\CA\AllFusion Harvest Change Manager
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] HOME=C:\Programme\Computer Associates International, inc.\CCC Harvest
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] HOMEDRIVE=C:
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] HOMEPATH=\Dokumente und Einstellungen\mispde
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] LOCALHARVESTHOME=C:\Programme\CA\AllFusion Harvest Change Manager
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] LOGONSERVER=\\ERLCNDC1
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] NewEnvironment1=C:\Programme\Vodafone\Vodafone Mobile Connect\"Optimization Client"
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] NUMBEROFPROCESSORS=2
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] OS=Windows_NT
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] Path=C:\Programme\Gemeinsame Dateien\Apple\Apple Application Support\;C:\Programme\Gemeinsame Dateien\Microsoft Shared\Windows Live;C:\Programme\CA\SharedComponents\PEC\bin;C:\WINDOWS\system32;C:\WINDOWS;C: \WINDOWS\System32\Wbem;C:\Programme\Microsoft SQL Server\80\Tools\Binn\;C:\oracle\ora102\bin;L:\deployment files\runtime;L:\development\client;D:\FOUNDA~1\fnd301\deployment files\runtime;D:\FOUNDA~1\fnd301\development\client;C:\Programme\Samsung\Samsun g PC Studio 3\;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\Programme\CA\AllFusion Harvest Change Manager;C:\Programme\QuickTime\QTSystem\;C:\Programme\Gemeinsame Dateien\Microsoft Shared\Windows Live
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH;.PSC1
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] PERL5LIB=C:\oracle\ora102\perl\lib\5.8.3\MSWin32-x86;C:\oracle\ora102\perl\lib\ 5.8.3;C:\oracle\ora102\perl\5.8.3\lib\MSWin32-x86-multi-thread;C:\oracle\ora102\ perl\site\5.8.3;C:\oracle\ora102\perl\site\5.8.3\lib;C:\oracle\ora102\sysman\adm in\scripts
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] PROCESSOR_ARCHITECTURE=x86
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] PROCESSOR_IDENTIFIER=x86 Family 6 Model 15 Stepping 11, GenuineIntel
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] PROCESSOR_LEVEL=6
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] PROCESSOR_REVISION=0f0b
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] ProgramFiles=C:\Programme
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] QTJAVA=C:\Programme\Java\jre6\lib\ext\QTJava.zip
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] RTARCH=i86_w32
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] RTHOME=C:\Programme\CA\SharedComponents\PEC
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] SESSIONNAME=Console
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] SQLBASE=C:\Oracle\ora102\NETWORK\ADMIN
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] SystemDrive=C:
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] SystemRoot=C:\WINDOWS
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] TEMP=C:\DOKUME~1\mispde\LOKALE~1\Temp
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] TMP=C:\DOKUME~1\mispde\LOKALE~1\Temp
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] TNS_ADMIN=C:\Oracle\ora102\NETWORK\ADMIN
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] USERDNSDOMAIN=CORPNET.IFSWORLD.COM
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] USERDOMAIN=CORPNET
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] USERNAME=mispde
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] USERPROFILE=C:\Dokumente und Einstellungen\mispde
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] VS90COMNTOOLS=C:\Programme\Microsoft Visual Studio 9.0\Common7\Tools\
    [3068 @ Wed Jun 09 10:45:52 2010] [ASL ASL] windir=C:\WINDOWS
    [3068 @ Wed Jun 09 10:45:52 2010] [(unknown facility) iTunes.exe] receive_message: Could not receive secure message: -1
    [3068 @ Wed Jun 09 10:45:52 2010] [(unknown facility) iTunes.exe] readthread: Could not receive message
    [7028 @ Wed Jun 09 10:47:00 2010] [_ISDVLog SyncServer.exe] Cancelling all sync plans.
    [7028 @ Wed Jun 09 10:47:00 2010] [_ISDVLog SyncServer.exe] Goodnight, Gracie.
    Please help me!

    *I just spoke with two different senior advisors from Apple one whose name was Matt and the other whose name was Zachary. They both were extremely rude and were not helpful at all. I explained the same exact scenario to them about how I just updated to iTunes 9.1.1 and that now my iPhone will not sync.*
    The ONLY help they could give me was to purchase a plan for either 29.99 or 69.99
    The reason no one from Apple will help us is because this company is based on greed. I am sure they knew about this bug that prevents thousands of users from syncing but I am also sure they assumed that we would pay the 29.99 or 69.99 for them to fix the problem. I honestly feel as though this is a scam to make more profit off of us.
    There is absolutely NOTHING they can do to help they said except for me to purchase one of those two plans they offer. My question is WHY THE **** SHOULD I PAY FOR SOMETHING THAT I AM NOT AT FAULT FOR? It should be there moral duty and responsibility to fix this bug yet because they know they will profit from it they have no intentions on doing so. The only thing I can really suggest is calling Apple and telling them how you feel. The more people who voice there opinions the better (just be prepared for them to tell you the ONLY thing they can do to fix the problem THEY created is by making YOU pay more money to fix it).
    I am extremely disappointed as a loyal Apple customer and this has seriously made me reconsider ever buying another Apple product.
    This company is morally and ethically wrong.

  • Wintergame does not work with 10.8 and no assistence from apple or the seller

    I have bought in the official Apple Ap Store the game Wintergames. But it does not work with mit OSX 10.8.3
    Every i try to load this programm it brakes down. I have contacted the seller. He is not interested in the problem and gave only the hint to re-intall the programm. This i have done 3 times. It does not work. I have get in contact with the Apple Support. They answered me they were not responsible for that.
    And i ask me.... why do Apple sell programms in their own stores, that do not work.
    This is the remark it get, if i start this programm:
    Process:         wintergames [3566]
    Path:            /Applications/WinterGames.app/Contents/MacOS/wintergames
    Identifier:      com.rune-soft.wintergames
    Version:         1.2.0 (1.2)
    App Item ID:     427639548
    App External ID: 10667633
    Code Type:       X86 (Native)
    Parent Process:  launchd [211]
    User ID:         501
    Date/Time:       2013-04-10 13:31:54.394 +0200
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          29498 sec
    Crashes Since Last Report:           2
    Per-App Interval Since Last Report:  38 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      D1D3A31E-9A15-BB5E-1704-71380FD0FE3E
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000014
    VM Regions Near 0x14:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K]
    ---/--- SM=NUL  /Applications/WinterGames.app/Contents/MacOS/wintergames
        __TEXT                 0000000000001000-0000000000197000 [ 1624K]
    r-x/rwx SM=COW  /Applications/WinterGames.app/Contents/MacOS/wintergames
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.rune-soft.wintergames         0x00088619 MainMenu::createMenues() +
    393
    1   com.rune-soft.wintergames         0x000a7db4 MainMenu::init() + 4804
    2   com.rune-soft.wintergames         0x00070dfa
    WinMain(Windows::HINSTANCE__*, Windows::HINSTANCE__*, char*, int) + 394
    3   com.rune-soft.wintergames         0x000042ff -[GameAppDelegate
    mainWinThreadProc:] + 303
    4   com.rune-soft.wintergames         0x00003c46 -[GameAppDelegate
    applicationDidFinishLaunching:] + 342
    5   com.apple.Foundation              0x997f9152 __57-[NSNotificationCenter
    addObserver:selector:name:object:]_block_invoke_0 + 49
    6   com.apple.CoreFoundation          0x91e6c861
    ___CFXNotificationPost_block_invoke_0 + 257
    7   com.apple.CoreFoundation          0x91db7e9a _CFXNotificationPost + 2794
    8   com.apple.Foundation              0x997e1c88 -[NSNotificationCenter
    postNotificationName:object:userInfo:] + 92
    9   com.apple.AppKit                  0x934750fe -[NSApplication
    _postDidFinishNotification] + 367
    10  com.apple.AppKit                  0x93474db8 -[NSApplication
    _sendFinishLaunchingNotification] + 249
    11  com.apple.AppKit                  0x93471d0f
    -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 751
    12  com.apple.AppKit                  0x93471824
    -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] +
    378
    13  libobjc.A.dylib                   0x96383628 -[NSObject
    performSelector:withObject:withObject:] + 77
    14  com.apple.Foundation              0x997fc73a __76-[NSAppleEventManager
    setEventHandler:andSelector:forEventClass:andEventID:]_block_invoke_0 +
    121
    15  com.apple.Foundation              0x997fc291 -[NSAppleEventManager
    dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 430
    16  com.apple.Foundation              0x997fc08e
    _NSAppleEventManagerGenericHandler + 173
    17  com.apple.AE                      0x94d5aa35 aeDispatchAppleEvent(AEDesc
    const*, AEDesc*, unsigned long, unsigned char*) + 331
    18  com.apple.AE                      0x94d2ffbe
    dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 44
    19  com.apple.AE                      0x94d2fe7d aeProcessAppleEvent + 318
    20  com.apple.HIToolbox               0x99bd4c58 AEProcessAppleEvent + 100
    21  com.apple.AppKit                  0x9346dd4d _DPSNextEvent + 1655
    22  com.apple.AppKit                  0x9346d1dc -[NSApplication
    nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    23  com.apple.AppKit                  0x9346363c -[NSApplication run] + 855
    24  com.apple.AppKit                  0x93406666 NSApplicationMain + 1053
    25  com.rune-soft.wintergames         0x0000383a start + 54
    Thread 1:
    0   libsystem_kernel.dylib            0x99ad50ee __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x94fd80ac _pthread_workq_return + 45
    2   libsystem_c.dylib                 0x94fd7e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                 0x94fbfd2a start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib            0x99ad59ae kevent + 10
    1   libdispatch.dylib                 0x975bbc71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                 0x975bb7a9 _dispatch_mgr_thread + 53
    Thread 3:
    0   libsystem_kernel.dylib            0x99ad50ee __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x94fd80ac _pthread_workq_return + 45
    2   libsystem_c.dylib                 0x94fd7e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                 0x94fbfd2a start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib            0x99ad50ee __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x94fd80ac _pthread_workq_return + 45
    2   libsystem_c.dylib                 0x94fd7e79 _pthread_wqthread + 448
    3   libsystem_c.dylib                 0x94fbfd2a start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib            0x99ad48e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x94fda2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                 0x94fda572
    pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore    0x9070c6ad
    TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore    0x9070c184 TSWaitOnSemaphoreCommon
    + 272
    5   com.apple.CoreServices.CarbonCore    0x9070c40d
    TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component    0x9255f5ac 0x91f69000 +
    6251948
    7   libsystem_c.dylib                 0x94fd55b7 _pthread_start + 344
    8   libsystem_c.dylib                 0x94fbfd4e thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib            0x99ad48e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                 0x94fda2e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                 0x94fda572
    pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore    0x9070c6ad
    TSWaitOnConditionTimedRelative + 177
    4   com.apple.CoreServices.CarbonCore    0x9070c184 TSWaitOnSemaphoreCommon
    + 272
    5   com.apple.CoreServices.CarbonCore    0x9070c40d
    TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore    0x906ad7da AIOFileThread(void*) +
    892
    7   libsystem_c.dylib                 0x94fd55b7 _pthread_start + 344
    8   libsystem_c.dylib                 0x94fbfd4e thread_start + 34
    Thread 7:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib            0x99ad27d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib            0x99ad1cb0 mach_msg + 68
    2   com.apple.audio.CoreAudio         0x901e5310
    HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned
    long, unsigned long, mach_msg_header_t*, bool, unsigned int) + 138
    3   com.apple.audio.CoreAudio         0x901dfe3e
    HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned
    int, int, int&, bool, unsigned int) + 70
    4   com.apple.audio.CoreAudio         0x901de67d
    HALC_ProxyIOContext::IOWorkLoop() + 1389
    5   com.apple.audio.CoreAudio         0x901de061
    HALC_ProxyIOContext::IOThreadEntry(void*) + 145
    6   com.apple.audio.CoreAudio         0x901e804a
    ___ZN19HALC_ProxyIOContextC2Emj_block_invoke_0 + 20
    7   com.apple.audio.CoreAudio         0x901ddf85 HALB_IOThread::Entry(void*)
    + 69
    8   libsystem_c.dylib                 0x94fd55b7 _pthread_start + 344
    9   libsystem_c.dylib                 0x94fbfd4e thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x0008849b  ecx: 0xbfffdfcc  edx: 0x02aa7200
      edi: 0x00000000  esi: 0x00000000  ebp: 0xbfffea58  esp: 0xbfffb5f0
       ss: 0x00000023  efl: 0x00010282  eip: 0x00088619   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000014
    Logical CPU: 2
    Binary Images:
        0x1000 -   0x196fff +com.rune-soft.wintergames (1.2.0 - 1.2)
    <A73F630B-CA42-6B3F-60C8-DA7B3E2676A3>
    /Applications/WinterGames.app/Contents/MacOS/wintergames
      0x2f2000 -   0x31dff7  com.apple.audio.OpenAL (1.6 - 1.6)
    <CDE1BC7D-871D-3BE7-A6DE-96F6806BB7E1>
    /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
      0x32d000 -   0x3befee +libfreetype.dylib (1)
    <AAF09BB8-8463-7133-C835-7B11945D39CB>
    /Applications/WinterGames.app/Contents/Frameworks/libfreetype.dylib
      0x3d3000 -   0x962fe3 +Cg.dylib (0)
    /Applications/WinterGames.app/Contents/Frameworks/Cg.dylib
    0x1093000 -  0x10a0ff3  com.apple.Librarian (1.1 - 1)
    <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB>
    /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x1728000 -  0x1732ff7 +com.unsanity.smartcrashreports (Smart Crash
    Reports version 1.5 - 1.5) /Library/InputManagers/*/Smart Crash
    Reports.bundle/Contents/MacOS/Smart Crash Reports
    0x173f000 -  0x179cfff +com.cocoamug.CosmoPod (3.1)
    <DF7EFF0D-F74B-D0FC-3712-4E36D75D0043>
    /Library/InputManagers/*/CosmoPod.bundle/Contents/MacOS/CosmoPod
    0x17fa000 -  0x17fbffc +com.CASIO.EXLIM.component (1.1 - 1.1)
    /Library/QuickTime/CASIO AVI Importer.component/Contents/MacOS/CASIO AVI
    Importer
    0x4d25000 -  0x4dd0fff  libcrypto.0.9.7.dylib (106)
    <B96063DD-DBFC-320E-97C7-9ED5099051AC> /usr/lib/libcrypto.0.9.7.dylib
    0x4e14000 -  0x4f33ffb  com.apple.WebKit (8536 - 8536.28.10)
    <C181C3FB-91E3-38AB-A709-6B61935B3AD8>
    /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x5268000 -  0x526bfef  com.apple.LiveType.component (2.1.3 - 2.1.3)
    /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x60ad000 -  0x6d40ffb  com.apple.WebCore (8536 - 8536.28.10)
    <AA738A8C-808D-302A-B58D-404C58075C45>
    /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.
    framework/Versions/A/WebCore
    0x90d9000 -  0x913efde  com.apple.LiveType.framework (2.1.3 - 2.1.3)
    /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x915e000 -  0x91d0fff +com.DivXInc.DivXDecoder (6.4.0 - 6.4.0)
    /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x91de000 -  0x9224fc3  com.apple.motion.component (1.0 - 1.0)
    <77973A13-4E79-426F-853F-2318E52A2207>
    /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0x922a000 -  0x922d02f  Motion (1)
    <B5E862EE-E0FF-4F86-A789-98E3E601A18C>
    /Library/Frameworks/Motion.framework/Versions/A/Motion
    0xb1b2000 -  0xb346ffb  GLEngine (8.7.25)
    <37CEB6BA-0A46-3A34-BE81-7A0ED7DE1830>
    /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEn
    gine
    0xb37d000 -  0xb4fefff  libGLProgrammability.dylib (8.7.25)
    <CE1A4DFC-EEB2-37C1-B574-0338666C4017>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProg
    rammability.dylib
    0xb530000 -  0xb53bfff  libGPUSupport.dylib (8.7.25)
    <08BED1B3-FD0C-3137-BC0C-39EED6029D84>
    /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Librarie
    s/libGPUSupport.dylib
    0xb542000 -  0xb56dff7  GLRendererFloat (8.7.25)
    <2173CC9F-3A9A-37EB-BB50-3E60ABF7F5A3>
    /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bund
    le/GLRendererFloat
    0xb576000 -  0xb57effd  libcldcpuengine.dylib (2.2.16)
    <0BE2D018-66CC-3F69-B8F1-7A81EEEE09F4>
    /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpu
    engine.dylib
    0xef8c000 -  0xef8effd  com.apple.PDFImporter (2.2 - 22)
    <29C10CDB-1E25-39CE-AF37-69DC3DE4BB51>
    /System/Library/Components/PDFImporter.component/Contents/MacOS/PDFImporte
    r
    0xf394000 -  0xf452ff3  ColorSyncDeprecated.dylib (400)
    <A959DD25-E448-3563-B74E-E58C69961C76>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0xfc00000 -  0xfc05ff7  com.apple.DesktopVideoOut (1.2.4 - 1.2.4)
    /Library/QuickTime/DesktopVideoOut.component/Contents/MacOS/DesktopVideoOu
    t
    0xfc94000 -  0xfc99fff  com.apple.audio.AppleHDAHALPlugIn (2.3.7 -
    2.3.7fc4) <081467DA-1F55-3C0C-8081-062A985F36B7>
    /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugI
    n.bundle/Contents/MacOS/AppleHDAHALPlugIn
    0xfca0000 -  0xff90feb +org.perian.Perian (1.2.3 - 1.2.3)
    <722FFF4F-46EF-E5BE-70A6-42B5873D2B37>
    /Library/QuickTime/Perian.component/Contents/MacOS/Perian
    0x1040b000 - 0x105d9ff3 +com.MyCometG3.mp4vDecoder (0.7.7 - 2008.06.01)
    /Library/QuickTime/mp4vDecoder.component/Contents/MacOS/mp4vDecoder
    0x106a9000 - 0x106bbfd9  com.apple.FCP Uncompressed 422.component (1.5 -
    1.5) /Library/QuickTime/FCP Uncompressed 422.component/Contents/MacOS/FCP
    Uncompressed 422
    0x106c1000 - 0x10729feb  com.apple.AppleProResDecoder (3.0.2 - 5718)
    <3F859389-0434-372E-842F-F15A76B4A8B6>
    /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/Appl
    eProResDecoder
    0x1075a000 - 0x107a3fff  com.apple.AppleVAH264HW.component (3.0 - 3.0)
    <FDF1C720-ED0E-323E-BA44-21423DE18D61>
    /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH2
    64HW
    0x10867000 - 0x1086effc  com.apple.AppleGVAHW.component (1.1 - 1)
    <5DB91F15-3FD3-308F-8FC5-662562F3EA78>
    /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0x10875000 - 0x109c0fff  com.apple.AppleGVAFramework (5.0.6 - 5.0.6)
    <103CBDDD-E0C2-3B62-923B-AA46F2AB3CD7>
    /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0x109dc000 - 0x10a16fff  com.apple.QuickTimeFireWireDV.component (7.7.1 -
    2599.24) <1E9A8E7C-A9FD-34FD-AB7C-C3784BAB821F>
    /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/Qui
    ckTimeFireWireDV
    0x10a22000 - 0x10a66fe7  com.apple.DVCPROHDCodec (1.4 - 231)
    /Library/QuickTime/DVCPROHDCodec.component/Contents/MacOS/DVCPROHDCodec
    0x10a7b000 - 0x10b1efd3  com.apple.AppleHDVCodec (1.4.1 - 222)
    <68ABD695-E990-4F5F-9074-D2C4AE440637>
    /Library/QuickTime/AppleHDVCodec.component/Contents/MacOS/AppleHDVCodec
    0x10b3c000 - 0x10b5dfff  com.apple.AppleIntermediateCodec (2.0.1 - 5718)
    <D4B0F083-2E31-3508-BE1D-71F8BA917702>
    /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleIn
    termediateCodec
    0x10b6c000 - 0x10b70ff7  com.apple.AppleMPEG2Codec (1.0.2 - 220.1)
    <AD3A3083-F5A3-3ED1-8086-10A977DE9118>
    /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Code
    c
    0x10b75000 - 0x10b95ff3  com.apple.IMXCodec (1.3.1 - 147)
    /Library/QuickTime/IMXCodec.component/Contents/MacOS/IMXCodec
    0x10bad000 - 0x10bc5ff2  com.apple.applepixletvideo (1.2.31 - 1.2d31)
    <6093BFF1-355E-3F02-903F-FDB466324F99>
    /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/AppleP
    ixletVideo
    0x1255e000 - 0x125b0fff  com.apple.QuickTimeMPEG.component (7.7.1 -
    2599.24) <16DFA65D-83BF-3EC1-B904-C2088AF8CCD1>
    /System/Library/QuickTime/QuickTimeMPEG.component/Contents/MacOS/QuickTime
    MPEG
    0x70000000 - 0x7015eff7  com.apple.audio.units.Components (1.8 - 1.8)
    <F1EA4AF9-517E-3288-9AA4-F20546791B77>
    /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8e2fb000 - 0x8ec49ff3  com.apple.GeForceGLDriver (8.10.44 - 8.1.0)
    <4B231127-7885-33A3-9FC7-7EF42A066FD7>
    /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGL
    Driver
    0x8fe5d000 - 0x8fe8fe57  dyld (210.2.3)
    <23DBDBB1-1D21-342C-AC2A-0E55F27E6A1F> /usr/lib/dyld
    0x90007000 - 0x9000bffc  libGIF.dylib (849)
    <2F1DE1C6-4779-35A6-8ED5-BBF8ADD5962A>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.d
    ylib
    0x9000c000 - 0x901c8ffd  libicucore.A.dylib (491.11.2)
    <59A23F06-16AD-35F8-BA58-D17305232402> /usr/lib/libicucore.A.dylib
    0x901c9000 - 0x90227ff7  com.apple.audio.CoreAudio (4.1.1 - 4.1.1)
    <953DD669-8C6E-387D-AB3F-D8C8965347DF>
    /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90228000 - 0x9022affb  libRadiance.dylib (849)
    <EAF7C74F-2A71-3A07-82E1-4FADEAFCF201>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadia
    nce.dylib
    0x90245000 - 0x90278ffb  com.apple.GSS (3.0 - 2.0)
    <9566A96D-C296-3ABD-A12A-E274C81C0B25>
    /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9033c000 - 0x905dfff3  com.apple.CoreImage (8.2.4 - 1.0.1)
    <BA4EE8D7-FE72-3CC3-801F-B69D8A8B426F>
    /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/Core
    Image.framework/Versions/A/CoreImage
    0x905e0000 - 0x90648fe7  libvDSP.dylib (380.6)
    <55780308-4DCA-3B10-9703-EAFC3E13A3FA>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libvDSP.dylib
    0x90649000 - 0x9094eff7  com.apple.CoreServices.CarbonCore (1037.5 -
    1037.5) <356AE2DF-ABB0-319C-8B5B-2F33D693889F>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Ca
    rbonCore.framework/Versions/A/CarbonCore
    0x9094f000 - 0x90d4bfeb  com.apple.VideoToolbox (1.0 - 926.87)
    <D6460276-E1CF-317D-B32F-80EAE916168C>
    /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x90d4c000 - 0x90d6efff  libc++abi.dylib (26)
    <3AAA8D55-F5F6-362B-BA3C-CCAF0D3C8E27> /usr/lib/libc++abi.dylib
    0x90d6f000 - 0x90e7aff7  libJP2.dylib (849)
    <B2D0E844-C390-376C-91D9-F3501B5C7A83>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.d
    ylib
    0x90e7d000 - 0x90e85fff  libcopyfile.dylib (89)
    <4963541B-0254-371B-B29A-B6806888949B> /usr/lib/system/libcopyfile.dylib
    0x90e86000 - 0x90f83ff7  com.apple.DiskImagesFramework (10.8.3 - 345)
    <26D0C7F8-E87E-3511-8388-8EE616A39D6D>
    /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImag
    es
    0x90f84000 - 0x90f8efff  libCSync.A.dylib (331.0.4)
    <71A7B331-C8A2-322C-AFB0-062EE9C3B848>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x90f8f000 - 0x90fafffd  com.apple.ChunkingLibrary (2.0 - 133.3)
    <FA45EAE8-BB10-3AEE-9FDC-C0C3A533FF48>
    /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chu
    nkingLibrary
    0x90fb0000 - 0x90fb6fff  libGFXShared.dylib (8.7.25)
    <4268BFAF-4529-3B40-A8B9-66F176AC20CF>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXSha
    red.dylib
    0x90fb7000 - 0x90fc6fff  libGL.dylib (8.7.25)
    <818E3E6B-9B00-3117-8157-9E95CB59A47B>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dyl
    ib
    0x90fc7000 - 0x90fc8fff  libdnsinfo.dylib (453.19)
    <3B523729-84A8-3D0B-B58C-3FC185060E67> /usr/lib/system/libdnsinfo.dylib
    0x90fc9000 - 0x90fccff9  libCGXType.A.dylib (331.0.4)
    <981B13D6-4E8B-3468-92D3-FE436B48C0DA>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90fcd000 - 0x9108bff3  com.apple.ColorSync (4.8.0 - 4.8.0)
    <B534DE6A-3AF0-307C-B274-A4FCFC5BC696>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ColorSync.framework/Versions/A/ColorSync
    0x9108c000 - 0x9108dffd  com.apple.TrustEvaluationAgent (2.0 - 23)
    <E42347C0-2D3C-36A4-9200-757FFA61B388>
    /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/
    A/TrustEvaluationAgent
    0x9108e000 - 0x910a5fff  com.apple.GenerationalStorage (1.1 - 132.3)
    <DD0AA3DB-376D-37F3-AC5B-17AC9B9E0A63>
    /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A
    /GenerationalStorage
    0x910a6000 - 0x9117cfff  com.apple.DiscRecording (7.0 - 7000.2.4)
    <528052A0-FCFB-3867-BCDF-EE0F8A998C1C>
    /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecordin
    g
    0x911ba000 - 0x91343ff7  com.apple.vImage (6.0 - 6.0)
    <1D1F67FE-4F75-3689-BEF6-4A46C8039E70>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vIma
    ge.framework/Versions/A/vImage
    0x91344000 - 0x919d0ff3  com.apple.CoreAUC (6.16.13 - 6.16.13)
    <3DCF4456-AF8D-3E87-B00C-C56055AF9B8E>
    /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x919d1000 - 0x919dffff  libxar.1.dylib (105)
    <6498A359-2DBA-3EDA-8F00-EEB989DD0A93> /usr/lib/libxar.1.dylib
    0x919e0000 - 0x91a4fffb  com.apple.Heimdal (3.0 - 2.0)
    <964D9952-B0F2-34F6-8265-1823C0D5EAB8>
    /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x91a50000 - 0x91a95ff7  com.apple.NavigationServices (3.7 - 200)
    <6AB1A00C-BC94-3889-BA95-40A454B720CE>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Navigati
    onServices.framework/Versions/A/NavigationServices
    0x91a96000 - 0x91aa4ff7  libz.1.dylib (43)
    <245F1B61-2276-3BBB-9891-99934116D833> /usr/lib/libz.1.dylib
    0x91aa5000 - 0x91ab1ff7  com.apple.NetAuth (4.0 - 4.0)
    <52D23F12-0718-341D-B9DF-16C814022250>
    /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x91ab2000 - 0x91b4dfff  com.apple.CoreSymbolication (3.0 - 117)
    <F705A8CD-A04A-3A84-970A-7B04BC05DA97>
    /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/C
    oreSymbolication
    0x91b4e000 - 0x91b4ffff  liblangid.dylib (116)
    <E13CC8C5-5034-320A-A210-41A2BDE4F846> /usr/lib/liblangid.dylib
    0x91b50000 - 0x91cadffb  com.apple.QTKit (7.7.1 - 2599.24)
    <39CC892D-2874-33FE-BE30-87FE07D875BD>
    /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91cae000 - 0x91cdbffb  com.apple.CoreServicesInternal (154.2 - 154.2)
    <DCCF604B-1DB8-3F09-8122-545E2E7F466D>
    /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/
    A/CoreServicesInternal
    0x91cdc000 - 0x91d6effb  libvMisc.dylib (380.6)
    <6DA3A03F-20BE-300D-A664-B50A7B4E4B1A>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libvMisc.dylib
    0x91d6f000 - 0x91f57ffb  com.apple.CoreFoundation (6.8 - 744.18)
    <68AFEE40-0078-347E-9DEE-32CFE0062A10>
    /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundat
    ion
    0x91f58000 - 0x91f59fff  libquarantine.dylib (52)
    <D526310F-DC77-37EA-8F5F-83928EFA3262> /usr/lib/system/libquarantine.dylib
    0x91f66000 - 0x91f68fff  com.apple.securityhi (4.0 - 55002)
    <79E3B880-3AB7-3BF3-9CDF-117A45599545>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Security
    HI.framework/Versions/A/SecurityHI
    0x91f69000 - 0x92ca1fff  com.apple.QuickTimeComponents.component (7.7.1 -
    2599.24) <51BE2DF8-7B3B-36F5-8860-50071A8702E4>
    /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/Qui
    ckTimeComponents
    0x92ca2000 - 0x92d89ff7  libxml2.2.dylib (22.3)
    <56E973D6-6B55-3E67-8282-6BC982816488> /usr/lib/libxml2.2.dylib
    0x92d8a000 - 0x92da8ff3  com.apple.openscripting (1.3.6 - 148.3)
    <F3422C02-5ACB-343A-987B-A2D58EA2F5A8>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScri
    pting.framework/Versions/A/OpenScripting
    0x92da9000 - 0x92edcff3  com.apple.MediaControlSender (1.7 - 170.20)
    <7B1AC317-AFDB-394F-8026-9561930E696B>
    /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/
    MediaControlSender
    0x92edd000 - 0x92f0efff  com.apple.DictionaryServices (1.2 - 184.4)
    <CCB46C81-57C6-3F45-B77C-4D29E4CD6BA6>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Di
    ctionaryServices.framework/Versions/A/DictionaryServices
    0x92f0f000 - 0x93126fff  com.apple.CoreData (106.1 - 407.7)
    <17FD06D6-AD7C-345A-8FA4-1F0FBFF4DAE1>
    /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93127000 - 0x9313cfff  com.apple.ImageCapture (8.0 - 8.0)
    <F681CA5B-2871-32CF-8E9F-9220EB387407>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCap
    ture.framework/Versions/A/ImageCapture
    0x9313d000 - 0x9313efff  libsystem_sandbox.dylib (220.2)
    <61A79095-1978-3AAA-B0E0-658BC8E5F045>
    /usr/lib/system/libsystem_sandbox.dylib
    0x9313f000 - 0x93297ffb  com.apple.audio.toolbox.AudioToolbox (1.8 - 1.8)
    <0D36953C-9897-3E9B-8C70-847E90B203A2>
    /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93298000 - 0x932b1fff  com.apple.Kerberos (2.0 - 1)
    <8413EDD3-7E01-3D47-83FD-C14A5235DCD2>
    /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x932b2000 - 0x93309ff7  com.apple.ScalableUserInterface (1.0 - 1)
    <4B538E02-4F41-37FF-81F6-ED43DE0E78CC>
    /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/Scal
    ableUserInterface.framework/Versions/A/ScalableUserInterface
    0x9330a000 - 0x93ec6ff7  com.apple.AppKit (6.8 - 1187.37)
    <6FBB3467-04F9-395F-8EA8-C84347C5BE43>
    /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93ec7000 - 0x93eceffe  com.apple.agl (3.2.1 - AGL-3.2.1)
    <48407521-A4A3-3D28-8784-29E36AA04804>
    /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x93ecf000 - 0x93ed8fff  com.apple.DiskArbitration (2.5.2 - 2.5.2)
    <89822A83-B450-3363-8E9C-9B80CB4450B1>
    /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitr
    ation
    0x93ed9000 - 0x93f20ff3  com.apple.CoreMedia (1.0 - 926.87)
    <713B7213-D695-3162-9852-DBC114C26178>
    /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x93f21000 - 0x93f45fff  com.apple.PerformanceAnalysis (1.16 - 16)
    <7B7EAA0B-5208-32DB-B083-D4B62F37EC46>
    /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A
    /PerformanceAnalysis
    0x93f46000 - 0x946e1ff3  libclh.dylib (4.0.3 - 4.0.3)
    <CF4CE94B-D0CE-3E84-9640-5ABFC54378A5>
    /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dy
    lib
    0x946ee000 - 0x946fbff7  com.apple.AppleFSCompression (49 - 1.0)
    <9A066D13-6E85-36FC-8B58-FD46E51751CE>
    /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/
    AppleFSCompression
    0x946fc000 - 0x9473efff  libcurl.4.dylib (69.2)
    <8CC566A0-0B25-37E8-A6EC-30074C3CDB8C> /usr/lib/libcurl.4.dylib
    0x9473f000 - 0x94ad2ff3  com.apple.MediaToolbox (1.0 - 926.87)
    <F3623474-03AD-3A7F-8BD1-46A44A12E74E>
    /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x94ad3000 - 0x94be3ff3  com.apple.QuickTimeImporters.component (7.7.1 -
    2599.24) <3DBEE5E4-4C40-3390-8405-0D9E271084B2>
    /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/Quic
    kTimeImporters
    0x94be4000 - 0x94c25ff7  com.apple.framework.CoreWiFi (1.2.2 - 122.12)
    <D9479FFE-2D79-373C-9F73-E746664ACD5C>
    /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x94d1b000 - 0x94d1ffff  com.apple.IOSurface (86.0.4 - 86.0.4)
    <6431ACB6-561B-314F-9A2A-FAC1578FCC86>
    /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x94d22000 - 0x94d25fff  com.apple.help (1.3.2 - 42)
    <2B727B38-0E18-3108-9735-F65958924A91>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.fra
    mework/Versions/A/Help
    0x94d26000 - 0x94d26fff  com.apple.Carbon (154 - 155)
    <C0A26E7B-28F1-3C7E-879E-A3CF3ED5111C>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x94d27000 - 0x94d27fff  libSystem.B.dylib (169.3)
    <B81FAD7E-8808-3F49-807F-0AD68D0D7359> /usr/lib/libSystem.B.dylib
    0x94d28000 - 0x94d82ffb  com.apple.AE (645.6 - 645.6)
    <44556FF7-A869-399A-AEBB-F4E9263D9152>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE
    .framework/Versions/A/AE
    0x94d83000 - 0x94dfcffb  libType1Scaler.dylib (101.1)
    <C12C5169-4E91-3148-934F-8A9CAB8546C6>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x94dfd000 - 0x94e3dfff  com.apple.MediaKit (14 - 687)
    <8735A76E-7766-33F5-B3D2-86630070A1BA>
    /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x94e3e000 - 0x94e44fff  com.apple.print.framework.Print (8.0 - 258)
    <3E10C488-C390-33BD-8A4F-568E3021811D>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.fr
    amework/Versions/A/Print
    0x94e45000 - 0x94fbdff5  com.apple.QuartzCore (1.8 - 304.2)
    <FB737C74-C460-32A3-9107-D2112BAE6EBC>
    /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94fbe000 - 0x94fbefff  com.apple.vecLib (3.8 - vecLib 3.8)
    <83160DD1-5614-3E34-80EB-97041016EF1F>
    /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x94fbf000 - 0x9507cfeb  libsystem_c.dylib (825.26)
    <6E35A83F-1A5B-3AF9-8C6D-D7B57B25FB63> /usr/lib/system/libsystem_c.dylib
    0x9507d000 - 0x950d7fff  com.apple.Symbolication (1.3 - 93)
    <4A794D1C-DE02-3183-87BF-0008A602E4D3>
    /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbo
    lication
    0x950d8000 - 0x95364ffb  com.apple.RawCamera.bundle (4.04 - 680)
    <DD1D3CFC-1710-3186-A6C4-89B42F100117>
    /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x95365000 - 0x95366ffd  libunc.dylib (25)
    <5E1EEE9E-3423-33D7-95B2-E4D17DD08C18> /usr/lib/system/libunc.dylib
    0x95367000 - 0x9537cfff  com.apple.speech.synthesis.framework (4.1.12 -
    4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9537d000 - 0x953aaffe  libsystem_m.dylib (3022.6)
    <93CEEC8C-FAB5-313C-B0BB-0F4E91E6B878> /usr/lib/system/libsystem_m.dylib
    0x95412000 - 0x95424fff  libbsm.0.dylib (32)
    <DADD385E-FE53-3458-94FB-E316A6345108> /usr/lib/libbsm.0.dylib
    0x954c3000 - 0x9550dff7  com.apple.framework.CoreWLAN (3.0.2 - 302.12)
    <1D7CB11D-C28C-3A25-865A-4AD6EE40D493>
    /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x9550e000 - 0x9550efff  com.apple.CoreServices (57 - 57)
    <83B793A6-720D-31F6-A76A-89EBB2644346>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x95511000 - 0x95513ffc  com.apple.QuickTimeH264.component (7.7.1 -
    2599.24) <54598D54-DBFC-3EA1-9712-05F4052A79E2>
    /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTime
    H264
    0x95514000 - 0x95558ff7  libGLU.dylib (8.7.25)
    <0CC1A4D8-C095-3F2B-B55C-FDEBEA0E9CFE>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dy
    lib
    0x95845000 - 0x95869fff  libJPEG.dylib (849)
    <CD42C17E-6B13-35BE-B585-9AE69CEA534F>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.
    dylib
    0x95904000 - 0x95930ff7  libsystem_info.dylib (406.17)
    <2731CC70-DF2E-3BD1-AE73-A3B83C531756>
    /usr/lib/system/libsystem_info.dylib
    0x95938000 - 0x959adff7  com.apple.ApplicationServices.ATS (332 - 341.1)
    <1D81B09C-98DB-3CDB-990B-459FAE3D8D7A>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/ATS
    0x959ae000 - 0x959b0fff  libdyld.dylib (210.2.3)
    <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x959b5000 - 0x95c75ff3  com.apple.security (7.0 - 55179.11)
    <165A3105-9ADF-329B-93FC-3C8EFAEDDD13>
    /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95f11000 - 0x95f48ffa  com.apple.LDAPFramework (2.4.28 - 194.5)
    <B7BAC5B9-ABA9-3799-B8B5-D2DED9383C24>
    /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x95f49000 - 0x96084ff7  libBLAS.dylib (1073.4)
    <FF74A147-05E1-37C4-BC10-7DEB57FE5326>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libBLAS.dylib
    0x96085000 - 0x960aaffb  com.apple.framework.familycontrols (4.1 - 410)
    <B1755756-BEA2-3205-ADAA-68FCC32E60BD>
    /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/Fami
    lyControls
    0x960ab000 - 0x96142ff7  com.apple.ink.framework (10.8.2 - 150)
    <A9C3B735-7D5F-3D7D-AA70-2CC852D09CDE>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.fram
    ework/Versions/A/Ink
    0x96143000 - 0x96291fff  com.apple.CFNetwork (596.3.3 - 596.3.3)
    <EC7EF37B-B00E-374D-9E8F-E4E22D741059>
    /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x962a2000 - 0x962a9ff3  com.apple.NetFS (5.0 - 4.0)
    <FD429432-6DA7-3B41-9889-0E8B4ECB8A4F>
    /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x962aa000 - 0x9632fff7  com.apple.SearchKit (1.4.0 - 1.4.0)
    <4E947DC1-7985-3111-A864-58EDD6D955DC>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Se
    archKit.framework/Versions/A/SearchKit
    0x96330000 - 0x96355ff7  com.apple.CoreVideo (1.8 - 99.4)
    <A26DE896-32E0-3D5E-BA89-02AD23FA96B3>
    /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x96359000 - 0x96359fff  com.apple.ApplicationServices (45 - 45)
    <B23FD836-ECA1-3DF8-B043-9CA9779BE9DB>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Applic
    ationServices
    0x9635a000 - 0x9635dff7  com.apple.TCC (1.0 - 1)
    <ABE3CE50-C948-30B1-A343-837D8E7BA9F0>
    /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x96365000 - 0x96472057  libobjc.A.dylib (532.2)
    <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x96477000 - 0x9658fff7  com.apple.coreavchd (5.6.0 - 5600.4.16)
    <D871D730-1D5C-34E7-98C7-0FF09964E618>
    /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x96590000 - 0x96948ffa  libLAPACK.dylib (1073.4)
    <9A6E5EAD-F2F2-3D5C-B655-2B536DB477F2>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/libLAPACK.dylib
    0x96949000 - 0x96950fff  libsystem_dnssd.dylib (379.37)
    <49A44FB3-559D-3C7E-AA40-23F5A8E612AC>
    /usr/lib/system/libsystem_dnssd.dylib
    0x96951000 - 0x9696dfff  libPng.dylib (849)
    <BF2CB6F5-A2F1-35A4-93F7-ACA6D7F02084>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.d
    ylib
    0x9696e000 - 0x9696effd  com.apple.audio.units.AudioUnit (1.8 - 1.8)
    <D35BA73D-1E56-3A1D-9F9F-971F3BF8C136>
    /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9696f000 - 0x96bc8ff8  com.apple.JavaScriptCore (8536 - 8536.28.10)
    <B02A662A-7DE6-3C9D-AB08-AA746D48FF2B>
    /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptC
    ore
    0x96bc9000 - 0x96bfefff  libTrueTypeScaler.dylib (84.6)
    <B7DB746B-7A61-38EF-8CA7-408ED9C14A02>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x96bff000 - 0x96c00fff  libremovefile.dylib (23.2)
    <9813B2DB-2374-3AA2-99B6-AA2E9897B249> /usr/lib/system/libremovefile.dylib
    0x96c01000 - 0x96c3cfef  libGLImage.dylib (8.7.25)
    <6C0B2148-032A-3911-AB21-2E07606E3D9A>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImag
    e.dylib
    0x96c3d000 - 0x96c94ff3  com.apple.HIServices (1.20 - 417)
    <561A770B-8523-3D09-A763-11F872779A4C>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/HIServices.framework/Versions/A/HIServices
    0x96c95000 - 0x96c9fffe  com.apple.bsd.ServiceManagement (2.0 - 2.0)
    <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69>
    /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceM
    anagement
    0x96da2000 - 0x96db5ff9  com.apple.MultitouchSupport.framework (235.29 -
    235.29) <451701B6-03CE-3F26-9FF0-92D8DA1467EE>
    /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/M
    ultitouchSupport
    0x96db6000 - 0x96e1eff7  com.apple.framework.IOKit (2.0.1 - 755.22.5)
    <F9A70D23-1108-3616-9DE3-6C5730CA7AB2>
    /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96e1f000 - 0x96e35fff  com.apple.CFOpenDirectory (10.8 - 151.10)
    <3640B988-F915-3E0D-897C-CB04C95BA601>
    /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/C
    FOpenDirectory.framework/Versions/A/CFOpenDirectory
    0x96e65000 - 0x96eb3ff3  com.apple.SystemConfiguration (1.12.2 - 1.12.2)
    <6E858B9F-337A-314E-88B7-24A274ACE568>
    /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/System
    Configuration
    0x96eb4000 - 0x96ef6ff7  libauto.dylib (185.1)
    <B2B5B639-6778-352A-828D-FD8B64A3E8B3> /usr/lib/libauto.dylib
    0x96ef7000 - 0x96ff5ff7  libFontParser.dylib (84.6)
    <7D3EB3CC-527E-3A74-816A-59CAFD2260A4>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x96ff6000 - 0x97004fff  com.apple.opengl (1.8.7 - 1.8.7)
    <0631EC1D-833B-39D2-A907-A9F7617E5504>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x97056000 - 0x97473fff  FaceCoreLight (2.4.1)
    <571DE3F8-CA8A-3E71-9AF4-F06FFE721CE6>
    /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceC
    oreLight
    0x97474000 - 0x9747dfff  com.apple.CommerceCore (1.0 - 26.1)
    <8C28115C-6EC1-316D-9237-F4FBCBB778C5>
    /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Framewo
    rks/CommerceCore.framework/Versions/A/CommerceCore
    0x9747e000 - 0x97576ff9  libsqlite3.dylib (138.1)
    <AD7C5914-35F0-37A3-9238-A29D2E26C755> /usr/lib/libsqlite3.dylib
    0x975ad000 - 0x975b6ffd  com.apple.audio.SoundManager (4.0 - 4.0)
    <6A0B4A5D-6320-37E4-A1CA-91189777848C>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSo
    und.framework/Versions/A/CarbonSound
    0x975b7000 - 0x975c9ff7  libdispatch.dylib (228.23)
    <86EF7D45-2D97-3465-A449-95038AE5DABA> /usr/lib/system/libdispatch.dylib
    0x975ca000 - 0x97618ffb  libFontRegistry.dylib (100)
    <97D8F15F-F072-3AF0-8EF8-50C41781951C>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x97619000 - 0x97625ffa  com.apple.CrashReporterSupport (10.8.3 - 417)
    <A4A45B14-8992-3739-82BC-3C5E5C2686F9>
    /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/
    A/CrashReporterSupport
    0x97626000 - 0x976d5ff7  com.apple.CoreText (260.0 - 275.16)
    <7716C57B-E059-3B30-BBA8-AD7FF6EE3D35>
    /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x976d6000 - 0x97776ff7  com.apple.QD (3.42 - 285)
    <1B8307C6-AFA8-312E-BA5B-679070EF2CA1>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/QD.framework/Versions/A/QD
    0x97777000 - 0x977b9ffb  com.apple.RemoteViewServices (2.0 - 80.6)
    <AE962502-4539-3893-A2EB-9D384652AEAC>
    /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/
    RemoteViewServices
    0x977ba000 - 0x9781eff3  libstdc++.6.dylib (56)
    <F8FA490A-8F3C-3645-ABF5-78926CE9C62C> /usr/lib/libstdc++.6.dylib
    0x9781f000 - 0x97829fff  com.apple.speech.recognition.framework (4.1.5 -
    4.1.5) <774CDB2F-34A1-347A-B302-4746D256E921>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRe
    cognition.framework/Versions/A/SpeechRecognition
    0x9782a000 - 0x97841ff4  com.apple.CoreMediaAuthoring (2.1 - 914)
    <8D71DE7D-7F53-3052-9FAF-132CB61BA9F5>
    /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/
    CoreMediaAuthoring
    0x97842000 - 0x978a6fff  com.apple.datadetectorscore (4.1 - 269.2)
    <B4D53047-C613-32F8-9E08-0154EA81B487>
    /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/D
    ataDetectorsCore
    0x978b2000 - 0x978faff5  com.apple.opencl (2.2.18 - 2.2.18)
    <004A1DE4-49C6-3938-8B54-CD1DC23BDBE5>
    /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x978fb000 - 0x979affff  com.apple.coreui (2.0 - 181.1)
    <6BEEE83E-C878-3FE6-B521-8B32B3A35409>
    /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x979b0000 - 0x97a00ff7  com.apple.CoreMediaIO (307.0 - 4155)
    <49D36F54-D414-3745-8194-69FC3B632ED3>
    /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x97a01000 - 0x97a2aff7  libRIP.A.dylib (331.0.4)
    <FE496AFC-420A-3712-BC79-FC8C63ADB73D>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x97a2b000 - 0x97affff3  com.apple.backup.framework (1.4.2 - 1.4.2)
    <0473EB45-E9BF-3C10-B235-A6E2B960A88F>
    /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x97b00000 - 0x97b1dfff  libCRFSuite.dylib (33)
    <8E6E8815-406E-3A89-B96E-908FEFC27F0A> /usr/lib/libCRFSuite.dylib
    0x97b75000 - 0x97b79ffe  libcache.dylib (57)
    <834FDCA7-FE3B-33CC-A12A-E11E202477EC> /usr/lib/system/libcache.dylib
    0x97b7a000 - 0x97c12fff  com.apple.CoreServices.OSServices (557.6 -
    557.6) <E1600639-3EEC-3DF8-BD40-747BB2117988>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OS
    Services.framework/Versions/A/OSServices
    0x97c13000 - 0x97d2fffb  com.apple.desktopservices (1.7.3 - 1.7.3)
    <7157C51D-C695-3C9E-B532-F551E7E55B56>
    /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A
    /DesktopServicesPriv
    0x97d61000 - 0x97d61fff  libsystem_blocks.dylib (59)
    <3A743C5D-CFA5-37D8-80A8-B6795A9DB04F>
    /usr/lib/system/libsystem_blocks.dylib
    0x97d62000 - 0x97d69fff  liblaunch.dylib (442.26.2)
    <310C99F8-0811-314D-9BB9-D0ED6DFA024B> /usr/lib/system/liblaunch.dylib
    0x97d6a000 - 0x97d6affd  libOpenScriptingUtil.dylib (148.3)
    <87895E27-88E2-3249-8D0E-B17E76FB00C1> /usr/lib/libOpenScriptingUtil.dylib
    0x97d6b000 - 0x97e78ff3  com.apple.ImageIO.framework (3.2.0 - 849)
    <B34C2380-51F6-38B1-BB6C-C2E5185D90EF>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x97ed1000 - 0x97f7bfff  com.apple.LaunchServices (539.7 - 539.7)
    <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/La
    unchServices.framework/Versions/A/LaunchServices
    0x97f80000 - 0x97f8afff  libsystem_notify.dylib (98.5)
    <7EEE9475-18F8-3099-B0ED-23A3E528ABE0>
    /usr/lib/system/libsystem_notify.dylib
    0x97f9a000 - 0x97f9dffc  libCoreVMClient.dylib (32.3)
    <35B63A60-DF0A-3FB3-ABB8-164B246A43CC>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVM
    Client.dylib
    0x98317000 - 0x98372fff  com.apple.htmlrendering (77 - 1.1.4)
    <CD33B313-7E85-3AC0-9EFF-6B0C05F10135>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRend
    ering.framework/Versions/A/HTMLRendering
    0x983a5000 - 0x98421ff3  com.apple.Metadata (10.7.0 - 707.5)
    <F2BC2AB4-A87A-3D37-A496-AC21EF3E1244>
    /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Me
    tadata.framework/Versions/A/Metadata
    0x98422000 - 0x98864ff3  com.apple.CoreGraphics (1.600.0 - 331.0.4)
    <BC041647-FB5A-3D07-A253-F3D34E25BF6C>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x98865000 - 0x98869fff  com.apple.OpenDirectory (10.8 - 151.10)
    <E3D2E1A4-6E55-3C23-BCB4-7B9D31EFD605>
    /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirector
    y
    0x9886a000 - 0x9886afff  com.apple.Accelerate (1.8 - Accelerate 1.8)
    <4EC0548E-3A3F-310D-A366-47B51D5B6398>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9886b000 - 0x9886bfff  libkeymgr.dylib (25)
    <D5E93F7F-9315-3AD6-92C7-941F7B54C490> /usr/lib/system/libkeymgr.dylib
    0x988d8000 - 0x988e8ff2  com.apple.LangAnalysis (1.7.0 - 1.7.0)
    <C6076983-A02E-389E-BFC6-008EECC4C896>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/LangAnalysis.framework/Versions/A/LangAnalysis
    0x98965000 - 0x98966fff  libDiagnosticMessagesClient.dylib (8)
    <39B3D25A-148A-3936-B800-0D393A00E64F>
    /usr/lib/libDiagnosticMessagesClient.dylib
    0x989f0000 - 0x98a3cfff  libcorecrypto.dylib (106.2)
    <20EBADBA-D6D6-36F0-AE80-168E9AF13DB6> /usr/lib/system/libcorecrypto.dylib
    0x992bb000 - 0x992c7ffe  libkxld.dylib (2050.22.13)
    <ED37AAAA-B1C0-3ADF-A897-3D580A845843> /usr/lib/system/libkxld.dylib
    0x992f8000 - 0x992f8fff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8)
    <908B8D40-3FB5-3047-B482-3DF95025ECFC>
    /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecL
    ib.framework/Versions/A/vecLib
    0x992f9000 - 0x99575ff7  com.apple.QuickTime (7.7.1 - 2599.24)
    <5B1CA228-A6B3-39DF-A5CC-F981E59DAD1D>
    /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x99576000 - 0x995f0ff3  com.apple.securityfoundation (6.0 - 55115.4)
    <8A3DA1FE-1985-3ECB-945A-6B1E853B4BDC>
    /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/Securit
    yFoundation
    0x995f1000 - 0x99640ff6  libTIFF.dylib (849)
    <229EBA67-A2D3-30B7-8177-3CA5503360EC>
    /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.
    dylib
    0x99641000 - 0x99732ffc  libiconv.2.dylib (34)
    <B096A9B7-83A6-31B3-8D2F-87D91910BF4C> /usr/lib/libiconv.2.dylib
    0x9973d000 - 0x99748fff  libcommonCrypto.dylib (60027)
    <8EE30FA5-AA8D-3FA6-AB0F-05DA8B0425D9>
    /usr/lib/system/libcommonCrypto.dylib
    0x99749000 - 0x99757ff3  libsystem_network.dylib (77.10)
    <11CAF6A8-17CF-3178-9348-57C5ED494BA8>
    /usr/lib/system/libsystem_network.dylib
    0x99758000 - 0x99781fff  libxslt.1.dylib (11.3)
    <0DE17DAA-66FF-3195-AADB-347BEB5E2EFA> /usr/lib/libxslt.1.dylib
    0x99782000 - 0x99785ff7  libcompiler_rt.dylib (30)
    <CE5DBDB4-0124-3E2B-9105-989DF98DD108>
    /usr/lib/system/libcompiler_rt.dylib
    0x99786000 - 0x9978fff9  com.apple.CommonAuth (3.0 - 2.0)
    <34C4768C-EF8D-3DBA-AFB7-09148C8672DB>
    /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAu
    th
    0x99790000 - 0x99794ff7  libmacho.dylib (829)
    <5280A013-4F74-3F74-BE0C-7F612C49F1DC> /usr/lib/system/libmacho.dylib
    0x99795000 - 0x99ab3ff3  com.apple.Foundation (6.8 - 945.16)
    <C4D95341-B4FF-30AC-815A-A23C019C57A3>
    /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x99ab4000 - 0x99abbffb  libunwind.dylib (35.1)
    <E1E8D8B3-3C78-3AB1-B398-C180DC6DCF05> /usr/lib/system/libunwind.dylib
    0x99abc000 - 0x99abfffc  libpam.2.dylib (20)
    <FCF74195-A99E-3B07-8E49-688D4A6F1E18> /usr/lib/libpam.2.dylib
    0x99ac0000 - 0x99adaffc  libsystem_kernel.dylib (2050.22.13)
    <70C520E8-0394-3DFB-823B-FE8C251C169A>
    /usr/lib/system/libsystem_kernel.dylib
    0x99adb000 - 0x99af8fff  libxpc.dylib (140.42)
    <1E419D55-C5C1-33FF-B52E-6C7FFBEA5E1F> /usr/lib/system/libxpc.dylib
    0x99af9000 - 0x99b5ffff  com.apple.print.framework.PrintCore (8.3 -
    387.2) <0F7665F5-33F0-3661-9BE2-7DD2890E304B>
    /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Framew
    orks/PrintCore.framework/Versions/A/PrintCore
    0x99b60000 - 0x99b70ff7  libsasl2.2.dylib (166)
    <D9080BA2-A365-351E-9FF2-7E0D4E8B1339> /usr/lib/libsasl2.2.dylib
    0x99b71000 - 0x99f54fff  com.apple.HIToolbox (2.0 - 626.1)
    <ECC3F04F-C4B7-35BF-B10E-183B749DAB92>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbo
    x.framework/Versions/A/HIToolbox
    0x99f55000 - 0x99f72ff7  libresolv.9.dylib (51)
    <B9742A2A-DF15-3F6E-8FCE-778A58214B3A> /usr/lib/libresolv.9.dylib
    0x99f73000 - 0x99f7fff8  libbz2.1.0.dylib (29)
    <7031A4C0-784A-3EAA-93DF-EA1F26CC9264> /usr/lib/libbz2.1.0.dylib
    0x99f80000 - 0x99fc2ff7  libcups.2.dylib (327.3)
    <C7A4A315-FA15-354B-8BC9-BE824C4EFF6D> /usr/lib/libcups.2.dylib
    0x9a01e000 - 0x9a080fff  libc++.1.dylib (65.1)
    <35EE57E1-2705-3C76-A75A-75655D720268> /usr/lib/libc++.1.dylib
    0x9a081000 - 0x9a083ffd  libCVMSPluginSupport.dylib (8.7.25)
    <C8FC6227-5209-3138-89CD-03CAD11F3EC3>
    /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPl
    uginSupport.dylib
    0x9a084000 - 0x9a0a3ff3  com.apple.Ubiquity (1.2 - 243.15)
    <E10A2937-D671-3D14-AF8D-BA25E601F458>
    /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x9a312000 - 0x9a3f3fff  libcrypto.0.9.8.dylib (47)
    <219227B4-75D2-3CCC-B241-4BE8F8E1D4AB> /usr/lib/libcrypto.0.9.8.dylib
    0x9a3f4000 - 0x9a427ff5  libssl.0.9.8.dylib (47)
    <84896B24-4941-3149-A4CF-2BAD0F621002> /usr/lib/libssl.0.9.8.dylib
    0x9a659000 - 0x9a683ff9  com.apple.framework.Apple80211 (8.3.2 -
    832.18.1) <69AD5C5E-14A2-3E2B-AE28-2C7A7E4F5D0A>
    /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple802
    11
    0x9a684000 - 0x9a6c3ff7  com.apple.bom (12.0 - 192)
    <D245FA22-3B6C-3872-B485-BE84AD9098B2>
    /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x9a6c4000 - 0x9a6faffb  com.apple.DebugSymbols (98 - 98)
    <D0293694-C381-30DF-8DD9-D1B04CD0E5F0>
    /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugS
    ymbols
    0x9a6fb000 - 0x9a6fbfff  com.apple.Cocoa (6.7 - 19)
    <01AA482A-677A-31CA-9EC9-05C57FDDE427>
    /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x9a6fc000 - 0x9a700fff  com.apple.CommonPanels (1.2.5 - 94)
    <7B3FC9A4-0F71-31E7-88CE-1BD4CBB655B2>
    /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPa
    nels.framework/Versions/A/CommonPanels
    0x9a707000 - 0x9a762ff7  com.apple.AppleVAFramework (5.0.19 - 5.0.19)
    <3C43A555-0A22-3D7C-A3FB-CFADDDA43E9B>
    /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 5760
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=228.2M resident=144.2M(63%)
    swapped_out_or_unallocated=84.0M(37%)
    Writable regions: Total=603.0M written=205.9M(34%) resident=473.2M(78%)
    swapped_out=0K(0%) unallocated=129.8M(22%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    (null) (reserved)                    40K        reserved VM address space
    (unallocated)
    ATS (font support)                 33.0M
    ATS (font support) (reserved)         4K        reserved VM address space
    (unallocated)
    CG backing stores                  4336K
    CG image                              4K
    CG raster data                      116K
    CG shared images                   1216K
    CoreServices                       5420K
    IOKit                             257.9M
    IOKit (reserved)                      4K        reserved VM address space
    (unallocated)
    MALLOC                            269.4M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=249                      192K
    Memory tag=35                      3976K
    Stack                              67.6M
    VM_ALLOCATE                        16.5M
    __DATA                             30.5M
    __DATA/__OBJC                       208K
    __IMAGE                             528K
    __IMPORT                             72K
    __LINKEDIT                         44.1M
    __OBJC                             1932K
    __OBJC/__DATA                       256K
    __PAGEZERO                            4K
    __TEXT                            184.1M
    __UNICODE                           544K
    mapped file                        76.4M
    shared memory                       424K
    ===========                      =======
    TOTAL                             998.4M
    TOTAL, minus reserved VM space    998.3M

    Hi,
    here are some more informations about the problem.
    The root CA certificate is imported as trusted in the system keychain of the server and the client. A certificate evaluation returns "valid certificates, trusted ...".
    The client bind fails with this messages, e.g. Kerio Control is able the use LDAPS, so it seams just the problem with the trustability of the certificates. Keychain trusts the certificates, OD client bind not, this is not so consistent.
    Any idee?
    Thanks
    Henri
    2013-03-14 19:39:02.776804 CET - Trigger - notified opendirectoryd:nodes;lastServerChanged;/LDAPv3/ldaps://macpro....:636
    2013-03-14 19:39:02.793467 CET - 71825.330426.330427, Module: AppleODClientLDAP - unable to create connection to LDAP server - ldap_search_ext_s for the ro
    otDSE failed with error 'server connection failed' (-1) error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed (self signed cert
    ificate in certificate chain)
    2013-03-14 19:39:02.793501 CE
    CONNECTED(00000003)
    depth=1 /C=DE/...
    Certificate chain
    0 s:/CN=macpro...
       i:/C=DE//OU=IT/CN=*.office.../emailAddress=admin@...
    verify error:num=19:self signed certificate in certificate chain
    verify return:0

  • Geotagging with Google plugin.  Does it work?

    I've just bought a little gps receiver, and I'm trying to geotag some pix. I've loaded up the Google LR geotagger plugin (http://code.google.com/p/geotag-lightroom-plugin/), and I have a gpx file with the coordinates. I tell it to geotag the photos, but I don't see the lat/long anywhere in the metadata. I've tried it both with "update originals" unchecked, and with it checked. In either case, nothing happens.
    My originals are raw .nef files. Can the plugin (using exiftools) update those? I haven't been converting to dng, but maybe this is the kick in the pants that I need to do that.
    Where should I see the gps coordinates in LR? Looking at some of the screen shots, it looks like there's a gps line, immediately after the lens line in the exif metadata. My metadata doesn't show that line at all.
    Any help is greatly appreciated.

    My Geosetter workflow is as follows, which is from LR 1.x days, though I now use LR 2.1:
    1) Import photos into LR (auto XMP writing is turned off)
    2) Use Geosetter to create XMP files with GPS information from the GPX file or by hand using the build-in map. I can work with the photos in LR while I wait for Geosetter to finish. I have Geosetter set up to add GPS information into the RAWs, themselves, along with creating an XMP sidecar. You can have it create backups of the RAWs as its adding the GPS information if you're afraid of corruption, but I eventually turned this off after nothing has ever happened and it was taking twice as much space.
    3) After Geosetter is finished, in LR use Select-All and Write Metadata to Files... for all the photos I just geotagged. LR adds its tags to the XMPs that Geosetter has just created.
    4) Use Select-All and Read Metadata from Files... for all photos just geotagged. LR reads its metadata plus the GPS tags that Geosetter created.
    It is possible to geotag before importing into LR and then the GPS data will be there when you import, initially but I found that it takes minutes per photo to import when I do this, so I quit doing it, and besides I want to see and work with my photos while Geosetter is slowing embedding data into them--which takes a while because they are 15-20MB RAWs at several-seconds per file with EXIFtool doing the work.
    The unbearable slowness is due to something wrong with my system, I think -- too old among other things, so just do the Geotagging after I import and do the write/read metadata and it works ok. There will be a temporary metadata-is-out-of-sync indication on the photos as Geosetter is creating the XMP but it resolves itself when you do the write then read of the metadata.
    It can be slow to both write and read the metadata while the photos My Geosetter workflow is as follows, which is from LR 1.x days:
    1) Import photos into LR (auto XMP writing is turned off)
    2) Use Geosetter to create XMP files with GPS information from the GPX file or by hand using the build-in map. I can work with the photos in LR while I wait for Geosetter to finish.
    3) Use Select-All and Write Metadata to Files... for all the photos I just geotagged. (LR adds its tags to the XMPs that Geosetter has just created)
    4) Use Select-All and Read Metadata from Files... for all photos just geotagged. (LR reads its metadata plus the GPS tags that Geosetter created)
    It is possible to geotag before importing into LR and then the GPS data will be there when you import, initially but I found that it takes minutes per photo to import when I do this, so I quit. There is something wrong with my system, I think -- too old among other things, so just do the geotagging after I import and it works ok. There will be a temporary metadata-is-out-of-sync indication on the photos as Geosetter is creating the XMP but it resolves itself when you do the write then read of the metadata.
    My system is slow so it is faster if I select some other small directory of photos or an empty quick-collection while writing then reading the metadata, otherwise the thumbnails get updated as the metadata is being read and slows things down. On a newer, multicore system, which mine isn't, it may work just fine to have the metadata updating the visible set of thumbnails, but it's too slow on mine.

  • Connection pooling does not work Oracle Objects! Oracle please respond!

    The problem is that when we retrieve Oracle Objects using pooled connection (closing logical connection at the end of every call)it takes 6-8 times longer than in case we share the same physical connection for all database calls. Parts of our application which do not utilize Oracle Objects (just old good relational data) works just fine with pooled connections - no performance degradation
    This is my reconstruction of f the what is happening behind the seen, so some parts can be not entirely correct.
    OracleConnection class caches StructDescriptor objects in descriptorCache hash table. StructDescriptor objects map content of oracle STRUCTs which are retrieved through the connection onto oracle type names. For example if you retrieve an instance of HR.EMPLOYEE_T oracle object from database some metadata will be retrieved and stored as an entry in descriptorCache cache table associated with "HR.EMPLOYEE_T" key to assist CustomDatum interface. It is a time consuming process and caching of this metadata improves it dramatically.
    Now when using pooled connection descriptorCache gets cleared when you close your logical connection (java.sql.Connection) so next time you get a connection from your pooled connection it will have to repopulate the cache which as I said is very time consuming. As a result even though we can reuse our physical connection by using pooled connection whole setup does not work - fetching metadata takes a long time and we cant use Oracle objects in EJB environment (or Servlet environment)
    Alex Roytman
    Peace Technology, Inc.
    (301) 206-9696
    null

    check out managed datasources in the manuals

  • Copy Protection without DLT - Link does not work

    I'm trying to find out how I can protect DVDS with Encore. Or if anyone knows of reasonably priced software to do this. I see there is a link to something called, Protection without DLT, but the link does not work....
    Help!
    Jessica

    CSS keys are only licensed to replicators, player manufacturers, etc. so it is highly unlikely that there will ever be a free solution for creating encrypted DVDs.
    CSS encryption is worthless, by the way.  It has been compromised for over a decade.  There are more complex copy-protection methods available that work by creating malformed structures on the DVD meant to confuse "ripping" programs.  However, they are an additional cost from third parties and, more significantly, they run the risk of making your product incompatible with older players or with some computer DVD-ROM drives or software players. 
    Your replication facility can tell you which additional copy-protection methods they offer and what their cost is.

  • With HP update for Maverick my photosmart C309A does not work properly

    After the HP-update for Maverick my printer HP Photosmart C309A does not work correctly. The scan facility is gone and the printer "hangs" after one print. I had to reset the printer software from a backup and to disable the automatic installation facility on my IMac. Shortly, very very very nasty. I hope this is the way for Apple to change this update into a good one. There is no other way to communicate with Apple then through the Community. I wander if Yosemite gives the same problems with printers.

    You are welcome.
    Send Apple feedback. They won't answer, but at least will know there is a problem. If enough people send feedback, it may get the problem solved sooner.
    Feedback
    Some people have solved this by restoring their previous driver from their backup.

  • Chat Support just does NOT work!

    I can't get chat support to work. Are there ANY other option? I need help with an issue:
    http://community.skype.com/t5/Rates-and-subscriptions/Looking-for-International-Calling-Texting/m-p/...
    Obviously, they don't want me to call. But is there really chat support?

    Hi, achyfakey, and welcome to the Community,
    Yes, there is Skype Customer Service and yes, the instant message chat facility does work.  That said, Skype is aware of continuing website issues. Temporarily enabling scripts, pop-up dialog boxes, and disabling plug-ins which could prohibit pop-ups may help get past website problems.
    If you still experience difficulty reaching Skype Customer Service or find yourself redirected back to the Community, please try again using a different web browser and choosing a different path through the various drop-down menu options presented.  It may take several attempts, however people are getting through.
    Also, look to approve a pop-up dialogue box which would connect you to start an instant message chat with a customer service agent. If you have pop-ups blocked in your browser settings, this will also block reaching an agent.
    Last and not least, when you reach the last step of the process, remember to click on the "Start Chat" link when you are provided the choice of visiting the Community or starting an instant message chat with a customer service agent.
    Regards,
    Elaine
    Was your question answered? Please click on the Accept as a Solution link so everyone can quickly find what works! Like a post or want to say, "Thank You" - ?? Click on the Kudos button!
    Trustworthy information: Brian Krebs: 3 Basic Rules for Online Safety and Consumer Reports: Guide to Internet Security Online Safety Tip: Change your passwords often!

Maybe you are looking for