DataGrid + Lots o' Data + Sort = Flash Crash?

Just when you thought it was safe to go back in the water...

I was messing around with loading large result sets dynamically into the DataGrid... I loaded 20k results and clicked a column (sort). I expect it would chug for a while... instead it crashed. Here's the app.

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" minWidth="1024" minHeight="768">
  3.  
  4.  <mx:Script>
  5.   <![CDATA[
  6.    
  7.    import mx.controls.dataGridClasses.DataGridColumn;
  8.    import mx.rpc.events.ResultEvent;
  9.    
  10.    private function getSearchResults( event:Event ):void
  11.    {
  12.     http.send();
  13.    }
  14.    
  15.    protected function http_resultHandler(event:ResultEvent):void
  16.    {
  17.     var cols:XMLList = event.result.info.column as XMLList;
  18.    
  19.     for each ( var col:XML in cols )
  20.      createColumn( col.@name, col.@resultName );
  21.    
  22.     var xmlList:XMLList = event.result.result as XMLList;
  23.     dg.dataProvider = xmlList;
  24.    }
  25.    
  26.    private function createColumn( name:String, field:String ):void
  27.    {
  28.     var col:DataGridColumn = new DataGridColumn( name );
  29.     col.headerText = name;
  30.     col.dataField = field;
  31.  
  32.     var cols:Array = dg.columns;
  33.     cols.push( col );
  34.    
  35.     dg.columns = cols;
  36.    }
  37.    
  38.   ]]>
  39.  </mx:Script>
  40.  
  41.  <mx:HTTPService id="http" url="search.xml" result="http_resultHandler(event);" resultFormat="e4x" />
  42.  <mx:DataGrid id="dg" x="343" y="184" width="454" height="295"/>
  43.  <mx:Button x="541.5" y="524" label="get search results" click="getSearchResults(event);"/>
  44.  
  45. </mx:Application>

I haven't had the time to try this in 10.1 - here's the crash report.

Process: WebKitPluginHost [1478]
Path: /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS/WebKitPluginHost
Identifier: com.apple.WebKit.PluginHost
Version: 6531.21 (6531.21.1)
Build Info: WebKitPluginHost-65312101~1
Code Type: X86 (Native)
Parent Process: WebKitPluginAgent [1012]

PlugIn Path: /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
PlugIn Identifier: com.macromedia.Flash Player.plugin
PlugIn Version: 10.0.32.18 (1.0.4f18472)

Date/Time: 2010-02-16 16:04:17.698 -0500
OS Version: Mac OS X 10.6.2 (10C540)
Report Version: 6

Interval Since Last Report: 781299 sec
Crashes Since Last Report: 3
Per-App Interval Since Last Report: 19187 sec
Per-App Crashes Since Last Report: 1
Anonymous UUID: B4F5B6C2-29B8-4F74-B0AF-87BB43A8D186

Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000018
Crashed Thread: 0 Dispatch queue: com.apple.main-thread

Thread 0 Crashed: Dispatch queue: com.apple.main-thread
0 ...romedia.Flash Player.plugin 0x13fb4a5b Flash_EnforceLocalSecurity + 2438203
1 ...romedia.Flash Player.plugin 0x13d00544 0x13a49000 + 2848068
2 ...romedia.Flash Player.plugin 0x13d052a4 0x13a49000 + 2867876
3 ...romedia.Flash Player.plugin 0x13b1bc29 0x13a49000 + 863273
4 ...romedia.Flash Player.plugin 0x13b1ec68 0x13a49000 + 875624
5 ...romedia.Flash Player.plugin 0x13d02038 0x13a49000 + 2854968
6 ...romedia.Flash Player.plugin 0x13f712e0 Flash_EnforceLocalSecurity + 2161856
7 ...romedia.Flash Player.plugin 0x13f73c0c Flash_EnforceLocalSecurity + 2172396
8 ...romedia.Flash Player.plugin 0x13f8e2ea Flash_EnforceLocalSecurity + 2280650
9 ...romedia.Flash Player.plugin 0x13cf39c1 0x13a49000 + 2795969
10 ...romedia.Flash Player.plugin 0x13f9debd Flash_EnforceLocalSecurity + 2345117
11 ??? 0x31819a1a 0 + 830577178
12 ...romedia.Flash Player.plugin 0x13f9f29d Flash_EnforceLocalSecurity + 2350205
13 ...romedia.Flash Player.plugin 0x13f71f5f Flash_EnforceLocalSecurity + 2165055
14 ??? 0x31818da0 0 + 830573984
15 ...romedia.Flash Player.plugin 0x13f9f29d Flash_EnforceLocalSecurity + 2350205
16 ...romedia.Flash Player.plugin 0x13fb8f56 Flash_EnforceLocalSecurity + 2455862
17 ...romedia.Flash Player.plugin 0x13fb9a53 Flash_EnforceLocalSecurity + 2458675
18 ??? 0x318189b4 0 + 830572980
19 ??? 0x318186e6 0 + 830572262
20 ...romedia.Flash Player.plugin 0x13f9f29d Flash_EnforceLocalSecurity + 2350205
21 ...romedia.Flash Player.plugin 0x13f6d665 Flash_EnforceLocalSecurity + 2146373
22 ...romedia.Flash Player.plugin 0x13f6a2ca Flash_EnforceLocalSecurity + 2133162
23 ...romedia.Flash Player.plugin 0x13f6b18b Flash_EnforceLocalSecurity + 2136939
24 ...romedia.Flash Player.plugin 0x13f6c4b7 Flash_EnforceLocalSecurity + 2141847
25 ??? 0x1d30388a 0 + 489699466
26 ??? 0x3181555a 0 + 830559578
27 ??? 0x31792274 0 + 830022260
28 ??? 0x31813ef9 0 + 830553849
29 ??? 0x3181292e 0 + 830548270
30 ??? 0x31811ad2 0 + 830544594
31 ...romedia.Flash Player.plugin 0x13f9f29d Flash_EnforceLocalSecurity + 2350205
32 ...romedia.Flash Player.plugin 0x13cb235d 0x13a49000 + 2528093
33 ...romedia.Flash Player.plugin 0x13cb4125 0x13a49000 + 2535717
34 ...romedia.Flash Player.plugin 0x13cb520b 0x13a49000 + 2540043
35 ??? 0x2ed20e07 0 + 785518087
36 ??? 0x31651a1a 0 + 828709402
37 ??? 0x318113a1 0 + 830542753
38 ...romedia.Flash Player.plugin 0x13f9f29d Flash_EnforceLocalSecurity + 2350205
39 ...romedia.Flash Player.plugin 0x13cb235d 0x13a49000 + 2528093
40 ...romedia.Flash Player.plugin 0x13cb41cd 0x13a49000 + 2535885
41 ...romedia.Flash Player.plugin 0x13cb633a 0x13a49000 + 2544442
42 ...romedia.Flash Player.plugin 0x13c08427 0x13a49000 + 1831975
43 ...romedia.Flash Player.plugin 0x13c2d384 0x13a49000 + 1983364
44 ...romedia.Flash Player.plugin 0x13e0e19e Flash_EnforceLocalSecurity + 707454
45 ...romedia.Flash Player.plugin 0x13d61882 Flash_EnforceLocalSecurity + 610
46 com.apple.WebKit.PluginHost 0x0000ec56 0x1000 + 56406
47 com.apple.WebKit.PluginHost 0x00007f33 0x1000 + 28467
48 com.apple.CoreFoundation 0x965b0e31 __CFRunLoopDoBlocks + 353
49 com.apple.CoreFoundation 0x96561de3 __CFRunLoopRun + 3715
50 com.apple.CoreFoundation 0x96560864 CFRunLoopRunSpecific + 452
51 com.apple.CoreFoundation 0x96560691 CFRunLoopRunInMode + 97
52 com.apple.HIToolbox 0x9169df0c RunCurrentEventLoopInMode + 392
53 com.apple.HIToolbox 0x9169dcc3 ReceiveNextEventCommon + 354
54 com.apple.HIToolbox 0x9169db48 BlockUntilNextEventMatchingListInMode + 81
55 com.apple.AppKit 0x9676cac5 _DPSNextEvent + 847
56 com.apple.AppKit 0x9676c306 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
57 com.apple.AppKit 0x9672e49f -[NSApplication run] + 821
58 com.apple.WebKit.PluginHost 0x0000625f 0x1000 + 21087
59 com.apple.WebKit.PluginHost 0x00002035 0x1000 + 4149

Thread 1: Dispatch queue: com.apple.libdispatch-manager
0 libSystem.B.dylib 0x913680ea kevent + 10
1 libSystem.B.dylib 0x91368804 _dispatch_mgr_invoke + 215
2 libSystem.B.dylib 0x91367cc3 _dispatch_queue_invoke + 163
3 libSystem.B.dylib 0x91367a68 _dispatch_worker_thread2 + 234
4 libSystem.B.dylib 0x913674f1 _pthread_wqthread + 390
5 libSystem.B.dylib 0x91367336 start_wqthread + 30

Thread 2:
0 libSystem.B.dylib 0x913418da mach_msg_trap + 10
1 libSystem.B.dylib 0x91342047 mach_msg + 68
2 ...romedia.Flash Player.plugin 0x13f8f774 Flash_EnforceLocalSecurity + 2285908
3 libSystem.B.dylib 0x9136efbd _pthread_start + 345
4 libSystem.B.dylib 0x9136ee42 thread_start + 34

Thread 3:
0 libSystem.B.dylib 0x91341922 semaphore_wait_signal_trap + 10
1 libSystem.B.dylib 0x9136f45c _pthread_cond_wait + 1089
2 libSystem.B.dylib 0x913b8503 pthread_cond_wait + 48
3 ...romedia.Flash Player.plugin 0x13d52fbf 0x13a49000 + 3186623
4 ...romedia.Flash Player.plugin 0x13d6ca0f Flash_EnforceLocalSecurity + 46063
5 ...romedia.Flash Player.plugin 0x13d5346f 0x13a49000 + 3187823
6 libSystem.B.dylib 0x9136efbd _pthread_start + 345
7 libSystem.B.dylib 0x9136ee42 thread_start + 34

Thread 4:
0 libSystem.B.dylib 0x91341922 semaphore_wait_signal_trap + 10
1 libSystem.B.dylib 0x9136f45c _pthread_cond_wait + 1089
2 libSystem.B.dylib 0x913b8503 pthread_cond_wait + 48
3 ...romedia.Flash Player.plugin 0x13d52fbf 0x13a49000 + 3186623
4 ...romedia.Flash Player.plugin 0x13d6ca0f Flash_EnforceLocalSecurity + 46063
5 ...romedia.Flash Player.plugin 0x13d5346f 0x13a49000 + 3187823
6 libSystem.B.dylib 0x9136efbd _pthread_start + 345
7 libSystem.B.dylib 0x9136ee42 thread_start + 34

Thread 5:
0 libSystem.B.dylib 0x9134193a semaphore_timedwait_signal_trap + 10
1 libSystem.B.dylib 0x9136f445 _pthread_cond_wait + 1066
2 libSystem.B.dylib 0x913b8710 pthread_cond_timedwait + 47
3 ...romedia.Flash Player.plugin 0x13d52ef1 0x13a49000 + 3186417
4 ...romedia.Flash Player.plugin 0x13a8ddbc 0x13a49000 + 282044
5 ...romedia.Flash Player.plugin 0x13a8de31 0x13a49000 + 282161
6 ...romedia.Flash Player.plugin 0x13d5346f 0x13a49000 + 3187823
7 libSystem.B.dylib 0x9136efbd _pthread_start + 345
8 libSystem.B.dylib 0x9136ee42 thread_start + 34

Thread 6:
0 libSystem.B.dylib 0x91360856 select$DARWIN_EXTSN + 10
1 com.apple.CoreFoundation 0x965a0ddd __CFSocketManager + 1085
2 libSystem.B.dylib 0x9136efbd _pthread_start + 345
3 libSystem.B.dylib 0x9136ee42 thread_start + 34

Thread 7:
0 libSystem.B.dylib 0x9134193a semaphore_timedwait_signal_trap + 10
1 libSystem.B.dylib 0x9136f445 _pthread_cond_wait + 1066
2 libSystem.B.dylib 0x913b8710 pthread_cond_timedwait + 47
3 ...romedia.Flash Player.plugin 0x13d52ef1 0x13a49000 + 3186417
4 ...romedia.Flash Player.plugin 0x13a8ddbc 0x13a49000 + 282044
5 ...romedia.Flash Player.plugin 0x13a8de31 0x13a49000 + 282161
6 ...romedia.Flash Player.plugin 0x13d5346f 0x13a49000 + 3187823
7 libSystem.B.dylib 0x9136efbd _pthread_start + 345
8 libSystem.B.dylib 0x9136ee42 thread_start + 34

Thread 8:
0 libSystem.B.dylib 0x9134193a semaphore_timedwait_signal_trap + 10
1 libSystem.B.dylib 0x9136f445 _pthread_cond_wait + 1066
2 libSystem.B.dylib 0x913b8710 pthread_cond_timedwait + 47
3 ...romedia.Flash Player.plugin 0x13d52ef1 0x13a49000 + 3186417
4 ...romedia.Flash Player.plugin 0x13b1caba 0x13a49000 + 867002
5 ...romedia.Flash Player.plugin 0x13b1cb31 0x13a49000 + 867121
6 ...romedia.Flash Player.plugin 0x13d5346f 0x13a49000 + 3187823
7 libSystem.B.dylib 0x9136efbd _pthread_start + 345
8 libSystem.B.dylib 0x9136ee42 thread_start + 34

Thread 9:
0 libSystem.B.dylib 0x9134193a semaphore_timedwait_signal_trap + 10
1 libSystem.B.dylib 0x9136f445 _pthread_cond_wait + 1066
2 libSystem.B.dylib 0x9139e028 pthread_cond_timedwait_relative_np + 47
3 ...ple.CoreServices.CarbonCore 0x93e06235 TSWaitOnConditionTimedRelative + 242
4 ...ple.CoreServices.CarbonCore 0x93e05f73 TSWaitOnSemaphoreCommon + 511
5 ...ple.CoreServices.CarbonCore 0x93e2a16b TimerThread + 97
6 libSystem.B.dylib 0x9136efbd _pthread_start + 345
7 libSystem.B.dylib 0x9136ee42 thread_start + 34

Thread 0 crashed with X86 Thread State (32-bit):
eax: 0x00000000 ebx: 0x13d003e1 ecx: 0x244dc0a0 edx: 0x289f8298
edi: 0x00000000 esi: 0x00000001 ebp: 0xbfffca68 esp: 0xbfffca40
ss: 0x0000001f efl: 0x00010282 eip: 0x13fb4a5b cs: 0x00000017
ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
cr2: 0x00000018

Binary Images:
0x1000 - 0x18ff7 com.apple.WebKit.PluginHost 6531.21 (6531.21.1) <38F8ECEB-00C4-7DCD-C2DD-47620121A9BF> /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS/WebKitPluginHost
0x20000 - 0x20ff7 WebKitPluginHostShim.dylib ??? (???) <3AE6C2E1-3ECF-9FE7-2EDD-B1000D5529A9> /System/Library/Frameworks/WebKit.framework/WebKitPluginHost.app/Contents/MacOS/WebKitPluginHostShim.dylib
0x6c4000 - 0x6edfef com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
0x7ef000 - 0x7f2ff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
0x1256c000 - 0x125c1fdf +com.DivXInc.DivXDecoder 6.8.3.5 (6.8.3.5) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
0x125ef000 - 0x126affff +net.sourceforge.webcam-osx.common 0.9.2 (0.9.2) /Library/QuickTime/macam.component/Contents/MacOS/macam
0x13a49000 - 0x1411ffeb +com.macromedia.Flash Player.plugin 10.0.32.18 (1.0.4f18472) /Library/Internet Plug-Ins/Flash Player.plugin/Contents/MacOS/Flash Player
0x17e0f000 - 0x17e1dfe7 libSimplifiedChineseConverter.dylib ??? (???) <4C9CC2D9-2F13-4465-5447-2516FCD9255B> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
0x1b603000 - 0x1b615ff7 libTraditionalChineseConverter.dylib ??? (???) /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
0x27c8b000 - 0x27c8cff7 ATSHI.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/ATSHI.dylib
0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
0x90003000 - 0x901a0fef com.apple.JavaScriptCore 6531.21 (6531.21.9) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x903a2000 - 0x903a2ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x903a3000 - 0x90407ffb 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
0x90447000 - 0x90490fe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x904c9000 - 0x904d5ff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
0x904d6000 - 0x90544ff7 com.apple.QuickLookUIFramework 2.1 (327.3) <2F51D9CB-F827-E0AF-F201-5F4244C0D02A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x90545000 - 0x90553fe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
0x90554000 - 0x90710fef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x90711000 - 0x90716ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x9079a000 - 0x908c6feb com.apple.audio.toolbox.AudioToolbox 1.6.2 (1.6.2) <9AAFDCBE-C68C-3BB3-8089-83CD2C0B4ED7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x90903000 - 0x90ae5fff com.apple.imageKit 2.0.1 (1.0) <3CD99122-4DC8-00CE-4BD7-E3E1E1C71C30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x90ae6000 - 0x90ae7ff7 com.apple.audio.units.AudioUnit 1.6.2 (1.6.2) <845D5E0D-870D-B7E8-AAC5-8364AC341AA1> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x90ae8000 - 0x90b42fe7 com.apple.CorePDF 1.1 (1.1) <8ED0FB5F-D498-D012-DF09-DE5378D40D52> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x90b43000 - 0x90c39ff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x90c3a000 - 0x90c8afe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x90c8b000 - 0x90c92fff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x90c93000 - 0x90cc8ff7 libGLImage.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x90cc9000 - 0x90dedff7 com.apple.CoreAUC 5.03.2 (5.03.2) <38C77DF1-6F98-4ABF-BE8F-ADA70E9C622D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
0x90dee000 - 0x90e3bfeb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
0x90e3c000 - 0x90e7efe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x90e7f000 - 0x9132dfe7 com.apple.VideoToolbox 0.420.18 (420.18) /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x91336000 - 0x91338ff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x91341000 - 0x914e5feb libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib
0x914e6000 - 0x914feff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x914ff000 - 0x9153eff7 com.apple.ImageCaptureCore 1.0 (1.0) /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x91555000 - 0x91555ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x91556000 - 0x9155cff7 libCGXCoreImage.A.dylib ??? (???) <5233872A-EAC6-1D42-3959-6CE6C5DEB931> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
0x9155d000 - 0x915eefe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x9160e000 - 0x91634fff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x91635000 - 0x91668ff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x91669000 - 0x9198cfef com.apple.HIToolbox 1.6.2 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x9198d000 - 0x91a57fef com.apple.CoreServices.OSServices 352 (352) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x91d6d000 - 0x91e6efe7 libxml2.2.dylib ??? (???) /usr/lib/libxml2.2.dylib
0x91e6f000 - 0x91f7cff7 com.apple.MediaToolbox 0.420.18 (420.18) <31935D52-1F8D-4AB2-CCA5-4CF615CBCE24> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x91faa000 - 0x92059fe3 com.apple.QuickTimeImporters.component 7.6.3 (1591.3) <2E2381EB-5E5E-B714-C65D-FCE349E77094> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTimeImporters
0x92094000 - 0x920d8ff3 com.apple.coreui 2 (113) /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x920d9000 - 0x9210eff7 libcups.2.dylib ??? (???) /usr/lib/libcups.2.dylib
0x9210f000 - 0x92119ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x92306000 - 0x925fffef com.apple.QuickTime 7.6.3 (1591.3) <803CC5FD-2369-83B5-795D-A8963620EFAC> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
0x92600000 - 0x92628ff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
0x92629000 - 0x9264dff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x926bd000 - 0x928e8ff3 com.apple.QuartzComposer 4.1 (156.10) <24293329-50D7-D12F-51B3-57976A4E52B1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x928e9000 - 0x92962ff7 com.apple.PDFKit 2.5 (2.5) <58603BDB-337F-FBE3-EB11-7C31CF261995> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x92a21000 - 0x92a2eff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x92a51000 - 0x92aeefe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x92aef000 - 0x92aefff7 com.apple.Cocoa 6.6 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x92af0000 - 0x932d34b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x932d4000 - 0x932f2ff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x9333a000 - 0x93417ff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x93418000 - 0x9346eff7 com.apple.MeshKitRuntime 1.0 (49.0) /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitRuntime.framework/Versions/A/MeshKitRuntime
0x9346f000 - 0x9364aff3 libType1Scaler.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libType1Scaler.dylib
0x936fa000 - 0x93828fe7 com.apple.CoreData 102.1 (250) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x93831000 - 0x938a0ff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x938a1000 - 0x938a1ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x938bb000 - 0x93969ff3 com.apple.ink.framework 1.3.1 (105) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x9396a000 - 0x93a23fe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
0x93a24000 - 0x93a24ff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x93a25000 - 0x93a66ff7 libRIP.A.dylib ??? (???) <9F0ECE75-1F03-60E4-E29C-136A27C13F2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x93a67000 - 0x93aa3fff com.apple.CoreMediaIOServices 124.0 (850) <5F9B1AA3-8BB3-4E8C-2A31-F8FD5EC3F28A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/CoreMediaIOServices
0x93aa4000 - 0x93aabff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6BF89127-C18C-27A9-F94A-981836A822FE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
0x93aac000 - 0x93ab0ff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x93ab1000 - 0x93ac5ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x93ac6000 - 0x93ac9ff7 libCoreVMClient.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x93aca000 - 0x93b1aff7 com.apple.framework.familycontrols 2.0 (2.0) /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x93b20000 - 0x93b71ff7 com.apple.HIServices 1.8.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x93ba5000 - 0x93bdfffb libFontRegistry.dylib ??? (???) <72342297-E8D6-B071-A752-014134129282> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x93be0000 - 0x93bebff7 libCSync.A.dylib ??? (???) <9292E6E3-70C1-1DD7-4213-1044F0FA8381> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x93bec000 - 0x93d6efe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
0x93d6f000 - 0x93d73ff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x93d74000 - 0x93dbaff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
0x93dbb000 - 0x93dbeff7 libCGXType.A.dylib ??? (???) <483FCF1C-066B-D210-7355-ABC48CA9DB2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x93dbf000 - 0x940defe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x94154000 - 0x94158ff7 IOSurface ??? (???) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x94159000 - 0x9415aff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x94169000 - 0x950f7ff7 com.apple.QuickTimeComponents.component 7.6.3 (1591.3) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTimeComponents
0x95141000 - 0x95156fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x95157000 - 0x9518eff7 com.apple.CoreMedia 0.420.18 (420.18) <43747711-B334-B0C7-4971-15FA586DAFBF> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
0x952ec000 - 0x95394ffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x95395000 - 0x953bcff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x953c8000 - 0x95420fe7 com.apple.datadetectorscore 2.0 (80.7) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x95506000 - 0x95586feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x9558d000 - 0x957effe7 com.apple.security 6.1.1 (37594) <9AA7D9BF-852F-111F-68AD-65DD760D4DF3> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x9582c000 - 0x958c4fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x95a1f000 - 0x95a3aff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x95a3b000 - 0x95a4ffe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
0x95a50000 - 0x95a5afe7 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
0x95a5b000 - 0x95a99ff7 com.apple.QuickLookFramework 2.1 (327.3) /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x95ad3000 - 0x95addff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x95ade000 - 0x95aefff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x95af0000 - 0x95af0ff7 com.apple.CoreServices 44 (44) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x95af1000 - 0x95b9efe7 libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
0x95bac000 - 0x95bb2fff 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
0x95bb3000 - 0x95bb5ff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x95bb6000 - 0x95bbcff7 com.apple.DisplayServicesFW 2.2 (2.2) <72C790A9-F4D2-DA92-015B-4CAF478FC0C2> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x95bbd000 - 0x95bddfe7 libresolv.9.dylib ??? (???) /usr/lib/libresolv.9.dylib
0x95cd3000 - 0x95d6ffe7 com.apple.ApplicationServices.ATS 4.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x95d70000 - 0x95d70ff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x95d71000 - 0x95e18fe7 com.apple.CFNetwork 454.5 (454.5) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x95e19000 - 0x9624eff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x96366000 - 0x963e0fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x963e1000 - 0x96494fff libFontParser.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x96498000 - 0x964a1ff7 com.apple.DiskArbitration 2.3 (2.3) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x964a2000 - 0x96524ffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x96525000 - 0x9669cfef com.apple.CoreFoundation 6.6.1 (550.13) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x9669d000 - 0x96710fff com.apple.iLifeMediaBrowser 2.1.5 (368) <30261504-7533-5424-DD15-32739DED6FB0> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeMediaBrowser
0x96724000 - 0x97002ff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x97003000 - 0x97006fe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
0x97007000 - 0x97017ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers
0x97018000 - 0x97055ff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x970fa000 - 0x9713efe7 com.apple.Metadata 10.6.2 (507.4) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x97176000 - 0x971d6fe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x971d7000 - 0x97286ff3 com.apple.ColorSync 4.6.2 (4.6.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x973ff000 - 0x97430ff3 libTrueTypeScaler.dylib ??? (???) <6C8916A2-8F85-98E0-AAD5-0020C39C0FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x9745c000 - 0x977c3ff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x977c4000 - 0x97a34ffb com.apple.Foundation 6.6.1 (751.14) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x97a86000 - 0x97aa2fe3 com.apple.openscripting 1.3.1 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x97bab000 - 0x97beeff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x97bef000 - 0x97cf3fe7 libcrypto.0.9.8.dylib ??? (???) <2E58547A-91CC-4C1A-9FCC-DA7515FDB68A> /usr/lib/libcrypto.0.9.8.dylib
0x97cff000 - 0x97d21fef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x97d22000 - 0x97d2fff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x97d30000 - 0x97d50fe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x97d51000 - 0x97e2bff3 com.apple.DesktopServices 1.5.3 (1.5.3) /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x97e2c000 - 0x9813cfe3 com.apple.RawCamera.bundle 3.0.0 (514) /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x9814b000 - 0x981bbff3 com.apple.AppleVAFramework 4.7.5 (4.7.5) <464A915D-E670-FA22-7799-454259D42B82> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x981bc000 - 0x985d2ff7 libBLAS.dylib ??? (???) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x98614000 - 0x98614ff7 liblangid.dylib ??? (???) /usr/lib/liblangid.dylib
0x986d5000 - 0x9873ffe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
0x98740000 - 0x98740ff7 com.apple.quartzframework 1.5 (1.5) /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x98741000 - 0x98751ff7 libsasl2.2.dylib ??? (???) /usr/lib/libsasl2.2.dylib
0x992a4000 - 0x992a5ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
0x992b1000 - 0x9930bff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x99330000 - 0x99360ff7 com.apple.MeshKit 1.0 (49.0) <435718C1-ED40-6BCC-F0D8-67FA05CFFF1E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
0x99361000 - 0x99463fef com.apple.MeshKitIO 1.0 (49.0) /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitIO.framework/Versions/A/MeshKitIO
0x99464000 - 0x99467ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x99468000 - 0x995a7fe3 com.apple.QTKit 7.6.3 (1591.3) <18F25C19-F0B8-5907-D6D6-65EC53DF0D3B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x995a8000 - 0x995baff7 com.apple.MultitouchSupport.framework 204.9 (204.9) /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0xba900000 - 0xba916ff7 libJapaneseConverter.dylib ??? (???) <4FB5CEEB-8D3E-8C57-1718-81D7CAFBFE69> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
0xbab00000 - 0xbab21fe7 libKoreanConverter.dylib ??? (???) /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
0xbb100000 - 0xbb103fe7 libLatinSuppConverter.dylib ??? (???) <59D12876-5E0C-803C-EC99-832012CF3416> /System/Library/CoreServices/Encodings/libLatinSuppConverter.dylib
0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

Model: MacBookPro5,2, BootROM MBP52.008E.B05, 2 processors, Intel Core 2 Duo, 2.8 GHz, 8 GB, SMC 1.42f4
Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
Memory Module: global_name
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.91.26)
Bluetooth: Version 2.2.4f3, 2 service, 1 devices, 1 incoming serial ports
Network Service: Ethernet, Ethernet, en0
Serial ATA Device: Hitachi HTS545050B9SA02, 465.76 GB
Serial ATA Device: MATSHITADVD-R UJ-868
USB Device: TS32GSSD34E-M, 0x1307, 0x0165, 0x26300000
USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24400000
USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8217, 0x06110000
USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0x04600000
USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000
USB Device: Microsoft® Nano Transceiver v1.0, 0x045e (Microsoft Corporation), 0x0745, 0x04100000