AIR 2.5 and Flex 3.5a

I have a Flex 3.5a application which I upgraded to use AIR 2.5, primarily for the improvements in the updater framework. Which InMarket SDK do I use? It looks like the InMarket SDK for 3.5 targets AIR 1.5.3.
I haven't shipped the application yet.

If you are developing a AIR 2.5 application, you will have to use the InMarket SDK for Flex 4.1 targeting AIR 2.5. Hope this helps.
Thanks
Shikha

Similar Messages

  • What is the official AIR SDK and FLEX version to release for iOS6 ?

    Hi,
    Wanted to know which AIR SDK and FLEX version is fully suporting the iOS6 to submit to Apple.
    I found that AIR SDK 3.4 is supporting iOS6, though the code created for iOS 6 is not working correctly when build from Flash Builder 4.7 AIR SDK 3.4 FLEX SDK 4.6 .
    Thanks
    Regards

    19th...

  • 6/10/14 - Release - AIR 14 Runtime and SDK

    Today we're pleased to announce that the next version of AIR is available for immediate download.
    This update includes the following fixes and security updates:
    Security update details can be found here: Security Bulletin (APSB14-14)
    New Features:
    Anisotropic Filtering
    This new texture sampling filter can enhance the image quality of textures on surfaces that are at oblique viewing angles.  There are two ways to enable this feature:
    In AGAL, set one of the values – "anisotropic2x", "anisotropic4x", "anisotropic8x", or "anisotropic16x" to the filter option in the sampling instructions.
    Call Context3D::setSamplerStateAt with the 3rd parameter "filter" being one of the values defined in Context3DTextureFilter - "ANISOTROPIC2X", "ANISOTROPIC4X", "ANISOTROPIC8X", or "ANISOTROPIC16X"
    New Stage3D "Standard" Profile
    Developers can now request this high level profile when creating Context3D.  Three new features are available in this profile:
    Multiple render target allows to you to draw geometry to multiple outputs (up to 4) during one drawing
    Floating point texture allows you to create Texture, RectangleTexture and CubeTuxture with the RGBA16F folder.
    AGAL v2 contains these improvements:
    Increased register size
    Partial derivative instructions
    Fragment depth output
    Conditional forward jump
    Intel x86 Android Support
    As announced in our Flash Runtime blog, we're adding support for Intel x86 Android to AIR.  An ADT command line option (-arch) has been added to allow packaging apps with Android x86 support.  Please note that currently only captive runtime packaging is allowed for x86 architecture.  This means all APK targets (apk, apk-debug and apk-captive-runtime) will forcibly be packaged with captive runtime.  Feedback on this approach is encouraged.
    Sample APK packaging command for x86 devices:
    adt -package -target ( apk | apk-captive-runtime ) -arch x86 -storetype pkcs12 -keystore abc.p12 HelloWorld.apk HelloWorld-app.xml HelloWorld.swf
    adt -package -target apk-debug -arch x86 -storetype pkcs12 -keystore abc.p12 HelloWorld.apk HelloWorld-app.xml HelloWorld.swf
    Note that -arch is optional. If not specified, armv7 is assumed.
    Packaging for x86 architecture in Flash Builder:
    Open the debug/run configurations of the project in Flash Builder and click on "Customize launch.." button. Add a new parameter "-arch" with value "x86" and place it before "-storetype". Click "OK" to apply changes.
    Except for RTMPE and DRM, all other features and capabilities are completely functional and supported. Native extensions written for x86 platforms can also be packaged and used by an app for x86 devices. To support this, a new ANE platform 'Android-x86' is now available.
    The following example highlights the usage of the same -
    <extension xmlns="http://ns.adobe.com/air/extension/14.0>
    <id>com.adobe.sample.ane</id>
    <versionNumber>1.0</versionNumber>
    <platforms>
    <platform name="Android-ARM">
    <applicationDeployment>
    <nativeLibrary>sample.jar</nativeLibrary>
    <initializer>com.example.ane.Extension</initializer>
    <finalizer>com.example.ane.Extension</finalizer>
    </applicationDeployment>
    </platform>
    <platform name="Android-x86">
    <applicationDeployment>
    <nativeLibrary>sample.jar</nativeLibrary>
    <initializer>com.example.ane.Extension</initializer>
    <finalizer>com.example.ane.Extension</finalizer>
    </applicationDeployment>
    </platform>
    </platforms>
    </extension>
    New packaging command for ANE:
    adt -package -target ane Sample.ane extension.xml -swc Sample.swc -platform Android-ARM -C Android-ARM/ . -platform Android-x86 -C Android-x86/ .
    Improved Packaging Engine - iOS
    Based on the feedback received from the developer community, tons of improvements and bug fixes have been made in the new packaging engine for iOS.  We encourage developers to report issues to http://bugbase.adobe.com, to ensure that we are able to continue to improve the packager in future releases.
    To enable this feature, please use "-useLegacyAOT no" in the ADT command, before the signing options.  As of now, this feature is not available within Flash Pro but it can still be used with Flash builder by adding the parameter -useLegacyAOT under the "Customize launch" option.
    Here is an example ADT command for compiling an applications using “-useLegacyAOT no":
    adt -package -target ( ipa-test | ipa-debug | ipa-app-store | ipa-ad-hoc) -useLegacyAOT no -provisioning-profile -keystore -storetype pkcs12 -storepass xxxx HelloWorld.ipa Helloworld-app.xml HelloWorld.swf
    For more information, please visit Faster compiling with AIR for iOS
    AIR Gamepad
    AIR Gamepad feature enables the app developers to provide a second screen on Android mobile devices for the Flash based browser games. AIR Gamepad API enables Flash based browser apps to connect to a paired Android device running the AIR Runtime app and therefore allowing the Android devices to be used as game controllers or second-screen interfaces.
    Key functionality of this feature:
    Gesture eventsTouch events
    Accelerometer events
    Vibration
    Customize the AIR gamepad screen by applying your own skins
    To learn more about the AIR Gamepad APIs, please refer to the documentation found here.
    To try out the Wand.swc which can be downloaded from here.
    Live samples of AIR Gamepad can be tested using the following links:
    ModelViewer
    HungryHero
    For more information, please visit Android devices with AIR as gamepads
    Fixed Issues:
    [IOS] Resolves an issue introduced in AIR 4.0.0.1390 where DatagramSocket was not receiving packets (3747382)
    [IOS] Values are now set correctly when assigning Vector3D.Y_AXIS to a Vector3D object with -useLegacyAOT=no[Android] Browse file dialog called by FileReference.browse() is correctly displayed on the Nexus 7 and Xoom 4.1.2 (3721032)
    [Android] is ignored for all but one extension when multiple extensions are used (3761458)
    [x86][Android] Workers get terminated even without calling terminate function (3755006)
    [Android] Setting the restrict property on a StageText instance and adding or removing text incorrectly add extra characters. (3749699)
    [iOS] Values are now set correctly when assigning Vector3D.Y_AXIS to a Vector3D object with useLegacyAOT=no (3744595)
    [iOS] ANE doesn't include libraries through platform.xml and throws error on packaging the IPA (3743946)
    [iOS] DatagramSocket not receiving packets on iOS (3742982)
    [iOS] Not able to debug/launch iPad iOS Simulator from Flash Builder. Note: One needs to set a environment variable using the command: launchctl setenv AIR_IOS_SIMULATOR_DEVICE "iPad Retina” Then restart the process and run the application on simulator device of his/her choice. By default iPhone is launched. (3728052)
    [iOS] Not able to debug AIR app in iOS Simulator from Flash Builder when Xcode below 5.x is installed (3727760)
    [iOS7] StageText fontWeight/fontPosture API does not work (3724627)
    [Android] R$Styleable.class goes missing from the final AIR app APK though is included in ANE. (3723876)
    [Android] Starling throws Buffer creation failed. Internal error while createVertexBuffer (3756123)
    [Win] Ctrl+A, Ctrl+C and Ctrl+V now work correctly in StageText fields (3708480)
    Multiple security and stability fixes
    Known Issues:
    [Android] Missing support for XXXHDPI icon on Android 4.4 (3730948)
    [x86][Android] Export Release Build from Flash Builder fails to run app on Android device when -arch parameter is used. (3759405)
    [Android]Captive packaging fails for APK using multiple ANEs, throws OutOfMemoryError. (Workaround: run export _JAVA_OPTIONS='-Xms4096m -Xmx4096m' and then run the packaging command). (3766280)
    [iOS8] A notification dialog is coming after launching any AIR applications. (3771162)
    [Android] ADT Does not pass required heap space to dx.jar (3771118)
    [Android] StageText restrict = "A-Z" not blocked lowercase letters input. (3769801)
    [iOS] Package IPA file with ipa-app-store or ipa-ad-hoc type will case logic judgment with incorrect (3768506)
    [Android] StageText displayAsPassword displays text without mask in landscape on Android (3768443)
    Download Locations:
    AIR 14 runtime for Windows: 14.0.0.110 Runtime Download
    AIR 14 runtime for Macintosh: 14.0.0.110 Runtime Download
    AIR 14 SDK & Compiler for Windows: 14.0.0.110 SDK & Compiler Download
    AIR 14 SDK & Compiler for Macintosh: 14.0.0.110 SDK & Compiler Download
    Note: To provide all the all the necessary tools for our developers in one place and avoid having to download multiple components, we are packaging Adobe AIR 13 SDK and ActionScript Compiler 2.0 in a single SDK called “Adobe AIR 13 SDK & Compiler”.
    AIR SDK 14 (Compatible with Flex) for Windows: 14.0.0.110 SDK Windows Download
    AIR SDK 14 (Compatible with Flex) for Macintosh: 14.0.0.110 SDK Macintosh Download
    Previous versions of the AIR runtime and SDK can be found on the Archived AIR SDK and Runtimes page

    OK! Let's take 7 steps ... an easy answer to a focus problem not a machine problem. (MAC!)
    1.1. Download the Adobe Flash Player file version 14 at Adobe - Install Adobe Flash Player
    1.2 or dowonload the above link: http://download.macromedia.com/pub/flashplayer/current/support/install_flash_player_osx.dm g
    2.1 Double-click the AdobeFlashPlayerInstaller_14_ltrosxd_aaa_aih.dmg in your download folder
    4. Do not double-click the red face (png file) - Installer "Install Adobe Flash Player".
    5. Right click the face to perform a precise selection: Show Package Contents.
    6.1 Select - Contents and double click; Select - Resources and double click; Select - Adobe Flash Player.pkg and double click.
    6.2 Warning!! Select - Contents and double click; Select - Resources and double click; Select - app.bundle and copy it to your internet plugin folder (more work!!)
    7. Select: Continue and complete your installation.
    R. Alexander

  • How to display rich content with URL in adobe flash builder and flex for mobile apps?

    Hi,
      In Apple IOS SDK, I used the WebView control to display the rich text with Bullets, different font style, images within the text and the URLs also within the text as HTML content.
    Clicking on the URLs automatically opens the respective webpage in Safari.
    In Adobe Flash Builder, I don't see any control straight away equivalent to Apple WebView control.
    How to implement the same using adobe and flex?

    Thanks for your reply, its nice to know its not just me.
    the error i got when submitting to the App store where due to native support for IPHONE 5 which is now mandatory (from May 1st), looking around the internet the common soloution seemed to be upgrading to Air 3.7.
    The strange erorrs on 3.7 revolve around compiling a standard / production build (fast build works fine)
    the error is always the same (snippet shown below):
    Error occurred while packaging the application:
    Undefined symbols for architecture armv7:
      "__ZN7avmplus8Debugger9debugLineEi", referenced from:
          __ZN7avmplus9MethodEnv9debugExitEPNS_13CallStackNodeE in AOTBuildOutput-4.o
          __ZN7avmplus11BaseExecMgr22debugEnterExitWrapperNEPNS_9MethodEnvEiPj in AOTBuildOutput-4.o
    I have completly failed to work out why, but my gut feeling is its something to do with how the mac is compiling the code in standard build and unable to find a library it needs.
    cheers
    Toby

  • 4/14/2015 - Release - AIR 17 Runtime and SDK

    Today we're pleased to announce that the next version of AIR is available for immediate download.  AIR 17 adds both new features and important bug fixes for both desktop and mobile platforms!
    Below are some of the key features and benefits of AIR 17.  Please see our release notes for full details.
    New Features:
    ADT Packaging time Improvement with Support for Parallel Compilation for iOS
    AIR 16 introduced support for compilation and packaging of iOS applications for both 32 bit and 64 bit platforms. With this improvement, we can now compile 32 and 64 bit architecture in parallel to cut packaging times up to 50 percent.
    Stage3D - Standard Extended Profile for Mobile
    In recent releases of the Runtime we've added support for Standard and Standard Constrained Stage3D profiles.  With AIR 17 we're adding a new Standard Extended Profile for iOS and Android devices that support GLES3.  Availability of the “standardExtended" profile indicates the availability of AGAL3. The same profile name can then be used in requestContext3D and requestContext3DMatchingProfiles methods of Stage3D.
    The “standardExtended” profile requires OpenGL ES 3.0 which is present on many high end smartphones and tablets. AGAL3 increases register limits for vertex attributes, fragment constants and tokens. While we're focusing on mobile first, we anticipate bringing this functionality to the desktop in a future update.
    To assemble the new AGAL, update AGALMiniAssembler.as (AGAL v3) from https://github.com/adobe-flash/graphicscorelib/.
    VideoTexture Support in AIR for Windows, Mac and iOS
    We've introduced a new ActionScript feature that allows hardware accelerated video to be used as a source texture in a Stage3D environment. Currently, using video with Stage3D requires the use of the Video object, which is not accelerated, and manipulation of the bitmap representations of the video frames. This new feature, called VideoTexture, allows direct access to a texture object that is sourced from a Netstream or Camera object. As of the first Flash Player 17 this feature is back and now available on AIR Mac, Windows and iOS.  Look for Android support in an upcoming release.  Please see the VideoTexture blog post for implementation details.
    Fixed Issues:
    [iPhone 6 +] if Landscape image is not provided for iphone 6+, Stretched Portrait launch image is displayed when application is launched in landscape mode. (3945056)
    [iPhone 6+][Upside down]: Inverted launch image is displayed, if device is kept at upsidedown position and AO is portrait and AR true. (3945046)
    Stage alignment get distorted on returning back from Camera UI. (3946793)
    App crashes on launch, when Permit debugging option is UNTICKED in Flash CC. ( Bug 3949916)
    Non-compliant handling of orientation in iOS 8 root view controller. (Bug 3942292)
    Mod (%) operator broken in interpreter mode for iOS 64 bit ( Bug 3951944)
    [Air Desktop] Create VideoTexture when application window is not active cause video not render but sound playback (3939033)
    Multiple security and functional fixes
    Known Issues:
    [iPhone 6 +] Inverted launch image is displayed for split sec when device kept at rotated right Landscape orientation (AspectRatio is landscape and AutoOrients is false). (3945071)
    Keyboard Orientation did not changed from Portrait to landscape after setting stage aspect ratio to landscape and the text area moves upwards.(3948135)
    Texture format mismatch" while uploading BitmapData to a Texture on Samsung Galaxy Tab (Bug 3959595)
    [Android] FLV video encoded with H264 is not working with stage video, video is not getting rendered (Bug 3950740)
    ld error “ld: in , unsupported address encoding (13) of personality function in CIE for architecture arm64Compilation failed while executing : ld64" on packaging with WIN SDK. (Bug 3950027)
    [Air Desktop] Graphical glitches when rotating an element inside of a sprite.(3949851)
    [Air Desktop] [Video Texture] Glitches in Video on Intel 4400 Graphics Card on Window 7.(3937062)
    [Air Desktop] Gestures doesn't work well with StageWebView. (3806251)
    Download Locations:
    AIR 17 runtime for Windows: 17.0.0.144 Runtime Download
    AIR 17 runtime for Macintosh: 17.0.0.144 Runtime Download
    AIR 17 SDK & Compiler for Windows: 17.0.0.144 SDK & Compiler Download
    AIR 17 SDK & Compiler for Macintosh: 17.0.0.144 SDK & Compiler Download
    Note: To provide all the all the necessary tools for our developers in one place and avoid having to download multiple components, we are packaging Adobe AIR 17 SDK and ActionScript Compiler 2.0 in a single SDK called “Adobe AIR 17 SDK & Compiler”.
    AIR SDK 17 (Compatible with Flex) for Windows: 17.0.0.144 SDK Windows Download
    AIR SDK 17 (Compatible with Flex) for Macintosh: 17.0.0.144 SDK Macintosh Download
    Previous versions of the AIR runtime and SDK can be found on the Archived AIR SDK and Runtimes page

    Sometimes the release version has a later build number than the last beta we received, which in a way can be even worse than if the build is the same. The thing that has caused some confusion is that a few posts here have been answered with "we've fixed that and it will be in the next build", and the next build turned out to be the same as the previous build.
    So, I think the truth is that those things are fixed in the next build that appears on labs, and the release one doesn't count as a new beta build. I don't know when the next labs build will be.

  • 2/12/2015 - Release - AIR 16 Runtime and SDK

    Today we're pleased to announce that the next version of AIR is available for immediate download.  In addition to important bug and security fixes AIR 16 now contains support for iOS 64-bit applications along with significant Stage3D improvements!
    Please note that in today's release, only the Windows shared runtime was updated.  The Mac version remains at 16.0.0.245.
    Below are some of the key features and benefits of AIR 16.  Please see our release notes for full details.
    New Features:
    iOS 64-bit Support
    As many of you are aware, Apple has recently changed their iOS requirements to enforce 64-bit compatibility.  We’re pleased to announce that the AIR 16 SDK can now be used to generate universal IPA binaries, which will run on both 32bit and 64bit iOS devices.  Going forward, every IPA generated using AIR SDK 16 and above will be a universal binary and there is no change required in the packaging commands for this support.
    Please note that support for creating universal IPA binaries will only be available in the new compiler.  The legacy compiler is not (and will not be) compatible with iOS 64-bit.  Because of this, it will be removed with version 16 of the AIR SDK.  To ensure that Adobe as well as third party tools are able to work with this AIR SDK, the -useLegacyAOT option will continue to exist, but will be internally mapped to the new compiler.
    With this change, any ANE that gets packaged in the application should contain the universal native libraries. Failing to do so will result in “Apple App Store allows only universal applications. <binary name> is not a universal binary. Please change build settings in Xcode project to "Standard Architecture" to create universal library/framework” error while packaging the ipa.
    To learn more about the improved packaging engine, please read Faster Compiling with AIR for iOS.
    If you encounter packaging or runtime issues, please report them to us over at http://bugbase.adobe.com. Please provide detailed steps to reproduce along with sample projects. If you'd like to keep your code private, please feel free to email attachments along with your bug number to [email protected].
    Stage3D Wireframe Mode Support
    To help designers and developers create robust and efficient 3D content, we've added Wireframe support into AIR desktop. This option can be changed by setting Context3D's setFillMode() to "wireframe" or "solid".
    Stage3D - Standard Constrained Profile
    In version 14 of the Runtime we added the new Standard profile to desktop systems.  In Version 15 we expanded that to mobile devices in AIR.  In Flash Player 16 we've added a new Standard Constrained profile.  Like Baseline Constrained, Standard Constrained targets older and lower powered GPUs on both desktop and mobile devices.  While Standard profile reached ~21% of iOS devices, Standard Constrained can now reach more than 85%.  Developers can access this by using the new STANDARD_CONSTRAINED constant in Context3DProfile.  The chart below breaks down the differences between the different profiles that are available.
    Fixed Issues:
    [iOS8, iPad] Application hangs on returning back to stage after importing an image from the gallery on an iPad. (3916940)
    [iOS] App screen does not render properly when a device is rotated to an upside down position. (3916521)
    [iOS] Push notification is not working on iOS devices as notification permission pop ups did not appear on app launch. (3928304)
    [iOS64] LC_VERSION_MIN_IPHONEOS is set incorrectly when ANE of higher/lower minOSversion is used.
    Packaging fails with error "Unable to find llvm JNI lib in", when an application is packaged with -useLegacyAOT yes option.
    Graphical glitches with bitmap smoothing and scaling.( 3915192)
    Known Issues:
    Application UI items are not clickable after changing application rotation to landscape to portrait. (3924470)
    Screen does not render properly when enter foreground from background. (3919996)
    Download Locations:
    AIR 16 runtime for Windows: 16.0.0.273 Runtime Download
    AIR 16 runtime for Macintosh: 16.0.0.245 Runtime Download
    AIR 16 SDK & Compiler for Windows: 16.0.0.292 SDK & Compiler Download
    AIR 16 SDK & Compiler for Macintosh: 16.0.0.292 SDK & Compiler Download
    Note: To provide all the all the necessary tools for our developers in one place and avoid having to download multiple components, we are packaging Adobe AIR 16 SDK and ActionScript Compiler 2.0 in a single SDK called “Adobe AIR 16 SDK & Compiler”.
    AIR SDK 16 (Compatible with Flex) for Windows: 16.0.0.292 SDK Windows Download
    AIR SDK 16 (Compatible with Flex) for Macintosh: 16.0.0.292 SDK Macintosh Download
    Previous versions of the AIR runtime and SDK can be found on the Archived AIR SDK and Runtimes page

    Sometimes the release version has a later build number than the last beta we received, which in a way can be even worse than if the build is the same. The thing that has caused some confusion is that a few posts here have been answered with "we've fixed that and it will be in the next build", and the next build turned out to be the same as the previous build.
    So, I think the truth is that those things are fixed in the next build that appears on labs, and the release one doesn't count as a new beta build. I don't know when the next labs build will be.

  • 11/11/2014 - Release - AIR 15 Runtime and SDK

    Today we're pleased to announce that the next version of AIR is available for immediate download.  This release includes bug and security fixes.  In addition, the AIR SDK has been updated with important iOS 8 compatibility updates.
    Below are some of the key features and benefits of AIR 15.  Please see our release notes for full details.
    New Features:
    Stage3D “Standard” profile support for iOS and Android
    In the Flash Runtime 14 release we introduced the Stage3D “Standard” profile which provided many advanced 3D features.  At that time, the “Standard” profile was only available on desktop platforms.  In the AIR 15 release we are extending this coverage to mobile platforms.  If a device supports OpenGL ES3, it can successfully request the “Standard” profile and use the same advanced features as the desktop platform.
    For additional information, please see our Stage3D Standard Profile article.
    Relaxing Stage3D Render Target Clear
    In previous versions of Stage3D, after switching the render texture through Context3D::setRenderToTexture, you were required to clear it before drawing. In this release, we're removing this limitation and optimizing the use of render textures. This change will allow you to further optimize and reuse depth and stencil buffers between different render textures.  
    For additional information, please see Relaxing Render Target Clear Operation in Stage 3D.
    StageText.drawViewPortToBitmapData now supports Retina displays
    Currently, AIR will allow a bitmap with the same width/height of the StageText object to be passed into drawViewPortToBitmapData.  While fine for standard resolution displays, this is not sufficient for Apple's Retina HiDPI displays.  Based on customer feedback, we've altered the drawViewPortToBitmapData method to accept a doubled size BitmapData with StageText's view port on a Mac Retina display, and then draw a HiDPI image from the view port.
    Improved Packaging Engine is now default - iOS
    Starting AIR 15, new improved IPA packaging engine is now the default packaging mode when packaging for AOT targets ipa-app-store, ipa-test, ipa-ad-hoc and ipa-debug. If you encounter any packaging or runtime issues, please report at http://bugbase.adobe.com. To use older packaging mode, use "-useLegacyAOT yes" in the ADT command, before the signing options. To learn more about the feature, please read Faster Compiling with AIR for iOS
    AIR Gamepad Enhancements
    AIR Gamepad feature enables the app developers to provide a second screen on Android mobile devices for the Flash based browser games. AIR Gamepad API enables Flash based browser apps to connect to a paired Android device running the AIR Runtime app and therefore allowing the Android devices to be used as game controllers or second-screen interfaces. Following enhancements are available starting AIR 15.
    Multiplayer Support
    Gyroscope Events
    Magnetometer Events
    Applying skin as AIR gamepad screen
    To learn more about the feature and usage guidelines, please see Android Devices with AIR as Gamepads
    AIR Cross Promotion
    Adobe AIR 15 now supports cross promotion of AIR games for mobile devices. Cross promotions can be effective in saving some amount of advertising cost. With the right partnership, you gain access to a wider customer base with a demographic similar to that of your application. This cross promotion is free and works on a credit system. All you need is to earn enough credit points by promoting other AIR games to begin your own promotion campaign. The AIR SDK offers the new AdViewer API for promotion campaigns as a SWC, it provides functions to load and show in-game advertisements. You earn credit points for promoting AIR games by other developers based on ad impressions and clicks.
    To learn more about the feature and usage guidelines, please see Cross Promotion of AIR Games for Mobile.
    Fixed Issues:
    [iOS] Launch image [email protected] is not appearing in iPhone 6 Plus in standard display mode (Bug 3837220)
    [iOS] "Unknown or unsupported SDK version" error appears on installing application on iOS simulator, when -platformsdk version is given as .../Developer/SDK/iPhoneSimulator.sdk. (Bug 3837285)
    [iOS] [New fast packager]Hurlant Base64 encode doesn't work in new fast compiled packaging mode. (Bug 3832978)
    [iOS] Adobe Air Runtime initiates the wrong launch image ([email protected]), when [email protected] and [email protected] images are packaged. (Bug 3832184)
    [iOS] Blank frame appears instead of launch image [email protected] when [email protected], [email protected] and [email protected] are packaged with the application. (Bug 3829428)
    [iOS] [New fast packager] Some performance fixes are done for increasing fps values. (Bug 3815079).
    [Android 5.0] Stage3D fails to create context on Android 5.0. (Bug 3841657)
    Multiple security and stability fixes
    Known Issues:
    [Android] StageText not visible after screen rotation. (Bug 3821523).
    [iPhone 6 Plus][RADAR] Wrong screen size and dpi is returned through the runtime APIs. (Bug 3829474)
    [iPhone 6 Plus]
    [iOS] iPad Launch image is displayed on iPhone 6 Plus in standard display mode. (Bug 3836781)
    [iOS]Unable to install the application on iOS Simulator after updating iOS SDK and iPhone simulator with 7.1. (Bug 3833912)
    [iOS] [New fast packager] Some applications compiled with older ActionScript compiler won’t work with new fast packaging engine but when rebuild again with latest ActionScript compiler apps work fine. (Bug 3837665)
    Download Locations:
    AIR 15 runtime for Windows: 15.0.0.356 Runtime Download
    AIR 15 runtime for Macintosh: 15.0.0.356 Runtime Download
    AIR 15 SDK & Compiler for Windows: 15.0.0.356 SDK & Compiler Download
    AIR 15 SDK & Compiler for Macintosh: 15.0.0.356 SDK & Compiler Download
    Note: To provide all the all the necessary tools for our developers in one place and avoid having to download multiple components, we are packaging Adobe AIR 15 SDK and ActionScript Compiler 2.0 in a single SDK called “Adobe AIR 15 SDK & Compiler”.
    AIR SDK 15 (Compatible with Flex) for Windows: 15.0.0.356 SDK Windows Download
    AIR SDK 15 (Compatible with Flex) for Macintosh: 15.0.0.356 SDK Macintosh Download
    Previous versions of the AIR runtime and SDK can be found on the Archived AIR SDK and Runtimes page

    Hi Colin,
    Thanks for the response!
    I started pointing to SDKs back when ANE support first came out and it was required to point to the OS5.1 sdk in order to get ANEs to work.
    I had been specifying the sdk ever since, since it had been working for me, even though it was no longer needed.
    I just tried removing that and letting AIR take care of using the right SDK and it seems to have solved my screen rotation issue!
    Thank you so much for that!
    I do have a lot of splash screens. Again I think this was left over from when I started using AIR back in 2011. At that point in order to get the splash screens working correctly I ended up having to add all the different versions. However, I'd love to get rid of most of them as they bloat my app size. I'll try removing most of them and do some testing to ensure everything works fine now without them. Although I suspect I should still also need the Default@2x~ipad.png
    Thanks again for your help!
    Craig.

  • 1/13/2015 - Release - AIR 16 Runtime and SDK

    Today we're pleased to announce that the next version of AIR is available for immediate download.  In addition to important bug and security fixes AIR 16 now contains support for iOS 64-bit applications along with significant Stage3D improvements!
    Below are some of the key features and benefits of AIR 16.  Please see our release notes for full details.
    New Features:
    iOS 64-bit Support
    As many of you are aware, Apple has recently changed their iOS requirements to enforce 64-bit compatibility.  We’re pleased to announce that the AIR 16 SDK can now be used to generate universal IPA binaries, which will run on both 32bit and 64bit iOS devices.  Going forward, every IPA generated using AIR SDK 16 and above will be a universal binary and there is no change required in the packaging commands for this support.
    Please note that support for creating universal IPA binaries will only be available in the new compiler.  The legacy compiler is not (and will not be) compatible with iOS 64-bit.  Because of this, it will be removed with version 16 of the AIR SDK.  To ensure that Adobe as well as third party tools are able to work with this AIR SDK, the -useLegacyAOT option will continue to exist, but will be internally mapped to the new compiler.
    With this change, any ANE that gets packaged in the application should contain the universal native libraries. Failing to do so will result in “Apple App Store allows only universal applications. <binary name> is not a universal binary. Please change build settings in Xcode project to "Standard Architecture" to create universal library/framework” error while packaging the ipa.
    To learn more about the improved packaging engine, please read Faster Compiling with AIR for iOS.
    If you encounter packaging or runtime issues, please report them to us over at http://bugbase.adobe.com. Please provide detailed steps to reproduce along with sample projects. If you'd like to keep your code private, please feel free to email attachments along with your bug number to [email protected].
    Stage3D Wireframe Mode Support
    To help designers and developers create robust and efficient 3D content, we've added Wireframe support into AIR desktop. This option can be changed by setting Context3D's setFillMode() to "wireframe" or "solid".
    Stage3D - Standard Constrained Profile
    In version 14 of the Runtime we added the new Standard profile to desktop systems.  In Version 15 we expanded that to mobile devices in AIR.  In Flash Player 16 we've added a new Standard Constrained profile.  Like Baseline Constrained, Standard Constrained targets older and lower powered GPUs on both desktop and mobile devices.  While Standard profile reached ~21% of iOS devices, Standard Constrained can now reach more than 85%.  Developers can access this by using the new STANDARD_CONSTRAINED constant in Context3DProfile.  The chart below breaks down the differences between the different profiles that are available.
    Fixed Issues:
    [iPhone 6 Plus] Wrong screen size and dpi is returned through the runtime APIs. (3829474)
    [iOS] [New fast packager] Some applications compiled with older ActionScript compiler won’t work with new fast packaging engine but when rebuild again with latest ActionScript compiler apps work fine. (3837665)
    Geolocation services are not working (3916071)
    [iOS8, iPhone] Application hangs on returning back to stage after importing an image from gallery. (3912961)
    An error is thrown with D.eval library (3857582)
    [AIR Desktop]AIR Runtime crashes when using worker feature in a complex application.(3841682)
    Multiple security and stability fixes
    Known Issues:
    [iOS]Unable to install the application on iOS Simulator after updating iOS SDK and iPhone simulator with 7.1. (3833912)
    [iOS8, iPad] Application hangs on returning back to stage after importing an image from gallery on iPad. (3916940)
    [iOS] App Screen does not render properly when device is rotated to upside down position. (3916521)
    [iOS] Landscape launch image twitches to portrait when aspectRatio is set to landscape mode in application.xml (3916056)
    [Android] StageText not visible after screen rotation. (3821523)
    [iOS iPhone 6 Plus] iPad Launch image is displayed on iPhone 6 Plus in standard display mode. (3836781)
    Download Locations:
    AIR 16 runtime for Windows: 16.0.0.245 Runtime Download
    AIR 16 runtime for Macintosh: 16.0.0.245 Runtime Download
    AIR 16 SDK & Compiler for Windows: 16.0.0.272 SDK & Compiler Download
    AIR 16 SDK & Compiler for Macintosh: 16.0.0.272 SDK & Compiler Download
    Note: To provide all the all the necessary tools for our developers in one place and avoid having to download multiple components, we are packaging Adobe AIR 16 SDK and ActionScript Compiler 2.0 in a single SDK called “Adobe AIR 16 SDK & Compiler”.
    AIR SDK 16 (Compatible with Flex) for Windows: 16.0.0.272 SDK Windows Download
    AIR SDK 16 (Compatible with Flex) for Macintosh: 16.0.0.272 SDK Macintosh Download
    Previous versions of the AIR runtime and SDK can be found on the Archived AIR SDK and Runtimes page

    Sometimes the release version has a later build number than the last beta we received, which in a way can be even worse than if the build is the same. The thing that has caused some confusion is that a few posts here have been answered with "we've fixed that and it will be in the next build", and the next build turned out to be the same as the previous build.
    So, I think the truth is that those things are fixed in the next build that appears on labs, and the release one doesn't count as a new beta build. I don't know when the next labs build will be.

  • BlazeDS and Flex Client Deployed on Different Servers

    Hi, I setup a BlazeDS AMF endpoint on a different server from the server where my Flex app is deployed. I get the following error from my Flex app when trying to use this endpoint:
       faultCode: Client.Error.MessageSend
       faultDetail: Channel.Security.Error error Error #2048 url: 'http://cafrfd1y5css50.itsdo.abc.com:7000/sfaflexservice/amf'
       faultString: Send failed
       rootCause:
           [ChannelFaultEvent
            faultCode="Channel.Security.Error"
            faultString="error"
            faultDetail="Error #2048 url: 'http://cafrfd1y5css50.itsdo.abc.com:7000/sfaflexservice/amf'"
            channelId="my-amf"
            type="channelFault"
            bubbles=false
            cancelable=false
            eventPhase=2]
    Btw, this setup works fine when my Flex app runs on AIR or as a Flex app (in a browser) from Flex Builder.
    This looks like a crossdomain policy issue, so I setup a crossdomain.xml file on the BlazeDS server. When I point my browser to http://cafrfd1y5css50.itsdo.abc.com:7000/crossdomain.xml, I see the following:
        <?xml version="1.0" encoding="UTF-8" ?>
        <cross-domain-policy>
           <allow-access-from domain="*.abc.com" />
        </cross-domain-policy>
    Looks good, but I get the same error...
    So I monitored the interaction with Fiddler to see if the crossdomain.xml file is loaded. It is. When the service is activated, I see the following GET command in Fiddler:
         GET /crossdomain.xml HTTP/1.1
         Host: cafrfd1y5css50.itsdo.abc.com:7000
    And the response contains the contents of the crossdomain.xml file, so I don't know what's going on.
    My configuration is:
    -- Browser: IE7 or FireFox v3.5 with Flash Player v10.
    -- Flex app uses the 3.4 SDK and is deployed on a Tomcat v6 server.
    -- BlazeDS server is WebLogic v9.
    -- Endpoint definition from services-config.xml on the BlazeDS server is:
       <channel-definition id="my-amf" class="mx.messaging.channels.AMFChannel">
         <endpoint url="http://{server.name}:{server.port}/{context.root}/messagebroker/amf" class="flex.messaging.endpoints.AMFEndpoint"/>
       </channel-definition>
    -- Endpoint in the Flex app is defined as follows:
       <channel alias="FlexBean">
          <channel_def>my-amf</channel_def>
          <endpoint>http://cafrfd1y5css50.itsdo.abc.com:7000/sfaflexservice/amf</endpoint>
          <destination>FlexService</destination>
       </channel>
    Any ideas would be much appreciated...
    thanks,
    matt

    Thanks for the reply, Alex.
    I tried setting the domain in the crossdomain policy file to "*", but I got the same error, so I turned on client side logging. The error in the log was:
    Error: [strict] Ignoring policy file at http://cafrfd1y5css50.itsdo.abc.com:7000/crossdomain.xml due to missing Content-Type.
    See http://www.adobe.com/go/strict_policy_files to fix this problem.
    Using Fiddler, I checked the content-type that WebLogic was using for crossdomain.xml. Much to my surprise, there wasn't a content-type in the response, only content-length. So in the web.xml file for this application, I added the following:
    <mime-mapping>
        <extension>xml</extension>
        <mime-type>text/xml</mime-type>
    </mime-mapping>
    Now, the crossdomain.xml file is served with a content-type of "text/xml", and the call to the BlazeDS endpoint works.
    Thanks for steering me in the right direction, Alex.
    cheers!
    matt

  • AIR, Fonts, CS4 and the security sandbox

    I have no idea why embedding fonts in CS4 using library->new font includes every european character EXCEPT polish. You have german, french, spanish, norwegian, but not polish. Well, since embedding a font from Flash is the only way to use bitmap fonts in Flex, I had to create a library of external font files, one SWF per font size and style. Such an SWF exposes several functions, such as returning a ready to use pre-formatted textfield, returning the font name (Such as Tahoma) and the font name you actually need to use (such as Tahoma_13pt_st).
    I thought I'd need an AIR application to parse through all the fonts (and there are quite a few) extract the neccesary data, such as font size, name and so on and generate an XML file, so that I can load fonts at dynamic.
    The first problem I encountered was the security sandbox. A possible solution was to use the loaderInfo.childSandboxBridge. That approach didn't work however, as I was generating plain SWF files from flash CS4. childSandboxBridge is an AIR property, so I had to create an AIR file and try to set the bridge property to a simple number. So I did, but it gave me a
    SecurityError: Error #3206: Caller app:/TahomaBold13.swf cannot set LoaderInfo property childSandboxBridge.
    Weird. Well, I reverted the file to plain CS4 FPL10 SWF and decided to try another approach. I first loaded the SWF as a FileStream, then put the bytes into Loader.loadBytes. That should take care of security. And it did, however it created another problem.
    The font library relies on being able to enumerate the embeded fonts. The SWF's constructor has a function that enumerates all fonts and isolates the font embeded in the SWF, and then extracts it's properties. When launching the SWF by itself, or loading it from another CS4 FPL10 SWF it launches perfectly and enumerates the fonts as it should. However when the SWF is executed from inside AIR, the constructor located in the font file, as well as a function called from the main application upon executing enumerateFonts(false) both give an empty array. Which is quite weird really, as the loaded SWF contains an input TextField with embedded fonts. And I can edit and type stuff in that textfield, even while it's rotated.
    I thought this might be an issue of a different flash player version, but I tried to target AIR 1.5 and flash 9, neither worked and both returned no embeded fonts.
    Here's the entire source of the mxml air app
    <?xml version="1.0" encoding="utf-8"?>
    <mx:WindowedApplication xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute">
         <mx:Panel x="0" y="0" width="100%" height="100%" layout="absolute" title="M2C Studio Font Parser Utility">
              <mx:VBox x="0" y="0" width="100%" height="100%" paddingRight="10" paddingLeft="10" paddingTop="10" paddingBottom="0">     
                   <mx:HBox x="10" y="10" width="100%" height="95%">
                        <mx:VBox width="50%" height="100%">
                             <mx:Label text="Select font directory from filelist below"/>
                             <mx:FileSystemTree width="100%" height="50%" id="fileTree"/>
                             <mx:HRule width="100%"/>
                             <mx:Label text="Fonts list"/>
                             <mx:Text width="100%" height="50%" id="fontlist"/>
                        </mx:VBox>
                        <mx:VRule height="100%"/>
                        <mx:VBox width="50%" height="100%">
                             <mx:Label text="XML Output"/>
                             <mx:TextArea width="100%" height="50%" backgroundColor="#ECE9E9"/>
                             <mx:Canvas width="100%" height="50%" id="canv">
                             </mx:Canvas>
                        </mx:VBox>
                   </mx:HBox>
                   <mx:Button label="Generate XML from directory" width="100%" click="handlePress();"/>
              </mx:VBox>
         </mx:Panel>
         <mx:Script>
        <![CDATA[
             import flash.utils.setInterval;
             import com.m2cstudio.archont.utility.fonts.FontLibraryItem;
             import com.m2cstudio.archont.utility.fonts.IFontLibraryItem;
             import mx.accessibility.AlertAccImpl;
                 import mx.controls.*;
                import mx.events.*;
                import mx.controls.Alert;
                var rx:RegExp = /^.*\.swf$/;
                function handlePress():void
                     // This also throws an error
                     //Security.allowDomain("*");
                     var file:File = fileTree.selectedItem as File;
                     var aLoad:Array = new Array();                 
                     if(!file)
                          Alert.show("You must select a folder", "Error");
                          return;
                     } else if(!file.isDirectory) {
                          Alert.show("You must select a folder, not a file", "Error");
                          return;
                     var aList:Array = file.getDirectoryListing();
                     for each (var fil:File in aList)
                          if(!fil.isDirectory)
                               if(fil.nativePath.match(rx))
                                    // Is swf
                                    var fs:FileStream = new FileStream();
                                    fs.addEventListener(Event.COMPLETE, handleFileStreamLoaded);
                                    fs.openAsync(fil, FileMode.READ);                       
                function handleFileStreamLoaded(e:Event):void
                     var fs:FileStream = e.target as FileStream;
                     var ld:Loader = new Loader();
                     var lc:LoaderContext = new LoaderContext();
                     var ba:ByteArray = new ByteArray();
                     lc.allowLoadBytesCodeExecution = true;
                     fs.readBytes(ba);
                     fs.close();
                     ld.contentLoaderInfo.addEventListener(Event.COMPLETE, handleLoaded);
                     ld.loadBytes(ba, lc);        
                function handleLoaded(e:Event):void
                        var cnt:FontLibraryItem = e.target.content as FontLibraryItem;
                        cnt.rotation=10; // Rotation, just to be sure it's not using system fonts
                        canv.rawChildren.addChild(cnt);
                        // This doesn't output anything - neither the main app nor the loaded SWF 'see' any embedded fonts, even though the later uses them!
                        for each (var f:Font in Font.enumerateFonts(false))
                             Alert.show(f.fontName, f.fontType);     
                        // This should retrieve the appropriate values but throws an error because the SWF can't grab the Font definition
                        //Alert.show(cnt.getFontName(), cnt.getFontStyle());               
        ]]>
        </mx:Script>
    </mx:WindowedApplication>
    Here's a screen of what it actually looks like when compiled:
    Here's the source of the font library item. Note that the SWF contains only 2 items. A TextField named font with embeded characters and a boolean bt on the first frame.
    package com.m2cstudio.archont.utility.fonts
         import flash.display.MovieClip;
         import flash.text.*;
         public dynamic class FontLibraryItem extends MovieClip implements IFontLibraryItem
              private var txtFont:TextField;
              private var fFont:Font;
              public function FontLibraryItem()
                   super();
                             // Causes an error - see below why
                   //init();
              public function getFontName():String
                   return fFont.fontName;
              public function getFontType():String
                   return fFont.fontType;
              public function getFontStyle():String
                   return fFont.fontStyle;
              public function getBitmapText():Boolean
                   return this.bt;
              public function getBitmapTextSize():uint
                   if(this.bt) {
                        return Number(txtFont.defaultTextFormat.size);
                   } else {
                        return 0;
              public function hasGlyphs(glyphs:String):Boolean
                   return fFont.hasGlyphs(glyphs);
              public function createTextField():TextField
                   var tf:TextField = new TextField();
                   tf.embedFonts = true;
                   tf.defaultTextFormat = (this.font as TextField).defaultTextFormat;
                   return tf;
              public function init():void
                   if(this.font) {
                        txtFont = this.font;
                   } else {
                        throw new Error("Document must contain a textfield named 'font' with the embedded font");
                   var fArr:Array = Font.enumerateFonts(false);
                   if(fArr.length==0) {
                        throw new Error("Document does not contain any embeded fonts.");
                   } else if (fArr.length>1) {
                        throw new Error("Document must contain not more than one embedded font");
                   fFont = fArr[0];
    I'm hoping some AIR specialists will take a look at this. Frankly I'm stumped. Font support in Flash was always black magic, more or less, so I can only hope this is an issue that can be solved.
    Just tell me and I'll provide more source or sceenshots.
    Cheers,
    -archont

    I even tried porting the code to Gumbo and running it there - still, no fonts are being enumerated.
    If you're too lazy to read the whole above post, here's the problem in one sentence
    An SWF that contains a textfield with embedded fonts, when launched by itself succeeds to return the embedded font using Font.enumerateFonts(false), however when loaded using Loader.loadBytes into AIR, it fails to see those fonts even though the textfield in it is displayed and editable.
    How do I make the loaded child application and AIR see the embedded font?

  • Air app Crash and reboot needed

    Hello everyone.
    I'm in the middle/end of developing a Desktop application.
    Sometimes it will crash when a unsuspected error occurs, on my system (Mac OS 10.8.2) most of the time when i open the app again it works fine.
    But some crashes are more severe, then my Mac has to reboot in order for the application to work proper again.
    A second Mac in my work place, running OS 10.7.5, has worst problems with the crash. After a reboot the problem persists.
    The application uses 2 workers wich do the more CPU intensive tasks, encoding Bitmapdata to PNG files (5 to 10+ bitmapdata instances) and parsing PSD files to individual Bitmap instances. Strangely it never crashes on 1 of these tasks.
    I compile the app with FB 4.6 and Flex SDK 4.6.0 with a Air 3.4 overlay. Runtime version 11.4.4.02.285.
    Does any of this sound familiar to anyone?
    thanx.
    Max troost
    DutchGiraffe
    ps. it's very hard to reproduce. when and if, i will submit a full crash report.
    CRASH Report.
    Process:         HowdyCardEditor [331]
    Path:            /Applications/HowdyCardEditor.app/Contents/MacOS/HowdyCardEditor
    Identifier:      com.dutchgiraffe.howdy.cardeditor
    Version:         0.3.7 (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd [153]
    Date/Time:       2012-11-29 15:55:08.031 +0100
    OS Version:      Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:          1616985 sec
    Crashes Since Last Report:           15
    Per-App Interval Since Last Report:  952 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      80FB70FA-6C91-4655-99CD-0D7140E689E1
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000004
    VM Regions Near 0x4:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/HowdyCardEditor.app/Contents/MacOS/HowdyCardEditor
        __TEXT                 0000000000001000-0000000000007000 [   24K] r-x/rwx SM=COW  /Applications/HowdyCardEditor.app/Contents/MacOS/HowdyCardEditor
    Application Specific Information:
    objc[331]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.AIR                           0x01257307 0x1000000 + 2454279
    1   com.adobe.AIR                           0x012573be 0x1000000 + 2454462
    2   com.adobe.AIR                           0x0134da1b 0x1000000 + 3463707
    3   com.adobe.AIR                           0x01344e4a 0x1000000 + 3427914
    4   com.adobe.AIR                           0x01348ee1 0x1000000 + 3444449
    5   com.adobe.AIR                           0x01349941 0x1000000 + 3447105
    6   com.adobe.AIR                           0x01349ba2 0x1000000 + 3447714
    7   com.adobe.AIR                           0x0134a33e 0x1000000 + 3449662
    8   com.adobe.AIR                           0x0134a69b 0x1000000 + 3450523
    9   com.adobe.AIR                           0x015b36dd 0x1000000 + 5977821
    10  com.adobe.AIR                           0x01459c50 0x1000000 + 4562000
    11  com.apple.Foundation                    0x9bf66792 __NSFireDelayedPerform + 615
    12  com.apple.CoreFoundation                0x9bcb12a6 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22
    13  com.apple.CoreFoundation                0x9bcb0c37 __CFRunLoopDoTimer + 743
    14  com.apple.CoreFoundation                0x9bc8fcd0 __CFRunLoopRun + 1888
    15  com.apple.CoreFoundation                0x9bc8f1dc CFRunLoopRunSpecific + 332
    16  com.apple.CoreFoundation                0x9bc8f088 CFRunLoopRunInMode + 120
    17  com.apple.HIToolbox                     0x9486e543 RunCurrentEventLoopInMode + 318
    18  com.apple.HIToolbox                     0x948757d6 ReceiveNextEventCommon + 168
    19  com.apple.HIToolbox                     0x9487571a BlockUntilNextEventMatchingListInMode + 88
    20  com.apple.AppKit                        0x92192ee8 _DPSNextEvent + 678
    21  com.apple.AppKit                        0x92192752 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    22  com.apple.AppKit                        0x9218eac1 -[NSApplication run] + 911
    23  com.adobe.AIR                           0x0100922a 0x1000000 + 37418
    24  com.adobe.AIR                           0x01009570 0x1000000 + 38256
    25  com.apple.CoreFoundation                0x9bceed11 -[NSObject performSelector:withObject:] + 65
    26  com.dutchgiraffe.howdy.cardeditor          0x00002f93 RuntimeAppMain(char const*, int) + 371
    27  com.dutchgiraffe.howdy.cardeditor          0x000025c1 start + 53
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9621490a kevent + 10
    1   libdispatch.dylib                       0x97dc2e04 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x97dc1853 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x9621383e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9c356e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9c30742c pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                           0x015d9e1b 0x1000000 + 6135323
    4   com.adobe.AIR                           0x01410490 0x1000000 + 4261008
    5   com.adobe.AIR                           0x015d9f35 0x1000000 + 6135605
    6   com.adobe.AIR                           0x015d9faf 0x1000000 + 6135727
    7   com.adobe.AIR                           0x015da04a 0x1000000 + 6135882
    8   libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x9621383e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9c356e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9c30742c pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                           0x015d9e1b 0x1000000 + 6135323
    4   com.adobe.AIR                           0x01410490 0x1000000 + 4261008
    5   com.adobe.AIR                           0x015d9f35 0x1000000 + 6135605
    6   com.adobe.AIR                           0x015d9faf 0x1000000 + 6135727
    7   com.adobe.AIR                           0x015da04a 0x1000000 + 6135882
    8   libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x9621383e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9c356e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9c30742c pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                           0x015d9e1b 0x1000000 + 6135323
    4   com.adobe.AIR                           0x01410490 0x1000000 + 4261008
    5   com.adobe.AIR                           0x015d9f35 0x1000000 + 6135605
    6   com.adobe.AIR                           0x015d9faf 0x1000000 + 6135727
    7   com.adobe.AIR                           0x015da04a 0x1000000 + 6135882
    8   libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x9621383e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9c356e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9c30742c pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                           0x015d9e1b 0x1000000 + 6135323
    4   com.adobe.AIR                           0x01410490 0x1000000 + 4261008
    5   com.adobe.AIR                           0x015d9f35 0x1000000 + 6135605
    6   com.adobe.AIR                           0x015d9faf 0x1000000 + 6135727
    7   com.adobe.AIR                           0x015da04a 0x1000000 + 6135882
    8   libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x9621383e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9c356e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9c3073e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.adobe.AIR                           0x015d9e47 0x1000000 + 6135367
    4   com.adobe.AIR                           0x01623214 0x1000000 + 6435348
    5   com.adobe.AIR                           0x015d9f35 0x1000000 + 6135605
    6   com.adobe.AIR                           0x015d9faf 0x1000000 + 6135727
    7   com.adobe.AIR                           0x015da04a 0x1000000 + 6135882
    8   libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x9621383e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9c356e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9c3073e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.adobe.AIR                           0x015d9e47 0x1000000 + 6135367
    4   com.adobe.AIR                           0x017b03ac 0x1000000 + 8061868
    5   com.adobe.AIR                           0x015d9f35 0x1000000 + 6135605
    6   com.adobe.AIR                           0x015d9faf 0x1000000 + 6135727
    7   com.adobe.AIR                           0x015da04a 0x1000000 + 6135882
    8   libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 8:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x96213b42 __select + 10
    1   com.apple.CoreFoundation                0x9bcdde15 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x96211c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x962111f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9bc869da __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x9bc8fb04 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9bc8f1dc CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x9bc9ff01 CFRunLoopRun + 129
    6   com.adobe.AIR                           0x0139ec33 0x1000000 + 3796019
    7   com.adobe.AIR                           0x013a004e 0x1000000 + 3801166
    8   com.adobe.AIR                           0x0133ac27 0x1000000 + 3386407
    9   com.adobe.AIR                           0x01337da3 0x1000000 + 3374499
    10  com.adobe.AIR                           0x01337313 0x1000000 + 3371795
    11  libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    12  libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x9621383e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9c356e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9c3073e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.adobe.AIR                           0x015d9e47 0x1000000 + 6135367
    4   com.adobe.AIR                           0x017b03ac 0x1000000 + 8061868
    5   com.adobe.AIR                           0x015d9f35 0x1000000 + 6135605
    6   com.adobe.AIR                           0x015d9faf 0x1000000 + 6135727
    7   com.adobe.AIR                           0x015da04a 0x1000000 + 6135882
    8   libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x9621402e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9c354ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9c3566fe start_wqthread + 30
    Thread 12:
    0   libsystem_kernel.dylib                  0x96213bb2 __semwait_signal + 10
    1   libsystem_c.dylib                       0x9c3077b9 nanosleep$UNIX2003 + 187
    2   com.adobe.AIR                           0x015d9ec6 0x1000000 + 6135494
    3   com.adobe.AIR                           0x015da13a 0x1000000 + 6136122
    4   com.adobe.AIR                           0x017c996a 0x1000000 + 8165738
    5   com.adobe.AIR                           0x01572614 0x1000000 + 5711380
    6   com.adobe.AIR                           0x013a0255 0x1000000 + 3801685
    7   com.adobe.AIR                           0x0133ac27 0x1000000 + 3386407
    8   com.adobe.AIR                           0x01337da3 0x1000000 + 3374499
    9   com.adobe.AIR                           0x01337313 0x1000000 + 3371795
    10  libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x9621402e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9c354ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9c3566fe start_wqthread + 30
    Thread 14:
    0   libsystem_kernel.dylib                  0x9621383e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9c356e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9c30742c pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                           0x0144e506 0x1000000 + 4515078
    4   com.adobe.AIR                           0x014de6cc 0x1000000 + 5105356
    5   com.adobe.AIR                           0x014deb06 0x1000000 + 5106438
    6   com.adobe.AIR                           0x015d9f35 0x1000000 + 6135605
    7   com.adobe.AIR                           0x015d9faf 0x1000000 + 6135727
    8   com.adobe.AIR                           0x015da04a 0x1000000 + 6135882
    9   libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x0125739e  ecx: 0x00000000  edx: 0x0b41e830
      edi: 0x0b41e834  esi: 0x0fe97244  ebp: 0xbfffe108  esp: 0xbfffe0f0
       ss: 0x00000023  efl: 0x00010206  eip: 0x01257307   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000004
    Logical CPU: 6
    Binary Images:
        0x1000 -     0x6ff7 +com.dutchgiraffe.howdy.cardeditor (0.3.7 - ???) <85493E5F-F8F0-E60D-56C2-90CAB18A2260> /Applications/HowdyCardEditor.app/Contents/MacOS/HowdyCardEditor
       0xb8000 -    0xbcffb  com.apple.audio.AudioIPCPlugIn (1.2.3 - 1.2.3) <D4092467-5BBE-3ED6-A493-7DB1EE8E6686> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
       0xc1000 -    0xc6fff  com.apple.audio.AppleHDAHALPlugIn (2.2.5 - 2.2.5a5) <BAD1E0E6-10E6-342C-BEB8-B1706F0CE2CF> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
      0x7a8000 -   0x7d8ffb  com.apple.security.csparser (3.0 - 55148.6) <D436F40C-DB1C-350A-80BE-2B8A4D2FD53F> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/MacOS/cspa rser
    0x1000000 -  0x2278fd3 +com.adobe.AIR (??? - 3.4.0.2710) <935BC632-7019-A5A2-3FDD-250065E0D0B9> /Applications/HowdyCardEditor.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR
    0x25e8000 -  0x25f0ffb  com.apple.URLMount.AFPPlugin (4.0.1 - 4.0.1) <C4ADC280-659B-3528-BC24-37932734B9F3> /System/Library/Filesystems/NetFSPlugins/afp.bundle/Contents/MacOS/afp
    0x25f7000 -  0x25f9fff  libCoreFSCache.dylib (??? - ???) <9E7CBE71-566C-36E9-A49F-C5FF6956D76F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x25fd000 -  0x25fdff7 +cl_kernels (??? - ???) <0C1BC301-D67B-4481-9D53-80B3D101C209> cl_kernels
    0x4fd8000 -  0x4fe1fff  com.apple.AppleSRP (1.0 - 1) <F63D1099-7DB1-30D1-ABE2-4A07B8E2B4BC> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x4ffb000 -  0x4ffcff1 +cl_kernels (??? - ???) <5F5DC684-6200-4803-BF6C-E0B42CA978EF> cl_kernels
    0x7b4c000 -  0x7b55ff6  libcldcpuengine.dylib (2.0.19 - compatibility 1.0.0) <95A88DC8-E5EE-363F-9275-214D5AB7A2EF> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0xa462000 -  0xa4abff7  com.apple.AppleShareClientCore (2.5.1 - 2.5.1) <E69CC35D-A3D2-3209-967A-8817D1498B9E> /System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShareClientCore
    0xa4cf000 -  0xa4d0ff5 +cl_kernels (??? - ???) <F1B756D2-DB42-452A-956E-D395FA8E192A> cl_kernels
    0xb6f8000 -  0xb7a0ff7  unorm8_bgra.dylib (2.0.19 - compatibility 1.0.0) <99A967D2-5577-396B-BD11-56EAFF962AB2> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra.dylib
    0xf357000 -  0xf3ffff7  unorm8_argb.dylib (2.0.19 - compatibility 1.0.0) <1C5CBAF6-9739-340F-9CD6-10D08FEF554F> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_argb.dylib
    0x8fec2000 - 0x8fef4aa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x9001e000 - 0x90044ffb  com.apple.quartzfilters (1.7.0 - 1.7.0) <64AB163E-7E91-3028-8730-BE11BC1F5237> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x9005e000 - 0x90062fff  libGIF.dylib (??? - ???) <2ADFED97-2228-343D-9A53-207CBFDE7984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x90265000 - 0x9028fff1  com.apple.CoreServicesInternal (113.19 - 113.19) <F7A309D1-DCB4-38DE-8248-E16D0182AA6C> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x90290000 - 0x902c7fef  com.apple.DebugSymbols (2.1 - 87) <EB951B78-31A5-379F-AFA1-B5C9A7BB3D23> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x9051c000 - 0x9051fff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x90520000 - 0x90561ff9  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <9FD420FB-7984-3A07-8914-BB19E687D38B> /usr/lib/libcurl.4.dylib
    0x90562000 - 0x9058fff9  com.apple.securityinterface (5.0 - 55022.6) <0FA3E84B-B5FF-3A58-A408-46280982CACC> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x90670000 - 0x90678fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x906db000 - 0x9072dffb  com.apple.CoreMediaIO (216.0 - 3199.8) <A079E576-64FD-3069-846E-F3B67AF28E15> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x9072e000 - 0x907abfff  com.apple.PDFKit (2.6.4 - 2.6.4) <F2B635FC-EDD0-3D80-AB43-F78CB883623A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x907ae000 - 0x907b4ffb  com.apple.print.framework.Print (7.4 - 247.3) <CB075EEE-FA1F-345C-A1B5-1AB266FC73A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x907b5000 - 0x907c5fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x907c6000 - 0x907c6fff  com.apple.Cocoa (6.6 - ???) <5FAFE73E-6AF5-3D09-9191-0BDC8C6875CB> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x907c7000 - 0x90863fff  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
    0x90864000 - 0x90864fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <7EFAD88C-AFBC-3D48-BE14-60B8EACC68D7> /usr/lib/system/libdnsinfo.dylib
    0x90865000 - 0x90878ff8  com.apple.MultitouchSupport.framework (231.4 - 231.4) <083F7787-4C3B-31DA-B5BB-1993D9A9723D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x91618000 - 0x916a5fe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x916a6000 - 0x916f7ff9  com.apple.ScalableUserInterface (1.0 - 1) <3C39DF4D-5CAE-373A-BE08-8CD16E514337> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x916f8000 - 0x91749ff9  com.apple.QuickLookFramework (3.2 - 500.18) <CF3EF345-EA3E-3C2D-B56D-E4433326254A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9174a000 - 0x91758fff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x91759000 - 0x91764ffe  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <B63F5D07-93B3-3F02-BFB7-472B4ED3521F> /usr/lib/libbz2.1.0.dylib
    0x91765000 - 0x91883fec  com.apple.vImage (5.1 - 5.1) <7757F253-B281-3612-89D4-F2B04061CBE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x91884000 - 0x9188fffc  com.apple.NetAuth (3.1 - 3.1) <CD89526E-4FF6-3BB3-A94E-832D4504AB1C> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x91890000 - 0x9191affb  com.apple.SearchKit (1.4.0 - 1.4.0) <CF074082-64AB-3A1F-831E-582DF1667827> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x9195b000 - 0x919e2fff  com.apple.print.framework.PrintCore (7.1 - 366.3) <EEC03CAB-7F79-3931-87FE-4DF0B767BF47> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x919e5000 - 0x91a10fff  com.apple.GSS (2.2 - 2.0) <2C468B23-FA87-30B5-B9A6-8C5D1373AA30> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x91a11000 - 0x91a80fff  com.apple.Heimdal (2.2 - 2.0) <2E1B8779-36D4-3C62-A67E-0034D77D7707> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x91a81000 - 0x91a8fff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x91a9b000 - 0x91af9ff7  com.apple.coreui (1.2.2 - 165.11) <340B0B83-1407-3AB4-BCAB-505C29303EE2> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91afa000 - 0x91b16ff1  libPng.dylib (??? - ???) <F084226B-14F0-36C0-B5EC-22C78406D2B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x91b17000 - 0x91b34fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
    0x91b35000 - 0x91b36fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x91b37000 - 0x91b39ff9  com.apple.securityhi (4.0 - 1) <39157216-5E43-392A-AE3F-716726D8C8BF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x91bcb000 - 0x91bd3ff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x91bd4000 - 0x91e81fff  com.apple.JavaScriptCore (7534.57 - 7534.57.3) <5AE5C3B8-D807-356B-80D9-4D0A706A10D1> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x91e82000 - 0x91eb0fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <30189C33-6ADD-3142-83F3-6114B1FC152E> /usr/lib/libSystem.B.dylib
    0x91eb1000 - 0x91fa1ff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x91fa2000 - 0x92065fff  com.apple.CoreServices.OSServices (478.49 - 478.49) <5AF33605-C893-3F60-89CF-1BC9C0BC35AF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x92066000 - 0x9206dff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
    0x9206e000 - 0x92072ff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x9208e000 - 0x9211bff7  com.apple.CoreText (220.22.0 - ???) <EA7210A7-DECC-3F76-8A66-D4E41859B3C6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x92189000 - 0x92c1eff6  com.apple.AppKit (6.7.5 - 1138.51) <B9D3DCA0-9765-354E-9730-75A45A97DDFD> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92c1f000 - 0x92c84ff7  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x92d38000 - 0x92d43ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <D6E17FD4-ECA0-3EEE-BFC5-F6A42A21AB5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x92d44000 - 0x92d96ff7  libFontRegistry.dylib (??? - ???) <C2B84661-A62D-3FFF-8D8C-BC697E9BDF4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x92d97000 - 0x92de6ffb  com.apple.AppleVAFramework (5.0.16 - 5.0.16) <1188E7AB-76FE-343F-9108-30CD67E5A37B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x92de7000 - 0x92de9ff7  libdyld.dylib (195.5.0 - compatibility 1.0.0) <52F7B44C-1B43-3B7B-9C9E-6410D8682935> /usr/lib/system/libdyld.dylib
    0x92dea000 - 0x92e81ff3  com.apple.securityfoundation (5.0 - 55116) <EB53CEF7-4836-39FD-B012-6BC122ED4CE9> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x92e82000 - 0x930f6ff3  com.apple.CoreImage (7.99.1 - 1.0.1) <C4B2DD2A-8E45-31CD-9B25-2AC1CA252B14> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x930f7000 - 0x931d9fff  com.apple.backup.framework (1.3.5 - 1.3.5) <1FAE91F2-BCEF-387D-B5C4-412C464DA1BE> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x931da000 - 0x93255ffb  com.apple.ApplicationServices.ATS (317.12.0 - ???) <4D124B65-3D43-32E9-B296-3671347BB888> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x93256000 - 0x933b9fff  com.apple.QTKit (7.7.1 - 2339) <163FBDDD-0458-378F-84DD-CB0F603A259E> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x933ba000 - 0x9341cff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x9341d000 - 0x9344cff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x93455000 - 0x93495ff7  com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x93496000 - 0x93499ffd  libCoreVMClient.dylib (??? - ???) <B8F8916D-F12A-3D95-ABF3-999D57B7D581> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x9349a000 - 0x934fcffb  com.apple.datadetectorscore (3.0 - 179.4) <3A418498-C189-37A1-9B86-F0ECB33AD91C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x934fd000 - 0x9351fff8  com.apple.PerformanceAnalysis (1.11 - 11) <453463FF-7C42-3526-8C96-A9971EE07154> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x93658000 - 0x93658fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x93659000 - 0x93664ffb  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <A1764D2F-EB84-33DC-9ED5-CDA3B468FF3E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x93665000 - 0x93791ff9  com.apple.CFNetwork (520.5.1 - 520.5.1) <F3C606BF-6DCF-33CD-981B-7253C9E3113A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x93792000 - 0x93793fff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x93794000 - 0x937deff2  com.apple.Suggestions (1.1 - 85.1) <1057087C-AC51-3C3B-BECD-BF97426B2372> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
    0x937eb000 - 0x938fbfe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <34E1E3CC-7B6A-3B37-8D07-1258D11E16CB> /usr/lib/libsqlite3.dylib
    0x938fc000 - 0x93907fff  libkxld.dylib (??? - ???) <14E79D7A-B6C2-35C5-B56D-D343BEC2A106> /usr/lib/system/libkxld.dylib
    0x93908000 - 0x93922fff  com.apple.Kerberos (1.0 - 1) <D7920A1C-FEC4-3460-8DD0-D02491578CBB> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x93924000 - 0x9392cff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <BB0C7B49-600F-3551-A460-B7E36CA4C4A4> /usr/lib/system/libcopyfile.dylib
    0x9392d000 - 0x9392dff2  com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9392e000 - 0x939eeffb  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
    0x944a0000 - 0x944a0ff0  com.apple.ApplicationServices (41 - 41) <C48EF6B2-ABF9-35BD-A07A-A38EC0008294> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x944a1000 - 0x9477bff7  com.apple.RawCamera.bundle (4.00 - 658) <F72D5DF2-406B-3310-AC16-F0AB434237DE> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x94784000 - 0x94786ffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x9481d000 - 0x94826fff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x94827000 - 0x9486bff3  com.apple.framework.CoreWLAN (2.1.3 - 213.1) <8A99ADB8-4A3E-3B8E-A0E4-A39398C288EC> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x9486c000 - 0x94bb2ff3  com.apple.HIToolbox (1.9 - ???) <E5EA9EEF-3CCA-36A0-8688-DA2E64E2256C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x94bbe000 - 0x94c1bffb  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
    0x94c1c000 - 0x94cf2aab  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <2E272DCA-38A0-3530-BBF4-47AE678D20D4> /usr/lib/libobjc.A.dylib
    0x94cf3000 - 0x94d3bff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <68B92FEA-F754-3E7E-B5E6-D512E26144E7> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x94d3c000 - 0x94d49fff  com.apple.KerberosHelper (3.0 - 1.0) <0E16B080-3931-3D3E-A786-419C24B44B02> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosHelper
    0x94d4a000 - 0x94d50ffd  com.apple.CommerceCore (1.0 - 17) <E59CD307-58E2-35FD-9131-B38978799910> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x94d51000 - 0x94d59ff3  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <9E6135FF-C2B1-3BC9-A160-B32D71BFA77C> /usr/lib/system/liblaunch.dylib
    0x950cf000 - 0x95118ff7  libGLU.dylib (??? - ???) <9AF7AD51-16E3-3674-B60E-30EE499D7B46> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95119000 - 0x9511cffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x9511d000 - 0x95121ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <56256537-6538-3522-BCB6-2C79DA6AC8CD> /usr/lib/system/libcache.dylib
    0x95122000 - 0x95203ff7  com.apple.DiscRecording (6.0.4 - 6040.4.1) <08BADDAD-FA79-3872-9387-EEE2A9FAA2F0> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x95204000 - 0x9525fff3  com.apple.Symbolication (1.3 - 91) <4D12D2EC-5010-3958-A205-9A67E972C76A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x95260000 - 0x95261fff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x95271000 - 0x95341ffb  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <2092785C-795A-3CDF-A1B4-6C80BA3726DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x95342000 - 0x95365fff  com.apple.CoreVideo (1.7 - 70.3) <4234C11C-E8E9-309A-9465-27D6D7458895> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95366000 - 0x9537bfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x953b1000 - 0x953b5ff7  com.apple.OpenDirectory (10.7 - 146) <4986A382-8FEF-3392-8CE9-CF6A5EE4E365> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x953b6000 - 0x95685ffb  com.apple.security (7.0 - 55148.6) <8DF67BDD-C98F-3B7E-AC63-D468407FA82D> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95686000 - 0x95b62ff6  libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x95b63000 - 0x95d8effb  com.apple.QuartzComposer (5.0 - 236.10) <416993F4-2868-35FF-90DE-34C93D83574F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x95d8f000 - 0x95d92ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x95d93000 - 0x95e09fff  com.apple.Metadata (10.7.0 - 627.37) <F54AED70-95C5-3561-8C87-D9E5539E98A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x95e36000 - 0x95e3affd  IOSurface (??? - ???) <EDDBEE65-1EB8-33A7-9972-E361A3508234> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x95e3e000 - 0x9616dff7  com.apple.FinderKit (1.0.5 - 1.0.5) <5F2FB244-8734-31FA-A957-0F4B603E02BB> /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit
    0x9616e000 - 0x96171fff  com.apple.AppleSystemInfo (1.0 - 1) <0E02BA66-4EA6-3EA1-8D81-3D0DE36F1CE8> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x9617d000 - 0x9618dff7  libCRFSuite.dylib (??? - ???) <94E040D2-2769-359A-A21B-DB85FCB73BDC> /usr/lib/libCRFSuite.dylib
    0x961fb000 - 0x96219ff7  libsystem_kernel.dylib (1699.32.7 - compatibility 1.0.0) <79179F83-457A-3539-A76B-E960D2108109> /usr/lib/system/libsystem_kernel.dylib
    0x9621a000 - 0x9626affa  libTIFF.dylib (??? - ???) <CAD45E49-FD7C-37FA-A118-AEB526B90E67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x9628d000 - 0x9628dfff  com.apple.Carbon (153 - 153) <F996332A-390E-3337-A09E-A1E54004B567> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96295000 - 0x9637dfff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <1841196F-68B5-309F-8ED1-6714B1DFEC83> /usr/lib/libxml2.2.dylib
    0x9637e000 - 0x9639ffff  com.apple.framework.internetaccounts (1.2 - 3) <A93D14F6-DF12-3918-90E9-B73DD7B6456D> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/InternetAccounts
    0x963c5000 - 0x96402fef  libGLImage.dylib (??? - ???) <FC13D46F-69C4-3BA1-A5E8-52C2EC8B7D58> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x96414000 - 0x9641bfff  com.apple.agl (3.2.0 - AGL-3.2.0) <ED5A5B8A-0014-3897-951F-628391333256> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9641c000 - 0x96446ff0  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <5CAA1478-97E0-31EA-8F50-BF09D665DD84> /usr/lib/libpcre.0.dylib
    0x96447000 - 0x96451ff2  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/V ersions/A/CarbonSound
    0x96497000 - 0x964dbfff  com.apple.MediaKit (12 - 602) <6E429DD7-8829-37DE-94AF-940FB70F2FB9> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x964dc000 - 0x964f4fff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <A8CE15CF-2539-318A-910C-8789D45FFD69> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x964f7000 - 0x964fcff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <943213F3-CC9B-328E-8A6F-16D85C4274C7> /usr/lib/system/libmacho.dylib
    0x964fd000 - 0x96843fff  com.apple.MediaToolbox (1.0 - 705.94) <89D37021-C389-3CC5-A158-620ADCBD99EF> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x96844000 - 0x96859ff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <E5FCA336-7E47-343E-A82D-CCCA5BCD5929> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x9685a000 - 0x96881ff3  com.apple.framework.Apple80211 (7.4.1 - 741.1) <7F29673A-B030-34AF-B8CA-AB30DD63FFAB> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x96b91000 - 0x96c89ff7  libFontParser.dylib (??? - ???) <71B33EB1-27F8-3C68-B940-FC61A3CFE275> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x96c8a000 - 0x96cccff7  com.apple.CoreMedia (1.0 - 705.94) <10D5D25F-9BCB-3406-B737-23D9FDF2CC71> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x96ccd000 - 0x97359ff5  com.apple.CoreAUC (6.16.12 - 6.16.12) <9D51400F-B827-3BA7-87F5-954A1CDDAEA9> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9735a000 - 0x977cfff7  FaceCoreLight (1.4.7 - compatibility 1.0.0) <3E2BF587-5168-3FC5-9D8D-183A9C7C1DED> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x977d0000 - 0x977deff7  com.apple.AppleFSCompression (37 - 1.0) <E54AEE04-F1D2-3178-AF5B-5A2AED9CF884> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
    0x9790e000 - 0x9792aff5  com.apple.GenerationalStorage (1.0 - 126.1) <E622F823-7D98-3D13-9C3D-7EA482567394> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x9792b000 - 0x97ce6ffb  com.apple.SceneKit (125.3 - 125.8) <89008B87-87E7-3972-A274-30311497EE32> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    0x97ce7000 - 0x97ce7fff  libOpenScriptingUtil.dylib (??? - ???) <E4C22B65-9493-31D5-9D46-19BD70975587> /usr/lib/libOpenScriptingUtil.dylib
    0x97ce8000 - 0x97dbfff3  com.apple.avfoundation (2.0 - 180.50) <7B7FDF30-AC40-3715-A409-B5A27F7B5585> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x97dc0000 - 0x97dcefff  libdispatch.dylib (187.10.0 - compatibility 1.0.0) <1B857064-288D-3919-B81A-38E9F4D19B54> /usr/lib/system/libdispatch.dylib
    0x97dcf000 - 0x97eb2ff7  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <BD913D3B-388D-33AE-AA5E-4810C743C28F> /usr/lib/libcrypto.0.9.8.dylib
    0x97eb3000 - 0x97f1bfff  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <B24814AB-CA77-3B9D-8FAB-58C9B4FD3A16> /usr/lib/libc++.1.dylib
    0x97f1c000 - 0x97f1dff4  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <6DE3FDC7-0BE0-3791-B6F5-C15422A8AFB8> /usr/lib/system/libremovefile.dylib
    0x98202000 - 0x9820ffff  libGL.dylib (??? - ???) <A72F14F7-1836-34AB-9F08-67836CB966E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x98210000 - 0x98230ff7  com.apple.RemoteViewServices (1.5 - 44.2) <11C87337-FF29-3976-A230-6387D96563C5> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x9823d000 - 0x98244ff9  libsystem_dnssd.dylib (??? - ???) <EBEAF723-84F8-3544-8FB2-31B7771B50D0> /usr/lib/system/libsystem_dnssd.dylib
    0x98245000 - 0x98256fff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x98298000 - 0x9829cfff  com.apple.CommonPanels (1.2.5 - 94) <EA47550D-7DAF-30D9-91DB-1FB594CC8522> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x9829d000 - 0x98522fe3  com.apple.QuickTime (7.7.1 - 2339) <FC82F13B-1788-3766-8681-7A3B1EFAE02D> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x98536000 - 0x98549ffc  com.apple.FileSync.framework (6.0.1 - 502.2) <B79DAE4B-3B1E-32D4-8BEC-F2C034C00B68> /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    0x9854a000 - 0x9854affe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x9854b000 - 0x9894dff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x989e9000 - 0x989e9fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x989ea000 - 0x989ebff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <2F4B35B2-706C-3383-AA86-DABA409FAE45> /usr/lib/system/libunc.dylib
    0x989ec000 - 0x98a2fffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <6B35F203-5D72-335A-A4BC-CC89FEC0E14F> /usr/lib/system/libcommonCrypto.dylib
    0x98a30000 - 0x98ce2ff7  com.apple.AddressBook.framework (6.1.3 - 1091) <B8CC707C-6368-3CDD-BE38-D2335B7CC2DE> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x98e48000 - 0x98e5fff8  com.apple.CoreMediaAuthoring (2.0 - 891) <69D569FD-670C-3BD0-94BF-7A8954AA2953> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x98eb0000 - 0x98ebaff0  com.apple.DirectoryService.Framework (10.7 - 146) <59061A4B-D743-3A34-B142-7BE2472BBC2D> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x99757000 - 0x997aaff3  com.apple.ImageCaptureCore (3.1.0 - 3.1.0) <F7ACE42B-2F58-3642-9469-9CDCF31F0273> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x997ab000 - 0x997acff7  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <46980EC2-149D-3CF7-B29A-401FB89C275D> /usr/lib/system/libquarantine.dylib
    0x997ad000 - 0x998bcff7  com.apple.DesktopServices (1.6.5 - 1.6.5) <CEC069D7-37A3-3D25-A3BB-39DE99FDA46E> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x99904000 - 0x9993ffff  com.apple.bom (11.0 - 183) <8E3F690E-4D23-3379-828C-5AB0453B9226> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x99940000 - 0x99943ffb  com.apple.help (1.3.2 - 42) <B1E6701C-7473-30B2-AB5A-AFC9A4823694> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x99944000 - 0x99978ff8  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <567E922C-E64F-321B-9A47-6B18BF481625> /usr/lib/libssl.0.9.8.dylib
    0x99979000 - 0x9998fffe  libxpc.dylib (77.19.0 - compatibility 1.0.0) <0585AA94-F4FD-32C1-B586-22E7184B781A> /usr/lib/system/libxpc.dylib
    0x99990000 - 0x999cefff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <AF1174F9-4402-31EB-9C84-AB644E5865DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x99a4f000 - 0x99ae5ff7  com.apple.LaunchServices (480.40 - 480.40) <D5C0DEF9-398C-3742-8C4E-875C3365EC8B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x99aec000 - 0x99b22ff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x99b23000 - 0x99b2cffc  com.apple.DisplayServicesFW (2.5.4 - 323.3) <820C4B45-814A-3101-A1FA-044CA6D2FBC8> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x99b2d000 - 0x99e2ffff  com.apple.CoreServices.CarbonCore (960.25 - 960.25) <C613B0DA-B401-3DC7-B626-6E20D4DDC8A8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x99e30000 - 0x99e5eff7  com.apple.DictionaryServices (1.2.1 - 158.3) <8D03D180-D834-39F3-A106-78E0B22A7893> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x99ea6000 - 0x99eacfff  libGFXShared.dylib (??? - ???) <9C9834EB-B794-38C8-9B90-31D8CB234F86> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x99ead000 - 0x99ecfffe  com.apple.framework.familycontrols (3.0 - 300) <6735D7ED-7053-3AB8-B144-E7F70A124CCD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x99ed0000 - 0x99ed7ffd  com.apple.NetFS (4.0 - 4.0) <AE731CFE-1B2E-3E46-8759-843F5FB8C24F> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x99ed8000 - 0x99ed8fff  com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x99ed9000 - 0x9a08dff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <4AFF6FC3-6283-3934-8EFC-CA227CA11164> /usr/lib/libicucore.A.dylib
    0x9a090000 - 0x9a0d7ff5  com.apple.opencl (2.0.19 - 2.0.19) <7689E7B9-EE5A-3F74-8699-4CDED9162260> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9a0e4000 - 0x9a4d8feb  com.apple.VideoToolbox (1.0 - 705.94) <8FCC2C08-2D4C-3A96-B57A-CAA56911120F> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x9a4d9000 - 0x9a4daffd  libCVMSPluginSupport.dylib (??? - ???) <4B0476F9-950D-3EB7-BD83-F65AF0B05F0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x9a4db000 - 0x9a4dcff7  libsystem_sandbox.dylib (??? - ???) <5CFCCFB7-CF29-3E04-801D-8532AE004768> /usr/lib/system/libsystem_sandbox.dylib
    0x9a4dd000 - 0x9a4e0ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <16DCE20A-9790-369A-94C1-B7954B418C77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x9a4e1000 - 0x9a4f1fff  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <D6F728DA-990A-32A3-86FA-4A3F4D88E309> /usr/lib/libsasl2.2.dylib
    0x9a4f2000 - 0x9a52fff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <007A1877-E981-3007-A8FA-9B179F4ED6D1> /usr/lib/libcups.2.dylib
    0x9a530000 - 0x9a598ff3  com.apple.ISSupport (1.9.8 - 56) <59225A65-41C1-35CA-9F29-229AC427B728> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9a691000 - 0x9a790ffb  com.apple.DiskImagesFramework (10.7.4 - 331.7) <31A74A7E-E2AE-313D-A7C4-6DFCF0F22C9A> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x9a791000 - 0x9a7b9ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <AB530FB2-8BD1-3328-95E8-CF449F0429CA> /usr/lib/libxslt.1.dylib
    0x9a898000 - 0x9a9eefff  com.apple.audio.toolbox.AudioToolbox (1.7.3 - 1.7.3) <F09C7075-2C4E-3A4F-A372-95D700125513> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9a9ef000 - 0x9aa03fff  com.apple.CFOpenDirectory (10.7 - 146) <58050170-D74E-3670-945D-D8501F67835F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x9aa5d000 - 0x9aa7aff3  com.apple.openscripting (1.3.3 - ???) <0579A4CB-FD6F-3D7F-A17B-AC0F2CF11FC7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x9aa7b000 - 0x9b3a672b  com.apple.CoreGraphics (1.600.0 - ???) <DD7CDD67-FC4F-36FE-962F-2EA7EF3FC780> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x9b3b5000 - 0x9b5d1ff7  com.apple.imageKit (2.1.2 - 1.0) <71FC9A62-4E07-307C-8E6B-4DE7661DC0A3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x9b5d2000 - 0x9b7caff7  com.apple.CoreData (104.1 - 358.14) <C1730963-F75D-3338-B65F-D50235538B28> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9b882000 - 0x9b883fff  com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x9b884000 - 0x9b8ddfff  com.apple.HIServices (1.21 - ???) <91EC636D-AC27-3332-BA1C-FD7301917429> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x9b8ef000 - 0x9ba51ffb  com.apple.QuartzCore (1.7 - 270.5) <6D0EC7FC-11E5-35FB-A08A-3B438E89FBDB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9ba52000 - 0x9ba77ff9  libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x9ba78000 - 0x9ba81ff3  com.apple.CommonAuth (2.2 - 2.0) <C3FD6EC2-8EB3-38FB-BBB7-05009CA49024> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x9bbee000 - 0x9bbeefff  com.apple.quartzframework (1.5 - 1.5) <49B5CA00-083A-3D4A-9A68-4759A5CC35A6> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9bbef000 - 0x9bc53fff  com.apple.framework.IOKit (2.0 - ???) <94827954-5906-36C4-819B-24CDAFD85C72> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9bc54000 - 0x9be2bfe7  com.apple.CoreFoundation (6.7.2 - 635.21) <4D1D2BAF-1332-32DF-A81B-7E79D4F0A6CB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9be2c000 - 0x9be6cff7  libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
    0x9be77000 - 0x9be7cffb  com.apple.phonenumbers (1.0 - 47) <1830301D-5409-3949-9614-C43C62B39DDA> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
    0x9be7d000 - 0x9be7dfff  com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9be81000 - 0x9bf59ff6  com.apple.QuickLookUIFramework (3.2 - 500.18) <CE281BD9-C1CF-3F87-BD22-412ED253580E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x9bf5a000 - 0x9c264ff3

    Hello everyone.
    I'm in the middle/end of developing a Desktop application.
    Sometimes it will crash when a unsuspected error occurs, on my system (Mac OS 10.8.2) most of the time when i open the app again it works fine.
    But some crashes are more severe, then my Mac has to reboot in order for the application to work proper again.
    A second Mac in my work place, running OS 10.7.5, has worst problems with the crash. After a reboot the problem persists.
    The application uses 2 workers wich do the more CPU intensive tasks, encoding Bitmapdata to PNG files (5 to 10+ bitmapdata instances) and parsing PSD files to individual Bitmap instances. Strangely it never crashes on 1 of these tasks.
    I compile the app with FB 4.6 and Flex SDK 4.6.0 with a Air 3.4 overlay. Runtime version 11.4.4.02.285.
    Does any of this sound familiar to anyone?
    thanx.
    Max troost
    DutchGiraffe
    ps. it's very hard to reproduce. when and if, i will submit a full crash report.
    CRASH Report.
    Process:         HowdyCardEditor [331]
    Path:            /Applications/HowdyCardEditor.app/Contents/MacOS/HowdyCardEditor
    Identifier:      com.dutchgiraffe.howdy.cardeditor
    Version:         0.3.7 (???)
    Code Type:       X86 (Native)
    Parent Process:  launchd [153]
    Date/Time:       2012-11-29 15:55:08.031 +0100
    OS Version:      Mac OS X 10.7.5 (11G63)
    Report Version:  9
    Interval Since Last Report:          1616985 sec
    Crashes Since Last Report:           15
    Per-App Interval Since Last Report:  952 sec
    Per-App Crashes Since Last Report:   2
    Anonymous UUID:                      80FB70FA-6C91-4655-99CD-0D7140E689E1
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000004
    VM Regions Near 0x4:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/HowdyCardEditor.app/Contents/MacOS/HowdyCardEditor
        __TEXT                 0000000000001000-0000000000007000 [   24K] r-x/rwx SM=COW  /Applications/HowdyCardEditor.app/Contents/MacOS/HowdyCardEditor
    Application Specific Information:
    objc[331]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   com.adobe.AIR                           0x01257307 0x1000000 + 2454279
    1   com.adobe.AIR                           0x012573be 0x1000000 + 2454462
    2   com.adobe.AIR                           0x0134da1b 0x1000000 + 3463707
    3   com.adobe.AIR                           0x01344e4a 0x1000000 + 3427914
    4   com.adobe.AIR                           0x01348ee1 0x1000000 + 3444449
    5   com.adobe.AIR                           0x01349941 0x1000000 + 3447105
    6   com.adobe.AIR                           0x01349ba2 0x1000000 + 3447714
    7   com.adobe.AIR                           0x0134a33e 0x1000000 + 3449662
    8   com.adobe.AIR                           0x0134a69b 0x1000000 + 3450523
    9   com.adobe.AIR                           0x015b36dd 0x1000000 + 5977821
    10  com.adobe.AIR                           0x01459c50 0x1000000 + 4562000
    11  com.apple.Foundation                    0x9bf66792 __NSFireDelayedPerform + 615
    12  com.apple.CoreFoundation                0x9bcb12a6 __CFRUNLOOP_IS_CALLING_OUT_TO_A_TIMER_CALLBACK_FUNCTION__ + 22
    13  com.apple.CoreFoundation                0x9bcb0c37 __CFRunLoopDoTimer + 743
    14  com.apple.CoreFoundation                0x9bc8fcd0 __CFRunLoopRun + 1888
    15  com.apple.CoreFoundation                0x9bc8f1dc CFRunLoopRunSpecific + 332
    16  com.apple.CoreFoundation                0x9bc8f088 CFRunLoopRunInMode + 120
    17  com.apple.HIToolbox                     0x9486e543 RunCurrentEventLoopInMode + 318
    18  com.apple.HIToolbox                     0x948757d6 ReceiveNextEventCommon + 168
    19  com.apple.HIToolbox                     0x9487571a BlockUntilNextEventMatchingListInMode + 88
    20  com.apple.AppKit                        0x92192ee8 _DPSNextEvent + 678
    21  com.apple.AppKit                        0x92192752 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    22  com.apple.AppKit                        0x9218eac1 -[NSApplication run] + 911
    23  com.adobe.AIR                           0x0100922a 0x1000000 + 37418
    24  com.adobe.AIR                           0x01009570 0x1000000 + 38256
    25  com.apple.CoreFoundation                0x9bceed11 -[NSObject performSelector:withObject:] + 65
    26  com.dutchgiraffe.howdy.cardeditor          0x00002f93 RuntimeAppMain(char const*, int) + 371
    27  com.dutchgiraffe.howdy.cardeditor          0x000025c1 start + 53
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9621490a kevent + 10
    1   libdispatch.dylib                       0x97dc2e04 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x97dc1853 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x9621383e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9c356e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9c30742c pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                           0x015d9e1b 0x1000000 + 6135323
    4   com.adobe.AIR                           0x01410490 0x1000000 + 4261008
    5   com.adobe.AIR                           0x015d9f35 0x1000000 + 6135605
    6   com.adobe.AIR                           0x015d9faf 0x1000000 + 6135727
    7   com.adobe.AIR                           0x015da04a 0x1000000 + 6135882
    8   libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x9621383e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9c356e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9c30742c pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                           0x015d9e1b 0x1000000 + 6135323
    4   com.adobe.AIR                           0x01410490 0x1000000 + 4261008
    5   com.adobe.AIR                           0x015d9f35 0x1000000 + 6135605
    6   com.adobe.AIR                           0x015d9faf 0x1000000 + 6135727
    7   com.adobe.AIR                           0x015da04a 0x1000000 + 6135882
    8   libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x9621383e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9c356e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9c30742c pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                           0x015d9e1b 0x1000000 + 6135323
    4   com.adobe.AIR                           0x01410490 0x1000000 + 4261008
    5   com.adobe.AIR                           0x015d9f35 0x1000000 + 6135605
    6   com.adobe.AIR                           0x015d9faf 0x1000000 + 6135727
    7   com.adobe.AIR                           0x015da04a 0x1000000 + 6135882
    8   libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x9621383e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9c356e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9c30742c pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                           0x015d9e1b 0x1000000 + 6135323
    4   com.adobe.AIR                           0x01410490 0x1000000 + 4261008
    5   com.adobe.AIR                           0x015d9f35 0x1000000 + 6135605
    6   com.adobe.AIR                           0x015d9faf 0x1000000 + 6135727
    7   com.adobe.AIR                           0x015da04a 0x1000000 + 6135882
    8   libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x9621383e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9c356e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9c3073e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.adobe.AIR                           0x015d9e47 0x1000000 + 6135367
    4   com.adobe.AIR                           0x01623214 0x1000000 + 6435348
    5   com.adobe.AIR                           0x015d9f35 0x1000000 + 6135605
    6   com.adobe.AIR                           0x015d9faf 0x1000000 + 6135727
    7   com.adobe.AIR                           0x015da04a 0x1000000 + 6135882
    8   libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x9621383e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9c356e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9c3073e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.adobe.AIR                           0x015d9e47 0x1000000 + 6135367
    4   com.adobe.AIR                           0x017b03ac 0x1000000 + 8061868
    5   com.adobe.AIR                           0x015d9f35 0x1000000 + 6135605
    6   com.adobe.AIR                           0x015d9faf 0x1000000 + 6135727
    7   com.adobe.AIR                           0x015da04a 0x1000000 + 6135882
    8   libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 8:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x96213b42 __select + 10
    1   com.apple.CoreFoundation                0x9bcdde15 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x96211c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x962111f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x9bc869da __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x9bc8fb04 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x9bc8f1dc CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x9bc9ff01 CFRunLoopRun + 129
    6   com.adobe.AIR                           0x0139ec33 0x1000000 + 3796019
    7   com.adobe.AIR                           0x013a004e 0x1000000 + 3801166
    8   com.adobe.AIR                           0x0133ac27 0x1000000 + 3386407
    9   com.adobe.AIR                           0x01337da3 0x1000000 + 3374499
    10  com.adobe.AIR                           0x01337313 0x1000000 + 3371795
    11  libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    12  libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x9621383e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9c356e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9c3073e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.adobe.AIR                           0x015d9e47 0x1000000 + 6135367
    4   com.adobe.AIR                           0x017b03ac 0x1000000 + 8061868
    5   com.adobe.AIR                           0x015d9f35 0x1000000 + 6135605
    6   com.adobe.AIR                           0x015d9faf 0x1000000 + 6135727
    7   com.adobe.AIR                           0x015da04a 0x1000000 + 6135882
    8   libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x9621402e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9c354ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9c3566fe start_wqthread + 30
    Thread 12:
    0   libsystem_kernel.dylib                  0x96213bb2 __semwait_signal + 10
    1   libsystem_c.dylib                       0x9c3077b9 nanosleep$UNIX2003 + 187
    2   com.adobe.AIR                           0x015d9ec6 0x1000000 + 6135494
    3   com.adobe.AIR                           0x015da13a 0x1000000 + 6136122
    4   com.adobe.AIR                           0x017c996a 0x1000000 + 8165738
    5   com.adobe.AIR                           0x01572614 0x1000000 + 5711380
    6   com.adobe.AIR                           0x013a0255 0x1000000 + 3801685
    7   com.adobe.AIR                           0x0133ac27 0x1000000 + 3386407
    8   com.adobe.AIR                           0x01337da3 0x1000000 + 3374499
    9   com.adobe.AIR                           0x01337313 0x1000000 + 3371795
    10  libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    11  libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x9621402e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x9c354ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x9c3566fe start_wqthread + 30
    Thread 14:
    0   libsystem_kernel.dylib                  0x9621383e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x9c356e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x9c30742c pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.AIR                           0x0144e506 0x1000000 + 4515078
    4   com.adobe.AIR                           0x014de6cc 0x1000000 + 5105356
    5   com.adobe.AIR                           0x014deb06 0x1000000 + 5106438
    6   com.adobe.AIR                           0x015d9f35 0x1000000 + 6135605
    7   com.adobe.AIR                           0x015d9faf 0x1000000 + 6135727
    8   com.adobe.AIR                           0x015da04a 0x1000000 + 6135882
    9   libsystem_c.dylib                       0x9c352ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x9c3566de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x0125739e  ecx: 0x00000000  edx: 0x0b41e830
      edi: 0x0b41e834  esi: 0x0fe97244  ebp: 0xbfffe108  esp: 0xbfffe0f0
       ss: 0x00000023  efl: 0x00010206  eip: 0x01257307   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x00000004
    Logical CPU: 6
    Binary Images:
        0x1000 -     0x6ff7 +com.dutchgiraffe.howdy.cardeditor (0.3.7 - ???) <85493E5F-F8F0-E60D-56C2-90CAB18A2260> /Applications/HowdyCardEditor.app/Contents/MacOS/HowdyCardEditor
       0xb8000 -    0xbcffb  com.apple.audio.AudioIPCPlugIn (1.2.3 - 1.2.3) <D4092467-5BBE-3ED6-A493-7DB1EE8E6686> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugIn.bundle/C ontents/MacOS/AudioIPCPlugIn
       0xc1000 -    0xc6fff  com.apple.audio.AppleHDAHALPlugIn (2.2.5 - 2.2.5a5) <BAD1E0E6-10E6-342C-BEB8-B1706F0CE2CF> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
      0x7a8000 -   0x7d8ffb  com.apple.security.csparser (3.0 - 55148.6) <D436F40C-DB1C-350A-80BE-2B8A4D2FD53F> /System/Library/Frameworks/Security.framework/PlugIns/csparser.bundle/Contents/MacOS/cspa rser
    0x1000000 -  0x2278fd3 +com.adobe.AIR (??? - 3.4.0.2710) <935BC632-7019-A5A2-3FDD-250065E0D0B9> /Applications/HowdyCardEditor.app/Contents/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR
    0x25e8000 -  0x25f0ffb  com.apple.URLMount.AFPPlugin (4.0.1 - 4.0.1) <C4ADC280-659B-3528-BC24-37932734B9F3> /System/Library/Filesystems/NetFSPlugins/afp.bundle/Contents/MacOS/afp
    0x25f7000 -  0x25f9fff  libCoreFSCache.dylib (??? - ???) <9E7CBE71-566C-36E9-A49F-C5FF6956D76F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
    0x25fd000 -  0x25fdff7 +cl_kernels (??? - ???) <0C1BC301-D67B-4481-9D53-80B3D101C209> cl_kernels
    0x4fd8000 -  0x4fe1fff  com.apple.AppleSRP (1.0 - 1) <F63D1099-7DB1-30D1-ABE2-4A07B8E2B4BC> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
    0x4ffb000 -  0x4ffcff1 +cl_kernels (??? - ???) <5F5DC684-6200-4803-BF6C-E0B42CA978EF> cl_kernels
    0x7b4c000 -  0x7b55ff6  libcldcpuengine.dylib (2.0.19 - compatibility 1.0.0) <95A88DC8-E5EE-363F-9275-214D5AB7A2EF> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0xa462000 -  0xa4abff7  com.apple.AppleShareClientCore (2.5.1 - 2.5.1) <E69CC35D-A3D2-3209-967A-8817D1498B9E> /System/Library/Frameworks/AppleShareClientCore.framework/Versions/A/AppleShareClientCore
    0xa4cf000 -  0xa4d0ff5 +cl_kernels (??? - ???) <F1B756D2-DB42-452A-956E-D395FA8E192A> cl_kernels
    0xb6f8000 -  0xb7a0ff7  unorm8_bgra.dylib (2.0.19 - compatibility 1.0.0) <99A967D2-5577-396B-BD11-56EAFF962AB2> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra.dylib
    0xf357000 -  0xf3ffff7  unorm8_argb.dylib (2.0.19 - compatibility 1.0.0) <1C5CBAF6-9739-340F-9CD6-10D08FEF554F> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_argb.dylib
    0x8fec2000 - 0x8fef4aa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x9001e000 - 0x90044ffb  com.apple.quartzfilters (1.7.0 - 1.7.0) <64AB163E-7E91-3028-8730-BE11BC1F5237> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x9005e000 - 0x90062fff  libGIF.dylib (??? - ???) <2ADFED97-2228-343D-9A53-207CBFDE7984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
    0x90265000 - 0x9028fff1  com.apple.CoreServicesInternal (113.19 - 113.19) <F7A309D1-DCB4-38DE-8248-E16D0182AA6C> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x90290000 - 0x902c7fef  com.apple.DebugSymbols (2.1 - 87) <EB951B78-31A5-379F-AFA1-B5C9A7BB3D23> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x9051c000 - 0x9051fff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x90520000 - 0x90561ff9  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <9FD420FB-7984-3A07-8914-BB19E687D38B> /usr/lib/libcurl.4.dylib
    0x90562000 - 0x9058fff9  com.apple.securityinterface (5.0 - 55022.6) <0FA3E84B-B5FF-3A58-A408-46280982CACC> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x90670000 - 0x90678fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x906db000 - 0x9072dffb  com.apple.CoreMediaIO (216.0 - 3199.8) <A079E576-64FD-3069-846E-F3B67AF28E15> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x9072e000 - 0x907abfff  com.apple.PDFKit (2.6.4 - 2.6.4) <F2B635FC-EDD0-3D80-AB43-F78CB883623A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x907ae000 - 0x907b4ffb  com.apple.print.framework.Print (7.4 - 247.3) <CB075EEE-FA1F-345C-A1B5-1AB266FC73A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x907b5000 - 0x907c5fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x907c6000 - 0x907c6fff  com.apple.Cocoa (6.6 - ???) <5FAFE73E-6AF5-3D09-9191-0BDC8C6875CB> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x907c7000 - 0x90863fff  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
    0x90864000 - 0x90864fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <7EFAD88C-AFBC-3D48-BE14-60B8EACC68D7> /usr/lib/system/libdnsinfo.dylib
    0x90865000 - 0x90878ff8  com.apple.MultitouchSupport.framework (231.4 - 231.4) <083F7787-4C3B-31DA-B5BB-1993D9A9723D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x91618000 - 0x916a5fe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x916a6000 - 0x916f7ff9  com.apple.ScalableUserInterface (1.0 - 1) <3C39DF4D-5CAE-373A-BE08-8CD16E514337> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x916f8000 - 0x91749ff9  com.apple.QuickLookFramework (3.2 - 500.18) <CF3EF345-EA3E-3C2D-B56D-E4433326254A> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x9174a000 - 0x91758fff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x91759000 - 0x91764ffe  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <B63F5D07-93B3-3F02-BFB7-472B4ED3521F> /usr/lib/libbz2.1.0.dylib
    0x91765000 - 0x91883fec  com.apple.vImage (5.1 - 5.1) <7757F253-B281-3612-89D4-F2B04061CBE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x91884000 - 0x9188fffc  com.apple.NetAuth (3.1 - 3.1) <CD89526E-4FF6-3BB3-A94E-832D4504AB1C> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x91890000 - 0x9191affb  com.apple.SearchKit (1.4.0 - 1.4.0) <CF074082-64AB-3A1F-831E-582DF1667827> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x9195b000 - 0x919e2fff  com.apple.print.framework.PrintCore (7.1 - 366.3) <EEC03CAB-7F79-3931-87FE-4DF0B767BF47> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x919e5000 - 0x91a10fff  com.apple.GSS (2.2 - 2.0) <2C468B23-FA87-30B5-B9A6-8C5D1373AA30> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x91a11000 - 0x91a80fff  com.apple.Heimdal (2.2 - 2.0) <2E1B8779-36D4-3C62-A67E-0034D77D7707> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x91a81000 - 0x91a8fff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x91a9b000 - 0x91af9ff7  com.apple.coreui (1.2.2 - 165.11) <340B0B83-1407-3AB4-BCAB-505C29303EE2> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91afa000 - 0x91b16ff1  libPng.dylib (??? - ???) <F084226B-14F0-36C0-B5EC-22C78406D2B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
    0x91b17000 - 0x91b34fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
    0x91b35000 - 0x91b36fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x91b37000 - 0x91b39ff9  com.apple.securityhi (4.0 - 1) <39157216-5E43-392A-AE3F-716726D8C8BF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x91bcb000 - 0x91bd3ff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x91bd4000 - 0x91e81fff  com.apple.JavaScriptCore (7534.57 - 7534.57.3) <5AE5C3B8-D807-356B-80D9-4D0A706A10D1> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x91e82000 - 0x91eb0fe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <30189C33-6ADD-3142-83F3-6114B1FC152E> /usr/lib/libSystem.B.dylib
    0x91eb1000 - 0x91fa1ff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x91fa2000 - 0x92065fff  com.apple.CoreServices.OSServices (478.49 - 478.49) <5AF33605-C893-3F60-89CF-1BC9C0BC35AF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x92066000 - 0x9206dff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
    0x9206e000 - 0x92072ff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x9208e000 - 0x9211bff7  com.apple.CoreText (220.22.0 - ???) <EA7210A7-DECC-3F76-8A66-D4E41859B3C6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
    0x92189000 - 0x92c1eff6  com.apple.AppKit (6.7.5 - 1138.51) <B9D3DCA0-9765-354E-9730-75A45A97DDFD> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x92c1f000 - 0x92c84ff7  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x92d38000 - 0x92d43ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <D6E17FD4-ECA0-3EEE-BFC5-F6A42A21AB5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
    0x92d44000 - 0x92d96ff7  libFontRegistry.dylib (??? - ???) <C2B84661-A62D-3FFF-8D8C-BC697E9BDF4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x92d97000 - 0x92de6ffb  com.apple.AppleVAFramework (5.0.16 - 5.0.16) <1188E7AB-76FE-343F-9108-30CD67E5A37B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x92de7000 - 0x92de9ff7  libdyld.dylib (195.5.0 - compatibility 1.0.0) <52F7B44C-1B43-3B7B-9C9E-6410D8682935> /usr/lib/system/libdyld.dylib
    0x92dea000 - 0x92e81ff3  com.apple.securityfoundation (5.0 - 55116) <EB53CEF7-4836-39FD-B012-6BC122ED4CE9> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x92e82000 - 0x930f6ff3  com.apple.CoreImage (7.99.1 - 1.0.1) <C4B2DD2A-8E45-31CD-9B25-2AC1CA252B14> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x930f7000 - 0x931d9fff  com.apple.backup.framework (1.3.5 - 1.3.5) <1FAE91F2-BCEF-387D-B5C4-412C464DA1BE> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x931da000 - 0x93255ffb  com.apple.ApplicationServices.ATS (317.12.0 - ???) <4D124B65-3D43-32E9-B296-3671347BB888> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x93256000 - 0x933b9fff  com.apple.QTKit (7.7.1 - 2339) <163FBDDD-0458-378F-84DD-CB0F603A259E> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x933ba000 - 0x9341cff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x9341d000 - 0x9344cff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x93455000 - 0x93495ff7  com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x93496000 - 0x93499ffd  libCoreVMClient.dylib (??? - ???) <B8F8916D-F12A-3D95-ABF3-999D57B7D581> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x9349a000 - 0x934fcffb  com.apple.datadetectorscore (3.0 - 179.4) <3A418498-C189-37A1-9B86-F0ECB33AD91C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x934fd000 - 0x9351fff8  com.apple.PerformanceAnalysis (1.11 - 11) <453463FF-7C42-3526-8C96-A9971EE07154> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x93658000 - 0x93658fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x93659000 - 0x93664ffb  com.apple.speech.recognition.framework (4.0.21 - 4.0.21) <A1764D2F-EB84-33DC-9ED5-CDA3B468FF3E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x93665000 - 0x93791ff9  com.apple.CFNetwork (520.5.1 - 520.5.1) <F3C606BF-6DCF-33CD-981B-7253C9E3113A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
    0x93792000 - 0x93793fff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x93794000 - 0x937deff2  com.apple.Suggestions (1.1 - 85.1) <1057087C-AC51-3C3B-BECD-BF97426B2372> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
    0x937eb000 - 0x938fbfe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <34E1E3CC-7B6A-3B37-8D07-1258D11E16CB> /usr/lib/libsqlite3.dylib
    0x938fc000 - 0x93907fff  libkxld.dylib (??? - ???) <14E79D7A-B6C2-35C5-B56D-D343BEC2A106> /usr/lib/system/libkxld.dylib
    0x93908000 - 0x93922fff  com.apple.Kerberos (1.0 - 1) <D7920A1C-FEC4-3460-8DD0-D02491578CBB> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x93924000 - 0x9392cff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <BB0C7B49-600F-3551-A460-B7E36CA4C4A4> /usr/lib/system/libcopyfile.dylib
    0x9392d000 - 0x9392dff2  com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9392e000 - 0x939eeffb  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
    0x944a0000 - 0x944a0ff0  com.apple.ApplicationServices (41 - 41) <C48EF6B2-ABF9-35BD-A07A-A38EC0008294> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x944a1000 - 0x9477bff7  com.apple.RawCamera.bundle (4.00 - 658) <F72D5DF2-406B-3310-AC16-F0AB434237DE> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x94784000 - 0x94786ffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
    0x9481d000 - 0x94826fff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x94827000 - 0x9486bff3  com.apple.framework.CoreWLAN (2.1.3 - 213.1) <8A99ADB8-4A3E-3B8E-A0E4-A39398C288EC> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x9486c000 - 0x94bb2ff3  com.apple.HIToolbox (1.9 - ???) <E5EA9EEF-3CCA-36A0-8688-DA2E64E2256C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x94bbe000 - 0x94c1bffb  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
    0x94c1c000 - 0x94cf2aab  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <2E272DCA-38A0-3530-BBF4-47AE678D20D4> /usr/lib/libobjc.A.dylib
    0x94cf3000 - 0x94d3bff7  com.apple.SystemConfiguration (1.11.3 - 1.11) <68B92FEA-F754-3E7E-B5E6-D512E26144E7> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x94d3c000 - 0x94d49fff  com.apple.KerberosHelper (3.0 - 1.0) <0E16B080-3931-3D3E-A786-419C24B44B02> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosHelper
    0x94d4a000 - 0x94d50ffd  com.apple.CommerceCore (1.0 - 17) <E59CD307-58E2-35FD-9131-B38978799910> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x94d51000 - 0x94d59ff3  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <9E6135FF-C2B1-3BC9-A160-B32D71BFA77C> /usr/lib/system/liblaunch.dylib
    0x950cf000 - 0x95118ff7  libGLU.dylib (??? - ???) <9AF7AD51-16E3-3674-B60E-30EE499D7B46> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x95119000 - 0x9511cffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x9511d000 - 0x95121ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <56256537-6538-3522-BCB6-2C79DA6AC8CD> /usr/lib/system/libcache.dylib
    0x95122000 - 0x95203ff7  com.apple.DiscRecording (6.0.4 - 6040.4.1) <08BADDAD-FA79-3872-9387-EEE2A9FAA2F0> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x95204000 - 0x9525fff3  com.apple.Symbolication (1.3 - 91) <4D12D2EC-5010-3958-A205-9A67E972C76A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x95260000 - 0x95261fff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x95271000 - 0x95341ffb  com.apple.ImageIO.framework (3.1.2 - 3.1.2) <2092785C-795A-3CDF-A1B4-6C80BA3726DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
    0x95342000 - 0x95365fff  com.apple.CoreVideo (1.7 - 70.3) <4234C11C-E8E9-309A-9465-27D6D7458895> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x95366000 - 0x9537bfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x953b1000 - 0x953b5ff7  com.apple.OpenDirectory (10.7 - 146) <4986A382-8FEF-3392-8CE9-CF6A5EE4E365> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x953b6000 - 0x95685ffb  com.apple.security (7.0 - 55148.6) <8DF67BDD-C98F-3B7E-AC63-D468407FA82D> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95686000 - 0x95b62ff6  libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x95b63000 - 0x95d8effb  com.apple.QuartzComposer (5.0 - 236.10) <416993F4-2868-35FF-90DE-34C93D83574F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x95d8f000 - 0x95d92ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x95d93000 - 0x95e09fff  com.apple.Metadata (10.7.0 - 627.37) <F54AED70-95C5-3561-8C87-D9E5539E98A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x95e36000 - 0x95e3affd  IOSurface (??? - ???) <EDDBEE65-1EB8-33A7-9972-E361A3508234> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x95e3e000 - 0x9616dff7  com.apple.FinderKit (1.0.5 - 1.0.5) <5F2FB244-8734-31FA-A957-0F4B603E02BB> /System/Library/PrivateFrameworks/FinderKit.framework/Versions/A/FinderKit
    0x9616e000 - 0x96171fff  com.apple.AppleSystemInfo (1.0 - 1) <0E02BA66-4EA6-3EA1-8D81-3D0DE36F1CE8> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x9617d000 - 0x9618dff7  libCRFSuite.dylib (??? - ???) <94E040D2-2769-359A-A21B-DB85FCB73BDC> /usr/lib/libCRFSuite.dylib
    0x961fb000 - 0x96219ff7  libsystem_kernel.dylib (1699.32.7 - compatibility 1.0.0) <79179F83-457A-3539-A76B-E960D2108109> /usr/lib/system/libsystem_kernel.dylib
    0x9621a000 - 0x9626affa  libTIFF.dylib (??? - ???) <CAD45E49-FD7C-37FA-A118-AEB526B90E67> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
    0x9628d000 - 0x9628dfff  com.apple.Carbon (153 - 153) <F996332A-390E-3337-A09E-A1E54004B567> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x96295000 - 0x9637dfff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <1841196F-68B5-309F-8ED1-6714B1DFEC83> /usr/lib/libxml2.2.dylib
    0x9637e000 - 0x9639ffff  com.apple.framework.internetaccounts (1.2 - 3) <A93D14F6-DF12-3918-90E9-B73DD7B6456D> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/InternetAccounts
    0x963c5000 - 0x96402fef  libGLImage.dylib (??? - ???) <FC13D46F-69C4-3BA1-A5E8-52C2EC8B7D58> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x96414000 - 0x9641bfff  com.apple.agl (3.2.0 - AGL-3.2.0) <ED5A5B8A-0014-3897-951F-628391333256> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9641c000 - 0x96446ff0  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <5CAA1478-97E0-31EA-8F50-BF09D665DD84> /usr/lib/libpcre.0.dylib
    0x96447000 - 0x96451ff2  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/V ersions/A/CarbonSound
    0x96497000 - 0x964dbfff  com.apple.MediaKit (12 - 602) <6E429DD7-8829-37DE-94AF-940FB70F2FB9> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x964dc000 - 0x964f4fff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <A8CE15CF-2539-318A-910C-8789D45FFD69> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x964f7000 - 0x964fcff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <943213F3-CC9B-328E-8A6F-16D85C4274C7> /usr/lib/system/libmacho.dylib
    0x964fd000 - 0x96843fff  com.apple.MediaToolbox (1.0 - 705.94) <89D37021-C389-3CC5-A158-620ADCBD99EF> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x96844000 - 0x96859ff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <E5FCA336-7E47-343E-A82D-CCCA5BCD5929> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x9685a000 - 0x96881ff3  com.apple.framework.Apple80211 (7.4.1 - 741.1) <7F29673A-B030-34AF-B8CA-AB30DD63FFAB> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x96b91000 - 0x96c89ff7  libFontParser.dylib (??? - ???) <71B33EB1-27F8-3C68-B940-FC61A3CFE275> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x96c8a000 - 0x96cccff7  com.apple.CoreMedia (1.0 - 705.94) <10D5D25F-9BCB-3406-B737-23D9FDF2CC71> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x96ccd000 - 0x97359ff5  com.apple.CoreAUC (6.16.12 - 6.16.12) <9D51400F-B827-3BA7-87F5-954A1CDDAEA9> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x9735a000 - 0x977cfff7  FaceCoreLight (1.4.7 - compatibility 1.0.0) <3E2BF587-5168-3FC5-9D8D-183A9C7C1DED> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLight
    0x977d0000 - 0x977deff7  com.apple.AppleFSCompression (37 - 1.0) <E54AEE04-F1D2-3178-AF5B-5A2AED9CF884> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
    0x9790e000 - 0x9792aff5  com.apple.GenerationalStorage (1.0 - 126.1) <E622F823-7D98-3D13-9C3D-7EA482567394> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x9792b000 - 0x97ce6ffb  com.apple.SceneKit (125.3 - 125.8) <89008B87-87E7-3972-A274-30311497EE32> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    0x97ce7000 - 0x97ce7fff  libOpenScriptingUtil.dylib (??? - ???) <E4C22B65-9493-31D5-9D46-19BD70975587> /usr/lib/libOpenScriptingUtil.dylib
    0x97ce8000 - 0x97dbfff3  com.apple.avfoundation (2.0 - 180.50) <7B7FDF30-AC40-3715-A409-B5A27F7B5585> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x97dc0000 - 0x97dcefff  libdispatch.dylib (187.10.0 - compatibility 1.0.0) <1B857064-288D-3919-B81A-38E9F4D19B54> /usr/lib/system/libdispatch.dylib
    0x97dcf000 - 0x97eb2ff7  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <BD913D3B-388D-33AE-AA5E-4810C743C28F> /usr/lib/libcrypto.0.9.8.dylib
    0x97eb3000 - 0x97f1bfff  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <B24814AB-CA77-3B9D-8FAB-58C9B4FD3A16> /usr/lib/libc++.1.dylib
    0x97f1c000 - 0x97f1dff4  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <6DE3FDC7-0BE0-3791-B6F5-C15422A8AFB8> /usr/lib/system/libremovefile.dylib
    0x98202000 - 0x9820ffff  libGL.dylib (??? - ???) <A72F14F7-1836-34AB-9F08-67836CB966E4> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x98210000 - 0x98230ff7  com.apple.RemoteViewServices (1.5 - 44.2) <11C87337-FF29-3976-A230-6387D96563C5> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x9823d000 - 0x98244ff9  libsystem_dnssd.dylib (??? - ???) <EBEAF723-84F8-3544-8FB2-31B7771B50D0> /usr/lib/system/libsystem_dnssd.dylib
    0x98245000 - 0x98256fff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x98298000 - 0x9829cfff  com.apple.CommonPanels (1.2.5 - 94) <EA47550D-7DAF-30D9-91DB-1FB594CC8522> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x9829d000 - 0x98522fe3  com.apple.QuickTime (7.7.1 - 2339) <FC82F13B-1788-3766-8681-7A3B1EFAE02D> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x98536000 - 0x98549ffc  com.apple.FileSync.framework (6.0.1 - 502.2) <B79DAE4B-3B1E-32D4-8BEC-F2C034C00B68> /System/Library/PrivateFrameworks/FileSync.framework/Versions/A/FileSync
    0x9854a000 - 0x9854affe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x9854b000 - 0x9894dff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x989e9000 - 0x989e9fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <4192CE7A-BCE0-3D3C-AAF7-6F1B3C607386> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x989ea000 - 0x989ebff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <2F4B35B2-706C-3383-AA86-DABA409FAE45> /usr/lib/system/libunc.dylib
    0x989ec000 - 0x98a2fffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <6B35F203-5D72-335A-A4BC-CC89FEC0E14F> /usr/lib/system/libcommonCrypto.dylib
    0x98a30000 - 0x98ce2ff7  com.apple.AddressBook.framework (6.1.3 - 1091) <B8CC707C-6368-3CDD-BE38-D2335B7CC2DE> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x98e48000 - 0x98e5fff8  com.apple.CoreMediaAuthoring (2.0 - 891) <69D569FD-670C-3BD0-94BF-7A8954AA2953> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x98eb0000 - 0x98ebaff0  com.apple.DirectoryService.Framework (10.7 - 146) <59061A4B-D743-3A34-B142-7BE2472BBC2D> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x99757000 - 0x997aaff3  com.apple.ImageCaptureCore (3.1.0 - 3.1.0) <F7ACE42B-2F58-3642-9469-9CDCF31F0273> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x997ab000 - 0x997acff7  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <46980EC2-149D-3CF7-B29A-401FB89C275D> /usr/lib/system/libquarantine.dylib
    0x997ad000 - 0x998bcff7  com.apple.DesktopServices (1.6.5 - 1.6.5) <CEC069D7-37A3-3D25-A3BB-39DE99FDA46E> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x99904000 - 0x9993ffff  com.apple.bom (11.0 - 183) <8E3F690E-4D23-3379-828C-5AB0453B9226> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x99940000 - 0x99943ffb  com.apple.help (1.3.2 - 42) <B1E6701C-7473-30B2-AB5A-AFC9A4823694> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x99944000 - 0x99978ff8  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <567E922C-E64F-321B-9A47-6B18BF481625> /usr/lib/libssl.0.9.8.dylib
    0x99979000 - 0x9998fffe  libxpc.dylib (77.19.0 - compatibility 1.0.0) <0585AA94-F4FD-32C1-B586-22E7184B781A> /usr/lib/system/libxpc.dylib
    0x99990000 - 0x999cefff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <AF1174F9-4402-31EB-9C84-AB644E5865DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib
    0x99a4f000 - 0x99ae5ff7  com.apple.LaunchServices (480.40 - 480.40) <D5C0DEF9-398C-3742-8C4E-875C3365EC8B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x99aec000 - 0x99b22ff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x99b23000 - 0x99b2cffc  com.apple.DisplayServicesFW (2.5.4 - 323.3) <820C4B45-814A-3101-A1FA-044CA6D2FBC8> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x99b2d000 - 0x99e2ffff  com.apple.CoreServices.CarbonCore (960.25 - 960.25) <C613B0DA-B401-3DC7-B626-6E20D4DDC8A8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x99e30000 - 0x99e5eff7  com.apple.DictionaryServices (1.2.1 - 158.3) <8D03D180-D834-39F3-A106-78E0B22A7893> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x99ea6000 - 0x99eacfff  libGFXShared.dylib (??? - ???) <9C9834EB-B794-38C8-9B90-31D8CB234F86> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x99ead000 - 0x99ecfffe  com.apple.framework.familycontrols (3.0 - 300) <6735D7ED-7053-3AB8-B144-E7F70A124CCD> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x99ed0000 - 0x99ed7ffd  com.apple.NetFS (4.0 - 4.0) <AE731CFE-1B2E-3E46-8759-843F5FB8C24F> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x99ed8000 - 0x99ed8fff  com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x99ed9000 - 0x9a08dff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <4AFF6FC3-6283-3934-8EFC-CA227CA11164> /usr/lib/libicucore.A.dylib
    0x9a090000 - 0x9a0d7ff5  com.apple.opencl (2.0.19 - 2.0.19) <7689E7B9-EE5A-3F74-8699-4CDED9162260> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9a0e4000 - 0x9a4d8feb  com.apple.VideoToolbox (1.0 - 705.94) <8FCC2C08-2D4C-3A96-B57A-CAA56911120F> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x9a4d9000 - 0x9a4daffd  libCVMSPluginSupport.dylib (??? - ???) <4B0476F9-950D-3EB7-BD83-F65AF0B05F0E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x9a4db000 - 0x9a4dcff7  libsystem_sandbox.dylib (??? - ???) <5CFCCFB7-CF29-3E04-801D-8532AE004768> /usr/lib/system/libsystem_sandbox.dylib
    0x9a4dd000 - 0x9a4e0ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <16DCE20A-9790-369A-94C1-B7954B418C77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib
    0x9a4e1000 - 0x9a4f1fff  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <D6F728DA-990A-32A3-86FA-4A3F4D88E309> /usr/lib/libsasl2.2.dylib
    0x9a4f2000 - 0x9a52fff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <007A1877-E981-3007-A8FA-9B179F4ED6D1> /usr/lib/libcups.2.dylib
    0x9a530000 - 0x9a598ff3  com.apple.ISSupport (1.9.8 - 56) <59225A65-41C1-35CA-9F29-229AC427B728> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x9a691000 - 0x9a790ffb  com.apple.DiskImagesFramework (10.7.4 - 331.7) <31A74A7E-E2AE-313D-A7C4-6DFCF0F22C9A> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x9a791000 - 0x9a7b9ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <AB530FB2-8BD1-3328-95E8-CF449F0429CA> /usr/lib/libxslt.1.dylib
    0x9a898000 - 0x9a9eefff  com.apple.audio.toolbox.AudioToolbox (1.7.3 - 1.7.3) <F09C7075-2C4E-3A4F-A372-95D700125513> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9a9ef000 - 0x9aa03fff  com.apple.CFOpenDirectory (10.7 - 146) <58050170-D74E-3670-945D-D8501F67835F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x9aa5d000 - 0x9aa7aff3  com.apple.openscripting (1.3.3 - ???) <0579A4CB-FD6F-3D7F-A17B-AC0F2CF11FC7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x9aa7b000 - 0x9b3a672b  com.apple.CoreGraphics (1.600.0 - ???) <DD7CDD67-FC4F-36FE-962F-2EA7EF3FC780> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
    0x9b3b5000 - 0x9b5d1ff7  com.apple.imageKit (2.1.2 - 1.0) <71FC9A62-4E07-307C-8E6B-4DE7661DC0A3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x9b5d2000 - 0x9b7caff7  com.apple.CoreData (104.1 - 358.14) <C1730963-F75D-3338-B65F-D50235538B28> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9b882000 - 0x9b883fff  com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x9b884000 - 0x9b8ddfff  com.apple.HIServices (1.21 - ???) <91EC636D-AC27-3332-BA1C-FD7301917429> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x9b8ef000 - 0x9ba51ffb  com.apple.QuartzCore (1.7 - 270.5) <6D0EC7FC-11E5-35FB-A08A-3B438E89FBDB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9ba52000 - 0x9ba77ff9  libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
    0x9ba78000 - 0x9ba81ff3  com.apple.CommonAuth (2.2 - 2.0) <C3FD6EC2-8EB3-38FB-BBB7-05009CA49024> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x9bbee000 - 0x9bbeefff  com.apple.quartzframework (1.5 - 1.5) <49B5CA00-083A-3D4A-9A68-4759A5CC35A6> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9bbef000 - 0x9bc53fff  com.apple.framework.IOKit (2.0 - ???) <94827954-5906-36C4-819B-24CDAFD85C72> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x9bc54000 - 0x9be2bfe7  com.apple.CoreFoundation (6.7.2 - 635.21) <4D1D2BAF-1332-32DF-A81B-7E79D4F0A6CB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9be2c000 - 0x9be6cff7  libauto.dylib (??? - ???) <984C81BE-FA1C-3228-8F7E-2965E7E5EB85> /usr/lib/libauto.dylib
    0x9be77000 - 0x9be7cffb  com.apple.phonenumbers (1.0 - 47) <1830301D-5409-3949-9614-C43C62B39DDA> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumbers
    0x9be7d000 - 0x9be7dfff  com.apple.vecLib (3.7 - vecLib 3.7) <8CCF99BF-A4B7-3C01-9219-B83D2AE5F82A> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9be81000 - 0x9bf59ff6  com.apple.QuickLookUIFramework (3.2 - 500.18) <CE281BD9-C1CF-3F87-BD22-412ED253580E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI
    0x9bf5a000 - 0x9c264ff3

  • Air 3.7 for Flex on mac

    It sounds so simple and probably should be, but I just spend 3 hours trying to get the most basic setup running and I'm lost in the mess Adobe created. I followed a couple of tutorials and documents but none seem to be working.
    All I want is to generate a Flex for mobile project with the latest Air 3.7 SDK.
    I tried steps to replace the airsdk that is now deeply hidden in flashbuilders eclipse folders. That only allowed me to create an actionscript for mobile project with 3.7, but not a Flex project.
    I tried to download the Air sdk that supposed to be for flex developers (http://airdownload.adobe.com/air/mac/download/latest/AdobeAIRSDK.tbz2). I overlayed these files into an existing Flex 4.6.0 folder. The result was that Flashbuilder didn't recognize the folder as a Flex SDK anymore.
    I tried the latter step on a PC and it work so far that I can compile and debug flex for mobile apps on the ipad (with fast mode). Standard mode and export release build end in an never ending packaging process (1.5 hours now for a hello world app and still at 0%)
    Any help would be much appreciated. Thank you

    Hi,
    The Apache Flex project has a few scripts that will help you on OSX.
    This will dowload and check the MD5 hashed of all playerglobal.swcs into a Flex SDK.
    http://svn.apache.org/viewvc/flex/sdk/branches/develop/ide/checkAllPlayerGlobals.sh?view=m arkup
    This will download and inject any version of the AIR SDK into a Flex SDK.
    http://svn.apache.org/viewvc/flex/sdk/branches/develop/ide/addAIRtoSDK.sh?view=markup
    The latest versions in the Git develop branch support AIR 3.7 (but harder to provide links to - sorry).
    Thanks,
    Justin

  • Flash mobile development - AIR 3.4 and Microphone access

    I'm encountering an issue with AIR 3.4 and the new Kindle Fire (2nd gen, non-HD).
    There is no microphone, as Amazon's comparison chart illustrates: https://developer.amazon.com/sdk/fire/specifications.html, but AIR is telling me that there is a microphone.
    It also reports a value of TRUE for Camera.isSupported and CameraUI.isSupported.
    So here's the scoop on Kindle Fire:
    1st generation Kindle Fire does not properly support audio capture from within AIR (even with an external Microphone connected). For more information, see: https://bugbase.adobe.com/index.cfm?event=bug&id=3197063
    2nd generation Kindle Fire doesn't support audio capture unless an external microphone is connected. However, I don't know of a way within AIR to differentiate between headphone or no, because Microphone.isSupported always returns TRUE.
    Kindle Fire HD supports audio capture with or without an external mic.
    The best metric I know of to handle this, so far, is to use "android.os.Build.MODEL" to disable microphone use for the 1st gen Kindle.
    This is kind of clunky though.
    It also doesn't allow me to properly handle the 2nd gen Fire because there is no way (that I know of) to determine if the user has a microphone plugged in.
    Anyone from Adobe care to weigh-in? (Or anyone that knows an alternative?)
    Edit: Here's a test project that I've created that illustrates the problem:
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" applicationComplete="init()"
                   xmlns:s="library://ns.adobe.com/flex/spark" applicationDPI="160">
        <fx:Script>
            <![CDATA[
                private function init():void {
                    cameraLabel.text = "Camera: " + Camera.isSupported.toString();
                    cameraUILabel.text = "CameraUI: " + CameraUI.isSupported.toString();
                    microphoneLabel.text = "Microphone: " + Microphone.isSupported.toString() + " => " + Microphone.getMicrophone();
            ]]>
        </fx:Script>
        <s:VGroup horizontalCenter="0" verticalCenter="0">
            <s:Label id="cameraLabel" />
            <s:Label id="cameraUILabel" />
            <s:Label id="microphoneLabel" />
        </s:VGroup>
    </s:Application>
    Running this program on a 2nd gen Kindle Fire results in the following values being displayed on the screen:
    Camera: true
    CameraUI: true
    Microphone: true => [object Microphone]

    You can read this from the "/system/build.prop" file on Android.
    Funky Monkey Studio has released a nice utiltiy class for doing this, NativeDeviceInfo.

  • Need Info NativeProcess and Flex Builder

    Hi Guys,
    I am currently using Flex builder 3.0 and wanted to develop a project with the new Air 2.0 features
    I have done following process for Air 2.0
    ·         Downloaded Flex 3.3 sdk.
    ·         Downloaded Air 2.0 sdk
    ·         Updated Air sdk of 3.3 to 2.0
    ·         Changed the namespace to 2.0
    ·         Added “supportedProfiles” tag to –app.xml file
    Now when I try to import NativeProcess I am unable to find in package flash.desktop , is there is need to update my Flex Builder, also if not what am I doing wrong please suggest.
    Thanks & Regards,
    Mahesh

    HI ,
    For importing class of native process ,
    Download sdk 3.4
    Download AIR2.0 SDK
    Now update air library of 3.4 with AIR 2.0 SDK - for that just copy of AIR2.0's sdk content and past this into SDK 3.4's content.
    Now your library is able to handle native process.
    Now you can import native process class.
    When u want to call native process at that time u need to add
    <supportedProfiles>extendedDesktop desktop</supportedProfiles>
    into your project app.xml
    Now you can use nativeProcess class of AIR 2.0

  • Error creating files. Compilation failed... when publishing iOS app with AIR 3.1 and Flash 11.5.1

    Hello, I'm running Windows 7. I'm using Flash 11.5.1 (that's CS5.5 updated once) and AIR 3.1 to make an iPhone app.
    I can export the app perfectly fine with either Ctrl+Enter or F12.
    I added all the required things with AIR for iOS settings, such as a p12 certificate and icon files.
    I then hit publish. After I hit publish, I got this error:
    Error creating files.
    Compilation failed...
    I tried dragging the window to see if there was anything hidden behind the elipses. What can I do to fix this problem?

    note sure if I'm much help other than to CONFIRM it is working for me by using the sdk WITHOUT the compiler. Check out adobe's little note: "Note : Flex users will need to download the original AIR SDK without the new compiler."
    I am using FB 4.7 with AIR 3.6 and seems to compile correctly for iOS.
    Maybe try reinstalling flash builder?
    I honestly don't know if the JRE has anything to do with it... I'm using 1.7 ....to see what JRE you're using, open the Java Control Panel (I right click my java orange icon and hit properties), select the Java tab, then hit "View..."

Maybe you are looking for

  • Need to know how to free space so that I can download a movie?

    I am trying to free storage space but no matter what i do I am not able to do so. I have 64 g on my iPad air, it that I don't have enough storage space to download a movie I have already purchased. It directs me to settings to manage storage but I ca

  • Transparent Patterns with Transparent Backgrounds

    Hi, I'm trying to take a pattern that has transparency in parts and use it for a section I filled with the paint bucket. I can do this easy enough with a background using the 'screen' blending mode. I cannot however figure out how to do it with a tra

  • Send variable to Flash from HTML link

    Does anyone know if it's possible to include a variable in an html link <a> tag that can set a variable in Flash. I have used JavaScript to do this in the past but would prefer not to on this site. I also would prefer not have to use a server side sc

  • Machine shuts down when importing

    Anyone see itunes shut down the machine when trying to import music from a CD?

  • Freehand-EPS: Bounding Box wird von Distiller ignoriert

    Problem ====== * Mit Freehand MX erstelle ich ein einfaches EPS. * Dieses soll mit Acrobat Distiller in ein PDF gewandelt werden. * Obwohl in den verwendeten Joboptions 'Für EPS-Dateien Seitengröße ändern und Grafiken zentrieren' aktiv ist, hat das P