In my game I have a pause button. Hitting the pause button causes the physics engine to stop and unregisters the main game loop from the enter frame event of the runtime.
When I hit my restart button the game gets through most of one iteration of the main game loop and crashes. I know the problem appears to happen on this line:
aBody.x = (aBody.modelX * scaleFactor) + originX
of this method:
–====================================================================================
– == Draws the comet by translating the model positon into a display
– == position and scalling the object
–====================================================================================
function drawModelObject(aBody, scaleFactor, previousScaleFactor)
print ("In drawModelObject scaleFactor= "… scaleFactor )
print ("previousScaleFactor= "… previousScaleFactor )
if(aBody.scale ~= nil)
then
print (“in if statement” )
local screenW = display.contentWidth
local screenH = display.contentHeight
local originX = screenW/2;
local originY = screenH/2;
print (“originx =” … originX)
print ("aBody.x = " …aBody.x)
print (“aBody.modelX =” … aBody.modelX)
print ("scaleFactor = " … scaleFactor)
aBody.x = (aBody.modelX * scaleFactor) + originX
print (“moved aBody.x”)
aBody.y = (aBody.modelY * scaleFactor) + originY
– scale him
local reInflateFactor = 1/previousScaleFactor;
aBody:scale(reInflateFactor, reInflateFactor)
print (“reinflated” )
aBody:scale(scaleFactor,scaleFactor)
print (“scaled” )
end
end
I can send the whole project if that helps I am stumped. Any help is great! Thanks!
Here is the terminal output With one game loop prior to the pause to the crash:
–> STARTING gameEventLoop
totalXForce =-0.0061515088137221
totalYForce =0.0022049272659188
Comet.x before updates= 302.92346191406
Comet.y before updates= 259.37466430664
Comet.Modelx before updates= 251.08730218
Comet.Modely before updates= 34.037312877354
Comet.Modely after updates= 46.050323681088
Comet.Modelx after updates= 250.61989011439
In the first rangeY= 46.050323681088
In the second range Y= 46.050323681088
X Scale Factor= 0.57016628413182
Y Scale Factor= 14.952969470815
Scale Factor to be returned= 0.57016628413182
Universe Scale factor after updates= 0.57016628413182
previous Scale Factor 0.56921817086402
In drawModelObject scaleFactor= 0.57016628413182
previousScaleFactor= 0.56921817086402
in if statement
originx =160
aBody.x = 302.92346191406
aBody.modelX =250.61989011439
scaleFactor = 0.57016628413182
moved aBody.x
reinflated
scaled
Scaled Comet
In drawModelObject scaleFactor= 0.57016628413182
previousScaleFactor= 0.56921817086402
in if statement
originx =160
aBody.x = 160
aBody.modelX =0
scaleFactor = 0.57016628413182
moved aBody.x
reinflated
scaled
In drawModelObject scaleFactor= 0.57016628413182
previousScaleFactor= 0.56921817086402
in if statement
originx =160
aBody.x = 205.53746032715
aBody.modelX =80
scaleFactor = 0.57016628413182
moved aBody.x
reinflated
scaled
In drawModelObject scaleFactor= 0.57016628413182
previousScaleFactor= 0.56921817086402
in if statement
originx =160
aBody.x = 223.75244140625
aBody.modelX =112
scaleFactor = 0.57016628413182
moved aBody.x
reinflated
scaled
Scaled Planets
In drawModelObject scaleFactor= 0.57016628413182
previousScaleFactor= 0.56921817086402
in if statement
originx =160
aBody.x = 160
aBody.modelX =0
scaleFactor = 0.57016628413182
moved aBody.x
reinflated
scaled
Scaled background
Comet.x after updates= 302.89501953125
Comet.y after updates= 266.25634765625
–> Ending gameEventLoop
in pauseGameEvent
–> STARTING gameEventLoop
totalXForce =-0.0062642924481802
totalYForce =0.0023398850788016
Comet.x before updates= 302.89501953125
Comet.y before updates= 266.25634765625
Comet.Modelx before updates= 250.61989011439
Comet.Modely before updates= 46.050323681088
Comet.Modely after updates= 51.563430551603
Comet.Modelx after updates= 250.26648350448
In the first rangeY= 51.563430551603
In the second range Y= 51.563430551603
X Scale Factor= 0.57088524464054
Y Scale Factor= 11.129954458112
Scale Factor to be returned= 0.57088524464054
Universe Scale factor after updates= 0.57088524464054
previous Scale Factor 0.57016628413182
In drawModelObject scaleFactor= 0.57088524464054
previousScaleFactor= 0.57016628413182
in if statement
originx =160
aBody.x = 302.89501953125
aBody.modelX =250.26648350448
scaleFactor = 0.57088524464054
/Applications/Corona.2011.318/Corona Terminal: line 9: 525 Bus error “$path/Corona Simulator.app/Contents/MacOS/Corona Simulator” $*
logout
[Process completed]
Here is the crash report:
Process: Corona Simulator [525]
Path: /Applications/Corona.2011.318/Corona Simulator.app/Contents/MacOS/Corona Simulator
Identifier: com.anscamobile.Corona_Simulator
Version: ??? (1.0)
Code Type: X86 (Native)
Parent Process: bash [523]
Date/Time: 2011-03-22 13:19:03.252 -0400
OS Version: Mac OS X 10.6.6 (10J567)
Report Version: 6
Interval Since Last Report: 465186 sec
Crashes Since Last Report: 54
Per-App Interval Since Last Report: 625036 sec
Per-App Crashes Since Last Report: 54
Anonymous UUID: B1F7BB25-AD9C-4AE9-9843-626299FA90A2
Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x000000000001920c
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Thread 0 Crashed: Dispatch queue: com.apple.main-thread
0 org.Box2D.Box2D 0x0014a9c8 void b2BroadPhase::UpdatePairs(b2ContactManager*) + 24
1 org.Box2D.Box2D 0x0014a0e5 b2ContactManager::FindNewContacts() + 21
2 …nscamobile.Corona_Simulator 0x000567bb 0x1000 + 350139
3 …nscamobile.Corona_Simulator 0x0008010c 0x1000 + 520460
4 …nscamobile.Corona_Simulator 0x0006e628 0x1000 + 448040
5 …nscamobile.Corona_Simulator 0x0006ea8c 0x1000 + 449164
6 …nscamobile.Corona_Simulator 0x0006d1d3 0x1000 + 442835
7 …nscamobile.Corona_Simulator 0x00036f70 0x1000 + 221040
8 …nscamobile.Corona_Simulator 0x0003709b 0x1000 + 221339
9 …nscamobile.Corona_Simulator 0x0004633c 0x1000 + 283452
10 …nscamobile.Corona_Simulator 0x000370af 0x1000 + 221359
11 …nscamobile.Corona_Simulator 0x0002c700 0x1000 + 177920
12 …nscamobile.Corona_Simulator 0x000368b7 0x1000 + 219319
13 …nscamobile.Corona_Simulator 0x00036914 0x1000 + 219412
14 …nscamobile.Corona_Simulator 0x0002d2b4 0x1000 + 180916
15 …nscamobile.Corona_Simulator 0x0005f6dd 0x1000 + 386781
16 …nscamobile.Corona_Simulator 0x0007abe3 0x1000 + 498659
17 com.apple.Foundation 0x94c119b0 NSFireTimer + 141
18 com.apple.CoreFoundation 0x9197fadb CFRunLoopRun + 8059
19 com.apple.CoreFoundation 0x9197d464 CFRunLoopRunSpecific + 452
20 com.apple.CoreFoundation 0x9197d291 CFRunLoopRunInMode + 97
21 com.apple.HIToolbox 0x96eef004 RunCurrentEventLoopInMode + 392
22 com.apple.HIToolbox 0x96eeedbb ReceiveNextEventCommon + 354
23 com.apple.HIToolbox 0x96eeec40 BlockUntilNextEventMatchingListInMode + 81
24 com.apple.AppKit 0x9620678d _DPSNextEvent + 847
25 com.apple.AppKit 0x96205fce -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
26 com.apple.AppKit 0x961c8247 -[NSApplication run] + 821
27 com.apple.AppKit 0x961c02d9 NSApplicationMain + 574
28 …nscamobile.Corona_Simulator 0x000030d1 0x1000 + 8401
Thread 1: Dispatch queue: com.apple.libdispatch-manager
0 libSystem.B.dylib 0x94ea1982 kevent + 10
1 libSystem.B.dylib 0x94ea209c _dispatch_mgr_invoke + 215
2 libSystem.B.dylib 0x94ea1559 _dispatch_queue_invoke + 163
3 libSystem.B.dylib 0x94ea12fe _dispatch_worker_thread2 + 240
4 libSystem.B.dylib 0x94ea0d81 _pthread_wqthread + 390
5 libSystem.B.dylib 0x94ea0bc6 start_wqthread + 30
Thread 2: com.apple.CFSocket.private
0 libSystem.B.dylib 0x94e9a0c6 select$DARWIN_EXTSN + 10
1 com.apple.CoreFoundation 0x919bdc83 __CFSocketManager + 1091
2 libSystem.B.dylib 0x94ea885d _pthread_start + 345
3 libSystem.B.dylib 0x94ea86e2 thread_start + 34
Thread 3:
0 libSystem.B.dylib 0x94e7b15a semaphore_timedwait_signal_trap + 10
1 libSystem.B.dylib 0x94ea8ce5 _pthread_cond_wait + 1066
2 libSystem.B.dylib 0x94ed7ac8 pthread_cond_timedwait_relative_np + 47
3 com.apple.audio.CoreAudio 0x972da3c7 CAGuard::WaitFor(unsigned long long) + 219
4 com.apple.audio.CoreAudio 0x972dd3f9 CAGuard::WaitUntil(unsigned long long) + 289
5 com.apple.audio.CoreAudio 0x972dacf6 HP_IOThread::WorkLoop() + 1892
6 com.apple.audio.CoreAudio 0x972da58d HP_IOThread::ThreadEntry(HP_IOThread*) + 17
7 com.apple.audio.CoreAudio 0x972da4a4 CAPThread::Entry(CAPThread*) + 140
8 libSystem.B.dylib 0x94ea885d _pthread_start + 345
9 libSystem.B.dylib 0x94ea86e2 thread_start + 34
Thread 4:
0 libSystem.B.dylib 0x94e7b20e mach_wait_until + 10
1 libSystem.B.dylib 0x94f02819 nanosleep + 345
2 SDL 0x001b6453 SDL_Delay + 99
3 net.playcontrol.ALmixer 0x0013bc72 Stream_Data_Thread_Callback + 4138
4 SDL 0x001a7ecd SDL_Linked_Version + 397
5 SDL 0x001b61f1 SDL_SemWait + 49
6 libSystem.B.dylib 0x94ea885d _pthread_start + 345
7 libSystem.B.dylib 0x94ea86e2 thread_start + 34
Thread 0 crashed with X86 Thread State (32-bit):
eax: 0x000191d8 ebx: 0x0014a9be ecx: 0x00000000 edx: 0x00000000
edi: 0x000191d8 esi: 0x00676a30 ebp: 0xbfffe0f8 esp: 0xbfffe0c0
ss: 0x0000001f efl: 0x00010286 eip: 0x0014a9c8 cs: 0x00000017
ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
cr2: 0x0001920c
Binary Images:
0x1000 - 0xb0fe7 +com.anscamobile.Corona_Simulator ??? (1.0) /Applications/Corona.2011.318/Corona Simulator.app/Contents/MacOS/Corona Simulator
0xcc000 - 0xd0ff7 com.apple.JavaVM 13.4.0 (13.4.0) <77CA466B-7DDA-D261-53A0-312FB7B0A6DC> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
0xd8000 - 0xeffe7 libedit.2.dylib 2.11.0 (compatibility 2.0.0) <8EB6180C-FF24-1107-17CC-8A4FDCC50DD6> /usr/lib/libedit.2.dylib
0xfc000 - 0x125fff com.apple.audio.OpenAL 1.4 (1.4) /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
0x133000 - 0x13dff7 +net.playcontrol.ALmixer 1.0 (1) <959BBE2D-AADF-37E1-4C88-72EBF7868A56> /Applications/Corona.2011.318/Corona Simulator.app/Contents/Frameworks/ALmixer.framework/Versions/A/ALmixer
0x142000 - 0x158ff7 +org.Box2D.Box2D 1.0 (1) /Applications/Corona.2011.318/Corona Simulator.app/Contents/Frameworks/Box2D.framework/Versions/A/Box2D
0x164000 - 0x168ff7 JavaLaunching ??? (???) /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunching
0x16e000 - 0x171ff7 +com.yourcompany.SDL-sound 1.0 (1) <405FBECF-63AE-7F57-C267-54D448FB63FB> /Applications/Corona.2011.318/Corona Simulator.app/Contents/Frameworks/SDL_sound.framework/Versions/A/SDL_sound
0x177000 - 0x1dcf17 +SDL 1.2.14 (1.2.14) /Applications/Corona.2011.318/Corona Simulator.app/Contents/Frameworks/SDL.framework/Versions/A/SDL
0x1ee000 - 0x1f1ff7 +org.xiph.ogg 1.1.4 (1.1.4) <6358130C-085C-EC2D-CC5E-38B76B426F8D> /Applications/Corona.2011.318/Corona Simulator.app/Contents/Frameworks/SDL_sound.framework/Versions/A/Frameworks/Ogg.framework/Versions/A/Ogg
0x1f5000 - 0x382ff7 +org.xiph.vorbis 1.2.3 (1.2.3) /Applications/Corona.2011.318/Corona Simulator.app/Contents/Frameworks/SDL_sound.framework/Versions/A/Frameworks/Vorbis.framework/Versions/A/Vorbis
0x14d9d000 - 0x14f15fe7 GLEngine ??? (???) <3A6C5513-7428-2242-2892-B429C72343CB> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
0x14f47000 - 0x1534cfe7 libclh.dylib 3.1.1 C (3.1.1) <745CBD72-DF1F-EC12-BE51-4EEA9847EADF> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
0x15375000 - 0x15399fe7 GLRendererFloat ??? (???) <1274B762-2FB9-48FE-EAFD-C459B2B4BECC> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFloat
0x1881d000 - 0x18821ff3 com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/Contents/MacOS/AudioIPCPlugIn
0x18826000 - 0x1882cffb com.apple.audio.AppleHDAHALPlugIn 1.9.9 (1.9.9f12) <82BFF5E9-2B0E-FE8B-8370-445DD94DA434> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Contents/MacOS/AppleHDAHALPlugIn
0x70000000 - 0x700cbff3 com.apple.audio.units.Components 1.6.3 (1.6.3) <5DA35A22-1B05-6BD3-985A-26A7A2CD6289> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
0x8f0c8000 - 0x8f811ff7 com.apple.GeForceGLDriver 1.6.26 (6.2.6) <518182BB-5A3C-5F4C-3A84-17BB8E385BBF> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
0x8fe00000 - 0x8fe4162b dyld 132.1 (???) /usr/lib/dyld
0x90003000 - 0x90029ffb 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
0x9002a000 - 0x9045fff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <4D2F47EF-BD32-1E3C-6A0A-438896ADE2BE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x9046c000 - 0x904e5ff7 com.apple.PDFKit 2.5.1 (2.5.1) <4C374867-71B8-B202-ADDA-9985B4379470> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versions/A/PDFKit
0x90649000 - 0x90686ff7 com.apple.SystemConfiguration 1.10.5 (1.10.2) <362DF639-6E5F-9371-9B99-81C581A8EE41> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x90687000 - 0x90691fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/Versions/A/CarbonSound
0x90692000 - 0x906f3fe7 com.apple.CoreText 3.5.0 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.framework/Versions/A/CoreText
0x906f4000 - 0x9075efe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
0x90866000 - 0x90866ff7 com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x90867000 - 0x908abff3 com.apple.coreui 2 (114) <1A3C3B7F-3837-6477-3114-47F6BFD56CB2> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x908ac000 - 0x90987feb com.apple.DesktopServices 1.5.9 (1.5.9) /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x90988000 - 0x909d8ff7 com.apple.framework.familycontrols 2.0.2 (2020) /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x909f2000 - 0x909f5ff7 libCoreVMClient.dylib ??? (???) <973B9E1F-70B3-2E76-B14B-E57F306AD2DF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x909f6000 - 0x90a4cff7 com.apple.MeshKitRuntime 1.1 (49.2) <4B41E225-69AC-6EFA-190E-DC6A4BD8109E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitRuntime.framework/Versions/A/MeshKitRuntime
0x90a4d000 - 0x90a90ff7 libGLU.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x90a96000 - 0x90ab8fef com.apple.DirectoryService.Framework 3.6 (621.9) /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x90ac4000 - 0x90ac5ff7 com.apple.audio.units.AudioUnit 1.6.5 (1.6.5) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x90ad6000 - 0x90ebcffb com.apple.RawCamera.bundle 3.4.1 (546) <557C094F-BF8D-B298-E502-C4EE78914C55> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
0x90ebd000 - 0x90ecfff7 com.apple.MultitouchSupport.framework 207.10 (207.10) /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x90ed0000 - 0x90ed4ff7 libGFXShared.dylib ??? (???) <9E14BE2F-C863-40E9-41A6-1BE9045663A0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x910b4000 - 0x9110cfe7 com.apple.datadetectorscore 2.0 (80.7) <3830B574-3B0B-76DA-390D-702D908A71F4> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x9110d000 - 0x91125ff7 com.apple.CFOpenDirectory 10.6 (10.6) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x91126000 - 0x9115fff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) /usr/lib/libcups.2.dylib
0x91160000 - 0x91210ff3 com.apple.ColorSync 4.6.3 (4.6.3) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x9123c000 - 0x9123fff7 libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x91357000 - 0x9138aff7 com.apple.AE 496.4 (496.4) <23F0DB1F-2856-0091-80AE-BDEF9A4F1731> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x9138b000 - 0x91423fe7 edu.mit.Kerberos 6.5.10 (6.5.10) <8B83AFF3-C074-E47C-4BD0-4546EED0D1BC> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x91548000 - 0x91625ff7 com.apple.vImage 4.0 (4.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x9163e000 - 0x91649ff7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
0x91893000 - 0x91940fe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) /usr/lib/libobjc.A.dylib
0x91941000 - 0x91abcfe7 com.apple.CoreFoundation 6.6.4 (550.42) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x91abd000 - 0x91b03ff7 libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
0x91ce0000 - 0x91ce5ff7 com.apple.OpenDirectory 10.6 (10.6) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x91ce6000 - 0x91cecff7 libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
0x91ced000 - 0x91d6dfeb com.apple.SearchKit 1.3.0 (1.3.0) <7AE32A31-2B8E-E271-C03A-7A0F7BAFC85C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x91dde000 - 0x91e97fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
0x91e98000 - 0x91e99ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <1DD14B2E-E466-1A45-5CF7-947766F0ECD9> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPanel
0x91e9a000 - 0x92205ff7 com.apple.QuartzCore 1.6.3 (227.34) /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x92206000 - 0x92214fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <3CE8AA79-F077-F1B0-A039-9103A4A02E92> /usr/lib/libz.1.dylib
0x9225c000 - 0x9226dff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <97511CC7-FE23-5AC3-2EE2-B5479FAEB316> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x9226e000 - 0x9226eff7 com.apple.Cocoa 6.6 (???) <5A785062-1ABB-2A54-BAAC-8FEF95275E05> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x9226f000 - 0x92278ff7 com.apple.DiskArbitration 2.3 (2.3) <6AA6DDF6-AFC3-BBDB-751A-64AE3580A49E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x92279000 - 0x92599ff3 com.apple.CoreServices.CarbonCore 861.23 (861.23) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x925e3000 - 0x9260aff7 com.apple.quartzfilters 1.6.0 (1.6.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters
0x926b8000 - 0x926b8ff7 liblangid.dylib ??? (???) /usr/lib/liblangid.dylib
0x9272e000 - 0x9275eff7 com.apple.MeshKit 1.1 (49.2) <464BD81C-9970-FBF5-507F-3EEBD020A967> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
0x9275f000 - 0x92a58fef com.apple.QuickTime 7.6.6 (1756) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
0x92cb1000 - 0x92db5fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) /usr/lib/libcrypto.0.9.8.dylib
0x92db9000 - 0x9301cfff com.apple.security 6.1.1 (37594) /System/Library/Frameworks/Security.framework/Versions/A/Security
0x930d2000 - 0x930d5ffb com.apple.help 1.3.1 (41) <6A5AD406-9D8E-5BAC-51E1-E09AB9A6D159> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x930d6000 - 0x931e5fe7 com.apple.WebKit 6533.20 (6533.20.25) <248613DC-8432-F15C-B5F7-548CFCA326B5> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
0x931e6000 - 0x931e8ff7 com.apple.securityhi 4.0 (36638) <38D36D4D-C798-6ACE-5FA8-5C001993AD6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x9332c000 - 0x9334bff7 com.apple.CoreVideo 1.6.2 (45.6) /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x9336c000 - 0x9339efe3 libTrueTypeScaler.dylib ??? (???) <6E9D1A50-330E-F1F4-F93D-9ECC8A61B21A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
0x933cb000 - 0x933d3ff7 com.apple.DisplayServicesFW 2.3.0 (283) <48D94761-7340-D029-99E3-9BE0262FAF22> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
0x933d4000 - 0x9342efe7 com.apple.CorePDF 1.3 (1.3) <696ADD5F-C038-A63B-4732-82E4109379D7> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
0x9342f000 - 0x9342fff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x93469000 - 0x93506fe3 com.apple.LaunchServices 362.2 (362.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x93507000 - 0x93549ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <1AE34B00-8A62-1E51-935F-BB3F0E4BE50F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x93552000 - 0x93a0bffb com.apple.VideoToolbox 0.484.20 (484.20) /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
0x93a1f000 - 0x93a9cff7 com.apple.iLifeMediaBrowser 2.5.4 (468.1.1) <3B7F5895-B48D-A2E0-D708-58EC58EB9514> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeMediaBrowser
0x93a9d000 - 0x93a9dff7 com.apple.ApplicationServices 38 (38) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x93a9e000 - 0x93a9fff7 com.apple.TrustEvaluationAgent 1.1 (1) <06484720-AB50-6FD9-B5BF-05F5A640C9E5> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x93abf000 - 0x93c78feb com.apple.ImageIO.framework 3.0.4 (3.0.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x93c79000 - 0x93c79ff7 com.apple.Carbon 150 (152) <9252D5F2-462D-2C15-80F3-109644D6F704> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x94bcd000 - 0x94e40fe7 com.apple.Foundation 6.6.4 (751.42) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x94e7a000 - 0x95021ff7 libSystem.B.dylib 125.2.1 (compatibility 1.0.0) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
0x95023000 - 0x95038fff com.apple.ImageCapture 6.0.1 (6.0.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x95039000 - 0x95054ff7 libPng.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x9517a000 - 0x951befe7 com.apple.Metadata 10.6.3 (507.15) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x951bf000 - 0x951bfff7 com.apple.quartzframework 1.5 (1.5) <7DD4EBF1-60C4-9329-08EF-6E59731D9430> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
0x951c0000 - 0x951f8fe7 libncurses.5.4.dylib 5.4.0 (compatibility 5.4.0) <8776C654-D54E-9756-A58D-74738A4E9497> /usr/lib/libncurses.5.4.dylib
0x95224000 - 0x9522bff3 com.apple.print.framework.Print 6.1 (237.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x9522c000 - 0x95c7fff7 com.apple.WebCore 6533.20 (6533.20.24) <934863A8-DF97-9C9B-B41B-923F0CBF7E66> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versions/A/WebCore
0x95c80000 - 0x95c8dff7 com.apple.NetFS 3.2.1 (3.2.1) /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x95cc5000 - 0x95cedff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <12FBE8CB-CC8E-FE8A-7362-C852625C5AAF> /usr/lib/libxslt.1.dylib
0x95cee000 - 0x95d02ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <9F5CE4F7-D05C-8C14-4B76-E43D07A8A680> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x95d03000 - 0x95d07ff7 IOSurface ??? (???) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x95d08000 - 0x95d13ff7 libGL.dylib ??? (???) <48405993-0AE9-292B-6705-C3525528682A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x95d14000 - 0x95dafff7 com.apple.ApplicationServices.ATS 4.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x95db0000 - 0x95dd0fe7 libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <751955F3-21FB-A03A-4E92-1F3D4EFB8C5B> /usr/lib/libresolv.9.dylib
0x95dd1000 - 0x95dd1ff7 com.apple.vecLib 3.6 (vecLib 3.6) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x960ea000 - 0x960f0fff com.apple.CommonPanels 1.2.4 (91) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x960f1000 - 0x9619bfe7 com.apple.CFNetwork 454.11.5 (454.11.5) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x9619c000 - 0x961bdfe7 com.apple.opencl 12.3 (12.3) /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x961be000 - 0x96a9eff7 com.apple.AppKit 6.6.7 (1038.35) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x96aa2000 - 0x96ac6ff7 libJPEG.dylib ??? (???) <46AF3A0F-2B8D-87B9-62D4-0905678A64DA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x96ac7000 - 0x96cf2ff3 com.apple.QuartzComposer 4.2 ({156.28}) <08AF01DC-110D-9443-3916-699DBDED0149> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framework/Versions/A/QuartzComposer
0x96d44000 - 0x96d83ff7 com.apple.ImageCaptureCore 1.0.3 (1.0.3) <7E02D104-F31C-CF72-71B4-DA5DF7B48337> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
0x96d84000 - 0x96d98fe7 libbsm.0.dylib ??? (???) /usr/lib/libbsm.0.dylib
0x96d99000 - 0x96de2fe7 libTIFF.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x96de3000 - 0x96de7ff7 libGIF.dylib ??? (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x96e11000 - 0x96eb9ffb com.apple.QD 3.36 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x96eba000 - 0x971defef com.apple.HIToolbox 1.6.4 (???) <4699C8BB-DE74-C530-564B-D131F74C9B54> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x97212000 - 0x97215fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
0x97216000 - 0x972a8fe7 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
0x972a9000 - 0x972b9ff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <95DC4010-ECC4-3A75-5DEE-11BB2AE895EE> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWrappers
0x972ba000 - 0x97334fff com.apple.audio.CoreAudio 3.2.6 (3.2.6) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x9733b000 - 0x97378ff7 com.apple.CoreMedia 0.484.20 (484.20) <105DDB24-E45F-5473-99E1-B09FDEAE4500> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
0x97379000 - 0x97443fef com.apple.CoreServices.OSServices 357 (357) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x97444000 - 0x97452ff7 com.apple.opengl 1.6.12 (1.6.12) <9F13B279-F289-18AC-5D86-DCD52BAF087D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x97453000 - 0x97484ff7 libGLImage.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x97485000 - 0x97683ff3 com.apple.JavaScriptCore 6533.20 (6533.20.20) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
0x97684000 - 0x97732ff3 com.apple.ink.framework 1.3.3 (107) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x977ba000 - 0x978bbfe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) /usr/lib/libxml2.2.dylib
0x978bc000 - 0x97937fff com.apple.AppleVAFramework 4.10.12 (4.10.12) <89C4EBE2-FE27-3160-0BD1-D0C2ED5F3605> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
0x97938000 - 0x97a66fe7 com.apple.CoreData 102.1 (251) <0C2636F3-CCB4-5ED9-1D3E-5AE36BE57071> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x97a77000 - 0x97a93fe3 com.apple.openscripting 1.3.1 (???) <0E6B81D1-C1BD-1B5F-836F-256E6701B5DE> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x97a94000 - 0x97a9effb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <90C38107-AEE7-AE55-5C51-28D129B19BCD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x97a9f000 - 0x97eb5ff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <9D89FCB3-24C9-8FCF-DB49-27B184AC3222> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x97eb6000 - 0x97ef4ff7 com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
0x98045000 - 0x981c7fe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <35DB7644-0780-D2AB-F6A9-45F28D2D434A> /usr/lib/libicucore.A.dylib
0x981ea000 - 0x981f6ff7 libkxld.dylib ??? (???) /usr/lib/system/libkxld.dylib
0x981f7000 - 0x981f7ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x981f8000 - 0x98233feb libFontRegistry.dylib ??? (???) <4FB144ED-8AF9-27CF-B315-DCE5575D5231> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x982de000 - 0x98acd557 com.apple.CoreGraphics 1.545.0 (???) <1AB39678-00D5-FB88-3B41-93D78348E0DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x98b01000 - 0x98c03fef com.apple.MeshKitIO 1.1 (49.2) /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshKitIO.framework/Versions/A/MeshKitIO
0x98c04000 - 0x98c68fff com.apple.htmlrendering 72 (1.1.4) <0D22B190-513B-7FF6-39FC-9D336285DE08> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering
0x98c69000 - 0x98cacff7 com.apple.NavigationServices 3.5.4 (182) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.framework/Versions/A/NavigationServices
0x98cad000 - 0x98db9ff7 libGLProgrammability.dylib ??? (???) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dylib
0x98dba000 - 0x98e07feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <27F3FF53-F818-9836-2101-3E963FE0C0E0> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
0x98e1b000 - 0x98f47ffb com.apple.MediaToolbox 0.484.20 (484.20) /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
0x98f48000 - 0x98fb7ff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x98fb8000 - 0x990e7fe3 com.apple.audio.toolbox.AudioToolbox 1.6.5 (1.6.5) <0A0F68E5-4806-DB51-764B-D97554B801AD> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x990fc000 - 0x99143ffb com.apple.CoreMediaIOServices 134.0 (1160) /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/CoreMediaIOServices
0x9920e000 - 0x99214fe7 com.apple.CommerceCore 1.0 (6) <41C2A87D-93D8-56C1-9292-0400699F23C1> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCore.framework/Versions/A/CommerceCore
0x99215000 - 0x992cbff7 libFontParser.dylib ??? (???) <33F62EE1-E457-C6FD-369E-E86745B94A4B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x992cc000 - 0x994aefff com.apple.imageKit 2.0.3 (1.0) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Versions/A/ImageKit
0x994af000 - 0x99531ffb SecurityFoundation ??? (???) <3670AE8B-06DA-C447-EB14-79423DB9C474> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x99532000 - 0x99534ff7 libRadiance.dylib ??? (???) <10048B4A-2AE8-A4E2-21B8-C6E7A8C5B76F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x99535000 - 0x995a3ff7 com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/Versions/A/QuickLookUI
0x995e5000 - 0x99642ff7 com.apple.framework.IOKit 2.0 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x996b2000 - 0x99703ff7 com.apple.HIServices 1.8.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x998cd000 - 0x99a10fef com.apple.QTKit 7.6.6 (1756) <4D809734-4E1B-8E18-C825-86C5422FC3DC> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
0x99a16000 - 0x99a26ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) /usr/lib/libsasl2.2.dylib
0x99a27000 - 0x99a68ff7 libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <16DAE1A5-937A-1CA2-D98F-2AF958B62993> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0xc0000000 - 0xc000aff7 +com.growl.growlframework 1.2.1 (1.2.1) <6DDF5398-7B11-2132-4818-5F96B6E061D5> /Applications/Corona.2011.318/Corona Simulator.app/Contents/Frameworks/Growl.framework/Versions/A/Growl
0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <62291026-D016-705D-DC1E-FC2B09D47DE5> /usr/lib/libSystem.B.dylib
Model: MacBookPro7,1, BootROM MBP71.0039.B0B, 2 processors, Intel Core 2 Duo, 2.4 GHz, 4 GB, SMC 1.62f6
Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
Memory Module: global_name
AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.36.1)
Bluetooth: Version 2.3.8f7, 2 service, 19 devices, 1 incoming serial ports
Network Service: AirPort, AirPort, en1
Serial ATA Device: TOSHIBA MK2555GSXF, 232.89 GB
Serial ATA Device: MATSHITADVD-R UJ-898
USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8507, 0x24600000
USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0x26100000
USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0236, 0x06300000
USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06600000
USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8213, 0x06610000
USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x06500000
[import]uid: 39480 topic_id: 8132 reply_id: 308132[/import]