Dynamic Text Edit and Groups

Hi Experts ,
I want to create dynamic text edits and groups.
Thank You.

Hi Radhika,
Sorry was busy with some other tasks. Just go through this sample code snippet which does the following.
1) It dynamically creates a context node named CHILD and then creates 4 attributes ATTR1, ATTR2,..
2) Creates a GROUP UI element with a caption attached to it
3) Create 4 textEdit UI elements bound to the 4 context attributes created earlier and embed them within the group
Regards,
Uday
METHOD wddomodifyview.
  DATA: lr_container TYPE REF TO cl_wd_uielement_container,
        lr_group TYPE REF TO cl_wd_group,
        lr_caption_group TYPE REF TO cl_wd_caption,
        lr_textedit TYPE REF TO cl_wd_text_edit,
        lr_node_info TYPE REF TO if_wd_context_node_info,
        lr_node TYPE REF TO if_wd_context_node,
        lr_element TYPE REF TO if_wd_context_element,
        lr_attribute_info TYPE wdr_context_attribute_info,
        content TYPE string,
        attribute_name TYPE string,
     lv_textview_id TYPE string.
  CHECK first_time = abap_true.
  lr_node_info = wd_context->get_node_info( ).
  CALL METHOD lr_node_info->add_new_child_node
    EXPORTING
      name                         = 'CHILD'
      is_mandatory                 = abap_false
      is_multiple                  = abap_true
      is_multiple_selection        = abap_true
      is_singleton                 = abap_false
      is_initialize_lead_selection = abap_true
      is_static                    = abap_false
    RECEIVING
      child_node_info              = lr_node_info.
  lr_container ?= view->get_root_element( ).
  cl_wd_matrix_layout=>new_matrix_layout( container = lr_container ).
  lr_group = cl_wd_group=>new_group( id = 'GROUP' ).
  lr_group->set_width( value = '50%' ).
  cl_wd_matrix_layout=>new_matrix_layout( container = lr_group ).
  cl_wd_matrix_head_data=>new_matrix_head_data( element = lr_group ).
  lr_caption_group = cl_wd_caption=>new_caption( text = 'Group Header' ).
  lr_group->set_header( the_header = lr_caption_group ).
  DO 4 TIMES.
    MOVE sy-index TO attribute_name.
** Preparing the data to be displayed in the textEdit i.e, data for context attribute
    CONCATENATE 'This'
                'is the'
                'data for textEdit number: '
                 attribute_name  INTO content SEPARATED BY cl_abap_char_utilities=>newline.
    CONCATENATE 'ATTR'
                attribute_name INTO attribute_name.
** Condense the ID to ensure that the format is consistent with SAP standard
    CONDENSE attribute_name NO-GAPS.
** Prepare properties of attribute & add to context node CHILD
    lr_attribute_info-name = attribute_name.
    lr_attribute_info-type_name = 'STRING'.
    lr_attribute_info-value_help_mode = '0'.
    lr_node_info->add_attribute( EXPORTING attribute_info = lr_attribute_info ).
    lr_node = wd_context->get_child_node( name = 'CHILD' ).
    lr_element = lr_node->create_element( ).
    lr_element->set_attribute( name  = attribute_name
                               value = content ).
    lr_node->bind_element( new_item             = lr_element
                           set_initial_elements = abap_false ).
** Compute the attribute path dynamically i.e, like CHILD.ATTR1
    CONCATENATE 'CHILD.'
                attribute_name INTO attribute_name.
    CONDENSE attribute_name NO-GAPS.
    lr_textedit = cl_wd_text_edit=>new_text_edit( cols  = 10
                                                  rows  = 5
                                                  width = '90%'
                                                  bind_value = attribute_name ).
    cl_wd_matrix_head_data=>new_matrix_head_data( element = lr_textedit ).
    lr_group->add_child( the_child = lr_textedit ).
  ENDDO.
lr_container->add_child( the_child = lr_group ).
ENDMETHOD.

Similar Messages

  • I am working in text edit and cannot open my file. Error message says it is in the wrong format, truncated or corrupted. what to do?

    I am working in text edit and cannot open my file. Error message says it is in the wrong format, truncated or corrupted. what to do?

    Try opening Disk Utility in your Applications-Utilities folder and repair permissions.

  • When i try download a file from the internet it looks like its downloading then when i go to open this file it opens up in the app text edit and says it cannot open i DOS mode? Can anyne help?

    when i try to download a file from the internet it starts to download but when its finished it opens up in the app "text edit" and it says this file cannot open in DOS mode.
    Can anyone help?

    It sounds like perhaps the file doesn't have an extension that the system recognizes. Is this all files, or just one specific one, and if so, which? What is the name (and extension, if it has one) of the downloaded file? What kind of file do you *expect* it to be? (PDF, or whatever). Renaming a file with the appropriate extension can often fix that kind of problem.
    Matt

  • I started to learn HTML, and I'm using text edit and everything is going fine, when I save the file with a .html extension and open it with safari I only view the code and not the webpage that was supposed to be created.

    I started to learn HTML, and I'm using text edit and everything is going fine, when I save the file with a .html extension and open it with safari I only view the code and not the webpage that was supposed to be created.

    That is because you don't have a web server configured and running to serve the html page. In order to see the page in a browser you need to access it using a url similar to http://localhost/~yourUserName if you are serving the page from your user account.
    Prior to Mountain Lion you could go into web sharing and turn on the web server. With Mountain Lion there is no option, other than using terminal, to turn on the web server. The web sharing menu item has been removed in Mountain Lion. Apache is still on your computer but it will take a little searching these forums or the Internet to find how to turn it on.
    If you want a graphic user interface to turn on/off the Apache server you could download and install a server application like xampp, http://www.apachefriends.org/en/xampp.html. I use this and it works well.

  • Dynamic radio button and group

    Hi, we have create dynamic radio button and group on “application creation complete” event , but which I am try to get number of radio button its show zero, see below code
    import flash.utils.setTimeout;
    import mx.controls.Alert;
    import mx.events.FlexEvent;
    import spark.components.RadioButton;
    import spark.components.RadioButtonGroup;
    private var  rbg:RadioButtonGroup;
    private var  rb1:RadioButton;
    private var  rb2:RadioButton;
    private var dcount:int = 0;
    protected function application1_creationCompleteHandler(event:FlexEvent):void
         // TODO Auto-generated method stub
         // TODO Auto-generated method stub
         rb1 = new RadioButton();
         rb2 = new RadioButton();
         rbg = new RadioButtonGroup();
         rb1.label = "Radio1";
         rb2.label = "Radio2";
         rb1.group = rbg;
         rb2.group = rbg;
         vbox1.addChild(rb1);
         vbox1.addChild(rb2);
         checkRadioButton (); 
    protected function checkRadioButton ():void
         Alert.show("In checkRadioButton function : " +  rb1.group.numRadioButtons.toString());
    If I put some Time interval to call  checkRadioButton function its working fine,
    //checkRadioButton (); 
    setTimeout(checkRadioButton,1000);
    but this is not best practice.
    why this happen ….can anybody  clear  this or any other way to do this.
    Thanks in advance

    @manjeet.patel,
    Just write the below line of code
    vbox1.validateNow();
    You need not use setTimeout() function
    vbox1.addChild(rb1);
    vbox1.addChild(rb2);
    vbox1.validateNow();
    Thanks,
    Bhasker

  • Why won't Text Edit and Preview open in Lion?

    I have installed Lion over Snow Leopard on my MacPro Dual Core Intel Xeon AND also mad a clean installation on an external hard drive.
    In neither case will Text Edit or Preview open.
    When I first log into Lion as the various application open on the desktop I notice that a couple of Text Edit files on the desktop mount a coloured icon. After everything is done the icons revert to a grey and white one with a grey "RTF" in place of the picture.
    I found the same problem with pages (1Work 9.0) but then I found and upgrade in the Lion recovery pages on the Apple website. Unfortunately there is nothing similar for Text Edit or Preview.
    Otherwise everything else seems to work.

    I just found the solution on our problen on another post entitled:
    After upgraded to LION, Preview.app and Textedit.app keep crash
    The problem only occurred on one account on my machine.  For that account the ownership on the "Library" folder at the root level of that account was wrong.  I set it to the credentials of that user (me) and now both Preview and TextEdit open and work without crashing.  This is a hidden folder when in the Finder, but I use the Terminal application a lot, and from there I did a chown to change the owner and group of the Library folder.  An additional problem is that you need to have root access to make the change.
    The discussion I refer to above gives the procedure to use when in the Finder, so if you're not familiar with using the Terminal window, that is probably the best solution.  In that discussion, see the post from Silvertoe on Jul 21, 2011 10:08 PM.
    Good luck.

  • How can I show only text edits and not text formatting when using print comments summary?

    Acrobat 9.3.0 for Mac.
    Here is the scenario: I used the Compare command to see the changes between 2 PDFs. The resulting file some edits are inserts and some are deletions. I want to print a comments summary only showing the text edits. In the Compare Option pane, I select Text and deselect Images, Annotations, Formatting, Headers/Footers, and Backgrounds. Now on the screen I see inserts are highlighted in blue and deletions are marked with sort of a caret and vertical bar symbol. So all looks good at this point. However, when I show the Comments List, I see addtional comments that indicate "Replace - The following text attributes were changed: fill color." Those comments do not appear in the page view unless I check the Formatting check box to show them. With Formatting unchecked, I print a comments summary and all of the "Replace - Fill Color" comments" appear on the resulting comments summary.
    I only want to show text edits, not text formatting changes. So questions are:
    1. Why, when the Formatting checkbox is unchecked, do the text formatting comments still appear in the comments list when they do not appear on the page display.
    2. How can I print only the text content edits and not show the text formatting changes when using Print Comments Summary.

    Hi,
    You can set ExecuteWithParams as default activity in the task flow then method activity to return total no of rows passing to Router activity if your method has value 0 then call Create insert operation else do directly to page.
    Following idea could be your task flow
    Execute With param (default) > SetCurrentRowWithKey > GetTotalNoOfRows (VOImpl Method)
    |
    v
    Router
    1. If pageFlowScope outcome is 0 then call CreateInsert > MyPage
    2. if pageFlowScope outcome > 0 then MyPage
    hope it helps,
    Zeeshan

  • Have a problem on my IMac that a screen has come up titled text edit  and can not get rid of it using OSX I believe  10.7.5

    Can not exit text edit screen when i click on the apple does not give me the option of shuting down or restart just can't get rid of it. have no clue what brought this screen up never seen it before.

    If it is the application, Text Edit is a basic word processing app which is in your Applications folder. In order to force quit, you need to hold down three keys at the same time (there is no drop down/force quit):
    Command + Option + esc (at the top left of your keyboard). That will bring up this window:
    If an application is not responding, it may show "not responding" next to its name (or sometimes not). In any case, hit the Force Quit button and it should quit. If that does not work, shut down your Mac and boot it up again.

  • Mail, Text Edit and Preview crash when trying to print in Mountain Lion

    Hi There
    I am having trouble printing in Mail, Text Edit & Preview.
    I have just upgraded to Mountain Lion and everytime I try to print the programs quit!
    I can print fine from other programs such and Photoshop and Acrobat.
    Anybody have any ideas?
    Hope you can help
    Cheers

    Process:         Mail [1662]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         6.0 (1485)
    Build Info:      Mail-1485000000000000~3
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [130]
    User ID:         501
    PlugIn Path:       /Library/Printers/Canon/PS3/PDEs/EF221714 (FF).plugin/Contents/MacOS/EF221714 (FF)
    PlugIn Identifier: com.efi.print.pde.FB3236F9-9C6E-4B3F-B9D7-0501D8E938A3.PInf
    PlugIn Version:    3.1.025.0 (3.1.025.0)
    Date/Time:       2012-08-08 08:43:45.193 +0100
    OS Version:      Mac OS X 10.8 (12A269)
    Report Version:  10
    Interval Since Last Report:          117879 sec
    Crashes Since Last Report:           166
    Per-App Interval Since Last Report:  117773 sec
    Per-App Crashes Since Last Report:   4
    Anonymous UUID:                      A56957A4-E8CE-45CB-B98D-83BB331E81F5
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0xffffffffffffffff
    VM Regions Near 0xffffffffffffffff:
    --> shared memory          00007ffffff14000-00007ffffff15000 [    4K] r-x/r-x SM=SHM 
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_c.dylib                       0x00007fff8b72ac60 bzero$VARIANT$sse2 + 96
    1   com.efi.print.pde.FB3236F9-9C6E-4B3F-B9D7-0501D8E938A3.PInf          0x000000011589512c UI_Panel::UI_Panel(PDEData*) + 332
    2   com.efi.print.pde.FB3236F9-9C6E-4B3F-B9D7-0501D8E938A3.PInf          0x0000000115891680 -[FieryFeaturesPDEFB3236F99C6E4B3FB9D70501D8E938A3 initWithCallback:] + 944
    3   com.efi.print.pde.FB3236F9-9C6E-4B3F-B9D7-0501D8E938A3.PInf          0x00000001158905a9 -[FieryFeaturesPDEPlugInFB3236F99C6E4B3FB9D70501D8E938A3 PDEPanelsForType:withHostInfo:] + 115
    4   com.apple.print.framework.Print.Private          0x00000001106eb90f 0x1106e4000 + 30991
    5   com.apple.print.framework.Print.Private          0x00000001106eacd7 0x1106e4000 + 27863
    6   com.apple.print.framework.Print.Private          0x00000001106e9366 0x1106e4000 + 21350
    7   com.apple.print.framework.Print.Private          0x00000001106e77bc 0x1106e4000 + 14268
    8   com.apple.print.framework.Print.Private          0x00000001106fa163 0x1106e4000 + 90467
    9   com.apple.print.framework.Print.Private          0x00000001106f99b6 0x1106e4000 + 88502
    10  com.apple.AppKit                        0x00007fff8a9c0832 -[NSWindowController _windowDidLoad] + 448
    11  com.apple.AppKit                        0x00007fff8a991b8a -[NSWindowController window] + 114
    12  com.apple.AppKit                        0x00007fff8acda4ef -[NSPrintPanel beginSheetWithPrintInfo:modalForWindow:delegate:didEndSelector:contextInfo:] + 596
    13  com.apple.AppKit                        0x00007fff8acd8524 -[NSConcretePrintOperation runOperationModalForWindow:delegate:didRunSelector:contextInfo:] + 473
    14  com.apple.mail                          0x000000010a753995 0x10a566000 + 2021781
    15  com.apple.CoreFoundation                0x00007fff91c22b8a _CFXNotificationPost + 2554
    16  com.apple.Foundation                    0x00007fff89feea76 -[NSNotificationCenter postNotificationName:object:userInfo:] + 64
    17  com.apple.mail                          0x000000010a5687d5 0x10a566000 + 10197
    18  com.apple.Foundation                    0x00007fff8a0388a7 __NSThreadPerformPerform + 225
    19  com.apple.CoreFoundation                0x00007fff91bef841 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    20  com.apple.CoreFoundation                0x00007fff91bef165 __CFRunLoopDoSources0 + 245
    21  com.apple.CoreFoundation                0x00007fff91c124e5 __CFRunLoopRun + 789
    22  com.apple.CoreFoundation                0x00007fff91c11dd2 CFRunLoopRunSpecific + 290
    23  com.apple.HIToolbox                     0x00007fff9123d774 RunCurrentEventLoopInMode + 209
    24  com.apple.HIToolbox                     0x00007fff9123d454 ReceiveNextEventCommon + 166
    25  com.apple.HIToolbox                     0x00007fff9123d3a3 BlockUntilNextEventMatchingListInMode + 62
    26  com.apple.AppKit                        0x00007fff8a86cfa3 _DPSNextEvent + 685
    27  com.apple.AppKit                        0x00007fff8a86c862 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 128
    28  com.apple.AppKit                        0x00007fff8a863c03 -[NSApplication run] + 517
    29  com.apple.AppKit                        0x00007fff8a808656 NSApplicationMain + 869
    30  libdyld.dylib                           0x00007fff88c057e1 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff88bf9d16 kevent + 10
    1   libdispatch.dylib                       0x00007fff8ce5ae26 _dispatch_mgr_invoke + 883
    2   libdispatch.dylib                       0x00007fff8ce5aa2a _dispatch_mgr_thread + 54
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x00007fff88bf7686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88bf6c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff91c0cf23 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff91c12606 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff91c11dd2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff89fdd7d6 +[NSURLConnection(Loader) _resourceLoadLoop:] + 356
    6   com.apple.Foundation                    0x00007fff8a03b842 __NSThread__main__ + 1345
    7   libsystem_c.dylib                       0x00007fff8b73d782 _pthread_start + 327
    8   libsystem_c.dylib                       0x00007fff8b72a1c1 thread_start + 13
    Thread 3:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x00007fff88bf90fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8b741fc9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff92cfcd66 ***::ThreadCondition::timedWait(***::Mutex&, double) + 118
    3   com.apple.JavaScriptCore                0x00007fff92f1e43a JSC::BlockAllocator::blockFreeingThreadMain() + 90
    4   com.apple.JavaScriptCore                0x00007fff92f33a9f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff8b73d782 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8b72a1c1 thread_start + 13
    Thread 4:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x00007fff88bf90fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8b741fc9 _pthread_cond_wait + 869
    2   com.apple.JavaScriptCore                0x00007fff92e810f4 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 212
    3   com.apple.JavaScriptCore                0x00007fff92e80fd6 JSC::MarkStackThreadSharedData::markingThreadMain() + 214
    4   com.apple.JavaScriptCore                0x00007fff92f33a9f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_c.dylib                       0x00007fff8b73d782 _pthread_start + 327
    6   libsystem_c.dylib                       0x00007fff8b72a1c1 thread_start + 13
    Thread 5:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib                  0x00007fff88bf7686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88bf6c42 mach_msg + 70
    2   com.apple.QuartzCore                    0x00007fff8bdee35b CA::Render::Server::server_thread(void*) + 403
    3   com.apple.QuartzCore                    0x00007fff8be72e76 thread_fun + 25
    4   libsystem_c.dylib                       0x00007fff8b73d782 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8b72a1c1 thread_start + 13
    Thread 6:
    0   libsystem_kernel.dylib                  0x00007fff88bf7686 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x00007fff88bf6c42 mach_msg + 70
    2   com.apple.CoreFoundation                0x00007fff91c0cf23 __CFRunLoopServiceMachPort + 195
    3   com.apple.CoreFoundation                0x00007fff91c12606 __CFRunLoopRun + 1078
    4   com.apple.CoreFoundation                0x00007fff91c11dd2 CFRunLoopRunSpecific + 290
    5   com.apple.Foundation                    0x00007fff8a040ace -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 268
    6   com.apple.Foundation                    0x00007fff89fd93da -[NSRunLoop(NSRunLoop) run] + 74
    7   com.apple.CoreMessage                   0x00007fff93b944f7 +[_NSSocket _runIOThread] + 77
    8   com.apple.Foundation                    0x00007fff8a03b842 __NSThread__main__ + 1345
    9   libsystem_c.dylib                       0x00007fff8b73d782 _pthread_start + 327
    10  libsystem_c.dylib                       0x00007fff8b72a1c1 thread_start + 13
    Thread 7:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x00007fff88bf9322 __select + 10
    1   com.apple.CoreFoundation                0x00007fff91c51bf6 __CFSocketManager + 1302
    2   libsystem_c.dylib                       0x00007fff8b73d782 _pthread_start + 327
    3   libsystem_c.dylib                       0x00007fff8b72a1c1 thread_start + 13
    Thread 8:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x00007fff88bf90fa __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x00007fff8b741fc9 _pthread_cond_wait + 869
    2   com.apple.CoreVideo                     0x00007fff9295a2d4 CVDisplayLink::runIOThread() + 680
    3   com.apple.CoreVideo                     0x00007fff9295a013 startIOThread(void*) + 148
    4   libsystem_c.dylib                       0x00007fff8b73d782 _pthread_start + 327
    5   libsystem_c.dylib                       0x00007fff8b72a1c1 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib                  0x00007fff88bf96d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8b73ff2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8b73fcf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8b72a1b1 start_wqthread + 13
    Thread 10:
    0   libsystem_kernel.dylib                  0x00007fff88bf96d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8b73ff2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8b73fcf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8b72a1b1 start_wqthread + 13
    Thread 11:
    0   libsystem_kernel.dylib                  0x00007fff88bf96d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8b73ff2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8b73fcf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8b72a1b1 start_wqthread + 13
    Thread 12:
    0   libsystem_kernel.dylib                  0x00007fff88bf96d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8b73ff2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8b73fcf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8b72a1b1 start_wqthread + 13
    Thread 13:
    0   libsystem_kernel.dylib                  0x00007fff88bf96d6 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8b73ff2c _pthread_workq_return + 25
    2   libsystem_c.dylib                       0x00007fff8b73fcf3 _pthread_wqthread + 412
    3   libsystem_c.dylib                       0x00007fff8b72a1b1 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x00007fff55697078  rcx: 0x0000000000000001  rdx: 0x00000000000263ea
      rdi: 0xffffffffffffffff  rsi: 0x00000000000263e9  rbp: 0x00007fff55696f60  rsp: 0x00007fff55696f60
       r8: 0x00007fcc67dcea40   r9: 0x000000003ca0c444  r10: 0x00007fff88bfa2f2  r11: 0xffffffffffffffff
      r12: 0x00007fcc67db04b0  r13: 0x0000000115907f18  r14: 0x00007fcc645b9600  r15: 0x00007fcc67d31b30
      rip: 0x00007fff8b72ac60  rfl: 0x0000000000010202  cr2: 0xffffffffffffffff
    Logical CPU: 0
    Binary Images:
           0x10a566000 -        0x10a902ff7  com.apple.mail (6.0 - 1485) <6C62E4AC-EBA9-3E31-B677-B26356423DE1> /Applications/Mail.app/Contents/MacOS/Mail
           0x10aceb000 -        0x10acf0fff  com.apple.audio.AppleHDAHALPlugIn (2.3.0 - 2.3.0f2) <8F89523B-ACB8-35C5-8F28-8B1E4FB044DE> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x10bfef000 -        0x10bff4ff7  libFontRegistryUI.dylib (100) <9F172961-DB6F-3A82-9F90-28F9A233F755> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
           0x10ca5c000 -        0x10ca6aff7  libGPUSupport.dylib (8.5) <EBBD76FB-1C64-350C-9568-DB4C4C99602D> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
           0x10cab7000 -        0x10cab9fff  apop.so (169) <2A1CAD32-5734-3D4E-868B-E773DCD192B5> /usr/lib/sasl2/apop.so
           0x10cabd000 -        0x10cad1fff  dhx.so (169) <3C4D7E51-F30B-3A5B-9BB6-4426EC607E10> /usr/lib/sasl2/dhx.so
           0x10cadd000 -        0x10cae6ff7  digestmd5WebDAV.so (169) <D1EF0A0E-92FA-321F-9445-DD08A64C2493> /usr/lib/sasl2/digestmd5WebDAV.so
           0x10caeb000 -        0x10caedfff  libanonymous.2.so (166) <6417EA9E-4202-31DA-A086-B58F1E92C931> /usr/lib/sasl2/libanonymous.2.so
           0x10caf2000 -        0x10caf5fff  libcrammd5.2.so (166) <866C8DD4-5086-376A-BFC7-897A40327DB4> /usr/lib/sasl2/libcrammd5.2.so
           0x10cafa000 -        0x10cb03ff7  libdigestmd5.2.so (166) <F2344A08-F032-35D3-9EBB-F147D4100517> /usr/lib/sasl2/libdigestmd5.2.so
           0x10cb08000 -        0x10cb0dfff  libgssapiv2.2.so (166) <83A21AF3-FB42-3ACC-B6ED-26B23388C4F4> /usr/lib/sasl2/libgssapiv2.2.so
           0x10cb12000 -        0x10cb14fff  login.so (166) <1F868238-FB26-3477-B31C-67DB400D6F68> /usr/lib/sasl2/login.so
           0x10e4b9000 -        0x10e4befff  libntlm.so (166) <82608FB8-E225-39FF-BC83-B9D3F89D7CEC> /usr/lib/sasl2/libntlm.so
           0x10e4c3000 -        0x10e4cafff  libotp.2.so (166) <2AE53E63-A826-3E20-9B4D-476CC712410D> /usr/lib/sasl2/libotp.2.so
           0x10e4d3000 -        0x10e4d4ff7  ATSHI.dylib (341) <07D6CB80-F51F-3BF8-985D-1ADED2B603AF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x10e563000 -        0x10e565fff  libplain.2.so (166) <074D7604-3435-3E01-A86B-FF102001FC5B> /usr/lib/sasl2/libplain.2.so
           0x10e569000 -        0x10e56dfff  libpps.so (169) <3C150ECF-0D94-3DBE-8AB6-7B0070700699> /usr/lib/sasl2/libpps.so
           0x10e572000 -        0x10e575fff  mschapv2.so (169) <9DAC741E-6BB8-3DFA-85AD-532EB20E780B> /usr/lib/sasl2/mschapv2.so
           0x10e57a000 -        0x10e5a7fff  com.apple.DirectoryService.PasswordServerFramework (10.8 - 27) <4D67D74D-9200-3838-87D6-5E1968C81019> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x10e5bd000 -        0x10e5bffff  pwauxprop.so (387) <02EC8AD8-70F5-3512-8026-B41832050634> /usr/lib/sasl2/pwauxprop.so
           0x10e5c4000 -        0x10e5c7fff  shadow_auxprop.so (169) <FE9BCBA3-7F30-303B-A815-8FADE514246E> /usr/lib/sasl2/shadow_auxprop.so
           0x10e5cc000 -        0x10e5cefff  smb_nt.so (169) <F6798ECD-BBC9-3055-96E9-3A9836E36E7A> /usr/lib/sasl2/smb_nt.so
           0x10e5d3000 -        0x10e5d6fff  smb_ntlmv2.so (169) <FB9D0145-0F31-3FA1-A6B4-5F8530CC60CA> /usr/lib/sasl2/smb_ntlmv2.so
           0x10e60d000 -        0x10e60efff  com.apple.AddressBook.LocalSourceBundle (2.0 - 1143) <54176F4B-18DE-3E75-A318-9565CC19D45F> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x10e620000 -        0x10e623fff  com.apple.DirectoryServicesSource (2.0 - 1143) <62C48641-2464-36DE-87AC-E249F1E93B8A> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x10e62b000 -        0x10e667fff  com.apple.ExchangeSource (2.0 - 1143) <76894DDA-108C-31E1-9D0E-130EA9884266> /System/Library/Address Book Plug-Ins/Exchange.sourcebundle/Contents/MacOS/Exchange
           0x10e71c000 -        0x10e724fff  com.apple.SyncedDefaults (1.2 - 43.27) <BE895936-D6C0-3CC0-BDE4-FEDA10B9EABD> /System/Library/PrivateFrameworks/SyncedDefaults.framework/SyncedDefaults
           0x10eb15000 -        0x10eb31ff7  libJapaneseConverter.dylib (61) <D0F762C2-5372-3AA2-BBA4-066B8E4B1F8E> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
           0x10ec71000 -        0x10edc5fff  com.apple.audio.units.Components (1.8 - 1.8) <5F6DD756-1CBF-30BB-A6CD-E3748C8EF7C7> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
           0x10ef32000 -        0x10ef34ff7  com.apple.textencoding.unicode (2.5 - 2.5) <0518078E-C652-3CFC-A3FB-903C600CE831> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
           0x10f498000 -        0x10f49bff7  libCoreFSCache.dylib (24.4) <C375CAA0-F91F-3D9F-AF90-DB951BD86983> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x10f4ad000 -        0x10f4b6fef  libcldcpuengine.dylib (2.1.16) <BA5F6C17-7A08-3DCF-A30E-E9C4D76B7356> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x10f4c0000 -        0x10f4c1ff3 +cl_kernels (???) <BE2A6576-6BFE-4290-AFBA-24430F42F4A8> cl_kernels
           0x10f4ca000 -        0x10f4caff3 +cl_kernels (???) <E4F99879-F39A-478D-9B0B-9B90B99B4365> cl_kernels
           0x10f94c000 -        0x10f94cff1 +cl_kernels (???) <45352E1D-A85E-4D9C-AD14-7694D5A15677> cl_kernels
           0x10f94e000 -        0x10f9e9ff7  unorm8_bgra.dylib (2.1.16) <14128E4A-6050-35C3-A493-3C8AEAF9B14D> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
           0x10fa69000 -        0x10fa6aff2 +cl_kernels (???) <00209726-08CA-42B0-B2CF-9067D7B5295D> cl_kernels
           0x10fa6c000 -        0x10fb02ff7  unorm8_rgba.dylib (2.1.16) <AC3AFE82-7E82-340B-9E7A-9A27C29816DA> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
           0x10fc26000 -        0x10fc27ff3 +cl_kernels (???) <4F75A079-C2D6-4958-A7CE-720FC66F0525> cl_kernels
           0x10fd8a000 -        0x10fd93fff  com.apple.exchange.iaplugin (2.0 - 200) <B62C1EF7-F00A-37F6-9B25-C315A470C7B5> /System/Library/InternetAccounts/Exchange.iaplugin/Contents/MacOS/Exchange
           0x10fd9f000 -        0x10fdcefff  com.apple.datadetectors.actions (4.0 - 199.0) <98CB57AE-5066-3291-A236-5395F236C5D7> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/Resources/ Actions.datadetectors/Contents/MacOS/Actions
           0x1100c8000 -        0x1100c9fff  com.apple.heimdalodpac (10.8 - 198) <AE9D93D6-C970-368B-A89C-2DA0EB225204> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/heimdalodpac.bundle/Co ntents/MacOS/heimdalodpac
           0x1100ce000 -        0x1100d0fff  com.apple.KerberosHelper.LKDCLocate (4.0 - 1.0) <6276FDFA-EB44-374C-9BFC-2AB5F68F2145> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/LKDCLocate.bundle/Cont ents/MacOS/LKDCLocate
           0x1100d4000 -        0x1100d5ff7  com.apple.kerberos.reachability (3.0 - 2.0) <8DC5EA50-F572-31C7-9443-5F6C9363A58D> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/Reachability.bundle/Co ntents/MacOS/Reachability
           0x1100d9000 -        0x1100daff7  com.apple.kerberos.sckerberosconfig (3.0 - 1) <6981ADC2-C901-3F8A-A3D0-7334DE61BF3E> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/SCKerberosConfig.bundl e/Contents/MacOS/SCKerberosConfig
           0x1102b2000 -        0x1102d1fff  com.apple.qldisplay.Web (4.0 - 555.0) <A634AF45-C1B9-319A-A191-E2CAF8CA6689> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/PlugIns/Web.qldisplay/Contents/MacOS/Web
           0x11068e000 -        0x1106c0fff  com.apple.printingprivate.framework.PrintingPrivate (8.0 - 91) <13C0318A-BFDA-3895-B66D-1DBB66B37A14> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/A/Printing Private
           0x1106e4000 -        0x11071bfff  com.apple.print.framework.Print.Private (8.0 - 409) <71FEC4CA-3ED4-3FC4-8637-91AE47E6D2C4> /System/Library/PrivateFrameworks/PrintingPrivate.framework/Versions/Current/Pl ugins/PrintCocoaUI.bundle/Contents/MacOS/PrintCocoaUI
           0x11083f000 -        0x110842fff  com.apple.normalizer.privateframework (8.0 - 10.6) <796CC6CE-6E46-3AAF-8F6B-8133D5DD050B> /System/Library/PrivateFrameworks/PSNormalizer.framework/Versions/A/PSNormalize r
           0x110848000 -        0x1108bcfff  libAGM.dylib (10.12) <9DBBCC5B-C247-31E8-B750-0578E57CE676> /System/Library/PrivateFrameworks/PSNormalizer.framework/Versions/A/Libraries/l ibAGM.dylib
           0x1108c5000 -        0x1108faff7  libICC.dylib (10.12) <46E20649-785F-332C-AF6C-0D34BFAA7AF4> /System/Library/PrivateFrameworks/PSNormalizer.framework/Versions/A/Libraries/l ibICC.dylib
           0x110adc000 -        0x110b09fff  GLRendererFloat (8.5) <5486E8B9-3EF6-3C15-9CCB-28317B3BFA97> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x1119fa000 -        0x111bb1fff  GLEngine (8.5) <AB9EB15E-11BB-34BF-B89E-02BC01916ABE> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x112b32000 -        0x112b44fff  com.apple.mail.WebPlugIn (6.0 - 1485) <BD7F0CFC-F8F0-38BE-9F23-EB30C09990A8> /Applications/Mail.app/Contents/PlugIns/MailWebPlugIn.webplugin/Contents/MacOS/ MailWebPlugIn
           0x112cdc000 -        0x112ce1ff7  libgermantok.dylib (7) <B98522FA-23D1-351E-9F25-5AAF58FD862D> /usr/lib/libgermantok.dylib
           0x112cf6000 -        0x112e0fff7  libmecab.1.0.0.dylib (359.4) <2B98ADC1-8E04-3888-BB33-837B252BC0F7> /usr/lib/libmecab.1.0.0.dylib
           0x112f49000 -        0x1130fdfff  libCMaps.A.dylib (322) <71E9A348-BBDF-36C3-8A41-5F513E1E570A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCMaps.A.dylib
           0x114719000 -        0x11472bff7  com.apple.syncservices.syncservicesui (7.0 - 713) <188BC0FA-C4F7-3F96-BACF-61CDFDDABE9C> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
           0x1149d5000 -        0x1149f2ff7  com.apple.Mail.Syncer (6.0 - 1485) <76A63422-FD13-3794-A3DE-712A4B6EC35E> /System/Library/Frameworks/Message.framework/Versions/B/Resources/Syncer.syncsc hema/Contents/MacOS/Syncer
           0x114a19000 -        0x114b5afff  libGLProgrammability.dylib (8.5) <2FFA7003-CB27-3A04-A4DC-8178545CF74B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x114b8e000 -        0x114e26fe7  com.apple.ATIRadeonX2000GLDriver (8.0.51 - 8.0.0) <3B95DFA9-D96F-3313-8D06-862DA197117A> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
           0x11588e000 -        0x1158fbfef +com.efi.print.pde.FB3236F9-9C6E-4B3F-B9D7-0501D8E938A3.PInf (3.1.025.0 - 3.1.025.0) <6D3993CC-1D7F-4D43-4FAE-5AACF77282C6> /Library/Printers/Canon/PS3/PDEs/EF221714 (FF).plugin/Contents/MacOS/EF221714 (FF)
           0x115b84000 -        0x115e04ff7  libnserverlite.dylib (10.12) <37B66D8F-B630-3395-A01B-B0E2F04C3EC1> /System/Library/PrivateFrameworks/PSNormalizer.framework/Versions/A/Libraries/l ibnserverlite.dylib
        0x7fff6a166000 -     0x7fff6a19a93f  dyld (210.2.3) <A40597AA-5529-3337-8C09-D8A014EB1578> /usr/lib/dyld
        0x7fff87daf000 -     0x7fff87e42ff7  com.apple.imcore (8.0 - 900) <7B41423D-6231-3D24-B946-0C50927C61DF> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
        0x7fff87e43000 -     0x7fff87e6aff7  com.apple.speech.LatentSemanticMappingFramework (2.9.3 - 2.9.3) <CDB23C93-853B-3F18-985C-6D32D4704F26> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff87e6b000 -     0x7fff88182ff7  com.apple.CoreServices.CarbonCore (1037 - 1037) <5127E2AB-AE98-3393-AEF6-CA8C1090F921> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff88183000 -     0x7fff881a5ff7  libxpc.dylib (140.37) <C552985C-2171-3136-A1B9-3AB21CBF7C4A> /usr/lib/system/libxpc.dylib
        0x7fff881a6000 -     0x7fff8829bfff  libiconv.2.dylib (34) <FEE8B996-EB44-37FA-B96E-D379664DEFE1> /usr/lib/libiconv.2.dylib
        0x7fff8829c000 -     0x7fff882dfff7  com.apple.bom (12.0 - 192) <0BF1F2D2-3648-36B7-BE4B-551A0173209B> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
        0x7fff882e0000 -     0x7fff882e5fff  libcache.dylib (57) <65187C6E-3FBF-3EB8-A1AA-389445E2984D> /usr/lib/system/libcache.dylib
        0x7fff88332000 -     0x7fff88729fff  libLAPACK.dylib (1073.3) <E670020A-6969-3ED7-B80B-285AE1DE5F95> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff8872f000 -     0x7fff8894dfff  com.apple.CoreData (106 - 407.5) <45EF39FE-7FD6-366E-BB5C-3E86E0B7DA3C> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff8899e000 -     0x7fff88ae1fef  com.apple.MediaControlSender (1.4.1 - 141.23) <983E0905-BA7A-35D3-9370-430032201712> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff88b8a000 -     0x7fff88be6fff  com.apple.QuickLookFramework (4.0 - 555.0) <8B163B8C-001E-3BBB-98ED-8173C68BC84C> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff88be7000 -     0x7fff88c02ff7  libsystem_kernel.dylib (2050.7.9) <E0447BF5-E104-35B0-B28B-4156887D58F1> /usr/lib/system/libsystem_kernel.dylib
        0x7fff88c03000 -     0x7fff88c06ff7  libdyld.dylib (210.2.3) <F59367C9-C110-382B-A695-9035A6DD387E> /usr/lib/system/libdyld.dylib
        0x7fff88c09000 -     0x7fff88c09fff  libOpenScriptingUtil.dylib (148) <4DB14EC4-422C-3AE8-83BF-354FEC197FD3> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff88c12000 -     0x7fff88d0ffff  libsqlite3.dylib (138) <8D6A6805-1494-30D1-9F2A-F58FA3C0D7EE> /usr/lib/libsqlite3.dylib
        0x7fff88d1d000 -     0x7fff88e1bff7  com.apple.QuickLookUIFramework (4.0 - 555.0) <BD4FD137-918A-3755-B2B5-4E552D85B460> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff88e1c000 -     0x7fff88e72fff  com.apple.imfoundation (8.0 - 900) <E6CB7F38-E836-30F9-9033-26BA211D239A> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
        0x7fff88e73000 -     0x7fff88eb3fff  com.apple.MediaKit (13 - 658) <3614D66C-0712-3049-9C5A-1ED9A94D82C5> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff88eb4000 -     0x7fff89133fff  com.apple.AOSKit (1.05 - 148) <C7246547-252D-3505-BC4C-B26ECE575118> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
        0x7fff89134000 -     0x7fff89135ff7  libSystem.B.dylib (169.3) <365477AB-D641-389D-B8F4-A1FAE9657EEE> /usr/lib/libSystem.B.dylib
        0x7fff89136000 -     0x7fff8924fff7  com.apple.ImageIO.framework (3.2.0 - 843) <A9AC2A79-331A-3B06-AFE6-7E34EF876221> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff89254000 -     0x7fff8925cfff  liblaunch.dylib (442.21) <224CB010-6CF8-3FC2-885C-6F80330321EB> /usr/lib/system/liblaunch.dylib
        0x7fff892b5000 -     0x7fff892b5fff  com.apple.quartzframework (1.5 - 1.5) <6403C982-0D45-37EE-A0F0-0EF8BCFEF440> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff892b6000 -     0x7fff892c3fff  com.apple.AppleFSCompression (49 - 1.0) <5508344A-2A7E-3122-9562-6F363910A80E> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff892c4000 -     0x7fff8945ffef  com.apple.vImage (6.0 - 6.0) <FAE13169-295A-33A5-8E6B-7C2CC1407FA7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff89460000 -     0x7fff89471ff7  libsasl2.2.dylib (166) <649CAE0E-8FFE-3C60-A849-BE6300E4B726> /usr/lib/libsasl2.2.dylib
        0x7fff894b8000 -     0x7fff89713fff  com.apple.QuartzComposer (5.1 - 281) <E2BADA0D-2078-36FD-A761-97F9430C3C1B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff89714000 -     0x7fff89756fff  com.apple.RemoteViewServices (2.0 - 80.3) <E0224421-A421-3DB6-99AF-B249684FD13A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff89757000 -     0x7fff8975afff  com.apple.AppleSystemInfo (2.0 - 2) <BC221376-361F-3F85-B284-DC251D3BB442> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff89c49000 -     0x7fff89c4bfff  libquarantine.dylib (52) <4BE2E642-A14F-340A-B482-5BD2AEFD9C24> /usr/lib/system/libquarantine.dylib
        0x7fff89c4c000 -     0x7fff89cb4fff  libvDSP.dylib (380.6) <CD4C5EEB-9E63-30C4-8103-7A5EAEA0BE60> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff89cb5000 -     0x7fff89cd5fff  libPng.dylib (843) <8F83F355-CA33-3D15-8178-54A135BA23BA> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff89cd6000 -     0x7fff89e47ff7  com.apple.QTKit (7.7.1 - 2599) <823F862A-4A34-3894-A36C-C6D91B8AF5A8> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff89f72000 -     0x7fff89f9efff  com.apple.quartzfilters (1.8.0 - 1.7.0) <B8DE45D7-1827-3379-A478-1A574A1D11D9> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff89f9f000 -     0x7fff89fa0ff7  libsystem_sandbox.dylib (220) <3C3B03CF-C525-3CB3-8557-62E91B93AC95> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff89fa1000 -     0x7fff89fa5fff  com.apple.SecCodeWrapper (2.0 - 1) <9C89FB5E-A3C1-34B0-85C8-EF5B093A461C> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff89fa6000 -     0x7fff8a302ff7  com.apple.Foundation (6.8 - 945) <0C972F73-0C07-3384-98F2-B176E0289494> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff8a303000 -     0x7fff8a384fff  com.apple.Metadata (10.7.0 - 707.1) <ED39A710-1D87-3207-BB7D-4465B2673C1D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff8a385000 -     0x7fff8a38bfff  libGFXShared.dylib (8.5) <34093C75-3ECB-3899-A2C0-A52ECAA7C3FC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff8a38c000 -     0x7fff8a391fff  com.apple.OpenDirectory (10.8 - 151.10) <CF44120B-9B01-32DD-852E-C9C0E1243FC0> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
        0x7fff8a392000 -     0x7fff8a412ff7  com.apple.ApplicationServices.ATS (332 - 341) <0CAA1A5C-59DB-3ACE-8478-05D72CBB7C76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff8a419000 -     0x7fff8a463ff7  libGLU.dylib (8.5) <47CB8E1C-F98F-352E-B235-DE9EA7A3454F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8a464000 -     0x7fff8a583fff  com.apple.desktopservices (1.7.0 - 1.7.0) <F84224B1-BA28-31AF-8C89-1C2DBBFE4753> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff8a5ad000 -     0x7fff8a5adfff  libkeymgr.dylib (25) <CC9E3394-BE16-397F-926B-E579B60EE429> /usr/lib/system/libkeymgr.dylib
        0x7fff8a5ae000 -     0x7fff8a5bafff  libCSync.A.dylib (322) <C1321292-F5D3-3B8F-8CBB-57AC8E05F90C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff8a5bb000 -     0x7fff8a5faff7  com.apple.QD (3.42 - 285) <8DF36FCA-C06B-30F4-A631-7BE2FF7E56D1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8a5fb000 -     0x7fff8a715fff  com.apple.coreavchd (5.6.0 - 5600.4.16) <0CF2ABE5-B088-3B5D-9C04-47AE708ADAE3> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff8a716000 -     0x7fff8b340fff  com.apple.AppKit (6.8 - 1187) <C9309F5C-9441-3E5B-A120-B03FEDDA63F9> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8b34f000 -     0x7fff8b363fff  com.apple.speech.synthesis.framework (4.1.10 - 4.1.10) <21086D96-F997-38D3-BB59-8600CCC3A36F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff8b364000 -     0x7fff8b392fff  com.apple.CoreServicesInternal (153 - 153) <11507A03-9165-350C-9492-A545EA7331BD> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff8b393000 -     0x7fff8b3f9ff7  com.apple.coredav (1.0.1 - 179.4) <511B0351-3856-3221-B52D-FCAC0B6F9000> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
        0x7fff8b3fa000 -     0x7fff8b407ff7  com.apple.HelpData (2.1.3 - 84) <BCA6BBB4-623A-33EC-B84E-0778917B8D88> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff8b408000 -     0x7fff8b42efff  com.apple.framework.familycontrols (4.0 - 400) <B296674D-6D0B-323D-84C0-1D356F6F3BFA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8b42f000 -     0x7fff8b53afff  libFontParser.dylib (84.5) <617A7D30-C7BC-39FC-A1FE-59367B4A5719> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8b53b000 -     0x7fff8b53ffff  libCoreVMClient.dylib (24.4) <55F71158-ADEE-3863-92E9-4772DCEA8E31> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8b540000 -     0x7fff8b544fff  libpam.2.dylib (20) <C8F45864-5B58-3237-87E1-2C258A1D73B8> /usr/lib/libpam.2.dylib
        0x7fff8b545000 -     0x7fff8b576fff  com.apple.DictionaryServices (1.2 - 184) <B37F9A90-8954-3DEC-A216-8ABB15C615A1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff8b577000 -     0x7fff8b582fff  libsystem_notify.dylib (98.5) <C49275CC-835A-3207-AFBA-8C01374927B6> /usr/lib/system/libsystem_notify.dylib
        0x7fff8b583000 -     0x7fff8b605fff  com.apple.Heimdal (3.0 - 2.0) <660A6C64-4912-32C8-A332-B64164032A2D> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8b606000 -     0x7fff8b625fff  com.apple.ChunkingLibrary (2.0 - 132) <F5051C19-6C4E-3E65-9BEC-B0A4BA82457A> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8b626000 -     0x7fff8b677fff  com.apple.SystemConfiguration (1.12 - 1.12) <7A8300B5-F5B3-39F0-A4B2-4C0C293FA29F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff8b678000 -     0x7fff8b6cfff7  com.apple.ScalableUserInterface (1.0 - 1) <F1D43DFB-1796-361B-AD4B-39F1EED3BE19> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff8b6d0000 -     0x7fff8b71cff7  libauto.dylib (185.1) <73CDC482-16E3-3FC7-9BB4-FBA2DA44DBC2> /usr/lib/libauto.dylib
        0x7fff8b71d000 -     0x7fff8b728fff  com.apple.CommonAuth (3.0 - 2.0) <74A86DDD-57D0-3178-AB74-E1F31DBFFC39> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8b729000 -     0x7fff8b7f5fef  libsystem_c.dylib (825.24) <16B6B86C-53EE-36E8-AC2B-4AADC1008098> /usr/lib/system/libsystem_c.dylib
        0x7fff8b807000 -     0x7fff8b864fff  com.apple.audio.CoreAudio (4.1.0 - 4.1.0) <B3198BD6-EA1D-3E5E-ADD4-37D8E6B72678> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8b865000 -     0x7fff8bc5dff7  com.apple.MediaToolbox (1.0 - 926.37) <347504AF-1028-3829-B51B-80E2F22BA600> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff8bc5e000 -     0x7fff8bc5efff  com.apple.CoreServices (57 - 57) <9DD44CB0-C644-35C3-8F57-0B41B3EC147D> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff8bc5f000 -     0x7fff8bc95fff  libsystem_info.dylib (406.17) <4FFCA242-7F04-365F-87A6-D4EFB89503C1> /usr/lib/system/libsystem_info.dylib
        0x7fff8bc96000 -     0x7fff8bc9eff7  com.apple.marco (8.0 - 900) <F8E2BFA5-098F-323A-8221-166CB3A235A9> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
        0x7fff8bc9f000 -     0x7fff8bcb1ff7  libz.1.dylib (43) <2A1551E8-A272-3DE5-B692-955974FE1416> /usr/lib/libz.1.dylib
        0x7fff8bcb2000 -     0x7fff8bd1fff7  com.apple.framework.IOKit (2.0 - 755.9.7) <9B7C5E7A-3F7A-3E70-8179-4384992B84E0> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff8bd31000 -     0x7fff8bedffff  com.apple.QuartzCore (1.8 - 304.0) <BDC66714-F60C-386D-A773-F897D1E87AB6> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8bee0000 -     0x7fff8c069fff  com.apple.WebKit (8536 - 8536.25) <6827B87B-9921-3E69-80A6-115ED325DBA4> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
        0x7fff8c06a000 -     0x7fff8c081fff  com.apple.CFOpenDirectory (10.8 - 151.10) <FFBBA538-00B5-334E-BA5B-C8AD6CDCDA14> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8c0c5000 -     0x7fff8c0d3ff7  libkxld.dylib (2050.7.9) <8194156D-8B7D-3881-AF62-BCBE3306EE49> /usr/lib/system/libkxld.dylib
        0x7fff8c0d4000 -     0x7fff8c11ffff  com.apple.framework.CoreWLAN (3.0 - 300.9) <8BAF8D34-3A22-3F27-B136-F39A04F9ACE9> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
        0x7fff8c120000 -     0x7fff8c17afff  com.apple.print.framework.PrintCore (8.0 - 387) <3CA8A004-8F93-3936-9F9E-7030BD474D2B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8c17b000 -     0x7fff8c186ff7  com.apple.ProtocolBuffer (2 - 104) <3270C172-1437-3080-9E53-3E2DCA9AE2EC> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
        0x7fff8c187000 -     0x7fff8c193ff7  com.apple.DirectoryService.Framework (10.8 - 151.10) <DA05EF06-8EBD-3759-B5D3-E6FC86C5D850> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
        0x7fff8c194000 -     0x7fff8c198fff  com.apple.IOSurface (86.0.2 - 86.0.2) <739A481A-DF06-39EB-B784-D03BA1CBD762> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8c199000 -     0x7fff8c1d5fff  com.apple.GeoServices (1.0 - 1) <F55A4DD8-FA21-3842-8450-1D707D24E69B> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
        0x7fff8c1d6000 -     0x7fff8c41cff7  com.apple.MessageFramework (6.0 - 1485) <79FA27A2-D01A-3D35-AE3A-7F8F41034728> /System/Library/Frameworks/Message.framework/Versions/B/Message
        0x7fff8c41d000 -     0x7fff8c41dfff  com.apple.Accelerate.vecLib (3.8 - vecLib 3.8) <B5A18EE8-DF81-38DD-ACAF-7076B2A26225> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff8c41e000 -     0x7fff8c42aff7  com.apple.CrashReporterSupport (10.8 - 411) <FA7EA7CD-103D-30B1-BF2F-862E68A6B5B7> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
        0x7fff8c42b000 -     0x7fff8c42bfff  com.apple.AOSMigrate (1.0 - 1) <585B1483-490E-32DD-97DC-B9279E9D3490> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff8c42c000 -     0x7fff8c42cfff  SleepServices (1.43) <E1AC57F0-A11C-3DEF-90C9-915355CB150C> /System/Library/PrivateFrameworks/SleepServices.framework/Versions/A/SleepServi ces
        0x7fff8c42d000 -     0x7fff8c42efff  liblangid.dylib (116) <864C409D-D56B-383E-9B44-A435A47F2346> /usr/lib/liblangid.dylib
        0x7fff8c42f000 -     0x7fff8c43aff7  com.apple.aps.framework (3.0 - 3.0) <17CAFBFA-B842-33F0-B1F5-14EED36799FD> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff8c43b000 -     0x7fff8c593ff7  com.apple.syncservices (7.0 - 713) <924B8B34-2C9C-3C1D-909D-FF215AA8985D> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
        0x7fff8c5d6000 -     0x7fff8c84aff7  com.apple.RawCamera.bundle (3.14.2 - 644) <11978DA8-3427-33FB-95BD-315608107265> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff8c895000 -     0x7fff8c89cfff  com.apple.phonenumbers (1.1 - 47) <E6A01FEF-9C6D-3C18-B378-63F4134756E6> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff8c89d000 -     0x7fff8c89ffff  com.apple.TrustEvaluationAgent (2.0 - 23) <A97D348B-32BF-3E52-8DF2-59BFAD21E1A3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff8c8a0000 -     0x7fff8c8fafff  com.apple.Suggestions (2.0 - 102.1) <05D8D892-9A31-301A-BD24-D8A89B2AC905> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
        0x7fff8c952000 -     0x7fff8c9d4fff  libType1Scaler.dylib (101.1) <ADA4D1DB-7E2A-3549-A97B-2A19C478C2C8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
        0x7fff8c9d5000 -     0x7fff8ca62ff7  com.apple.SearchKit (1.4.0 - 1.4.0) <C7F43889-F8BF-3CB9-AD66-11AEFCBCEDE7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8ca63000 -     0x7fff8caccfff  libstdc++.6.dylib (56) <EAA2B53E-EADE-39CF-A0EF-FB9D4940672A> /usr/lib/libstdc++.6.dylib
        0x7fff8ce56000 -     0x7fff8ce6bff7  libdispatch.dylib (228.18) <0B6B6E7F-4D8A-3F3B-A4BF-6CF34638DBBB> /usr/lib/system/libdispatch.dylib
        0x7fff8ce6c000 -     0x7fff8ce86fff  com.apple.CoreMediaAuthoring (2.1 - 914) <CFA664F9-D5A7-3281-A12F-3ED8A98FD8C1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8ce87000 -     0x7fff8cf61fff  com.apple.backup.framework (1.4 - 1.4) <00964E68-4A36-3F9F-B0A5-B782575C64DE> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
        0x7fff8cf62000 -     0x7fff8cfa6fff  libcups.2.dylib (327) <9B3F3321-D2BC-3195-BF20-4008FC52A390> /usr/lib/libcups.2.dylib
        0x7fff8cfa7000 -     0x7fff8cfdcff7  libTrueTypeScaler.dylib (84.5) <DF2335F3-07BE-30BA-B73C-3204E95B42C3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
        0x7fff8cfdd000 -     0x7fff8d066ff7  com.apple.iLifeMediaBrowser (2.7.1 - 543) <3FED4C1A-A397-34B3-B63A-918D988298F1> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
        0x7fff8d159000 -     0x7fff8d184fff  libxslt.1.dylib (11.3) <441776B8-9130-3893-956F-39C85FFA644F> /usr/lib/libxslt.1.dylib
        0x7fff8d187000 -     0x7fff8d188fff  libsystem_blocks.dylib (59) <D92DCBC3-541C-37BD-AADE-ACC75A0C59C8> /usr/lib/system/libsystem_blocks.dylib
        0x7fff8d189000 -     0x7fff8d18afff  libDiagnosticMessagesClient.dylib (7) <56A70657-E8C2-3804-AB87-77DC100512A4> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff8d372000 -     0x7fff8d37ffff  com.apple.KerberosHelper (4.0 - 1.0) <6815439D-1A03-3251-99FE-CC24CF4C93C5> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
        0x7fff8d380000 -     0x7fff8d3edfff  com.apple.datadetectorscore (4.0 - 269.1) <C94C372B-3821-3A46-A8C2-091AB1CFF7F4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8d3ee000 -     0x7fff8d47fff7  com.apple.CorePDF (2.0 - 2) <BD4EBB01-5A60-34F1-B9DD-AF745AA10902> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff8d48d000 -     0x7fff8d4e2ff7  libTIFF.dylib (843) <4EB491F3-8DA4-3E4F-AE83-E207720F38B3> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8d4ff000 -     0x7fff8e4b1ff7  com.apple.WebCore (8536 - 8536.24) <A890E18B-9224-38B3-ADFB-C84B3BCD2AAC> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
        0x7fff8e4b2000 -     0x7fff8e6b2fff  libicucore.A.dylib (491.11.1) <17E8B610-6B16-3F91-B49C-7CAE0D08E9CF> /usr/lib/libicucore.A.dylib
        0x7fff8e6dc000 -     0x7fff8e6e0ff7  com.apple.CommonPanels (1.2.5 - 94) <AAC003DE-2D6E-38B7-B66B-1F3DA91E7245> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8e6f2000 -     0x7fff8e728fff  com.apple.DebugSymbols (98 - 98) <14E788B1-4EB2-3FD7-934B-849534DFC198> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff8e729000 -     0x7fff8e7c6fff  com.apple.PDFKit (2.7 - 2.7) <00F5A07D-4F61-3BE7-8836-EB03DA904FB1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8e7d1000 -     0x7fff8e896fff  com.apple.coreui (2.0 - 181) <CFCB6868-36AC-3734-ACEA-DF9CAB2B84F2> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff8e897000 -     0x7fff8e8ceff7  libssl.0.9.8.dylib (47) <923945E6-C489-3406-903B-A362410753F8> /usr/lib/libssl.0.9.8.dylib
        0x7fff8e8cf000 -     0x7fff8e8d3fff  libMatch.1.dylib (17) <E10E50F3-25F8-3B9B-AA11-923E40F5FFDD> /usr/lib/libMatch.1.dylib
        0x7fff8e8d9000 -     0x7fff8eb2eff7  com.apple.CalendarStore (6.0 - 1235) <DD509F4B-646B-381E-813D-3F05DD98517B> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
        0x7fff8eb2f000 -     0x7fff8eb58fff  libsandbox.1.dylib (220) <FCD65E60-6276-3455-8A11-09864DC9A285> /usr/lib/libsandbox.1.dylib
        0x7fff8eb59000 -     0x7fff8eb66ff7  com.apple.NetAuth (4.0 - 4.0) <F5BC7D7D-AF28-3C83-A674-DADA48FF7810> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff8eb67000 -     0x7fff8ec24ff7  com.apple.ColorSync (4.8.0 - 4.8.0) <6CE333AE-EDDB-3768-9598-9DB38041DC55> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff8ec25000 -     0x7fff8edabfff  libBLAS.dylib (1073.3) <6B71AB8C-3D9A-33C2-9EAF-2A0BA504D493> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff8edac000 -     0x7fff8edbaff7  com.apple.Librarian (1.1 - 1) <B0248F96-6BC9-3F63-8557-65DF1606039C> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
        0x7fff8edbb000 -     0x7fff8ee08fff  com.apple.CoreMediaIO (301.0 - 4147) <61E348A5-1F9E-3390-9613-3EACE40DBD8C> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8ee8f000 -     0x7fff8eed7fff  libcurl.4.dylib (69.2) <EBDBF42D-E4A6-3D05-A76B-2817D79D59E2> /usr/lib/libcurl.4.dylib
        0x7fff8eed8000 -     0x7fff8ef10fff  libtidy.A.dylib (15.10) <9009156B-84F5-3781-BFCB-B409B538CD18> /usr/lib/libtidy.A.dylib
        0x7fff8ef11000 -     0x7fff8ef45fff  com.apple.securityinterface (6.0 - 55024.3) <1AF13976-72BB-351F-A263-09284BA25C88> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
        0x7fff8ef46000 -     0x7fff8ef50fff  com.apple.CalendarAgentLink (1.0 - 35) <F196DC3A-8881-33CF-820B-7C79E17A22F5> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
        0x7fff8ef51000 -     0x7fff8ef58fff  com.apple.NetFS (5.0 - 4.0) <82E24B9A-7742-3DA3-9E99-ED267D98C05E> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff8ef59000 -     0x7fff8ef87fff  com.apple.shortcut (2.2 - 2.2) <C573DB65-37FB-3DDC-AB19-525094346D9B> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff8ef88000 -     0x7fff8efdfff7  com.apple.AppleVAFramework (5.0.18 - 5.0.18) <B75949DD-AC27-3848-8221-00D70D14C7E0> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8efe0000 -     0x7fff8f270fff  com.apple.CoreImage (8.0.17 - 1.0.1) <FFD6159F-DF31-3EFC-9C59-7FC4F4219D43> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8f271000 -     0x7fff8f284ff7  libbsm.0.dylib (32) <F497D3CE-40D9-3551-84B4-3D5E39600737> /usr/lib/libbsm.0.dylib
        0x7fff8f285000 -     0x7fff8f285fff  com.apple.ApplicationServices (45 - 45) <A3ABF20B-ED3A-32B5-830E-B37831A45A80> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8f9cb000 -     0x7fff8fa05fff  com.apple.GSS (3.0 - 2.0) <0BDF8090-5EF4-3759-94DE-8521D74188AA> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8fa06000 -     0x7fff8fa06fff  com.apple.Cocoa (6.7 - 19) <1F77945C-F37A-3171-B22E-F7AB0FCBB4D4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff8fa07000 -     0x7fff8fa66ff7  com.apple.IMAP (6.0 - 1485) <5231C0C2-03DB-3C1F-BDE8-8C945F215918> /System/Library/PrivateFrameworks/IMAP.framework/Versions/A/IMAP
        0x7fff9031c000 -     0x7fff9031ffff  com.apple.TCC (1.0 - 1) <DE7ECAC3-BD08-323A-9C12-EE4A49B72871> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
        0x7fff90320000 -     0x7fff90327fff  libcopyfile.dylib (89) <876573D0-E907-3566-A108-577EAD1B6182> /usr/lib/system/libcopyfile.dylib
        0x7fff90379000 -     0x7fff90382fff  com.apple.CommerceCore (1.0 - 26) <997CD214-BC78-3C61-A1B8-813EA1CB9997> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff904d6000 -     0x7fff90525ff7  libcorecrypto.dylib (106) <57BC99C6-3C3F-344C-BDD6-25E845D956F2> /usr/lib/system/libcorecrypto.dylib
        0x7fff90526000 -     0x7fff90616ff7  com.apple.DiskImagesFramework (10.8 - 344) <3A30B9B5-5099-35E2-9DCD-C96764FA2D26> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff90617000 -     0x7fff90633fff  com.apple.openscripting (1.3.5 - 148) <ACDE22A1-6170-3289-AF26-E501E6326BD7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff90634000 -     0x7fff90647ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <2F2694E9-A7BC-33C7-B4CF-8EC907DF0FEB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff90648000 -     0x7fff90653ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <7A5F12E8-C1C2-39C7-8599-2362EAAB9F03> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff90654000 -     0x7fff90725ff7  com.apple.CoreText (260.0 - 275.14) <98A59BFB-9AC0-3EAB-B5A4-26C2F965A65D> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
        0x7fff90735000 -     0x7fff90735ffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <ECC4891A-9BA8-3C13-9A2B-6116521B7B46> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff90736000 -     0x7fff90747fff  com.apple.CalendarFoundation (1.0 - 27) <1C9D7450-9C25-3B2C-A3E4-B658780C3C0F> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
        0x7fff90748000 -     0x7fff9074dfff  libcompiler_rt.dylib (30) <08F8731D-5961-39F1-AD00-4590321D24A9> /usr/lib/system/libcompiler_rt.dylib
        0x7fff9074e000 -     0x7fff907a4ff7  com.apple.opencl (2.1.17 - 2.1.17) <CA9E8BED-17C9-393B-A53E-8EAA8BF01C47> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff907a5000 -     0x7fff907a6ff7  libremovefile.dylib (23.1) <DBBFAF35-AC78-3856-92F6-6E4FD9DF14A2> /usr/lib/system/libremovefile.dylib
        0x7fff907a7000 -     0x7fff907a8fff  libffi.dylib (18) <D20FE81C-271C-3446-ABC8-50B6A6F5BEA4> /usr/lib/libffi.dylib
        0x7fff907a9000 -     0x7fff907bffff  com.apple.MultitouchSupport.framework (235.27 - 235.27) <78E356A6-78E8-3CAB-8982-7A4958C7A955> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff907c0000 -     0x7fff90f68fff  com.apple.CoreAUC (6.16.00 - 6.16.00) <B0B4B5B8-6F8F-3221-9128-313E3B8C695D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff90f69000 -     0x7fff90f94fff  com.apple.datadetectors (4.0 - 199.0) <4FE34A35-8DE1-3A43-8586-4B2ED03F2D84> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
        0x7fff90f95000 -     0x7fff90fa4ff7  libxar.1.dylib (105) <370ED355-E516-311E-BAFD-D80633A84BE1> /usr/lib/libxar.1.dylib
        0x7fff90fa5000 -     0x7fff90fe2fe7  libGLImage.dylib (8.5) <9583CF74-F84A-33C7-B06A-3A72F090E544> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff90fe3000 -     0x7fff90ffafff  com.apple.GenerationalStorage (1.1 - 132.1) <EAB41613-0145-3CE5-AA60-A8A791A3EE22> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff91010000 -     0x7fff91012ff7  com.apple.print.framework.Print (8.0 - 258) <34666CC2-B86D-3313-B3B6-A9977AD593DA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff9102a000 -     0x7fff91034fff  com.apple.speech.recognition.framework (4.1.5 - 4.1.5) <D803919C-3102-3515-A178-61E9C86C46A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff91035000 -     0x7fff910cffff  libvMisc.dylib (380.6) <714336EA-1C0E-3735-B31C-19DFDAAF6221> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff910d0000 -     0x7fff910d6fff  com.apple.DiskArbitration (2.5 - 2.5) <348AC0CC-6BCE-3416-9141-A5C1164EDDFF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff910d7000 -     0x7fff91110ff7  com.apple.framework.internetaccounts (2.0 - 200) <F4C8194D-D9CF-3D48-A9C0-CE572CDBD070> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
        0x7fff91111000 -     0x7fff91113ff7  libunc.dylib (25) <92805328-CD36-34FF-9436-571AB0485072> /usr/li

  • Text edit and iWorks apps slow to open in 10.9

    Hello,
    I've got a new MBP, 16GB of RAM, 250 GB Flash SDD. Been working fine up until recently, but now, any app that uses Versioning, like Text Edit, Numbers, Pages, etc. is EXTREMELY slow to open. Note that any app that doesn't use Versioning like Photoshop or Outlook launch instantly. I've tried trashing prefs and cache's, but no dice.
    Any ideas? I can't belive I'm the only one that has ran across this.

    Maybe it is an internet problems, check your internet connection.

  • Dynamic text box and minus variable?

    I have a text box with dynamic text set to display p variable but when the variable goes < 0 it only displays a '-'.
    im using:
    onClipEvent (enterFrame) {
    p = my_object._x;
    How can I correct this? Also another question with 'my_object._x' it returns the x coord relative to the movie clip it is in. How do I get the position relative to the 0,0 (top left corner)?
    I've been learning Flash for 2 days so sorry if the questions sound simple. I have tried googling these.

    for the textfield question....
    I'm not too sure about that... it could be related to the width of the textfield, or maybe a maxChars setting on the textfield....not really sure sorry. Someone else may have an answer....
    for the other question...
    getRect() gives you the bounding box (without stroke width, use getBounds() if you want bounds outside the stroke width)
    try
    var geometricBounds = my_object.getRect();
    trace(geometricBounds.xMin+","+geometricBounds.yMin)

  • I am currently using text edit and trying to save in icloud.  But the option of icloud does not show in the 'where' box?

    I am trying to save a file in text edit in icloud.  But the option of icloud does not show up in the 'where' box?

    You cannot. iCloud is not for textedit
    Read here https://discussions.apple.com/message/20351781#20351781

  • Java GUI cursor position in the window, mixed text editable and uneditable

    Hello,
    I primarily program in VBScript for Client Acces; but, I wanted to start creating user interfaces with Java.
    VBScript is not compiled on the private drive and anyone can learn how to do a program from well documented code; however, a compiled .class Java program does not have to be sent with the .java source code to work. The compiled program is unreadable by others and uneditable by others. Although I can do what I want with ActiveX programming, I want to use Java instead because it will prevent others from knowing how I program my solutions.
    The NetBeans IDE allows for controls to be dragged and dropped onto a screen; however, I want to know how to have uneditable and editable fields on the same page while allowing the cursor to be anywhere on the page and report its cursor position just as it is reported in Client Access.
    Does Java support the .Net Framework; or, does it have its own objects and methods to pull the cursor position in a window? I need the row and column, not the x and y coordinates.
    Java How To Program, Sixth Edition, has some deprecated code examples and I found working solutions from the Java Almanac. However, I did not see an example of this sort.
    What I will do once I know how to track the cursor position in the window is generate a Java based training module. Every computer at my workplace has Java runtimes installed, none of them have the .Net Framework installed. Java has a lot of tools that allow me to replace all my ActiveX programming with Java programming.
    Have a great Day!
    Jesse Grune.

    textArea.getCaret().getDot();
    or the shorter
    textArea.getCaretPosition();

  • HT2523 I have text edit and cant seem to get any of my fonts or double spacing onto my screen. I se it for college so it would be nice if i could figure out how to put it on there so its easier to type up a paper

    So i have a mac book air. And i am trying to type a paper but none of the tools are on m document for easy access. I have to go in and try to change everything under the settings manual. I was wondering how i put all of the easy acces tools such as font spacing and styles all on the front part of my screen not up at the top menu area. I just want it where its suppossed to be not hidden. How do i do that? Thanks.

    Thank you so much
    Kiss Kiss Kiss Kiss
    Life saver
    Best wishes and Many thanks
    Samantha

  • Access 'text edit' and 'preview' icloud documents on iPad iOS7

    now upgraded to iOS7 on iPad and hoping to access my iCloud documents for apps other than iWork.
    is there a way of doing this yet?

    Tap on the pdf document in order to open it, When you have the PDF file open on the screen - tap anywhere on the open document and an arrow will apper in the upper right corner of the screen - tap that arrow and a window will popup for Open In options. Select Open In Adobe Reader and the PDF will open in Adobe Reader and it will be saved in that app.

Maybe you are looking for

  • Error while uploading BITMAP image in SAP through SE78.

    Hello all, I am getting below error while uploading image into SAP through SE78. 'Bitmap file: No color table available (True Color, Bitcount 32)'. I have tried searching for solution and got some help from below reply from a thread: You may do these

  • HP Laserjet 4050 Not Responding

    Hello, I just upgraded to Mavericks and my HP Laserjet 4050N is no longer connecting. I'm connecting via ethernet. I had previously set it up with these instructions: https://discussions.apple.com/message/12054783#12054783 I tried doing this over aga

  • Macbook Pro restarting during iMovie share/export

    Hello all. I've started a thread in the iMovie section, but no one will respond. I have a client waiting on videos that I'm editing (I'm officially past deadline now), and all of a sudden iMovie 10.0.3 is causing a kernel panic and system restart eve

  • Menu bar at upper left of screen not visible

    I have lost the menu bar that appears in the upper left corner of the screen ("File", "Edit", "View", etc., as well as the back/forward arrows). I restored it on Internet Explorer -- how do I restore it on Firefox? == This happened == Every time Fire

  • SQL 2014 Azure Managed Backup Issues

    Hi all, We recently enabled Azure Managed Backup on one of our DEV boxes running on SQL 2014. After turning on extended mail notifications, we have begun seeing several errors getting logged. Some of them are as follows: [SSMBackup2WAAdminXevent] Dat