Java 6 Concerns

I had to install the "legacy" Java 6 in order to allow the Adobe CS4 applications to run. I'm concerned that having an old version of Java on my system may introduce some security concerns.
Other than the obvious, 'disable Java in the browser', what can I do to ensure my system security while having Java installed for the apps that need it?
This is where I wish OS X had a 'Java Permissions' option in System Preferences, where we can tell the system 'allow appname to use Java' or 'block appname from using Java'. That way, even if we need to use a legacy version we can still be completely safe.

I am more than frustrated right now with this Yose-freaking-mite; I have updated uninstall reinstalled and still nothing. I am so lost here.
Either Photoshop or of course Minecraft LOL won't work, but hey I want to blow up some steam...
Keeps telling me I have to install the legacy Java SE 6 runtime.
When I click on More info not even this link opens up on safari
Java for OS X 2014-001
On my iMac I still have CS3 and does not work; on my laptop I run Photoshop CC and gives me the same error.
I need to fix this to finish some work; should I just use time machine and go back to a time no update was done?

Similar Messages

  • Using the "java" command in Java 1.4.1

    Hello..
    I don't seem to be able to run any application that should run with
    the "java" command in Java 1.4.1. Everytime I use "java" I get the "java.lang.NoClassDefinitionError"
    Even running this simple program doesn't work:(
    package chapter10;
    public class test {
    public static void main(String args[]) {
    System.out.println("Hello WORLD!!");
    }//end class
    when I run: "java chapter10/test"
    I get the following message:
    "Exception in thread 'main' java.lang.NoClassDefinitionError: chapter10/test"
    And the sam happens to any other class when I try to run it:(
    The "javac" command works fine:) but the "java" is giving me a hard time:(
    I would appreciate any suggestions or answers to this problem:) THANK U

    See if this explanation helps.
    Assume that your programs are part of a package named divelog, which is specified by the first line in each source file: package divelog;
    Also assume that this directory (C:\javaT\myWork\) is part of the CLASSPATH list of directories.
    Also assume that all the source files reside in this directory structure: C:\javaT\myWork\divelog\
    Then a statement to compile a source file Named Divelog.java is:
    C:\JavaT\myWork\>javac divelog\Divelog.java
    Explanation:
    Java starts looking for classes in the directory(s) listed in the classpath. In this case, one of the directories should be: C:\JavaT\myWork\ since it contains your divelog package.
    Compiling
    A class can either be part of a package (ie, no package statement at the top of the class.), or not.
    If the class is not part of a package: Its source file needs to be in one of the classpath directories. To compile you use the command: javac SomeFile.java, from within the classpath directory that contains the file.
    The class is part of a package (this case): The source file must be in a subdirectory structure that starts in one of the classpath directories. The subdirectory structure must match the package statement.
    So, you generate a directory structure C:\javaT\myWork\divelog\ which is the [classpath directory + the package subdirectory structure], and place Divelog.java in it.
    Then from the classpath directory (C:\JavaT\myWork\) use the command: javac divelog\Divelog.java
    This creates a file, Divelog.class in the divelog directory. (The following is where people tend to get lost.) The correct name now, as far as java is concerned, is the combination of package name and class name: divelog.Divelog (note I omit the .class)
    Running
    To run a class that's not part of a package: From within the classpath directory that contains the class. use the command: java SomeFile
    To run a class that is part of a package: From within the classpath directory (C:\JavaT\myWork\) use the command java divelog.Divelog (Note that this is analogous to the command for a class not in a package, you just use the fully qualified name)

  • Java command not working

    Hi
    I m learning java since few weeks.... I am facing problem in running java class using java command.I have a folder as
    D:\deepali\Bday\Birth\web-inf\classes\BI
    in this folder i have TryAPI.java file. Its getting compiled properly. but whenever i give command as
    java TryAPI
    it gives me the following error
    D:\deepali\Bday\Birth\web-inf\classes\BI>java TryAPI
    Exception in thread "main" java.lang.NoClassDefFoundError: TryAPI (wrong name: BI/TryAPI)
    at java.lang.ClassLoader.defineClass1(Native Method)
    at java.lang.ClassLoader.defineClass(Unknown Source)
    at java.security.SecureClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.defineClass(Unknown Source)
    at java.net.URLClassLoader.access$100(Unknown Source)
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at sun.misc.Launcher$AppClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClass(Unknown Source)
    at java.lang.ClassLoader.loadClassInternal(Unknown Source)
    My path is
    D:\Oracle\Ora81\bin;C:\Program Files\Oracle\jre\1.1.7bin;C:\WINNT\system32;C:\WINNT;C:\WINNT\System32\Wbem;;D:\tibco\tibrv\BIN;C:\j2sdk1.4.2_05\lib;C:\j2sdk1.4.2_05\bin;;D:\tibco\BIN;C:\TIBCO\TIBRV\BIN;
    Can anyone explain me why this is happening?
    Thanks and Regards
    Deepali

    You see the error message that says "wrong name. . ."?
    That means you used the wrong name for the class. You have it in a package, but you didn't use the package name. (You have to)
    This is a minimal explanation of packages.
    Assume that your programs are part of a package named myapp, which is specified by this first line in each source file:
    package myapp;
    Also assume that directory (C:\java\work\) is listed in the CLASSPATH list of directories.
    Also assume that all your source files reside in this directory structure: C:\java\work\myapp\
    Then a statement to compile your source file named aProgram.java is:
    C:\java\work\>javac myapp\aProgram.java
    And a statement to run the program is:
    java myapp.aProgram
    (This can be issued from any directory, as Java will search for the program, starting the search from the classpath directories.)
    Explanation:
    Compiling
    A class is in a package if there is a package statement at the top of the class.
    The source file needs to be in a subdirectory structure. The subdirectory structure must match the package statement. The top subdirectory must be in the classpath directory.
    So, you generate a directory structure C:\java\work\myapp\ which is the [classpath directory + the package subdirectory structure], and place aProgram.java in it.
    Then from the classpath directory (C:\java\work\) use the command: javac myapp\aProgram.java
    Running
    Compiling creates a file, aProgram.class in the myapp directory.
    (The following is where people tend to get lost.)
    The correct name now, as far as java is concerned, is the combination of package name and class name: myapp.aProgram (note I omit the .class) If you don't use this name, java will complain that it can't find the class.
    To run a class that's NOT part of a package, you use the command: java SomeFile (assuming that SomeFile.class is in a directory that's listed in the classpath)
    To run a class that IS part of a package, you use the command java myapp.aProgram (Note that this is analogous to the command for a class not in a package, you just use the fully qualified name)

  • Start to learn WebDynpro for Java Development

    Hy @all,
    i want to learn WebDynpro for Java. What expirences do you have? How i can start to learn first the fundamentals?
    Java is not completely new, I develope some programms in C# before.
    I buy the following books: WebDynpro for Java and Java Programming with SAP Netwaver....
    thx
    Micha

    Hi, Michael,
                      First and formost, Welcome to the amazing world of WD Java. Since you have some experience with C#, coding will not be a mammoth task for you. As per, basic concepts of WD Java are concerned, you can refer the following Link:[Concepts Of WD Java|http://help.sap.com/erp2005_ehp_04/helpdata/DE/14/c897427f18d06ae10000000a155106/frameset.htm]
    To try your hands on WD Java, there are few sample applications that you can refer:
    [Sample Applications WD Java|/docs/DOC-8061#61 [original link is broken]]
    I hope this solves your issue, if you are looking for something else, please revert. I'll be happy to help you.
    Cheers!!!
    Umang

  • Java project!Coloured checkered boxes!

    Guys I need your help...It's for my school project...I'm still only a beginner in java programming...I've gotta create a java applet concerning area..It has to display a rectangle containing alternate squares of different colours which is determined by a scrollbar which customizes the size of the rectangle..For example if the scrollbar is adjusted to a 4*4 the area is 16 and so there has to be 16 squares of different colours..And what is shown by the scrollbar needs to be reflected on textfields as well..Please help me out...This should simple to you guys as you're the experts here.

    What's your problem?

  • Java and Flash will not install

    Hello,
    Ever since I updated to Yosemite, I have been getting prompts to install the Java Runtime Environment and alerts that Flash is out of date. This is becoming a problem because I am unable to open illustrator because of this Java issue (which is a Graphic Design student is a huge hassle) and I am unable to stream video on an increasing number of platforms because of the flash plug-in.
    I have downloaded the newest version of flash, and JRE but they will not install. When I launch the Flash installer, the icon just bounces in the dock for a while, and then stops, no windows will pop up and my only option will be to force quit.
    As far as Java is concerned I can typically get through the installation process until the point after the destination has been selected and the install should actually start. I'll hit install, the installer will pause for a second before the spinning wheel appears, and then it will never go away and the installer will become unresponsive. I've let it sit for many minutes at a time but it never resolves itself. I've tried installing JRE, JDK (both from Oracle), and the "Java 8 Update 25" that I have downloaded from Apple and have encountered this problem with all of them.
    I am using a "Late 2009 iMac"
    Any help or suggestions would be seriously appreciated since my computer is losing functionality.
    Thank you

    Process:               SecurityAgent [19815]
    Path:                  /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/SecurityAg ent.xpc/Contents/MacOS/SecurityAgent
    Identifier:            SecurityAgent
    Version:               9.0 (55225)
    Code Type:             X86-64 (Native)
    Parent Process:        launchd [1]
    Responsible:           SecurityAgent [19815]
    User ID:               92
    Date/Time:             2014-11-04 21:21:20.452 -0500
    OS Version:            Mac OS X 10.10 (14A389)
    Report Version:        11
    Anonymous UUID:      
    Sleep/Wake UUID:       6EC4F936-90A3-4960-A5B0-60623756D951
    Time Awake Since Boot: 140000 seconds
    Time Since Wake:       5100 seconds
    Crashed Thread:        0  Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_CRASH (SIGABRT)
    Exception Codes:       0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Invalid parameter not satisfying: isfinite(c)'
    abort() called
    terminating with uncaught exception of type NSException
    Application Specific Backtrace 1:
    0   CoreFoundation                      0x00007fff8022364c __exceptionPreprocess + 172
    1   libobjc.A.dylib                     0x00007fff8bad16de objc_exception_throw + 43
    2   CoreFoundation                      0x00007fff8022342a +[NSException raise:format:arguments:] + 106
    3   Foundation                          0x00007fff8eb095b9 -[NSAssertionHandler handleFailureInMethod:object:file:lineNumber:description:] + 195
    4   Foundation                          0x00007fff8ea65859 -[NSISLinearExpression incrementConstant:] + 163
    5   AppKit                              0x00007fff85d95809 -[NSView(NSConstraintBasedLayout) nsli_lowerAttribute:intoExpression:withCoefficient:forConstraint:] + 914
    6   Foundation                          0x00007fff8ea64c13 lower_1_attribute + 158
    7   Foundation                          0x00007fff8ea64726 -[NSLayoutConstraint _lowerIntoExpression:reportingConstantIsRounded:] + 102
    8   Foundation                          0x00007fff8ea5a176 -[NSLayoutConstraint _addToEngine:integralizationAdjustment:mutuallyExclusiveConstraints:] + 95
    9   AppKit                              0x00007fff85d9647e __52-[NSView(NSConstraintBasedLayout) _setLayoutEngine:]_block_invoke_2 + 470
    10  Foundation                          0x00007fff8ea684ae -[NSISEngine withBehaviors:performModifications:] + 155
    11  AppKit                              0x00007fff85d0e93a -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70
    12  AppKit                              0x00007fff85d96288 __52-[NSView(NSConstraintBasedLayout) _setLayoutEngine:]_block_invoke + 482
    13  AppKit                              0x00007fff85d1187f -[NSView(NSConstraintBasedLayout) _setLayoutEngine:] + 233
    14  AppKit                              0x00007fff85d96380 __52-[NSView(NSConstraintBasedLayout) _setLayoutEngine:]_block_invoke_2 + 216
    15  Foundation                          0x00007fff8ea684ae -[NSISEngine withBehaviors:performModifications:] + 155
    16  AppKit                              0x00007fff85d0e93a -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70
    17  AppKit                              0x00007fff85d96288 __52-[NSView(NSConstraintBasedLayout) _setLayoutEngine:]_block_invoke + 482
    18  AppKit                              0x00007fff85d1187f -[NSView(NSConstraintBasedLayout) _setLayoutEngine:] + 233
    19  AppKit                              0x00007fff85d96380 __52-[NSView(NSConstraintBasedLayout) _setLayoutEngine:]_block_invoke_2 + 216
    20  Foundation                          0x00007fff8ea684ae -[NSISEngine withBehaviors:performModifications:] + 155
    21  AppKit                              0x00007fff85d0e93a -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70
    22  AppKit                              0x00007fff85d96288 __52-[NSView(NSConstraintBasedLayout) _setLayoutEngine:]_block_invoke + 482
    23  AppKit                              0x00007fff85d1187f -[NSView(NSConstraintBasedLayout) _setLayoutEngine:] + 233
    24  AppKit                              0x00007fff85d9bc0f make_and_host_engine + 249
    25  AppKit                              0x00007fff85d9b96f -[NSView(NSConstraintBasedLayout) _didChangeHostsAutolayoutEngineTo:] + 165
    26  AppKit                              0x00007fff85d4b76f -[NSView(NSConstraintBasedLayout) _engageAutolayout] + 81
    27  AppKit                              0x00007fff85d4b78c -[NSView(NSConstraintBasedLayout) _engageAutolayout] + 110
    28  AppKit                              0x00007fff85d17ea2 -[NSView(NSConstraintBasedLayout) _layoutEngine_windowDidChange] + 92
    29  AppKit                              0x00007fff863fccde __21-[NSView _setWindow:]_block_invoke660 + 67
    30  AppKit                              0x00007fff85d0fd70 -[NSView _setWindow:] + 1443
    31  AppKit                              0x00007fff85d0d783 -[NSView addSubview:] + 463
    32  AppKit                              0x00007fff85d1ecb1 -[NSFrameView addSubview:] + 45
    33  AppKit                              0x00007fff863b9c61 -[NSThemeFrame addSubview:] + 400
    34  AppKit                              0x00007fff85da8b8f -[NSView addSubview:positioned:relativeTo:] + 208
    35  AppKit                              0x00007fff863b9ac0 -[NSThemeFrame _addKnownSubview:positioned:relativeTo:] + 60
    36  AppKit                              0x00007fff85d2b9e2 -[NSWindow setContentView:] + 633
    37  AppKit                              0x00007fff85d129ca -[NSWindowTemplate nibInstantiate] + 876
    38  AppKit                              0x00007fff85ce788b -[NSIBObjectData instantiateObject:] + 309
    39  AppKit                              0x00007fff861c9da1 -[NSIBObjectData nibInstantiateWithOwner:options:topLevelObjects:] + 452
    40  AppKit                              0x00007fff85cdc055 loadNib + 384
    41  AppKit                              0x00007fff8624a020 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:options:withZone:ownerBundle:] + 313
    42  AppKit                              0x00007fff85cdb725 -[NSBundle(NSNibLoading) loadNibNamed:owner:topLevelObjects:] + 201
    43  AppKit                              0x00007fff85cdb4f1 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 344
    44  SecurityAgent                       0x00000001029fbd64 builtinPluginCreate + 32410
    45  SecurityAgent                       0x00000001029f083f SecurityAgent + 18495
    46  SecurityAgent                       0x00000001029f45fb builtinPluginCreate + 1841
    47  SecurityAgent                       0x00000001029f830a builtinPluginCreate + 17472
    48  SecurityAgent                       0x00000001029f4172 builtinPluginCreate + 680
    49  SecurityAgent                       0x00000001029f80f8 builtinPluginCreate + 16942
    50  SecurityAgent                       0x00000001029ef40b SecurityAgent + 13323
    51  SecurityAgent                       0x00000001029ee6e3 SecurityAgent + 9955
    52  libdispatch.dylib                   0x00007fff870a0c13 _dispatch_client_callout + 8
    53  libdispatch.dylib                   0x00007fff870ae04e _dispatch_barrier_sync_f_slow_invoke + 412
    54  libdispatch.dylib                   0x00007fff870a0c13 _dispatch_client_callout + 8
    55  libdispatch.dylib                   0x00007fff870accbf _dispatch_main_queue_callback_4CF + 861
    56  CoreFoundation                      0x00007fff80176c59 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    57  CoreFoundation                      0x00007fff801332ef __CFRunLoopRun + 2159
    58  CoreFoundation                      0x00007fff80132838 CFRunLoopRunSpecific + 296
    59  HIToolbox                           0x00007fff83bdd43f RunCurrentEventLoopInMode + 235
    60  HIToolbox                           0x00007fff83bdd0be ReceiveNextEventCommon + 179
    61  HIToolbox                           0x00007fff83bdcffb _BlockUntilNextEventMatchingListInModeWithFilter + 71
    62  AppKit                              0x00007fff85cf8821 _DPSNextEvent + 964
    63  AppKit                              0x00007fff85cf7fd0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    64  AppKit                              0x00007fff85cebf73 -[NSApplication run] + 594
    65  AppKit                              0x00007fff85cd7424 NSApplicationMain + 1832
    66  SecurityAgent                       0x00000001029fe9f7 main + 232
    67  libdyld.dylib                       0x00007fff8292d5c9 start + 1
    68  ???                                 0x0000000000000002 0x0 + 2
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib         0x00007fff8233b282 __pthread_kill + 10
    1   libsystem_c.dylib             0x00007fff8b57ab73 abort + 129
    2   libc++abi.dylib               0x00007fff8c3b4a21 abort_message + 257
    3   libc++abi.dylib               0x00007fff8c3dc9d1 default_terminate_handler() + 267
    4   libobjc.A.dylib               0x00007fff8bad56c6 _objc_terminate() + 103
    5   libc++abi.dylib               0x00007fff8c3da0a1 std::__terminate(void (*)()) + 8
    6   libc++abi.dylib               0x00007fff8c3da113 std::terminate() + 51
    7   libobjc.A.dylib               0x00007fff8bad54ef objc_terminate + 9
    8   libdispatch.dylib             0x00007fff870a0c27 _dispatch_client_callout + 28
    9   libdispatch.dylib             0x00007fff870ae04e _dispatch_barrier_sync_f_slow_invoke + 412
    10  libdispatch.dylib             0x00007fff870a0c13 _dispatch_client_callout + 8
    11  libdispatch.dylib             0x00007fff870accbf _dispatch_main_queue_callback_4CF + 861
    12  com.apple.CoreFoundation       0x00007fff80176c59 __CFRUNLOOP_IS_SERVICING_THE_MAIN_DISPATCH_QUEUE__ + 9
    13  com.apple.CoreFoundation       0x00007fff801332ef __CFRunLoopRun + 2159
    14  com.apple.CoreFoundation       0x00007fff80132838 CFRunLoopRunSpecific + 296
    15  com.apple.HIToolbox           0x00007fff83bdd43f RunCurrentEventLoopInMode + 235
    16  com.apple.HIToolbox           0x00007fff83bdd0be ReceiveNextEventCommon + 179
    17  com.apple.HIToolbox           0x00007fff83bdcffb _BlockUntilNextEventMatchingListInModeWithFilter + 71
    18  com.apple.AppKit               0x00007fff85cf8821 _DPSNextEvent + 964
    19  com.apple.AppKit               0x00007fff85cf7fd0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    20  com.apple.AppKit               0x00007fff85cebf73 -[NSApplication run] + 594
    21  com.apple.AppKit               0x00007fff85cd7424 NSApplicationMain + 1832
    22  com.apple.SecurityAgent       0x00000001029fe9f7 main + 232
    23  libdyld.dylib                 0x00007fff8292d5c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff8233c22e kevent64 + 10
    1   libdispatch.dylib             0x00007fff870a3a6a _dispatch_mgr_thread + 52
    Thread 2:
    0   libsystem_kernel.dylib         0x00007fff8233b946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff82b8e4a1 start_wqthread + 13
    Thread 3:: Dispatch queue: requestDispatchQueue
    0   libsystem_kernel.dylib         0x00007fff8233656a semaphore_wait_trap + 10
    1   libsystem_platform.dylib       0x00007fff83051c5b _os_semaphore_wait + 16
    2   libdispatch.dylib             0x00007fff870aa557 _dispatch_barrier_sync_f_slow + 597
    3   com.apple.SecurityAgent       0x00000001029ee2d1 0x1029ec000 + 8913
    4   com.apple.SecurityAgent       0x00000001029ede48 0x1029ec000 + 7752
    5   libxpc.dylib                   0x00007fff886bf589 _xpc_connection_call_event_handler + 58
    6   libxpc.dylib                   0x00007fff886be04b _xpc_connection_mach_event + 1901
    7   libdispatch.dylib             0x00007fff870a60f8 _dispatch_client_callout4 + 9
    8   libdispatch.dylib             0x00007fff870a71a3 _dispatch_mach_msg_invoke + 445
    9   libdispatch.dylib             0x00007fff870a4154 _dispatch_queue_drain + 571
    10  libdispatch.dylib             0x00007fff870a5a10 _dispatch_mach_invoke + 232
    11  libdispatch.dylib             0x00007fff870a4154 _dispatch_queue_drain + 571
    12  libdispatch.dylib             0x00007fff870a5ecc _dispatch_queue_invoke + 202
    13  libdispatch.dylib             0x00007fff870a36b7 _dispatch_root_queue_drain + 463
    14  libdispatch.dylib             0x00007fff870b1fe4 _dispatch_worker_thread3 + 91
    15  libsystem_pthread.dylib       0x00007fff82b906cb _pthread_wqthread + 729
    16  libsystem_pthread.dylib       0x00007fff82b8e4a1 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff8233b946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff82b8e4a1 start_wqthread + 13
    Thread 5:
    0   libsystem_kernel.dylib         0x00007fff8233b946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff82b8e4a1 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib         0x00007fff8233b946 __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff82b8e4a1 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib         0x00007fff8233652e mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff8233569f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff80133b14 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff80132fdb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff80132838 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff85e5b8f7 _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff82b902fc _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff82b90279 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff82b8e4b1 thread_start + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000006  rcx: 0x00007fff5d211eb8  rdx: 0x0000000000000000
      rdi: 0x0000000000000d0f  rsi: 0x0000000000000006  rbp: 0x00007fff5d211ee0  rsp: 0x00007fff5d211eb8
       r8: 0x0000000000000000   r9: 0x00007fff8b5a4d90  r10: 0x0000000008000000  r11: 0x0000000000000206
      r12: 0x00007fff5d212040  r13: 0x00007fff5d212570  r14: 0x00007fff705a9300  r15: 0x00007fff5d211f20
      rip: 0x00007fff8233b282  rfl: 0x0000000000000206  cr2: 0x00007fff71c4dfd8
    Logical CPU:     0
    Error Code:      0x02000148
    Trap Number:     133
    Binary Images:
           0x1029ec000 -        0x102a0dfff  com.apple.SecurityAgent (9.0 - 55225) <71D6C832-2C88-35A2-A28D-B8C413ABADDE> /System/Library/Frameworks/Security.framework/Versions/A/XPCServices/SecurityAg ent.xpc/Contents/MacOS/SecurityAgent
           0x102bac000 -        0x102bc7ff3  com.apple.security.csparser (3.0 - 57031.1.35) <DECC32B7-4150-34CF-9D94-98A791B83CAC> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/ MacOS/csparser
        0x7fff6d439000 -     0x7fff6d46f837  dyld (353.2.1) <4696A982-1500-34EC-9777-1EF7A03E2659> /usr/lib/dyld
        0x7fff800c1000 -     0x7fff80457fff  com.apple.CoreFoundation (6.9 - 1151.16) <F2B088AF-A5C6-3FAE-9EB4-7931AF6359E4> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff80458000 -     0x7fff80459fff  libsystem_secinit.dylib (18) <581DAD0F-6B63-3A48-B63B-917AF799ABAA> /usr/lib/system/libsystem_secinit.dylib
        0x7fff804a5000 -     0x7fff804a5ff7  libunc.dylib (29) <5676F7EA-C1DF-329F-B006-D2C3022B7D70> /usr/lib/system/libunc.dylib
        0x7fff804c0000 -     0x7fff8051bfff  libTIFF.dylib (1231) <ACC9ED11-EED8-3A23-B452-3F40FF7EF435> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff80659000 -     0x7fff806a5fff  com.apple.corelocation (1486.17 - 1615.21) <DB68CEB9-0D51-3CB9-86A4-B0400CE6C515> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
        0x7fff806b3000 -     0x7fff80730fff  com.apple.CoreServices.OSServices (640.3 - 640.3) <28445162-08E9-3E24-84E4-617CE5FE1367> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff80731000 -     0x7fff80731fff  com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <A48738CA-5B6F-3D14-97E9-2BFDFC3DCC06> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff80732000 -     0x7fff80733fff  libDiagnosticMessagesClient.dylib (100) <2EE8E436-5CDC-34C5-9959-5BA218D507FB> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff81675000 -     0x7fff816afffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff816b3000 -     0x7fff817d4fff  com.apple.LaunchServices (644.10 - 644.10) <0B1C68BC-0AEB-38E2-ABC8-E92728FEC475> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff82282000 -     0x7fff82289fff  libCGCMS.A.dylib (772) <E64DC779-A6CF-3B1F-8E57-C09C0B10670F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS .A.dylib
        0x7fff822f5000 -     0x7fff8230fff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff82310000 -     0x7fff82311fff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff82312000 -     0x7fff82324ff7  com.apple.ImageCapture (9.0 - 9.0) <7FB65DD4-56B5-35C4-862C-7A2DED991D1F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff82325000 -     0x7fff82342fff  libsystem_kernel.dylib (2782.1.97) <93E0E0A9-75B6-3904-BB4E-4BC7C05F4B6B> /usr/lib/system/libsystem_kernel.dylib
        0x7fff823a5000 -     0x7fff823a6ff7  com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff823c6000 -     0x7fff823f9ff7  com.apple.MediaKit (16 - 757) <345EDAFE-3E39-3B0F-8D84-54657EC4396D> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff823fa000 -     0x7fff823fcfff  com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/Cor eDuetDebugLogging
        0x7fff823fd000 -     0x7fff82405ffb  com.apple.CoreServices.FSEvents (1210 - 1210) <782A9C69-7A45-31A7-8960-D08A36CBD0A7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvent s.framework/Versions/A/FSEvents
        0x7fff824d9000 -     0x7fff824e4fff  libGL.dylib (11.0.7) <C53344AD-8CE6-3111-AB94-BD4CA89ED84E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff824e5000 -     0x7fff82622fff  com.apple.ImageIO.framework (3.3.0 - 1038) <611BDFBA-4BAA-36A8-B7E0-3830F3375E53> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff82623000 -     0x7fff8262cfff  libGFXShared.dylib (11.0.7) <EC449E3A-D9D2-3494-8B6C-DEB7B11EEDAB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8262d000 -     0x7fff82647ff7  libextension.dylib (55) <17514AB2-C503-3D49-A725-EBC1140567A6> /usr/lib/libextension.dylib
        0x7fff82648000 -     0x7fff82648fff  com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff82649000 -     0x7fff8273bff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
        0x7fff82769000 -     0x7fff827c3ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
        0x7fff82918000 -     0x7fff82929fff  libcmph.dylib (1) <46EC3997-DB5E-38AE-BBBB-A035A54AD3C0> /usr/lib/libcmph.dylib
        0x7fff8292a000 -     0x7fff8292dff7  libdyld.dylib (353.2.1) <19FAF435-C165-3374-9DEF-D7BBA7D61DB6> /usr/lib/system/libdyld.dylib
        0x7fff82986000 -     0x7fff82987ff7  libodfde.dylib (22) <52D0ABCD-F464-362C-86EA-ACA10993F556> /usr/lib/libodfde.dylib
        0x7fff82988000 -     0x7fff8298dff7  libunwind.dylib (35.3) <BE7E51A0-B6EA-3A54-9CCA-9D88F683A6D6> /usr/lib/system/libunwind.dylib
        0x7fff829db000 -     0x7fff829dcfff  libSystem.B.dylib (1213) <DA954461-EC6A-3DF0-8551-6FC810627627> /usr/lib/libSystem.B.dylib
        0x7fff82a05000 -     0x7fff82b14ffb  com.apple.desktopservices (1.9 - 1.9) <6EDAC73F-C42C-3FF7-B67D-FCCA1CFC5405> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff82b15000 -     0x7fff82b29ff7  com.apple.MultitouchSupport.framework (260.30 - 260.30) <28728A7D-E048-3B14-9932-839A87D381FE> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff82b8d000 -     0x7fff82b96fff  libsystem_pthread.dylib (105.1.4) <26B1897F-0CD3-30F3-B55A-37CB45062D73> /usr/lib/system/libsystem_pthread.dylib
        0x7fff82b97000 -     0x7fff82fc7fff  com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
        0x7fff82ff4000 -     0x7fff82ff4ff7  liblaunch.dylib (559.1.22) <8A988924-8BE7-35FE-BF7D-322E90EFE49E> /usr/lib/system/liblaunch.dylib
        0x7fff8304b000 -     0x7fff8304dff7  com.apple.securityhi (9.0 - 55006) <B1E09986-7AF0-3BD1-BAA1-B5514DFB7CD1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8304e000 -     0x7fff83056fff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff830b6000 -     0x7fff83221ff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff8327d000 -     0x7fff832e9fff  com.apple.framework.CoreWLAN (5.0 - 500.35.2) <ACBAAB0A-BCC7-37CF-AAFB-2DA1733F2682> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff832ea000 -     0x7fff832f4ff7  com.apple.NetAuth (5.0 - 5.0) <B9EC5425-D38D-308C-865F-207E0A98BAC7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff832f5000 -     0x7fff8330cff7  libLinearAlgebra.dylib (1128) <E78CCBAA-A999-3B65-8EC9-06DB15E67C37> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLinearAlgebra.dylib
        0x7fff8330e000 -     0x7fff83315ff7  libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
        0x7fff83316000 -     0x7fff83326ff7  libbsm.0.dylib (34) <A3A2E56C-2B65-37C7-B43A-A1F926E1A0BB> /usr/lib/libbsm.0.dylib
        0x7fff8333f000 -     0x7fff833b0ff7  com.apple.framework.IOKit (2.0.2 - 1050.1.21) <ED3B0B22-AACC-303B-BFC8-20ECD1AF6BA2> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff833b1000 -     0x7fff83433fff  com.apple.PerformanceAnalysis (1.0 - 1) <2FC0F303-B672-3E64-A978-AB78EAD98395> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff834ba000 -     0x7fff834d5ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
        0x7fff834d6000 -     0x7fff834d8ff7  libsystem_sandbox.dylib (358.1.1) <DB9962EF-8898-31CC-9B87-E01F8CE74C9D> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8366b000 -     0x7fff83690ff7  libJPEG.dylib (1231) <35F13BD9-AA92-3510-B5BB-420DA15AE7F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff83acb000 -     0x7fff83afbffb  com.apple.GSS (4.0 - 2.0) <D033E7F1-2D34-339F-A814-C67E009DE5A9> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff83afc000 -     0x7fff83b16ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff83b17000 -     0x7fff83ba8fff  com.apple.cloudkit.CloudKit (259.2.3 - 259.2.3) <6F955140-D522-32B3-B34B-BD94C5D94E7A> /System/Library/Frameworks/CloudKit.framework/Versions/A/CloudKit
        0x7fff83ba9000 -     0x7fff83baeff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
        0x7fff83baf000 -     0x7fff83eb1fff  com.apple.HIToolbox (2.1.1 - 756) <9DD121B5-B7EB-3C43-8155-61A4417F8E9A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff83f16000 -     0x7fff83f16ff7  libkeymgr.dylib (28) <77845842-DE70-3CC5-BD01-C3D14227CED5> /usr/lib/system/libkeymgr.dylib
        0x7fff841c5000 -     0x7fff84216ff7  com.apple.audio.CoreAudio (4.3.0 - 4.3.0) <AF72B06E-C6C1-3FAE-8B47-AF461CAE0E22> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff84235000 -     0x7fff8425aff7  libPng.dylib (1231) <2D5AC0EE-4056-3F76-97E7-BBD415F072B5> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff8425f000 -     0x7fff84265ff7  libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
        0x7fff842a5000 -     0x7fff842a5fff  com.apple.Accelerate (1.10 - Accelerate 1.10) <227E2491-1DDB-336F-BF83-773CECEC66F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff842a6000 -     0x7fff842a9fff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff842aa000 -     0x7fff842d7fff  com.apple.CoreVideo (1.8 - 145.1) <18DB07E0-B927-3260-A234-636F298D1917> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff842d8000 -     0x7fff84466fff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff84467000 -     0x7fff844a7ff7  libGLImage.dylib (11.0.7) <7CBCEB4B-D22F-3116-8B28-D1C22D28C69D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff844b1000 -     0x7fff844c3fff  libsasl2.2.dylib (193) <E523DD05-544B-3430-8AA9-672408A5AF8B> /usr/lib/libsasl2.2.dylib
        0x7fff844c4000 -     0x7fff84538fff  com.apple.ApplicationServices.ATS (360 - 375) <62828B40-231D-3F81-8067-1903143DCB6B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff84543000 -     0x7fff8482affb  com.apple.CoreServices.CarbonCore (1108.1 - 1108.1) <55A16172-ACC0-38B7-8409-3CB92AF33973> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff8482b000 -     0x7fff8491dfff  libxml2.2.dylib (26) <B834E7C8-EC3E-3382-BC5A-DA38DC4D720C> /usr/lib/libxml2.2.dylib
        0x7fff84a25000 -     0x7fff84a2fff7  com.apple.CrashReporterSupport (10.10 - 629) <EC97EA5E-3190-3717-A4A9-2F35A447E7A6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff84bf2000 -     0x7fff84bfbff7  libsystem_notify.dylib (133.1.1) <61147800-F320-3DAA-850C-BADF33855F29> /usr/lib/system/libsystem_notify.dylib
        0x7fff84c0b000 -     0x7fff84c58ff3  com.apple.print.framework.PrintCore (10.0 - 451) <3CA58254-D14F-3913-9DFB-CAC499570CC7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff84c59000 -     0x7fff84c66fff  com.apple.ProtocolBuffer (1 - 225.1) <2D502FBB-D2A0-3937-A5C5-385FA65B3874> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff84ccd000 -     0x7fff84cceff7  libsystem_blocks.dylib (65) <9615D10A-FCA7-3BE4-AA1A-1B195DACE1A1> /usr/lib/system/libsystem_blocks.dylib
        0x7fff84ced000 -     0x7fff84d10fff  com.apple.Sharing (328.3 - 328.3) <FDEE49AD-8804-3760-9C14-8D1D10BBEA37> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
        0x7fff84d11000 -     0x7fff84d5ffff  libcurl.4.dylib (83.1.2) <337A1FF8-E8B1-3173-9F29-C0D4C851D8E1> /usr/lib/libcurl.4.dylib
        0x7fff84e10000 -     0x7fff84e1dff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff84e1e000 -     0x7fff850edff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff850ee000 -     0x7fff850f2fff  libsystem_stats.dylib (163.1.4) <1DB04436-5974-3F16-86CC-5FF5F390339C> /usr/lib/system/libsystem_stats.dylib
        0x7fff85130000 -     0x7fff8519effb  com.apple.Heimdal (4.0 - 2.0) <B852ACA1-4C64-3E2A-A9D3-6D4C80AD9429> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8519f000 -     0x7fff851bffff  com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
        0x7fff851c9000 -     0x7fff851d6ff7  libbz2.1.0.dylib (36) <2DF83FBC-5C08-39E1-94F5-C28653791B5F> /usr/lib/libbz2.1.0.dylib
        0x7fff85252000 -     0x7fff8528afff  com.apple.RemoteViewServices (2.0 - 99) <C9A62691-B0D9-34B7-B71C-A48B5F4DC553> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff85cd4000 -     0x7fff86815fff  com.apple.AppKit (6.9 - 1343.14) <1732C412-257B-340E-8863-B8162D4EB2E2> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff86816000 -     0x7fff8681cfff  libsystem_trace.dylib (72.1.3) <A9E6B7D8-C327-3742-AC54-86C94218B1DF> /usr/lib/system/libsystem_trace.dylib
        0x7fff8681d000 -     0x7fff86858fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff86869000 -     0x7fff86908df7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff86909000 -     0x7fff86955ff7  libcups.2.dylib (408) <9CECCDE3-51D7-3028-830C-F58BD36E3317> /usr/lib/libcups.2.dylib
        0x7fff86956000 -     0x7fff86965fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <D1E527E4-C561-352F-9457-E8C50232793C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff869a7000 -     0x7fff869c1ff7  liblzma.5.dylib (7) <1D03E875-A7C0-3028-814C-3C27F7B7C079> /usr/lib/liblzma.5.dylib
        0x7fff869f1000 -     0x7fff869f6fff  com.apple.DiskArbitration (2.6 - 2.6) <0DFF4D9B-2AC3-3B82-B5C5-30F4EFBD2DB9> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff869f7000 -     0x7fff86a09ff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol
        0x7fff86a0a000 -     0x7fff86aacfff  com.apple.Bluetooth (4.3.0 - 4.3.0f10) <70922125-2A01-37AE-9CB8-D8A9578092E4> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
        0x7fff86aba000 -     0x7fff86ac0fff  com.apple.speech.recognition.framework (5.0.9 - 5.0.9) <BB2D573F-0A01-379F-A2BA-3C454EDCB111> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff86b73000 -     0x7fff86c8bffb  com.apple.CoreText (352.0 - 454.1) <AB07DF12-BB1F-3275-A8A3-45F14BF872BF> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff86c8c000 -     0x7fff86cfbfff  com.apple.SearchKit (1.4.0 - 1.4.0) <BFD6D876-36BA-3A3B-9F15-3E2F7DE6E89D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff86d2c000 -     0x7fff86d39fff  com.apple.SpeechRecognitionCore (2.0.32 - 2.0.32) <87F0C88D-502D-3217-8B4A-8388288568BA> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/Sp eechRecognitionCore
        0x7fff86d43000 -     0x7fff86d83ff7  com.apple.CloudDocs (1.0 - 280.1) <21D7E10A-99EF-34BE-82D7-29A6F1761DE5> /System/Library/PrivateFrameworks/CloudDocs.framework/Versions/A/CloudDocs
        0x7fff86dd4000 -     0x7fff86e93fff  com.apple.backup.framework (1.6 - 1.6) <5C38C168-5E9B-335D-9570-91AF8604BB10> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8709f000 -     0x7fff870c9ff7  libdispatch.dylib (442.1.4) <502CF32B-669B-3709-8862-08188225E4F0> /usr/lib/system/libdispatch.dylib
        0x7fff87809000 -     0x7fff8787dff3  com.apple.securityfoundation (6.0 - 55126) <E7FB7A4E-CB0B-37BA-ADD5-373B2A20A783> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8787e000 -     0x7fff87889ff7  libkxld.dylib (2782.1.97) <CB1A1B57-54BE-3573-AE0C-B90ED6BAEEE2> /usr/lib/system/libkxld.dylib
        0x7fff8788a000 -     0x7fff8791efff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff87a5d000 -     0x7fff87a61ff7  libGIF.dylib (1231) <A349BA73-301E-3EDE-8A31-8ACE827C289E> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff88077000 -     0x7fff8808dff7  libsystem_asl.dylib (267) <F153AC5B-0542-356E-88C8-20A62CA704E2> /usr/lib/system/libsystem_asl.dylib
        0x7fff8808e000 -     0x7fff881d0fff  libsqlite3.dylib (168) <7B580EB9-9260-35FE-AE2F-276A2C242BAB> /usr/lib/libsqlite3.dylib
        0x7fff881d1000 -     0x7fff88262ff7  libCoreStorage.dylib (471) <5CA37ED3-320C-3469-B4D2-6F045AFE03A1> /usr/lib/libCoreStorage.dylib
        0x7fff88263000 -     0x7fff8826fff7  com.apple.OpenDirectory (10.10 - 187) <1D0066FC-1DEB-381B-B15C-4C009E0DF850> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff88270000 -     0x7fff8851cfff  com.apple.GeoServices (1.0 - 982.4.10) <8A7FE04A-2785-30E7-A6E2-DC15D170DAF5> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff88536000 -     0x7fff8865dfff  com.apple.coreui (2.1 - 305) <BB430677-D1F7-38DD-8F05-70E54352B8B5> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8865e000 -     0x7fff8869ffff  libGLU.dylib (11.0.7) <8037342E-1ECD-385F-B4C3-545CE97B76AE> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff886a1000 -     0x7fff886b4ff7  com.apple.CoreBluetooth (1.0 - 1) <FA9B43B3-E183-3040-AE25-66EF9870CF35> /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
        0x7fff886b5000 -     0x7fff886ddfff  libxpc.dylib (559.1.22) <9437C02E-A07B-38C8-91CB-299FAA63083D> /usr/lib/system/libxpc.dylib
        0x7fff8872c000 -     0x7fff88793ff7  com.apple.framework.CoreWiFi (3.0 - 300.4) <19269C1D-EB29-384A-83F3-7DDDEB7D9DAD> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
        0x7fff8879c000 -     0x7fff887d3ffb  com.apple.LDAPFramework (2.4.28 - 194.5) <4CFE8010-CE3F-35EC-90BA-529B74321029> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff887d4000 -     0x7fff88904fff  com.apple.UIFoundation (1.0 - 1) <8E030D93-441C-3997-9CD2-55C8DFAC8B84> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundatio n
        0x7fff88921000 -     0x7fff88980ff3  com.apple.AE (681 - 681) <7F544183-A515-31A8-B45F-89A167F56216> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff88ac6000 -     0x7fff88ac8ff7  libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
        0x7fff88ac9000 -     0x7fff88bacfff  libcrypto.0.9.8.dylib (52) <7208EEE2-C090-383E-AADD-7E1BD1321BEC> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff88bb1000 -     0x7fff88bb8fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff88bb9000 -     0x7fff88dbcff3  com.apple.CFNetwork (720.0.9 - 720.0.9) <78EE1B88-394F-3BB8-93A6-E068990559EC> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
        0x7fff88e42000 -     0x7fff88e74ff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A07-F8E4-3837-BCA9-225F460EDA81> /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
        0x7fff88e75000 -     0x7fff88e77ff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff88f49000 -     0x7fff8903cff7  libJP2.dylib (1231) <58849E48-9CD2-38A1-9D48-FCE630F473EB> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8903d000 -     0x7fff89048ff7  libcsfde.dylib (471) <797691FA-FC0A-3A95-B6E8-BDB75AEAEDFD> /usr/lib/libcsfde.dylib
        0x7fff89049000 -     0x7fff89104ff7  com.apple.DiscRecording (9.0 - 9000.4.1) <F70E600E-9668-3DF2-A3A8-61813DF9E2EE> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff8939c000 -     0x7fff893a4fff  libsystem_dnssd.dylib (561.1.1) <62B70ECA-E40D-3C63-896E-7F00EC386DDB> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8949b000 -     0x7fff89680ff3  libicucore.A.dylib (531.30) <EF0E7544-E317-3550-A962-6AE65E78AF17> /usr/lib/libicucore.A.dylib
        0x7fff89681000 -     0x7fff89689ff7  com.apple.AppleSRP (5.0 - 1) <01EC5144-D09A-3D6A-AE35-F6D48585F154> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
        0x7fff89921000 -     0x7fff8992cff7  com.apple.speech.synthesis.framework (5.2.6 - 5.2.6) <9434AA45-B6BD-37F7-A866-172196A7F91B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8993a000 -     0x7fff89962fff  libsystem_info.dylib (459) <B85A85D5-8530-3A93-B0C3-4DEC41F79478> /usr/lib/system/libsystem_info.dylib
        0x7fff89965000 -     0x7fff89965fff  com.apple.CoreServices (62 - 62) <9E4577CA-3FC3-300D-AB00-87ADBDDA2E37> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff89966000 -     0x7fff89c99fff  libmecabra.dylib (666) <2CE5540A-D412-3D53-9E11-86C24D61713B> /usr/lib/libmecabra.dylib
        0x7fff89c9a000 -     0x7fff8a4f1ff3  com.apple.CoreGraphics (1.600.0 - 772) <6364CBE3-3635-3A53-B448-9D19EF9FEA96> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8a56d000 -     0x7fff8a59cfff  com.apple.securityinterface (10.0 - 55058) <21F38170-2D3D-3FA2-B0EC-379482AFA5E4> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8a59d000 -     0x7fff8a59ffff  libRadiance.dylib (1231) <746E9989-E89C-3027-A418-5F99CE131C93> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
        0x7fff8a5e3000 -     0x7fff8a5e6fff  com.apple.IOSurface (97 - 97) <D4B4D2B2-7B16-3174-9EA6-55E0A10B452D> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8a5f4000 -     0x7fff8a62cffb  libsystem_network.dylib (411) <C0B2313D-47BE-38A9-BEE6-2634A4F5E14B> /usr/lib/system/libsystem_network.dylib
        0x7fff8a62d000 -     0x7fff8a631fff  libpam.2.dylib (20) <E805398D-9A92-31F8-8005-8DC188BD8B6E> /usr/lib/libpam.2.dylib
        0x7fff8a632000 -     0x7fff8a643ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff8a6e6000 -     0x7fff8a6e6fff  com.apple.Carbon (154 - 157) <6E3AEB9D-7643-36BE-A7E5-D08886649257> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff8a6e7000 -     0x7fff8a715fff  com.apple.CoreServicesInternal (221.1 - 221.1) <51BAE6D2-84F3-392A-BFEC-A3B47B80A3D2> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8aa0d000 -     0x7fff8aa1bff7  com.apple.opengl (11.0.7 - 11.0.7) <B5C4DF85-37BD-3984-98D1-90A5043DA984> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8aa1c000 -     0x7fff8aa47ff3  libarchive.2.dylib (30) <8CBB4416-EBE9-3574-8ADC-44655D245F39> /usr/lib/libarchive.2.dylib
        0x7fff8aa48000 -     0x7fff8ae55ff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8afd6000 -     0x7fff8b02afff  libc++.1.dylib (120) <1B9530FD-989B-3174-BB1C-BDC159501710> /usr/lib/libc++.1.dylib
        0x7fff8b02b000 -     0x7fff8b02bfff  com.apple.Cocoa (6.8 - 21) <EAC0EA1E-3C62-3B28-A941-5D8B1E085FF8> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8b0a5000 -     0x7fff8b0befff  com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8b0c2000 -     0x7fff8b0dbff7  com.apple.CFOpenDirectory (10.10 - 187) <0ECA5D80-A045-3A2C-A60C-E1605F3AB6BD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8b0dc000 -     0x7fff8b0defff  libCVMSPluginSupport.dylib (11.0.7) <29D775BB-A11D-3140-A478-2A0DA1A87420> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff8b0e4000 -     0x7fff8b0e4fff  com.apple.audio.units.AudioUnit (1.12 - 1.12) <76EF1C9D-DEA4-3E55-A134-4099B2FD2CF2> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff8b0e5000 -     0x7fff8b0e9fff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8b0ea000 -     0x7fff8b0ecffb  libCGXType.A.dylib (772) <7CB71BC6-D8EC-37BC-8243-41BAB086FAAA> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXTy pe.A.dylib
        0x7fff8b4ca000 -     0x7fff8b513ff3  com.apple.HIServices (1.22 - 519) <59D78E07-C3F1-3272-88F1-876B836D5517> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff8b51d000 -     0x7fff8b5a9fff  libsystem_c.dylib (1044.1.2) <C185E862-7424-3210-B528-6B822577A4B8> /usr/lib/system/libsystem_c.dylib
        0x7fff8b5aa000 -     0x7fff8b66dff7  libvMisc.dylib (512) <A4E39464-52EA-34CB-9FFE-53E79B3C65F5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff8b71e000 -     0x7fff8b723ffb  libheimdal-asn1.dylib (398.1.2) <F9463B34-AAF5-3488-AD0C-85937C81FC5E> /usr/lib/libheimdal-asn1.dylib
        0x7fff8b7aa000 -     0x7fff8b7b5ff7  com.apple.DirectoryService.Framework (10.10 - 187) <813211CD-725D-31B9-ABEF-7B28DE2CB224> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8b7b6000 -     0x7fff8b7b8fff  libsystem_configuration.dylib (699.1.5) <9FBA1CE4-97D0-347E-A443-93ED94512E92> /usr/lib/system/libsystem_configuration.dylib
        0x7fff8b9fa000 -     0x7fff8ba72ff7  com.apple.SystemConfiguration (1.14 - 1.14) <C269BCFD-ACAB-3331-BC7C-0430F0E84817> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8bac4000 -     0x7fff8bca9267  libobjc.A.dylib (646) <3B60CD90-74A2-3A5D-9686-B0772159792A> /usr/lib/libobjc.A.dylib
        0x7fff8bcaa000 -     0x7fff8bcf9ff7  com.apple.opencl (2.4.2 - 2.4.2) <6AE26E08-6EFC-3E1B-B202-EFA9C3E5B9D4> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8bcfa000 -     0x7fff8bcfbfff  liblangid.dylib (117) <B54A4AA0-2E53-3671-90F5-AFF711C0EB9E> /usr/lib/liblangid.dylib
        0x7fff8bd4e000 -     0x7fff8bd6dfff  com.apple.CoreDuet (1.0 - 1) <36AA9FD5-2685-314D-B364-3FA4688D86BD> /System/Library/PrivateFrameworks/CoreDuet.framework/Versions/A/CoreDuet
        0x7fff8bd6e000 -     0x7fff8bd6efff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8bd6f000 -     0x7fff8bd9ffff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff8bda0000 -     0x7fff8bda4fff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
        0x7fff8bda5000 -     0x7fff8bdcbff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8bdcc000 -     0x7fff8bde7ff7  com.apple.aps.framework (4.0 - 4.0) <9955CAFD-D56B-36E9-BB41-6F7F73317EB5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8c320000 -     0x7fff8c328ff7  com.apple.icloud.FindMyDevice (1.0 - 1) <D198E170-3610-3727-BC87-73AD249CA097> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevic e
        0x7fff8c363000 -     0x7fff8c39efff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8c39f000 -     0x7fff8c3b3ff7  com.apple.ProtectedCloudStorage (1.0 - 1) <52CFE68A-0663-3756-AB5B-B42195026052> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/Pr otectedCloudStorage
        0x7fff8c3b4000 -     0x7fff8c3dffff  libc++abi.dylib (125) <88A22A0F-87C6-3002-BFBA-AC0F2808B8B9> /usr/lib/libc++abi.dylib
        0x7fff8c513000 -     0x7fff8c514ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff8c53d000 -     0x7fff8c53ffff  com.apple.OAuth (25 - 25) <EE765AF0-2BB6-3689-9EAA-689BF1F02A0D> /System/Library/PrivateFrameworks/OAuth.framework/Versions/A/OAuth
        0x7fff8c550000 -     0x7fff8c596ff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
        0x7fff8c59a000 -     0x7fff8c670ff3  com.apple.DiskImagesFramework (10.10 - 389.1) <7DE2208C-BD55-390A-8167-4F9F11750C4B> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff8c68b000 -     0x7fff8c693ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
        0x7fff8c694000 -     0x7fff8c788ff7  libFontParser.dylib (134) <506126F8-FDCE-3DE1-9DCA-E07FE658B597> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8c789000 -     0x7fff8c79aff7  libsystem_coretls.dylib (35.1.2) <EBBF7EF6-80D8-3F8F-825C-B412BD6D22C0> /usr/lib/system/libsystem_coretls.dylib
        0x7fff8c7a5000 -     0x7fff8c7aeff3  com.apple.CommonAuth (4.0 - 2.0) <F4C266BE-2E0E-36B4-9DE7-C6B4BF410FD7> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8cb5c000 -     0x7fff8cb5efff  com.apple.loginsupport (1.0 - 1) <35A2A071-606C-39A5-8C11-E4CAF98D934C> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsu pport.framework/Versions/A/loginsupport
        0x7fff8cc8f000 -     0x7fff8ccb0fff  com.apple.framework.Apple80211 (10.0 - 1000.57.3) <F64EB1A1-57F3-3ABA-97D0-DB7C926FD07F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
        0x7fff8ccb3000 -     0x7fff8ccbefff  libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
        0x7fff8cd2d000 -     0x7fff8cf95ffb  com.apple.security (7.0 - 57031.1.35) <96141D1F-614E-32C4-8AC2-F47481F23F43> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff8cfae000 -     0x7fff8cfb0ff7  libsystem_coreservices.dylib (9) <41B7C578-5A53-31C8-A96F-C73E030B0938> /usr/lib/system/libsystem_coreservices.dylib
        0x7fff8cfcd000 -     0x7fff8cff6ffb  libxslt.1.dylib (13) <AED1143F-B848-3E73-81ED-71356F25F084> /usr/lib/libxslt.1.dylib
        0x7fff8d02a000 -     0x7fff8d02cfff  com.apple.EFILogin (2.0 - 2) <F0269EE2-3686-3A8A-8B83-F86974E35E90> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
        0x7fff8d044000 -     0x7fff8d047fff  com.apple.xpc.ServiceManagement (1.0 - 1) <7E9E6BB7-AEE7-3F59-BAC0-59EAF105D0C8> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff8d048000 -     0x7fff8d49bfc7  com.apple.vImage (8.0 - 8.0) <33BE7B31-72DB-3364-B37E-C322A32748C5> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8d4f1000 -     0x7fff8d567fe7  libcorecrypto.dylib (233.1.2) <E1789801-3985-3949-B736-6B3378873301> /usr/lib/system/libcorecrypto.dylib
        0x7fff8d568000 -     0x7fff8d56cfff  libCoreVMClient.dylib (79) <FC4E08E3-749E-32FF-B5E9-211F29864831> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8d5a7000 -     0x7fff8d5d4fff  com.apple.Accounts (113 - 113) <3145FCC2-D297-3DD1-B74B-9E7DBB0EE33C> /System/Library/Frameworks/Accounts.framework/Versions/A/Accounts
        0x7fff8d5d5000 -     0x7fff8d65efff  com.apple.CoreSymbolication (3.1 - 56072) <8CE81C95-49E8-389F-B989-67CC452C08D0> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8d65f000 -     0x7fff8d679ff7  com.apple.AppleVPAFramework (1.0.30 - 1.0.30) <D47A2125-C72D-3298-B27D-D89EA0D55584> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
        0x7fff8d67a000 -     0x7fff8d6a5fff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8d6a6000 -     0x7fff8d70dff7  com.apple.datadetectorscore (6.0 - 396.1) <5D348063-1528-3E2F-B587-9E82970506F9> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8d769000 -     0x7fff8d76dff7  com.apple.LoginUICore (3.0 - 3.0) <86C742AF-8F8A-3AD6-AFD3-DEC66815B5C0> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff8d76f000 -     0x7fff8d80dfff  com.apple.Metadata (10.7.0 - 916) <DA8A1D18-19FE-37B3-BE12-85C5B0A00736> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8da03000 -     0x7fff8da49ffb  libFontRegistry.dylib (134) <01B8034A-45FD-3360-A347-A1896F591363> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff8e9f9000 -     0x7fff8ea15fff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff8ea16000 -     0x7fff8ed44ff7  com.apple.Foundation (6.9 - 1151.16) <18EDD673-A010-3E99-956E-DA594CE1FA80> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8ed4d000 -     0x7fff8ed69ff7  libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
        0x7fff8ee76000 -     0x7fff8ee7aff7  com.apple.TCC (1.0 - 1) <AFC32F8F-BCD5-313C-B66E-5AB8591EC066> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff8ee7b000 -     0x7fff8eea3ffb  libRIP.A.dylib (772) <9262437A-710A-397D-8E34-1CBFEA1FC5E1> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A .dylib
        0x7fff8eea4000 -     0x7fff8eed0fff  com.apple.framework.SystemAdministration (1.0 - 1.0) <F2A164C7-4813-3F27-ABF7-810A5F4FA51D> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
        0x7fff8eed1000 -     0x7fff8ef66ff7  com.apple.ColorSync (4.9.0 - 4.9.0) <F06733BD-A10C-3DB3-B050-825351130392> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8ef67000 -     0x7fff8f1e1fff  com.apple.CoreData (110 - 526) <AEEDAF00-D38F-3A15-B3C9-73732940CC55> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8f6de000 -     0x7fff8f6fbffb  libresolv.9.dylib (57) <26B38E61-298A-3C3A-82C1-3B5E98AD5E29> /usr/lib/libresolv.9.dylib
        0x7fff8f6fc000 -     0x7fff8f813fe7  libvDSP.dylib (512) <52777555-F051-3BC2-A2D2-9645907E836D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8f91a000 -     0x7fff8facaff7  com.apple.QuartzCore (1.10 - 361.11) <7382E4A9-10B0-3877-B9D7-FA84DC71BA55> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 1
        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: 71145
        thread_create: 1
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=181.9M resident=52.0M(29%) swapped_out_or_unallocated=129.8M(71%)
    Writable regions: Total=35.3M written=1056K(3%) resident=4520K(12%) swapped_out=4K(0%) unallocated=30.9M(88%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG image                              4K
    CG shared images                    144K
    CoreAnimation                         8K
    CoreUI image data                    20K
    Dispatch continuations             4096K
    Kernel Alloc Once                     8K
    MALLOC                             19.0M
    MALLOC (admin)                       32K
    Memory Tag 242                       12K
    STACK GUARD                        56.0M
    Stack                              11.1M
    VM_ALLOCATE                        1172K
    __DATA                 

  • Cant convert boolean to java.lang.Boolean - HUH?

    I'm fairly new to Java, but I'm pretty sure this should work.
    Can someone tell me why I'm getting these compiler errors:
    wehServlet.java:72: Incompatible type for if. Can't convert java.lang.Boolean to boolean.
    if (checkoutSpecificFile(req,res,busId,tempDir)) {
    ^
    wehServlet.java:123: Incompatible type for return. Can't convert boolean to java.lang.Boolean.
    return true;
    Here's the basic code:
    import java.io.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.util.*;
    public class wehServlet extends HttpServlet {
    private void someThing (HttpServletRequest req, HttpServletResponse res)
    throws ServletException, IOException {
    if(tryThis()) {
    <do something>
    } else {
    <do something else>
    private Boolean tryThis() {
    return false;
    Why can't I do this?
    How do I fix it?
    I tried
    if(tryThis().booleanValue())....
    and I get this compile error:
    Incompatible type for return. Can't convert boolean to java.lang.Boolean
    Now what do I do?

    There's a lot of confusion caused by these "Wrapper" objects, not just Boolean but Integer, Long etc.
    The basic ("primitive") types are lower case names, boolean, int, long etc..
    The related items with capital letters are "wrapper" objects. The are used in a context where you basically want to store a single value but must do so as an Object, for example in aggregate objects like Map or List.
    You should avoid these unless there's a specific reason to use them.
    You can convert between boolean and Boolean, int and Integer etc. but it has to be done explicitly. As far as Java is concerned they're entirely different kind of thing. To java the Boolean class is just another kind of Object, it has no special syntactic significance.
    boolean b;
    Boolean bo;
    b = bo.booleanValue();  // covert from Boolean object to boolean primitive
    bo = new Boolean(b); // convert primitive to Object
    if(bo.booleanValue()) {  // test Boolean objed

  • Java and R/F Controlled DC motor

    Hi guys.
    I need some help. I am working on a physics poroject that interfaces a computer to a radio circuit that controls a DC motor on board a model toy car. The issue of the electronics has been solved. What remains is to be able to write the program for controlling the craft remotely from my PC. I have found Java to be more convenient to do that and thats why I have asked for your help.
    What I want to know is
    a) Is this viable?
    b) If yes, how?
    c) further, can it be programmed to control itself from point a to point B without human intervention, just using the terrain map fed into it?
    Thanks a lot.

    OK I prefer to help you from where you are. Where
    Java is concerned I'm unclear where you are. So for
    starters...
    1 Have you connected/communicated with the control
    interface yet?
    2 Assuming you havn't written any Java for the App
    yet then how about identifying a few objects in the
    application.
    Choices might be
    The UI (Maybe One Screen with Buttons)
    Each Button
    A Map (Perhaps showing actual or estimated position)
    A History (of Previous Commands/Responses)
    A Command,
    A Response,
    A Status (or Position if you have GPS fitted)
    Yes to the two questions above

  • GUI application in Java?

    Hi,
    I'm considering to develop a rather large desktop application in Java (or other development language) and was wondering if someone can persuade me to do it in Java or not.
    In the end, the application will have to be able to open and view large tiff images. A number image operations (cropping, extracting parts of the image, ...) will have to be done on these images. Furthermore I will need some sort of mechanism to add transparent blocks over the tiff images (to mark parts of the image).
    My biggest concern with image handling in Java is the performance. Will the application not become too slow in the end, processing a lot of tiff images.
    Kind regards,
    Davor

    Hi,
    I'm considering to develop a rather large desktop
    application in Java (or other development language)
    and was wondering if someone can persuade me to do it
    in Java or not.
    In the end, the application will have to be able to
    open and view large tiff images. A number image
    operations (cropping, extracting parts of the image,
    ...) will have to be done on these images.
    Furthermore I will need some sort of mechanism to add
    transparent blocks over the tiff images (to mark
    parts of the image).
    My biggest concern with image handling in Java is the
    performance. Will the application not become too slow
    in the end, processing a lot of tiff images.
    Kind regards,
    Davorhi,
    from ur requirement specs, Java seems the obvious choice of programming language. the java.awt.image.* package suits u just right. programming effort is minimum.
    regarding the performance, there's always been the age-old trade-off as far as java is concerned. but with desktops and servers becoming increasingly powerful each day, this concern is bound to diminish.
    further, ur application seems to b a heavyweight appli in itself. so, the systems which run it r bound to b (sufficiently) powerful anyways.
    so, my opinion...GO FOR JAVA.
    hope this helped u... good luck
    ======
    Kiran

  • Return[code] std::complex double [][][/code]; to java

    Hi I'm new to JNI and am having some grief. Any help would be appreciated, I am calculating some hefty image data and really need C++ for the backend. The processing will be distributed which is why I want it to pass through java.
    I have the following variable in C++
    std::complex<double> ce[checkImageHeight][checkImageWidth]; and it is full of data in c++.
    I want to return it to java only to have java send it on to another C++ program.
    The format of the function I have used is
    JNIEXPORT jobject JNICALL Java_chirpcalc_calcchirp
      (JNIEnv* env, jclass cl, jdouble x, jdouble y, jdouble z) Initially I had jobjectarray as the return type but felt that ce could be considered to be one object as far as java is concerned.
    The format of the forwarded data is
    JNIEXPORT void JNICALL Java_displaychirp_display
      (JNIEnv *en, jclass jc, jobject job)I've done the basics in JNI -- displayed "hello world" and can do some other slightly more advanced stuff but this has got me stumped.
    I know that I have to follow this process
    1. Use FindClass method to find the class of the object that you want to return.
    2. Use GetMethodId to get the method Id of the constructor of that Class.
    3. Use NewObject to create a new object.
    4. Use GetFieldID to identify the fieldId of the two fields.
    5. Use SetFieldID to set the values to those fields.
    but what do I use for the fieldnames and construcotr names?
    BTW I can't just pass a reference through java as the two C++ classes will eventually be on different machines.
    Thanks in advance
    joey

    If you have something that your Java program must consider "opaque" like your bidimensional array of std::complex<double> you could encapsulate it in a byte array:
    public native byte[] calcchirp(double x, double y, double z);and
    public native void display (byte[] ce);I believe that you can try to encapsulate your data in a double array:
    public native double[] calcchirp (double x, double y, double z);and
    public native void display (double[] ce);
    as the representation of the double type is similar in C++ and Java in several architectures, and if you know the layout of the data in C++, you can (with some index calculations :-P ) get the real and imaginary values of the points, for debugging your C program from Java.
    The raw Java "Object" is not suited for your job.
    By the way, if you simply want to return/pass a pointer to C++ allocated memory (non-garbage collected), you can return/pass a "long", 64 bits are just enough to handle any C++ pointer.
    Check if JNI can allocate garbage-collectable memory for your C++ programs...

  • How do I create and use a package?

    Sorry for the noobish question, but I have never had the need to use a package and currently would like to learn how they work just to satisfy my own curiosity.
    Suppose I have a file named Node.class in a folder named Classes, and I have another class named Main.class sitting in another folder. I want to create a Node object using the Main class.
    How do I accomplish that? Would I need to use a package?
    I tried to write package Classes; on my Main file but it did not work. thanks

    This is an old explanation I wrote:
    This is a minimal explanation of packages.
    Assume that your programs are part of a package named myapp, which is specified by this first line in each source file:
    package myapp;
    Also assume that directory (C:\java\work\) is listed in the CLASSPATH list of directories.
    Also assume that all your source files reside in this directory structure: C:\java\work\myapp\
    Then a statement to compile your source file named aProgram.java is:
    C:\java\work\>javac myapp\aProgram.java
    And a statement to run the program is:
    java myapp.aProgram
    (This can be issued from any directory, as Java will search for the program, starting the search from the classpath directories.)
    Explanation:
    Compiling
    A class is in a package if there is a package statement at the top of the class.
    The source file needs to be in a subdirectory structure. The subdirectory structure must match the package statement. The top subdirectory must be in the classpath directory.
    So, you generate a directory structure C:\java\work\myapp\ which is the [classpath directory + the package subdirectory structure], and place aProgram.java in it.
    Then from the classpath directory (C:\java\work\) use the command: javac myapp\aProgram.java
    Running
    Compiling creates a file, aProgram.class in the myapp directory.
    (The following is where people tend to get lost.)
    The correct name now, as far as java is concerned, is the combination of package name and class name: myapp.aProgram (note I omit the .class) If you don't use this name, java will complain that it can't find the class.
    To run a class that's NOT part of a package, you use the command: java SomeFile (assuming that SomeFile.class is in a directory that's listed in the classpath)
    To run a class that IS part of a package, you use the command java myapp.aProgram (Note that this is analogous to the command for a class not in a package, you just use the fully qualified name)

  • Internal GUI Error - PI 7.1 EHP1

    Hi All,
    We are on the following SPS level of PI 7.11
    SAP_ABA     -->     711     -->     0004     -->     SAPKA71104     -->     Cross-Application Component
    SAP_BASIS     -->     711     -->     0004     -->     SAPKB71104     -->     SAP Basis Component
    PI_BASIS     -->     711     -->     0004     -->     SAPK-71104INPIBASIS     -->     Basis Plug-In
    ST-PI     -->     2008_1_710     -->     0005     -->     SAPKITLRE5     -->     SAP Solution Tools Plug-In
    SAP_BW     -->     711     -->     0004     -->     SAPKW71104     -->     SAP Business Warehouse
    ST-A/PI     -->     01N_710BCO     -->     0001     -->     SAPKITAB8H     -->     Servicetools for other App./Netweaver200
    When trying to logon to the ESR/ ID - After entering user name and pw, it hangs - and gives an error - "Internal GUI Error".
    Do we need to update the SP?
    I have done "restore archives and generate new certs" couple of times under Java WebStart Administration on Administration page.
    Any suggestions on this issue?

    Caio Cagnani,
    I have J2SE DevelopmentKit 5.0 Update 15 on my client machine. and JRE 1.6
    And when I go administration link on starting page of PI, I see the following.
    Make Release NW711_08_REL
    SP Stack Number 08
    JDK Version jdk15
    Latest Change 156137
    Synchronization Time 2011/09/13 08:56:55
    Build Time 2011-09-16 21:29
    What else do I need as far as Java is concerned?
    Edited by: Navchit on Dec 7, 2011 5:27 PM

  • Exception in thread main with package name

    I've got this problem: my program works fine when I haven't the line for the package name. When I put it, it compiles fine, but when executing it says "Exception in thread main" and a lot of other information from classes it can't find. I've got the '.' in my classpath, I've tried to move the directory to the root, and to execute it I do not use '.class'.
    Can anyone help me?

    This is a minimal explanation of packages.
    Assume that your programs are part of a package named myapp, which is specified by
    this first line in each source file: package myapp;
    Also assume that directory (C:\java\work\) is listed in the CLASSPATH list of directories.
    Also assume that all your source files reside in this directory structure: C:\java\work\myapp\
    Then a statement to compile your source file named aProgram.java is:
    C:\java\work\>javac myapp\aProgram.java
    Explanation:
    Compiling
    A class is in a package if there is a package statement at the top of the class.
    The source file needs to be in a subdirectory structure. The subdirectory structure must match the package statement. The top subdirectory must be in the classpath directory.
    So, you generate a directory structure C:\java\work\myapp\ which is the [classpath directory + the package subdirectory structure], and place aProgram.java in it.
    Then from the classpath directory (C:\java\work\) use the command: javac myapp\aProgram.java
    Running
    Compiling creates a file, aProgram.class in the myapp directory.
    (The following is where people tend to get lost.)
    The correct name now, as far as java is concerned, is the combination of package name and class name: myapp.aProgram (note I omit the .class) If you don't use this name, java will complain that it can't find the class.
    To run a class that's NOT part of a package, you use the command: java SomeFile (assuming that SomeFile.class is in a directory that's listed in the classpath)
    To run a class that IS part of a package, you use the command java myapp.aProgram (Note that this is analogous to the command for a class not in a package, you just use the fully qualified name)

  • Importing packages vs importing classes

    What impact does it have if I import a complete package like:
    import java.util.*
    or import the classes that I need seperately like
    import java.util.Vector;
    import java.util.Collection;
    import java.util.Iterator;

    Nothing as far as Java is concerned, the compiler only uses what it needs, so there is no efficiency or size considerations.
    However, when you have to modify or debug a program that someone else wrote - which has only package imports - you will curse her/him!
    So, class imports are by far the better choice.

  • Importing packages, why import more than once

    I've seen the following in a textbook:
    import java.awt.*;
    import java.awt.event.*;
    // the rest of the code follows Isn't this redundant? When we use the asterisk after java.awt, doesn't that import all classes inside the awt package, including the event package? Is there something I'm missing / not understanding.
    thanks in advance for your help.

    Thanks Vanilla, your post helps. Can you expound any
    more? I would have thought the relationship was that
    "awt" is a package that contains both classes and
    other packages, and that "event" is a package in the
    "awt" package. It would seem that way, but it's not.
    Why does Java use the dot notation if the packages
    aren't hierarchical? I guess because, even though the packages aren't related as far as Java is concerned, there's a conceptual relationship that we humans use, and the dot notation matches that. Plus the elements of package names correspond to directories, so while the language doesn't care, ClassLoaders do use that aspect of the name to find the class.

Maybe you are looking for