Git Product home page Git Product logo

repetier-host-mac's Introduction

repetier-host-mac's People

Contributors

repetier avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

repetier-host-mac's Issues

Feature Request: Add statistics files

Hi,

I would like to collect statistics of my prints (mostly print times).
Could you please add this feature.

For example:

-(GCode_)popData
{
if (jobList->count == 0) return nil;
linesSend++;
GCode gc = [[[GCode alloc] initFromString:[jobList removeFirst]] autorelease];
/_[timeLock lock];
[times addLast:[[[PrintTime alloc] initWithLine:linesSend] autorelease]];
if (times->count > 1500)
[times removeFirst];
[timeLock unlock];
/
if (jobList->count == 0 && dataComplete)
{
dataComplete = false;
mode = 2;
[self setJobFinished:[NSDate date]];
double ticks = (jobFinished.timeIntervalSince1970 - jobStarted.timeIntervalSince1970);
int hours = ticks / 3600;
ticks -= 3600 * hours;
int min = ticks / 60;
ticks -= 60 * min;
int sec = ticks;
[rhlog addInfo:[NSString stringWithFormat:@"Printjob finished at %@",[dateFormatter stringFromDate:jobFinished]]];
NSMutableString *s = [NSMutableString stringWithCapacity:40];
if (hours > 0)
{
[s appendFormat:@"%d",hours];
[s appendString:@"h:"];
}
if (min > 0)
{
[s appendFormat:@"%02d",min];
[s appendString:@"m:"];
}
[s appendFormat:@"%02d",sec];
[s appendString:@"s"];
[rhlog addInfo:[NSString stringWithFormat:@"Printing time: %@",s]];
[rhlog addInfo:[NSString stringWithFormat:@"lines send: %d",linesSend]];
[connection firePrinterState:[NSString stringWithFormat:@"Finished in %@",s]];
[sound playPrintjobFinished:NO];
[self doEndKillActions];
[ThreadedNotification notifyASAP:@"RHJobChanged" object:self];
FILE * statFile = fopen("JobStats.txt", "a");
fprintf(statFile, "%s\n", [[NSString stringWithFormat:@"Printjob finished at %@",[dateFormatter stringFromDate:jobFinished]] cStringUsingEncoding:NSUTF8StringEncoding]);
fprintf(statFile, "File: %s\n", [app->gcodeView.fileName cStringUsingEncoding:NSUTF8StringEncoding]);
fprintf(statFile, "%s\n", [[NSString stringWithFormat:@"Printing time: %@",s] cStringUsingEncoding:NSUTF8StringEncoding]);
fprintf(statFile, "%s\n", [[NSString stringWithFormat:@"lines send: %d",linesSend] cStringUsingEncoding:NSUTF8StringEncoding]);
fprintf(statFile, "----------\n");
fclose(statFile);
}
return gc;
}

Thank you,
Jérôme.

slic3r settings?

Hello! I love Repetier 0.32 for Mac, it's easily the best looking and most intuitive of the 3D printer softwares I've used so far. Most of the people in my hackspace are using the same version, too.

I'm changed my preferences to use slicer-0.7.2 (i sometimes use a tantillus and it is picky). I'm trying to add a printer setting next to "(0.35mm)_Default" for my Prusa running Marlin. It doesn't seem to matter where I save the ini file, the option does not appear in the settings. This means all slices are wrong and all prints are off.

Can you please tell me what I'm doing wrong and how to do it right?

Thank you!

Minor feature request - "Minimise ⌘m"

I often use keyboard shortcuts to navigate around OSX and I'd like to use the shortcut ⌘m to minimise the Repetier window. The "Window" menu has it but it's greyed out.

Please could you enable this?

Thanks in advance,
Col

Connect to virtual serial port

Repetier Host does not connect to a virtual serial port on OS X.

The port is created via socat. Via kermit the printer answers to GCode requests.

The virtual port isn't listed in the Printer Preferences. Thus i added it by hand in repetier.Repetier-Host-Mac.plist.

socat setup:
OS X:
sudo socat -d -d PTY,link=/dev/tty.pb TCP4:192.168.0.145:54321
Raspberry PI:
sudo socat tcp-l:54321,reuseaddr,fork file:/dev/ttyACM0,nonblock,waitlock=/var/run/tty0.lock

Feature request: homes

It would be great to have a few different home's available. for example i frequently want to move to the other corners of my print bed and the middle to level the bed and adjust Z home height. right now i have to fiddle with the mouse, the head transport buttons and measuring the nozzle clearance. being able to configure maybe 8 pre-set head locations would really help. then map these to keys as per my other feature request idea and it would be much easier to use the computer and the printer at the same time for doing this kind of task.

v0.32 installer package

Hi,
I was just wondering if we could get an installer package for the latest version please.

Thank you.

Setting for "Start" G-Code Sequence in Preferences

I would particularly like to insert an M80 command at the beginning of the gcode, automatically, as having to hand edit things is a bit tedious and error prone. As it is, the temperature settings come first, but without power, the print will never start.

M204 "T" value is truncated as it is stored in an uint8.

M204 sets the default acceleration on Marlin. It takes 2 parameters, S and T.

S = Default Acceleration for moves that include X,Y or Z axis.
T = Default Acceleration for moves that are only in the E axis.

Retraction on a Bowden Extruder needs to be fast and accelerations of 10000 are easily obtained on retraction.

When attempting to tune my Mendel I noticed that if I send a Manual G Code with Repetier Host of M204 S2000 T10000, the T would be set incorrectly.

In GCode.h I noticed that you are storing the T value in a uint8. This should be bumped up to a uint16 if possible.

Workaround - I currently have to use pronterface to tune my settings then store them in EEPROM.

0.55 Mac no longer slices

Downloaded and installed the update last night. Tried to slice and got warnings about the GUI and outdated trackpad controls. Refuses to slice. Please advise.

SD card manager hanging

please ignore this. when pasting the file output the issue description was saved empty. Please refer to issue #31

Feature Requst: Quick Look

It would be great if Repetier would use the Quick look feature to allow previewing of an stl file quickly, and an even further extension of that to see the G-Code generated 3d image. A feature like this would be similar to previewing a collada file (.dae) format that is built into OSX, and allow for quickly viewing the object from finder, as well as rotating the object. A few projects already provide this function, but if it was added to repetier, and utilized the libraries that are already there, then this would be a cleaner implementation. This feature would also provide a way of creating a thumbnail of the object to replace the default icon.

SD card manager hanging

please ignore this. when pasting the file output the issue description was saved empty. Please refer to issue #31

UI: vertical scrollbars even if not needed

Just a small unimportant ui issue: In the log window when starting to scroll the vertical scrollbars even appear when not needed and hide the last line in the log as long as they are there.

Addition: Also the gcode area like to log area seem to be always a bit wider than their place in the ui which enables vertical scrolling.

Wrong instructions in Configuration.h for USE_GENERIC_THERMISTORTABLE_1

The instructions on the generic thermistor tables is backward. This is really trivial; but it did cause me some confusion.

If you don't need the generic table, uncomment the following define.
*/
//#define USE_GENERIC_THERMISTORTABLE_1

Should be:
If you need the generic table, uncomment the following define.

Please add more (higher) baud rates

I did some experiments today (using OSX10.8 and ATmega16U2 powered USB to serial converter like on Arduino2560-R3) to find out the maximum possible baud rates:

In "PrintSettingController" I added

... ,@"500000",@"1000000",@"1500000",@"2000000",nil]];

to the end of the possible baud rate list.

500000 ==> no problems

1000000 ==> no problems

1500000 ==> no problems <== this is what I prefer for printing now

2000000 ==> ok, but got a few transmission errors during print (caused by RepRap firmware which can not receive so fast)

NOTE: This was tested on MacOSX10.8 + ATmega16U2 as USB to serial converter. But I think FTDI based converters should be able to do the same.

Thanks,

Maik

0.5.2 crashes on startup on 10.7.5 right on fresh install

I just downloaded and started and get the following crash right away (never had it installed, so no preferences and nothing on my machine):

Process: Repetier-Host Mac [77129]
Path: /Applications/Repetier-Host Mac.app/Contents/MacOS/Repetier-Host Mac
Identifier: repetier.Repetier-Host-Mac
Version: 0.52 (49)
Code Type: X86 (Native)
Parent Process: launchd [212]

Date/Time: 2013-02-04 21:44:35.899 +0100
OS Version: Mac OS X 10.7.5 (11G63)
Report Version: 9

Interval Since Last Report: 87653 sec
Crashes Since Last Report: 4
Per-App Crashes Since Last Report: 3
Anonymous UUID: 0973DCE8-EE0E-4660-91DA-13605E1D36CC

Crashed Thread: 0 Dispatch queue: com.apple.main-thread

Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000120

VM Regions Near 0x120:
--> __PAGEZERO 0000000000000000-0000000000001000 [ 4K] ---/--- SM=NUL /Applications/Repetier-Host Mac.app/Contents/MacOS/Repetier-Host Mac
__TEXT 0000000000001000-000000000006e000 [ 436K] r-x/rwx SM=COW /Applications/Repetier-Host Mac.app/Contents/MacOS/Repetier-Host Mac

Application Specific Information:
objc[77129]: garbage collection is OFF

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 repetier.Repetier-Host-Mac 0x000119b8 0x1000 + 68024
1 repetier.Repetier-Host-Mac 0x00011b7b 0x1000 + 68475
2 repetier.Repetier-Host-Mac 0x00005e3f 0x1000 + 20031
3 repetier.Repetier-Host-Mac 0x00002175 0x1000 + 4469

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x92db990a kevent + 10
1 libdispatch.dylib 0x972dfe04 _dispatch_mgr_invoke + 969
2 libdispatch.dylib 0x972de853 _dispatch_mgr_thread + 53

Thread 2:
0 libsystem_kernel.dylib 0x92db902e __workq_kernreturn + 10
1 libsystem_c.dylib 0x9c6edccf _pthread_wqthread + 773
2 libsystem_c.dylib 0x9c6ef6fe start_wqthread + 30

Thread 3:
0 libsystem_kernel.dylib 0x92db902e __workq_kernreturn + 10
1 libsystem_c.dylib 0x9c6edccf _pthread_wqthread + 773
2 libsystem_c.dylib 0x9c6ef6fe start_wqthread + 30

Thread 0 crashed with X86 Thread State (32-bit):
eax: 0x00000000 ebx: 0x00010a75 ecx: 0x002757a2 edx: 0x0019c50c
edi: 0x00274590 esi: 0x0026ef70 ebp: 0xbffffc18 esp: 0xbffffbe0
ss: 0x00000023 efl: 0x00010286 eip: 0x000119b8 cs: 0x0000001b
ds: 0x00000023 es: 0x00000023 fs: 0x00000000 gs: 0x0000000f
cr2: 0x00000120
Logical CPU: 0

Binary Images:
0x1000 - 0x6dfff +repetier.Repetier-Host-Mac (0.52 - 49) <58ED1211-CEA3-325B-A8FB-8541F26C01C1> /Applications/Repetier-Host Mac.app/Contents/MacOS/Repetier-Host Mac
0x86000 - 0x99fff +org.andymatuschak.Sparkle (1.5 Beta 6 - 313) <5DF2B8A3-560D-4500-6B85-4215644DE532> /Applications/Repetier-Host Mac.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle
0xa7000 - 0x154ff7 libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
0x3e000000 - 0x3e044fff com.apple.glut (3.4.9 - GLUT-3.4.9) <28FCEDCC-0E24-3F81-BB29-E09CBCD5E047> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
0x8fe82000 - 0x8feb4aa7 dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
0x90067000 - 0x9006dffd com.apple.CommerceCore (1.0 - 17) <71641C17-1CA7-3AC9-974E-AAC9EB641035> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x900af000 - 0x90108fff com.apple.HIServices (1.21 - ???) <91EC636D-AC27-3332-BA1C-FD7301917429> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x90109000 - 0x90119fff com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x9011a000 - 0x9017cff3 libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
0x901b1000 - 0x90294ff7 libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) /usr/lib/libcrypto.0.9.8.dylib
0x90fe7000 - 0x9102fff7 com.apple.SystemConfiguration (1.11.3 - 1.11) <68B92FEA-F754-3E7E-B5E6-D512E26144E7> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x9103c000 - 0x91045fff libc++abi.dylib (14.0.0 - compatibility 1.0.0) /usr/lib/libc++abi.dylib
0x91046000 - 0x9104affd IOSurface (??? - ???) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x9104b000 - 0x910affff com.apple.framework.IOKit (2.0 - ???) <94827954-5906-36C4-819B-24CDAFD85C72> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x910b0000 - 0x910b1ff7 libquarantine.dylib (36.7.0 - compatibility 1.0.0) <46980EC2-149D-3CF7-B29A-401FB89C275D> /usr/lib/system/libquarantine.dylib
0x9110e000 - 0x9119bff7 com.apple.CoreText (220.22.0 - ???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x9119c000 - 0x911c1ff9 libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x911c2000 - 0x9124cffb com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x91621000 - 0x91cadff5 com.apple.CoreAUC (6.16.12 - 6.16.12) <9D51400F-B827-3BA7-87F5-954A1CDDAEA9> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x91cae000 - 0x91d16fff libc++.1.dylib (28.4.0 - compatibility 1.0.0) /usr/lib/libc++.1.dylib
0x91d17000 - 0x91d1bff7 com.apple.OpenDirectory (10.7 - 146) <4986A382-8FEF-3392-8CE9-CF6A5EE4E365> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x91d95000 - 0x91dd5ff7 libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
0x91dd6000 - 0x91ddbff7 libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
0x91ebe000 - 0x91ee1fff com.apple.CoreVideo (1.7 - 70.3) <4234C11C-E8E9-309A-9465-27D6D7458895> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x91ee2000 - 0x91eeaff3 libunwind.dylib (30.0.0 - compatibility 1.0.0) /usr/lib/system/libunwind.dylib
0x91eeb000 - 0x91eebfff com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x91eec000 - 0x921eefff com.apple.CoreServices.CarbonCore (960.25 - 960.25) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x921ef000 - 0x92206ff8 com.apple.CoreMediaAuthoring (2.0 - 891) <69D569FD-670C-3BD0-94BF-7A8954AA2953> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x92207000 - 0x92215fff libz.1.dylib (1.2.5 - compatibility 1.0.0) /usr/lib/libz.1.dylib
0x92216000 - 0x92221ffc com.apple.NetAuth (1.0 - 3.0) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x92222000 - 0x92229ffd com.apple.NetFS (4.0 - 4.0) /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x92447000 - 0x92556ff7 com.apple.DesktopServices (1.6.5 - 1.6.5) /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x92557000 - 0x9255affc libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
0x925e5000 - 0x926cdfff libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <1841196F-68B5-309F-8ED1-6714B1DFEC83> /usr/lib/libxml2.2.dylib
0x926ce000 - 0x9275bfe7 libvMisc.dylib (325.4.0 - compatibility 1.0.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x927b5000 - 0x9290bfff com.apple.audio.toolbox.AudioToolbox (1.7.3 - 1.7.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x9290c000 - 0x9290cfff com.apple.Cocoa (6.6 - ???) <650273EF-1ABC-334E-B745-B75AF028F9F4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x9290d000 - 0x9295fff7 libFontRegistry.dylib (??? - ???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x92960000 - 0x92976ffe libxpc.dylib (77.19.0 - compatibility 1.0.0) <0585AA94-F4FD-32C1-B586-22E7184B781A> /usr/lib/system/libxpc.dylib
0x92978000 - 0x9298dfff com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x9298e000 - 0x929d0ff7 com.apple.CoreMedia (1.0 - 705.94) <10D5D25F-9BCB-3406-B737-23D9FDF2CC71> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x929d1000 - 0x929d2fff com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x929d3000 - 0x92a49fff com.apple.Metadata (10.7.0 - 627.37) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x92a4a000 - 0x92b0dfff com.apple.CoreServices.OSServices (478.49 - 478.49) <5AF33605-C893-3F60-89CF-1BC9C0BC35AF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x92b0e000 - 0x92c3aff9 com.apple.CFNetwork (520.5.1 - 520.5.1) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x92c3b000 - 0x92c66fff com.apple.GSS (2.2 - 2.0) <2C468B23-FA87-30B5-B9A6-8C5D1373AA30> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x92c81000 - 0x92d57aab libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <2E272DCA-38A0-3530-BBF4-47AE678D20D4> /usr/lib/libobjc.A.dylib
0x92da0000 - 0x92dbeff7 libsystem_kernel.dylib (1699.32.7 - compatibility 1.0.0) <79179F83-457A-3539-A76B-E960D2108109> /usr/lib/system/libsystem_kernel.dylib
0x92e6f000 - 0x92ed0ffb com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <7A14BE52-6789-3CE3-9AE9-B733F4903EB1> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x92ed1000 - 0x92f18ff5 com.apple.opencl (2.0.19 - 2.0.19) <7689E7B9-EE5A-3F74-8699-4CDED9162260> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x932af000 - 0x9332affb com.apple.ApplicationServices.ATS (317.12.0 - ???) <4D124B65-3D43-32E9-B296-3671347BB888> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x933ab000 - 0x9349bff1 libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
0x9349c000 - 0x9356cffb com.apple.ImageIO.framework (3.1.2 - 3.1.2) <2092785C-795A-3CDF-A1B4-6C80BA3726DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x9356d000 - 0x935f4fff com.apple.print.framework.PrintCore (7.1 - 366.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x935f5000 - 0x93600ffe libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <4A7FCD28-9C09-3120-980A-BDF6EDFAAC62> /usr/lib/libbz2.1.0.dylib
0x93601000 - 0x93666ff7 libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x936b1000 - 0x936cdff5 com.apple.GenerationalStorage (1.0 - 126.1) /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x936ce000 - 0x936deff7 libCRFSuite.dylib (??? - ???) /usr/lib/libCRFSuite.dylib
0x936df000 - 0x93722ffd libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
0x93a3f000 - 0x93a45ffb com.apple.print.framework.Print (7.4 - 247.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x93a6a000 - 0x93c1eff3 libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <4AFF6FC3-6283-3934-8EFC-CA227CA11164> /usr/lib/libicucore.A.dylib
0x93c1f000 - 0x93f65ff3 com.apple.HIToolbox (1.9 - ???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x93f80000 - 0x93f80fff com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x93f81000 - 0x93f8fff7 libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
0x93f90000 - 0x93f93ff7 libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
0x93f94000 - 0x93fb6ffe com.apple.framework.familycontrols (3.0 - 300) <6735D7ED-7053-3AB8-B144-E7F70A124CCD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x93fb7000 - 0x93fbeff9 libsystem_dnssd.dylib (??? - ???) /usr/lib/system/libsystem_dnssd.dylib
0x93ff1000 - 0x94011ff7 com.apple.RemoteViewServices (1.5 - 44.2) <11C87337-FF29-3976-A230-6387D96563C5> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x9403a000 - 0x94089ffb com.apple.AppleVAFramework (5.0.16 - 5.0.16) <1188E7AB-76FE-343F-9108-30CD67E5A37B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x9408a000 - 0x9414affb com.apple.ColorSync (4.7.4 - 4.7.4) <0A68AF35-15DF-3A0A-9B17-70CE2A106A6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x9414b000 - 0x94194ff7 libGLU.dylib (??? - ???) <9AF7AD51-16E3-3674-B60E-30EE499D7B46> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x94621000 - 0x94636ff7 com.apple.ImageCapture (7.1.0 - 7.1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x94637000 - 0x94654ff3 com.apple.openscripting (1.3.3 - ???) <0579A4CB-FD6F-3D7F-A17B-AC0F2CF11FC7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x94659000 - 0x947bcfff com.apple.QTKit (7.7.1 - 2339) <163FBDDD-0458-378F-84DD-CB0F603A259E> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x947c9000 - 0x94806fef libGLImage.dylib (??? - ???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x94807000 - 0x9480dfff libGFXShared.dylib (??? - ???) <9C9834EB-B794-38C8-9B90-31D8CB234F86> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x9480e000 - 0x94816ff3 liblaunch.dylib (392.39.0 - compatibility 1.0.0) <9E6135FF-C2B1-3BC9-A160-B32D71BFA77C> /usr/lib/system/liblaunch.dylib
0x9482b000 - 0x94b35ff3 com.apple.Foundation (6.7.2 - 833.25) <4C52ED74-A1FD-3087-A2E1-035AB3CF9610> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x94b36000 - 0x94f38ff6 libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x94f85000 - 0x94fb4ff7 libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
0x95041000 - 0x952eefff com.apple.JavaScriptCore (7534.57 - 7534.57.3) <5AE5C3B8-D807-356B-80D9-4D0A706A10D1> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x9550c000 - 0x9550effb libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x9551a000 - 0x95557ff7 libcups.2.dylib (2.9.0 - compatibility 2.0.0) <007A1877-E981-3007-A8FA-9B179F4ED6D1> /usr/lib/libcups.2.dylib
0x95558000 - 0x9557aff8 com.apple.PerformanceAnalysis (1.11 - 11) <453463FF-7C42-3526-8C96-A9971EE07154> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x9557b000 - 0x9557eff7 libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
0x9557f000 - 0x95580fff libDiagnosticMessagesClient.dylib (??? - ???) /usr/lib/libDiagnosticMessagesClient.dylib
0x955b5000 - 0x9583afe3 com.apple.QuickTime (7.7.1 - 2339) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
0x95846000 - 0x95957ff7 libJP2.dylib (??? - ???) <2B5EB147-F845-30DF-87C4-D2D3C3D0680A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x959b7000 - 0x959bbffa libcache.dylib (47.0.0 - compatibility 1.0.0) <98A82BC5-0DD9-3212-9CAE-35A77278EEB6> /usr/lib/system/libcache.dylib
0x959bc000 - 0x959c9fff libGL.dylib (??? - ???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x959ca000 - 0x95a00ff7 com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x95aa4000 - 0x95abefff com.apple.Kerberos (1.0 - 1) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x95c72000 - 0x95cc2ffa libTIFF.dylib (??? - ???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x95cc3000 - 0x95cc6ffd libCoreVMClient.dylib (??? - ???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x95df9000 - 0x95e03ff2 com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x95e04000 - 0x95e0cff5 libcopyfile.dylib (85.1.0 - compatibility 1.0.0) /usr/lib/system/libcopyfile.dylib
0x95e0d000 - 0x95fe4fe7 com.apple.CoreFoundation (6.7.2 - 635.21) <4D1D2BAF-1332-32DF-A81B-7E79D4F0A6CB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x960a4000 - 0x96148fff com.apple.QD (3.40 - ???) <3881BEC6-0908-3073-BA44-346356E1CDF9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x96149000 - 0x96166fff libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
0x96167000 - 0x9616bfff com.apple.CommonPanels (1.2.5 - 94) <3A988595-DE53-34ED-9367-C9A737E2AF38> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x9616c000 - 0x961a3fef com.apple.DebugSymbols (2.1 - 87) /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x961a4000 - 0x961a6ff7 libdyld.dylib (195.5.0 - compatibility 1.0.0) <637660EA-8D12-3B79-B644-041FEADC9C33> /usr/lib/system/libdyld.dylib
0x961a7000 - 0x96476ffb com.apple.security (7.0 - 55148.6) <8DF67BDD-C98F-3B7E-AC63-D468407FA82D> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x96477000 - 0x96477ff0 com.apple.ApplicationServices (41 - 41) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x96478000 - 0x96483ffb com.apple.speech.recognition.framework (4.0.21 - 4.0.21) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x966e1000 - 0x9673cff3 com.apple.Symbolication (1.3 - 91) <4D12D2EC-5010-3958-A205-9A67E972C76A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x96792000 - 0x967efffb com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x967f0000 - 0x967f2ff9 com.apple.securityhi (4.0 - 1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x967f3000 - 0x96845ffb com.apple.CoreMediaIO (216.0 - 3199.8) /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x96846000 - 0x96846fff com.apple.Carbon (153 - 153) <6FF98F0F-2CDE-3888-A304-4ED447D24CE3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x96847000 - 0x972dcff6 com.apple.AppKit (6.7.5 - 1138.51) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x972dd000 - 0x972ebfff libdispatch.dylib (187.10.0 - compatibility 1.0.0) <1B857064-288D-3919-B81A-38E9F4D19B54> /usr/lib/system/libdispatch.dylib
0x973e4000 - 0x97859ff7 FaceCoreLight (1.4.7 - compatibility 1.0.0) <3E2BF587-5168-3FC5-9D8D-183A9C7C1DED> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
0x9785a000 - 0x9786eff7 com.apple.CFOpenDirectory (10.7 - 144) <665CDF77-F0C9-3AFF-8CF8-64257268B7DD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x97877000 - 0x97878ff0 libunc.dylib (24.0.0 - compatibility 1.0.0) /usr/lib/system/libunc.dylib
0x97879000 - 0x97879fff libOpenScriptingUtil.dylib (??? - ???) /usr/lib/libOpenScriptingUtil.dylib
0x9787a000 - 0x978eefff com.apple.CoreSymbolication (2.2 - 73.2) /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x978ef000 - 0x98320fff com.apple.WebCore (7534.57 - 7534.57.7) <5FF60D46-9BC0-3B5A-AFF1-2C965D561009> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
0x98423000 - 0x9844bff7 libxslt.1.dylib (3.24.0 - compatibility 3.0.0) /usr/lib/libxslt.1.dylib
0x9857b000 - 0x98611ff7 com.apple.LaunchServices (480.40 - 480.40) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x98623000 - 0x9862cff3 com.apple.CommonAuth (2.2 - 2.0) /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x9862d000 - 0x9868fffb com.apple.datadetectorscore (3.0 - 179.4) <3A418498-C189-37A1-9B86-F0ECB33AD91C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x986c4000 - 0x986c5fff liblangid.dylib (??? - ???) /usr/lib/liblangid.dylib
0x98707000 - 0x98707ff2 com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x9873f000 - 0x98937ff7 com.apple.CoreData (104.1 - 358.14) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x98963000 - 0x9897fff1 libPng.dylib (??? - ???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x989a5000 - 0x98a9dff7 libFontParser.dylib (??? - ???) <71B33EB1-27F8-3C68-B940-FC61A3CFE275> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x98af0000 - 0x98ee4feb com.apple.VideoToolbox (1.0 - 705.94) <8FCC2C08-2D4C-3A96-B57A-CAA56911120F> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x98f0c000 - 0x9902afec com.apple.vImage (5.1 - 5.1) <7757F253-B281-3612-89D4-F2B04061CBE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x9902b000 - 0x9902bfff libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <7EFAD88C-AFBC-3D48-BE14-60B8EACC68D7> /usr/lib/system/libdnsinfo.dylib
0x9a168000 - 0x9a17bff8 com.apple.MultitouchSupport.framework (231.4 - 231.4) <083F7787-4C3B-31DA-B5BB-1993D9A9723D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x9a298000 - 0x9abc372b com.apple.CoreGraphics (1.600.0 - ???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x9abc4000 - 0x9ac60fff com.apple.ink.framework (10.7.5 - 113) <05CAFB64-D3B8-3973-87EA-CB8BBE580F6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x9ae60000 - 0x9ae63ffb com.apple.help (1.3.2 - 42) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x9ae64000 - 0x9ae75fff libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
0x9ae76000 - 0x9b352ff6 libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x9b353000 - 0x9b357fff libGIF.dylib (??? - ???) <2ADFED97-2228-343D-9A53-207CBFDE7984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x9b358000 - 0x9b386fe7 libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <30189C33-6ADD-3142-83F3-6114B1FC152E> /usr/lib/libSystem.B.dylib
0x9b389000 - 0x9b4ebffb com.apple.QuartzCore (1.7 - 270.5) <6D0EC7FC-11E5-35FB-A08A-3B438E89FBDB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x9b4ec000 - 0x9b52cff7 com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x9b531000 - 0x9b648fe9 com.apple.WebKit (7534.57 - 7534.57.7) <85DAC34E-86A1-380F-B166-56630C9B0BD5> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
0x9b649000 - 0x9b759fe7 libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <34E1E3CC-7B6A-3B37-8D07-1258D11E16CB> /usr/lib/libsqlite3.dylib
0x9b85a000 - 0x9b85bff7 libsystem_sandbox.dylib (??? - ???) <5CFCCFB7-CF29-3E04-801D-8532AE004768> /usr/lib/system/libsystem_sandbox.dylib
0x9b89b000 - 0x9b90afff com.apple.Heimdal (2.2 - 2.0) <2E1B8779-36D4-3C62-A67E-0034D77D7707> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x9b90b000 - 0x9b90bfff com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x9b911000 - 0x9bc57fff com.apple.MediaToolbox (1.0 - 705.94) <89D37021-C389-3CC5-A158-620ADCBD99EF> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x9bd0f000 - 0x9bd6dff7 com.apple.coreui (1.2.2 - 165.11) <340B0B83-1407-3AB4-BCAB-505C29303EE2> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x9c274000 - 0x9c27cfff com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x9c27d000 - 0x9c27efff libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) /usr/lib/system/libsystem_blocks.dylib
0x9c35e000 - 0x9c35fff4 libremovefile.dylib (21.1.0 - compatibility 1.0.0) <6DE3FDC7-0BE0-3791-B6F5-C15422A8AFB8> /usr/lib/system/libremovefile.dylib
0x9c360000 - 0x9c364ff3 libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
0x9c63d000 - 0x9c68eff9 com.apple.ScalableUserInterface (1.0 - 1) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
0x9c68f000 - 0x9c75afff libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <52421B00-79C8-3727-94DE-62F6820B9C31> /usr/lib/system/libsystem_c.dylib
0x9c75b000 - 0x9c75bffe libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
0x9c7ac000 - 0x9c7daff7 com.apple.DictionaryServices (1.2.1 - 158.3) <8D03D180-D834-39F3-A106-78E0B22A7893> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x9c7db000 - 0x9c872ff3 com.apple.securityfoundation (5.0 - 55116) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x9c873000 - 0x9cae7ff3 com.apple.CoreImage (7.99.1 - 1.0.1) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x9cb65000 - 0x9cb70fff libkxld.dylib (??? - ???) <14E79D7A-B6C2-35C5-B56D-D343BEC2A106> /usr/lib/system/libkxld.dylib
0x9cb71000 - 0x9cb72ffd libCVMSPluginSupport.dylib (??? - ???) <4B0476F9-950D-3EB7-BD83-F65AF0B05F0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x9cb73000 - 0x9cb7aff7 libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
0x9cb7b000 - 0x9cb89fff com.apple.opengl (1.8.1 - 1.8.1) <766AFB12-A2CB-3A55-B662-FC9FFCAE0008> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x9cbd5000 - 0x9cbd5fff com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate

External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 1
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 107242
thread_create: 1293
thread_set_state: 1327

VM Region Summary:
ReadOnly portion of Libraries: Total=164.9M resident=43.1M(26%) swapped_out_or_unallocated=121.8M(74%)
Writable regions: Total=22.3M written=272K(1%) resident=588K(3%) swapped_out=0K(0%) unallocated=21.7M(97%)

REGION TYPE VIRTUAL
=========== =======
MALLOC 12.3M
MALLOC guard page 48K
Stack 65.5M
VM_ALLOCATE 24K
__CI_BITMAP 80K
__DATA 8136K
__DATA/__OBJC 316K
__IMAGE 528K
__IMPORT 8K
__LINKEDIT 43.5M
__OBJC 1728K
__OBJC/__DATA 580K
__PAGEZERO 4K
__TEXT 121.4M
__UNICODE 544K
mapped file 105.0M
shared memory 16K
shared pmap 6768K
=========== =======
TOTAL 366.1M

Model: MacBookAir3,2, BootROM MBA31.0061.B07, 2 processors, Intel Core 2 Duo, 1.86 GHz, 2 GB, SMC 1.66f54
Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
Memory Module: BANK 0/DIMM0, 1 GB, DDR3, 1067 MHz, 0x02FE, 0x45424A3130554538454655302D41452D4620
Memory Module: BANK 1/DIMM0, 1 GB, DDR3, 1067 MHz, 0x02FE, 0x45424A3130554538454655302D41452D4620
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD1), Broadcom BCM43xx 1.0 (5.106.198.19.22)
Bluetooth: Version 4.0.8f17, 2 service, 18 devices, 1 incoming serial ports
Network Service: AirPort, AirPort, en0
Serial ATA Device: APPLE SSD TS128C, 121,33 GB
USB Device: FaceTime Camera (Built-in), apple_vendor_id, 0x850a, 0x24600000 / 2
USB Device: Internal Memory Card Reader, apple_vendor_id, 0x8403, 0x26100000 / 2
USB Device: BRCM2070 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x04500000 / 3
USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821b, 0x04530000 / 5
USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0240, 0x04300000 / 2

ETA

Any clues as to why the ETA is so off? I Estimation was 15 min and the actual was more like 40. Not really a problem, but it is nice to know when to check back on the print.

Thanks, David

connectButton Label

Another simple solution:

RHAppDelegate.m

line 40

  + #define CONNECT_LABEL @"Connect    "

line 102

    +    [connectButton setLabel:CONNECT_LABEL];

line 328

    -    [connectButton setLabel:@"Connect"];
    +    [connectButton setLabel:CONNECT_LABEL];

Check format of placed stl file

Don't know how important that is but you can by error place any file via the "Add STL file" button even it's a gcode or anything else. Probably it would be good to validate the placed file after adding it.

Mac 0.31 crashes on startup

Hi

I have been successfully running Mac V0.30 and have just upgraded to V0.31. When I try to start it I get a crash. This always happens and it is not possible to start the program.


Process:         Repetier-Host Mac [56708]
Path:            /Applications/Repetier-Host Mac.app/Contents/MacOS/Repetier-Host Mac
Identifier:      repetier.Repetier-Host-Mac
Version:         1.0 (1)
Code Type:       X86 (Native)
Parent Process:  launchd [272]

Date/Time:       2012-08-23 11:45:34.780 +0200
OS Version:      Mac OS X 10.6.8 (10K549)
Report Version:  6

Interval Since Last Report:          371999 sec
Crashes Since Last Report:           7
Per-App Interval Since Last Report:  9787 sec
Per-App Crashes Since Last Report:   6
Anonymous UUID:                      73FC14AC-82D9-4B81-9E63-D7DF51C0450F

Exception Type:  EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000002, 0x0000000000000000
Crashed Thread:  0  Dispatch queue: com.apple.main-thread

Application Specific Information:
*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '+[NSColor colorWithSRGBRed:green:blue:alpha:]: unrecognized selector sent to class 0xa0747b18'
*** Call stack at first throw:
(
    0   CoreFoundation                      0x992946ca __raiseError + 410
    1   libobjc.A.dylib                     0x94d695a9 objc_exception_throw + 56
    2   CoreFoundation                      0x992e19cb +[NSObject(NSObject) doesNotRecognizeSelector:] + 187
    3   CoreFoundation                      0x9923ac06 ___forwarding___ + 950
    4   CoreFoundation                      0x9923a7d2 _CF_forwarding_prep_0 + 50
    5   Repetier-Host Mac                   0x00002fed 0x0 + 12269
    6   Repetier-Host Mac                   0x00002d35 0x0 + 11573
)


Thread 0 Crashed:  Dispatch queue: com.apple.main-thread
0   com.apple.CoreFoundation        0x992dfa37 ___TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION___ + 7
1   libobjc.A.dylib                 0x94d695a9 objc_exception_throw + 56
2   com.apple.CoreFoundation        0x992e19cb +[NSObject(NSObject) doesNotRecognizeSelector:] + 187
3   com.apple.CoreFoundation        0x9923ac06 ___forwarding___ + 950
4   com.apple.CoreFoundation        0x9923a7d2 _CF_forwarding_prep_0 + 50
5   repetier.Repetier-Host-Mac      0x00002fed 0x1000 + 8173
6   repetier.Repetier-Host-Mac      0x00002d35 0x1000 + 7477

Thread 0 crashed with X86 Thread State (32-bit):
  eax: 0x00000000  ebx: 0x94d69585  ecx: 0xa0c26540  edx: 0x0000003b
  edi: 0xa0612ab0  esi: 0x0010ddc0  ebp: 0xbffff868  esp: 0xbffff850
   ss: 0x0000001f  efl: 0x00000286  eip: 0x992dfa37   cs: 0x00000017
   ds: 0x0000001f   es: 0x0000001f   fs: 0x00000000   gs: 0x00000037
  cr2: 0x55e92000

Binary Images:
    0x1000 -    0x61ffb +repetier.Repetier-Host-Mac 1.0 (1) <BDE5E8FB-5AFB-3EE3-A8B9-8C4B4F2C0182> /Applications/Repetier30-Host Mac.app/Contents/MacOS/Repetier-Host Mac
0x3e000000 - 0x3e046ff7  com.apple.glut 3.4.4 (GLUT-3.4.4) <DF15FD36-E1F5-D745-1BF6-DD3AEA2897E4> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
0x8fe00000 - 0x8fe4162b  dyld 132.1 (???) <39AC3185-E633-68AA-7CD6-1230E7F1CEF4> /usr/lib/dyld
0x90003000 - 0x90040ff7  com.apple.CoreMedia 0.484.60 (484.60) <8FAB137D-682C-6DEC-5A15-F0029A5B226F> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
0x90041000 - 0x9004cff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x90080000 - 0x900a4ff7  libJPEG.dylib ??? (???) <5F2343E4-C268-B9AE-1BC3-466F5A614648> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x90ff9000 - 0x91079feb  com.apple.SearchKit 1.3.0 (1.3.0) <2F5DE102-A203-7905-7D12-FCBCF17BAEF8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x9107a000 - 0x91084fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x91085000 - 0x91141fff  com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x911da000 - 0x911daff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x9144b000 - 0x9144dff7  com.apple.securityhi 4.0 (36638) <E7D83480-77BB-72F9-72F3-AEE198CE589F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x91467000 - 0x914cbffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x914cc000 - 0x91597fef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x9170f000 - 0x9172bfe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x9172c000 - 0x91772ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
0x91773000 - 0x9177cff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x917ec000 - 0x91849ff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x91856000 - 0x91ac7fef  com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x91ac8000 - 0x91ac8ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x91b10000 - 0x91b4dff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x929af000 - 0x929b5fe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x929d5000 - 0x929e9fe7  libbsm.0.dylib ??? (???) <821E415B-6C42-D359-78FF-E892792F8C52> /usr/lib/libbsm.0.dylib
0x92a95000 - 0x92c58feb  com.apple.ImageIO.framework 3.0.5 (3.0.5) <87750C2B-193F-56A6-AB97-0842A2D02092> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x92d82000 - 0x92de3fe7  com.apple.CoreText 151.12 (???) <98F53C15-1D29-A2B3-0717-5A26A2699163> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x92de4000 - 0x92de4ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x92de7000 - 0x92df5ff7  com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x92df6000 - 0x92e39ff7  libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x92e3a000 - 0x930a0ff7  com.apple.security 6.1.2 (55002) <E999CCEF-B769-4355-3E68-6003FCF6FE2B> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x934d1000 - 0x934f1fe7  libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
0x94202000 - 0x94245ff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x9435c000 - 0x9437dfe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x943f9000 - 0x943fdff7  libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x943fe000 - 0x9442fff7  libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x94430000 - 0x94434ff7  libGIF.dylib ??? (???) <5D29E5F4-30B9-5A24-55E7-BCBA30499093> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x9494c000 - 0x949e9fe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x94c86000 - 0x94ccafe7  com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x94ccb000 - 0x94cceff7  libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x94d46000 - 0x94d5eff7  com.apple.CFOpenDirectory 10.6 (10.6) <F9AFC571-3539-6B46-ABF9-46DA2B608819> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x94d5f000 - 0x94e0cfe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
0x94e51000 - 0x94e51ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
0x95153000 - 0x95255fe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
0x95256000 - 0x953d8fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
0x953ea000 - 0x9543aff7  com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x95483000 - 0x954b6ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x954b7000 - 0x954c5fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
0x95602000 - 0x956dcfff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x956dd000 - 0x95a48ff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x95a49000 - 0x95a6bfef  com.apple.DirectoryService.Framework 3.6 (621.14) <A24C9308-4EB3-456D-1691-43DDB6F9A79F> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x95a7f000 - 0x96362ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x96443000 - 0x96496ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x96497000 - 0x96501fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
0x96502000 - 0x96602fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <BE7FCD73-03B5-25A4-FCA4-D4980F1488D6> /usr/lib/libxml2.2.dylib
0x96603000 - 0x9664affb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/CoreMediaIOServices
0x96661000 - 0x966a5ff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x966a6000 - 0x966b3ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x966ef000 - 0x966f2fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
0x966f3000 - 0x96711fe7  libPng.dylib ??? (???) <45185287-25AD-C239-AA58-8FA53DF55B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x96712000 - 0x96a0cfef  com.apple.QuickTime 7.6.6 (1790) <A5B2CDA8-47C9-F1AE-ED54-625B0FAB426F> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
0x96a0d000 - 0x96aedfe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x96aee000 - 0x96b14ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x96b4e000 - 0x96b58ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x96b59000 - 0x96c65fe7  libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x96c66000 - 0x96c69ffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x96c6a000 - 0x96cb7feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
0x96cb8000 - 0x96cbcff7  IOSurface ??? (???) <D849E1A5-6B0C-2A05-2765-850EC39BA2FF> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x96cbd000 - 0x96fe1fef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x97023000 - 0x970dcfe7  libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
0x97139000 - 0x9713aff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x9713b000 - 0x9713bff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x9713c000 - 0x97148ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
0x97149000 - 0x97198fe7  libTIFF.dylib ??? (???) <D0EB31DC-40E6-9A97-64D3-9867605DC3DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x97199000 - 0x971aaff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x9740c000 - 0x974b8fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x974f2000 - 0x97584fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x975cb000 - 0x9770efef  com.apple.QTKit 7.7 (1790) <95F7C69A-1D24-A96A-E95D-1DF8CCD03FB3> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x9785b000 - 0x9785cff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x9785d000 - 0x97871ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <0DBE17D5-17A2-8A0E-8572-5A78408B41C9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x97b1c000 - 0x97b96fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x97be6000 - 0x97bfbfff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x97bfc000 - 0x97bfeff7  libRadiance.dylib ??? (???) <98EC06D5-1A02-EDEF-BF9D-2C986761AD54> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x97bff000 - 0x97bffff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x97d05000 - 0x97d80fff  com.apple.AppleVAFramework 4.10.27 (4.10.27) <BFD2D1CA-535C-F16F-0EB5-04905ABD65CF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x97d81000 - 0x97df0ff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x97df1000 - 0x97f1ffe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x97f20000 - 0x9805dfe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x9821f000 - 0x98226ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x98227000 - 0x98246ff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x983aa000 - 0x98452ffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x98453000 - 0x98463ff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
0x98471000 - 0x98499ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <E761F29A-328B-29D9-3DF0-023F2C21E500> /usr/lib/libxslt.1.dylib
0x9849a000 - 0x988b0ff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x988c5000 - 0x98973ff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x989bc000 - 0x989c1ff7  com.apple.OpenDirectory 10.6 (10.6) <C1B46982-7D3B-3CC4-3BC2-3E4B595F0231> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x98d06000 - 0x98d88ffb  SecurityFoundation ??? (???) <A8D248DE-8670-970D-39E3-A9738CFDBEE1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x98d89000 - 0x98d89ff7  com.apple.Carbon 150 (152) <2539A94A-34D9-45CB-8F3E-AD53149E0BD5> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x98d8a000 - 0x991bfff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x991c0000 - 0x9933bfe7  com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x9933c000 - 0x99342fff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x99462000 - 0x994fafe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x99500000 - 0x999bbff7  com.apple.VideoToolbox 0.484.60 (484.60) <B53299EC-E30F-EC04-779D-29B7113CC14A> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x999f5000 - 0x99a07ff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x99a34000 - 0x99acffe7  com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x99ad0000 - 0x99c77ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
0x99ddb000 - 0x99ddbff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x99e57000 - 0x9a177ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x9a19c000 - 0x9a1d6ff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <038731B1-CC44-3943-E3DE-4BAAA203EB72> /usr/lib/libcups.2.dylib
0x9a1d7000 - 0x9a9c6557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x9a9d2000 - 0x9aaffffb  com.apple.MediaToolbox 0.484.60 (484.60) <A7FE2739-64A7-40EB-A6E7-69FBCE3C87D4> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x9ab00000 - 0x9ab42ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x9ac1a000 - 0x9acd2feb  libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib

Model: MacBookPro6,2, BootROM MBP61.0057.B0C, 2 processors, Intel Core i5, 2.4 GHz, 4 GB, SMC 1.58f16
Graphics: NVIDIA GeForce GT 330M, NVIDIA GeForce GT 330M, PCIe, 256 MB
Graphics: Intel HD Graphics, Intel HD Graphics, Built-In, 288 MB
Memory Module: global_name
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x93), Broadcom BCM43xx 1.0 (5.10.131.42.4)
Bluetooth: Version 2.4.5f3, 2 service, 12 devices, 1 incoming serial ports
Network Service: AirPort, AirPort, en1
Serial ATA Device: Hitachi HTS545032B9SA02, 298.09 GB
Serial ATA Device: MATSHITADVD-R   UJ-898
USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfa100000 / 2
USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0237, 0xfa120000 / 5
USB Device: BRCM2070 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0xfa110000 / 4
USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8218, 0xfa113000 / 9
USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0xfa130000 / 3
USB Device: Hub, 0x0424  (SMSC), 0x2514, 0xfd100000 / 2
USB Device: iPod, 0x05ac  (Apple Inc.), 0x1299, 0xfd130000 / 5
USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0xfd120000 / 4
USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0xfd110000 / 3

Some settings don't get saved

Looks like at least the coordinates for the drop zone don't get saved - they're resetted to default after restarting the host.

Gcode visualization bug

I use Repetier-host 0.53 as a gcode checker for various slicers (since you have by far the best gcode visualization I have found). It has worked great with gcodes generated by Makerware, but recently I noticed a couple of problems.

First, it works fine for Gcodes of the right extruder (T0), but with the left (T1), it no longer sees the layer separations. It can still plot the total model, but it can't look at a single layer (you still just see the whole thing).

Second, the positioning changed drastically in the latest version. Now my gcodes often end up way off the build platform (even though they print just fine). I've tried adjusting the print bed parameters, and it doesn't behave at all like I would expect. Perhaps the homing codes or something else in the default start.gcode is confusing it?

Thanks,

-Emmett

Feature request: lock the cameras between positioning and gcode views

I try to line them up so I can toggle between them to visually compare how much work is left. Also, it makes things easier to explain to the uninitiated. But the two cameras don't stay locked at the same position/angle so I have to adjust them each separately, which is more work than I'd like. Can this be a toggle in 3D visualizations > General Settings, please?

Host software crashing during printing

Not sure why but recently my software has started to crash more frequently! Wondering if this is a MacOS or Repetier problem.

File report:

Process: Repetier-Host Mac [187]
Path: /Applications/Repetier-Host Mac.app/Contents/MacOS/Repetier-Host Mac
Identifier: repetier.Repetier-Host-Mac
Version: 1.0 (1)
Code Type: X86 (Native)
Parent Process: launchd [115]

Date/Time: 2012-05-05 05:05:03.822 +0100
OS Version: Mac OS X 10.7.3 (11D50b)
Report Version: 9

Interval Since Last Report: 432904 sec
Crashes Since Last Report: 46
Per-App Interval Since Last Report: 254114 sec
Per-App Crashes Since Last Report: 6
Anonymous UUID: 284DFD00-043B-4927-9059-2CE460A12BD6

Crashed Thread: 0 Dispatch queue: com.apple.main-thread

Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000

VM Regions Near 0:
--> __PAGEZERO 0000000000000000-0000000000001000 [ 4K] ---/--- SM=NUL /Applications/Repetier-Host Mac.app/Contents/MacOS/Repetier-Host Mac
__TEXT 0000000000001000-0000000000056000 [ 340K] r-x/rwx SM=COW /Applications/Repetier-Host Mac.app/Contents/MacOS/Repetier-Host Mac

Application Specific Information:
objc[187]: garbage collection is OFF

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 repetier.Repetier-Host-Mac 0x0002f922 0x1000 + 190754
1 repetier.Repetier-Host-Mac 0x0003105d 0x1000 + 196701
2 repetier.Repetier-Host-Mac 0x0001e4cd 0x1000 + 120013
3 repetier.Repetier-Host-Mac 0x0001f73a 0x1000 + 124730
4 com.apple.AppKit 0x94e02295 -[NSView _drawRect:clip:] + 3717
5 com.apple.AppKit 0x94e31c32 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 1958
6 com.apple.AppKit 0x94dffbf2 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 708
7 com.apple.AppKit 0x94e00d5f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 5169
8 com.apple.AppKit 0x94e00d5f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 5169
9 com.apple.AppKit 0x94e00d5f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 5169
10 com.apple.AppKit 0x94e00d5f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 5169
11 com.apple.AppKit 0x94e00d5f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 5169
12 com.apple.AppKit 0x94e00d5f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 5169
13 com.apple.AppKit 0x94e00d5f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 5169
14 com.apple.AppKit 0x94e00d5f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 5169
15 com.apple.AppKit 0x94e00d5f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 5169
16 com.apple.AppKit 0x94e00d5f -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 5169
17 com.apple.AppKit 0x94dff1f3 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:topView:] + 259
18 com.apple.AppKit 0x94dfa87c -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4817
19 com.apple.AppKit 0x94df379f -[NSView displayIfNeeded] + 1365
20 com.apple.AppKit 0x94df056d -[NSWindow displayIfNeeded] + 316
21 com.apple.AppKit 0x94df3070 _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 804
22 com.apple.Foundation 0x92410bdf __NSFireTimer + 166
23 com.apple.CoreFoundation 0x93d2f656 CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION + 22
24 com.apple.CoreFoundation 0x93d2efe7 __CFRunLoopDoTimer + 743
25 com.apple.CoreFoundation 0x93d0df70 __CFRunLoopRun + 1888
26 com.apple.CoreFoundation 0x93d0d47c CFRunLoopRunSpecific + 332
27 com.apple.CoreFoundation 0x93d0d328 CFRunLoopRunInMode + 120
28 com.apple.HIToolbox 0x940f117f RunCurrentEventLoopInMode + 318
29 com.apple.HIToolbox 0x940f84e7 ReceiveNextEventCommon + 381
30 com.apple.HIToolbox 0x940f8356 BlockUntilNextEventMatchingListInMode + 88
31 com.apple.AppKit 0x94db2a9c _DPSNextEvent + 678
32 com.apple.AppKit 0x94db2306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
33 com.apple.AppKit 0x94dae675 -[NSApplication run] + 911
34 com.apple.AppKit 0x95042261 NSApplicationMain + 1054
35 repetier.Repetier-Host-Mac 0x00002055 0x1000 + 4181

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x97bff90a kevent + 10
1 libdispatch.dylib 0x92a6fc58 _dispatch_mgr_invoke + 969
2 libdispatch.dylib 0x92a6e6a7 _dispatch_mgr_thread + 53

Thread 2:: com.apple.CFSocket.private
0 libsystem_kernel.dylib 0x97bfeb42 __select + 10
1 com.apple.CoreFoundation 0x93d5bee5 __CFSocketManager + 1557
2 libsystem_c.dylib 0x9492ced9 _pthread_start + 335
3 libsystem_c.dylib 0x949306de thread_start + 34

Thread 3:: de.harmless.AMSerialPort.readDataInBackgroundThread
0 libsystem_kernel.dylib 0x97bfeb42 select + 10
1 repetier.Repetier-Host-Mac 0x0000b009 0x1000 + 40969
2 com.apple.Foundation 0x92412e59 -[NSThread main] + 45
3 com.apple.Foundation 0x92412e09 __NSThread__main
+ 1582
4 libsystem_c.dylib 0x9492ced9 _pthread_start + 335
5 libsystem_c.dylib 0x949306de thread_start + 34

Thread 0 crashed with X86 Thread State (32-bit):
eax: 0x00000008 ebx: 0x0030aa00 ecx: 0x00000008 edx: 0x00000000
edi: 0x00000008 esi: 0x00000000 ebp: 0xbfffbb08 esp: 0xbfffb700
ss: 0x00000023 efl: 0x00010202 eip: 0x0002f922 cs: 0x0000001b
ds: 0x00000023 es: 0x00000023 fs: 0x00000000 gs: 0x0000000f
cr2: 0x00000000
Logical CPU: 2

Binary Images:
0x1000 - 0x55ff3 +repetier.Repetier-Host-Mac (1.0 - 1) <240544EE-CF4A-342D-908A-C66AF54372B0> /Applications/Repetier-Host Mac.app/Contents/MacOS/Repetier-Host Mac
0x7cb000 - 0x7f8ff8 GLRendererFloat (??? - ???) <046FB12A-6022-3A91-8385-5BDF85BDACE7> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat
0x3ab0000 - 0x3b35ffa com.apple.xquery (1.3 - 29) <402F00BB-0CBF-3CD3-A752-361A65C906E7> /System/Library/PrivateFrameworks/XQuery.framework/XQuery
0x5000000 - 0x516dffc GLEngine (??? - ???) <5C52561A-F1B6-33ED-B6A0-7439EA2B0920> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
0x51a1000 - 0x5298ffb libGLProgrammability.dylib (??? - ???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x52bc000 - 0x5653fef com.apple.driver.AppleIntelHD3000GraphicsGLDriver (7.18.11 - 7.1.8) /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/MacOS/AppleIntelHD3000GraphicsGLDriver
0x59be000 - 0x59bfff0 +cl_kernels (??? - ???) <35209796-E04B-4D45-B9F0-4AA08565807C> cl_kernels
0x59e7000 - 0x59e9fff libCoreFSCache.dylib (??? - ???) <17698E23-65F8-30AF-9C05-7E6172E52656> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x59f7000 - 0x59f7ffb +cl_kernels (??? - ???) <1C3B4031-4AF9-4D71-A7BF-3435DBADE819> cl_kernels
0x59fb000 - 0x59fbff6 +cl_kernels (??? - ???) <7F54B33D-8E79-4AEE-8A4F-6D488BA5649E> cl_kernels
0x60ab000 - 0x60abffb +cl_kernels (??? - ???) <6D7193C9-66D8-44A3-B628-F814C8ADA72B> cl_kernels
0x60b0000 - 0x60b1ff8 +cl_kernels (??? - ???) <1A703929-179E-4B2C-9489-7E960888F6F9> cl_kernels
0x60d7000 - 0x60d8ffb +cl_kernels (??? - ???) <0DB44E5E-048A-4E05-B4A2-AE3C0EF4BEA4> cl_kernels
0x7488000 - 0x7488ff3 +cl_kernels (??? - ???) cl_kernels
0x74ab000 - 0x74b0fe2 libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <57256969-D8B2-3B02-9425-25E719AAF478> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
0x74d4000 - 0x7573ff7 unorm8_rgba.dylib (1.50.69 - compatibility 1.0.0) <3A06E8EA-0335-348A-BCCB-21C3E94AED31> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba.dylib
0x7589000 - 0x762aff7 unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <7A0427BD-4FB5-3F4E-A7F8-F760AD944283> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra.dylib
0x8101000 - 0x8105ff7 com.apple.qldisplay.Generic (3.1 - 500.10) <5E1A5DAB-7C4A-3EC3-9AF6-A3298F1AB1AE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/PlugIns/Generic.qldisplay/Contents/MacOS/Generic
0x83b7000 - 0x83b8ff8 +cl_kernels (??? - ???) cl_kernels
0x8452000 - 0x845affb com.apple.URLMount.AFPPlugin (4.0 - 4.0) /System/Library/Filesystems/NetFSPlugins/afp.bundle/Contents/MacOS/afp
0x87db000 - 0x87e4fff com.apple.AppleSRP (1.0 - 1) <334CDC8D-4364-3616-BA06-E8A4ECFFD3CD> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x87f2000 - 0x8893ff7 unorm8_argb.dylib (1.50.69 - compatibility 1.0.0) /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_argb.dylib
0x32781000 - 0x327caff7 com.apple.AppleShareClientCore (2.5 - 2.5) /System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShareClientCore
0x3e000000 - 0x3e044fff com.apple.glut (3.4.9 - GLUT-3.4.9) <28FCEDCC-0E24-3F81-BB29-E09CBCD5E047> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
0x8fe72000 - 0x8fea4aa7 dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
0x90023000 - 0x90028ffb com.apple.phonenumbers (1.0 - 47) <84484814-C9BE-33E7-A3DF-4DD0E970B902> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
0x90029000 - 0x90073ff2 com.apple.Suggestions (1.1 - 85.1) <1057087C-AC51-3C3B-BECD-BF97426B2372> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
0x90080000 - 0x90088fff com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x90089000 - 0x90089fff libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <959E5139-EB23-3529-8881-2BCB5724D1A9> /usr/lib/system/libdnsinfo.dylib
0x9008a000 - 0x900b8fe7 libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <30189C33-6ADD-3142-83F3-6114B1FC152E> /usr/lib/libSystem.B.dylib
0x900b9000 - 0x900b9fff com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x90114000 - 0x9013ffff com.apple.GSS (2.1 - 2.0) /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x90140000 - 0x90144fff com.apple.CommonPanels (1.2.5 - 94) <3A988595-DE53-34ED-9367-C9A737E2AF38> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x90145000 - 0x90263fec com.apple.vImage (5.1 - 5.1) <7757F253-B281-3612-89D4-F2B04061CBE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x90307000 - 0x9030fff5 libcopyfile.dylib (85.1.0 - compatibility 1.0.0) /usr/lib/system/libcopyfile.dylib
0x90310000 - 0x905c1ff7 com.apple.AddressBook.framework (6.1 - 1083) <060E8C9F-FBF8-3394-8D63-D2DE0F428829> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
0x905cd000 - 0x90608fff com.apple.bom (11.0 - 183) <39257FE6-8B23-39B6-9528-57184104A98F> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
0x90609000 - 0x9087cff7 com.apple.CoreImage (7.93 - 1.0.1) <88FEFE5B-83A9-3CD9-BE2E-DB1E0553EBB0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x908a5000 - 0x908adff3 libunwind.dylib (30.0.0 - compatibility 1.0.0) /usr/lib/system/libunwind.dylib
0x909e0000 - 0x909fcff5 com.apple.GenerationalStorage (1.0 - 126.1) /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x90a02000 - 0x90a02fff com.apple.quartzframework (1.5 - 1.5) /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x90a03000 - 0x90c88fe3 com.apple.QuickTime (7.7.1 - 2315) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
0x90cbc000 - 0x90d7efff com.apple.CoreServices.OSServices (478.37 - 478.37) <00A48B2A-2D75-3FD0-9805-61BB11710879> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x90e01000 - 0x90e01fff com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x90e02000 - 0x90ee5ff7 libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) /usr/lib/libcrypto.0.9.8.dylib
0x91581000 - 0x9158affb com.apple.DisplayServicesFW (2.5.2 - 317) <02BD6AF3-F355-3F68-9DC2-2DA28CE27682> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x915ca000 - 0x9190dfff com.apple.MediaToolbox (1.0 - 705.61) /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x9190e000 - 0x9190fff0 libunc.dylib (24.0.0 - compatibility 1.0.0) /usr/lib/system/libunc.dylib
0x91910000 - 0x9191efff libz.1.dylib (1.2.5 - compatibility 1.0.0) /usr/lib/libz.1.dylib
0x9191f000 - 0x9192cfff libGL.dylib (??? - ???) <30E6DED6-0213-3A3B-B2B3-310E33301CCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x919ad000 - 0x91afffff com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x91b42000 - 0x91bd7ff7 com.apple.LaunchServices (480.27.1 - 480.27.1) <8BFE799A-7E35-3834-9403-20E5ADE015D0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x91bd8000 - 0x91bd9fff liblangid.dylib (??? - ???) /usr/lib/liblangid.dylib
0x91bda000 - 0x91bdbffd libCVMSPluginSupport.dylib (??? - ???) <6C364E11-B9B3-351A-B297-DB06FBAAFFD1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x91bdc000 - 0x91c2dff9 com.apple.ScalableUserInterface (1.0 - 1) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
0x91c3a000 - 0x91d4afe7 libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <34E1E3CC-7B6A-3B37-8D07-1258D11E16CB> /usr/lib/libsqlite3.dylib
0x91d4b000 - 0x91d74ff1 com.apple.CoreServicesInternal (113.12 - 113.12) /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x91d81000 - 0x91dbeff7 libcups.2.dylib (2.9.0 - compatibility 2.0.0) <4508AABD-EDA8-3BF7-B03A-978D2395C9A8> /usr/lib/libcups.2.dylib
0x91dbf000 - 0x91e1cffb com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x91e1d000 - 0x91e54fef com.apple.DebugSymbols (2.1 - 87) /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x91f6d000 - 0x9206cffb com.apple.DiskImagesFramework (10.7.3 - 331.3) <92112BAD-4A81-32C0-BB4F-3A92DBFF829F> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x9206d000 - 0x9206dfff com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x9206e000 - 0x920acfff libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <0FAB8C29-2A1B-3E25-BA34-BDD832B828DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x920ad000 - 0x920ccfff com.apple.RemoteViewServices (1.3 - 44) <243F16F3-FFFE-3E81-A969-2EC947A11D89> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x922d1000 - 0x923b2ff7 com.apple.DiscRecording (6.0.3 - 6030.4.1) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x923b3000 - 0x926bdff3 com.apple.Foundation (6.7.1 - 833.24) <8E2AD829-587C-3146-B483-9D0209B84192> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x926be000 - 0x926cbfff com.apple.KerberosHelper (3.0 - 1.0) <0E16B080-3931-3D3E-A786-419C24B44B02> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosHelper
0x926d7000 - 0x92797ffb com.apple.ColorSync (4.7.1 - 4.7.1) <68413C12-2380-3B73-AF74-B9E069DFB89A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x927f0000 - 0x928bffff com.apple.ImageIO.framework (3.1.1 - 3.1.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x928c6000 - 0x928caff7 com.apple.OpenDirectory (10.7 - 146) <4986A382-8FEF-3392-8CE9-CF6A5EE4E365> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x9290a000 - 0x92a6cfff com.apple.QTKit (7.7.1 - 2315) <21C7F00E-FBB9-3F12-AE51-06A630ECAC5E> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x92a6d000 - 0x92a7bfff libdispatch.dylib (187.7.0 - compatibility 1.0.0) /usr/lib/system/libdispatch.dylib
0x92b33000 - 0x92c1bfff libxml2.2.dylib (10.3.0 - compatibility 10.0.0) /usr/lib/libxml2.2.dylib
0x92c1c000 - 0x92c80fff com.apple.framework.IOKit (2.0 - ???) <8DAF4991-7359-3D1B-AC69-3CBA797D1E3C> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x92c81000 - 0x92cc1ff7 com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x92cc2000 - 0x92cc7ffd libGFXShared.dylib (??? - ???) <179E77CE-C72C-3B5F-8F1E-3901517C24BB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x92cc8000 - 0x92cceffd com.apple.CommerceCore (1.0 - 17) <71641C17-1CA7-3AC9-974E-AAC9EB641035> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x92cfb000 - 0x92d1dffe com.apple.framework.familycontrols (3.0 - 300) <6B0920A5-3971-30EF-AE4C-5361BB7199EB> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x92d1e000 - 0x930d8ffb com.apple.SceneKit (2.2 - 125.3) /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
0x930d9000 - 0x930dcffc libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
0x930dd000 - 0x93164fff com.apple.print.framework.PrintCore (7.1 - 366.1) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x931a3000 - 0x9327affb com.apple.avfoundation (2.0 - 180.30) <6788562E-A9A8-3898-A0F4-66D9BBAE3430> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
0x9327b000 - 0x93352ff6 com.apple.QuickLookUIFramework (3.1 - 500.10) <1E4CDD9B-BF13-375A-AC74-0943F9DA8648> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x934a1000 - 0x934d5ff3 libTrueTypeScaler.dylib (??? - ???) <43479E0A-C47D-3CE3-B328-9CB33D3FC3B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x934d6000 - 0x934f3fff libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
0x934f4000 - 0x9356fffb com.apple.ApplicationServices.ATS (317.5.0 - ???) <7A8B0538-8E2E-3355-81E3-0C0A7EBED28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x93570000 - 0x9357efff com.apple.opengl (1.7.6 - 1.7.6) <5EF9685C-F8B2-3B22-B291-8012761E9AC8> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x9357f000 - 0x935e6fff libc++.1.dylib (19.0.0 - compatibility 1.0.0) <3AFF3CE8-14AE-300F-8F63-8B7FB9D4DA96> /usr/lib/libc++.1.dylib
0x935e7000 - 0x93623ffa libGLImage.dylib (??? - ???) <05B36DC4-6B90-33E6-AE6A-10CAA1B70606> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x93632000 - 0x9363cff0 com.apple.DirectoryService.Framework (10.7 - 146) <59061A4B-D743-3A34-B142-7BE2472BBC2D> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x9363d000 - 0x93641ffa libcache.dylib (47.0.0 - compatibility 1.0.0) <98A82BC5-0DD9-3212-9CAE-35A77278EEB6> /usr/lib/system/libcache.dylib
0x93642000 - 0x93642fff com.apple.Cocoa (6.6 - ???) <650273EF-1ABC-334E-B745-B75AF028F9F4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x9364a000 - 0x93650ffb com.apple.print.framework.Print (7.1 - 247.1) <5D7ADC17-D8EF-3958-9C0C-AA45B7717FBA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x93651000 - 0x93678ff3 com.apple.framework.Apple80211 (7.1.2 - 712.1) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x93679000 - 0x936caff3 com.apple.CoreMediaIO (210.0 - 3180) <6C9974AD-CA84-3C49-B55E-0496B675DBA1> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x936cb000 - 0x936f3ff7 libxslt.1.dylib (3.24.0 - compatibility 3.0.0) /usr/lib/libxslt.1.dylib
0x936f4000 - 0x936f7fff com.apple.AppleSystemInfo (1.0 - 1) /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
0x936f8000 - 0x93767fff com.apple.Heimdal (2.1 - 2.0) /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x93773000 - 0x937a1ff7 com.apple.DictionaryServices (1.2.1 - 158.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x937a2000 - 0x937a9ff8 libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <8CBED8FC-BF9A-316D-8B47-32336263BE68> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
0x937aa000 - 0x937c1ff8 com.apple.CoreMediaAuthoring (2.0 - 890) <53F48529-E89F-3518-B888-C8C735C16F8F> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x937c6000 - 0x937d4ff7 com.apple.AppleFSCompression (37 - 1.0) <4C2F91BC-3705-340B-B979-CF8744EC2BE6> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompression
0x937d5000 - 0x937edff3 com.apple.frameworks.preferencepanes (15.0 - 15.0) <9E5FE337-358F-3B10-955D-B2D2021F732B> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
0x937ee000 - 0x9382eff7 libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
0x9382f000 - 0x93865ff7 com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x93866000 - 0x938deff8 com.apple.CorePDF (3.1 - 3.1) <0074267B-F74A-30FC-8508-A14C821F0771> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x93909000 - 0x9390afff com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x9390b000 - 0x93c39fff com.apple.FinderKit (1.0.1 - 1.0.1) <5D4B0D33-C8FB-3E85-8B19-052B2A9B9918> /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit
0x93caf000 - 0x93cbafff libkxld.dylib (??? - ???) <2F7F4101-4715-3036-A8E8-DE1608FE8447> /usr/lib/system/libkxld.dylib
0x93cbb000 - 0x93cd1ffe libxpc.dylib (77.18.0 - compatibility 1.0.0) /usr/lib/system/libxpc.dylib
0x93cd2000 - 0x93ea9fff com.apple.CoreFoundation (6.7.1 - 635.19) <3A07EDA3-F460-3971-BFCB-AFE9A11F74F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x93efc000 - 0x9400dff7 libJP2.dylib (??? - ???) <143828CE-D429-3C66-A0DC-4F39536568E4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x9400e000 - 0x9401eff7 libCRFSuite.dylib (??? - ???) /usr/lib/libCRFSuite.dylib
0x940ef000 - 0x94433ffb com.apple.HIToolbox (1.8 - ???) <9540400F-B432-3116-AEAD-C1FBCFE67E73> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x94444000 - 0x94485ff7 com.apple.CoreMedia (1.0 - 705.61) <75CC7ECC-8D62-3BA3-BD9B-D5E7FA82EC2D> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x94486000 - 0x944dffff com.apple.HIServices (1.11 - ???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x947f2000 - 0x9480cfff com.apple.Kerberos (1.0 - 1) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x9481c000 - 0x9486bffb com.apple.AppleVAFramework (5.0.14 - 5.0.14) <71C9D388-E607-3DB4-9FD3-FC918EB4A835> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x9486c000 - 0x9486cfff com.apple.Carbon (153 - 153) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x9486d000 - 0x948ceffb com.apple.audio.CoreAudio (4.0.2 - 4.0.2) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x948cf000 - 0x948cfff2 com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x948d0000 - 0x9499bfff libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <1B0A12B3-DAFA-31E2-8F82-E98D620E4D72> /usr/lib/system/libsystem_c.dylib
0x9499c000 - 0x949eaff3 com.apple.ImageCaptureCore (3.0.2 - 3.0.2) <2FBC3C23-B0DD-3F0B-8452-90954F9C7E13> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x949eb000 - 0x949fbfff libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) /usr/lib/libsasl2.2.dylib
0x94ad7000 - 0x94adaff7 libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
0x94b5f000 - 0x94b62ffb com.apple.help (1.3.2 - 42) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x94d0e000 - 0x94d13ff7 libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
0x94d1e000 - 0x94da8ffb com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x94da9000 - 0x9583cff6 com.apple.AppKit (6.7.3 - 1138.32) <008E7C05-C20C-344A-B51C-4A2441372785> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x9583d000 - 0x95886ff7 libGLU.dylib (??? - ???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x95887000 - 0x9589affb com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x9589b000 - 0x95d80ffb com.apple.RawCamera.bundle (3.12.0 - 614) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x95d81000 - 0x95d82ff7 libquarantine.dylib (36.2.0 - compatibility 1.0.0) <3F974196-FBAD-3DBD-8ED0-DC16C2B3526B> /usr/lib/system/libquarantine.dylib
0x95dba000 - 0x95dbdff7 libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
0x95dbe000 - 0x95dbfffd com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <45AC1CB9-2A81-3FEA-9BA4-E9BBA2582A28> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
0x95dc0000 - 0x95e1bff3 com.apple.Symbolication (1.3 - 91) <4D12D2EC-5010-3958-A205-9A67E972C76A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x95e1c000 - 0x95f7dffb com.apple.QuartzCore (1.7 - 270.2) <4A6035C8-1237-37E5-9FFF-1EFD735D8B18> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x95fa4000 - 0x95fa5fff libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) /usr/lib/system/libsystem_blocks.dylib
0x96015000 - 0x96059ff3 com.apple.framework.CoreWLAN (2.1.2 - 212.1) <5F2FB135-3B53-3DA8-B7E1-90A0C5F42127> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x9605a000 - 0x9608eff8 libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <567E922C-E64F-321B-9A47-6B18BF481625> /usr/lib/libssl.0.9.8.dylib
0x9608f000 - 0x960a2ffc com.apple.FileSync.framework (6.0.1 - 502.2) /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
0x960f0000 - 0x964e3ffb com.apple.VideoToolbox (1.0 - 705.61) <1278DC1E-AF77-34C1-9A60-B61ECF806E4D> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x964e4000 - 0x964e4ffe libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
0x964e5000 - 0x964f0ffc com.apple.NetAuth (1.0 - 3.0) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x964f1000 - 0x9654dfff com.apple.coreui (1.2.1 - 165.3) <65526A00-D355-3932-9279-9A7D6BF76D95> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x9654e000 - 0x9667aff9 com.apple.CFNetwork (520.3.2 - 520.3.2) <58021CA7-0C91-3395-8278-8BD76E03BDCB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x9667b000 - 0x96af0ff7 FaceCoreLight (1.4.7 - compatibility 1.0.0) <312D0F58-B8E7-3F61-8A83-30C95F2EBEAA> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
0x96af1000 - 0x96b8cff3 com.apple.ink.framework (1.3.2 - 110) <9F6F37F9-999E-30C5-93D0-E48D4B5E20CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x978de000 - 0x97926ff7 com.apple.SystemConfiguration (1.11.2 - 1.11) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x97927000 - 0x97931ff2 com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x97aa7000 - 0x97aa7ff0 com.apple.ApplicationServices (41 - 41) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x97b04000 - 0x97be5ff3 com.apple.backup.framework (1.3.1 - 1.3.1) <2CFEC368-F3FA-33C2-A821-336ACBAB0D35> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x97be6000 - 0x97c04ff7 libsystem_kernel.dylib (1699.22.81 - compatibility 1.0.0) /usr/lib/system/libsystem_kernel.dylib
0x97c05000 - 0x97c21ffc libPng.dylib (??? - ???) <75F41C08-E187-354C-8115-79387F57FC2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x97c22000 - 0x97c2bfff libc++abi.dylib (14.0.0 - compatibility 1.0.0) /usr/lib/libc++abi.dylib
0x97c2c000 - 0x982a7fe5 com.apple.CoreAUC (6.11.04 - 6.11.04) /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x982a8000 - 0x982a9fff libDiagnosticMessagesClient.dylib (??? - ???) /usr/lib/libDiagnosticMessagesClient.dylib
0x982aa000 - 0x982b5ffe libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <4A7FCD28-9C09-3120-980A-BDF6EDFAAC62> /usr/lib/libbz2.1.0.dylib
0x982b6000 - 0x98307fff libFontRegistry.dylib (??? - ???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x98308000 - 0x98531ffb com.apple.QuartzComposer (5.0 - 236.3) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x98532000 - 0x98641fff com.apple.DesktopServices (1.6.2 - 1.6.2) <33DCFB71-1D9E-30B6-BC4C-CD54068690BE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x98d1b000 - 0x98ecfff3 libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6AD14A51-AEA8-3732-B07B-DEA37577E13A> /usr/lib/libicucore.A.dylib
0x98f31000 - 0x98f60ff7 libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
0x98f61000 - 0x98f63ff9 com.apple.securityhi (4.0 - 1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x98f64000 - 0x99220ff3 com.apple.security (7.0 - 55110) <2F4FCD65-2A30-3330-99DE-91FE1F78B9FB> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x993b7000 - 0x993ddffb com.apple.quartzfilters (1.7.0 - 1.7.0) <9C8F1F3D-D570-3F5C-9B31-5B5B82161CDE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x993de000 - 0x995d3ff7 com.apple.CoreData (104.1 - 358.13) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x995d4000 - 0x995d4fff com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x995d5000 - 0x99625ff9 com.apple.QuickLookFramework (3.1 - 500.10) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x99626000 - 0x9962dff9 libsystem_dnssd.dylib (??? - ???) <236665A4-0508-3515-B520-AC8BD3FCE069> /usr/lib/system/libsystem_dnssd.dylib
0x9962e000 - 0x9964bff3 com.apple.openscripting (1.3.3 - ???) <31A51238-0CA1-38C7-9F0E-8A6676EE3241> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x99780000 - 0x997a2ff1 com.apple.PerformanceAnalysis (1.10 - 10) <45B10D4C-9B3B-37A6-982D-687A6F9EEA28> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x997a3000 - 0x999ecff7 com.apple.JavaScriptCore (7534.53 - 7534.53.8) <5F799A84-B6B2-398F-B617-285BAA60139F> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x99a60000 - 0x99af7ff3 com.apple.securityfoundation (5.0 - 55107) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x99af8000 - 0x99afaffb libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x99afb000 - 0x99afffff libGIF.dylib (??? - ???) <06E85451-F51C-31C4-B5A6-180819BD9738> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x99b00000 - 0x99b21fff com.apple.framework.internetaccounts (1.2 - 3) /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/InternetAccounts
0x99b22000 - 0x99b23ff4 libremovefile.dylib (21.1.0 - compatibility 1.0.0) <6DE3FDC7-0BE0-3791-B6F5-C15422A8AFB8> /usr/lib/system/libremovefile.dylib
0x99b24000 - 0x99b4eff0 libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <5CAA1478-97E0-31EA-8F50-BF09D665DD84> /usr/lib/libpcre.0.dylib
0x99b4f000 - 0x99bcbff0 com.apple.PDFKit (2.6.2 - 2.6.2) <5DC1CC0B-4F92-397F-98E3-5A5A9EB2CC5F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x99be6000 - 0x99bf7fff libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
0x99bf8000 - 0x99c85fe7 libvMisc.dylib (325.4.0 - compatibility 1.0.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x99c89000 - 0x99f8bfff com.apple.CoreServices.CarbonCore (960.20 - 960.20) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x99f8c000 - 0x9a1a7ff7 com.apple.imageKit (2.1.1 - 1.0) <3A523A4F-BE07-35B1-9A41-523FD27C14D4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x9a1a8000 - 0x9a1b6ff7 libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
0x9a1f0000 - 0x9a2e0ff1 libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
0x9a667000 - 0x9a6dbfff com.apple.CoreSymbolication (2.2 - 73.2) /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x9a6dc000 - 0x9a6f0ff7 com.apple.CFOpenDirectory (10.7 - 144) <665CDF77-F0C9-3AFF-8CF8-64257268B7DD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x9a6f1000 - 0x9a7e9ff7 libFontParser.dylib (??? - ???) <8C069D3D-534F-3EBC-8035-A43E2B3A431A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x9a7ea000 - 0x9a84cff3 libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
0x9a84d000 - 0x9a87aff7 com.apple.securityinterface (5.0 - 55007) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
0x9a87b000 - 0x9a87cff7 libsystem_sandbox.dylib (??? - ???) /usr/lib/system/libsystem_sandbox.dylib
0x9a87d000 - 0x9a921fff com.apple.QD (3.40 - ???) <3881BEC6-0908-3073-BA44-346356E1CDF9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x9a93d000 - 0x9a960fff com.apple.CoreVideo (1.7 - 70.1) <3520F013-DF91-364E-88CF-ED252A7BD0AE> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x9a962000 - 0x9a9a5fff com.apple.MediaKit (12 - 589) /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x9a9a6000 - 0x9a9adffd com.apple.NetFS (4.0 - 4.0) /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x9a9ae000 - 0x9aa16ff3 com.apple.ISSupport (1.9.8 - 56) <963339C2-020F-337E-AFB9-176090F818EC> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
0x9aa28000 - 0x9aa4dff9 libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x9aa50000 - 0x9aa53ffd libCoreVMClient.dylib (??? - ???) <2D135537-F9A6-33B1-9B01-6ECE7E929C00> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x9aa57000 - 0x9aa60ff3 com.apple.CommonAuth (2.1 - 2.0) <5DA75D12-A4D6-3362-AD72-79A64C79669E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x9aa61000 - 0x9aa6cffb com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <17C11291-5B27-3BE2-8614-7A806745EE8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x9b48e000 - 0x9b499ff3 libCSync.A.dylib (600.0.0 - compatibility 64.0.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x9b49a000 - 0x9b4d0ff4 com.apple.LDAPFramework (3.0 - 120.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x9b4d1000 - 0x9b547fff com.apple.Metadata (10.7.0 - 627.28) <71AC8DA5-FA89-3411-A97C-65B6129E97BD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x9b548000 - 0x9b5aaffb com.apple.datadetectorscore (3.0 - 179.4) <32262124-6F75-3999-86DA-590A90BA464C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x9b5ab000 - 0x9b5b3ff3 liblaunch.dylib (392.18.0 - compatibility 1.0.0) /usr/lib/system/liblaunch.dylib
0x9b5b4000 - 0x9b5f5ff9 libcurl.4.dylib (7.0.0 - compatibility 7.0.0) /usr/lib/libcurl.4.dylib
0x9b5f6000 - 0x9b60bfff com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x9b60c000 - 0x9bae8ff6 libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x9bae9000 - 0x9bafeff7 com.apple.ImageCapture (7.0 - 7.0) <116BC0CA-428E-396F-85DF-52793034D2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x9bb03000 - 0x9bf05ff6 libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x9bf06000 - 0x9bf6bff7 libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x9bf6c000 - 0x9bf95ffe com.apple.opencl (1.50.69 - 1.50.69) <44120D48-00A2-3C09-9055-36D309F1E7C9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x9c1fa000 - 0x9c1fcff7 libdyld.dylib (195.5.0 - compatibility 1.0.0) <637660EA-8D12-3B79-B644-041FEADC9C33> /usr/lib/system/libdyld.dylib
0x9c231000 - 0x9c281ff0 libTIFF.dylib (??? - ???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x9c282000 - 0x9c30fff7 com.apple.CoreText (220.11.0 - ???) <720EFEE0-A92A-3519-9C88-D06E4DE14EAB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x9c310000 - 0x9c314ffd IOSurface (??? - ???) <8D56A6E8-5785-311E-BD0D-661B92C92A5A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x9c315000 - 0x9c358ffd libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
0x9c359000 - 0x9c35dff3 libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
0x9c35e000 - 0x9cc865eb com.apple.CoreGraphics (1.600.0 - ???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x9cc9f000 - 0x9cd75aab libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <2E272DCA-38A0-3530-BBF4-47AE678D20D4> /usr/lib/libobjc.A.dylib
0x9cdec000 - 0x9cdefff9 libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x9cdf0000 - 0x9cdf7ff7 libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
0x9ce78000 - 0x9ce88fff com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0xbb100000 - 0xbb103fff libLatinSuppConverter.dylib (54.0.0 - compatibility 1.0.0) /System/Library/CoreServices/Encodings/libLatinSuppConverter.dylib

External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 18
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: 289
thread_create: 0
thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=190.7M resident=103.4M(54%) swapped_out_or_unallocated=87.4M(46%)
Writable regions: Total=3.4G written=3.2G(95%) resident=3.3G(99%) swapped_out=0K(0%) unallocated=44.9M(1%)

REGION TYPE VIRTUAL
=========== =======
CG backing stores 5292K
CG image 208K
CG raster data 412K
CG shared images 3384K
CoreAnimation 4K
CoreGraphics 8K
CoreServices 2520K
IOKit 6356K
MALLOC 3.2G
MALLOC guard page 32K
Memory tag=240 8K
Memory tag=242 12K
OpenCL 80K
OpenGL GLSL 988K
OpenGL GLSL (reserved) 128K reserved VM address space (unallocated)
Stack 65.1M
VM_ALLOCATE 20.2M
__CI_BITMAP 80K
__DATA 9500K
__DATA/__OBJC 144K
__IMAGE 528K
__IMPORT 4K
__LINKEDIT 44.2M
__OBJC 3128K
__OBJC/__DATA 52K
__PAGEZERO 4K
__RC_CAMERAS 244K
__TEXT 146.5M
__UNICODE 544K
mapped file 115.5M
shared memory 84.5M
shared pmap 7136K
=========== =======
TOTAL 3.7G
TOTAL, minus reserved VM space 3.7G

Model: MacBookPro8,1, BootROM MBP81.0047.B27, 2 processors, Intel Core i7, 2.7 GHz, 8 GB, SMC 1.68f98
Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 512 MB
Memory Module: BANK 0/DIMM0, 4 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333531533642465238432D48392020
Memory Module: BANK 1/DIMM0, 4 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54333531533642465238432D48392020
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.100.98.75.19)
Bluetooth: Version 4.0.3f12, 2 service, 11 devices, 1 incoming serial ports
Network Service: AirPort, AirPort, en1
Serial ATA Device: TOSHIBA MK7559GSXF, 750.16 GB
Serial ATA Device: OPTIARC DVD RW AD-5970H
USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
USB Device: hub_device, 0x0424 (SMSC), 0x2513, 0xfa100000 / 2
USB Device: TTL232R, 0x0403 (Future Technology Devices International Limited), 0x6001, 0xfa130000 / 6
USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0246, 0xfa120000 / 5
USB Device: BRCM2070 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0xfa110000 / 4
USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 9
USB Device: hub_device, 0x0424 (SMSC), 0x2513, 0xfd100000 / 2
USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3

Feature request: Speed and temperature control, simpler version

I grant my other feature requests are a lot of work to code, test and implement. but i just came up with a good idea that would facilitate the changing of print bed, extruder temperature and printer speed, independently. build a control into the g-code 3D view, where the user can use the layer sliders at the bottom to set the upper layer. there is a field that lets them insert an extruder temp, bed temp or speed gcode parameter at the layer shown at the top. it just automatically inserts it into the gcode. perhaps there could be a coloured marker at the layers that have this gcode. that way you can navigate to that layer visually and then see the data for each of those parameters at that layer. but most important would be the ability to insert these codes. that way we can go through and set up temps and speeds depending on the materials being printed and the geometery.

Temperature settings

Wow, thank you very much, this is a massive step forward for Mac users like myself!

I've been running this host all day with hardly any problems!

I have however noticed a few minor problems.

  1. After setting default temperatures for extruder and heat bed in printer settings they are still set to 170 extruder and 55 heat bed in the print panel!
  2. After the setting "printer has dump area" has been deselected and the host software is restarted the setting is defaulted back to the printer has dump area.
  3. At the end of a print job, the temperatures drop on the extruder and heat bed (they turn off as expected), though they are still indicated as on within the print panel. They then have to be turned off and then back on again to heat back up.

G-Code visualization shows first layer below the grid / other suggestions

First I want to thank you for this great piece of software. I use it for one week now and can't imagine to go back to anything else I used before :-) Keep up the good work!

Issue:

When I load a gcode file the first layer is always drawn outside the bounding box (below the grid).
Maybe it has something to do with my small first layer height (0.1mm) or it is a general issue. I think the visualization starts just 1mm below the grid.
The following (abstract) gcode file demonstrates the problem:

G1 Z0.100
G1 X40 Y40
G1 X80 Y40 E2.25604

You can see that the visualization of the object is outside of the bounding box (below the grid).

Suggestions:

  • I like the new G-Code Visualization feature a lot. It would be nice to scroll through the single layers with the mouse (e.g. using shift key + mouse scroll). Now you only can use the slider to step through the layers and the image is not update while moving the slider.
  • The feed rate for moving the head manually in print panel is much to slow for me. Either add an option for it or increase it please.
  • I seriously miss a button to set origin (usually I move the head before printing and fine tune my z-axis by hand - endstops are just not good enough when printing <= 0.1mm layer height). When done I have to send a G92 to set the origin. A button for this would be nice...

Thanks,

Maik

Bugs Reporting

Hi,

I started using Repetier-Host Mac a couple of days ago.
I like it, however sometime it crashes.
What reports/infos do you need?

SD card manager hanging

Sd card menu > able to see, create, delete folders.

Upon upload of "current gcode", beachballs and stalled progress bar, to the point where it is impossible to copy or read the log output.

I was able to upload only one file, 20-mmbox.stl, gcode generated by slic3r (the packaged one from repetier host).

More complex stl files are consistently stalling repetier host, up to a total hault.

No errors in the log ACK output. It either hangs the whole repetier app (with any slt larger than the 20-mmbox) , or saves a corrupt file (the aforementioned 20mmbox) as described bellow.

On:
Ramps 1.4 + sdRamps
Mac os x 10.8.2 Mountain Lion
Repetier Host version 0.52 (49) + integrated Slic3r
Repetier Firmware 0.81 master branch + force repetier protocol + 250000 baud rate
Firmware compiled and uploaded using a fresh download of arduino ide 1.0.3, WITHOUT replacing the original HardwareSerial.h with the one provided in the "boards" folder.

-Issue repeatable with 63 or 127 "receive cache" sizes,
card reformated on different computers, 3 different sd cards, different baud rates, different file and folders names and name char lengths (from to up to 8 characters long).

Printer is working fine and printing without errors otherwise.

Upon unmounting the SDcard, removing from sdramps and putting on usb card reader on another computer:
-Folders created from "sd card" menu in repetier are there
-File generated from the "sdcard" -> "Upload" -> "Upload Current Gcode" is present
-The contents of the generated file (opened and copied the file contents in a simple text editor) as follows:

ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�Ä�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�ÄÄ�

Lock up

I've been running v0.31 and it seems that after about a while, usually more than an hour (not consistent however), the print stops and the it seems the host "locks up". Every once and a while it will make it through a 2 hour print. I can click the disconnect button and the EStop button and disconnect, but if I try things like pause, heat on/off etc. Nothing seems to happen. I'm guessing something is wrong in the USB comm area.

I have no idea how to compile this with debugging, but am willing to help feedback more complete info if you can tell me how. For the moment, I'm trying to run v0.30 to see if works more reliably.

Dimension Height in printer setup does not take effect when you press OK

If I change the Dimension Height under printer setup, then press OK, then home the machine, it does not go to that position (home is max Z on my machine- Rostock). The work around is to press Accept, then switch to the Calibration tab, then press OK. Now when I home the machine it goes to the newly set dimension height.

0.51 crashing on startup on OSX 10.7.5

Hi,

This runs fine on my macbook pro osx 10.6.8.

But on my wife's macbook pro (non retina) running 10.7.5, it won't even start.

I pasted the crash dump below.

Thanks!
Barnett

Process: Repetier-Host Mac [589]
Path: /Applications/Repetier-Host Mac.app/Contents/MacOS/Repetier-Host Mac
Identifier: repetier.Repetier-Host-Mac
Version: 0.51 (47)
Code Type: X86 (Native)
Parent Process: launchd [145]

Date/Time: 2013-01-19 18:15:12.545 -0500
OS Version: Mac OS X 10.7.5 (11G63)
Report Version: 9

Interval Since Last Report: 5491 sec
Crashes Since Last Report: 41
Per-App Interval Since Last Report: 5 sec
Per-App Crashes Since Last Report: 10
Anonymous UUID: DA47EFFB-6833-4EFE-813A-64CE9061F9AC

Crashed Thread: 0 Dispatch queue: com.apple.main-thread

Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: 0x000000000000000d, 0x0000000000000000

VM Regions Near 0:
--> __PAGEZERO 0000000000000000-0000000000001000 [ 4K] ---/--- SM=NUL /Applications/Repetier-Host Mac.app/Contents/MacOS/Repetier-Host Mac
__TEXT 0000000000001000-000000000006d000 [ 432K] r-x/rwx SM=COW /Applications/Repetier-Host Mac.app/Contents/MacOS/Repetier-Host Mac

Application Specific Information:
objc[589]: garbage collection is OFF

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 libTIFF.dylib 0x9b223d12 DYLD-STUB$$strlen + 0
1 com.apple.ImageIO.framework 0x9c8f25f1 initImageTIFF + 1365
2 com.apple.ImageIO.framework 0x9c8f2094 _CGImagePluginInitTIFF + 43
3 com.apple.ImageIO.framework 0x9c8e17da makeImagePlus + 854
4 com.apple.ImageIO.framework 0x9c8ebc23 CGImageSourceGetPropertiesAtIndexInternal + 57
5 com.apple.ImageIO.framework 0x9c8ebbb7 CGImageSourceCopyPropertiesAtIndex + 134
6 com.apple.AppKit 0x93a3fd6d ImageSourceOptionsForCGImageSource_index
+ 67
7 com.apple.AppKit 0x93a3fb64 +[NSBitmapImageRep _imagesWithData:hfsFileType:extension:zone:expandImageContentNow:includeAllReps:] + 490
8 com.apple.AppKit 0x93cadd93 +[NSBitmapImageRep _imageRepWithData:hfsFileType:extension:] + 109
9 com.apple.AppKit 0x93cb0208 -[NSBitmapImageRep initWithCoder:] + 1064
10 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
11 com.apple.Foundation 0x91e26e95 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1533
12 com.apple.Foundation 0x91dfa6b3 -[NSArray(NSArray) initWithCoder:] + 693
13 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
14 com.apple.Foundation 0x91e26e95 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1533
15 com.apple.Foundation 0x91dfa6b3 -[NSArray(NSArray) initWithCoder:] + 693
16 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
17 com.apple.Foundation 0x91e24a32 _decodeObject + 197
18 com.apple.AppKit 0x93e463f2 -[NSImage initWithCoder:] + 3440
19 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
20 com.apple.Foundation 0x91e24a32 _decodeObject + 197
21 com.apple.AppKit 0x93bcbac0 -[NSButtonCell initWithCoder:] + 3890
22 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
23 com.apple.Foundation 0x91e24a32 _decodeObject + 197
24 com.apple.AppKit 0x93ac4444 -[NSControl initWithCoder:] + 698
25 com.apple.AppKit 0x93bca461 -[NSButton initWithCoder:] + 58
26 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
27 com.apple.Foundation 0x91e24a32 _decodeObject + 197
28 com.apple.AppKit 0x93ac1687 -[NSView initWithCoder:] + 1128
29 com.apple.AppKit 0x93ac41c4 -[NSControl initWithCoder:] + 58
30 com.apple.AppKit 0x93bca461 -[NSButton initWithCoder:] + 58
31 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
32 com.apple.Foundation 0x91e24a32 _decodeObject + 197
33 com.apple.AppKit 0x93ac1687 -[NSView initWithCoder:] + 1128
34 com.apple.AppKit 0x93ac41c4 -[NSControl initWithCoder:] + 58
35 com.apple.AppKit 0x93bca461 -[NSButton initWithCoder:] + 58
36 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
37 com.apple.Foundation 0x91e26e95 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1533
38 com.apple.Foundation 0x91dfa6b3 -[NSArray(NSArray) initWithCoder:] + 693
39 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
40 com.apple.Foundation 0x91e24a32 _decodeObject + 197
41 com.apple.AppKit 0x93ac15df -[NSView initWithCoder:] + 960
42 com.apple.AppKit 0x93ac11a4 -[NSCustomView initWithCoder:] + 675
43 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
44 com.apple.Foundation 0x91e24a32 _decodeObject + 197
45 com.apple.AppKit 0x93ac1687 -[NSView initWithCoder:] + 1128
46 com.apple.AppKit 0x93ac11a4 -[NSCustomView initWithCoder:] + 675
47 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
48 com.apple.Foundation 0x91e26e95 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1533
49 com.apple.Foundation 0x91dfa6b3 -[NSArray(NSArray) initWithCoder:] + 693
50 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
51 com.apple.Foundation 0x91e24a32 _decodeObject + 197
52 com.apple.AppKit 0x93ac15df -[NSView initWithCoder:] + 960
53 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
54 com.apple.Foundation 0x91e26e95 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1533
55 com.apple.Foundation 0x91dfa6b3 -[NSArray(NSArray) initWithCoder:] + 693
56 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
57 com.apple.Foundation 0x91e24a32 _decodeObject + 197
58 com.apple.AppKit 0x93ac15df -[NSView initWithCoder:] + 960
59 com.apple.AppKit 0x93fc6518 -[NSTabView initWithCoder:] + 107
60 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
61 com.apple.Foundation 0x91e26e95 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1533
62 com.apple.Foundation 0x91dfa6b3 -[NSArray(NSArray) initWithCoder:] + 693
63 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
64 com.apple.Foundation 0x91e24a32 _decodeObject + 197
65 com.apple.AppKit 0x93ac15df -[NSView initWithCoder:] + 960
66 com.apple.AppKit 0x93ac11a4 -[NSCustomView initWithCoder:] + 675
67 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
68 com.apple.Foundation 0x91e24a32 _decodeObject + 197
69 com.apple.AppKit 0x93ac1687 -[NSView initWithCoder:] + 1128
70 com.apple.AppKit 0x93ac11a4 -[NSCustomView initWithCoder:] + 675
71 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
72 com.apple.Foundation 0x91e26e95 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1533
73 com.apple.Foundation 0x91dfa6b3 -[NSArray(NSArray) initWithCoder:] + 693
74 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
75 com.apple.Foundation 0x91e24a32 _decodeObject + 197
76 com.apple.AppKit 0x93ac15df -[NSView initWithCoder:] + 960
77 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
78 com.apple.Foundation 0x91e24a32 _decodeObject + 197
79 com.apple.AppKit 0x93fccc7c -[NSTabViewItem initWithCoder:] + 228
80 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
81 com.apple.Foundation 0x91e26e95 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1533
82 com.apple.Foundation 0x91dfa6b3 -[NSArray(NSArray) initWithCoder:] + 693
83 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
84 com.apple.Foundation 0x91e24a32 _decodeObject + 197
85 com.apple.AppKit 0x93fc6539 -[NSTabView initWithCoder:] + 140
86 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
87 com.apple.Foundation 0x91e26e95 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1533
88 com.apple.Foundation 0x91dfa6b3 -[NSArray(NSArray) initWithCoder:] + 693
89 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
90 com.apple.Foundation 0x91e24a32 _decodeObject + 197
91 com.apple.AppKit 0x93ac15df -[NSView initWithCoder:] + 960
92 com.apple.AppKit 0x93ac11a4 -[NSCustomView initWithCoder:] + 675
93 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
94 com.apple.Foundation 0x91e26e95 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1533
95 com.apple.Foundation 0x91dfa6b3 -[NSArray(NSArray) initWithCoder:] + 693
96 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
97 com.apple.Foundation 0x91e24a32 _decodeObject + 197
98 com.apple.AppKit 0x93ac15df -[NSView initWithCoder:] + 960
99 com.apple.AppKit 0x93c0c739 -[NSSplitView initWithCoder:] + 87
100 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
101 com.apple.Foundation 0x91e26e95 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1533
102 com.apple.Foundation 0x91dfa6b3 -[NSArray(NSArray) initWithCoder:] + 693
103 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
104 com.apple.Foundation 0x91e24a32 _decodeObject + 197
105 com.apple.AppKit 0x93ac15df -[NSView initWithCoder:] + 960
106 com.apple.AppKit 0x93ac11a4 -[NSCustomView initWithCoder:] + 675
107 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
108 com.apple.Foundation 0x91e26e95 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1533
109 com.apple.Foundation 0x91dfa6b3 -[NSArray(NSArray) initWithCoder:] + 693
110 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
111 com.apple.Foundation 0x91e24a32 _decodeObject + 197
112 com.apple.AppKit 0x93ac15df -[NSView initWithCoder:] + 960
113 com.apple.AppKit 0x93c0c739 -[NSSplitView initWithCoder:] + 87
114 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
115 com.apple.Foundation 0x91e26e95 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1533
116 com.apple.Foundation 0x91dfa6b3 -[NSArray(NSArray) initWithCoder:] + 693
117 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
118 com.apple.Foundation 0x91e24a32 _decodeObject + 197
119 com.apple.AppKit 0x93ac15df -[NSView initWithCoder:] + 960
120 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
121 com.apple.Foundation 0x91e24a32 _decodeObject + 197
122 com.apple.AppKit 0x93bb8f7b -[NSWindowTemplate initWithCoder:] + 3815
123 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
124 com.apple.Foundation 0x91e26e95 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1533
125 com.apple.Foundation 0x91e266b3 -[NSSet(NSSet) initWithCoder:] + 693
126 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
127 com.apple.Foundation 0x91e24a32 _decodeObject + 197
128 com.apple.AppKit 0x939c06b9 -[NSIBObjectData initWithCoder:] + 2058
129 com.apple.Foundation 0x91e2598c _decodeObjectBinary + 3472
130 com.apple.Foundation 0x91e24a32 _decodeObject + 197
131 com.apple.AppKit 0x939bfd68 loadNib + 262
132 com.apple.AppKit 0x939bf1c5 +[NSBundle(NSNibLoading) _loadNibFile:nameTable:withZone:ownerBundle:] + 235
133 com.apple.AppKit 0x939bf0cf +[NSBundle(NSNibLoading) loadNibFile:externalNameTable:withZone:] + 154
134 com.apple.AppKit 0x939bf003 +[NSBundle(NSNibLoading) loadNibNamed:owner:] + 418
135 com.apple.AppKit 0x93c43864 NSApplicationMain + 445
136 repetier.Repetier-Host-Mac 0x00002b55 0x1000 + 6997

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x9c9c990a kevent + 10
1 libdispatch.dylib 0x9461fe04 _dispatch_mgr_invoke + 969
2 libdispatch.dylib 0x9461e853 _dispatch_mgr_thread + 53

Thread 2:
0 libsystem_kernel.dylib 0x9c9c902e __workq_kernreturn + 10
1 libsystem_c.dylib 0x93762ccf _pthread_wqthread + 773
2 libsystem_c.dylib 0x937646fe start_wqthread + 30

Thread 3:
0 libsystem_kernel.dylib 0x9c9c902e __workq_kernreturn + 10
1 libsystem_c.dylib 0x93762ccf _pthread_wqthread + 773
2 libsystem_c.dylib 0x937646fe start_wqthread + 30

Thread 0 crashed with X86 Thread State (32-bit):
eax: 0x00000000 ebx: 0xaca309f8 ecx: 0x9c995237 edx: 0x00000000
edi: 0xad259fc4 esi: 0x00599b80 ebp: 0xbfff6498 esp: 0xbfff643c
ss: 0x00000023 efl: 0x00010213 eip: 0x9b223d12 cs: 0x0000001b
ds: 0x00000023 es: 0x00000023 fs: 0x00000000 gs: 0x0000000f
cr2: 0xad172588
Logical CPU: 2

Binary Images:
0x1000 - 0x6cff3 +repetier.Repetier-Host-Mac (0.51 - 47) <9093188A-BD28-3BA5-9448-A5C8D37C7F2E> /Applications/Repetier-Host Mac.app/Contents/MacOS/Repetier-Host Mac
0x84000 - 0x97fff +org.andymatuschak.Sparkle (1.5 Beta 6 - 313) <5DF2B8A3-560D-4500-6B85-4215644DE532> /Applications/Repetier-Host Mac.app/Contents/Frameworks/Sparkle.framework/Versions/A/Sparkle
0xa5000 - 0x152ff7 libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
0x3e000000 - 0x3e044fff com.apple.glut (3.4.9 - GLUT-3.4.9) <490BC2D7-8EE6-387E-A12B-702D3A753382> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
0x8fee1000 - 0x8ff13aa7 dyld (195.6 - ???) <60FD3471-A1D7-342E-99A7-3EDECDAEC6EC> /usr/lib/dyld
0x90010000 - 0x90404feb com.apple.VideoToolbox (1.0 - 705.94) <8FCC2C08-2D4C-3A96-B57A-CAA56911120F> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x90405000 - 0x90707fff com.apple.CoreServices.CarbonCore (960.25 - 960.25) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x90710000 - 0x90808ff7 libFontParser.dylib (??? - ???) <71B33EB1-27F8-3C68-B940-FC61A3CFE275> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x90809000 - 0x9096cfff com.apple.QTKit (7.7.1 - 2339) <163FBDDD-0458-378F-84DD-CB0F603A259E> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x909af000 - 0x909bdfff com.apple.opengl (1.8.1 - 1.8.1) <766AFB12-A2CB-3A55-B662-FC9FFCAE0008> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x90fda000 - 0x90febfff libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
0x91132000 - 0x911d6fff com.apple.QD (3.40 - ???) <3881BEC6-0908-3073-BA44-346356E1CDF9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x9132b000 - 0x91401aab libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <2E272DCA-38A0-3530-BBF4-47AE678D20D4> /usr/lib/libobjc.A.dylib
0x9142e000 - 0x91492fff com.apple.framework.IOKit (2.0 - ???) <94827954-5906-36C4-819B-24CDAFD85C72> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x91493000 - 0x9149dff2 com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x914d5000 - 0x914d5fff com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x9180c000 - 0x91837fff com.apple.GSS (2.2 - 2.0) <2C468B23-FA87-30B5-B9A6-8C5D1373AA30> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x91838000 - 0x91875ff7 libcups.2.dylib (2.9.0 - compatibility 2.0.0) <007A1877-E981-3007-A8FA-9B179F4ED6D1> /usr/lib/libcups.2.dylib
0x9194e000 - 0x91b02ff3 libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <4AFF6FC3-6283-3934-8EFC-CA227CA11164> /usr/lib/libicucore.A.dylib
0x91dc1000 - 0x91dcffff libz.1.dylib (1.2.5 - compatibility 1.0.0) /usr/lib/libz.1.dylib
0x91dd0000 - 0x91dd1fff libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) /usr/lib/system/libsystem_blocks.dylib
0x91dd2000 - 0x91de0ff7 libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
0x91de1000 - 0x920ebff3 com.apple.Foundation (6.7.2 - 833.25) <4C52ED74-A1FD-3087-A2E1-035AB3CF9610> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x920ec000 - 0x92561ff7 FaceCoreLight (1.4.7 - compatibility 1.0.0) <3E2BF587-5168-3FC5-9D8D-183A9C7C1DED> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
0x92562000 - 0x92679fe9 com.apple.WebKit (7534.57 - 7534.57.7) <85DAC34E-86A1-380F-B166-56630C9B0BD5> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
0x9267a000 - 0x926b0ff7 com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x926c1000 - 0x926c3ff7 libdyld.dylib (195.5.0 - compatibility 1.0.0) <52F7B44C-1B43-3B7B-9C9E-6410D8682935> /usr/lib/system/libdyld.dylib
0x92733000 - 0x92755ff8 com.apple.PerformanceAnalysis (1.11 - 11) <453463FF-7C42-3526-8C96-A9971EE07154> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x92759000 - 0x927c1fff libc++.1.dylib (28.4.0 - compatibility 1.0.0) /usr/lib/libc++.1.dylib
0x9280a000 - 0x92853ff7 libGLU.dylib (??? - ???) <9AF7AD51-16E3-3674-B60E-30EE499D7B46> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x92854000 - 0x92854fff com.apple.Cocoa (6.6 - ???) <5FAFE73E-6AF5-3D09-9191-0BDC8C6875CB> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x92855000 - 0x92965fe7 libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <34E1E3CC-7B6A-3B37-8D07-1258D11E16CB> /usr/lib/libsqlite3.dylib
0x9299b000 - 0x92a5bffb com.apple.ColorSync (4.7.4 - 4.7.4) <0A68AF35-15DF-3A0A-9B17-70CE2A106A6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x92a5c000 - 0x92a67ffc com.apple.NetAuth (3.1 - 3.1) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x92a68000 - 0x92a6cff3 libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
0x92aaa000 - 0x92ab2ff3 liblaunch.dylib (392.39.0 - compatibility 1.0.0) <9E6135FF-C2B1-3BC9-A160-B32D71BFA77C> /usr/lib/system/liblaunch.dylib
0x92ab3000 - 0x92bc4ff7 libJP2.dylib (??? - ???) <2B5EB147-F845-30DF-87C4-D2D3C3D0680A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x92be2000 - 0x92f28ff3 com.apple.HIToolbox (1.9 - ???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x92f29000 - 0x92f29ffe libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
0x930cb000 - 0x930f5ff1 com.apple.CoreServicesInternal (113.19 - 113.19) /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x930f6000 - 0x930f7ff7 libquarantine.dylib (36.7.0 - compatibility 1.0.0) <46980EC2-149D-3CF7-B29A-401FB89C275D> /usr/lib/system/libquarantine.dylib
0x930f8000 - 0x93155ffb com.apple.htmlrendering (76 - 1.1.4) <409EF0CB-2997-369A-9326-BE12436B9EE1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x93156000 - 0x93161ff3 libCSync.A.dylib (600.0.0 - compatibility 64.0.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x93393000 - 0x934e9fff com.apple.audio.toolbox.AudioToolbox (1.7.3 - 1.7.3) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x93680000 - 0x93686ffb com.apple.print.framework.Print (7.4 - 247.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x93687000 - 0x9368eff9 libsystem_dnssd.dylib (??? - ???) /usr/lib/system/libsystem_dnssd.dylib
0x9368f000 - 0x93693ff7 com.apple.OpenDirectory (10.7 - 146) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x93694000 - 0x93698ffa libcache.dylib (47.0.0 - compatibility 1.0.0) <56256537-6538-3522-BCB6-2C79DA6AC8CD> /usr/lib/system/libcache.dylib
0x93699000 - 0x936e8ffb com.apple.AppleVAFramework (5.0.16 - 5.0.16) <1188E7AB-76FE-343F-9108-30CD67E5A37B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x936e9000 - 0x93703fff com.apple.Kerberos (1.0 - 1) /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x93704000 - 0x937cffff libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <52421B00-79C8-3727-94DE-62F6820B9C31> /usr/lib/system/libsystem_c.dylib
0x93801000 - 0x9380cffe libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) /usr/lib/libbz2.1.0.dylib
0x9380d000 - 0x9389afe7 libvMisc.dylib (325.4.0 - compatibility 1.0.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x939a8000 - 0x939aaff9 com.apple.securityhi (4.0 - 1) <39157216-5E43-392A-AE3F-716726D8C8BF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x939ad000 - 0x94442ff6 com.apple.AppKit (6.7.5 - 1138.51) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x944c2000 - 0x944deff5 com.apple.GenerationalStorage (1.0 - 126.1) /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x944df000 - 0x944e2ff7 libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
0x94579000 - 0x94579fff com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x94586000 - 0x9461cff7 com.apple.LaunchServices (480.40 - 480.40) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x9461d000 - 0x9462bfff libdispatch.dylib (187.10.0 - compatibility 1.0.0) <1B857064-288D-3919-B81A-38E9F4D19B54> /usr/lib/system/libdispatch.dylib
0x9495f000 - 0x949c4ff7 libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x949c5000 - 0x949c9fff libGIF.dylib (??? - ???) <2ADFED97-2228-343D-9A53-207CBFDE7984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x94a1b000 - 0x94a8afff com.apple.Heimdal (2.2 - 2.0) <2E1B8779-36D4-3C62-A67E-0034D77D7707> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x94a8b000 - 0x94a8eff7 libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
0x94a8f000 - 0x94a90ff4 libremovefile.dylib (21.1.0 - compatibility 1.0.0) <6DE3FDC7-0BE0-3791-B6F5-C15422A8AFB8> /usr/lib/system/libremovefile.dylib
0x94af4000 - 0x94af7ffb com.apple.help (1.3.2 - 42) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x94af8000 - 0x94b53ff3 com.apple.Symbolication (1.3 - 91) /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x94bd1000 - 0x94bd1ff0 com.apple.ApplicationServices (41 - 41) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x94bd2000 - 0x94c33ffb com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <7A14BE52-6789-3CE3-9AE9-B733F4903EB1> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x94c34000 - 0x94c34fff com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x94c8f000 - 0x94ccfff7 libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
0x94d24000 - 0x94dc0fff com.apple.ink.framework (10.7.5 - 113) <05CAFB64-D3B8-3973-87EA-CB8BBE580F6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x9502b000 - 0x956b7ff5 com.apple.CoreAUC (6.16.12 - 6.16.12) <9D51400F-B827-3BA7-87F5-954A1CDDAEA9> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x95744000 - 0x95834ff1 libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
0x9585a000 - 0x95ba0fff com.apple.MediaToolbox (1.0 - 705.94) <89D37021-C389-3CC5-A158-620ADCBD99EF> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x95ba1000 - 0x95baefff libGL.dylib (??? - ???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x95baf000 - 0x95d86fe7 com.apple.CoreFoundation (6.7.2 - 635.21) <4D1D2BAF-1332-32DF-A81B-7E79D4F0A6CB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x96103000 - 0x96377ff3 com.apple.CoreImage (7.99.1 - 1.0.1) /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x963b9000 - 0x964c8ff7 com.apple.DesktopServices (1.6.5 - 1.6.5) /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x964c9000 - 0x96550fff com.apple.print.framework.PrintCore (7.1 - 366.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x965aa000 - 0x965b3fff libc++abi.dylib (14.0.0 - compatibility 1.0.0) /usr/lib/libc++abi.dylib
0x96624000 - 0x96682ff7 com.apple.coreui (1.2.2 - 165.11) <340B0B83-1407-3AB4-BCAB-505C29303EE2> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x96683000 - 0x966feffb com.apple.ApplicationServices.ATS (317.12.0 - ???) <4D124B65-3D43-32E9-B296-3671347BB888> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x966ff000 - 0x96773fff com.apple.CoreSymbolication (2.2 - 73.2) /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x96774000 - 0x96791fff libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
0x96792000 - 0x96808fff com.apple.Metadata (10.7.0 - 627.37) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x96809000 - 0x9685bff7 libFontRegistry.dylib (??? - ???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x9685c000 - 0x9685dfff com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x9685e000 - 0x9697cfec com.apple.vImage (5.1 - 5.1) <7757F253-B281-3612-89D4-F2B04061CBE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x9697d000 - 0x9697dfff com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x9697e000 - 0x9697efff libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <7EFAD88C-AFBC-3D48-BE14-60B8EACC68D7> /usr/lib/system/libdnsinfo.dylib
0x969e5000 - 0x969e9ffd IOSurface (??? - ???) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x96a05000 - 0x96a0eff3 com.apple.CommonAuth (2.2 - 2.0) /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x96a4e000 - 0x96a76ff7 libxslt.1.dylib (3.24.0 - compatibility 3.0.0) /usr/lib/libxslt.1.dylib
0x96a77000 - 0x96a8cfff com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x96aca000 - 0x96b23fff com.apple.HIServices (1.21 - ???) <91EC636D-AC27-3332-BA1C-FD7301917429> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x96b24000 - 0x96b2cff3 libunwind.dylib (30.0.0 - compatibility 1.0.0) /usr/lib/system/libunwind.dylib
0x96b2d000 - 0x96b30ffd libCoreVMClient.dylib (??? - ???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x96b32000 - 0x96b4eff1 libPng.dylib (??? - ???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x96b4f000 - 0x96b54ff7 libmacho.dylib (800.0.0 - compatibility 1.0.0) <943213F3-CC9B-328E-8A6F-16D85C4274C7> /usr/lib/system/libmacho.dylib
0x96b55000 - 0x96b83fe7 libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <112D9C23-18FE-3995-A8DB-CDBE81CC7BAB> /usr/lib/libSystem.B.dylib
0x96b84000 - 0x96b8fffb com.apple.speech.recognition.framework (4.0.21 - 4.0.21) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x96b90000 - 0x96bb5ff9 libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x96bb6000 - 0x96daeff7 com.apple.CoreData (104.1 - 358.14) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x96dd6000 - 0x96ebefff libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <1841196F-68B5-309F-8ED1-6714B1DFEC83> /usr/lib/libxml2.2.dylib
0x96ebf000 - 0x96ebffff libOpenScriptingUtil.dylib (??? - ???) /usr/lib/libOpenScriptingUtil.dylib
0x96fef000 - 0x97006ff8 com.apple.CoreMediaAuthoring (2.0 - 891) <69D569FD-670C-3BD0-94BF-7A8954AA2953> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthoring
0x97d59000 - 0x97dabffb com.apple.CoreMediaIO (216.0 - 3199.8) /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
0x9869e000 - 0x986c0ffe com.apple.framework.familycontrols (3.0 - 300) <6735D7ED-7053-3AB8-B144-E7F70A124CCD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x9873a000 - 0x9875aff7 com.apple.RemoteViewServices (1.5 - 44.2) <11C87337-FF29-3976-A230-6387D96563C5> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x987dd000 - 0x9883fffb com.apple.datadetectorscore (3.0 - 179.4) <8340BEC3-FB03-3AD8-B9E8-1FFA9DC7C220> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x98888000 - 0x988eaff3 libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
0x988eb000 - 0x98a4dffb com.apple.QuartzCore (1.7 - 270.5) <6D0EC7FC-11E5-35FB-A08A-3B438E89FBDB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x98a4e000 - 0x9947ffff com.apple.WebCore (7534.57 - 7534.57.7) <5FF60D46-9BC0-3B5A-AFF1-2C965D561009> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
0x994d8000 - 0x9950ffef com.apple.DebugSymbols (2.1 - 87) /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x99510000 - 0x99561ff9 com.apple.ScalableUserInterface (1.0 - 1) <3C39DF4D-5CAE-373A-BE08-8CD16E514337> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterface.framework/Versions/A/ScalableUserInterface
0x996cf000 - 0x996d0fff libDiagnosticMessagesClient.dylib (??? - ???) /usr/lib/libDiagnosticMessagesClient.dylib
0x99800000 - 0x9983dfef libGLImage.dylib (??? - ???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x9991e000 - 0x99a4aff9 com.apple.CFNetwork (520.5.1 - 520.5.1) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x99a5e000 - 0x99a5eff2 com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x99a5f000 - 0x99a65fff libGFXShared.dylib (??? - ???) <9C9834EB-B794-38C8-9B90-31D8CB234F86> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x99a68000 - 0x99a73fff libkxld.dylib (??? - ???) <14E79D7A-B6C2-35C5-B56D-D343BEC2A106> /usr/lib/system/libkxld.dylib
0x99a79000 - 0x99a89ff7 libCRFSuite.dylib (??? - ???) <94E040D2-2769-359A-A21B-DB85FCB73BDC> /usr/lib/libCRFSuite.dylib
0x99b06000 - 0x99b0dffd com.apple.NetFS (4.0 - 4.0) /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x99b0e000 - 0x99dddffb com.apple.security (7.0 - 55148.6) <8DF67BDD-C98F-3B7E-AC63-D468407FA82D> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x99f4e000 - 0x99f4ffff liblangid.dylib (??? - ???) /usr/lib/liblangid.dylib
0x99f50000 - 0x9a352ff6 libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x9a353000 - 0x9a381ff7 com.apple.DictionaryServices (1.2.1 - 158.3) <8D03D180-D834-39F3-A106-78E0B22A7893> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x9a38d000 - 0x9a3b0fff com.apple.CoreVideo (1.7 - 70.3) <4234C11C-E8E9-309A-9465-27D6D7458895> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x9a5da000 - 0x9a621ff5 com.apple.opencl (2.0.19 - 2.0.19) <7689E7B9-EE5A-3F74-8699-4CDED9162260> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x9a677000 - 0x9a687fff com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x9a7bd000 - 0x9a7bdfff com.apple.Carbon (153 - 153) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x9a7be000 - 0x9a84bff7 com.apple.CoreText (220.22.0 - ???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x9a84c000 - 0x9a862ffe libxpc.dylib (77.19.0 - compatibility 1.0.0) <0585AA94-F4FD-32C1-B586-22E7184B781A> /usr/lib/system/libxpc.dylib
0x9a863000 - 0x9a864ff7 libsystem_sandbox.dylib (??? - ???) <5CFCCFB7-CF29-3E04-801D-8532AE004768> /usr/lib/system/libsystem_sandbox.dylib
0x9a865000 - 0x9a928fff com.apple.CoreServices.OSServices (478.49 - 478.49) <5AF33605-C893-3F60-89CF-1BC9C0BC35AF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x9a929000 - 0x9a946ff3 com.apple.openscripting (1.3.3 - ???) <0579A4CB-FD6F-3D7F-A17B-AC0F2CF11FC7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x9a9d1000 - 0x9ac7efff com.apple.JavaScriptCore (7534.57 - 7534.57.3) <5AE5C3B8-D807-356B-80D9-4D0A706A10D1> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x9af58000 - 0x9af98ff7 com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x9afa3000 - 0x9b086ff7 libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) /usr/lib/libcrypto.0.9.8.dylib
0x9b09b000 - 0x9b132fff com.apple.securityfoundation (5.0 - 55116) <510A3BA7-7171-3D98-A717-8EECCCE5FC91> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x9b133000 - 0x9b176ffd libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <6B35F203-5D72-335A-A4BC-CC89FEC0E14F> /usr/lib/system/libcommonCrypto.dylib
0x9b177000 - 0x9b1b9ff7 com.apple.CoreMedia (1.0 - 705.94) <10D5D25F-9BCB-3406-B737-23D9FDF2CC71> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
0x9b1ba000 - 0x9b1bbff0 libunc.dylib (24.0.0 - compatibility 1.0.0) <2F4B35B2-706C-3383-AA86-DABA409FAE45> /usr/lib/system/libunc.dylib
0x9b1bc000 - 0x9b1c2ffd com.apple.CommerceCore (1.0 - 17) /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x9b1c3000 - 0x9b1f2ff7 libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
0x9b1f3000 - 0x9b243ffa libTIFF.dylib (??? - ???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x9b244000 - 0x9b24cff5 libcopyfile.dylib (85.1.0 - compatibility 1.0.0) /usr/lib/system/libcopyfile.dylib
0x9b369000 - 0x9b3f3ffb com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x9b3f4000 - 0x9b407ff8 com.apple.MultitouchSupport.framework (231.4 - 231.4) <86C11177-EF7C-33DC-AFE3-703652463562> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x9b408000 - 0x9b6e2ff7 com.apple.RawCamera.bundle (4.00 - 658) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x9b70f000 - 0x9b724ff7 com.apple.ImageCapture (7.1.0 - 7.1.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x9b757000 - 0x9b75affc libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
0x9b75b000 - 0x9b75ffff com.apple.CommonPanels (1.2.5 - 94) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x9b77a000 - 0x9b78efff com.apple.CFOpenDirectory (10.7 - 146) <58050170-D74E-3670-945D-D8501F67835F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x9b8d7000 - 0x9c20272b com.apple.CoreGraphics (1.600.0 - ???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x9c203000 - 0x9c488fe3 com.apple.QuickTime (7.7.1 - 2339) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
0x9c489000 - 0x9c491fff com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x9c8d4000 - 0x9c8d6ffb libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x9c8d7000 - 0x9c8deff7 libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
0x9c8df000 - 0x9c9afffb com.apple.ImageIO.framework (3.1.2 - 3.1.2) <2092785C-795A-3CDF-A1B4-6C80BA3726DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x9c9b0000 - 0x9c9ceff7 libsystem_kernel.dylib (1699.32.7 - compatibility 1.0.0) <79179F83-457A-3539-A76B-E960D2108109> /usr/lib/system/libsystem_kernel.dylib
0x9c9cf000 - 0x9ceabff6 libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x9cee8000 - 0x9cee9ffd libCVMSPluginSupport.dylib (??? - ???) <4B0476F9-950D-3EB7-BD83-F65AF0B05F0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x9ceea000 - 0x9cf32ff7 com.apple.SystemConfiguration (1.11.3 - 1.11) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration

External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 3
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: 1258
thread_create: 0
thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=167.9M resident=95.9M(57%) swapped_out_or_unallocated=72.0M(43%)
Writable regions: Total=42.5M written=1364K(3%) resident=2100K(5%) swapped_out=0K(0%) unallocated=40.5M(95%)

REGION TYPE VIRTUAL
=========== =======
CG image 4K
CG shared images 96K
CoreServices 1168K
MALLOC 32.5M
MALLOC guard page 48K
Stack 65.5M
VM_ALLOCATE 84K
__CI_BITMAP 80K
__DATA 8772K
__DATA/__OBJC 132K
__IMAGE 528K
__IMPORT 8K
__LINKEDIT 43.4M
__OBJC 1940K
__OBJC/__DATA 8K
__PAGEZERO 4K
__TEXT 124.5M
__UNICODE 544K
mapped file 105.3M
shared memory 312K
shared pmap 8604K
=========== =======
TOTAL 392.9M

Model: MacBookPro8,1, BootROM MBP81.0047.B27, 2 processors, Intel Core i5, 2.4 GHz, 4 GB, SMC 1.68f98
Graphics: Intel HD Graphics 3000, Intel HD Graphics 3000, Built-In, 384 MB
Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x802C, 0x384A53463235363634485A2D314734443120
Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x802C, 0x384A53463235363634485A2D314734443120
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.198.19.22)
Bluetooth: Version 4.0.8f17, 2 service, 18 devices, 1 incoming serial ports
Network Service: Wi-Fi, AirPort, en1
Serial ATA Device: ST9500325ASG, 500.11 GB
Serial ATA Device: OPTIARC DVD RW AD-5970H
USB Device: FaceTime HD Camera (Built-in), apple_vendor_id, 0x8509, 0xfa200000 / 3
USB Device: hub_device, 0x0424 (SMSC), 0x2513, 0xfa100000 / 2
USB Device: Apple Internal Keyboard / Trackpad, apple_vendor_id, 0x0252, 0xfa120000 / 5
USB Device: BRCM2070 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0xfa110000 / 4
USB Device: Bluetooth USB Host Controller, apple_vendor_id, 0x821a, 0xfa113000 / 7
USB Device: hub_device, 0x0424 (SMSC), 0x2513, 0xfd100000 / 2
USB Device: IR Receiver, apple_vendor_id, 0x8242, 0xfd110000 / 3

0.55 crashes my mac

macbook1,1 10.6.8 Printrbot Printrboard Marlin

Connect OK, raise Z 10mm, will raise Z and then Repetier crashes. tried a restart, same thing.

Feature request: graphical control of temps

I was thinking this might be a slicer app feature but when I worked out the workflow, I think its more appropriate for the host app...

I have been experimenting with ramping down the bed temp as the print progresses. it is helping with keeping the first few layers flat. also i have been working with temperature sensitive wood filament, but there are other temp sensitive filaments out there. so i was thinking of a feature for slic3r that would accommodate these two things.

the idea is to have a tab for "bed temp" and "extruder temp". you'd first need to load in the gcode. then for each of bed temp and extruder temp, you get a graph, with the layer number in the X axis and temperature in the Y. you can plot out temp changes over the layers by drawing the curve on the graph, or loading in a text file that specifies the temp changes at what layer. then apply this to the gcode. this will then write in the appropriate temperature commands into the gcode. these different temp profiles can be saved and recalled and shared.

this would enable one to set up different bed ramp down rates as well as extruder temp changes for use with temp sensitive filament but also you may want to change the extruder temp depending on what part of the print you are on.

another idea along these lines is a speed control over the layers. similar graph but Y is speed 0-100%.

iideally it would be great to have an interface that works with the 3D display of the gcode, where you can explore the layers and highlight areas through the layers and specify speed and possibly temp changes. total control of speed and temp across your 3D print, with a visual interface!

Possible bug in sanityCheck

-    if(bedFront>yMax-depth)
-        bedFront = yMax-depth;
+    if(bedFront>yMax)
+      bedFront = yMax;

However I didn't test all possible settings!

Crashes when trying to view large gcode files

I am trying to preview the gcode for a 120MB gcode file (4.25 million lines). Unfortunately, Repetier-Host crashes when I try to view the gcode.

I have a 2011 iMac with 12GB RAM. While loading I watched the available RAM drop from about 4GB to around 2GB before it crashed if that is helpful at all.

Here is the crash report: http://wiki.mrrocketman.com/images/e/e3/Repetier-Host_Crash_Report.txt
And here is the file I was trying to view: http://wiki.mrrocketman.com/images/f/f0/Yoda-figure_Large_.gcode

Let me know if any more information will be helpful to track this down.

James

Gcode written to sdcard is missing start and end gcodes

At least as far as I can tell.
I have some end gcode that just moves back to 0,0 and raises the head 10mm and it doesn't seem to run when I upload it to SDCard , and run from there. I do have the add start/end gcode checked when I upload.

"endstop hit" message from printer causes problems in sending future commands

Details:

  • Repetier-Host-Mac 0.40

  • Marlin firmware on printer, endstops active during print

  • my manual end-gcode appended by slic3r to the print file:

    G90 ; absolute coordinates
    G0 X0 Y0 F5000 ; go to x,y zero 
    G0 Z1000 F1000; go to z max (endstop will stop this move)
    M400 ; finish all buffered moves
    M140 S0 ; turn bed off
    M104 S0 ; turn hotend off
    M106 S255 ; Fan on maximum
    M84 ; disable motors
    
  • as soon the endstop for Z is triggered I can see the output in Repetier-Host-Mac log "endstop hit...".

  • after this I can see "invalid line numer, resending, ..." but everything fails

==> turning off the heaters, setting the fan, ... is not executed
==> also the print job is still marked as "active" and the only solution is to "disconnect" / "reconnect" to the printer.

The same end-gcode sequence worked in previous versions.


BTW: Thanks for this great software. I use it for some time now and it never caused a bad print.

Feature request: key mapping

I am not sure if this is the place for feature requests. if not, sorry. it would be great to be able to make the keyboard to the Print Panel controls to be able to control the printer via the keyboard. also the ability to set 1 or more XYZ positions relative to home.

0.54-0.55 Freezes when I try to connect

The program will open, but will freeze as soon as I try to connect.
Everything except the preferences seem to be disabled or will not respond to any input.

I see this is mac console
*** -[NSLock lock]: deadlock (<NSLock: 0x189a470> '(null)')

Anyone else having this issue?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.