Creating table types for procedures at design time: Where is the "Local Table Type" tab?

Hello,
I want to write a stored procedure (development perspective, repository object) and need to create a table type for the result table.I am working on HANA Studio 1.80.1 and the documentation tells me that I should open the "Local Table Types" tab. However, I do not see where this tab is.
I get an SQLScript tab nothing else. Any hints?
Regards,
Andreas

Hi ,
Have a look on this discussion:
Table type creation via HS repository / CDS / DDl Source
Regards,
Krishna Tangudu

Similar Messages

  • I received a psd file created in CS6 for MAC, I am unable to find the layers when I open it in photoshop in Windows. What can i do to edit the files?

    I received a psd file created in CS6 for MAC, I am unable to find the layers when I open it in photoshop in Windows. What can i do to edit the files? What can be done so that I can either open and see the layers or how can the sender save it in a way that it doesn't "merge" the layers in some way to just one?

    Could try saving as tiff provided layers and transparency are chosen at the time of saving. But it's hard to give a definitive answer as it depends on the final usage. For example PSD's tend to work better in applications like In Design in comparison with tiff.

  • I have set up a Netgear dual band modem which works well with the iPhone and an older MacBook, but with this brand new MacBook it asks for a password every time I reopen the computer and open safari. Is it Lion?

    I have set up a Netgear dual band modem which works well with the iPhone and an older MacBook, but with this brand new MacBook it asks for a password every time I reopen the computer and open safari. As you can imagine this is very annoying. It says I am not connected to the internet and offers me a choice of nearby networks including mine and then asks for a password when I select it. Why does it do this with our new MacBooks (also with my son's brand new one) and not with the iPhone, iPad and older MacBook? They happily automatically connect to our network after entering the password just the once.

    Sig, I appreciate you trying to be helpful. I have no idea what issues you were having or what issue exactly pgrounds has been having. Your assumption that everyone's set up is the same as yours is false however. There are many many documented WiFi issues that are a result of Lion installs. Many have been solved by 10.7.1 and 10.7.2. Others have been solved by a large variety of work arounds. Others have not had their issues solved yet.
    I am one of those. I have an IT background, and I spent the better of five hours digging up workarounds and attempting all of them. For the benefit oh anyone who is having similar issues, I have posted links to all of those workarounds here. None of them worked in my case, but hopefully they will help pgrounds or others.
    So, once again, if you have a new idea, I'd love to here it. But if it has already been posted in one of these links, it's not helpful, let it go.
    http://osxdaily.com/2011/07/22/wifi-dropping-in-os-x-lion-fixes/
    http://osxdaily.com/2011/11/06/lion-wi-fi-problems-solution-mac/
    http://blog.chron.com/techblog/2011/09/want-to-really-repair-permissions-on-your -mac-try-this/

  • I have photo 12--I understand i get 90 days on line support-  I am away for weeks at a time. Can the 90 days begin after my first support chat ?

    I have photo 12--I understand i get 90 days on line support-  I am away for weeks at a time. Can the 90 days begin after my first support chat ?

    It's 90 days from product activation.

  • How to create a window with its own window border other than the local system window border?

    How to create a window with its own window border other than the local system window border?
    For example, a border: a black line with a width 1 and then a transparent line with a width 5. Further inner, it is the content pane.
    In JavaSE, there seems to have the paintComponent() method for the JFrame to realize the effect.

    Not sure why your code is doing that. I usually use an ObjectProperty<Point2D> to hold the initial coordinates of the mouse press, and set it to null on a mouse release. That seems to avoid the dragging being confused by mouse interaction with other nodes.
    import javafx.application.Application;
    import javafx.application.Platform;
    import javafx.beans.property.ObjectProperty;
    import javafx.beans.property.SimpleObjectProperty;
    import javafx.collections.FXCollections;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.geometry.Point2D;
    import javafx.geometry.Pos;
    import javafx.scene.Node;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.ChoiceBox;
    import javafx.scene.input.MouseEvent;
    import javafx.scene.layout.AnchorPane;
    import javafx.scene.layout.StackPane;
    import javafx.scene.layout.VBox;
    import javafx.scene.paint.Color;
    import javafx.stage.Stage;
    import javafx.stage.StageStyle;
    import javafx.stage.Window;
    public class CustomBorderExample extends Application {
      @Override
      public void start(Stage primaryStage) {
      AnchorPane root = new AnchorPane();
      root.setStyle("-fx-border-color: black; -fx-border-width: 1px; ");
      enableDragging(root);
      StackPane mainContainer = new StackPane();
        AnchorPane.setTopAnchor(mainContainer, 5.0);
        AnchorPane.setLeftAnchor(mainContainer, 5.0);
        AnchorPane.setRightAnchor(mainContainer, 5.0);
        AnchorPane.setBottomAnchor(mainContainer, 5.0);
      mainContainer.setStyle("-fx-background-color: aliceblue;");
      root.getChildren().add(mainContainer);
      primaryStage.initStyle(StageStyle.TRANSPARENT);
      final ChoiceBox<String> choiceBox = new ChoiceBox<>(FXCollections.observableArrayList("Item 1", "Item 2", "Item 3"));
      final Button closeButton = new Button("Close");
      VBox vbox = new VBox(10);
      vbox.setAlignment(Pos.CENTER);
      vbox.getChildren().addAll(choiceBox, closeButton);
      mainContainer.getChildren().add(vbox);
        closeButton.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            Platform.exit();
      primaryStage.setScene(new Scene(root,  300, 200, Color.TRANSPARENT));
      primaryStage.show();
      private void enableDragging(final Node n) {
       final ObjectProperty<Point2D> mouseAnchor = new SimpleObjectProperty<>(null);
       n.addEventHandler(MouseEvent.MOUSE_PRESSED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(new Point2D(event.getX(), event.getY()));
       n.addEventHandler(MouseEvent.MOUSE_RELEASED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            mouseAnchor.set(null);
       n.addEventHandler(MouseEvent.MOUSE_DRAGGED, new EventHandler<MouseEvent>() {
          @Override
          public void handle(MouseEvent event) {
            Point2D anchor = mouseAnchor.get();
            Scene scene = n.getScene();
            Window window = null ;
            if (scene != null) {
              window = scene.getWindow();
            if (anchor != null && window != null) {
              double deltaX = event.getX()-anchor.getX();
              double deltaY = event.getY()-anchor.getY();
              window.setX(window.getX()+deltaX);
              window.setY(window.getY()+deltaY);
      public static void main(String[] args) {
      launch(args);

  • I want to copy and past 58 links from my IE favorites into the bookmarks toolbar...not one at a time. where's the folder i can copy these too?

    i want to copy and past 58 links from my IE favorites into the bookmarks toolbar...not one at a time. where's the folder i can copy these too?
    == This happened ==
    Not sure how often
    == i want to copy and past 58 links from my IE favorites into the bookmarks toolbar...not one at a time. where's the folder i can copy these too?

    Firefox doesn't store the bookmarks as separate files in a folder, but uses a sqlite database file with the name places.sqlite.
    You will have to export those favorites in IE to an HTML file and import that file in Firefox.
    Bookmarks > Organize Bookmarks > Import & Backup > Import HTML : "From File"
    See http://kb.mozillazine.org/Backing_up_and_restoring_bookmarks_-_Firefox

  • I need an Apple SuperDrive 8X Part No. 661-4279 for my MacBook Pro.  Where is the best place to order one?

    I need an Apple SuperDrive 8X Part No. 661-4279 for my MacBook Pro.  Where is the best place to order one?

    Some sites to check out.
    http://www.powerbookmedic.com/Apple-SuperDrive-DVD-Burner-Drive-8x---Macbook-Pro -p-16916.html
    http://www.macpartsonline.com/661-4279-superdrive-8x-double-layer-pata-15inch-2- 2-2-4-2-6ghz-macbook-pro-a1226.html
    http://www.dvwarehouse.com/661-4279-DVD-R/CD-RW-SuperDrive-8x-Dual-Layer-PATA-fo r-MacBook--MacBook-Pro---NEW-p-37374.html
    http://www.welovemacs.com/6614091r.html

  • Why I need a code for rent a film and where ist the code? (I dont have a card)

    Why I need a code for rent a film and where ist the code? (I dont have a card)

    it's unclear what you mean
    you say you dont have a card which I guess is you don't have a creditcard
    in which case the other option is to pay by a giftcard which include a code which you put in
    because to rent you have to pay otherwise it's not really renting

  • GP Design Time - what is the purpose of 'Create Object View' option?

    We are running EP 7.01.  When I am in the GP Design Time, and I click on the 'Create Object View' link, I receive the following error:
    The initial exception that caused the request to fail, was:
       java.lang.NullPointerException
        at com.sap.caf.eu.gp.ui.bo.VCreateBasicData.wdDoInit(VCreateBasicData.java:103)
        at com.sap.caf.eu.gp.ui.bo.wdp.InternalVCreateBasicData.wdDoInit(InternalVCreateBasicData.java:159)
        at com.sap.tc.webdynpro.progmodel.generation.DelegatingView.doInit(DelegatingView.java:61)
        at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:215)
        at com.sap.tc.webdynpro.progmodel.view.View.initController(View.java:445)
        ... 55 more
    What is the purpose of the 'Create Object View' option?  I cannot find it in the documentation.

    Hi Karen,
    The Object Types are used to define the Parameters for the Callable Objects. We Can create the Object Views for the CAF Core Entity services or UME Pricipal Objects such as Users,Roles Groups etc. While creating the Object View we can select either of these and then we can create a view i..e. Select the required attributes from those Business Objects i.e. Entity Services or the Principals. Once we create the Object View, we can use them to define the Parameters for the callable Objects. While defining the parameters for Callable Objects, if you click the dropdown for 'Type', you'll see an entry 'Reference to BO'. If you select the entry, you'll see the list of Object Views you have created and you can select the Object View you want for defining that parameter. In short it means that you can create the Obect Views for the BOs i.e. CAF core Entity services and Pricipals. And then you can define the parameters for the Callable Objects with type 'Refence to BO' pointing to your object views.
    [further Info|http://help.sap.com/saphelp_nw70ehp1/helpdata/en/44/051d496d9c5922e10000000a155369/frameset.htm]
    [Some more Info|http://help.sap.com/saphelp_nw70ehp1/helpdata/en/44/051d496d9c5922e10000000a155369/frameset.htm]
    Regards,
    Ajay

  • Ver 4: Still no support for Includes or Design Time Stylesheets?

    Wow...well, without either of these I can't make use of this
    product. I guess I'm confused at what types of users this product
    may be marketed toward, although with the amount of focus put on
    Blogs and Blogging and lack of focus on requests already made in
    this forum for some time I'm getting a better idea. Hey, if they
    want to "dumb this down" and make it a price point product that
    purposely sits lower on the totem pole than Dreamweaver, then I
    think that ought to be made more clear in the marketing materials.
    I guess what's frustrating is that it's touted that it "uses the
    Dreamweaver HTML Engine" but can't implement a feature like Design
    Time Stylesheets? Would this put it too close to Dreamweaver in the
    product line? I certainly don't think so but if it did implement
    such a feature it would increase the demographic that could make
    use of such a great product as many users are not going to rewrite
    Includes OUT of their existing sites just to be able to use it.
    Most intermediate to advanced designers will almost always,
    and have been taught, to use includes to minimize page changes in
    multiple places...it's such a common thing to do. But unless an
    included page can be edited inline I have no way to turn my users
    loose with this app. It seems reasonable to implement Design Time
    Stylesheets like Dreamweaver does in which case, the users could
    edit the included page directly and at least see it like it should
    look with formatting which they can't do now because of the lack of
    an applied stylesheet when opening the include file directly.
    Do they expect that once we've written a site using includes
    we should have our content providers use Dreamweaver? I don't know
    about the rest of you but that's asking for a heck of a lot of
    trouble turning non-designer/developers loose with
    Dreamweaver...even using Templates.
    Sorry for the rant, I'm just a bit frustrated as I really
    need an app that can let me make use of "Content Providers" in our
    company. And don't get me wrong, I'm a long time Macromedia/Adobe
    supporter...just hoped something would happen with v4 that didn't
    and was pretty sure it would based on user input on this and other
    forums.
    If anyone has ideas on workarounds for this problem I'd love
    to hear!
    Thx,
    Mike

    Hi. I'm going to reopen this thread instead of starting a new
    one. Maybe someone here can help me figure out how Contribute can
    solve my client's editing woes.
    His site is built in ColdFusion, with template information
    that's stored in the database for each page. Currently this is what
    happens, simplified.
    1. User requests /foo.cfm
    2. Database looks up header, footer, and template to use for
    /foo.cfm, or the page can use "no template" in which case
    whatever's in the page gets put between the header and footer.
    3. The template or the page will contain one or more
    "editable regions", to use a Dreamweaver term. These blocks of HTML
    are pulled out of the database, and can currently be edited within
    the CMS by a browser-based WYSWYG editor.
    The problem is, the WYSIWYG editor in question isn't up to
    the task. Contribute seems to be, but I can't figure out how to fit
    it into a workflow compatible with this site!
    We don't use Dreamweaver and from what I've seen Dreamweaver
    templates aren't going to work in this application. It seems that
    if you make a change to the template, Dreamweaver has to go and
    update all 800 pages that use the template ... ??!? ... if so,
    lame.
    I don't mind pulling out all the HTML content snippets from
    the database and making a "database" on the filesystem of files
    that can be edited in Contribute. No problem. One of these snippets
    may be a "contact us" box or something that's used on 100 pages
    throughout the site, so I'm not going to put stuff like that
    separately on every page.
    If I do this, though, my snippets when I open them to edit
    them in Contribute are missing their CSS. This is because the CSS
    is set up in the header file, which is not included in the snippet
    HTML, obviously. The snippets also won't have the header and footer
    navigation and stuff, but I can live with that.
    How can I get the CSS to show up for my client when he edits
    the HTML snippets?
    The only solution I can think of is to put a stylesheet
    include into every snippet, and then pull that out with a regular
    expression from EVERY include at runtime whenever I display that
    HTML to the end user. Talk about a gross, ugly, non-extensible
    hack. Please tell me there's a better way...
    Thanks for reading,
    - Andrew.

  • What is the best way to create shared variable for multiple PXI(Real-Time) to GUI PC?

    What is the best way to create shared variable for multiple Real time (PXI) to GUI PC? I have 16 Nos of PXI system in network and 1 nos of GUI PC. I want to send command to all the PXI system with using single variable from GUI PC(Like Start Data acquisition, Stop data Acquisition) and I also want data from each PXI system to GUI PC display purpose. Can anybody suggest me best performance system configuration. Where to create variable?(Host PC or at  individual PXI system).

    Dear Ravens,
    I want to control real-time application from host(Command from GUI PC to PXI).Host PC should have access to all 16 sets PXI's variable. During communication failure with PXI, Host will stop data display for particular station.
    Ravens Fan wrote:
    Either.  For the best performance, you need to determine what that means.  Is it more important for each PXI machine to have access to the shared variable, or for the host PC to have access to all 16 sets of variables?  If you have slowdown or issue with the network communication, what kinds of problems would it cause for each machine?
    You want to located the shared variable library on whatever machine is more critical.  That is probably each PXI machine, but only you know your application.
    Ravens Fan wrote:
    Either.  For the best performance, you need to determine what that means.  Is it more important for each PXI machine to have access to the shared variable, or for the host PC to have access to all 16 sets of variables?  If you have slowdown or issue with the network communication, what kinds of problems would it cause for each machine?
    You want to located the shared variable library on whatever machine is more critical.  That is probably each PXI machine, but only you know your application.

  • Time machine creating new backup for external hd every time it is connected.

    Hi.
    I have recently gotten a Time Capsule to back up my files.
    I want to back up my internal harddrive as well as an external harddrive with master images from aperture.
    Theoretically time machine should skip trying to back up the external drive when it is not connected, and make a backup when it is. (I only connect the disk when working with the images)
    However, the problem is that every time I connect the external hd to back it up, time machine seems to create a total new backup of the whole drive and not just the changes. It seems to not recognise that it has already backed up the disk before. Does anyone know how to fix this?
    I know it is possible, since I have used this system before, but can't quite figure out how to solve the problem.
    Thanks!

    However, the problem is that every time I connect the external hd to back it up, time machine seems to create a total new backup of the whole drive and not just the changes. It seems to not recognise that it has already backed up the disk before. Does anyone know how to fix this?
    If the drive is not recognised.. you should see multiple external drives in the backup.. is that in fact what is happening.
    What makes you think it is doing a whole new backup??
    One factor you may not have considered is that Time Machine does need to do a deep scan of the disk when it has missed more than a few days. A deep scan can take ages over wireless as it will have to actually compare the backup with the files on the disk. Determine what has changed, make up a list of files that need backup and then start and actually do the backup.. this might even take longer than a straight clean backup.
    Have you checked the TM log for what it is really doing?? Pondini widget will give you that info. See A1 here.
    http://pondini.org/TM/Troubleshooting.html
    I have a simple solution.. that will cost you around $40.. use Carbon Copy Cloner.. not Time Machine. It simply handles this kind of thing better.
    There are a number of other solutions that you can buy.. 3rd party backup software.. you can even do it manually via rsync.. however.. a tool like CCC which is based on rsync is a heck of lot easier than writing your own backup scripts.

  • How can i create a plugin for adobe in design CS3

    i'm trying to make a plugin to use it in adobe Indesign CS3 program but i can't
    i'm using Windows 7
    i had tryed to make a plugin using Eclips with indesign plugin editor and Visual studio C++ but i can't as i can;t find where can i write my code and there is also an error while debuging is that :
    <error PRJ0019: A tool returned an error code from "Performing Custom Build Step">
    after working out  this error "by adding the directory of Odfrc.exe in tools->VC++ Directories->executable file" another error raise to me :
    <Unknown compiler version - please run the configure tests and report the results> and the visual studio raise message box to me to specify the name of the executable file to be used for the debug session
    i don;t know wat can i do know all i need to create a plugin for indesign program so could any one help me ??

    Each version of the SDK has very specific demands for the compiler setup, and this in turn relies heavily on the operating system. The CS3 SDK probably was based on a much older version of Visual Studio.
    Compare your toolchain against the requirements that should be stated somewhere in the CS3 documentation. It's a solid bet you are years ahead -- there simply is no reason for Adobe to keep on supporting all OSes and compilers that continue to appear, for a version of InDesign that's by now 2.5 versions old.

  • After installing Maverick Os on my MacBook Pro, the setup runs (i choose my location, provide it with some settings info, starts to create an account for me... but then when the desktop appears it indicates that the setup failed.

    Here is the error message that I receive....
    Process:         Setup Assistant [222]
    Path:            /System/Library/CoreServices/Setup Assistant.app/Contents/MacOS/Setup Assistant
    Identifier:      com.apple.SetupAssistant
    Version:         10.9 (1325)
    Build Info:      MacBuddyX-1325000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [161]
    Responsible:     Setup Assistant [222]
    User ID:         501
    Date/Time:       2014-01-14 19:52:15.989 -0800
    OS Version:      Mac OS X 10.9.1 (13B42)
    Report Version:  11
    Anonymous UUID:  AD6F6E4F-EB27-5BCC-E877-D33DDF0EB244
    Crashed Thread:  15  Dispatch queue: apply-settings
    Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Application Specific Information:
    XPC API Misuse: Attempt to look up cross UID boundaries by unprivileged process.
    Application Specific Signatures:
    API Misuse
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x00000001124b5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00000001124b4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000010961d315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000010961c939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000010961c275 CFRunLoopRunSpecific + 309
    5   com.apple.HIToolbox                     0x0000000113440f0d RunCurrentEventLoopInMode + 226
    6   com.apple.HIToolbox                     0x0000000113440cb7 ReceiveNextEventCommon + 479
    7   com.apple.HIToolbox                     0x0000000113440abc _BlockUntilNextEventMatchingListInModeWithFilter + 65
    8   com.apple.AppKit                        0x0000000110a1f28e _DPSNextEvent + 1434
    9   com.apple.AppKit                        0x0000000110a1e8db -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 122
    10  com.apple.AppKit                        0x0000000110a129cc -[NSApplication run] + 553
    11  com.apple.AppKit                        0x00000001109fd803 NSApplicationMain + 940
    12  libdyld.dylib                           0x00000001123115fd start + 1
    Thread 1:
    0   libsystem_kernel.dylib                  0x00000001124b9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00000001125c5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00000001125c8fb9 start_wqthread + 13
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00000001124ba662 kevent64 + 10
    1   libdispatch.dylib                       0x00000001122dc43d _dispatch_mgr_invoke + 239
    2   libdispatch.dylib                       0x00000001122dc152 _dispatch_mgr_thread + 52
    Thread 3:
    0   libsystem_kernel.dylib                  0x00000001124b9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00000001125c5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00000001125c8fb9 start_wqthread + 13
    Thread 4:
    0   libsystem_kernel.dylib                  0x00000001124b5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00000001124b4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000010961d315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000010961c939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000010961c275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x000000010f8eda7c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
    6   com.apple.Foundation                    0x000000010f93602b -[NSRunLoop(NSRunLoop) runUntilDate:] + 78
    7   com.apple.SystemMigration               0x000000010a3d2d7a -[SMManager _searchForValidSystemsThread] + 1689
    8   com.apple.Foundation                    0x000000010f8eb70b __NSThread__main__ + 1318
    9   libsystem_pthread.dylib                 0x00000001125c4899 _pthread_body + 138
    10  libsystem_pthread.dylib                 0x00000001125c472a _pthread_start + 137
    11  libsystem_pthread.dylib                 0x00000001125c8fc9 thread_start + 13
    Thread 5:
    0   libsystem_kernel.dylib                  0x00000001124b5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00000001124b4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000010961d315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000010961c939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000010961c275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x000000010f8eda7c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
    6   com.apple.Foundation                    0x000000010f93602b -[NSRunLoop(NSRunLoop) runUntilDate:] + 78
    7   com.apple.SystemMigration               0x000000010a3d2581 -[SMManager _slingshotBrowserThread] + 222
    8   com.apple.Foundation                    0x000000010f8eb70b __NSThread__main__ + 1318
    9   libsystem_pthread.dylib                 0x00000001125c4899 _pthread_body + 138
    10  libsystem_pthread.dylib                 0x00000001125c472a _pthread_start + 137
    11  libsystem_pthread.dylib                 0x00000001125c8fc9 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00000001124b5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00000001124b4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000010961d315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000010961c939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000010961c275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x000000010f8eda7c -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 253
    6   com.apple.Foundation                    0x000000010f93602b -[NSRunLoop(NSRunLoop) runUntilDate:] + 78
    7   com.apple.SystemMigration               0x000000010a3d2695 -[SMManager _timeCapsuleBrowserThread] + 200
    8   com.apple.Foundation                    0x000000010f8eb70b __NSThread__main__ + 1318
    9   libsystem_pthread.dylib                 0x00000001125c4899 _pthread_body + 138
    10  libsystem_pthread.dylib                 0x00000001125c472a _pthread_start + 137
    11  libsystem_pthread.dylib                 0x00000001125c8fc9 thread_start + 13
    Thread 7:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00000001124b99aa __select + 10
    1   com.apple.CoreFoundation                0x0000000109668d43 __CFSocketManager + 867
    2   libsystem_pthread.dylib                 0x00000001125c4899 _pthread_body + 138
    3   libsystem_pthread.dylib                 0x00000001125c472a _pthread_start + 137
    4   libsystem_pthread.dylib                 0x00000001125c8fc9 thread_start + 13
    Thread 8:
    0   libsystem_kernel.dylib                  0x00000001124b5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00000001124b4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000010961d315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000010961c939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000010961c275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00000001096d19d1 CFRunLoopRun + 97
    6   com.apple.SetupAssistant                0x0000000108e72ba9 0x108e20000 + 338857
    7   com.apple.Foundation                    0x000000010f8eb70b __NSThread__main__ + 1318
    8   libsystem_pthread.dylib                 0x00000001125c4899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00000001125c472a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00000001125c8fc9 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00000001124b5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00000001124b4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000010961d315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000010961c939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000010961c275 CFRunLoopRunSpecific + 309
    5   com.apple.AppKit                        0x0000000110bbf1ce _NSEventThread + 144
    6   libsystem_pthread.dylib                 0x00000001125c4899 _pthread_body + 138
    7   libsystem_pthread.dylib                 0x00000001125c472a _pthread_start + 137
    8   libsystem_pthread.dylib                 0x00000001125c8fc9 thread_start + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00000001124b5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00000001124b4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000010961d315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000010961c939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000010961c275 CFRunLoopRunSpecific + 309
    5   com.apple.CoreFoundation                0x00000001096d19d1 CFRunLoopRun + 97
    6   com.apple.AOSKit                        0x000000011ab6350d -[AOSConfig listenForSystemEvents:] + 335
    7   com.apple.Foundation                    0x000000010f8eb70b __NSThread__main__ + 1318
    8   libsystem_pthread.dylib                 0x00000001125c4899 _pthread_body + 138
    9   libsystem_pthread.dylib                 0x00000001125c472a _pthread_start + 137
    10  libsystem_pthread.dylib                 0x00000001125c8fc9 thread_start + 13
    Thread 11:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00000001124b5a1a mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00000001124b4d18 mach_msg + 64
    2   com.apple.CoreFoundation                0x000000010961d315 __CFRunLoopServiceMachPort + 181
    3   com.apple.CoreFoundation                0x000000010961c939 __CFRunLoopRun + 1161
    4   com.apple.CoreFoundation                0x000000010961c275 CFRunLoopRunSpecific + 309
    5   com.apple.Foundation                    0x000000010f8eb907 +[NSURLConnection(Loader) _resourceLoadLoop:] + 348
    6   com.apple.Foundation                    0x000000010f8eb70b __NSThread__main__ + 1318
    7   libsystem_pthread.dylib                 0x00000001125c4899 _pthread_body + 138
    8   libsystem_pthread.dylib                 0x00000001125c472a _pthread_start + 137
    9   libsystem_pthread.dylib                 0x00000001125c8fc9 thread_start + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00000001124b9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00000001125c5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00000001125c8fb9 start_wqthread + 13
    Thread 13:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00000001124b9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00000001125c6c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x0000000118a5ae15 JSC::BlockAllocator::blockFreeingThreadMain() + 261
    3   com.apple.JavaScriptCore                0x0000000118a500af ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib                 0x00000001125c4899 _pthread_body + 138
    5   libsystem_pthread.dylib                 0x00000001125c472a _pthread_start + 137
    6   libsystem_pthread.dylib                 0x00000001125c8fc9 thread_start + 13
    Thread 14:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00000001124b9716 __psynch_cvwait + 10
    1   libsystem_pthread.dylib                 0x00000001125c6c3b _pthread_cond_wait + 727
    2   com.apple.JavaScriptCore                0x0000000118a5b887 JSC::GCThread::waitForNextPhase() + 119
    3   com.apple.JavaScriptCore                0x0000000118a5b718 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore                0x0000000118a500af ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib                 0x00000001125c4899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00000001125c472a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00000001125c8fc9 thread_start + 13
    Thread 15 Crashed:: Dispatch queue: apply-settings
    0   libxpc.dylib                            0x000000011261c0a6 _xpc_api_misuse + 75
    1   libxpc.dylib                            0x0000000112615da7 xpc_connection_set_target_uid + 147
    2   com.apple.SetupAssistant                0x0000000108e88173 0x108e20000 + 426355
    3   com.apple.SetupAssistant                0x0000000108e89409 0x108e20000 + 431113
    4   com.apple.SetupAssistant                0x0000000108e88bfd 0x108e20000 + 429053
    5   com.apple.SetupAssistant                0x0000000108e664f9 0x108e20000 + 287993
    6   com.apple.SetupAssistant                0x0000000108e39393 0x108e20000 + 103315
    7   com.apple.SetupAssistant                0x0000000108e52169 0x108e20000 + 205161
    8   com.apple.SetupAssistant                0x0000000108e30d5d 0x108e20000 + 68957
    9   com.apple.SetupAssistant                0x0000000108e2c963 0x108e20000 + 51555
    10  libdispatch.dylib                       0x00000001122dd1d7 _dispatch_call_block_and_release + 12
    11  libdispatch.dylib                       0x00000001122da2ad _dispatch_client_callout + 8
    12  libdispatch.dylib                       0x00000001122dc68f _dispatch_queue_drain + 451
    13  libdispatch.dylib                       0x00000001122dd9dd _dispatch_queue_invoke + 110
    14  libdispatch.dylib                       0x00000001122dbfa3 _dispatch_root_queue_drain + 75
    15  libdispatch.dylib                       0x00000001122dd193 _dispatch_worker_thread2 + 40
    16  libsystem_pthread.dylib                 0x00000001125c5ef8 _pthread_wqthread + 314
    17  libsystem_pthread.dylib                 0x00000001125c8fb9 start_wqthread + 13
    Thread 16:
    0   libsystem_kernel.dylib                  0x00000001124b9e6a __workq_kernreturn + 10
    1   libsystem_pthread.dylib                 0x00000001125c5f08 _pthread_wqthread + 330
    2   libsystem_pthread.dylib                 0x00000001125c8fb9 start_wqthread + 13
    Thread 17:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x00000001124b9a3a __semwait_signal + 10
    1   libsystem_c.dylib                       0x0000000112402e60 nanosleep + 200
    2   libsystem_c.dylib                       0x0000000112402d52 usleep + 54
    3   com.apple.AppKit                        0x0000000110c832ad -[NSUIHeartBeat _heartBeatThread:] + 2132
    4   com.apple.Foundation                    0x000000010f8eb70b __NSThread__main__ + 1318
    5   libsystem_pthread.dylib                 0x00000001125c4899 _pthread_body + 138
    6   libsystem_pthread.dylib                 0x00000001125c472a _pthread_start + 137
    7   libsystem_pthread.dylib                 0x00000001125c8fc9 thread_start + 13
    Thread 15 crashed with X86 Thread State (64-bit):
      rax: 0x00000001126249d4  rbx: 0x0000000122f14a80  rcx: 0x11003f509d3c3fd6  rdx: 0x0000000122f14438
      rdi: 0x0000000000000000  rsi: 0x0000000112622824  rbp: 0x0000000122f14b30  rsp: 0x0000000122f14a80
       r8: 0x00000001126249c1   r9: 0x000000011240b900  r10: 0x00000001123d0348  r11: 0x0000000122f14a90
      r12: 0x0000000000000008  r13: 0x0000000122f14c18  r14: 0x00007f981ac8bd10  r15: 0x00000000000001f7
      rip: 0x000000011261c0a6  rfl: 0x0000000000010202  cr2: 0x000000011261c05b
    Logical CPU:     0
    Error Code:      0x00000000
    Trap Number:     6
    Binary Images:
           0x108e20000 -        0x108ebcff7  com.apple.SetupAssistant (10.9 - 1325) <57CBE8D5-3EB7-31F8-9F3C-F844B1FE78A0> /System/Library/CoreServices/Setup Assistant.app/Contents/MacOS/Setup Assistant
           0x108f15000 -        0x108f1dff7  com.apple.CloudServices (1.0 - 1) <D59A4139-B4E4-3097-A442-BA87928B355C> /System/Library/PrivateFrameworks/CloudServices.framework/Versions/A/CloudServi ces
           0x108f2f000 -        0x108f69fff  com.apple.LoginUIKit (3.0 - 3.0) <43FDB1EA-61EC-3D8A-B48D-EBAF3178424D> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/LoginUIKit
           0x108fa9000 -        0x108faaff7  libDiagnosticMessagesClient.dylib (100) <4CDB0F7B-C0AF-3424-BC39-495696F0DB1E> /usr/lib/libDiagnosticMessagesClient.dylib
           0x108fb0000 -        0x108fbcff7  com.apple.CalendarAgentLink (7.0 - 138) <B8B63D14-D853-3478-B001-BC67B7E9F993> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
           0x108fd4000 -        0x108fdbff7  com.apple.phonenumbers (1.1.1 - 105) <767A63EB-244C-34F1-9FFA-D1A6BED60C31> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
           0x108fe4000 -        0x108fe4fff  com.apple.quartzframework (1.5 - 1.5) <3B2A72DB-39FC-3C5B-98BE-605F37777F37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
           0x108fe7000 -        0x109000fff  com.apple.AssistantServices (1.1 - 132) <8046BCBE-4F58-3F51-85A2-4F876C299B5E> /System/Library/PrivateFrameworks/AssistantServices.framework/Versions/A/Assist antServices
           0x109027000 -        0x10902bfff  com.apple.FindMyMac (2.1 - 2.1) <57D589E9-B726-3519-BE99-1B38F7737ED6> /System/Library/PrivateFrameworks/FindMyMac.framework/Versions/A/FindMyMac
           0x109038000 -        0x10903bfff  com.apple.AppleSystemInfo (3.0 - 3.0) <4D032152-AA40-350E-BB96-44BC55C5C69C> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
           0x109043000 -        0x10904ffff  com.apple.IASUtilities (1.0 - 14) <EB5194D6-35C7-3A8B-97C5-5F75BEDFA87A> /System/Library/PrivateFrameworks/IASUtilities.framework/Versions/A/IASUtilitie s
           0x109063000 -        0x1092c4ff7  com.apple.imageKit (2.5 - 770) <33BCF627-EB1A-3CC1-98AB-2324B6DFB329> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
           0x109511000 -        0x10956fff7  com.apple.corelocation (1486.17 - 1486.24) <9FBB29F0-E000-3190-A96C-9EAA5CCCA2A0> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
           0x1095ac000 -        0x109791ff7  com.apple.CoreFoundation (6.9 - 855.11) <E22C6A1F-8996-349C-905E-96C3BBE07C2F> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x109904000 -        0x10992aff7  com.apple.AOSAccounts (1.2.47 - 1.2.72) <C13B030F-55B1-3AF0-A14E-11FF9CC54E83> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
           0x109957000 -        0x109969fff  com.apple.login (3.0 - 3.0) <B825A996-7F9C-3F47-B76F-A0F9B4BEB373> /System/Library/PrivateFrameworks/login.framework/Versions/A/login
           0x10997e000 -        0x1099f1ffb  com.apple.securityfoundation (6.0 - 55122) <119D1C53-B292-3378-AEE1-A3B1FB02F43F> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x109a35000 -        0x109c8dff1  com.apple.security (7.0 - 55471) <233831C5-C457-3AD5-AFE7-E3E2DE6929C9> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x109dd9000 -        0x109e05ff7  com.apple.framework.SystemAdministration (1.0 - 1.0) <36C562FF-5D91-318C-A19C-6B4453FB78B9> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/Sys temAdministration
           0x109e33000 -        0x109e39ff7  com.apple.IntlPreferences (2.0 - 2.0) <EA3B8FCD-C308-3285-B1C8-95A2AC417FDF> /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
           0x109e43000 -        0x109fdfff7  com.apple.QuartzCore (1.8 - 332.0) <994D1E0A-64B6-398C-B9A2-C362F02DE943> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x10a0bd000 -        0x10a275ff3  libicucore.A.dylib (511.27) <003B6C21-CBD1-3486-9A1D-030ADF5FA061> /usr/lib/libicucore.A.dylib
           0x10a31f000 -        0x10a31fff9 +cl_kernels (???) <3E400220-E595-4DA8-8D34-CEA0105FD0DA> cl_kernels
           0x10a321000 -        0x10a38bff7  com.apple.framework.IOKit (2.0.1 - 907.1.13) <C1E95F5C-B79B-31BE-9F2A-1B25163C1F16> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x10a3c0000 -        0x10a3c0fff  com.apple.Carbon (154 - 157) <4E260C09-78F4-305B-B408-13321CAF6213> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x10a3c6000 -        0x10a4b4fff  com.apple.SystemMigration (500 - 677) <A9EB2F94-5573-3B31-8EF3-46A7589982F2> /System/Library/PrivateFrameworks/SystemMigration.framework/Versions/A/SystemMi gration
           0x10f548000 -        0x10f564fff  com.apple.frameworks.preferencepanes (16.0 - 16.0) <059E99D8-67C2-3B59-B5E7-850DD7A92D75> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
           0x10f584000 -        0x10f585fff +cl_kernels (???) <5C10565B-F823-449F-822C-706DC2430D30> cl_kernels
           0x10f587000 -        0x10f5e6fff  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <775F9444-8059-30A2-8058-7F7ACD68CCF1> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
           0x10f62a000 -        0x10f68dff7  com.apple.SystemConfiguration (1.13 - 1.13) <F05F4149-981B-380B-8F50-51CE804BBB89> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x10f6c8000 -        0x10f6c8fff +cl_kernels (???) <B2828595-B3E1-4FEE-9F4D-A5A6B6069643> cl_kernels
           0x10f6cb000 -        0x10f6ccffb  libScreenReader.dylib (333.2) <0172E6E2-9D4B-36BF-81DC-428FF0668E78> /usr/lib/libScreenReader.dylib
           0x10f6d2000 -        0x10f6e4fff  com.apple.frameworks.preferencepanessupport (12.0 - 12.0) <76194568-146C-3019-A5EF-866EC3D5AA85> /System/Library/PrivateFrameworks/PreferencePanesSupport.framework/Versions/A/P referencePanesSupport
           0x10f6fb000 -        0x10f6fbfff  com.apple.Cocoa (6.8 - 20) <E90E99D7-A425-3301-A025-D9E0CD11918E> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x10f6ff000 -        0x10f70bff7  com.apple.OpenDirectory (10.9 - 173.1.1) <6B78BD7B-5622-38E6-8FC6-86A117E3ACCA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x10f727000 -        0x10f731ff7  com.apple.CrashReporterSupport (10.9 - 538) <B487466B-3AA1-3854-A808-A61F049FA794> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x10f742000 -        0x10f7c6ff7  com.apple.AOSUI (1.2 - 270) <B33570A8-00E2-3A0C-9ABB-E71D3F62A4BA> /System/Library/PrivateFrameworks/AOSUI.framework/Versions/A/AOSUI
           0x10f83b000 -        0x10f83ffff  com.apple.ServerInformation (2.0 - 1) <E628F08A-0F6F-384B-AFD5-1BC1BBF56F1F> /System/Library/PrivateFrameworks/ServerInformation.framework/Versions/A/Server Information
           0x10f84d000 -        0x10f857ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <2D27B498-BB9C-3D88-B05A-76908A8A26F3> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x10f866000 -        0x10f872fff  com.apple.Collaboration (71 - 71) <0CD617F3-354C-3FEF-A966-C2553B7662EE> /System/Library/Frameworks/Collaboration.framework/Versions/A/Collaboration
           0x10f884000 -        0x10fb83fff  com.apple.Foundation (6.9 - 1056) <D608EDFD-9634-3573-9B7E-081C7D085F7A> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x10fdc4000 -        0x10ff71f27  libobjc.A.dylib (551.1) <AD7FD984-271E-30F4-A361-6B20319EC73B> /usr/lib/libobjc.A.dylib
           0x10ff94000 -        0x10ff95ff7  libSystem.B.dylib (1197.1.1) <BFC0DC97-46C6-3BE0-9983-54A98734897A> /usr/lib/libSystem.B.dylib
           0x10ff9c000 -        0x1108b805f  com.apple.CoreGraphics (1.600.0 - 599.7) <7D0FD5A7-A061-39BA-8E00-723825D2C4DD> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
           0x1109e4000 -        0x1109e4ffd +cl_kernels (???) <C61CA8B9-19A4-4A5B-9E19-9D2A6BFD69B1> cl_kernels
           0x1109e8000 -        0x1109e8fff  com.apple.CoreServices (59 - 59) <7A697B5E-F179-30DF-93F2-8B503CEEEFD5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x1109f1000 -        0x1109f1fff  com.apple.ApplicationServices (48 - 48) <3E3F01A8-314D-378F-835E-9CC4F8820031> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x1109fb000 -        0x11156fff7  com.apple.AppKit (6.9 - 1265) <0E9FC8BF-DA3C-34C5-91CC-12BC922B5F01> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x111cfc000 -        0x111d3eff7  libauto.dylib (185.5) <F45C36E8-B606-3886-B5B1-B6745E757CA8> /usr/lib/libauto.dylib
           0x111d56000 -        0x111e3dff7  libxml2.2.dylib (26) <A1DADD11-89E5-3DE4-8802-07186225967F> /usr/lib/libxml2.2.dylib
           0x111e78000 -        0x111e89ff7  libz.1.dylib (53) <42E0C8C6-CA38-3CA4-8619-D24ED5DD492E> /usr/lib/libz.1.dylib
           0x111e8f000 -        0x111fffff6  com.apple.CFNetwork (673.0.3 - 673.0.3) <42CFC3DB-35C8-3652-AF37-4BCC73D8BDEF> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
           0x112105000 -        0x112106fff  liblangid.dylib (117) <9546E641-F730-3AB0-B3CD-E0E2FDD173D9> /usr/lib/liblangid.dylib
           0x112110000 -        0x11212bff7  libCRFSuite.dylib (34) <FFAE75FA-C54E-398B-AA97-18164CD9789D> /usr/lib/libCRFSuite.dylib
           0x112136000 -        0x112188fff  libc++.1.dylib (120) <4F68DFC5-2077-39A8-A449-CAC5FDEE7BDE> /usr/lib/libc++.1.dylib
           0x1121e4000 -        0x1121e4fff +cl_kernels (???) <F5D80094-62D0-40E2-BCA9-791177B86C62> cl_kernels
           0x1121e8000 -        0x112211ff7  libc++abi.dylib (48) <8C16158F-CBF8-3BD7-BEF4-022704B2A326> /usr/lib/libc++abi.dylib
           0x11221f000 -        0x11221ffff  com.apple.appstore.macbuddy.AppStore (1.0 - 1) <869159DF-ACF0-3183-BA35-C4258DAC9DCD> /System/Library/CoreServices/SetupAssistantPlugins/AppStore.icdplugin/Contents/ MacOS/AppStore
           0x112226000 -        0x11222aff7  libcache.dylib (62) <BDC1E65B-72A1-3DA3-A57C-B23159CAAD0B> /usr/lib/system/libcache.dylib
           0x112231000 -        0x112231ffb +cl_kernels (???) <1F7DCBAD-8C86-4809-8CAE-980D0050F418> cl_kernels
           0x112233000 -        0x11223dfff  libcommonCrypto.dylib (60049) <8C4F0CA0-389C-3EDC-B155-E62DD2187E1D> /usr/lib/system/libcommonCrypto.dylib
           0x11224d000 -        0x112254fff  libcompiler_rt.dylib (35) <4CD916B2-1B17-362A-B403-EF24A1DAC141> /usr/lib/system/libcompiler_rt.dylib
           0x112265000 -        0x11226cff3  libcopyfile.dylib (103) <5A881779-D0D6-3029-B371-E3021C2DDA5E> /usr/lib/system/libcopyfile.dylib
           0x112275000 -        0x1122c3fff  libcorecrypto.dylib (161.1) <F3973C28-14B6-3006-BB2B-00DD7F09ABC7> /usr/lib/system/libcorecrypto.dylib
           0x1122d9000 -        0x1122f3fff  libdispatch.dylib (339.1.9) <46878A5B-4248-3057-962C-6D4A235EEF31> /usr/lib/system/libdispatch.dylib
           0x11230e000 -        0x112311ff7  libdyld.dylib (239.3) <62F4D752-4089-31A8-8B73-B95A68893B3C> /usr/lib/system/libdyld.dylib
           0x112319000 -        0x112319ff7  libkeymgr.dylib (28) <3AA8D85D-CF00-3BD3-A5A0-E28E1A32A6D8> /usr/lib/system/libkeymgr.dylib
           0x112320000 -        0x112327ff7  liblaunch.dylib (842.1.4) <FCBF0A02-0B06-3F97-9248-5062A9DEB32C> /usr/lib/system/liblaunch.dylib
           0x112332000 -        0x112337fff  libmacho.dylib (845) <1D2910DF-C036-3A82-A3FD-44FF73B5FF9B> /usr/lib/system/libmacho.dylib
           0x112341000 -        0x112343ff7  libquarantine.dylib (71) <7A1A2BCB-C03D-3A25-BFA4-3E569B2D2C38> /usr/lib/system/libquarantine.dylib
           0x11234f000 -        0x112350ffb  libremovefile.dylib (33) <3543F917-928E-3DB2-A2F4-7AB73B4970EF> /usr/lib/system/libremovefile.dylib
           0x112356000 -        0x112356fff  com.apple.ibooks.macbuddy.iBooks (1.0 - 1) <D14600F4-579A-3955-B3CA-66E34EBA8082> /System/Library/CoreServices/SetupAssistantPlugins/iBooks.icdplugin/Contents/Ma cOS/iBooks
           0x11235a000 -        0x11236bff7  libsystem_asl.dylib (217.1.4) <655FB343-52CF-3E2F-B14D-BEBF5AAEF94D> /usr/lib/system/libsystem_asl.dylib
           0x11237c000 -        0x11237dff7  libsystem_blocks.dylib (63) <FB856CD1-2AEA-3907-8E9B-1E54B6827F82> /usr/lib/system/libsystem_blocks.dylib
           0x112382000 -        0x112382fff  com.apple.icdplugin.FaceTime (8.0 - 4218) <5CB60BF5-5931-3A16-AC83-921CFC985942> /System/Library/CoreServices/SetupAssistantPlugins/FaceTime.icdplugin/Contents/ MacOS/FaceTime
           0x112387000 -        0x112410ff7  libsystem_c.dylib (997.1.1) <61833FAA-7281-3FF9-937F-686B6F20427C> /usr/lib/system/libsystem_c.dylib
           0x112441000 -        0x112443ff3  libsystem_configuration.dylib (596.12) <C4F633D9-94C8-35D9-BB2D-84C5122533C7> /usr/lib/system/libsystem_configuration.dylib
           0x11244d000 -        0x112455fff  libsystem_dnssd.dylib (522.1.11) <270DCF6C-502D-389A-AA9F-DE4624A36FF7> /usr/lib/system/libsystem_dnssd.dylib
           0x112461000 -        0x112488ffb  libsystem_info.dylib (449.1.3) <7D41A156-D285-3849-A2C3-C04ADE797D98> /usr/lib/system/libsystem_info.dylib
           0x1124a4000 -        0x1124c0ff7  libsystem_kernel.dylib (2422.1.72) <D14913DB-47F1-3591-8DAF-D4B4EF5F8818> /usr/lib/system/libsystem_kernel.dylib
           0x1124e4000 -        0x112513fd2  libsystem_m.dylib (3047.16) <B7F0E2E4-2777-33FC-A787-D6430B630D54> /usr/lib/system/libsystem_m.dylib
           0x112525000 -        0x112540ff7  libsystem_malloc.dylib (23.1.10) <FFE5C472-B23A-318A-85BF-77CDE61900D1> /usr/lib/system/libsystem_malloc.dylib
           0x11254a000 -        0x112571ff7  libsystem_network.dylib (241.3) <8B1E1F1D-A5CC-3BAE-8B1E-ABC84337A364> /usr/lib/system/libsystem_network.dylib
           0x11258f000 -        0x112598ff3  libsystem_notify.dylib (121) <52571EC3-6894-37E4-946E-064B021ED44E> /usr/lib/system/libsystem_notify.dylib
           0x1125a3000 -        0x1125a9ff7  libsystem_platform.dylib (24.1.4) <331BA4A5-55CE-3B95-99EB-44E0C89D7FB8> /usr/lib/system/libsystem_platform.dylib
           0x1125bc000 -        0x1125bdff7  com.apple.icdplugin.gamecenter (1.0 - ???) <F57BD71F-F55B-3B93-885E-F4C4E3198106> /System/Library/CoreServices/SetupAssistantPlugins/GameCenter.icdplugin/Content s/MacOS/GameCenter
           0x1125c3000 -        0x1125caff7  libsystem_pthread.dylib (53.1.4) <AB498556-B555-310E-9041-F67EC9E00E2C> /usr/lib/system/libsystem_pthread.dylib
           0x1125d8000 -        0x1125d9ff7  libsystem_sandbox.dylib (278.10) <A47E7E11-3C76-318E-B67D-98972B86F094> /usr/lib/system/libsystem_sandbox.dylib
           0x1125e1000 -        0x1125e5fff  libsystem_stats.dylib (93.1.26) <B9E26A9E-FBBC-3938-B8B7-6CF7CA8C99AD> /usr/lib/system/libsystem_stats.dylib
           0x1125ec000 -        0x1125edfff  libunc.dylib (28) <62682455-1862-36FE-8A04-7A6B91256438> /usr/lib/system/libunc.dylib
           0x1125f9000 -        0x1125feff7  libunwind.dylib (35.3) <78DCC358-2FC1-302E-B395-0155B47CB547> /usr/lib/system/libunwind.dylib
           0x112605000 -        0x112629fff  libxpc.dylib (300.1.17) <4554927A-9467-365C-91F1-5A116989DD7F> /usr/lib/system/libxpc.dylib
           0x112646000 -        0x112656fff  libbsm.0.dylib (33) <2CAC00A2-1352-302A-88FA-C567D4D69179> /usr/lib/libbsm.0.dylib
           0x112660000 -        0x11274afff  libsqlite3.dylib (158) <00269BF9-43BE-39E0-9C85-24585B9923C8> /usr/lib/libsqlite3.dylib
           0x112764000 -        0x112771ff7  libxar.1.dylib (202) <5572AA71-E98D-3FE1-9402-BB4A84E0E71E> /usr/lib/libxar.1.dylib
           0x11277c000 -        0x112780fff  libpam.2.dylib (20) <B93CE8F5-DAA8-30A1-B1F6-F890509513CB> /usr/lib/libpam.2.dylib
           0x112789000 -        0x112789ffd  libOpenScriptingUtil.dylib (157) <19F0E769-0989-3062-9AFB-8976E90E9759> /usr/lib/libOpenScriptingUtil.dylib
           0x11278d000 -        0x11278dff7  com.apple.LegacyHandle (2.0 - 586.16) <1D981AA9-E0EB-32C4-ADD2-73D108521A12> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/LegacyHandl e.framework/Versions/A/LegacyHandle
           0x112794000 -        0x1127a1ff0  libbz2.1.0.dylib (29) <0B98AC35-B138-349C-8063-2B987A75D24C> /usr/lib/libbz2.1.0.dylib
           0x1127a7000 -        0x1127a8fff  com.apple.snatmap (2.0 - 586.16) <EE8063BA-7288-386F-A846-5DBD905C4C40> /System/Library/PrivateFrameworks/AVConference.framework/Frameworks/snatmap.fra mework/Versions/A/snatmap
           0x1127ad000 -        0x112a97fff  com.apple.CoreServices.CarbonCore (1077.14 - 1077.14) <B00BEB34-A9F5-381F-99FD-11E405768A9A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x112b15000 -        0x112ba4fff  com.apple.Metadata (10.7.0 - 800.12.2) <A9F5D471-8732-3F95-A4A2-33864B92A181> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x112c0e000 -        0x112c85fff  com.apple.CoreServices.OSServices (600.4 - 600.4) <36B2B009-C35E-3F21-824E-E0D00E7808C7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x112d28000 -        0x112d28fff  com.apple.icdplugin.iMessage (8.0 - 4218) <20FD7408-2708-3FB5-B371-7DFAC5E405BD> /System/Library/CoreServices/SetupAssistantPlugins/iMessage.icdplugin/Contents/ MacOS/iMessage
           0x112d2d000 -        0x112d9afff  com.apple.SearchKit (1.4.0 - 1.4.0) <B9B8D510-A27E-36B0-93E9-17146D9E9045> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x112dde000 -        0x112ddffff  com.apple.identityservices.macbuddyplugin (1.0 - 1) <50EA57F5-AE4D-3923-8E5C-BB29716ACF98> /System/Library/CoreServices/SetupAssistantPlugins/IdentityServices.icdplugin/C ontents/MacOS/IdentityServices
           0x112de4000 -        0x112e3fffb  com.apple.AE (665.5 - 665.5) <BBA230F9-144C-3CAB-A77A-0621719244CD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x112e6f000 -        0x112f38fff  com.apple.LaunchServices (572.23 - 572.23) <8D955BDE-2C4C-3DD4-B4D7-2D916174FE1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x112fb1000 -        0x112fdafff  com.apple.DictionaryServices (1.2 - 208) <A539A058-BA57-35EE-AA08-D0B0E835127D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x112ffe000 -        0x113003fff  com.apple.DiskArbitration (2.6 - 2.6) <F8A47F61-83D1-3F92-B7A8-A169E0D187C0> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x113012000 -        0x113019fff  com.apple.NetFS (6.0 - 4.0) <8E26C099-CE9D-3819-91A2-64EA929C6137> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x113024000 -        0x11302ffff  libkxld.dylib (2422.1.72) <C88EF3E6-B31F-3E12-BE9B-562D912BA733> /usr/lib/system/libkxld.dylib
           0x113038000 -        0x113043ff7  com.apple.NetAuth (5.0 - 5.0) <C811E662-9EC3-3B74-808A-A75D624F326B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x11304f000 -        0x1130b3ff3  com.apple.datadetectorscore (5.0 - 354.0) <025DCBCF-B208-3515-B79F-0190C648A728> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x1130f6000 -        0x1130f9fff  com.apple.TCC (1.0 - 1) <32A075D9-47FD-3E71-95BC-BFB0D583F41C> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
           0x113101000 -        0x113118fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <3FB4D5FE-860B-3BDE-BAE2-3531D919EF10> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x11313c000 -        0x113164ffb  libxslt.1.dylib (13) <C9794936-633C-3F0C-9E71-30190B9B41C1> /usr/lib/libxslt.1.dylib
           0x113174000 -        0x113258fff  com.apple.coreui (2.1 - 231) <432DB40C-6B7E-39C8-9FB5-B95917930056> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x11331d000 -        0x11335afff  com.apple.framework.corewlankit (3.0 - 300.35) <BB6A2123-0A23-3EE1-A5A0-2F7FC0959908> /System/Library/PrivateFrameworks/CoreWLANKit.framework/Versions/A/CoreWLANKit
           0x113388000 -        0x11338bff7  com.apple.LoginUICore (3.0 - 3.0) <1ECBDA90-D6ED-3333-83EB-9C8232DFAD7C> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
           0x113396000 -        0x1133c4ff7  com.apple.securityinterface (9.0 - 55047) <0346D8A9-2CAA-38F3-A741-5FBA5E9F1E7C> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x1133f9000 -        0x1133fdfff  com.apple.CommonPanels (1.2.6 - 96) <6B434AFD-50F8-37C7-9A56-162C17E375B3> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
           0x113408000 -        0x11340bfff  com.apple.help (1.3.3 - 46) <AE763646-D07A-3F9A-ACD4-F5CBD734EE36> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
           0x113412000 -        0x1136bcffd  com.apple.HIToolbox (2.1 - 696) <1CFFF37B-C392-3088-B0A4-C08C55B2AF8F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x113815000 -        0x113827fff  com.apple.ImageCapture (9.0 - 9.0) <BE0B65DA-3031-359B-8BBA-B9803D4ADBF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
           0x113847000 -        0x1138d3ff7  com.apple.ink.framework (10.9 - 207) <8A50B893-AD03-3826-8555-A54FEAF08F47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x113906000 -        0x11391eff7  com.apple.openscripting (1.4 - 157) <B3B037D7-1019-31E6-9D17-08E699AF3701> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x113934000 -        0x113935ff7  com.apple.print.framework.Print (9.0 - 260) <EE00FAE1-DA03-3EC2-8571-562518C46994> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
           0x11393b000 -        0x11393dff7  com.apple.securityhi (9.0 - 55005) <405E2BC6-2B6F-3B6B-B48E-2FD39214F052> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x113943000 -        0x11394bff7  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <98BBB3E4-6239-3EF1-90B2-84EA0D3B8D61> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x11395c000 -        0x113a1eff1  com.apple.CoreText (352.0 - 367.15) <E5C70FC8-C861-39B8-A491-595E5B55CFC8> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
           0x113a8e000 -        0x113b93fff  com.apple.ImageIO.framework (3.3.0 - 1038) <2C058216-C6D8-3380-A7EA-92A3F04520C1> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
           0x113bff000 -        0x113c6eff1  com.apple.ApplicationServices.ATS (360 - 363.1) <88976B22-A9B8-3E7B-9AE6-0B8E09A968FC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x113c9e000 -        0x113d27fff  com.apple.ColorSync (4.9.0 - 4.9.0) <B756B908-9AD1-3F5D-83F9-7A0B068387D2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x113d72000 -        0x113db7ff6  com.apple.HIServices (1.22 - 466) <21807AF8-3BC7-32BB-AB96-7C35CB59D7F6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x113ded000 -        0x113dfcff8  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8FE131B6-1180-3892-98F5-C9C9B79072D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x113e0e000 -        0x113e5bff2  com.apple.print.framework.PrintCore (9.0 - 428) <8D8253E3-302F-3DB2-9C5C-572CB974E8B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x113e8e000 -        0x113ec7ff7  com.apple.QD (3.50 - 298) <C1F20764-DEF0-34CF-B3AB-AB5480D64E66> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x113ee5000 -        0x113eeefff  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <0AAE45F0-FC6E-36B6-A6A7-73E6950A74AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x113f03000 -        0x113f06ffc  com.apple.IOSurface (91 - 91) <07CA8A59-1E32-3FB6-B506-18DAF58A8CE0> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x113f13000 -        0x113f13fff  com.apple.Accelerate (1.9 - Accelerate 1.9) <509BB27A-AE62-366D-86D8-0B06D217CF56> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x113f1b000 -        0x1141effc7  com.apple.vImage (7.0 - 7.0) <D241DBFA-AC49-31E2-893D-EAAC31890C90> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x114234000 -        0x114234fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <F8D0CC77-98AC-3B58-9FE6-0C25421827B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x114238000 -        0x114303fff  libvDSP.dylib (423.32) <3BF732BE-DDE0-38EB-8C54-E4E3C64F77A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x114311000 -        0x1143c1ff7  libvMisc.dylib (423.32) <049C0735-1808-39B9-943F-76CB8021744F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x1143d3000 -        0x1147b4ffe  libLAPACK.dylib (1094.5) <7E7A9B8D-1638-3914-BAE0-663B69865986> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x11481c000 -        0x11498aff7  libBLAS.dylib (1094.5) <DE93A590-5FA5-32A2-A16C-5D7D7361769F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x1149ba000 -        0x114aa9fff  libFontParser.dylib (111.1) <835A8253-6AB9-3AAB-9CBF-171440DEC486> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x114b1f000 -        0x114b66fff  libFontRegistry.dylib (127) <A77A0480-AA5D-3CC8-8B68-69985CD546DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x114b92000 -        0x114bb6ff7  libJPEG.dylib (1038) <86F349A8-882D-3326-A0B0-63257F68B1A7> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x114bc4000 -        0x114c1dfff  libTIFF.dylib (1038) <5CBFE0C2-9DD8-340B-BA63-A94CE2E476F2> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x114c2f000 -        0x114c4aff7  libPng.dylib (1038) <EF781AF8-C2E6-3179-B8A1-A584783070F1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x114c59000 -        0x114c5dff7  libGIF.dylib (1038) <C29B4323-1B9E-36B9-96C2-7CEDBAA124F0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x114c66000 -        0x114d54fff  libJP2.dylib (1038) <6C8179F5-8063-3ED6-A7C2-D5603DECDF28> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x114d7f000 -        0x114d81fff  libRadiance.dylib (1038) <55F99274-5074-3C73-BAC5-AF234E71CF38> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.d ylib
           0x114d8a000 -        0x114dd1ff7  libcups.2.dylib (372) <348EED62-6C20-35D6-8EFB-E80943965100> /usr/lib/libcups.2.dylib
           0x114deb000 -        0x114e04ff7  com.apple.Kerberos (3.0 - 1) <F108AFEB-198A-3BAF-BCA5-9DFCE55EFF92> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x114e24000 -        0x114e53ff5  com.apple.GSS (4.0 - 2.0) <ED98D992-CC14-39F3-9ABC-8D7F986487CC> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x114e76000 -        0x114e92fff  libresolv.9.dylib (54) <11C2C826-F1C6-39C6-B4E8-6E0C41D4FA95> /usr/lib/libresolv.9.dylib
           0x114ea4000 -        0x114f95ff9  libiconv.2.dylib (41) <BB44B115-AC32-3877-A0ED-AEC6232A4563> /usr/lib/libiconv.2.dylib
           0x114fab000 -        0x11500fff9  com.apple.Heimdal (4.0 - 2.0) <E7D20A4D-4674-37E1-A949-635FFF7C439A> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x11503e000 -        0x11503ffff  com.apple.TrustEvaluationAgent (2.0 - 25) <334A82F4-4AE4-3719-A511-86D0B0723E2B> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x115044000 -        0x115048ff7  libheimdal-asn1.dylib (323.12) <063A01C2-E547-39D9-BB42-4CC8E64ADE70> /usr/lib/libheimdal-asn1.dylib
           0x115053000 -        0x11505cfff  com.apple.CommonAuth (4.0 - 2.0) <1D263127-5F27-3128-996D-7397660D0C6E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x11506a000 -        0x1150bbff3  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <BF4C2FE3-8BC8-30D1-8347-2A7221268794> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x1150e6000 -        0x115239ff7  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <A0B7B007-9BD8-30E2-B644-47856DA29FEE> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x1152d6000 -        0x115406ff7  com.apple.desktopservices (1.8 - 1.8) <09DC9BB8-432F-3C7A-BB08-956A2DDFC2DE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x11548b000 -        0x11549dff7  com.apple.MultitouchSupport.framework (245.13 - 245.13) <D5E7416D-45AB-3690-86C6-CC4B5FCEA2D2> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x1154ae000 -        0x1154c6ff7  com.apple.GenerationalStorage (2.0 - 160.2) <79629AC7-896F-3302-8AC1-4939020F08C3> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x1154d7000 -        0x115511ff3  com.apple.bom (12.0 - 192) <989690DB-B9CC-3DB5-89AE-B5D33EDC474E> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x115524000 -        0x115532fff  com.apple.opengl (9.0.83 - 9.0.83) <AF467644-7B1D-327A-AC47-CECFCAF61990> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x11553e000 -        0x115563ff7  com.apple.CoreVideo (1.8 - 117.2) <4674339E-26D0-35FA-9958-422832B39B12> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x115583000 -        0x115851ff4  com.apple.CoreImage (9.0.54) <74BB8685-69A9-3A45-8DED-EA26BD39D710> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x115948000 -        0x11599bfff  com.apple.ScalableUserInterface (1.0 - 1) <CF745298-7373-38D2-B3B1-727D5A569E48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x1159c4000 -        0x115a03fff  libGLU.dylib (9.0.83) <8B457205-513B-3477-AE9C-3AD979D5FE11> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x115a17000 -        0x115a1fffc  libGFXShared.dylib (9.0.83) <11A621C3-37A0-39CE-A69B-8739021BD79D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x115a2a000 -        0x115a35fff  libGL.dylib (9.0.83) <984A960A-C159-3AE5-8B40-E2B451F6C712> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x115a4e000 -        0x115a8cff7  libGLImage.dylib (9.0.83) <C08048A7-03CC-3E40-BCDC-7791D87AC8E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x115a9a000 -        0x115a9cfff  libCVMSPluginSupport.dylib (9.0.83) <E2AED858-6EEB-36C6-8C06-C3CF649A3CD5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x115aa1000 -        0x115aa4fff  libCoreVMClient.dylib (58.1) <EBC36C69-C896-3C3D-8589-3E9023E7E56F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x115ab1000 -        0x115ee4ffb  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <F42BFC9C-0B16-35EF-9A07-91B7FDAB7FC5> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
           0x116103000 -        0x116151fff  com.apple.opencl (2.3.57 - 2.3.57) <FC03A80D-543A-3448-83FF-D399C3A240D9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x11616f000 -        0x11617bff3  com.apple.AppleFSCompression (56 - 1.0) <5652B0D0-EB08-381F-B23A-6DCF96991FB5> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x116188000 -        0x1161a1ff7  com.apple.Ubiquity (1.3 - 289) <C7F1B734-CE81-334D-BE41-8B20D95A1F9B> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x1161ba000 -        0x1161c7fff  com.apple.Sharing (132.2 - 132.2) <F983394A-226D-3244-B511-FA51FDB6ADDA> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
           0x1161dd000 -        0x11620dfff  com.apple.IconServices (25 - 25.17) <4751127E-FBD5-3ED5-8510-08D4E4166EFE> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconService s
           0x11623c000 -        0x116261ff7  com.apple.ChunkingLibrary (2.0 - 155.1) <B845DC7A-D1EA-31E2-967C-D1FE0C628036> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x116272000 -        0x11629cff7  libpcap.A.dylib (42) <91D3FF51-D6FE-3C05-98C9-1182E0EC3D58> /usr/lib/libpcap.A.dylib
           0x1162b0000 -        0x116316fff  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <5491896D-78C5-30B6-96E9-D8DDECF3BE73> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
           0x11637a000 -        0x116383fff  com.apple.CaptiveNetworkSupport (13.0 - 1) <096FA05D-1113-3263-B060-FFF4C8AEE8CE> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/Versions/A/CaptiveNe twork
           0x116391000 -        0x1163bbff0  com.apple.SystemConfiguration.EAP8021X (13.0.0 - 13.0) <DC09B518-9F82-38DD-B37D-4A3279E3230D> /System/Library/PrivateFrameworks/EAP8021X.framework/Versions/A/EAP8021X
           0x1163d4000 -        0x11640cff7  com.apple.RemoteViewServices (2.0 - 94) <3F34D630-3DDB-3411-BC28-A56A9B55EBDA> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x11644b000 -        0x11644bffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <6E89F3CB-CC41-3728-9F9A-FDFC151E8261> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x116454000 -        0x11669cfff  com.apple.CoreData (107 - 481) <E5AFBA07-F73E-3B3F-9099-F51224EE8EAD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x1167c9000 -        0x11680afff  com.apple.PerformanceAnalysis (1.47 - 47) <784ED7B8-FAE4-36CE-8C76-B7D300316C9F> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x117060000 -        0x117123ff7  com.apple.backup.framework (1.5.1 - 1.5.1) <FC4E949B-B41A-3F21-8AF8-AEDB13146FEA> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x1171aa000 -        0x11722afff  com.apple.CoreSymbolication (3.0 - 141) <B018335C-698B-3F87-AF1C-6115C4FA8954> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x11724b000 -        0x1172a3ff7  com.apple.Symbolication (1.4 - 129) <16D42516-7B5E-357C-898A-FAA9EE7642B3> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x1172f0000 -        0x11731ffff  com.apple.DebugSymbols (106 - 106) <E1BDED08-523A-36F4-B2DA-9D5C712F0AC7> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x117340000 -        0x11735eff7  com.apple.CalendarFoundation (7.0 - 111) <D5CEE7AE-3325-3E7E-924B-12834AE7D218> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
           0x117388000 -        0x117543ff6  com.apple.GeoServices (1.0 - 702.14.9) <A3A4D6AC-72B2-39F3-AAE0

    Hey everyone in Apple world!
    I figured out how to fix the flashing yellow screen problem that I've been having on my MBP!  Yessssss!!!
    I found this super handy website with the golden answer: http://support.apple.com/kb/HT1379
    I followed the instructions on this page and here's what I did:
    Resetting NVRAM / PRAM
    Shut down your Mac.
    Locate the following keys on the keyboard: Command (⌘), Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.
    I went through the 6 steps above twice, just to make sure I got rid of whatever stuff was holding up my bootup process.  Since I did that, my MBP boots up just like normal.  No flashing yellow screen anymore!!   
    (Note that I arrived at this solution when I first saw this page: http://support.apple.com/kb/TS2570?viewlocale=en_US)
    Let me know if this works for you!
    Elaine

  • Why does my keychain keep asking for my password every time I access the same web site?

    The ClamXav scan found 4 virus/trojan problems and quarantined them. Before I did thid, my keychain keeps popping up asking me if I want to save my password everytime I visit the same web site(s). Is there an issue with this? And how to I fix it?

    What were the infection names associated with those four files and where we're they found. That information is in your Scan Log if you didn't record them yourself. Search for the word "FOUND" in upper case.
    The keychain activity sounds normal as long as your browser preferences are set to save that information for AutoFill the next time you visit the site.

Maybe you are looking for