What happened to CRAXDRT.Report.SQLQueryString?

Hi,
I'm moving some code up from vb6, and the old ActiveX Reports Viewer.  The code used "CRAXDRT.Report.SQLQueryString".  This property contained the SQL query fired by the report.
In the new .Net version, I am unable to locate a property that gives me the SQL that the report used
My question:
In the .Net Crystal Report assemblies, how can I obtain the SQL Query fired by the report?
Thanks,
Scott Pearce

Hi Scott,
Here's the code to get it:
            GroupPath gp = new GroupPath();
            string tmp = String.Empty;
            rptClientDoc.RowsetController.GetSQLStatement(gp, out tmp);
            MessageBox.Show(tmp, "Data Source Set and SQL Statement", MessageBoxButtons.OK, MessageBoxIcon.Information);
You CAN NOT apply changes to the SQL CR generates any more though on reports based on connection to the tables. You can however edit the SQL on reports based on Command Objects.
If you have a report that uses 1 or 2 tables then here's the code to convert it to a Command Object. If you have more tables then you'll have to do it manually:
        private void TableToCommand_Click(object sender, EventArgs e)
            CrystalDecisions.CrystalReports.Engine.ReportDocument rpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
            ISCDReportClientDocument rcd;
            rcd = rptClientDoc;
            rptClientDoc.DatabaseController.LogonEx("Dwilliams1 - VAN-W-13-DWILLI", "xtreme", "sa", "pw");
            CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo oldConninfo;
            CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo newConnInfo = new CrystalDecisions.ReportAppServer.DataDefModel.ConnectionInfo();
            CrystalDecisions.ReportAppServer.DataDefModel.Table oldTbl;
            CrystalDecisions.ReportAppServer.DataDefModel.CommandTable newTbl = new CommandTable();
            oldTbl = (CrystalDecisions.ReportAppServer.DataDefModel.Table)rcd.Database.Tables[0];
            oldConninfo = oldTbl.ConnectionInfo.Clone(true);
            GroupPath gp = new GroupPath();
            gp.FromString("");
            string sql = String.Empty;
            rptClientDoc.RowsetController.GetSQLStatement(gp, out sql);
            PropertyBag QEProps = new PropertyBag();
            PropertyBag logonProps = new PropertyBag();
            //Set the attributes for the logonPropsBag
            logonProps.Add("Database", "xtreme");
            logonProps.Add("DSN", "Dwilliams1 - VAN-W-13-DWILLI");
            logonProps.Add("UseDSNProperties", "False");
            //Set the attributes
            QEProps.Add("Database DLL", "crdb_odbc.dll");
            QEProps.Add("QE_DatabaseName", "xtreme");
            QEProps.Add("QE_DatabaseType", "ODBC (RDO)");
            //Add the QE_LogonProperties we set in the logonProps Object
            QEProps.Add("QE_LogonProperties", logonProps);
            QEProps.Add("QE_ServerDescription", "Dwilliams1 - VAN-W-13-DWILLI");
            QEProps.Add("QE_SQLDB", "True");
            QEProps.Add("SSO Enabled", "False");
            newConnInfo.Attributes = QEProps;
            newConnInfo.UserName = "sa";
            newConnInfo.Password = "pw";
            newConnInfo.Kind = CrConnectionInfoKindEnum.crConnectionInfoKindCRQE;
            newTbl.ConnectionInfo = newConnInfo;
            newTbl.CommandText = sql;
            newTbl.Name = "Command";
                rcd.DatabaseController.SetTableLocationEx(oldTbl,newTbl);
                oldTbl =(CrystalDecisions.ReportAppServer.DataDefModel.Table) rcd.Database.Tables[0].Clone(true);
                rcd.DatabaseController.SetTableLocationEx(oldTbl, newTbl);
            // save the report to a new folder
            //rcd.SaveAs(rcd.DisplayName, "c:
Updated
", 0);
Look in the samples on altering the SQL of a command or use the same code above to do so.
Thank you
Don

Similar Messages

  • What happened to the Report Bugs to Apple... option in the Safari menu?

    What happened to this?
    http://browsers.about.com/od/safar1/ss/safaribugreport.htm
    Can't find it in Safari 6.0
    Why would Apple remove this tool and when can we get it back?
    Any thoughts.

    NGMmac wrote:
    Why would Apple remove this tool...?
    We're just users like yourself here so we're not privy to Apple's reasoning. Meanwhile, bugs can be reported via this form:
    http://www.apple.com/feedback/safari.html

  • What happens when I report a broken web site?

    I like the idea of reporting broken web pages but before I do this I would like to understand what will happen to my report. Who does it go to? Will I get a response?

    https://discussions.apple.com/message/12630513#12630513

  • What happened to Tools Reports option in RoboHelp 10?

    I use the Tools>> Reports option alot and just used it a few weeks ago.  Now as of Friday, I am unable to see them in the menu.  Does anyone have any idea as to what has happened to them?  In fact, I can not find those reports at all in RH.  Am I just looking in the wrong place? 
    I welcome any assistance I can get to try to resolve this. Thank you in advance! 

    Tools > Reports is the right route.
    Try right clicking the menu area and selecting Customise, then select Menu Bar and Reset. You could lose changes you have made but hopefully this will restore what is missing.
    I don't think I have seen this happen before.
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • What happens to the report if the underlying stored procedure to execute the report take atleast 3 hrs to run

    Hi,
    I have a report which is calling a stored procedure..
    Stored procedure exceutes 4-5 stored procedure and then returns the count each procedure it ran using union all statement... The stored procedure takes around 3-4 hrs to run because it is looking at quarterly data and YTD data.
    So once the report is kicked off and the procedure behind it runs and runs how will communicate to the report to show the final data... the final data will just be 5 rows with counts.
    I think we are running into a issue where the stored procedure runs and runs and then the report goes into la la land and has no clue what to do...
    Can you please shed some light on this..
    Thanks
    Karen

    Hi Karen,
    When we render a report, the report would process the following procedures:
    Open connections to data source and reading data rows from data extensions for all datasets, means retrieve data. Then process the engine requests, including the tablix, grouping, sorting, filtering, aggregations and subreport processing, means process report.
    Finally, render the report, including the pagination modules and on-demand expression evaluations.
    So the report rending has to wait until the stored procedure is executed. To improve the performance, we can consider the three aspects:
    Improve the performance of the stored procedures. Such as index and join. For better support, I suggest you can post a new thread about this issue in Transact-SQL forum at:
    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/home?forum=transactsql. It is appropriate and more experts will assist you.
    Simplify the report. For example, avoid including a reference to [&TotalPages] or any complex expressions in the page header and page footer. For more details, please see the following document:
    http://technet.microsoft.com/en-us/library/bb522806(v=sql.105).aspx
    Using cashing if you have a long-running query that cannot be tuned further. For more details, please refer to the following article:
    http://msdn.microsoft.com/en-us/library/ms159241(v=sql.110).aspx
    Hope this helps.
    Thanks,
    Katherine Xiong
    Katherine Xiong
    TechNet Community Support

  • What happened to itunes report a problem support?

    Can someone tell me why Apple changed the easy report a problem off itunes receipts?  Is this a new change that will last or is there something down?  It took me forever to figure out how to send an email or a message to report a problem - this is total crap.

    Can someone tell me why Apple changed the easy report a problem off itunes receipts?  Is this a new change that will last or is there something down?  It took me forever to figure out how to send an email or a message to report a problem - this is total crap.

  • What Happens to Scheduled reports if the environment goes down

    Hi guys,
    Have a basic question about scheduling. If a report is scheduled to run at 7 AM on Sunday only, and the environment goes down ( rather , is taken down ) for maintenance, and comes back up at 8 AM, will the reports scheduled to run at 7 AM , run or will they skip to the next schedule?
    Aqeeq

    Hey Thanks for that,
    yeah we tried that with one of our sandboxes, it even works with different dates ( e.g if you start the CMS the next day of the scheduled report )

  • UCCX 7.0.1SR5 to 8.0 upgrade while also adding LDAP integration for CUCM - what happens to agents and Historical Reporting data?

    Current State:
    •    I have a customer running CUCM 6.1 and UCCX 7.01SR5.  Currently their CUCM is *NOT* LDAP integrated and using local accounts only.  UCCX is AXL integrated to CUCM as usual and is pulling users from CUCM and using CUCM for login validation for CAD.
    •    The local user accounts in CUCM currently match the naming format in active directory (John Smith in CUCM is jsmith and John Smith is jsmith in AD)
    Goal:
    •    Upgrade software versions and migrate to new hardware for UCCX
    •    LDAP integrate the CUCM users
    Desired Future State and Proposed Upgrade Method
    Using the UCCX Pre Upgrade Tool (PUT), backup the current UCCX 7.01 server. 
    Then during a weekend maintenance window……
    •    Upgrade the CUCM cluster from 6.1 to 8.0 in 2 step process
    •    Integrate the CUCM cluster to corporate active directory (LDAP) - sync the same users that were present before, associate with physical phones, select the same ACD/UCCX line under the users settings as before
    •    Then build UCCX 8.0 server on new hardware and stop at the initial setup stage
    •    Restore the data from the UCCX PUT tool
    •    Continue setup per documentation
    At this point does UCCX see these agents as the same as they were before?
    Is the historical reporting data the same with regards to agent John Smith (local CUCM user) from last week and agent John Smith (LDAP imported CUCM user) from this week ?
    I have the feeling that UCCX will see the agents as different almost as if there is a unique identifier that's used in addition to the simple user name.
    We can simplify this question along these lines
    Starting at the beginning with CUCM 6.1 (local users) and UCCX 7.01.  Let's say the customer decided to LDAP integrate the CUCM users and not upgrade any software. 
    If I follow the same steps with re-associating the users to devices and selecting the ACD/UCCX extension, what happens? 
    I would guess that UCCX would see all the users it knew about get deleted (making them inactive agents) and the see a whole group of new agents get created.
    What would historical reporting show in this case?  A set of old agents and a set of new agents treated differently?
    Has anyone run into this before?
    Is my goal possible while keeping the agent configuration and HR data as it was before?

    I was doing some more research looking at the DB schema for UCCX 8.
    Looking at the Resource table in UCCX, it looks like there is primary key that represents each user.
    My question, is this key replicated from CUCM or created locally when the user is imported into UCCX?
    How does UCCX determine if user account jsmith in CUCM, when it’s a local account, is different than user account jsmith in CUCM that is LDAP imported?
    Would it be possible (with TAC's help most likely) to edit this field back to the previous values so that AQM and historical reporting would think the user accounts are the same?
    Database table name: Resource
    The Unified CCX system creates a new record in the Resource table when the Unified CCX system retrieves agent information from the Unified CM.
    A Resource record contains information about the resource (agent). One such record exists for each active and inactive resource. When a resource is deleted, the old record is flagged as inactive; when a resource is updated, a new record is created and the old one is flagged as inactive.

  • What happens to report data when data is deleted in cube

    Hi,
    We are deleting Complete data in Cube daily and do a fresh data load via process chain. So, my question is what happens when run a report based on the cube during period of deletion of data from cube.
    My question is does system will put old data some where untill new data comes in cube (or) complete deletion of data takes place and no data is displayed in report during that deletion period.
    Please let me know.
    Thanks
    Tony

    Hi Tony,
    As soon as data is deleted from the cube, Data will not be available for reporting. because for any reports data is fetched from Tables, for DSO they will fetch from Active table.
    So you will receive a message Data not found, if the data is deleted from Cube's table.
    Assign some points, if this is helpful.
    Rgs,
    I.R.K

  • So I bought a phone off some one and it happened to be reported lost and I need the previous owners icloud to unlock it. what can I do?

    so i bought an iphone 4s off some one and it happened to be reported lost and i need the old owners icloud info to unlock it. what can i do?

    almightyrollin wrote:
    ive contacted the old owner he isnt willing to do it because he said its my problem and he cant trust me. is there any other way like taking it to the apple store?
    As you've already been told...NO.

  • What happens after "reporting a post"?

    Hi everyone!
    A 2nd user displays a couple of outbursts against the 1st user who is helping the OP. These outbursts are uncalled for and I realize I could report his post but I'm afraid the MODS might delete the whole thread, and the OP might still need help.
    What actually happens after I report his post? Is it just his posts that gets deleted, or the whole thread? What's the procedure for something like this?
    And I don't want to post the thread or name the user in question, if I can help it.

    fullcream,
    When a post is reported, the moderators will receive the notification and look at any comments added by the reporter. They will look at the reported post first and then at the entire thread. Depending on the post, it may be removed or edited. If a post is removed, all of the responses linked to that post are also removed. This is something that is considered when deciding to remove or editing a post or an entire thread.
    When a post is removed, an email is sent to the user who posted the removed item. Informing them of the reasons for the action. Users who posted responses to that removed post will not be notified. This is why some users have seen their posts "disappear" without notice, they were branches from a removed post.
    We walk the fine line between full, open exchange and keeping messages on topic. We appreciate your help to notify us of those posts that fall outside the lines.
    Jeff D.

  • What happened to The Daily Show and Colbert Report in iTunes Store?

    I was looking on iTunes today and couldn't find ANY recent episodes of The Daily Show with Jon Stewart available for download and couldn't purchase the 04/07/09 episode or another earlier episode I put on my "wish list". The same thing seems to be happening with The Colbert Report. Was there an announcement by iTunes that the shows are no longer going to be available or are they in the middle of updating their content? Why aren't older episodes available for download?
    Who do you contact about the iTunes store/content?

    Okay, for some reason, I tried this yesterday at least six times and it did not even change the settings. Today, I went into the Import Settings and changed it to mp3 encoder, hit 'OK', then hit 'OK' in the preference menu (same thing I did yesterday) and it suddenly decided to show up. That was weird... Sorry, but thanks for writing anyway. I don't know what happened...

  • What happened to Effort metrics in the Custom Reports data model?

    What happened to Effort metrics in the Custom Reports data model?
    Is there any way to use the Custom Reports data model to report on task effort?  This was a metric captured in the Standard Reports Data Package, but looking through the metrics in the Custom Reports data model (particularly the ServiceTask Fact table) I do not see any effort related metric. 

    Ed is right.  The Custom Report data model on pre-2007.1.1 did not contain task effort data but it is added as a fact to report against in the 2007.1.1 release.  You will get this once you upgrade to 2007.1.1 and turn on the task effort entry setting in site administration.

  • What happen when an Expense report is approved or rejected ?

    Hi All,
    I would like to know what happens when an Expense report is approved or rejected.
    What is the process flow and once approved how the reimbursement is processed.
    Thanks & Regards,
    Ajay Sharma

    Hi,
    a parameter, that is set higher "than allowed" is NEVER replaced by any substitution value !!!
    => if it is correct, it will work - otherwise the system might not drive up or fail otherwise ...
    Unfortunately, there are MANY parameters, where you should use values, that are "not allowed" and even a lot of parameters, that are totally unknown - all of them work as you set them ... hopefully with useful values ...
    9000 in this case is recommended in nearly every GoingLiveCheck by SAP )
    Regards
    Volker Gueldenpfennig, consolut international ag
    http://www.consolut.de - http://www.4soi.de - http://www.easymarketplace.de

  • When i click on a single photo or a folder in finder, preview opens virtually every photograph on my computer in rapid-fire succession. I made a video showing what happens and will try to attach it. Please help.

    Please help. when I click on a single picture or a folder of photos in finder, preview launches and opens virtually all photos in rapid fire succession. I turned off the setting that restores open windows when you restart the computer. That did not help. It has assigned the name  "untitled" to my photos. i don't know what to do. Apple doesn't know what to do. the imac was purchased 6 months ago from apple store in king of prussia PA. I have taken a video showing what happens. i can send this to anyone who wants to see what is going on.
    Please help. This problem persists after restarting and after closing everything down.

    Process: Preview [3268]
    Path: /Applications/Preview.app/Contents/MacOS/Preview
    Identifier: com.apple.Preview
    Version:         5.5.2 (719.25)
    Build Info: Preview-719025000000000~8
    Code Type: X86-64 (Native)
    Parent Process: launchd [916]
    Date/Time: 2012-07-08 13:49:24.147 -0400
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          3771442 sec
    Crashes Since Last Report:           1
    Per-App Interval Since Last Report:  1810338 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID: B388121D-AFAB-4591-96E0-89D6998B0CC5
    Crashed Thread: 0  Dispatch queue: com.apple.main-thread
    Exception Type: EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x000000010a70ecec
    VM Regions Near 0x10a70ecec:
        IOKit (reserved) 000000010a68d000-000000010a70d000 [ 512K] rw-/rw- SM=NUL  reserved VM address space (unallocated)
    -->
        MALLOC_LARGE           000000010a725000-000000010a777000 [  328K] rw-/rwx SM=PRV 
    Application Specific Information:
    objc[3268]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0 com.apple.CoreGraphics              0x00007fff8c43df9b sseCGSFill8by1 + 155
    1 com.apple.CoreGraphics              0x00007fff8c471fb6 argb32_mark_constshape + 547
    2 com.apple.CoreGraphics              0x00007fff8c4719c3 argb32_mark + 235
    3 libRIP.A.dylib                    0x00007fff8aabf100 ripl_BltShape + 1737
    4 libRIP.A.dylib                    0x00007fff8aabc3af ripc_Render + 362
    5 libRIP.A.dylib                    0x00007fff8aab8c86 ripc_DrawRects + 660
    6 com.apple.CoreGraphics              0x00007fff8c46dc9f CGContextFillRects + 135
    7 com.apple.AppKit                         0x00007fff8b8924b3 NSRectFill + 227
    8 com.apple.AppKit                         0x00007fff8b819a67 -[NSView _drawRect:clip:] + 3995
    9 com.apple.AppKit                         0x00007fff8b817719 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3020
    10 com.apple.AppKit                       0x00007fff8b963560 -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 274
    11 com.apple.AppKit                       0x00007fff8b81186f -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4755
    12 com.apple.AppKit                       0x00007fff8b80a2ed -[NSView displayIfNeeded] + 1676
    13 com.apple.AppKit                       0x00007fff8b963438 -[NSNextStepFrame displayIfNeeded] + 83
    14  com.apple.AppKit                       0x00007fff8b809a2d _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 648
    15 com.apple.CoreFoundation        0x00007fff81e848e7 __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 23
    16 com.apple.CoreFoundation        0x00007fff81e84846 __CFRunLoopDoObservers + 374
    17 com.apple.CoreFoundation        0x00007fff81e59af9 __CFRunLoopRun + 825
    18 com.apple.CoreFoundation        0x00007fff81e59486 CFRunLoopRunSpecific + 230
    19 com.apple.CoreFoundation        0x00007fff81e6919f CFRunLoopRun + 95
    20 com.apple.RemoteViewServices            0x00007fff8c3d2bdc -[NSRemoteSavePanel beginSheetModalForWindow:completionHandler:] + 432
    21 com.apple.AppKit                       0x00007fff8bb6cff9 __-[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:]_block_ invoke_2 + 950
    22 com.apple.AppKit                       0x00007fff8bb7b805 -[NSDocument _commitEditingThenContinue:] + 337
    23 com.apple.AppKit                       0x00007fff8bb774d2 -[NSDocument _commitEditingWithDelegate:didSomethingSelector:contextInfo:thenContinue:] + 91
    24 com.apple.AppKit                       0x00007fff8bb6cbdb __-[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:]_block_ invoke_1 + 208
    25 com.apple.AppKit                       0x00007fff8bb8491d -[NSDocument performActivityWithSynchronousWaiting:usingBlock:] + 82
    26 com.apple.AppKit                       0x00007fff8bb6cb05 -[NSDocument runModalSavePanelForSaveOperation:delegate:didSaveSelector:contextInfo:] + 96
    27 com.apple.AppKit                       0x00007fff8bb6c1a4 __-[NSDocument saveDocumentWithDelegate:didSaveSelector:contextInfo:]_block_invoke_3 + 138
    28 com.apple.AppKit                       0x00007fff8bb6879f -[NSDocument continueActivityUsingBlock:] + 42
    29  com.apple.AppKit                       0x00007fff8bb6c06b __-[NSDocument saveDocumentWithDelegate:didSaveSelector:contextInfo:]_block_invoke_2 + 496
    30 com.apple.AppKit                       0x00007fff8bb7b805 -[NSDocument _commitEditingThenContinue:] + 337
    31  com.apple.AppKit                       0x00007fff8bb774d2 -[NSDocument _commitEditingWithDelegate:didSomethingSelector:contextInfo:thenContinue:] + 91
    32 com.apple.AppKit                       0x00007fff8bb6be13 __-[NSDocument saveDocumentWithDelegate:didSaveSelector:contextInfo:]_block_invoke_1 + 192
    33 com.apple.AppKit                       0x00007fff8bb8491d -[NSDocument performActivityWithSynchronousWaiting:usingBlock:] + 82
    34 com.apple.AppKit                       0x00007fff8bb6bd4d -[NSDocument saveDocumentWithDelegate:didSaveSelector:contextInfo:] + 92
    35 com.apple.Preview                     0x00000001036c7ed6 0x1035ff000 + 822998
    36 com.apple.AppKit                       0x00007fff8bb898ff __-[NSDocument canCloseDocumentWithDelegate:shouldCloseSelector:contextInfo:]_block_invoke_8 + 131
    37  com.apple.AppKit                       0x00007fff8bb6879f -[NSDocument continueActivityUsingBlock:] + 42
    38 com.apple.AppKit                       0x00007fff8bb71ca9 __-[NSDocument canCloseDocumentWithDelegate:shouldCloseSelector:contextInfo:]_block_invoke_1 + 1111
    39  com.apple.AppKit                       0x00007fff8bb84acf -[NSDocument performActivityWithSynchronousWaiting:usingBlock:] + 516
    40 com.apple.AppKit                       0x00007fff8bb71850 -[NSDocument canCloseDocumentWithDelegate:shouldCloseSelector:contextInfo:] + 291
    41  com.apple.Preview                     0x0000000103627d89 0x1035ff000 + 167305
    42 com.apple.Preview                     0x0000000103627bd0 0x1035ff000 + 166864
    43 com.apple.Preview                     0x0000000103627987 0x1035ff000 + 166279
    44 com.apple.Preview                     0x00000001036277b8 0x1035ff000 + 165816
    45 com.apple.AppKit                       0x00007fff8be62ef2 -[NSWindow __close] + 286
    46 com.apple.AppKit                       0x00007fff8be62c05 -[NSWindow _batchClose] + 65
    47 com.apple.Preview                     0x00000001036fbbb8 0x1035ff000 + 1035192
    48 com.apple.CoreFoundation        0x00007fff81ebbfb1 -[NSObject performSelector:] + 49
    49 com.apple.AppKit                       0x00007fff8b7cb91b -[NSApplication makeWindowsPerform:inOrder:] + 217
    50 com.apple.AppKit                       0x00007fff8ba7bae5 -[NSApplication _makeWindowsPerform:forEvent:inWindow:standardWindowButton:] + 29
    51 com.apple.CoreFoundation        0x00007fff81eb470d -[NSObject performSelector:withObject:] + 61
    52 com.apple.AppKit                       0x00007fff8b8d0f7e -[NSApplication sendAction:to:from:] + 139
    53 com.apple.AppKit                       0x00007fff8b9bdbfb -[NSMenuItem _corePerformAction] + 399
    54 com.apple.AppKit                       0x00007fff8b9bd932 -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 125
    55 com.apple.AppKit                       0x00007fff8b93b524 -[NSMenu performKeyEquivalent:] + 281
    56 com.apple.AppKit                       0x00007fff8b93a175 -[NSApplication _handleKeyEquivalent:] + 526
    57 com.apple.AppKit                       0x00007fff8b833536 -[NSApplication sendEvent:] + 4282
    58 com.apple.Preview                     0x0000000103601d4c 0x1035ff000 + 11596
    59 com.apple.AppKit                       0x00007fff8b7ca0c6 -[NSApplication run] + 555
    60 com.apple.AppKit                       0x00007fff8ba46244 NSApplicationMain + 867
    61 com.apple.Preview                     0x00000001036007f4 0x1035ff000 + 6132
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0 libsystem_kernel.dylib                 0x00007fff819bd7e6 kevent + 10
    1 libdispatch.dylib              0x00007fff8ac6778a _dispatch_mgr_invoke + 923
    2 libdispatch.dylib              0x00007fff8ac6631a _dispatch_mgr_thread + 54
    Thread 2:
    0 libsystem_kernel.dylib                 0x00007fff819bd192 __workq_kernreturn + 10
    1 libsystem_c.dylib              0x00007fff856af594 _pthread_wqthread + 758
    2 libsystem_c.dylib              0x00007fff856b0b85 start_wqthread + 13
    Thread 3:
    0 libsystem_kernel.dylib                 0x00007fff819bd192 __workq_kernreturn + 10
    1 libsystem_c.dylib              0x00007fff856af594 _pthread_wqthread + 758
    2 libsystem_c.dylib              0x00007fff856b0b85 start_wqthread + 13
    Thread 4:: Dispatch queue: com.apple.root.default-priority
    0 libsystem_kernel.dylib                 0x00007fff819bb6ce semaphore_timedwait_trap + 10
    1 libdispatch.dylib              0x00007fff8ac69270 _dispatch_semaphore_wait_slow + 211
    2 com.apple.RemoteViewServices             0x00007fff8c3d234e __54-[NSRemoteSavePanel _runOrderingOperationWithContext:]_block_invoke_0323 + 64
    3 libdispatch.dylib              0x00007fff8ac65a86 _dispatch_call_block_and_release + 18
    4 libdispatch.dylib              0x00007fff8ac66965 _dispatch_worker_thread2 + 255
    5 libsystem_c.dylib              0x00007fff856af3da _pthread_wqthread + 316
    6 libsystem_c.dylib              0x00007fff856b0b85 start_wqthread + 13
    Thread 5:
    0 libsystem_kernel.dylib                 0x00007fff819bd192 __workq_kernreturn + 10
    1 libsystem_c.dylib              0x00007fff856af594 _pthread_wqthread + 758
    2 libsystem_c.dylib              0x00007fff856b0b85 start_wqthread + 13
    Thread 6:
    0 libsystem_kernel.dylib                 0x00007fff819bd192 __workq_kernreturn + 10
    1 libsystem_c.dylib              0x00007fff856af594 _pthread_wqthread + 758
    2 libsystem_c.dylib              0x00007fff856b0b85 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000003  rbx: 0x0000000000000000  rcx: 0x0000000000000280  rdx: 0x0000000000000000
      rdi: 0x0000000000000280  rsi: 0x0000000000000000  rbp: 0x00007fff631fa0c0  rsp: 0x00007fff631fa098
       r8: 0x000000010a70ecec   r9: 0x0000000000000000  r10: 0x0000000000000440  r11: 0x0000000000000001
      r12: 0x00007fc553e72a60  r13: 0x0000000000000000  r14: 0x0000000000000000  r15: 0x00007fc553e7378c
      rip: 0x00007fff8c43df9b  rfl: 0x0000000000010202  cr2: 0x000000010a70ecec
    Logical CPU: 2
    Binary Images:
           0x1035ff000 -        0x1037e3fef  com.apple.Preview (5.5.2 - 719.25) <EF424E00-DDDF-321B-A789-8273F8BAEE48> /Applications/Preview.app/Contents/MacOS/Preview
           0x103876000 -        0x103895ff7  com.apple.MediaUI (1.0 - 1) <62F2783A-413F-3E6F-849D-B748D726DE81> /System/Library/PrivateFrameworks/MediaUI.framework/Versions/A/MediaUI
           0x103a17000 -        0x103a25fff  com.apple.Librarian (1.0.1 - 1) <8479DC40-D188-3262-B33F-BC08E46AFD4D> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
           0x105edc000 -        0x105ee2fef  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <303313AD-2D57-37A5-922B-3194C5DCD007> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x105ee9000 -        0x105eecff7  libCoreFSCache.dylib (??? - ???) <70D5EB80-24F5-3837-9302-EBD4CFCE5CBA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
           0x105ef4000 -        0x105ef4ffd +cl_kernels (??? - ???) <8F424F91-546C-4612-B8C1-F7844F9B45D7> cl_kernels
           0x105efa000 -        0x105efbff3 +cl_kernels (??? - ???) <871199D1-8041-496D-982D-7149CE363CFD> cl_kernels
           0x105f05000 -        0x105f06ffc +cl_kernels (??? - ???) <C541B738-4853-474C-BA6D-745EA88533D6> cl_kernels
           0x105f17000 -        0x105f18ff3 +cl_kernels (??? - ???) <7361CFF4-57C2-4D70-9605-5A20A94328B8> cl_kernels
           0x1082d1000 -        0x10846afff  GLEngine (??? - ???) <61484217-C41D-3A65-86BD-397ACC0D069F> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x10849e000 -        0x108597fff  libGLProgrammability.dylib (??? - ???) <7396EE13-5FA6-3E78-88D0-2502CFE79A97> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
           0x1085bd000 -        0x108885ff7  com.apple.ATIRadeonX3000GLDriver (7.18.18 - 7.1.8) <337EB117-0CB0-3C9E-AEE8-76BCB3CB9371> /System/Library/Extensions/ATIRadeonX3000GLDriver.bundle/Contents/MacOS/ATIRade onX3000GLDriver
           0x1088d0000 -        0x1088feff7  GLRendererFloat (??? - ???) <E33704BC-AA25-3279-A585-ABC6B3176D3E> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x10968c000 -        0x1096acfff  com.apple.ChunkingLibrary (1.0 - 127) <ED9D3079-A201-30D8-9FC4-2F5860100E63> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
           0x109994000 -        0x1099d1fff  com.apple.Ubiquity (1.1 - 210) <E198603B-C205-3366-82BD-7D642FF2F909> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
           0x10aa10000 -        0x10aaa3ff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <5FB796A4-1AD0-3B4D-AA83-F8A46E039224> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
        0x7fff631ff000 -     0x7fff63233baf  dyld (195.6 - ???) <0CD1B35B-A28F-32DA-B72E-452EAD609613> /usr/lib/dyld
        0x7fff81322000 -     0x7fff81328fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <D86F63EC-D2BD-32E0-8955-08B5EAFAD2CC> /usr/lib/system/libmacho.dylib
        0x7fff81329000 -     0x7fff81329fff  com.apple.quartzframework (1.5 - 1.5) <21FCC91F-C7B9-304F-8C9C-04F3924F4AE3> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
        0x7fff81680000 -     0x7fff81712ff7  com.apple.CorePDF (3.1 - 3.1) <F81F99A9-7FF6-3A6A-92C7-78C76BA35777> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
        0x7fff81713000 -     0x7fff81725ff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
        0x7fff8193a000 -     0x7fff819a5ff7  com.apple.framework.IOKit (2.0 - ???) <6C604894-7F61-3130-8499-20791D14577F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff819a6000 -     0x7fff819c6fff  libsystem_kernel.dylib (1699.26.8 - compatibility 1.0.0) <1DDC0B0F-DB2A-34D6-895D-E5B2B5618946> /usr/lib/system/libsystem_kernel.dylib
        0x7fff819c7000 -     0x7fff81a1bff7  com.apple.ScalableUserInterface (1.0 - 1) <1873D7BE-2272-31A1-8F85-F70C4D706B3B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
        0x7fff81a5f000 -     0x7fff81a7cff7  com.apple.openscripting (1.3.3 - ???) <BDCCCBA9-F440-30BD-8378-FAB5AF685A5D> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff81a7d000 -     0x7fff81a93fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
        0x7fff81a94000 -     0x7fff81b5bff7  com.apple.ColorSync (4.7.4 - 4.7.4) <590AFCDA-F10E-31FE-9B01-DA5FFE74C2BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
        0x7fff81b5c000 -     0x7fff81b60fff  libdyld.dylib (195.5.0 - compatibility 1.0.0) <F1903B7A-D3FF-3390-909A-B24E09BAD1A5> /usr/lib/system/libdyld.dylib
        0x7fff81b61000 -     0x7fff81b64fff  com.apple.AppleSystemInfo (1.0 - 1) <598ADC13-C994-3579-A885-0D6658DDD564> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
        0x7fff81b65000 -     0x7fff81b68fff  com.apple.help (1.3.2 - 42) <AB67588E-7227-3993-927F-C9E6DAC507FD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
        0x7fff81be0000 -     0x7fff81be0fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
        0x7fff81c56000 -     0x7fff81c7ffff  com.apple.CoreVideo (1.7 - 70.3) <9A9D4058-9935-3B0A-B1A6-27EB78D02249> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff81c80000 -     0x7fff81cc4ff7  com.apple.MediaKit (12 - 602) <0C2CBEDA-412F-3DDF-9C74-44114E5E0DB9> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
        0x7fff81cc5000 -     0x7fff81cc6fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff81cc7000 -     0x7fff81cddff7  com.apple.ImageCapture (7.0.1 - 7.0.1) <BF4EC1CC-C998-3529-A69F-765774C66A6F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
        0x7fff81e21000 -     0x7fff81ff5ff7  com.apple.CoreFoundation (6.7.2 - 635.21) <62A3402E-A4E7-391F-AD20-1EF20236CE1B> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
        0x7fff81ff6000 -     0x7fff82042ff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <0A7F1982-B4EA-3424-A0C7-FE46C6224F03> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
        0x7fff82043000 -     0x7fff8205dfff  com.apple.CoreMediaAuthoring (2.0 - 891) <C7A92C52-AD9F-3CF1-86D5-C0714118935C> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
        0x7fff8205e000 -     0x7fff8205efff  com.apple.ApplicationServices (41 - 41) <03F3FA8F-8D2A-3AB6-A8E3-40B001116339> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
        0x7fff8205f000 -     0x7fff82348ff7  com.apple.security (7.0 - 55148.1) <E9C46204-1336-3D90-BC67-5162FC7079D2> /System/Library/Frameworks/Security.framework/Versions/A/Security
        0x7fff82349000 -     0x7fff823dcff7  com.apple.PDFKit (2.6.3 - 2.6.3) <49BF9CDC-E902-3CAC-9C04-3302545907D5> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff823dd000 -     0x7fff823f4fff  com.apple.CFOpenDirectory (10.7 - 144) <9709423E-8484-3B26-AAE8-EF58D1B8FB3F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
        0x7fff8312d000 -     0x7fff83132fff  libGIF.dylib (??? - ???) <8763F67F-A881-30B6-B20E-D395B4D9FD58> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
        0x7fff83133000 -     0x7fff83139fff IOSurface (??? - ???) <77C6757B-D357-3E34-9424-48F962B5CC9C> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
        0x7fff8313a000 -     0x7fff831beff7  com.apple.ApplicationServices.ATS (317.11.0 - ???) <082DEAFE-8A93-3AF2-B4E5-30012E725929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
        0x7fff831cf000 -     0x7fff8324aff7  com.apple.print.framework.PrintCore (7.1 - 366.3) <C5F39A82-0E77-3AD6-906A-20DD2EE8D374> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
        0x7fff8324b000 -     0x7fff83274fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff83275000 -     0x7fff832ddff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
        0x7fff8331f000 -     0x7fff83320fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <853BAAA5-270F-3FDC-B025-D448DB72E1C3> /usr/lib/system/libdnsinfo.dylib
        0x7fff83321000 -     0x7fff83341fff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
        0x7fff83342000 -     0x7fff83342fff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
        0x7fff83343000 -     0x7fff83427fff  com.apple.CoreServices.OSServices (478.46 - 478.46) <70BEE269-8F4D-3FDC-B1AD-A591C0CB37E5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
        0x7fff83428000 -     0x7fff838effff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <BDD0E1DE-CF33-3AF8-B33B-4D1574CCC19D> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
        0x7fff838f0000 -     0x7fff838f4fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
        0x7fff838f5000 -     0x7fff83957ff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff83958000 -     0x7fff83980fff  com.apple.PerformanceAnalysis (1.11 - 11) <8D4C6382-DD92-37A2-BCFC-E89951320848> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
        0x7fff83981000 -     0x7fff83a17ff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
        0x7fff83a37000 -     0x7fff83b9efff  com.apple.CFNetwork (520.4.3 - 520.4.3) <31D7A595-375E-341A-8E97-21E73CC62E4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
        0x7fff83b9f000 -     0x7fff83fd2ff7  com.apple.VideoToolbox (1.0 - 705.78) <7F115540-88CF-3087-951A-7073F7D58F4D> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
        0x7fff83fd3000 -     0x7fff83fd8fff  libcache.dylib (47.0.0 - compatibility 1.0.0) <B7757E2E-5A7D-362E-AB71-785FE79E1527> /usr/lib/system/libcache.dylib
        0x7fff84208000 -     0x7fff84521fff  com.apple.Foundation (6.7.2 - 833.25) <22AAC369-B63C-3C55-8AC6-C3ECBA44DA7B> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
        0x7fff84522000 -     0x7fff84527ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
        0x7fff84528000 -     0x7fff84535ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <8EDE3492-D916-37B2-A066-3E0F054411FD> /usr/lib/libbz2.1.0.dylib
        0x7fff84539000 -     0x7fff8458cfff  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <E3FE9B47-2276-3316-B2D2-85784AD2D9B3> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
        0x7fff8458d000 -     0x7fff848a9fff  com.apple.CoreServices.CarbonCore (960.24 - 960.24) <6F99A26B-788F-37B9-860F-508906EC06D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
        0x7fff848aa000 -     0x7fff84906ff7  com.apple.HIServices (1.21 - ???) <9645CFA8-63BE-3A0D-A636-56D9827E6C8C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
        0x7fff84907000 -     0x7fff8490eff7  com.apple.CommerceCore (1.0 - 17) <AA783B87-48D4-3CA6-8FF6-0316396022F4> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff8496c000 -     0x7fff84997ff7  com.apple.CoreServicesInternal (113.17 - 113.17) <B1DF81C3-9C23-3BAE-9DE8-21EAFEEB97B8> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
        0x7fff84998000 -     0x7fff8499efff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
        0x7fff8499f000 -     0x7fff8499ffff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
        0x7fff849a0000 -     0x7fff849b5fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
        0x7fff84ad8000 -     0x7fff84afcfff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff84afd000 -     0x7fff84afdfff  com.apple.Cocoa (6.6 - ???) <021D4214-9C23-3CD8-AFB2-F331697A4508> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
        0x7fff84afe000 -     0x7fff84bf3fff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
        0x7fff84c6e000 -     0x7fff84c6fff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
        0x7fff84ca6000 -     0x7fff84d8ae5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
        0x7fff84d8b000 -     0x7fff84dc6fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
        0x7fff84dc7000 -     0x7fff84df7ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff84df8000 -     0x7fff85301ff7  com.apple.RawCamera.bundle (3.14.0 - 646) <75A96BFC-1832-808B-F430-C4C9379C5A98> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
        0x7fff85302000 -     0x7fff8530ffff  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <528BAA66-C38C-3093-84B5-92A7832CE7BC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
        0x7fff85561000 -     0x7fff8565eff7  com.apple.avfoundation (2.0 - 180.40) <ED3DCB15-7E88-34FD-9E56-4ECAD10A6E7E> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
        0x7fff8565f000 -     0x7fff8573cfef  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <41B43515-2806-3FBC-ACF1-A16F35B7E290> /usr/lib/system/libsystem_c.dylib
        0x7fff8573d000 -     0x7fff8576afff  com.apple.quartzfilters (1.7.0 - 1.7.0) <ED846829-EBF1-3E2F-9EA6-D8743E5A4784> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
        0x7fff86249000 -     0x7fff86473fe7  com.apple.CoreData (104.1 - 358.14) <6BB64605-8DA7-337D-A2AB-A3346A421CBD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
        0x7fff86474000 -     0x7fff86552fff  com.apple.DiscRecording (6.0.4 - 6040.4.1) <E6D5835F-EE3C-3814-A2EE-6962B5570EF1> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
        0x7fff86553000 -     0x7fff8655cff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
        0x7fff8658a000 -     0x7fff86591fff  com.apple.NetFS (4.0 - 4.0) <B9F41443-679A-31AD-B0EB-36557DAF782B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
        0x7fff86592000 -     0x7fff86b76fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
        0x7fff86b77000 -     0x7fff86be7fff  com.apple.datadetectorscore (3.0 - 179.4) <9C01D16F-75A9-3BDD-B91A-F0F32261A2E7> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff86be8000 -     0x7fff86be8fff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff86be9000 -     0x7fff86be9fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
        0x7fff86bea000 -     0x7fff86beafff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
        0x7fff86c68000 -     0x7fff86cebfef  com.apple.Metadata (10.7.0 - 627.32) <38735923-2EB5-3133-BE36-BDD65A7E47DB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff86def000 -     0x7fff86df0fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
        0x7fff86e0e000 -     0x7fff86e62fff  libFontRegistry.dylib (??? - ???) <822DD341-C735-36C9-9521-E8E98807D09D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
        0x7fff86e92000 -     0x7fff86eccfe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff86ecd000 -     0x7fff86ed2fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
        0x7fff871b7000 -     0x7fff87310fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff87311000 -     0x7fff8731cff7  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <6540EAF2-E3BF-3D2E-B4C1-F106180D6F20> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
        0x7fff8731d000 -     0x7fff87334fff  com.apple.MultitouchSupport.framework (231.4 - 231.4) <10A978D1-8781-33F0-BE45-60C9171F7278> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
        0x7fff87335000 -     0x7fff8738dfff  libTIFF.dylib (??? - ???) <A0FF68DE-2935-30E7-B61C-4D9D70E14AD0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
        0x7fff8738e000 -     0x7fff87518fff  com.apple.QTKit (7.7.1 - 2330) <4B5363D4-4854-342F-8B95-DE6559075B46> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
        0x7fff87519000 -     0x7fff87524ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <F260D4A7-C727-3FB6-8525-50E279BF9BAF> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff87525000 -     0x7fff87604ff7  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <FFA7532B-336A-3F0B-9AB9-2A35B56ED887> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
        0x7fff87772000 -     0x7fff87839ff7  ColorSyncDeprecated.dylib (4.6.0 - compatibility 1.0.0) <7E2E109C-A438-3EDC-A6EB-3EF634A1B28B> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
        0x7fff8783a000 -     0x7fff8787aff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <5328C0AB-F169-3786-A3EC-9E82E960CAAF> /usr/lib/libcups.2.dylib
        0x7fff8787b000 -     0x7fff87886ff7  com.apple.aps.framework (2.1 - 2.1) <D0C49BA6-A5FB-3DBD-AFCC-7B6F056A57A7> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
        0x7fff87887000 -     0x7fff87889fff  libCVMSPluginSupport.dylib (??? - ???) <1C73D331-6F6C-3872-A011-1C41FBF49F2A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
        0x7fff87a89000 -     0x7fff87a9bff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
        0x7fff87b13000 -     0x7fff87b70ff7  com.apple.QuickLookFramework (3.2 - 500.16) <46017A4B-9E2B-329C-A8D9-2C11DE6C1A47> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff87b86000 -     0x7fff87bc8ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <A5B9778E-11C3-3F61-B740-1F2114E967FB> /usr/lib/system/libcommonCrypto.dylib
        0x7fff87bc9000 -     0x7fff87bcbfff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff87bee000 -     0x7fff87e63ff7  com.apple.imageKit (2.1.2 - 1.0) <5BAA52A9-F359-31E4-8109-74EBCEB626B4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
        0x7fff87e8e000 -     0x7fff87ed5ff7  com.apple.CoreMedia (1.0 - 705.78) <F6EA2328-FD3E-3057-80C7-C9845837F863> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
        0x7fff87ed6000 -     0x7fff87ee5ff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
        0x7fff87ee6000 -     0x7fff87f4ffff  com.apple.coreui (1.2.2 - 165.10) <F427BF39-3E01-3DC6-A63D-BFC50FE6C72E> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
        0x7fff87f8f000 -     0x7fff87fabff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff87fac000 -     0x7fff87fbafff  com.apple.NetAuth (1.0 - 3.0) <F384FFFD-70F6-3B1C-A886-F5B446E456E7> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
        0x7fff87fe7000 -     0x7fff8808cfff  com.apple.ink.framework (1.4 - 110) <F93B76B3-E57C-3805-B20D-03717A3F91DD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
        0x7fff8808d000 -     0x7fff88187ff7  com.apple.DiskImagesFramework (10.7.4 - 331.6) <C7860B00-E1CF-3851-9A3B-9F145B7F498F> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
        0x7fff88188000 -     0x7fff8818afff  libquarantine.dylib (36.6.0 - compatibility 1.0.0) <0EBF714B-4B69-3E1F-9A7D-6BBC2AACB310> /usr/lib/system/libquarantine.dylib
        0x7fff8818b000 -     0x7fff8838dfff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
        0x7fff8838e000 -     0x7fff88390ff7  com.apple.print.framework.Print (7.4 - 247.3) <626C58D5-2841-3329-8C32-9F4A8353F3E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
        0x7fff88391000 -     0x7fff883d0fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
        0x7fff883d1000 -     0x7fff883d7ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
        0x7fff883d8000 -     0x7fff88b6cfef  com.apple.CoreAUC (6.16.11 - 6.16.11) <3D40FEA5-AFE7-3752-A52E-D0F80304320A> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
        0x7fff88b6d000 -     0x7fff88b72fff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
        0x7fff88b77000 -     0x7fff88ea3ff7  com.apple.HIToolbox (1.9 - ???) <B7D2A06B-7BE5-3355-BF7D-8139100B9B97> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
        0x7fff88ef1000 -     0x7fff88f1cff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <E71220D3-8015-38EC-B97D-7FDB383C2BDC> /usr/lib/libxslt.1.dylib
        0x7fff88f1d000 -     0x7fff88f2fff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
        0x7fff88f30000 -     0x7fff89252fe7  com.apple.JavaScriptCore (7534.56 - 7534.56.6) <675725F8-37C4-3B80-ADB0-7B6AE908A908> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
        0x7fff89253000 -     0x7fff89680fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
        0x7fff89794000 -     0x7fff897bafff  com.apple.framework.familycontrols (3.0 - 300) <93828BC1-3D83-3A93-99A5-F0E7951AFC6C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff897bb000 -     0x7fff897bbfff  com.apple.Carbon (153 - 153) <895C2BF2-1666-3A59-A669-311B1F4F368B> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
        0x7fff897bc000 -     0x7fff89b65fef  com.apple.MediaToolbox (1.0 - 705.78) <A4DF8258-0CB9-3244-BF12-3AD02B1952B0> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
        0x7fff89b66000 -     0x7fff89ba1fff  com.apple.LDAPFramework (3.2 - 120.2) <A2675243-9122-308D-A5C8-9C1C4FE7639D> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
        0x7fff89ba2000 -     0x7fff89ba6fff  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <2B1215A0-1B43-39C3-B4F4-392D71D08FFA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
        0x7fff89ba7000 -     0x7fff89baefff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <172B1985-F24A-34E9-8D8B-A2403C9A0399> /usr/lib/system/libcopyfile.dylib
        0x7fff89baf000 -     0x7fff89bb5fff  libGFXShared.dylib (??? - ???) <8A61FA67-EB3C-319D-AE3C-64936FB26BAC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
        0x7fff89bb6000 -     0x7fff89ccffff  com.apple.DesktopServices (1.6.3 - 1.6.3) <20812ECE-CACC-3D44-8108-025EF6B45C14> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
        0x7fff89cd8000 -     0x7fff89d17ff7  libGLImage.dylib (??? - ???) <49BB4404-68F1-3839-A5C9-983405B59F52> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
        0x7fff8a735000 -     0x7fff8a83cfe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
        0x7fff8a83d000 -     0x7fff8a870ff7  com.apple.GSS (2.2 - 2.0) <971395D0-B9D0-3FDE-B23F-6F9D0A2FB95F> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
        0x7fff8a92b000 -     0x7fff8a92cfff  libunc.dylib (24.0.0 - compatibility 1.0.0) <C67B3B14-866C-314F-87FF-8025BEC2CAAC> /usr/lib/system/libunc.dylib
        0x7fff8a95e000 -     0x7fff8a9afff7  com.apple.CoreMediaIO (212.0 - 3199.1.1) <D8C364AF-A1E8-3215-ABF5-188B50A80B18> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff8a9b0000 -     0x7fff8aa26fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
        0x7fff8aa27000 -     0x7fff8aa87fff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8aa88000 -     0x7fff8aab5ff7  com.apple.opencl (1.50.69 - 1.50.69) <57939F7D-3626-30E2-883D-8A7CCB3F8763> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
        0x7fff8aab6000 -     0x7fff8aafaff7  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <22B2A10A-34B5-3787-88C9-B2722FE79504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
        0x7fff8aafb000 -     0x7fff8abfbfff  com.apple.QuickLookUIFramework (3.2 - 500.16) <0BACF8C4-5A7B-31EE-B4AA-3CCF8615C9A8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff8abfc000 -     0x7fff8abfdff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
        0x7fff8abfe000 -     0x7fff8ac1dfff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
        0x7fff8ac1e000 -     0x7fff8ac57fe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
        0x7fff8ac58000 -     0x7fff8ac63ff7  com.apple.DisplayServicesFW (2.5.4 - 323.3) <5E7F7A88-9313-3C31-87BD-80F3361DA338> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
        0x7fff8ac64000 -     0x7fff8ac72fff  libdispatch.dylib (187.9.0 - compatibility 1.0.0) <1D5BE322-A9B9-3BCE-8FAC-076FB07CF54A> /usr/lib/system/libdispatch.dylib
        0x7fff8b105000 -     0x7fff8b153fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
        0x7fff8b154000 -     0x7fff8b1aeff7  com.apple.ImageCaptureCore (3.0.3 - 3.0.3) <12C722EE-3A13-3937-ABDF-EDC922F4C299> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff8b1af000 -     0x7fff8b1c3ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
        0x7fff8b1c4000 -     0x7fff8b5e1ff7  com.apple.SceneKit (125.3 - 125.4) <12AD6DBE-F3A3-34D6-BA01-B211BEAFD48F> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
        0x7fff8b60b000 -     0x7fff8b690ff7  com.apple.Heimdal (2.2 - 2.0) <FF0BD9A4-6FB0-31E3-ABFB-563FBBEC45FC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
        0x7fff8b6d2000 -     0x7fff8b72bfff  MetadataLib.dylib (3.14.0 - compatibility 2.2.1) <DCA76A5E-14B4-3260-8C00-7C4EE675E049> /System/Library/CoreServices/RawCamera.bundle/Contents/Resources/MetadataLib.dy lib
        0x7fff8b72c000 -     0x7fff8b73cff7  com.apple.opengl (1.7.7 - 1.7.7) <0CA11278-746C-353A-923B-BCC0047190C3> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8b73d000 -     0x7fff8b741ff7  com.apple.CommonPanels (1.2.5 - 94) <0BB2C436-C9D5-380B-86B5-E355A7711259> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff8b7b6000 -     0x7fff8b7b9ff7  com.apple.securityhi (4.0 - 1) <B37B8946-BBD4-36C1-ABC6-18EDBC573F03> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
        0x7fff8b7ba000 -     0x7fff8b7c4ff7  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <6ECB7F19-B384-32C1-8652-2463C1CF4815> /usr/lib/system/liblaunch.dylib
        0x7fff8b7c5000 -     0x7fff8c3cbff7  com.apple.AppKit (6.7.3 - 1138.47) <CAF5783F-F80B-30E7-929F-BBA6D96C5C44> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff8c3cc000 -     0x7fff8c3f0fff  com.apple.RemoteViewServices (1.4 - 44.1) <EA3837DF-A3A3-37FF-AE11-D50048D5F21A> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
        0x7fff8c3f1000 -     0x7fff8cd8ec9f  com.apple.CoreGraphics (1.600.0 - ???) <1DB9C92C-DFA8-36ED-B513-998134462148> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
        0x7fff8cd8f000 -     0x7fff8cde1ff7  libGLU.dylib (??? - ???) <E2EF0336-3A5F-3532-AEB0-6CCF04851B72> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8cde2000 -     0x7fff8ce58fff  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <DA22E4D6-7F20-3BEA-9B89-2FBA735C2EE1> /usr/lib/libc++.1.dylib
        0x7fff8ce59000 -     0x7fff8ceccfff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
        0x7fff8cecd000 -     0x7fff8d003fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
        0x7fff8d004000 -     0x7fff8d017ff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
        0x7fff8d018000 -     0x7fff8d035fff  libxpc.dylib (77.19.0 - compatibility 1.0.0) <9F57891B-D7EF-3050-BEDD-21E7C6668248> /usr/lib/system/libxpc.dylib
        0x7fff8d036000 -     0x7fff8d2a9fff  com.apple.CoreImage (7.98 - 1.0.1) <73485E4E-1407-3913-AB3C-B54986A3E01C> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff8d2aa000 -     0x7fff8d2b5fff  com.apple.CommonAuth (2.2 - 2.0) <77E6F0D0-85B6-30B5-B99C-F57104DD2EBA> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
        0x7fff8d2fc000 -     0x7fff8d3afff7  com.apple.CoreText (220.20.0 - ???) <0E979362-15E4-3955-BF54-B5961361D1CC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
        0x7fff8d3b0000 -     0x7fff8d3bbff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
        0x7fff8d42d000 -     0x7fff8d435fff  libsystem_dnssd.dylib (??? - ???) <D9BB1F87-A42B-3CBC-9DC2-FC07FCEF0016> /usr/lib/system/libsystem_dnssd.dylib
        0x7fff8d436000 -     0x7fff8d461fff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
        0x7fff8d462000 -     0x7fff8d470ff7  libkxld.dylib (??? - ???) <C2FC894F-3716-32C3-967E-6AD5E2697045> /usr/lib/system/libkxld.dylib
        0x7fff8d471000 -     0x7fff8d474fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
        0x7fff8d510000 -     0x7fff8d5aaff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
        0x7fff8d5c4000 -     0x7fff8d665ff7  com.apple.LaunchServices (480.33 - 480.33) <45EF2044-3396-3910-9B5B-C8F7777D5F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
        0x7fff8d769000 -     0x7fff8d908ff7  com.apple.QuartzCore (1.7 - 270.4) <97E20A5F-652B-3E85-8C46-DCB777248ECD> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
        0x7fff8d935000 -     0x7fff8d962fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
        0x7fff8d96f000 -     0x7fff8da74fff  libFontParser.dylib (??? - ???) <759645F2-8CB1-358C-AF41-BA3797CD0F60> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
        0x7fff8da75000 -     0x7fff8db17fff  com.apple.securityfoundation (5.0 - 55116) <A9311EF6-B7F7-3DA5-84E8-21BC9B2C3C69> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff8db18000 -     0x7fff8db1bfff  libCoreVMClient.dylib (??? - ???) <934D0D11-C34F-3C06-A352-21BB8FFE9774> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
        0x7fff8db51000 -     0x7fff8dc5dfff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff8dc5e000 -     0x7fff8dc9ffff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
        0x7fff8dca0000 -     0x7fff8dca1ff7  libsystem_sandbox.dylib (??? - ???) <96D38E74-F18F-3CCB-A20B-E8E3ADC4E166> /usr/lib/system/libsystem_sandbox.dylib
        0x7fff8dca2000 -     0x7fff8df10ff7  com.apple.QuartzComposer (5.0 - 236.7) <D556126B-3D67-3E37-82E0-D06532DE0C89> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
        0x7fff8df9b000 -     0x7fff8e09dfff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <AFBB22B7-07AE-3F2E-B88C-70BEEBFB8A86> /usr/lib/libxml2.2.dylib
        0x7fff8e09e000 -     0x7fff8e1abfff  libJP2.dylib (??? - ???) <5BE8CFA7-00C2-3BDE-BC20-5FF6DC18B415> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
        0x7fff8e1d4000 -     0x7fff8e21afff  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <2C442396-1006-3765-92D2-60869D4641CE> /usr/lib/libcurl.4.dylib
        0x7fff8e29e000 -     0x7fff8e2a3fff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 9
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 4954
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=194.3M resident=85.8M(44%) swapped_out_or_unallocated=108.6M(56%)
    Writable regions: Total=992.5M written=350.3M(35%) resident=830.7M(84%) swapped_out=0K(0%) unallocated=161.9M(16%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    CG backing stores                 249.7M
    CG image                           3056K
    CG raster data                     1472K
    CG shared images                   4624K
    CoreAnimation                      4104K
    CoreGraphics                         16K
    CoreImage 8K
    CoreServices                       1324K
    IOKit                             333.9M
    IOKit (reserved)                   26.0M        reserved VM address space (unallocated)
    MALLOC                            380.0M
    MALLOC guard page                    48K
    Memory tag=240                        4K
    Memory tag=242                       12K
    Memory tag=251                       88K
    OpenCL                               44K
    OpenGL GLSL                        1372K
    OpenGL GLSL (reserved)              128K        reserved VM address space (unallocated)
    STACK GUARD                        56.0M
    Stack                              11.0M
    VM_ALLOCATE                        16.7M
    __CI_BITMAP                          80K
    __DATA                             17.4M
    __IMAGE                             528K
    __LINKEDIT                         48.6M
    __RC_CAMERAS                        248K
    __TEXT                            145.8M
    __UNICODE                           544K
    mapped file                       210.2M
    shared memory                       9.8M
    ===========                      =======
    TOTAL                               1.5G
    TOTAL, minus reserved VM space      1.5G
    Model: iMac12,1, BootROM IM121.0047.B1F, 4 processors, Intel Core i5, 2.7 GHz, 4 GB, SMC 1.71f22
    Graphics: AMD Radeon HD 6770M, AMD Radeon HD 6770M, PCIe, 512 MB
    Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020
    AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x9A), Atheros 9380: 4.0.64.8-P2P
    Bluetooth: Version 4.0.5f11, 2 service, 18 devices, 1 incoming serial ports
    Network Service: Ethernet, Ethernet, en0
    Network Service: Wi-Fi, AirPort, en1
    Serial ATA Device: ST31000528AS, 1 TB
    Serial ATA Device: OPTIARC DVD RW AD-5690H
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfa100000 / 3
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
    USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x8215, 0xfa111000 / 7
    USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x850b, 0xfa200000 / 2
    USB Device: hub_device, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
    USB Device: Generic USB Hub, 0x058f  (Alcor Micro, Corp.), 0x9254, 0xfd140000 / 5
    USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0xfd110000 / 4
    USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd120000 / 3

Maybe you are looking for

  • HT2534 Can my family use my iTunes music, yet have separate accounts?

    So here it is.  I've got my family.  We all have apple devices, each has an iPad, iPhone and then two computers.  Family of 4.  My wife has her account and my daughter shares that.  My son is on my account.  But I want to change that after my son spe

  • Question about Aperture library size

    I am storing my photos on a secondary drive. However, my Aperture library is just as large as the original source folder even though I am not copying the images into the library. Shouldn't the library be smaller since it only references the images fr

  • Process chains trigger process

    Hi, I am using process chains to load the data and the respective processes after load. I scheduled the process chains to trigger every day. But our systems will be down for back up on a weekly basis.So is there any way I can stop this scheduled jobs

  • Using A JTree Model to Open Files

    Hello all, How can I open the files that are displayed in the JTree? I have a JTree with names of the files that are saved on my hardesk, but I can't use the JTree to open these files. I have already implemented the TreeSelectionListener.

  • After Effects CC: how to retain Camera Raw's settings when opening the project from a different drive

    I want to open a project from a drive which is different than the original one, but which has exactly the same folder structure and files as the original drive. When opening the project, all files appear as missing because the drive is different. Whe