How can change the hair to an image every time and how can save the edit image into albums give me code

HI, I am small iphone developer,i have one problem in my app,please give the guidence to me.
THIS IS MY PROBLEM:
          I HAVE SELECTED ONE PICTURE FROM ALBUMS OR TAKE PICTURE FROM CAM SO I WANT TO CHANGE THE HAIR STYLES PART WITH ANOTHER HAIR STYELS AND SAVE THE PICTURE INTO ALBUMS HOW CAN GENRATE THE CODE OR LOGIC TO ME......I AM TRYING IT FROM 3WEEKS SO COULD YOU PLEASE GIVE ME GUIDENCE TO ME.................

HI, I am small iphone developer,i have one problem in my app,please give the guidence to me.
THIS IS MY PROBLEM:
          I HAVE SELECTED ONE PICTURE FROM ALBUMS OR TAKE PICTURE FROM CAM SO I WANT TO CHANGE THE HAIR STYLES PART WITH ANOTHER HAIR STYELS AND SAVE THE PICTURE INTO ALBUMS HOW CAN GENRATE THE CODE OR LOGIC TO ME......I AM TRYING IT FROM 3WEEKS SO COULD YOU PLEASE GIVE ME GUIDENCE TO ME.................
Sir I am did it by using Objcetive-C code in iphone as fallows
demoprojectViewController.h
#import <UIKit/UIKit.h>
@interface demoprojectViewController : UIViewController<UIImagePickerControllerDelegate,UINavigationControllerDelegate >
    UIImageView *imageView,*editingimage,*maskimage;
     UIButton *takePictureButton;
    UIButton *selectFromCameraRollButton;
    UIView *myview;
@property(nonatomic,retain)IBOutlet UIImageView *imageView;
@property(nonatomic,retain)IBOutlet UIImageView *maskimage;
@property(nonatomic,retain)IBOutlet UIImageView *editingimage;
@property(nonatomic,retain)IBOutlet UIButton *takePictureButton;
@property(nonatomic,retain)IBOutlet UIButton *selectFromCameraRollButton;
@property(nonatomic,retain )IBOutlet UIView *myview;
- (IBAction)getCameraPicture:(id)sender;
- (IBAction)selectExistingPicture;
-(IBAction)pickHair:(id)sender;
-(IBAction)done;
-(IBAction)back;
@end
demoprojectViewController.m
#import "demoprojectViewController.h"
@implementation demoprojectViewController
@synthesize imageView,editingimage,maskimage;
@synthesize takePictureButton;
@synthesize selectFromCameraRollButton;
@synthesize myview;
CGFloat lastScaleFactor = 1;
CGFloat netRotation;
CGPoint netTranslation;
NSArray *images;
int imageIndex = 0;
- (void)didReceiveMemoryWarning
    // Releases the view if it doesn't have a superview.
    [super didReceiveMemoryWarning];
    // Release any cached data, images, etc that aren't in use.
#pragma mark - View lifecycle
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
- (void)viewDidLoad
   // maskimage=[[UIImageView alloc]initWithFrame:CGRectMake(50, 50, 150, 150)];
    //maskimage.image=[UIImage imageNamed:@"1.png"];
    if ([UIImagePickerController isSourceTypeAvailable:
          UIImagePickerControllerSourceTypeCamera]) {
        takePictureButton.hidden = NO;
        selectFromCameraRollButton.hidden = NO;
       UITapGestureRecognizer *tapGesture =
        [[UITapGestureRecognizer alloc]
         initWithTarget:self
         action:@selector(handleTapGesture:)];
        tapGesture.numberOfTapsRequired = 1;
        [maskimage addGestureRecognizer:tapGesture];
        [tapGesture release];
        UIPinchGestureRecognizer *pinchGesture =
        [[UIPinchGestureRecognizer alloc]
         initWithTarget:self
         action:@selector(handlePinchGesture:)];
        [maskimage addGestureRecognizer:pinchGesture];
        [pinchGesture release];
        ///---rotate gesture---
        UIRotationGestureRecognizer *rotateGesture =
        [[UIRotationGestureRecognizer alloc]
         initWithTarget:self
         action:@selector(handleRotateGesture:)];
        [maskimage addGestureRecognizer:rotateGesture];
        [rotateGesture release];
        //---pan gesture---
        UIPanGestureRecognizer *panGesture =
        [[UIPanGestureRecognizer alloc]
         initWithTarget:self
         action:@selector(handlePanGesture:)];
        [maskimage addGestureRecognizer:panGesture];
        [panGesture release];
        //---swipe gesture---
        images = [[NSArray alloc] initWithObjects:
                  @"1.png",
                  @"2.png",
                  @"3.png", nil];
        //---right swipe (default)---
        UISwipeGestureRecognizer *swipeGesture =
        [[UISwipeGestureRecognizer alloc]
         initWithTarget:self
         action:@selector(handleSwipeGesture:)];
        [maskimage addGestureRecognizer:swipeGesture];
        [swipeGesture release];
        //---left swipe---
        UISwipeGestureRecognizer *swipeLeftGesture =
        [[UISwipeGestureRecognizer alloc]
         initWithTarget:self
         action:@selector(handleSwipeGesture:)];
        swipeLeftGesture.direction = UISwipeGestureRecognizerDirectionLeft;
        [maskimage addGestureRecognizer:swipeLeftGesture];
        [swipeLeftGesture release];
    [super viewDidLoad];
-(IBAction) handleTapGesture:(UIGestureRecognizer *) sender {
    if (sender.view.contentMode == UIViewContentModeScaleAspectFit)
        sender.view.contentMode = UIViewContentModeCenter;
    else
        sender.view.contentMode = UIViewContentModeScaleAspectFit;
-(IBAction) handlePinchGesture:(UIGestureRecognizer *) sender {
    CGFloat factor = [(UIPinchGestureRecognizer *) sender scale];
    if (factor > 1) {
        //---zooming in---
        sender.view.transform = CGAffineTransformMakeScale(
                                                           lastScaleFactor + (factor-1),
                                                           lastScaleFactor + (factor-1));
    } else {
        //---zooming out---
        sender.view.transform = CGAffineTransformMakeScale(
                                                           lastScaleFactor * factor,
                                                           lastScaleFactor * factor);
    if (sender.state == UIGestureRecognizerStateEnded){
        if (factor > 1) {
            lastScaleFactor += (factor-1);
        } else {
            lastScaleFactor *= factor;
//---handle rotate gesture---
-(IBAction) handleRotateGesture:(UIGestureRecognizer *) sender {
    CGFloat rotation = [(UIRotationGestureRecognizer *) sender rotation];
    CGAffineTransform transform = CGAffineTransformMakeRotation(
                                                                rotation + netRotation);
    sender.view.transform = transform;
    if (sender.state == UIGestureRecognizerStateEnded){
        netRotation += rotation;
//---handle pan gesture---
-(IBAction) handlePanGesture:(UIGestureRecognizer *) sender {
    CGPoint translation =
    [(UIPanGestureRecognizer *) sender translationInView:maskimage];
    sender.view.transform = CGAffineTransformMakeTranslation(
                                                             netTranslation.x + translation.x,
                                                             netTranslation.y + translation.y);
    if (sender.state == UIGestureRecognizerStateEnded){
        netTranslation.x += translation.x;
        netTranslation.y += translation.y;
-(IBAction) handleSwipeGesture:(UIGestureRecognizer *) sender {
    UISwipeGestureRecognizerDirection direction =
    [(UISwipeGestureRecognizer *) sender direction];
    switch (direction) {
        case UISwipeGestureRecognizerDirectionUp:
            NSLog(@"up");
            break;
        case UISwipeGestureRecognizerDirectionDown:
            NSLog(@"down");
            break;
        case UISwipeGestureRecognizerDirectionLeft:
            imageIndex++;
            break;
        case UISwipeGestureRecognizerDirectionRight:
            imageIndex -- ;
            break;
        default:
            break;
    imageIndex = (imageIndex < 0) ? ([images count] - 1):
    imageIndex % [images count];
    imageView.image = [UIImage imageNamed:
                       [images objectAtIndex:imageIndex]];
#pragma mark -
- (IBAction)getCameraPicture:(id)sender {
    UIImagePickerController *picker =
    [[UIImagePickerController alloc] init];
    picker.delegate = self;
    //picker.allowsImageEditing = YES;
    picker.sourceType = (sender == takePictureButton) ?
    UIImagePickerControllerSourceTypeCamera :
    UIImagePickerControllerSourceTypeSavedPhotosAlbum;
    [self presentModalViewController:picker animated:YES];
    [maskimage removeFromSuperview];
    [picker release];
- (IBAction)selectExistingPicture {
    if ([UIImagePickerController isSourceTypeAvailable:
         UIImagePickerControllerSourceTypePhotoLibrary]) {
        UIImagePickerController *picker =
        [[UIImagePickerController alloc] init];
        picker.delegate = self;
        picker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
        [self presentModalViewController:picker animated:YES];
        [maskimage removeFromSuperview];
        [picker release];
    else {
        UIAlertView *alert = [[UIAlertView alloc]
                              initWithTitle:@"Error accessing photo library"
                              message:@"Device does not support a photo library"
                              delegate:nil
                              cancelButtonTitle:@"Drat!"
                              otherButtonTitles:nil];
        [alert show];
        [alert release];
#pragma mark -
- (void)imagePickerController:(UIImagePickerController *)picker
        didFinishPickingImage:(UIImage *)image
                  editingInfo:(NSDictionary *)editingInfo {
    imageView.image = image;
    [picker dismissModalViewControllerAnimated:YES];
- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker {
    [picker dismissModalViewControllerAnimated:YES];
- (IBAction)btnSave_Clicked:(id)sender;
    UIImageWriteToSavedPhotosAlbum(editingimage.image, nil, nil, nil);
    //UIImageWriteToSavedPhotosAlbum(imageView.image, nil, nil, nil);
    UIAlertView *alert = [[UIAlertView alloc]initWithTitle:@"Success" message:@"Image saved successfully to iPhone photo albums..." delegate:nil cancelButtonTitle:@"Ok" otherButtonTitles:nil];
    [alert show];
    [alert release];
-(IBAction)pickHair:(id)sender;
       //[maskimage setMultipleTouchEnabled:YES];
   // [maskimage setUserInteractionEnabled:YES];
    //[maskimage setContentMode:UIViewContentModeScaleAspectFit];
    maskimage.image=[UIImage imageNamed:@"1.png"];
    [imageView addSubview:maskimage];
-(IBAction)done
    NSLog(@"hiafjdkfj");
    UIGraphicsBeginImageContext(imageView.image.size); 
    CGRect rect1 = CGRectMake(netTranslation.x,netTranslation.y,maskimage.image.size.width , maskimage.image.size.height);
    CGRect rect = CGRectMake(0, 0, imageView.image.size.width, imageView.image.size.height);
    [imageView.image drawInRect:rect]; 
    [maskimage.image drawInRect:rect1]; 
    UIImage *resultingImage = UIGraphicsGetImageFromCurrentImageContext(); 
    UIGraphicsEndImageContext(); 
    [editingimage setImage:resultingImage];
    [myview addSubview:editingimage];
    [self.view addSubview:myview];
-(IBAction)back
    [myview removeFromSuperview];
    //[editingimage removeFromSuperview];
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event {
    UITouch *touch = [[event allTouches] anyObject];
    CGPoint location = [touch locationInView:touch.view];
    maskimage.center = location;
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event {
    [self touchesBegan:touches withEvent:event];
- (void)viewDidUnload
    self.imageView = nil;
    self.maskimage=nil;
    self.takePictureButton = nil;
    self.selectFromCameraRollButton = nil;
    [super viewDidUnload];
    // Release any retained subviews of the main view.
    // e.g. self.myOutlet = nil;
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceO rientation
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
- (void)dealloc {
    [imageView release];
    [images release];
    [takePictureButton release];
    [selectFromCameraRollButton release];
    [super dealloc];
@end
but i can not put the hair to the proper place means on edit image when am saving the image please help meee

Similar Messages

  • How do I force the player to open in the center of my screen every time, and not way on the side?

    How do I force the player to open in the center of my screen every time, and not way on the side?

    Solution is very simple, Just choose firefox as your default browser.
    Follow these steps :
    * Open '''Options'''
    * Click on '''Advanced'''
    * Now open '''General''' tab and click on '''Make FireFox The Default Browser'''. See Image below.

  • HT5312 Am I do not know how to change my rescue email as it is wrong and in can not remember my answers to my security questions so I want to change them but I can't as I have the wrong rescue email anyone know how to change your rescue email

    Am I do not know how to change my rescue email as it is wrong and in can not remember my answers to my security questions so I want to change them but I can't as I have the wrong rescue email anyone know how to change your rescue email

    You won't be able to change it until you can answer 2 of your questions - you will need to contact iTunes Support / Apple to get the questions reset.
    Contacting Apple about account security : http://support.apple.com/kb/HT5699
    When they've been reset you can then use the steps half-way down the page that you posted from to update your rescue email address for potential future use.

  • I have an Iphone 3gs. I can't get it to sync. Every time I try I get the response 'waiting for changes to be applied'. I've tried doing a reset but it still won't sync. Any ideas?

    I have an Iphone 3GS. I can't get it to sync. Every time I try I get the response 'waiting for changes to be applied'. I do not have voice memos. Any suggestions?

    This is a user forum, not a channel to address Adobe. As your fellow users and volunteers, we'll be happy to help you if we can.
    You can download the CS6 trial version just like anybody else.
    Once you download it, you can install it, input your serial number, register it and apply all necessary updates.
    An alternative, if you know how to access your Adobe account, under My Products you'll find your Photoshop CS6 registration, next to which you should find a link to download CS6 if you originally bought it as a download

  • In which method i can upload data to two transactions at a time and how ?

    Hi,
    Can any body tell me  <b>In which method i can upload datas to two transactions at a time and how</b>
    Pls tell me the steps if possible.
    Thanks
    Prabhudutta

    Hi,
    I hope u are talking abt BDC,
    If it is BDC's Then you can use both the methods.
    Call Transaction or
    Session Method.
    Ex ..if already a vendor exists then call transaction xk02
    if vendor no is not yet created then call transaction xk01.
    hope this helps.
    santhosh

  • I bought a new mac and i migrate with time machine...but the backup was a little bit old and weren't save the latest modify i made in my website.. is it possible take the uploded site in iweb? sorry but i don't speak english very well.

    I bought a new mac and i migrate with time machine...but the backup was a little bit old and weren't save the latest modify i made in my website.. is it possible take the uploded site in iweb? sorry but i don't speak english very well

    But what can I cut and paste? the html code or image and text directly?
    depend on which template you used.
    if you use iweb photos page template then you need to search for my photos page solutions in this forum.
    @ot: cut and paste from the online version
    @rw: You can drag an image from the website to the Desktop
    have your try your methods in iweb photos page?

  • How exactly can we use iCloud? If I have an Iphone4s and Macbookair, is it the same account? Cause every time I try to do the back up file its failed...am I having a two different accounts here. In iPhone and macbook

    Hi I am new with apple. So many things I need to learn about it. Espcially for icloud. Its interesting. But unfortunately I don't really know how to utilise it. Do I have 2 iclouds since I have iphone 4s and Macbookair? Are they different account? or can I merge it? Cause as what I can see in my mailbox for icloud, I have 2 accounts there. Please help me with this.

         Hi Rosdy, to get the most out of iCloud it is recommended that you use the same account between devices. Thus whenever you buy something on your phone it becomes accessible from your laptop regardless of whether your synced it over usb or not. *
         For more information on iCloud usage please click here.
    * This feature requires that both devices be on the same WiFi network.

  • How to change to Icon View for some folders but and List View for the rest

    I've had a bear of a time with View options in my folders. I'd like some folders to be in Icon view and other to be in List view. For what ever reason if I change the view option of one folder it changes the view option of EVERY folder. What can I do to make this happen?

    I was about to ask the same. I'd like to use icon view normally, but list view for folders containing lots of text documents. It looks like the solution is using View > Show View Options, change the folder to the view you want, and then tick the box at the top fo the dialogue for "Always open in __ view".
    Message was edited by: Adrian Bolt
    Message was edited by: Adrian Bolt

  • My ipod touch 4th gen is stuck at the ipod logo for a long time, and i know about the recovery state process, but i can't do that because my power button doesn't work.

    Does anyone know how to fix this? this is really annoying and it takes a loooooooooong time to turn on.

    Try:                                               
    - iOS: Not responding or does not turn on
    When it says place the iPod in recoverymode,
    Place the iPod in recovery mode using one of these programs:
    For PC
    RecBoot: Easy Way to Put iPhone into Recovery Mode
    or
    http://joshuabailey1997.wordpress.com/2010/09/02/recboot-v1-3/
    If necessary:
    Download QTMLClient.dll & iTunesMobileDevice.dll for RecBoot
    and                                           
    RecBoot tip
    RecBoot may have problems on 64X windows, then try:       
    Tenorshare ReiBoot – Enter & Exit iPhone, iPad, iPod Recovery Mode with a Single Click
    For MAC or PC       
    The Firmware Umbrella - TinyUmbrella
    Installs blootware on PC too
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable       
    - Try on another computer                            
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
    Apple Retail Store - Genius Bar                                     

  • I get the spinning wheel of death every time I try to open the desktop

    How can I fix the spinning wheel of death when trying to open the desktop /screensaver icon in system preferences?

    Welcome to the Apple Support Communities
    First, open Disk Utility, select Macintosh HD in the sidebar and repair permissions.
    If it doesn't work, open Finder, select Go menu > Go to Folder, type ~/Library/Preferences, delete "com.apple.desktop.plist" and "com.apple.systempreferences.plist" and restart

  • Opening premiere elements every time I try to access the video editor I get shunted to a trial program when I already purchased PE12 how to I get rid of the trial request

    I purchased Premiere Elements 12 in January 2014 - now when trying to open the video editor I get shunted to a trial request - how do I avoid this trial request coming up every time and just go to the video editor which I already purchased?@

    Mooivoel
    Are you working with an Internet connect on?
    Have you used the program between January 2014 and now July 2014?
    When you get these messages are you responding by clicking on the License this Product option or just ignoring it?
    If the problem persists then I would contact Adobe via Adobe Chat
    Contact Customer Care
    If any further questions on this or need clarification, please do not hesitate to ask.
    We will be looking forward to learning of your progress.
    Thank you.
    ATR

  • ITunes crashes every time I try to access the iTunes store

    Anyone else getting the error below when opening the iTunes store? Happens every time I try to go the iTunes store home page. Interesting thing is I can still get App Store updates (for my iPod Touch) via iTunes, even though those are going to the store. One of the primary things I know is different in my environment is that I had to restore Java JDK 1.4 and 1.5 (I'm a Java developer and need those to do my work) so I undid Apple's stupid soft links that point 1.4 and 1.5 to 1.6. Even so, I've reverted my changes and it still doesn't work.
    The one feature of this constant crashing is that I save money by not buying any music and apps on iTunes. Maybe the crashing is a feature...
    Process: iTunes [50336]
    Path: /Applications/iTunes.app/Contents/MacOS/iTunes
    Identifier: com.apple.iTunes
    Version: 9.1.1 (9.1.1)
    Build Info: iTunes-9111101~2
    Code Type: X86 (Native)
    Parent Process: launchd [526]
    Date/Time: 2010-04-28 08:53:14.485 -0400
    OS Version: Mac OS X 10.6.3 (10D573)
    Report Version: 6
    Interval Since Last Report: 821311 sec
    Crashes Since Last Report: 7
    Per-App Interval Since Last Report: 509 sec
    Per-App Crashes Since Last Report: 1
    Anonymous UUID: 54595750-E747-4499-BDAA-343F7818241B
    Exception Type: EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 com.apple.CoreFoundation 0x9489dd04 CFRelease + 196
    1 com.apple.JavaVM 0x1a26d4da CreateInstalledFrameworkJVMInformation + 407
    2 com.apple.JavaVM 0x1a26a00c CreateListOfAllInstalledJVMs + 30
    3 com.apple.JavaVM 0x1a26d147 CreateCompleteJVMListSortedByUserPrefsForTask + 90
    4 com.apple.JavaVM 0x1a2694f3 JVMCreateJVMListOfCurrentArchitectureForTask + 20
    5 com.apple.JavaPluginCocoa 0x1665da09 0x1665d000 + 2569
    6 com.apple.JavaPluginCocoa 0x1665dbfe BP_CreatePluginMIMETypesPreferences + 102
    7 com.apple.WebKit 0x905986f4 -[WebBasePluginPackage createPropertyListFile] + 52
    8 com.apple.WebKit 0x90598665 -[WebBasePluginPackage pListForPath:createFile:] + 149
    9 com.apple.WebKit 0x90597814 -[WebBasePluginPackage getPluginInfoFromPLists] + 436
    10 com.apple.WebKit 0x9059704f -[WebPluginPackage initWithPath:] + 287
    11 com.apple.WebKit 0x90596ed6 +[WebBasePluginPackage pluginWithPath:] + 70
    12 com.apple.WebKit 0x90596dd0 -[WebPluginDatabase(Internal) _scanForNewPlugins] + 480
    13 com.apple.WebKit 0x90596805 -[WebPluginDatabase refresh] + 101
    14 com.apple.WebKit 0x90596595 +[WebPluginDatabase sharedDatabase] + 181
    15 com.apple.WebKit 0x905964c5 -[WebViewFactory pluginsInfo] + 37
    16 com.apple.WebCore 0x975e249a WebCore::PluginData::initPlugins() + 186
    17 com.apple.WebCore 0x975e234a WebCore::PluginData::PluginData(WebCore::Page const*) + 74
    18 com.apple.WebCore 0x975e22ba WebCore::Page::pluginData() const + 90
    19 com.apple.WebCore 0x975e2211 WebCore::PluginArray::length() const + 17
    20 com.apple.WebCore 0x975e2186 WebCore::jsPluginArrayLength(JSC::ExecState*, JSC::Identifier const&, JSC::PropertySlot const&) + 38
    21 com.apple.JavaScriptCore 0x92c99bb8 JSC::JSValue::get(JSC::ExecState*, JSC::Identifier const&, JSC::PropertySlot&) const + 344
    22 ??? 0x1dd090e0 0 + 500207840
    23 com.apple.WebCore 0x97ac93a0 WebCore::JSPluginArray::~JSPluginArray() + 0
    24 ??? 0x000007e9 0 + 2025
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x923beb42 kevent + 10
    1 libSystem.B.dylib 0x923bf25c dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x923be719 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x923be4be dispatch_workerthread2 + 240
    4 libSystem.B.dylib 0x923bdf41 pthreadwqthread + 390
    5 libSystem.B.dylib 0x923bdd86 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x923982fa machmsgtrap + 10
    1 libSystem.B.dylib 0x92398a67 mach_msg + 68
    2 com.apple.CoreFoundation 0x948ce00f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x948cd0f4 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x948d3034 CFRunLoopRun + 84
    5 com.apple.iTunes 0x0034f21c 0x1000 + 3465756
    6 libSystem.B.dylib 0x923c5a19 pthreadstart + 345
    7 libSystem.B.dylib 0x923c589e thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x92398342 semaphorewait_signaltrap + 10
    1 libSystem.B.dylib 0x923c5eb8 pthread_condwait + 1089
    2 libSystem.B.dylib 0x9240e42f pthreadcondwait + 48
    3 com.apple.iTunes 0x0001ceb3 0x1000 + 114355
    4 com.apple.iTunes 0x0001c407 0x1000 + 111623
    5 libSystem.B.dylib 0x923c5a19 pthreadstart + 345
    6 libSystem.B.dylib 0x923c589e thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x923b7286 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x9490d82d __CFSocketManager + 1085
    2 libSystem.B.dylib 0x923c5a19 pthreadstart + 345
    3 libSystem.B.dylib 0x923c589e thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x9245f46a accept$NOCANCEL$UNIX2003 + 10
    1 libSystem.B.dylib 0x9245e342 accept + 32
    2 com.apple.iTunes 0x003c942c 0x1000 + 3965996
    3 com.apple.iTunes 0x0042c0f9 0x1000 + 4370681
    4 com.apple.iTunes 0x0042c1c7 0x1000 + 4370887
    5 libSystem.B.dylib 0x923c5a19 pthreadstart + 345
    6 libSystem.B.dylib 0x923c589e thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x9245f46a accept$NOCANCEL$UNIX2003 + 10
    1 libSystem.B.dylib 0x9245e342 accept + 32
    2 com.apple.iTunes 0x003c942c 0x1000 + 3965996
    3 com.apple.iTunes 0x0042c0f9 0x1000 + 4370681
    4 com.apple.iTunes 0x0042c1c7 0x1000 + 4370887
    5 libSystem.B.dylib 0x923c5a19 pthreadstart + 345
    6 libSystem.B.dylib 0x923c589e thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x923982fa machmsgtrap + 10
    1 libSystem.B.dylib 0x92398a67 mach_msg + 68
    2 com.apple.CoreFoundation 0x948ce00f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x948cd0f4 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x948d3034 CFRunLoopRun + 84
    5 com.apple.iTunes 0x0034f21c 0x1000 + 3465756
    6 libSystem.B.dylib 0x923c5a19 pthreadstart + 345
    7 libSystem.B.dylib 0x923c589e thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x923982fa machmsgtrap + 10
    1 libSystem.B.dylib 0x92398a67 mach_msg + 68
    2 com.apple.CoreFoundation 0x948ce00f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x948cd0f4 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x948d3034 CFRunLoopRun + 84
    5 com.apple.iTunes 0x0034f21c 0x1000 + 3465756
    6 libSystem.B.dylib 0x923c5a19 pthreadstart + 345
    7 libSystem.B.dylib 0x923c589e thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x923982fa machmsgtrap + 10
    1 libSystem.B.dylib 0x92398a67 mach_msg + 68
    2 com.apple.CoreFoundation 0x948ce00f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x948cd0f4 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x948d3034 CFRunLoopRun + 84
    5 com.apple.iTunes 0x0034f21c 0x1000 + 3465756
    6 libSystem.B.dylib 0x923c5a19 pthreadstart + 345
    7 libSystem.B.dylib 0x923c589e thread_start + 34
    Thread 10:
    0 libSystem.B.dylib 0x923982fa machmsgtrap + 10
    1 libSystem.B.dylib 0x92398a67 mach_msg + 68
    2 com.apple.CoreFoundation 0x948ce00f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x948cd0f4 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x948d3034 CFRunLoopRun + 84
    5 com.apple.iTunes 0x0034f21c 0x1000 + 3465756
    6 libSystem.B.dylib 0x923c5a19 pthreadstart + 345
    7 libSystem.B.dylib 0x923c589e thread_start + 34
    Thread 11: JavaScriptCore: FastMalloc scavenger
    0 libSystem.B.dylib 0x923c6262 _semwaitsignal + 10
    1 libSystem.B.dylib 0x923c5f1e pthread_condwait + 1191
    2 libSystem.B.dylib 0x923c7bb8 pthreadcondwait$UNIX2003 + 73
    3 com.apple.JavaScriptCore 0x92d623e6 ***::TCMalloc_PageHeap::scavengerThread() + 614
    4 libSystem.B.dylib 0x923c589e thread_start + 34
    Thread 12:
    0 libSystem.B.dylib 0x923982fa machmsgtrap + 10
    1 libSystem.B.dylib 0x92398a67 mach_msg + 68
    2 com.apple.CoreFoundation 0x948ce00f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x948cd0f4 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x948d3034 CFRunLoopRun + 84
    5 com.apple.iTunes 0x0034f21c 0x1000 + 3465756
    6 libSystem.B.dylib 0x923c5a19 pthreadstart + 345
    7 libSystem.B.dylib 0x923c589e thread_start + 34
    Thread 13:
    0 libSystem.B.dylib 0x923982fa machmsgtrap + 10
    1 libSystem.B.dylib 0x92398a67 mach_msg + 68
    2 com.apple.CoreFoundation 0x948ce00f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x948cd0f4 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x948d3034 CFRunLoopRun + 84
    5 com.apple.iTunes 0x0034f21c 0x1000 + 3465756
    6 libSystem.B.dylib 0x923c5a19 pthreadstart + 345
    7 libSystem.B.dylib 0x923c589e thread_start + 34
    Thread 14:
    0 libSystem.B.dylib 0x923982fa machmsgtrap + 10
    1 libSystem.B.dylib 0x92398a67 mach_msg + 68
    2 com.apple.CoreFoundation 0x948ce00f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x948cd0f4 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x948d3034 CFRunLoopRun + 84
    5 com.apple.iTunes 0x0034f21c 0x1000 + 3465756
    6 libSystem.B.dylib 0x923c5a19 pthreadstart + 345
    7 libSystem.B.dylib 0x923c589e thread_start + 34
    Thread 15: Dispatch queue: com.apple.CFURLCACHEworkqueue
    0 libsqlite3.dylib 0x904d23cf balance_nonroot + 2175
    1 libsqlite3.dylib 0x904d1620 balance + 96
    2 libsqlite3.dylib 0x904e783c sqlite3BtreeInsert + 1228
    3 libsqlite3.dylib 0x9053e30d sqlite3VdbeExec + 9421
    4 libsqlite3.dylib 0x90548857 sqlite3_step + 1639
    5 com.apple.CFNetwork 0x91dc1e8f _CFURLCache::StepSQLStatementToCompletion(sqlite3stmt*, long) + 35
    6 com.apple.CFNetwork 0x91dc0e89 _CFURLCache::ExecuteSQLInsert(CFCachedURLResponse const*, __CFString const*, _CFURLRequest const*) + 1395
    7 com.apple.CFNetwork 0x91daa959 ProcessCacheTasks(__CFURLCache*) + 484
    8 com.apple.CFNetwork 0x91daa1ba _CFURLCacheTimerCallback(void*) + 211
    9 com.apple.CFNetwork 0x91dc07c7 _CFURLCacheCreate_block_invoke3 + 65
    10 libSystem.B.dylib 0x923ccc58 dispatch_source_latch_andcall + 62
    11 libSystem.B.dylib 0x923bfb92 dispatch_sourceinvoke + 210
    12 libSystem.B.dylib 0x923be719 dispatch_queueinvoke + 163
    13 libSystem.B.dylib 0x923bec55 dispatch_queuedrain + 258
    14 libSystem.B.dylib 0x923be6a8 dispatch_queueinvoke + 50
    15 libSystem.B.dylib 0x923be4be dispatch_workerthread2 + 240
    16 libSystem.B.dylib 0x923bdf41 pthreadwqthread + 390
    17 libSystem.B.dylib 0x923bdd86 start_wqthread + 30
    Thread 16:
    0 libSystem.B.dylib 0x923982fa machmsgtrap + 10
    1 libSystem.B.dylib 0x92398a67 mach_msg + 68
    2 com.apple.CoreFoundation 0x948ce00f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x948cd0f4 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x948d3034 CFRunLoopRun + 84
    5 com.apple.iTunes 0x0034f21c 0x1000 + 3465756
    6 libSystem.B.dylib 0x923c5a19 pthreadstart + 345
    7 libSystem.B.dylib 0x923c589e thread_start + 34
    Thread 17:
    0 libSystem.B.dylib 0x923bdbd2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x923be168 pthreadwqthread + 941
    2 libSystem.B.dylib 0x923bdd86 start_wqthread + 30
    Thread 18:
    0 libSystem.B.dylib 0x923bdbd2 _workqkernreturn + 10
    1 libSystem.B.dylib 0x923be168 pthreadwqthread + 941
    2 libSystem.B.dylib 0x923bdd86 start_wqthread + 30
    Thread 19:
    0 libSystem.B.dylib 0x923982fa machmsgtrap + 10
    1 libSystem.B.dylib 0x92398a67 mach_msg + 68
    2 com.apple.CoreFoundation 0x948ce00f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x948cd0f4 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x948ccf21 CFRunLoopRunInMode + 97
    5 com.apple.Foundation 0x91721434 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6 com.apple.Foundation 0x916e88dc -[NSThread main] + 45
    7 com.apple.Foundation 0x916e888c _NSThread__main_ + 1499
    8 libSystem.B.dylib 0x923c5a19 pthreadstart + 345
    9 libSystem.B.dylib 0x923c589e thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x9489dc4d ecx: 0x0016c5d0 edx: 0x00000001
    edi: 0x1b9711a0 esi: 0x00000000 ebp: 0xbfffccc8 esp: 0xbfffccb0
    ss: 0x0000001f efl: 0x00000246 eip: 0x9489dd04 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x579c8000
    Binary Images:
    0x1000 - 0xc48fe8 com.apple.iTunes 9.1.1 (9.1.1) <DD579DA9-3B98-7E41-0654-34CC0E85FA6D> /Applications/iTunes.app/Contents/MacOS/iTunes
    0xe8b000 - 0xe93ff7 com.apple.ipodsynchronization 3.0 (116) <B41B2240-34E9-4A5E-A210-F02D99E3C00E> /System/Library/PrivateFrameworks/iPodSync.framework/Versions/A/iPodSync
    0xe9b000 - 0xea0ff7 com.apple.iPod 1.6 (17) <4CCD2720-D270-C0D2-1E14-1374779C2401> /System/Library/PrivateFrameworks/iPod.framework/Versions/A/iPod
    0xea6000 - 0xf2dfe3 com.apple.iTunes.iPodUpdater 9.0 (9.0) <8DC49244-9DB1-69B5-59B2-9DD760235C74> /Applications/iTunes.app/Contents/Frameworks/iPodUpdater.framework/Versions/A/i PodUpdater
    0xf79000 - 0xfb9ff7 com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x1520000 - 0x15d5fe7 libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <0B69B1F5-3440-B0BF-957F-E0ADD49F13CB> /usr/lib/libcrypto.0.9.7.dylib
    0x3000000 - 0x4081ff7 com.apple.CoreFP 1.7.16 (1.7) <D9FBCCA9-7BAB-BD02-394A-E889033088C9> /System/Library/PrivateFrameworks/CoreFP.framework/CoreFP
    0x419a000 - 0x419bfff +com.ecamm.pluginloader Ecamm Plugin Loader v1.0.5 (1.0.5) /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0x41a1000 - 0x41a1ffd +com.yazsoft.SDEnhancer ??? (1.0) <C3722E3E-2226-4B25-5FAE-7FBD460B0A22> /Library/InputManagers/SpeedDownload Enhancer/SpeedDownloadEnhancer.bundle/Contents/MacOS/SpeedDownloadEnhancer
    0x41a6000 - 0x41a7fff +com.1passwd.InputManager 2.5.8 (5968) <4A20D22A-BB25-15AC-6E72-8631964A8239> /Library/InputManagers/1PasswdIM/1PasswdIM.bundle/Contents/MacOS/1PasswdIM
    0x41f8000 - 0x41f8ff7 libmx.A.dylib 315.0.0 (compatibility 1.0.0) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
    0x437e000 - 0x43caff3 com.apple.mobiledevice 319.14 (319.14) <E7AE7289-8D5C-AB71-E527-78A60AF9BED4> /System/Library/PrivateFrameworks/MobileDevice.framework/MobileDevice
    0x43e8000 - 0x43edff7 com.apple.AppleMPEG2Codec 1.0.1 (220) <6FDFF3C8-7ECE-CB74-1374-9C0230C54F78> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x4700000 - 0x4726fff libssl.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <32607000-7573-6D51-ABC3-420B4A0D6629> /usr/lib/libssl.0.9.7.dylib
    0x15d59000 - 0x160d8ff3 com.apple.RawCamera.bundle 3.0.2 (527) <981AB834-6C34-6FA5-F886-01DF06C56609> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x163ca000 - 0x163ccff7 com.apple.MLTEFile 3.2.0 (3.2.0) <71F70505-F986-B8E1-7C0D-278DF22742ED> /System/Library/CoreServices/MLTEFile.bundle/Contents/MacOS/MLTEFile
    0x163d2000 - 0x163d3ff7 com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x163dd000 - 0x163e1ff3 com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <C36F9194-6DB6-0AA8-4839-71191EEBAC65> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x163e6000 - 0x163ecffb com.apple.audio.AppleHDAHALPlugIn 1.8.4 (1.8.4fc3) <89AF8F46-15E4-2066-BDDB-05E92C1368D4> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x163f1000 - 0x163f6ff7 com.apple.QuartzComposer.iTunesPlugIn 1.2 (16) <8511A037-AFDE-5D1A-67DA-1B4837432D85> /Library/iTunes/iTunes Plug-ins/Quartz Composer Visualizer.bundle/Contents/MacOS/Quartz Composer Visualizer
    0x1665d000 - 0x1665dff7 com.apple.JavaPluginCocoa 13.1.0 (13.1.0) <C2C8B385-DB44-1D5E-5221-9ED1BA43930B> /System/Library/Frameworks/JavaVM.framework/Versions/A/Resources/JavaPluginCoco a.bundle/Contents/MacOS/JavaPluginCocoa
    0x1a268000 - 0x1a26fff7 com.apple.JavaVM 13.1.0 (13.1.0) <2842C4EE-869D-81E6-E771-062F583A1044> /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM
    0x1ab90000 - 0x1adb0feb com.apple.audio.codecs.Components 2.0.1 (2.0.1) <3B1071C3-1AB4-0F6A-2CFC-7A258A0C2C46> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x1b89c000 - 0x1b8d8fe3 com.apple.QuickTimeFireWireDV.component 7.6.6 (1729) <E282B44A-AF33-668B-315A-1C18EC25682B> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x1ba00000 - 0x1bbf6ff3 +net.telestream.wmv.import 2.1.2.72 (2.1.2.72) /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x1bc27000 - 0x1bdd8fce +net.telestream.wmv.advanced 2.1.2.72 (2.1.2.72) /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x1be1b000 - 0x1be70fef com.apple.AppleProResDecoder 2.0 (223) <793BA98A-2E7D-1C39-998D-805B60034DF4> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x1bea8000 - 0x1bf22fe3 com.apple.AppleVAH264HW.component 2.0 (1.0) <0FC65A8D-3E68-BC03-284B-EFACF6915686> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x1bfe5000 - 0x1bffffc3 com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x1c004000 - 0x1c01dfe7 com.apple.applepixletvideo 1.2.19 (1.2d19) <4A68731C-8071-6CF5-012C-40F00CD1333A> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x70000000 - 0x700caffb com.apple.audio.units.Components 1.6.1 (1.6.1) <AEC44B68-A209-4093-36B0-7B740361249B> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x9002d000 - 0x90031ff7 libGIF.dylib ??? (???) <03880BA1-7A86-0F2B-617A-C66B1D05DD70> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x90032000 - 0x90448ff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x90492000 - 0x904b2fe7 libresolv.9.dylib 40.0.0 (compatibility 1.0.0) <03019DD7-993D-AC88-6636-179F92F315C4> /usr/lib/libresolv.9.dylib
    0x904b3000 - 0x9056cfe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x90572000 - 0x90656ff7 com.apple.WebKit 6531.22 (6531.22.7) <87C81D6F-77B1-C517-93E6-5DEF214326A7> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x90657000 - 0x90705ff3 com.apple.ink.framework 1.3.3 (107) <57B54F6F-CE35-D546-C7EC-DBC5FDC79938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x90731000 - 0x90770ff7 com.apple.ImageCaptureCore 1.0.1 (1.0.1) <A03C5D7E-54CD-D56D-E120-9B35EBC9D8F1> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x907d1000 - 0x907deff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x907df000 - 0x90807ff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x90808000 - 0x9082fff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x90830000 - 0x90831ff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) <959DFFAE-A06B-7FF6-B713-B2076893EBBD> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90832000 - 0x90866ff7 libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <5FEC74CA-1D3C-B6E3-E046-3970095C44BC> /usr/lib/libssl.0.9.8.dylib
    0x90867000 - 0x908a8ff7 libRIP.A.dylib 543.33.0 (compatibility 64.0.0) <C6E50C7E-EBEE-32AF-FF07-8E325E21A838> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x90951000 - 0x90954ff7 libCGXType.A.dylib 543.33.0 (compatibility 64.0.0) <69BE578C-A364-A150-35E3-53EE00F56F05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90955000 - 0x90977fef com.apple.DirectoryService.Framework 3.6 (621.3) <05FFDBDB-F16B-8AC0-DB42-986965FCBD95> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90978000 - 0x90a10fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x90a46000 - 0x90a8ffe7 libTIFF.dylib ??? (???) <E45B169E-253E-E865-1501-97777D2702F2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x90a90000 - 0x90b40ff3 com.apple.ColorSync 4.6.3 (4.6.3) <68B6A1B9-86CF-0C5A-7D63-56ED4BB2EB5B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x90b41000 - 0x90bb8ff3 com.apple.backup.framework 1.2.2 (1.2.2) <FE4C6311-EA63-15F4-2CF7-04CF7734F434> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x90bb9000 - 0x90cfbff7 com.apple.syncservices 5.2 (578.3) <16A29689-1A80-3065-C4E7-AEC6A3C05C2E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x90cfc000 - 0x90d2dff7 libGLImage.dylib ??? (???) <AF110892-B10A-5B61-F898-21FB2BCE63BF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x90d2e000 - 0x90e65ff7 com.apple.CoreAUC 6.04.00 (6.04.00) <0551FB8D-0894-B40B-B924-4AF51E3648AF> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x90e66000 - 0x90ea1fe7 com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x91023000 - 0x91285ff3 com.apple.security 6.1.1 (37594) <1AC07F75-7E27-9662-21DA-B05DFF047B26> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91286000 - 0x91289fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x9128a000 - 0x9128cff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x9128d000 - 0x912e5fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x91305000 - 0x91305ff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x91313000 - 0x91353ff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91354000 - 0x9164dfef com.apple.QuickTime 7.6.6 (1729) <4C99ED7D-5A4B-E41E-602D-2D01A99168CD> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9164e000 - 0x916a4ff7 com.apple.MeshKitRuntime 1.1 (49.2) <F1EAE9EC-2DA3-BAFD-0A8C-6A3FFC96D728> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x916d2000 - 0x91942ffb com.apple.Foundation 6.6.2 (751.21) <DA7A173A-4435-ECD6-F4AF-977D722FD2F7> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x91943000 - 0x9194aff3 com.apple.print.framework.Print 6.1 (237.1) <97AB70B6-C653-212F-CFD3-E3816D0F5C22> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x91a56000 - 0x91aa7ff7 com.apple.HIServices 1.8.0 (???) <10C85B88-C6AF-91DB-2546-34661BA35AC5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91aa8000 - 0x91adbff7 com.apple.AE 496.4 (496.4) <7F34EC47-8429-3077-8158-54F5EA908C66> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x91b19000 - 0x91b66feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x91b67000 - 0x91b67ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x91b68000 - 0x91b75fe7 libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6008C8AC-8DB1-B38B-52A9-9133533B0DA2> /usr/lib/libbz2.1.0.dylib
    0x91b76000 - 0x91d51ff3 libType1Scaler.dylib ??? (???) <944F686E-9CC2-03F0-A139-8F322F0AC49F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x91d52000 - 0x91d58fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x91d59000 - 0x91d9dff3 com.apple.coreui 2 (114) <29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x91da6000 - 0x91e4fff7 com.apple.CFNetwork 454.9.4 (454.9.4) <2F8B5BA5-099F-6CDA-F500-4CA188BBCDBC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x91e50000 - 0x9230dffb com.apple.VideoToolbox 0.484.5 (484.5) <DA9B4FA8-B91C-43AC-1D84-0BFF46BB5BCE> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9230e000 - 0x9237dff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <2FC2178F-FEF9-6E3F-3289-A6307B1A154C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9237e000 - 0x92396ff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x92397000 - 0x9253cfeb libSystem.B.dylib 125.0.1 (compatibility 1.0.0) <06A5336A-A6F6-4E62-F55F-4909A64631C2> /usr/lib/libSystem.B.dylib
    0x9253d000 - 0x92543ff7 com.apple.DisplayServicesFW 2.2.2 (251) <D8BB3A1F-29C7-A957-C781-794CC9550525> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x92544000 - 0x92548ff7 IOSurface ??? (???) <4B825ADA-8DBE-6BA2-1AB3-307D2C3AFCA8> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x92549000 - 0x92624ff7 com.apple.DiscRecording 5.0.3 (5030.4.2) <CC86EBA6-5E48-32C0-77AE-81479DFF6D4A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x92625000 - 0x9269ffef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x926a0000 - 0x92714fef com.apple.CoreSymbolication 2.0 (23) <8A04EA5F-83F8-5E15-B2E0-8A727C9C4E8B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x92715000 - 0x92731fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92732000 - 0x92735ffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92736000 - 0x92790fe7 com.apple.CorePDF 1.1 (1.1) <E4608FF6-A27D-7DFC-5620-D86762502AC0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x92791000 - 0x927ffff7 com.apple.QuickLookUIFramework 2.2 (327.4) <5B6A066B-B867-D3A3-BDEE-3D68FA5385B4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x92800000 - 0x928ddff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x928de000 - 0x92bfefeb com.apple.CoreServices.CarbonCore 861.6 (861.6) <D3D5D9F1-01ED-DCAD-6AA9-4ABE60C7A112> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x92c40000 - 0x92ddefeb com.apple.JavaScriptCore 6531.22 (6531.22.5) <3FB9AF5B-17DD-D4C8-C7B1-4F79B404496E> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x92de1000 - 0x92e4bfe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x92ee1000 - 0x92f73fe3 com.apple.print.framework.PrintCore 6.2 (312.5) <7729B4D7-D661-D669-FA7E-510F93F685A6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x92f74000 - 0x93853ff7 com.apple.AppKit 6.6.5 (1038.29) <E76A05A6-27C6-DA02-0961-5C8EEDC5F0A7> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93854000 - 0x93866ff7 com.apple.MultitouchSupport.framework 204.12.1 (204.12.1) <6BB58E90-21FA-C491-F0E4-54B69CCDBBC0> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x93867000 - 0x93871ffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93872000 - 0x938afff7 com.apple.SystemConfiguration 1.10.2 (1.10.2) <830FED9E-3E24-004C-35D5-2C1273F79734> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x938b0000 - 0x938f6ffb com.apple.CoreMediaIOServices 130.0 (1035) <397101F4-BA80-C8C2-F816-E2FBE5E15D4F> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x938f7000 - 0x938f9ff7 com.apple.QuickTimeH264.component 7.6.6 (1729) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x938fa000 - 0x93a06ff7 libGLProgrammability.dylib ??? (???) <CA0A975B-2BEE-44E7-CFA6-8105CFE6FE00> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x93a07000 - 0x93a07ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <1DEC639C-173D-F808-DE0D-4070CC6F5BC7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x93a08000 - 0x93a2cff7 libJPEG.dylib ??? (???) <EDA86712-F49C-760C-BE55-9B899A4A5D1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x93a2d000 - 0x93a5eff3 libTrueTypeScaler.dylib ??? (???) <F6A32C01-CD82-54F6-218E-0406D40D1D9A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x93a5f000 - 0x93c41fff com.apple.imageKit 2.0.3 (1.0) <56AE34CD-4406-8AA2-DDBF-DBF902BD0E0A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x93c42000 - 0x93d20fef com.apple.QuickTimeMPEG4.component 7.6.6 (1729) <DBE6399E-AB34-B981-7327-05B993B5A69D> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x93d21000 - 0x94088ff7 com.apple.QuartzCore 1.6.1 (227.18) <8A65F233-4C77-BA7C-5DDA-2423F5C1B7A1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94089000 - 0x94131ffb com.apple.QD 3.35 (???) <B80B64BC-958B-DA9E-50F9-D7E8333CC5A2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x94132000 - 0x94158fff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x94159000 - 0x94197ff7 com.apple.CoreMedia 0.484.5 (484.5) <35725D22-4549-5568-8E8C-62E0AD0E90F7> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x94198000 - 0x941a3ff7 libGL.dylib ??? (???) <EAD85409-9036-831B-C378-E50780305DA6> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x943aa000 - 0x943abff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x943ac000 - 0x943c0fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x943c1000 - 0x943ffff7 com.apple.QuickLookFramework 2.2 (327.4) <88A59C42-A200-FCB6-23EC-E848D0E14963> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x94400000 - 0x94400ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x94401000 - 0x9440dff7 libkxld.dylib ??? (???) <13F26BB6-C2F7-9D74-933E-09AD8B509ECD> /usr/lib/system/libkxld.dylib
    0x94421000 - 0x94426ff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x94427000 - 0x94519ff7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <7482933B-4AF6-ED55-AD72-4FBD1E134958> /usr/lib/libcrypto.0.9.8.dylib
    0x9451a000 - 0x94720feb com.apple.AddressBook.framework 5.0.1 (868) <2CCD7801-F3B8-CED3-D5D7-096AF8DC004D> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94721000 - 0x94782fe7 com.apple.CoreText 3.1.0 (???) <1372DABE-F183-DD03-03C2-64B2464A4FD5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x947f7000 - 0x9483aff7 libGLU.dylib ??? (???) <CE02968E-930D-E63B-7B21-B87205F8B19A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9483b000 - 0x9487ffe7 com.apple.Metadata 10.6.3 (507.8) <53BB360A-1813-170D-827F-C1863EF15537> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x94880000 - 0x94890ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x94891000 - 0x94a0affb com.apple.CoreFoundation 6.6.1 (550.19) <1E97FB1E-9E42-B8EB-E463-5C75315FDA31> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x94a42000 - 0x94a92ff7 com.apple.framework.familycontrols 2.0.1 (2010) <50E74916-19A5-F2FC-AB57-76F2C8DDF0A7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x94a93000 - 0x94c4fff3 com.apple.ImageIO.framework 3.0.2 (3.0.1) <CB39B067-58B8-70DB-3E40-160604664A6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x94c57000 - 0x94c57ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x94fe0000 - 0x94fe3ff7 libCoreVMClient.dylib ??? (???) <98CB96B1-85FE-25AF-AB19-ED061912FC3E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x94fe4000 - 0x9507fff7 com.apple.ApplicationServices.ATS 4.2 (???) <3BEB7210-4C85-7309-B22D-695765526524> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x95081000 - 0x950faff7 com.apple.PDFKit 2.5.1 (2.5.1) <CEF13510-F08D-3177-7504-7F8853906DE6> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x950fb000 - 0x9516cff7 com.apple.AppleVAFramework 4.8.11 (4.8.11) <BDDDFA36-4B53-4B57-B3D4-427DA8226A80> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9516d000 - 0x951a8feb libFontRegistry.dylib ??? (???) <F50A60E1-3757-D007-A20D-A5504C17334C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x951a9000 - 0x9520dffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x9520e000 - 0x9538efeb com.apple.MediaToolbox 0.484.5 (484.5) <6996E5E1-18B6-C734-8335-FE43670C1F9C> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x9538f000 - 0x954d1fe3 com.apple.QTKit 7.6.6 (1729) <1EC021FB-AB8F-F8BF-0434-78C0A7B78EB2> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x954d2000 - 0x955adfe7 com.apple.DesktopServices 1.5.5 (1.5.5) <ECEDFDF2-C40E-8DF0-F8FC-249CCA762E62> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x955ae000 - 0x964fffe7 com.apple.QuickTimeComponents.component 7.6.6 (1729) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x965aa000 - 0x965aaff7 com.apple.vecLib 3.6 (vecLib 3.6) <7362077A-890F-3AEF-A8AB-22247B10E106> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x965ab000 - 0x96658fe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x96721000 - 0x968a3fe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <96A45E03-2B29-83EB-0FC6-2C932E398722> /usr/lib/libicucore.A.dylib
    0x968a4000 - 0x968b2ff7 com.apple.opengl 1.6.7 (1.6.7) <3C529790-DEE9-AC27-A879-806E4C23323C> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x968b3000 - 0x96bd7fef com.apple.HIToolbox 1.6.2 (???) <F5F99E78-5377-DD54-6138-9FC84467F938> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x96bd8000 - 0x96c33ff7 com.apple.framework.IOKit 2.0 (???) <69E4FE93-376C-565E-650F-04FAD213AA24> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x96c45000 - 0x96c4ffe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x96c8a000 - 0x96db8fe7 com.apple.CoreData 102.1 (251) <E6A457F0-A0A3-32CD-6C69-6286E7C0F063> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x96db9000 - 0x96dc0ff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6BF89127-C18C-27A9-F94A-981836A822FE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96dc1000 - 0x96dc3ff7 libRadiance.dylib ??? (???) <9358E1EF-F802-B76E-8E23-2D0695787CFB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x96dc4000 - 0x96dcfff7 libCSync.A.dylib 543.33.0 (compatibility 64.0.0) <F914F427-98EA-98BC-923D-47274A90D441> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x96e56000 - 0x97081ff3 com.apple.QuartzComposer 4.1 (156.13) <FE0BF06B-8D32-C712-7CCD-63D8918B8B6D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x97082000 - 0x9709dff7 libPng.dylib ??? (???) <929FE8EE-277D-F6EB-D672-E6F4CEBF1504> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x9709e000 - 0x971cafff com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) <F0D7256E-0914-8E77-E37B-9720430422AB> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x971cb000 - 0x9721bff7 com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x9721c000 - 0x9731efef com.apple.MeshKitIO 1.1 (49.2) <34322CDD-E67E-318A-F03A-A3DD05201046> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x9731f000 - 0x973cffe3 com.apple.QuickTimeImporters.component 7.6.6 (1729) <6C2372BA-69D9-E713-902F-95E16FD18EFD> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x973d0000 - 0x973e5fff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x973e6000 - 0x97c19fe7 com.apple.WebCore 6531.22 (6531.22.7) <952A0D34-63F5-F7F7-D6E5-D0AD78002F89> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x97c1a000 - 0x97c1cfe7 com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x97c1d000 - 0x97c52ff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <458E819A-4E3F-333E-28CE-671281B318D3> /usr/lib/libcups.2.dylib
    0x97c53000 - 0x97cf0fe3 com.apple.LaunchServices 362.1 (362.1) <885D8567-9E40-0105-20BC-42C7FF657583> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x97cf1000 - 0x97cf1ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x97cf2000 - 0x97d03ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x97d0c000 - 0x97d15ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x97d16000 - 0x97d46ff7 com.apple.MeshKit 1.1 (49.2) <ECFBD794-5D36-4405-6184-5568BFF29BF3> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x97d47000 - 0x97d8dff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x97d8e000 - 0x97d9cfe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <82B2C254-6F8D-7BEA-4C18-038E90CAE19B> /usr/lib/libz.1.dylib
    0x97d9d000 - 0x97ddfff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <3F0ED200-741B-4E27-B89F-634B131F5E9E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x97e40000 - 0x97e44ff7 libGFXShared.dylib ??? (???) <286F466C-2856-B579-B87F-4E9A35C80263> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x97e45000 - 0x97e50ff7 com.apple.CrashReporterSupport 10.6.3 (250) <E2835962-67A2-CA10-4016-467175851348> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x97e7b000 - 0x97e8bff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x97e8c000 - 0x97eadfe7 com.apple.opencl 12.1 (12.1) <1BCA4F60-E612-5C1B-EF50-A810D70CDF05> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x97eae000 - 0x97eaeff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x97eaf000 - 0x97eafff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <BC501C9F-7C20-961A-B135-0A457667D03C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x97eb0000 - 0x97ec4ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x97ec5000 - 0x97f45feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x983a5000 - 0x984a6fe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x98518000 - 0x9859affb SecurityFoundation 36840.0.0 (compatibility 1.0.0) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x9859b000 - 0x98d8a537 com.apple.CoreGraphics 1.543.33 (???) <C57E2964-80AF-6346-6D3E-23AED9D26977> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x98d8b000 - 0x991c0ff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x991da000 - 0x99290fff libFontParser.dylib ??? (???) <5935E105-1E45-886C-6420-C1CCA886C375> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x99291000 - 0x992afff7 com.apple.CoreVideo 1.6.1 (45.4) <E0DF044D-BF31-42CE-B690-FD1FCE07E64A> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x99476000 - 0x99488ff7 com.apple.CoreMediaAuthoring 0.700 (700) <446FBB01-279B-2BED-E5A8-D36241B704B1> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x99489000 - 0x994c1ff7 com.apple.LDAPFramework 2.0 (120.1) <001A70A8-3984-8E19-77A8-758893CC128C> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x994c2000 - 0x994c3ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x994c4000 - 0x99507ff7 com.apple.NavigationServices 3.5.4 (182) <753B8906-06C0-3AE0-3D6A-8FF5AC18ED12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x99533000 - 0x99604fe3 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <0A608513-31AD-D533-8386-10245FD62057> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x99605000 - 0x996cffef com.apple.CoreServices.OSServices 357 (357) <764872C3-AE30-7F54-494D-4BA3CE4F4DFB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <06A5336A-A6F6-4E62-F55F-4909A64631C2> /usr/lib/libSystem.B.dylib
    Model: MacPro1,1, BootROM MP11.005C.B08, 4 processors, Dual-Core Intel Xeon, 2 GHz, 4 GB, SMC 1.7f10
    Graphics: NVIDIA GeForce 7300 GT, NVIDIA GeForce 7300 GT, PCIe, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x87), Broadcom BCM43xx 1.0 (5.10.91.27)
    Bluetooth: Version 2.3.1f4, 2 service, 19 devices, 1 incoming serial ports
    Network Service: Built-in Ethernet 1, Ethernet, en0
    PCI Card: NVIDIA GeForce 7300 GT, Display, Slot-1
    Serial ATA Device: ST3250820AS P, 232.89 GB
    Serial ATA Device: WDC WD10EACS-00D6B1, 931.51 GB
    Serial ATA Device: ST3320620AS, 298.09 GB
    Serial ATA Device: WDC WD10EACS-14ZJB0, 931.51 GB
    Parallel ATA Device: OPTIARC DVD RW AD-7170A, 2.91 GB
    USB Device: Hub, 0x0409 (NEC Corporation), 0x005a, 0xfd400000
    USB Device: Back-UPS XS 1300 LCD FW:836.H5 .D USB FW:H5, 0x051d (American Power Conversion), 0x0002, 0xfd430000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8206, 0x5d200000
    USB Device: Microsoft Wireless Optical Desktop® 1.00, 0x045e (Microsoft Corporation), 0x008a, 0x3d100000
    FireWire Device: built-in_hub, Up to 800 Mb/sec
    FireWire Device: 1394 Storage Front Panel*, Maxtor, Up to 400 Mb/sec

    Removing the old JVMs (much to my disliking) solved this problem. I don't know why in the world Apple thinks Java 1.6 is the same as Java 1.5.

  • I have a new Macbook pro and can't recall the password I used with my Time capsule - How can I (ideally) retrieve or possibly change the time capsule password?

    I have a new Macbook pro and can't recall the password I used with my Time capsule - How can I (ideally) retrieve or possibly change the time capsule password?

    Remember security on a TC is an illusion.
    Simply press the reset button for 1-2 sec.. you must not do too long .. it will then hard reset.. but soft reset will revert all passwords to default for 5min. ie TC password is now public.
    Remember this the next time because anybody at all can change your passwords.
    Once into the TC you can then open the view passwords if you wanted any weaker security. Click and open the TC.. and click on edit.. then go to the top menu..
    Voila .. all your passwords in plain sight to any Tom Dick and Fred.

  • One of my imported MOV files turns "black" after editing with it for a time and I can't retrieve the images. This has happened three times, only this file. The placeholder is still there. Files are fine on hard drive. What gives? how to stop this?

    One of my imported MOV files turns "black" after editing with it for a time and I can't retrieve the images. This has happened three times, only this file. The placeholder is still there. Files are fine on hard drive. What gives? how to stop this? is in final cut pro 10.1.4

  • How I can change ipad mini mobile number I initially requested and to place the wrong number

    how I can change ipad mini mobile number I initially requested and to place the wrong number

    If you're refering to your uphone number thats set up to be used with imessage on your ipad, then that is associated with your apple id and has to be changed there first.
    My Apple ID
    https://appleid.apple.com/cgi-bin/WebObjects/MyAppleId.woa/
    Then on your ipad, sign out of messages. Go to settings/messages/tap on send and receive/tap on apple id/sign out
    Then sign out of messages on phone and then back in.
    Then sign into messages on ipad again, number should appear
    http://support.apple.com/kb/HT5538

Maybe you are looking for

  • Problem to get Mission Control 3.0.1 running with JBoss 4.2.2GA

    Hello, I'm using JRockit R27.04 to run JBoss 4.2.2GA with the following VM parameters: -Xmanagement:ssl=false,authenticate=false,port=7091,autodiscovery=true -Djavax.management.builder.initial=org.jboss.system.server.jmx.MBeanServerBuilderImpl -Djbos

  • Vpn configuration problems 2621xm and vpn client

    hello, I'm trying to configure my home cisco 2621xm to accept vpn connections. I've used many cisco pdf documents and they all same almost the same so I've done my configuration using these documents. now I just can't get past this error message I'm

  • Adding logo with Alpha channel to Quicktime and exporting as .mp4

    I'm adding a PNG file with alpha channel to my existing movie file using "Add to Selection and Scale". I then have my movie with the overlayed graphic. When I then Export as an mp4, the alpha channel is ignored! Any help, anyone?

  • ERROR 00604

    I wrote oracle procedure in which I am using 2 cursor. When I execute this procedure I got following error. ERROR at line 1: ORA-00604: error occurred at recursive SQL level 2 ORA-04031: unable to allocate 1400 bytes of shared memory ("shared pool","

  • What's the best way to record different articulations in 1 phrase?

    In my first violins I am using forte legato, pianissimo pizz, forte tremelo and forte marcato in 1 phrase within 4 bars. What now would be the best way to record this? I am using Peter Siedlaczek's Complete Classical Collection. Do I make a seperate