Interfacing a C++ Console Application Genetic Algorithm with LabVIEW

Hi,
I am have recently modified the GENESIS genetic algorithm using C++ so that it runs on a Windows machine (before it only ran under UNIX). In my experimental work the aim is to control everything using LabVIEW, including this Genetic algorithm.
My problem comes from the fact that the Genetic Algorithm is set-up as a console application, a library file is created  containing the input parameters of the VI, then this is joined with an evaluation function that is dependant on the library file an an executable is created.
I need to take some information collected from LabVIEW and give it to the genetic algorithm, but I don't know how to do this.
Any Ideas?
Thanks
Alan Homer

You can run most applications from a command line using the location/application.exe (where the location is where the executable is stored), all c++ applications run using:   int main (int argc, char **argv); where the argc is the number of arguments and argv is essentially a string table with the parameters passed to the program (will be used as code) the output if a command line application is the std out which can be piped to file or wired out from the standard out terminal.  To pass parameters from your LV code to the command line you should know the parameter list (sometimes empty). 
Paul
Paul Falkenstein
Coleman Technologies Inc.
CLA, CPI, AIA-Vision
Labview 4.0- 2013, RT, Vision, FPGA

Similar Messages

  • Console Application to run with window open

    Hi Guys
    I have a Console Application that I wrote and it working perfectly when I run it manually. It can create report using Crystal Reports, exports to PDF and then print.
    My challenge was when I ran it as a task, the reports are created but its not printing, my default PDF view is Adobe.
    How can I run my app with the Window open because I think that's causing it not to print
    Brian

    After doing some searches it turned out the issue I had was with Adobe Reader XI, when run from Task Manager it always gives problems so.
    I ended up using PDF XChange Viewer for printing and I can now print my PDFs with no Windows popoing up. I installed the free Viewer and call it from my code to print.
    Process.Start("C:\Program Files\Tracker Software\PDF Viewer\pdfxcview.exe", " /print:printer=""" & PrinterName & """ """ & pdfFileName & """")

  • Genetic Algorithms in Labview

    I'd like to implement some diagnostic applications in Labview, using
    genetic algorithms and fuzzy logic. Anyone can give me some guidelines
    to do this?
    Best Regards,
    Sérgio Cruz

    wrote:
    > I'd like to implement some diagnostic applications in Labview, using
    > genetic algorithms and fuzzy logic. Anyone can give me some guidelines
    > to do this?
    >
    I have implemented a genetic algorithm based control of a mobile robot
    using Mathematica Link for LabVIEW http://www.e-notebooks.com/products/
    link/. LabVIEW is in charge of communication with the robot, Mathematica
    was more suitable to implement the GA. I can provide with more details if
    you wish.
    Jean.
    e-NoteBooks Ltd
    http://www.e-notebooks.com
    http://www.sstreams.com
    Sent via Deja.com http://www.deja.com/
    Before you buy.

  • Hello, how can I interface a princeton ccd camera (microscope camera) with labview??

    Hello,
    Im trying to connect my microscope cam to labview, but Im getting started with labview,
    my camera is managed by  a software called win view and it works; but I'm trying to control the camera by labview.
    what's the way to allow labview to see my cam??
    best regards

    Hi Marcio,
    it is important to have right information on the hardware you are using. in particular which is your camera type (FireWire, analogic, Camera Link, GigaEthernet, USB) and if you have the drivers of your image acquisition board.
    Have you got LabVIEW Development System only? Which version? Do you have others NI LabVIEW Modules or NI Softwares (for instance NI Vision)?
    I'm waiting for your news.
    Hudson | AE NIIT

  • Levy flight or firefly algorithm in Labview or matlab

    Hello,
    Has anyone used Levy flight algorithm with Labview. Is there any toolkit  or library to implement this algorithm in Labview or at least a Matlab code that can be coupled with Labview via Mathscript??
    Thanks,
    Zied

    If you search the Web for "Levy Flight", you will find Matlab code.
    Bob Schor

  • Which is better approach to manage sharepoint online - PowerShell Script with CSOM or Console Application with CSOM?

    Which is better approach to manage sharepoint online - PowerShell Script with CSOM or Console Application with CSOM?
    change in sharepoint scripts not require compilation but anything else?

    Yes, PowerShell is great, since you can quick change your code without compilation.
    SP admin can write ps scripts without specific tools like Visual Studio.
    With powershell you can use cmdlets,
    which could remove a lot of code, for example restarting a service.
    [custom.development]

  • Code source works fine from console application but not from SharePoint interface

    Hi;
    Please can you help
    me to understand why my code below works fine from console application (VS 2010) and not working from interface of my SharePoint collection site :
    From console application : the subsite is created and I can to open without any problem
    From Sharepoint GUI : the subsite is created but impossible
    to open subsite : error 404 page not found ?
    The subsite creation is very long (2 minutes) and in concole application When I try to open the subsite just after its creation I have page not found and I must waits (several refresh) more time to open the subsite correctly.
    Can be I must to display a PoPup to show the progress creation ?
    using System;
    using System.Security.Permissions;
    using Microsoft.SharePoint;
    using Microsoft.SharePoint.Security;
    using Microsoft.SharePoint.Utilities;
    using Microsoft.SharePoint.Workflow;
    namespace CreateSubSiteClients.EventReceiver1
        public class EventReceiver1 : SPItemEventReceiver
            public override void ItemAdded(SPItemEventProperties properties)
                     base.ItemAdded(properties);
                     try
                         SPWeb web = properties.OpenWeb();
                         if (properties.List.Title == "REFCLIENTS")
                             SPListItem curItem = properties.ListItem;
                             string name = properties.ListItem["SITE"].ToString();
                             curItem["SiteUrl"] = web.Url + "/" + name;
                             SPWeb rootWeb = web.Site.RootWeb;
                             SPWebTemplateCollection webTemplates = rootWeb.GetAvailableWebTemplates(1036);
                             SPWebTemplate webTemplate = null;
                             String webTemplateName = "ModeleSiteCourrier";
                             String webTemplateSearchName = "";
                             for (int i = 0; i < webTemplates.Count; i++)
                                 webTemplateSearchName = webTemplates[i].Name.ToString();
                                 if (webTemplateSearchName.Contains(webTemplateName))
                                     webTemplate = webTemplates[webTemplateSearchName];
                                     break;
                           SPWeb newSite = web.Webs.Add(name, name, name, Convert.ToUInt16(1036), webTemplate, false, false);
                            newSite.Navigation.UseShared = true;
                            newSite.Update();
                            newSite.Close();
                            Console.WriteLine("Le site suivant a été crée", name);
                     catch (Exception ex)
                         properties.Status = SPEventReceiverStatus.CancelWithError;
                         properties.ErrorMessage = ex.Message.ToString();
                         properties.Cancel = true;
    Regards

    Hi,
    To create subsite using event receiver in SharePoint Empty Project, you can refer to:
    Sharepoint 2010 event handler to create subsites
    To display a PoPup to show the progress creation, you can use:  MessageBox.Show("Hello, world.");
    More information:
    MessageBox.Show Method (String)
    Best Regards,
    Linda Li
    Linda Li
    TechNet Community Support

  • Console Application update with JNLP?

    Hello!
    I want to do create an update package with Java Web Start. But I recognized that it maybe doesn't work as I want.
    My Application is a Java application which runs in a console. It consists of more jar Files and it will be started with a shell script file (under windows with a command file and under unix with a as script).
    So some of these jar Files changes irregular and some people use this application.
    The update method today is E-Mail.
    The future should be an automatic update at every start of this application.
    My problem is that I don't know if I can realize my project with Java Web Start. Because I understand Java Web Start as an environment of which can start only one jar file from the web and keep them up to date.
    Or is my project also possible with this Java Web Start?
    When yes, then can you tell me some references or how I can do this?
    Thank you
    user0009

    Hi
    I am now facing some trouble with the console application deployed with ClickOnce. I am getting the following error
    "Unhandled Exception: System.IO.FileNotFoundException: Retrieving the COM class factory for component with CLSID (6DA215C2-D80D-42F2-A514-B44A16DCBAAA) failed due to the following error:8007007e The specified module could not be found. (Exception from
    HRESULT: 0x8007007E).
         at Microsoft.VisualStudio.TestTools.UItest.Payback.creenElement.InitPlayback()
         at Microsoft.VisualStudio.TestTools.UItesting.Playback.ScreenElement.Initialize()
         at ConsoleNP.Program>main(String[] args)"
    My target system in not having VS installed in it. Can anyone tell me why I am getting this error and how to overcome this problem. Am I missing to add any dll? should I make any specific changes while publishing the application.
    Thanks and Regards,
    Hello,
    To narrow down this issue, I would recommend you check whether these dlls for that method have been registered successfully.
    Honestly, I am not a VS test expert, maybe you could just install this anget instead, you could switch to the other version for the one you are using.
    #Agents for Visual Studio 2012 Update 4
    http://www.microsoft.com/en-us/download/details.aspx?id=38186 .
    Regards,
    Carl
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • C# Console Application with Cloud Services

    Hi All,
    can anyone tell how we can host our console application on windows Azure Cloud Service OR is it possible to host Console application on Azure Cloud Service.
    Thanks in Advance.
    Pravin Dhulap

    Hi,
    A cloud service consists of one or more web roles and/or worker roles, As far as I know, we can't host console application to azure cloud service directory, however, we can convert the console application to worker role, see the detailed steps here:
    http://blogs.lessthandot.com/index.php/desktopdev/mstech/converting-a-net-console-project/ , after these steps, a Console project promoted to Azure Worker Role.
    Best Regards,
    Jambor
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Unable to load the user interface-please reinstall the application-Audigy 2 zs Platinum

    unable to load the user interface-please reinstall the application---this is the message I get when my pc starts------Someone messing around with my computer tried to delete creative media source player 3 when they saw I had both 3 and 5 in folder and i get this error message every time I start my pc. In addition to this I have lost my EAX and THX consoles and my speaker settings are gone so I cannot adjust my 5. system at all. After I delete that error message when I click on the creative icon is sys tray instead of opening up the creative media player I get the error message--unable to load needed componants. Please reinstall the application. this is media player 3[version 3.32.]. I dont know why during the auto?updates through the last couple of years I have media player 3 in sys tray and if I need version 5 it is in file with 3--start-all programs-creative--any way my pc is a Cyberpower AMD FX-53 using win xp pro-32 bit-- and of course its a OEM product so they tell me the only way to get it to work is use the restoration cd they gave me when I bought the pc and it will revert back to its original state as when purchased. I would lose all my games, music, pictures?ect and would have to start from scratch.[ OR of course back everything up on a portable hard dri've]?It seems like there should be an easier way --hell I might as well buy a new soundcard and it would make it easier. If anyone?has an answer for someone who is not a tech head so I can understand please help !!--thank you in advance for any assistance as it is greatly appreciated. Sorry this message is so long winded, just irritating to have spen so much for a pc and not have the original installation disc.-tried moving to another slot and the fixes I saw posted here with no luck---thank you folks again--Tom

    All the issues you guys are talking about have been reported in beta stage of these new drivers. I would say none of them has been fixed yet. The only solution for now is to use previous drivers which work fine or use some modified drivers which fixes some issues, but not all. Your choice.
    [url="http://connect.creativelabs.com/windows/Lists/Audigy%20Issues/AllItems.aspx">Bug List[/url]
    Message Edited by ronon0 on 08-07-2008 :47 AM

  • Can't access community members list in event receiver when item is updated in console application

    Hi,
    we attached an event receiver to a list in a community site template. In the ItemUpdated event we access different lists from the site. Everything is working fine when we update a list item in the web frontend logged in as Administrator (application pool
    identity Administrator).
    Updating an list item in a console application running as Administrator triggers the ItemUpdated event and accesses all lists - only the Community Member list can't be accessed.
    SPWeb spWeb = properties.OpenWeb();
    Guid communityMembersListGuid = new Guid("3b56d08b-be6b-408b-a2aa-c08722ad499b");
    SPList communityMembersList = spWeb.Lists[communityMembersListGuid];
    We added the Administrator with full access to the list, run the code with RunWithElevatedPrivileges and initialized the spSite with the account-token of the administrator. Nothing works.
    Any idea?
    Greetings Peter

    Hi,
    Please try to use the following code blow:
    SPWeb spWeb = properties.Web;
    SPList communityMembersList = spWeb.Lists["Community Members"];
    If the issue still exists, I suggest you debug your code and provide the detail error message for further research.
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Getting error while creating SPSite object in console application

    Hi,
    I am getting error "The Web application at
    http://myWebApp/sites/siteCol could not be found. Verify that you have typed the URL correctly. If the URL should be serving existing content, the system administrator may need to add a new request URL mapping to the intended application." whenever
    I try to execute the below code in my console application.
    SPSite oSite = new SPSite("sitecolUrl");
    I tried to change the platform target to AnyCpu,
    I tried to wrap it with SP.RunWithElevatedPrivileges
    but all above didn't solve the error.
    Any suggestions?

    Hello,
    instead of targetting "any cpu" target x64 and be sure to target .net 3.5 (I made a post about it it could help you
    http://christopherclementen.wordpress.com/2012/03/02/windows-application-spsite-filenotfound/
    Best regards, Christopher.
    Blog |
    Mail
    Please remember to click "Mark As Answer" if a post solves your problem or
    "Vote As Helpful" if it was useful.
    Why mark as answer?

  • Getting Error while Execute SSIS Package from Console Application

    Dear All,
    SSIS package working fine directly.
    I got following error while execute SSIS package from C# console application.
    The connection "{79D920D4-9229-46CA-9018-235B711F04D9}" is not found. This error is thrown by Connections collection when the specific connection element is not found.
    Cannot find the connection manager with ID "{79D920D4-9229-46CA-9018-235B711F04D9}" in the connection manager collection due to error code 0xC0010009. That connection manager is needed by "OLE DB Destination.Connections[OleDbConnection]"
    in the connection manager collection of "OLE DB Destination". Verify that a connection manager in the connection manager collection, Connections, has been created with that ID.
    OLE DB Destination failed validation and returned error code 0xC004800B.
    One or more component failed validation.
    There were errors during task validation.
    Code : 
       public static string RunDTSPackage()
                Package pkg;
                Application app;
                DTSExecResult pkgResults;
                Variables vars;
                app = new Application();
                pkg = app.LoadPackage(@"D:\WORK\Package.dtsx", null);
         Microsoft.SqlServer.Dts.Runtime.DTSExecResult results = pkg.Execute();
    I have recreate the application with again new connection in SSIS.
    Still not working, Please provide solution if any one have.
    DB : SQL Server 2008 R2
    Thanks and regards,
    Hardik Ramwani

    The connection "{79D920D4-9229-46CA-9018-235B711F04D9}" is not found. This error is thrown by Connections collection when the specific connection element is not found.
    Cannot find the connection manager with ID "{79D920D4-9229-46CA-9018-235B711F04D9}" in the connection manager collection due to error code 0xC0010009. That connection manager is needed by "OLE DB Destination.Connections[OleDbConnection]"
    in the connection manager collection of "OLE DB Destination". Verify that a connection manager in the connection manager collection, Connections, has been created with that ID.
    Are you sure that you are running the same package via .NET which works fine from Visual Studio?
    By reading error message, I can say that you have copied OLEDB task from another package OR you have deleted one OLEDB connection manager. Now when package is run this task tries to use the connection manager and not found thus throws error message.
    Open all OLEDB destination tasks and you find connection manager missing. Connection Manager name should be provided there
    Cheers,
    Vaibhav Chaudhari
    MCSA - SQL Server 2012

  • C# console application closes on it's own as soon as it opens

    Hello to all of you.
    I know this is a very common problem but there seems to be no solution for me so far.
    The known problem that right after build and start debugging, terminal opens and closes like a flush.
    Have Tried the below already:
    Console.ReadLine();
    Console.ReadKey();
    System.Console.ReadLine();
    System.Console.ReadKey();
    Ctrl+F5
    Start without debugging
    and a couple more.
    Went to settings to see if console application was enabled (which it was).
    It was working fine until this noon,when I was working on my exercise and using always "Console.ReadLine();" in order for the window to
    remain open, but all of the sudden it did not work for me anymore.
    I have to say at this point that not a single change was done in my laptop. I also restarted just in case, but nothing's changed.
    Furthermore I use version VS express windows desktop 2013 with update 4 and also Vs express windows 2013 with update 4.
    Please help me and thank you very much for taking the time to read this.

    I know this is a very common problem but there seems to be no solution for me so far.
    The known problem that right after build and start debugging, terminal opens and closes like a flush.
    Have Tried the below already:
    Console.ReadLine();
    Console.ReadKey();
    System.Console.ReadLine();
    System.Console.ReadKey();
    Ctrl+F5
    Start without debugging
    and a couple more.
    It was working fine until this noon,when I was working on my exercise and using always "Console.ReadLine();" in order for the window to
    remain open, but all of the sudden it did not work for me anymore.
    Is the code you're trying to debug in a source code file which is specified as part of the
    project being built/run?
    A common mistake is to open a new source code file in the IDE, add code, then try to run
    or debug it. If the new source code file isn't listed as part of the active project
    in
    the Solution Explorer window, then it will not get compiled and added to the project's
    target (.exe). So what gets executed/run doesn't include the code on the screen in the
    IDE editor.
    - Wayne

  • Can not open Console Application

    I am unable to open the console application. I click on it, it bounces in dock, doesn't open and icon disappears. Here is what I could get through terminal on error.
    Aug 29 12:26:25 USER com.apple.launchd.peruser.1687346633[273] ([0x0-0x4e04e].com.apple.Console[1823]) <Warning>: Job appears to have crashed: Segmentation fault: 11
    Aug 29 12:26:25USER ReportCrash[1825] <Notice>: Saved crash report for Console[1823] version 10.7 (377) to /Users/USER/Library/Logs/DiagnosticReports/Console_2011-08-29-122625_USER.crash
    Aug 29 12:26:25 USER  com.apple.launchd[1] <Notice>: System: Bug: launchd_core_logic.c:10063 (24984):0
    Aug 29 12:26:25 USER  com.apple.launchd[1] <Error>: System: This API can only be used by a process running within an Aqua session.
    Any insight would be greatly appreciated.
    Thanks,
    Jeff

    Process:         Console [809]
    Path:            /Applications/Utilities/Console.app/Contents/MacOS/Console
    Identifier:      com.apple.Console
    Version:         10.7 (377)
    Build Info:      ConsoleX-377000000000000~7
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [314]
    Date/Time:       2011-08-29 16:39:59.625 -0700
    OS Version:      Mac OS X 10.7.1 (11B26)
    Report Version:  9
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x00007fff6b991f70
    VM Regions Near 0x7fff6b991f70:
        MALLOC_TINY            00007f97a5800000-00007f97aa600000 [ 78.0M] rw-/rwx SM=PRV 
    --> STACK GUARD            00007fff68192000-00007fff6b992000 [ 56.0M] ---/rwx SM=NUL  stack guard for thread 0
        Stack                  00007fff6b992000-00007fff6c192000 [ 8192K] rw-/rwx SM=COW  thread 0
    Application Specific Information:
    objc[809]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.apple.CoreServices.CarbonCore          0x00007fff94c1ab74 FSMount::getattrsbulk(void*, unsigned int, unsigned long*, unsigned int, unsigned int, FSAttributeInfo*, unsigned char*, unsigned char*) + 20
    1   com.apple.CoreServices.CarbonCore          0x00007fff94c1a88b PBGetCatalogInfoBulkSync + 546
    2   com.apple.CoreServices.CarbonCore          0x00007fff94c1a64c FSGetCatalogInfoBulk + 66
    3   com.apple.Foundation                    0x00007fff9133846f _NSDirectoryContentsFromCarbonError + 334
    4   com.apple.Foundation                    0x00007fff91318ffa -[NSFileManager directoryContentsAtPath:matchingExtension:options:keepExtension:error:] + 394
    5   com.apple.Foundation                    0x00007fff91318e6a -[NSFileManager contentsOfDirectoryAtPath:error:] + 37
    6   com.apple.Console                       0x000000010c5998f9 0x10c592000 + 30969
    7   com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    8   com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    9   com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    10  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    11  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    12  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    13  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    14  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    15  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    16  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    17  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    18  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    19  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    20  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    21  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    22  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    23  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    24  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    25  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    26  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    27  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    28  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    29  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    30  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    31  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    32  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    33  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    34  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    35  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    36  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    37  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    38  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    39  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    40  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    41  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    42  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    43  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    44  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    45  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    46  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    47  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    48  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    49  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    50  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    51  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    52  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    53  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    54  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    55  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    56  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    57  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    58  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    59  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    60  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    61  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    62  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    63  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    64  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    65  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    66  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    67  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    68  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    69  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    70  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    71  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    72  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    73  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    74  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    75  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    76  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    77  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    78  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    79  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    80  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    81  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    82  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    83  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    84  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    85  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    86  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    87  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    88  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    89  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    90  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    91  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    92  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    93  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    94  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    95  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    96  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    97  com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    98  com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    99  com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    100 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    101 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    102 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    103 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    104 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    105 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    106 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    107 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    108 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    109 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    110 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    111 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    112 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    113 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    114 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    115 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    116 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    117 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    118 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    119 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    120 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    121 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    122 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    123 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    124 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    125 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    126 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    127 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    128 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    129 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    130 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    131 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    132 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    133 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    134 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    135 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    136 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    137 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    138 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    139 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    140 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    141 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    142 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    143 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    144 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    145 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    146 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    147 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    148 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    149 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    150 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    151 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    152 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    153 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    154 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    155 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    156 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    157 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    158 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    159 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    160 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    161 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    162 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    163 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    164 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    165 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    166 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    167 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    168 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    169 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    170 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    171 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    172 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    173 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    174 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    175 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    176 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    177 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    178 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    179 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    180 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    181 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    182 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    183 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    184 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    185 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    186 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    187 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    188 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    189 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    190 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    191 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    192 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    193 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    194 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    195 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    196 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    197 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    198 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    199 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    200 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    201 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    202 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    203 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    204 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    205 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    206 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    207 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    208 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    209 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    210 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    211 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    212 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    213 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    214 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    215 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    216 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    217 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    218 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    219 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    220 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    221 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    222 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    223 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    224 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    225 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    226 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    227 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    228 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    229 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    230 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    231 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    232 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    233 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    234 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    235 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    236 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    237 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    238 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    239 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    240 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    241 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    242 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    243 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    244 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    245 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    246 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    247 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    248 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    249 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    250 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    251 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    252 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    253 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    254 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    255 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    256 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    257 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    258 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    259 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    260 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    261 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    262 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    263 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    264 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    265 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    266 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    267 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    268 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    269 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    270 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    271 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    272 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    273 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    274 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    275 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    276 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    277 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    278 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    279 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    280 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    281 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    282 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    283 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    284 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    285 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    286 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    287 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    288 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    289 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    290 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    291 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    292 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    293 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    294 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    295 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    296 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    297 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    298 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    299 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    300 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    301 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    302 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    303 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    304 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    305 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    306 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    307 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    308 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    309 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    310 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    311 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    312 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    313 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    314 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    315 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    316 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    317 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    318 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    319 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    320 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    321 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    322 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    323 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    324 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    325 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    326 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    327 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    328 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    329 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    330 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    331 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    332 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    333 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    334 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    335 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    336 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    337 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    338 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    339 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    340 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    341 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    342 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    343 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    344 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    345 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    346 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    347 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    348 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    349 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    350 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    351 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    352 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    353 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    354 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    355 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    356 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    357 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    358 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    359 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    360 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    361 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    362 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    363 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    364 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    365 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    366 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    367 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    368 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    369 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    370 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    371 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    372 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    373 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    374 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    375 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    376 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    377 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    378 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    379 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    380 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    381 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    382 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    383 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    384 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    385 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    386 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    387 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    388 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    389 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    390 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    391 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    392 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    393 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    394 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    395 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    396 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    397 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    398 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    399 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    400 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    401 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    402 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    403 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    404 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    405 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    406 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    407 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    408 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    409 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    410 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    411 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    412 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    413 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    414 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    415 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    416 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    417 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    418 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    419 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    420 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    421 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    422 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    423 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    424 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    425 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    426 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    427 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    428 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    429 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    430 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    431 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    432 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    433 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    434 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    435 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    436 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    437 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    438 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    439 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    440 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    441 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    442 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    443 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    444 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    445 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    446 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    447 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    448 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    449 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    450 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    451 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    452 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    453 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    454 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    455 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    456 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    457 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    458 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    459 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    460 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    461 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    462 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    463 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    464 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    465 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    466 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    467 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    468 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    469 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    470 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    471 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    472 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    473 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    474 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    475 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    476 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    477 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    478 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    479 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    480 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    481 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    482 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    483 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    484 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    485 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    486 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    487 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    488 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    489 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    490 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    491 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    492 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    493 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    494 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    495 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    496 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    497 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    498 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    499 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    500 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    501 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    502 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    503 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    504 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    505 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    506 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    507 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    508 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    509 com.apple.Console                       0x000000010c5b3b31 0x10c592000 + 138033
    510 com.apple.Console                       0x000000010c599c12 0x10c592000 + 31762
    511 com.apple.Console                       0x000000010c5b3d9a 0x10c592000 + 138650
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x00007fff8dffc7e6 kevent + 10
    1   libdispatch.dylib                       0x00007fff926c960e _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                       0x00007fff926c819e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib                  0x00007fff8dffc192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ea08594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ea09b85 start_wqthread + 13
    Thread 3:
    0   libsystem_kernel.dylib                  0x00007fff8dffc192 __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x00007fff8ea08594 _pthread_wqthread + 758
    2   libsystem_c.dylib                       0x00007fff8ea09b85 start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000000  rcx: 0x00007fff6b998e48  rdx: 0x0000000000000001
      rdi: 0x00007fff6b998e50  rsi: 0x00007f97aa54ea40  rbp: 0x00007fff6b992ce0  rsp: 0x00007fff6b991f40
       r8: 0x0000000000000000   r9: 0x0000000000000000  r10: 0x0000000000000081  r11: 0x0000000000000246
      r12: 0x0000000000000000  r13: 0x00007fff6b99d7d0  r14: 0x00007f97aa54e9c0  r15: 0x0000000000006020
      rip: 0x00007fff94c1ab74  rfl: 0x0000000000010202  cr2: 0x00007fff6b991f70
    Logical CPU: 0
    Binary Images:
           0x10c592000 -        0x10c5c9ff7  com.apple.Console (10.7 - 377) <3BD3457D-AD82-3E56-9584-74812966005A> /Applications/Utilities/Console.app/Contents/MacOS/Console
        0x7fff6c192000 -     0x7fff6c1c6ac7  dyld (195.5 - ???) <4A6E2B28-C7A2-3528-ADB7-4076B9836041> /usr/lib/dyld
        0x7fff8dece000 -     0x7fff8df20ff7  libGLU.dylib (??? - ???) <C3CE8BA0-470F-3BCE-B17C-A31E70E035F2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
        0x7fff8df5f000 -     0x7fff8df60fff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
        0x7fff8df90000 -     0x7fff8dfb8ff7  com.apple.CoreVideo (1.7 - 70.0) <59D5B407-CCB6-3406-8C55-C1B0168D7DC2> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
        0x7fff8dfe5000 -     0x7fff8e005fff  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <69F2F501-72D8-3B3B-8357-F4418B3E1348> /usr/lib/system/libsystem_kernel.dylib
        0x7fff8e006000 -     0x7fff8e108ff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <D46F371D-6422-31B7-BCE0-D80713069E0E> /usr/lib/libxml2.2.dylib
        0x7fff8e109000 -     0x7fff8e10afff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <718A135F-6349-354A-85D5-430B128EFD57> /usr/lib/system/libdnsinfo.dylib
        0x7fff8e10b000 -     0x7fff8e11afff  com.apple.opengl (1.7.4 - 1.7.4) <38AF4430-7E81-3C98-9330-21DCDA90507E> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
        0x7fff8e11b000 -     0x7fff8e12eff7  libCRFSuite.dylib (??? - ???) <034D4DAA-63F0-35E4-BCEF-338DD7A453DD> /usr/lib/libCRFSuite.dylib
        0x7fff8e12f000 -     0x7fff8e13dff7  libkxld.dylib (??? - ???) <65BE345D-6618-3D1A-9E2B-255E629646AA> /usr/lib/system/libkxld.dylib
        0x7fff8e40f000 -     0x7fff8e40ffff  com.apple.vecLib (3.7 - vecLib 3.7) <29927F20-262F-379C-9108-68A6C69A03D0> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
        0x7fff8e7c9000 -     0x7fff8e839fff  com.apple.datadetectorscore (3.0 - 179.3) <AFFBD606-91DE-3F91-8E38-C037D9FBFA8B> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
        0x7fff8e83a000 -     0x7fff8e863fff  libJPEG.dylib (??? - ???) <3DBFEB41-4BF2-3502-872A-BB3738EE61B0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8e990000 -     0x7fff8e9b6ff7  com.apple.framework.familycontrols (3.0 - 300) <72FEA71A-5865-3875-97E9-3C8C96B7F7FA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
        0x7fff8e9b8000 -     0x7fff8ea95fef  libsystem_c.dylib (763.11.0 - compatibility 1.0.0) <1D61CA57-3C6D-30F7-89CB-CC6F0787B1DC> /usr/lib/system/libsystem_c.dylib
        0x7fff8ea96000

Maybe you are looking for

  • HT201302 How do I delete a photo from my camera roll and not delete it from a folder

    When I delete photos from my camera roll, it also deletes them from the folder I've saved them in. How do I delete from the camera roll and not lose them from the folder?

  • ALV grid with 2 headers - using OOPS

    Hi, I have a requirement wherein I need to display 2 headers using ALV Grid. I am using cl_gui_alv_grid->set_table_for_first display.                 Header1                    Header2 Col1     Col2     Col3     Col4     Col5 1     2     3     4     

  • Mission: Credit Rebuild. Destination: Garden.

    Starting a thread so I can track everything I'm doing and have done to get these collections taken care of. FAKO Scores and the baddies as of 2/8/13:Experian: 485 - 8 collections, 2 CO.TransUnion: 503 - 6 collections, 2 CO.Equifax: 590 - 0 collection

  • WebLogic 5.1 failing on Windows NT 4 SP6

    We have a customer that has implemented the Financial Fusion Server in WebLogic 5.1 running on Windows NT 4 Server Service Pack 6. They have indicated the server is failing daily with an Access Violation occurring in java.exe. The Dr Watson log is sh

  • Lightroom support for Olympus OMD E5 Mark II

    When will Lightroom provide support for Olympus OMD E5 Mark II  Hight Res RAW files?