Arrays - confusing, wont compile, please help! ?:-)

Hello everyone,
I am new to the java forum, and I think its a fantastic idea. I am extremely stuck with my java, I have been workin on the same piece of code for at least 20 hours in total, 8 of which I spent in the last day, and to much of my frustration, the buggery code just wont compile. Im assuming many of you are probably laughing at me by now, lol, its ok, After my inital stress and hair pulling, all I could do was laugh. But I refuse to give up on the code after spending so long, and I have a feeling Im so close, its based around arrays, anyway I'll stop blabbering and post the code I have wrote, and if any of you could solve why it wont compile, it would be greatly appreciated.
Heres my code:
import avi.*;
public class CDCollection
private String title = "Unknown";
private String artist = "Unknown";
private int quan = 0;
private double price = 0;
CDCollection(double cdPrice, int cdQuan, String cdTitle, String cdArtist)
title = cdTitle;
artist = cdArtist;
quan = cdQuan;
price = cdPrice;
return price;
public static int findHighest(CDCollection[] cd) {
int highestSoFar = -1; // lower than any valid
for (int i = 0; i < cd.length; i++) {
if (cd.CDCollection() > highestSoFar) {
highestSoFar = cd[i].CDCollection();
return highestSoFar;
// instance method to write out cd details
public void cdDetails(Window screen)
     screen.write("�"+price+"\t"+quan+"\t"+title+"\t"+artist+"\n");
class CDMain
public static void main(String[] args)
     Window screen = new Window ("CDMain", "bold", "black", 14);
screen.showWindow();
     screen.write("CD List:\n\n");
          CDCollection cd1 = new CDCollection (10.99,11,"All Killer No Filler","Sum 41");
     cd1.cdDetails(screen);
CDCollection cd2 = new CDCollection (12.99,8,"The best of","Sting");
     cd2.cdDetails(screen);
Essentially wot Im tryin to do, is create a cd collection program, whereby details of the cd are entered (price, quantity, title and artist) and I would like to return statistical data on the cd collection, such as total number of cds, most expensive and cheapest cds etc. As you can I see I have tried to use arrays to find out the most expensive cd, but it still wont work! Please help, anyone, as Ive exhausted myself on this piece of code, Ive been through books, and I still cant bloody do it. :( lol
Thanks in advance,
All the best,
Larry :-)

Hi!
First you never call your method findHighest.
Second you do not have an array of your CD's. You only have two instances of it.
Try this:
CDCollection[] cds = new CDCollection[2];
CDCollection cd[0] = new CDCollection (10.99,11,"All Killer No Filler","Sum 41");
cds[0].cdDetails(screen);
CDCollection cds[1] = new CDCollection (12.99,8,"The best of","Sting");
cds[1].cdDetails(screen);
int highest = CDCollection.findHighest(cds);
And:
public static int findHighest(CDCollection[] cd) {
double highestSoFar = -1; // lower than any valid
for (int i = 0; i < cd.length; i++) {
if (cd.getPrice() > highestSoFar) {
highestSoFar = cd[i].getPrice();
return highestSoFar;
And in your CDCollection class you need a method:
public double getPrice()
return this.price;
I hope I did no mistake in here but it should work!
Markus

Similar Messages

  • Hi. My itunes library is in current 10.5.2 but my old ipod touch 4th or 3rd gen is not updating at all its still in current 4.2 and there is some apps i cant download that requires a 4.3 update but in my itunes it wont. Please help!

    Hi. My itunes library is in current 10.5.2 but my old ipod touch 4th or 3rd gen is not updating at all its still in current 4.2 and there is some apps i cant download that requires a 4.3 update but in my itunes it wont. Please help!

    Are you sure you have a 4g/3g iPod?   If you don't have a camera, it's definitely not 4G.  If it has no camera and is 8 or 16 Gb it is a 2G and can't go beyond 4.2.1. 

  • I can't use indesign since upgrade, it keeps asking me to upgrade java which I have done and still wont open please help me i have a deadline

    i can't use indesign since upgrade, it keeps asking me to upgrade java which I have done and still wont open please help me i have a deadline

    DL the SE 6 JRE from http://support.apple.com/kb/DL1572.
    27" i7 iMac (Mid 2011) refurb, OS X Yo (10.10.1), Mavs, ML & SL, G4 450 MP w/10.5 & 9.2.2

  • Just downloaded aperture 3.4 update for the app store and now it wont open please help!!

    just downloaded aperture 3.4 update for the app store and now it wont open please help!!

    Just want to echo this complaint.
    I have tried re installing Aperture 3 and I've looked for preferences or something to clear, but nothing helps.  It continues to crash each time I open it no matter what.

  • Updated my I tunes yesterday and now it wont open, please help

    updated my I tunes yesterday and now it wont open, please help

    I thought is was too much of a coincidence that the adapter went out the same day, but sure enough it did. Just replaced it and it works fine. Thanks

  • I have a seagate 1tb hard drive and a 16gb memory stick, how do i transfer avi files from one to another as the click drag and drop wont work, please help?

    i have a seagate 1tb hard drive and a 16gb memory stick, how do i transfer avi files from one to another as the click drag and drop wont work, please help?

    Greetings,
    What happens when you drag it?
    Make sure the drive you are moving the files to has enough available space to receive the file:
    Click on the movie file and go to File >  Get Info and note the "size"
    Check the drive to which you are moving the file to make sure it has enough available space: https://idisk.me.com/madisonfile-Public/web/finder-drive-available-space-and-for mat.html
    Also note the format of the drive you are copying too.  If it is not Mac OS Extended or FAT (not recommended unless you are taking it to a windows computer) then that may be the issue.
    Hope that helps.

  • PLEASE HELP when I upgraded to the new firefox my old one got deleted which had all my stuff and my mac is only 10.4.11 and wont work please help!!!

    PLEASE HELP when I upgraded to the new firefox my old one got deleted which had all my stuff and my mac is only 10.4.11 and wont work please help!!!

    Need to Resume download to complete the ongoing Process.
    Last Resort, put the iPhone in DFU mode (Google How to do that). Connect in iTunes. Follow on-screen prompts to Restore. All Data would be lost, if not backed up earlier.
    To save the photographs you may have to use third party software. Google is your friend.

  • Array of CreditCard objects - PLEASE HELP!

    My situation is this: I need to create an array of CreditCard objects. The problem is that when I try to invoke the methods getName, getNumber, or getLimit, the compiler recognizes the array (cardholders) as a variable.
    My coding is this.
    for(int i=0;fileInput.hasNext();i++)
         CreditCard[] cardholders = new CreditCard[records];
         int cardNum = Integer.parseInt(fileInput.next());
         String cardName = fileInput.nextLine();
         double cardLimit = Double.parseDouble(fileInput.nextLine());
         cardholders[i] = new CreditCard(cardNum, cardName, cardLimit);
    But when I try to access a CreditCard object, through cardholders[4] (for example), the error cannot find symbol appears. PLEASE HELP ITS DRIVING ME CRAZY.
    THANKS

    You are lacking basic Java knowledge, micksabox. The following tutorial is on Arrays in Java. The one after on the Java Collections Framework, you might want to learn about as the better solution for working with sets and lists of objects in Java.
    http://java.sun.com/docs/books/tutorial/java/nutsandbolts/arrays.html
    http://java.sun.com/docs/books/tutorial/collections/index.html

  • Safari quit unexpectedly and wont open, please help

    My safari wont open, and below s the error report, can someone please help me??
    Process: Safari [309]
    Path: /Applications/Safari.app/Contents/MacOS/Safari
    Identifier: com.apple.Safari
    Version: 5.0.4 (6533.20.27)
    Build Info: WebBrowser-75332027~1
    Code Type: X86-64 (Native)
    Parent Process: launchd [178]
    Date/Time: 2011-04-12 20:37:14.007 +0100
    OS Version: Mac OS X 10.6.7 (10J869)
    Report Version: 6
    Interval Since Last Report: 153921 sec
    Crashes Since Last Report: 15
    Per-App Interval Since Last Report: 115802 sec
    Per-App Crashes Since Last Report: 15
    Anonymous UUID: FF074D2C-7E5C-4F1D-8696-0E06593725B2
    Exception Type: EXCBADACCESS (SIGSEGV)
    Exception Codes: 0x000000000000000d, 0x0000000000000000
    Crashed Thread: 3
    Thread 0: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x0000000101b5c29a machmsgtrap + 10
    1 libSystem.B.dylib 0x0000000101b5c90d mach_msg + 59
    2 com.apple.CoreGraphics 0x0000000105362624 _CGSCheckInApplication + 215
    3 com.apple.CoreGraphics 0x0000000105362508 _CPSRegisterWithServer + 462
    4 com.apple.HIServices 0x0000000105fe9eed _RegisterApplication + 5053
    5 com.apple.HIServices 0x0000000105fe8b0b GetCurrentProcess + 30
    6 com.apple.HIToolbox 0x0000000104dd7395 GetSystemUIMode + 40
    7 com.apple.HIToolbox 0x0000000104dd7332 IsMenuBarVisible + 28
    8 com.apple.AppKit 0x00000001029d68a6 _NSInitializeAppContext + 45
    9 com.apple.AppKit 0x00000001029d6286 -[NSApplication init] + 475
    10 com.apple.AppKit 0x00000001029d5ef2 +[NSApplication sharedApplication] + 149
    11 com.apple.AppKit 0x00000001029d5126 NSApplicationMain + 234
    12 com.apple.Safari 0x0000000100009f84 0x100000000 + 40836
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x0000000101b7512a kevent + 10
    1 libSystem.B.dylib 0x0000000101b76ffd dispatch_mgrinvoke + 154
    2 libSystem.B.dylib 0x0000000101b76cd4 dispatch_queueinvoke + 185
    3 libSystem.B.dylib 0x0000000101b767fe dispatch_workerthread2 + 252
    4 libSystem.B.dylib 0x0000000101b76128 pthreadwqthread + 353
    5 libSystem.B.dylib 0x0000000101b75fc5 start_wqthread + 13
    Thread 2:
    0 libSystem.B.dylib 0x0000000101b75f4a _workqkernreturn + 10
    1 libSystem.B.dylib 0x0000000101b7635c pthreadwqthread + 917
    2 libSystem.B.dylib 0x0000000101b75fc5 start_wqthread + 13
    Thread 3 Crashed:
    0 libSystem.B.dylib 0x0000000101c642a5 dyldstubbinder + 45
    1 ??? 0x0000000101d1d008 0 + 4325494792
    2 ??? 0x000000010b4e5048 0 + 4484649032
    Thread 3 crashed with X86 Thread State (64-bit):
    rax: 0x0000000004000000 rbx: 0x000000010b4e5658 rcx: 0x0000000000000001 rdx: 0x000000010b4e50c8
    rdi: 0x0000000000000000 rsi: 0x000000010b4e5658 rbp: 0x000000010b4e5518 rsp: 0x000000010b4e5458
    r8: 0x0000000000000000 r9: 0x0000000000000000 r10: 0x0000000101b5c70c r11: 0x0000000101d1d008
    r12: 0x0000000000000003 r13: 0x0000000101d29988 r14: 0x000000010b4e5698 r15: 0x000000010b4e50c8
    rip: 0x0000000101c642a5 rfl: 0x0000000000010202 cr2: 0x0000000102050000
    Binary Images:
    0x100000000 - 0x1006affff com.apple.Safari 5.0.4 (6533.20.27) <BE30083C-FAEA-E0C4-BD94-C3A586B14A64> /Applications/Safari.app/Contents/MacOS/Safari
    0x100758000 - 0x100811fff libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <2C5ED312-E646-9ADE-73A9-6199A2A43150> /usr/lib/libsqlite3.dylib
    0x100821000 - 0x100927fe7 com.apple.PubSub 1.0.5 (65.21) <1F9B7C84-375D-036F-790A-02BBE7BCE445> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x100997000 - 0x1009a2fff com.apple.CrashReporterSupport 10.6.7 (258) <BB0B9A08-6CEC-0500-5BD1-C18E1465E406> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x1009b0000 - 0x1009bffff libxar.1.dylib ??? (???) <CBAF862A-3C77-6446-56C2-9C4461631AAF> /usr/lib/libxar.1.dylib
    0x1009c7000 - 0x1009d2fff com.apple.corelocation 12.1 (12.1) <7B5164FD-F5FD-6837-1DA3-6E18582CEDF3> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x1009dd000 - 0x100c1ffe7 com.apple.AddressBook.framework 5.0.4 (883) <3C634319-4B5B-592B-2D3A-A16336F93AA0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x100d5a000 - 0x100d8ffef com.apple.framework.Apple80211 6.2.4 (624.2) <B2CB69CE-A4F5-D70F-03DE-CF985D5558A2> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x100da3000 - 0x100da3ff7 com.apple.Carbon 150 (152) <C0E61968-57F3-6EE1-8524-32A18955BAF0> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x100da6000 - 0x100da6ff7 com.apple.Cocoa 6.6 (???) <61E16E28-1C4E-8446-6B1E-25B7A6FE59A0> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x100da9000 - 0x100e09fe7 com.apple.framework.IOKit 2.0 (???) <D107CB8A-5182-3AC4-35D0-07068A695C05> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x100e2d000 - 0x10101dfef com.apple.JavaScriptCore 6533.20 (6533.20.20) <0AA8B101-C02C-0858-84BC-4E4D397E0231> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x101092000 - 0x101250fff libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <2C6ECACF-CD56-1714-6F63-CB6F5EE7A1E2> /usr/lib/libicucore.A.dylib
    0x1012bf000 - 0x1012cefff com.apple.opengl 1.6.12 (1.6.12) <29482652-1E44-1C47-428F-1209AA65336D> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x1012d7000 - 0x1012d7ff7 com.apple.quartzframework 1.5 (1.5) <0479F6C7-36EB-C146-DD98-4AA6B80E0C7E> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x1012da000 - 0x101562fef com.apple.security 6.1.1 (37594) <34DC0C3E-4546-D7ED-D855-390750954245> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x10165a000 - 0x1016e6fef SecurityFoundation ??? (???) <8A74D45E-9FE9-DD58-42F5-C7474FFDD0C1> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x10172a000 - 0x101773ff7 com.apple.securityinterface 4.0.1 (40418) <77FDB498-B502-050C-6AF4-1DAB17F64B6F> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x1017a5000 - 0x1017b6fff SyndicationUI ??? (???) <62A4BC15-72EA-0CC1-046A-52E576E8D751> /System/Library/PrivateFrameworks/SyndicationUI.framework/Versions/A/Syndicatio nUI
    0x1017c5000 - 0x101806fff com.apple.SystemConfiguration 1.10.5 (1.10.2) <FB39F09C-57BB-D8CC-348D-93E00C602F7D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x10182a000 - 0x1019a8ff7 com.apple.WebKit 6533.20 (6533.20.25) <7AFA5FA8-C044-A000-B666-59DAF1CCFF90> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x101a7d000 - 0x101afafef libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <9DBE8FD3-E42D-80C1-11AD-6500C32DBEBF> /usr/lib/libstdc++.6.dylib
    0x101b5b000 - 0x101d1cfff libSystem.B.dylib 125.2.10 (compatibility 1.0.0) <9BAEB2F2-B485-6349-E1AB-637FE12EE770> /usr/lib/libSystem.B.dylib
    0x101dad000 - 0x101e63fff libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <99CB3A0F-64CF-1D16-70CD-8AED2EF06C30> /usr/lib/libobjc.A.dylib
    0x101e77000 - 0x101e77ff7 com.apple.CoreServices 44 (44) <DC7400FB-851E-7B8A-5BF6-6F50094302FB> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x101e7a000 - 0x101ff1fe7 com.apple.CoreFoundation 6.6.4 (550.42) <770C572A-CF70-168F-F43C-242B9114FCB5> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x10210a000 - 0x10210aff7 com.apple.ApplicationServices 38 (38) <92AF04FE-4286-27AD-5694-9D82CEB3A393> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x10210d000 - 0x102390fe7 com.apple.Foundation 6.6.6 (751.53) <476E617B-B59B-53DE-991D-98C1993BCBCE> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x102508000 - 0x1028a5fe7 com.apple.QuartzCore 1.6.3 (227.36) <6FD8E129-135E-2F89-E9F0-A3CD0C6FCEF1> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x1029d3000 - 0x1033c9fff com.apple.AppKit 6.6.7 (1038.35) <9F4DF818-9DB9-98DA-490C-EF29EA757A97> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x1039be000 - 0x1039c2ff7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <95718673-FEEE-B6ED-B127-BCDBDB60D4E5> /usr/lib/system/libmathCommon.A.dylib
    0x1039c5000 - 0x103adcfef libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <1B27AFDD-DF87-2009-170E-C129E1572E8B> /usr/lib/libxml2.2.dylib
    0x103b05000 - 0x103b48fef libtidy.A.dylib ??? (???) <2F4273D3-418B-668C-F488-7E659D3A8C23> /usr/lib/libtidy.A.dylib
    0x103b59000 - 0x103b6aff7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <97019C74-161A-3488-41EC-A6CA8738418C> /usr/lib/libz.1.dylib
    0x103b6f000 - 0x103bebff7 com.apple.ISSupport 1.9.4 (52) <93A57F16-3BD5-25AD-5CFF-00007A141129> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x103c3a000 - 0x103c86fff libauto.dylib ??? (???) <F7221B46-DC4F-3153-CE61-7F52C8C293CF> /usr/lib/libauto.dylib
    0x103c93000 - 0x103fc7fff com.apple.CoreServices.CarbonCore 861.34 (861.34) <B5680539-CB31-6C6D-C0AD-606D4D46E7F5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x104041000 - 0x104113fe7 com.apple.CFNetwork 454.11.12 (454.11.12) <B1C9008A-4A5D-609D-5D10-C93DAD6FFB4C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x104186000 - 0x1041d0ff7 com.apple.Metadata 10.6.3 (507.15) <DE238BE4-5E22-C4D5-CF5C-3D50FDEE4701> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x1041fa000 - 0x1042b7fff com.apple.CoreServices.OSServices 359 (359) <8F509D8D-4C94-9A1C-3A87-5B775D9F6075> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x104311000 - 0x1043a1fff com.apple.SearchKit 1.3.0 (1.3.0) <72272991-E065-9D32-EDA5-A77230C584D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x1043df000 - 0x10441afff com.apple.AE 496.4 (496.4) <55AAD5CA-7160-7899-1C68-562ED8160DF7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x104434000 - 0x1044d4fff com.apple.LaunchServices 362.2 (362.2) <87E172DB-2C0E-E2E5-2A75-FB4284AECDAF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x10451a000 - 0x104542fff com.apple.DictionaryServices 1.1.2 (1.1.2) <E9269069-93FA-2B71-F9BA-FDDD23C4A65E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x10455c000 - 0x104562ff7 com.apple.DiskArbitration 2.3.1 (2.3.1) <3384F026-6512-86FF-4930-050182F34A0F> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x10456b000 - 0x104581fef libbsm.0.dylib ??? (???) <675EBE62-505F-0D5F-DCAB-9606289502C1> /usr/lib/libbsm.0.dylib
    0x10458a000 - 0x104599fff com.apple.NetFS 3.2.2 (3.2.2) <7CCBD70E-BF31-A7A7-DB98-230687773145> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x1045a2000 - 0x1045b0ff7 libkxld.dylib ??? (???) <F90EDFE8-708A-3046-E403-A3B536FCFA43> /usr/lib/system/libkxld.dylib
    0x1045b4000 - 0x1045dfff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <699E0B28-F9C9-5A3E-ACF6-8B42C03560CD> /usr/lib/libxslt.1.dylib
    0x1045ea000 - 0x10470bfe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <48AEAFE1-21F4-B3C8-4199-35AD5E8D0613> /usr/lib/libcrypto.0.9.8.dylib
    0x104772000 - 0x104773ff7 com.apple.TrustEvaluationAgent 1.1 (1) <5952A9FA-BC2B-16EF-91A7-43902A5C07B6> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x104777000 - 0x104783fff libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <6FB0A8F4-72A1-D28F-E801-DE2C7498AFB9> /usr/lib/libbz2.1.0.dylib
    0x104788000 - 0x1047c2fff libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C7153747-50E3-32DA-426F-CC4C505D1D6C> /usr/lib/libssl.0.9.8.dylib
    0x1047d7000 - 0x1047f7ff7 com.apple.DirectoryService.Framework 3.6 (621.11) <AD76C757-6701-BDB5-631E-1CB77D669586> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x104801000 - 0x10483efff com.apple.LDAPFramework 2.0 (120.1) <54A6769E-D7E2-DBE2-EA61-87B9EA355DA4> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x10484b000 - 0x10485cfff com.apple.DSObjCWrappers.Framework 10.6 (134) <88FBCC55-854B-D307-FB5A-026D99AED47E> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x104869000 - 0x1048e6fef com.apple.backup.framework 1.2.2 (1.2.2) <CD3554D8-DA47-DDBC-910C-B2F1DE3B8CA6> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x104905000 - 0x104a43fff com.apple.CoreData 102.1 (251) <9DFE798D-AA52-6A9A-924A-DA73CB94D81A> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x104adb000 - 0x104ae2fff com.apple.OpenDirectory 10.6 (10.6) <4FF6AD25-0916-B21C-9E88-2CC42D90EAC7> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x104aeb000 - 0x104c20ff7 com.apple.audio.toolbox.AudioToolbox 1.6.6 (1.6.6) <AFAB42A2-A3A8-83D8-D583-613625706690> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x104c9a000 - 0x104c9bff7 com.apple.audio.units.AudioUnit 1.6.6 (1.6.6) <BE4E577D-87EC-8FD0-5341-AE99CE4ADC99> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x104ca0000 - 0x104d86fef com.apple.DesktopServices 1.5.10 (1.5.10) <B7E00D85-F971-D85B-0217-482E15E9E924> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x104dd5000 - 0x1050d3fff com.apple.HIToolbox 1.6.5 (???) <AD1C18F6-51CB-7E39-35DD-F16B1EB978A8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x1051ff000 - 0x10520aff7 com.apple.speech.recognition.framework 3.11.1 (3.11.1) <3D65E89B-FFC6-4AAF-D5CC-104F967C8131> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x105214000 - 0x10525bff7 com.apple.coreui 2 (114) <923E33CC-83FC-7D35-5603-FB8F348EE34B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x105280000 - 0x1052fffe7 com.apple.audio.CoreAudio 3.2.6 (3.2.6) <1CF0AE2D-0E85-D41B-EC2D-8CFD298AB5A0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x105335000 - 0x105336fff liblangid.dylib ??? (???) <66D5E5AA-CE00-06DE-071B-ECF67D0936BA> /usr/lib/liblangid.dylib
    0x10533a000 - 0x105350fe7 com.apple.MultitouchSupport.framework 207.10 (207.10) <F006B2C9-C03F-F863-1FBB-952EC77AE699> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x10535d000 - 0x105a5a06f com.apple.CoreGraphics 1.545.0 (???) <F0A5F62D-4C66-5B1F-4F13-322932915901> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x105b4c000 - 0x105d04fef com.apple.ImageIO.framework 3.0.4 (3.0.4) <EFB373AE-FE02-40C4-ABDC-09D61AFD25EA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x105d6a000 - 0x105de8ff7 com.apple.CoreText 3.151.8 (???) <5DCD6BD9-63FB-767E-5993-5AEBE890145B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x105e26000 - 0x105ec0ff7 com.apple.ApplicationServices.ATS 4.4 (???) <55B528A6-0C88-6CB8-152B-A34A440FACFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x105ee9000 - 0x105faafef com.apple.ColorSync 4.6.6 (4.6.6) <EC6C8119-23F6-A96E-47A3-5CD31E462AE3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x105fe7000 - 0x106039ff7 com.apple.HIServices 1.8.2 (???) <80D63B54-3F43-080C-038A-70038D9AF325> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x106065000 - 0x10607aff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <1AE1FE8F-2204-4410-C94E-0E93B003BEDA> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x106088000 - 0x10610dff7 com.apple.print.framework.PrintCore 6.3 (312.7) <CDFE82DD-D811-A091-179F-6E76069B432D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x106143000 - 0x106184fef com.apple.QD 3.36 (???) <5DC41E81-32C9-65B2-5528-B33E934D5BB4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x10619c000 - 0x1061b0ff7 com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <D4E9C9C6-633B-54CA-FEE4-E887418442B7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x1061c1000 - 0x1061c1ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <15DF8B4A-96B2-CB4E-368D-DEC7DF6B62BB> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x1061c4000 - 0x106213fef libTIFF.dylib ??? (???) <F0F7F0B7-7253-F88F-9E2D-FA3770143758> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x106220000 - 0x106225fff libGIF.dylib ??? (???) <1B9DCB7F-CD1D-B23F-8AC6-5292B94A4D0E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x10622a000 - 0x106247ff7 libPng.dylib ??? (???) <0C232C1E-49C8-F7A9-9634-DF2BDA1AB722> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x10624f000 - 0x106251fff libRadiance.dylib ??? (???) <73257486-8E94-E758-1A5A-5B521F27EE12> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x106255000 - 0x10627bfe7 libJPEG.dylib ??? (???) <AD42F658-7C32-EEE5-8341-A8EE6476BF46> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x106283000 - 0x106360fff com.apple.vImage 4.1 (4.1) <C3F44AA9-6F71-0684-2686-D3BBC903F020> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x10636f000 - 0x10636fff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <4CCE5D69-F1B3-8FD3-1483-E0271DB2CCF3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x106372000 - 0x1063baff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <98FC4457-F405-0262-00F7-56119CA107B6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x1063c2000 - 0x10642cfe7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <AF0EA96D-000F-8C12-B952-CB7E00566E08> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x106436000 - 0x106c40fe7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <2F26CDC7-DAE9-9ABE-6806-93BBBDA20DA0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x106c89000 - 0x1070ccfef libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <57D38705-6F21-2A82-F3F6-03CFFF214775> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x107259000 - 0x10731afff libFontParser.dylib ??? (???) <244BCE74-7EEE-C9DE-9779-F3AEF5869BE6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x107411000 - 0x10744afef libcups.2.dylib 2.8.0 (compatibility 2.0.0) <F8E0672F-C0B4-B161-E50D-A1405D14F21C> /usr/lib/libcups.2.dylib
    0x107459000 - 0x107509fff edu.mit.Kerberos 6.5.11 (6.5.11) <085D80F5-C9DC-E252-C21B-03295E660C91> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x10752f000 - 0x107550fff libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <9F322F47-0584-CB7D-5B73-9EBD670851CD> /usr/lib/libresolv.9.dylib
    0x10755a000 - 0x10755aff7 com.apple.vecLib 3.6 (vecLib 3.6) <96FB6BAD-5568-C4E0-6FA7-02791A58B584> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x10755d000 - 0x1075b2ff7 com.apple.framework.familycontrols 2.0.2 (2020) <F09541B6-5E28-1C01-C1AE-F6A2508670C7> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x1075d0000 - 0x107685fe7 com.apple.ink.framework 1.3.3 (107) <8C36373C-5473-3A6A-4972-BC29D504250F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x1076b8000 - 0x1076ddff7 com.apple.CoreVideo 1.6.2 (45.6) <E138C8E7-3CB6-55A9-0A2C-B73FE63EA288> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x1076f6000 - 0x107727fff libGLImage.dylib ??? (???) <6925991A-9B1B-B9FA-645A-807F9BCC3DE7> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x10772e000 - 0x107751fff com.apple.opencl 12.3.6 (12.3.6) <42FA5783-EB80-1168-4015-B8C68F55842F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x10775a000 - 0x107760ff7 IOSurface ??? (???) <6AF28EC1-BCC4-9F65-AF7D-ABE60B91072A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x107769000 - 0x1077b2fef libGLU.dylib ??? (???) <0FCD57C5-D7AA-F2DD-D2EC-C1C8B931F65C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x1077c1000 - 0x1077d5fff libGL.dylib ??? (???) <0FA671EB-6FA0-BA97-C00A-C42247C22B26> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x1077e5000 - 0x1078fefef libGLProgrammability.dylib ??? (???) <C4BB281B-629D-08ED-2991-3D51671B0B02> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x10791f000 - 0x107922ff7 libCoreVMClient.dylib ??? (???) <00C97B96-8D3B-45EB-F503-DB49712DC42D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x107927000 - 0x10792cfff libGFXShared.dylib ??? (???) <878C429B-44D4-875C-1A35-4FD8C6152695> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x107931000 - 0x107937ff7 com.apple.CommerceCore 1.0 (9) <4C66D962-91B5-F25C-A6FF-DFD5F924A0DD> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x10793f000 - 0x107958fff com.apple.CFOpenDirectory 10.6 (10.6) <401557B1-C6D1-7E1A-0D7E-941715C37BFA> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x10796d000 - 0x1079bcff7 com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <01B370FB-D524-F660-3826-E85B7F0D85CD> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x1079dd000 - 0x1079effe7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <43291846-12A7-3518-6C0D-68885CB1C6FB> /usr/lib/libsasl2.2.dylib
    0x1079f6000 - 0x1079fbff7 com.apple.CommonPanels 1.2.4 (91) <0D62B213-485D-170D-07C9-0452492C6BF4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x107a03000 - 0x107a06fff com.apple.help 1.3.1 (41) <A572906A-BFEF-7F30-887C-67D43ACFA983> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x107a0c000 - 0x107a22fff com.apple.ImageCapture 6.0.2 (6.0.2) <06E4103B-9BE4-7EAD-B532-89FC5EB06ED4> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x107a3c000 - 0x107a57ff7 com.apple.openscripting 1.3.1 (???) <9D50701D-54AC-405B-CC65-026FCB28258B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x107a68000 - 0x107a6afff com.apple.print.framework.Print 6.1 (237.1) <CA8564FB-B366-7413-B12E-9892DA3C6157> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x107a6f000 - 0x107a72ff7 com.apple.securityhi 4.0 (36638) <EABABBA8-AB59-599A-1884-0010C059DE62> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x107a77000 - 0x107ce1fef com.apple.QuartzComposer 4.2 ({156.28}) <248C697E-B2DD-4F27-27CD-6E6B99B9B0A8> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x107e3b000 - 0x107ecafff com.apple.PDFKit 2.5.1 (2.5.1) <38BEE9BB-3716-49BA-7E14-687FE9E066EB> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x107f20000 - 0x107f4ffff com.apple.quartzfilters 1.6.0 (1.6.0) <B8F5859D-9372-2EE5-DD77-6E68F15F53B2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x107f7e000 - 0x1081b9fef com.apple.imageKit 2.0.3 (1.0) <5D18C246-303A-6580-9DC9-79BE79467C95> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x108309000 - 0x10838bfff com.apple.QuickLookUIFramework 2.3 (327.6) <9093682A-0E2D-7D27-5F22-C96FD00AE970> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x1083e1000 - 0x10841aff7 com.apple.MeshKit 1.1 (49.2) <832A074D-7601-F7C9-6D3A-E1C58965C3A1> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x108446000 - 0x1085b5fe7 com.apple.QTKit 7.6.6 (1756.15) <B35EDB1D-FCB0-1D40-629E-6ACB56D57C68> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x10869f000 - 0x108707fff com.apple.MeshKitRuntime 1.1 (49.2) <4D3045D0-0D50-7053-3A05-0AECE86E39F8> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x10873d000 - 0x108847ff7 com.apple.MeshKitIO 1.1 (49.2) <C19D0CCD-1DCB-7EDE-76FA-BF74079AFC6A> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x1088ba000 - 0x1088fbff7 com.apple.CoreMedia 0.484.20 (484.20) <C1CC2CE5-0606-5F87-9445-ED7AF1DA31B6> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x108918000 - 0x108a40ff7 com.apple.MediaToolbox 0.484.20 (484.20) <1C80C29E-6FDB-71F3-B465-FF92A30BBF9D> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x108ab4000 - 0x108fb8fe7 com.apple.VideoToolbox 0.484.20 (484.20) <B01F6A80-D197-2127-2A05-49F9446EF6E5> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x109080000 - 0x1090c5fff com.apple.CoreMediaIOServices 134.0 (1160) <BA22EA4A-4572-749A-4FE0-1323E0B6F6F3> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x1090e8000 - 0x109159ff7 com.apple.AppleVAFramework 4.10.23 (4.10.23) <3304268B-A93D-9F79-09C0-AA9081406352> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x109164000 - 0x1091c6fe7 com.apple.datadetectorscore 2.0 (80.7) <396E3284-B488-A6F4-2B3A-DE421E38C960> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x1091fa000 - 0x109266ff7 com.apple.CorePDF 1.3 (1.3) <FF2F3F1B-D1D6-684C-B174-6A455E04FF91> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x1092a5000 - 0x1092ecfff com.apple.QuickLookFramework 2.3 (327.6) <11DFB135-24A6-C0BC-5B97-ECE352A4B488> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x109317000 - 0x109320ff7 com.apple.DisplayServicesFW 2.3.0 (283) <4F1220F7-D576-B761-9881-5810C03F87FA> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x10932a000 - 0x10936efe7 com.apple.ImageCaptureCore 1.0.4 (1.0.4) <F4ED3329-1A86-EB10-CFC2-999D8699B5E6> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x10939f000 - 0x1093a0fff com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <65E24B21-EE95-A6D1-2094-2F659A7EF7F7> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x1093a5000 - 0x10a020fef com.apple.WebCore 6533.20 (6533.20.24) <D2474418-DABB-7604-D3B9-FE1E03207765> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x7fff5fc00000 - 0x7fff5fc3bdef dyld 132.1 (???) <69130DA3-7CB3-54C8-ABC5-423DECDD2AF7> /usr/lib/dyld
    0x7fffffe00000 - 0x7fffffe01fff libSystem.B.dylib ??? (???) <9BAEB2F2-B485-6349-E1AB-637FE12EE770> /usr/lib/libSystem.B.dylib
    Model: MacBookAir3,2, BootROM MBA31.0061.B01, 2 processors, Intel Core 2 Duo, 2.13 GHz, 4 GB, SMC 1.66f55
    Graphics: NVIDIA GeForce 320M, NVIDIA GeForce 320M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0xD1), Broadcom BCM43xx 1.0 (5.10.131.36.9)
    Bluetooth: Version 2.4.0f1, 2 service, 19 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en0
    Serial ATA Device: APPLE SSD SM256C, 233.76 GB
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x850a, 0x24600000
    USB Device: Internal Memory Card Reader, 0x05ac (Apple Inc.), 0x8403, 0x26100000
    USB Device: BRCM2070 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x04500000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x821b, 0x04530000
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac (Apple Inc.), 0x0240, 0x04300000

    Hi,
    Could be third party Safari add ons causing Safari to crash, help here.
    And try Safari in another user account. If you don't have one established, follow the instructions here.
    Same problems with Safari in another user account can mean the startup disk may need repairing. Log back into your admin account.
    Launch Disk Utility (Applications/Utilities) Select MacintoshHD in the panel on the left then select the FirstAid tab.
    Click: Verify Disk (not Verify Disk Permissions) If the startup disk needs repairing, follow the instructions here.
    If the startup disk is ok, install the v10.6.7 combo update available here. It's ok to do this even though you are already running v10.6.7.
    Then restart your Mac.
    Carolyn

  • Book i downloaded wont open, please help !

    I downloaded a book on iTunes. Its in the .epub format and i really cant open it. I downloaded Calibre but it says my book is protected and wont open. I put the book on a Kobo but it doesnt work either.
    What to do ?!? Please help, thanks

    Go here and follow ALL steps for removing itunes and quicktime, especailly "Clean up iTunes installer files on the computer" (No music or playlist will be lost) http://docs.info.apple.com/article.html?artnum=93976

  • I-tunes wont open please help

    It isnt in any files and when I try to re-download it the file says Cant install because quicktime player isnt present. But on my desktop the icon says Quiktime player. When I open the quicktime player it works and im able to play songs on it. Please help I'm really confused.

    Go here and follow ALL steps for removing itunes and quicktime, especailly "Clean up iTunes installer files on the computer" (No music or playlist will be lost) http://docs.info.apple.com/article.html?artnum=93976

  • Final Cut Pro 10.0.4 Trial Just wont Work please Help

    Ok i have tried everything and this tria just crashes. First of all let me tell you what i have done .
    I have deleted all teh preference files.
    I have deleted any and all events from my drive
    I have run preference manager and deleted all files through that and it still crashes on start up
    I have checked and verified my drive permissions
    I have repaired my drive permissions and it still crashes
    I have created a new account and tried running it and it crashes
    I have installed OSX fresh on a new Drive and it still crashes at start up
    I have tried changing out my video card and it still crashes
    I have even tried installing Lion and the Updates and and it does the exact same thing..
    I thought maybe it is because i was running an ATI 4890 But i took that out and put my GEFORCE 8800 back in and it still did the same thing.
    I have run every hardware test i can on my machine and it comes up fine.. But this Final Cut Pro Trial crashes at boot up every time
    I have never in my life had a problem with my machine or any software until now .. and this is really annoying I wont spend 300 dollars on a program that just doesnt work. .
    it gets to the intro screen and says loading compressor support and then hangs for about 2 minutes then just crashes.
    Here is my crash log.
    can Someone PLEASE HELP >>
    Process:         Final Cut Pro Trial [1508]
    Path:            /Applications/Final Cut Pro Trial.app/Contents/MacOS/Final Cut Pro Trial
    Identifier:      com.apple.FinalCutTrial
    Version:         10.0.4 (197051)
    Build Info:      ProEditor-197050125~2
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [1165]
    Date/Time:       2012-04-28 18:51:37.475 +1000
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          450921 sec
    Crashes Since Last Report:           4
    Per-App Interval Since Last Report:  622 sec
    Per-App Crashes Since Last Report:   -3
    Anonymous UUID:                      DAAFE3C9-532E-4AFD-879E-4A9FB0514094
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000001b341bff0
    Crashed Thread:  24  com.apple.dvdplayback-DDPTask
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x00007fff837eddc2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff837f340d pthread_mutex_lock + 469
    2   com.apple.Foundation                    0x00007fff859129ab -[NSLock lock] + 175
    3   com.apple.AVCHDPlugin                   0x000000012a6fa090 0x12a6f8000 + 8336
    4   com.apple.proapps.MIO                   0x00000001017b97e7 -[MIORADPluginManager pathIsValidVolume:] + 167
    5   com.apple.proapps.MIO                   0x00000001017b5f4b -[MIORADManager pathIsValidVolume:] + 27
    6   com.apple.Flexo                         0x00000001009dc428 -[FFStorageManager locationFromVolumePath:volumeRefNum:diskUUID:networkPath:alwaysWarnPath:] + 808
    7   com.apple.Flexo                         0x00000001009e180f -[FFStorageManager refreshAvailableVolumesAlwaysWarnForPath:] + 2143
    8   com.apple.Flexo                         0x00000001009dc5fa -[FFStorageManager RADManagerAvailable:] + 26
    9   com.apple.Foundation                    0x00007fff85911ad5 _nsnote_callback + 167
    10  com.apple.CoreFoundation                0x00007fff89db2fd0 __CFXNotificationPost + 1008
    11  com.apple.CoreFoundation                0x00007fff89d9f548 _CFXNotificationPostNotification + 200
    12  com.apple.Foundation                    0x00007fff8592945f __NSThreadPerformPerform + 219
    13  com.apple.CoreFoundation                0x00007fff89da827d __CFRunLoopDoSources0 + 1021
    14  com.apple.CoreFoundation                0x00007fff89da65c9 __CFRunLoopRun + 873
    15  com.apple.CoreFoundation                0x00007fff89da5d8f CFRunLoopRunSpecific + 575
    16  com.apple.qmaster.SwampCore             0x000000012d20ba29 startDaemon + 978
    17  com.apple.qmaster.SwampCore             0x000000012d20cca3 startQmasterServices + 24
    18  com.apple.compressor.StompUI            0x000000012cf9a3f6 startSwampServices + 9
    19  com.apple.CompressorKitMAS              0x000000012ce3468b -[CKClusterBrowser start] + 28
    20  com.apple.FinalCutTrial                 0x000000010003eef4 -[PEAppController applicationDidFinishLaunching:] + 3284
    21  com.apple.Foundation                    0x00007fff85911ad5 _nsnote_callback + 167
    22  com.apple.CoreFoundation                0x00007fff89db2fd0 __CFXNotificationPost + 1008
    23  com.apple.CoreFoundation                0x00007fff89d9f548 _CFXNotificationPostNotification + 200
    24  com.apple.Foundation                    0x00007fff85908a36 -[NSNotificationCenter postNotificationName:object:userInfo:] + 101
    25  com.apple.AppKit                        0x00007fff88de144a -[NSApplication _postDidFinishNotification] + 100
    26  com.apple.AppKit                        0x00007fff88de137f -[NSApplication _sendFinishLaunchingNotification] + 66
    27  com.apple.AppKit                        0x00007fff88eac35d -[NSApplication(NSAppleEventHandling) _handleAEOpen:] + 219
    28  com.apple.AppKit                        0x00007fff88eabfd9 -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 77
    29  com.apple.Foundation                    0x00007fff859400d6 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 360
    30  com.apple.Foundation                    0x00007fff8593ff06 _NSAppleEventManagerGenericHandler + 114
    31  com.apple.AE                            0x00007fff840f332b aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 162
    32  com.apple.AE                            0x00007fff840f3224 dispatchEventAndSendReply(AEDesc const*, AEDesc*) + 32
    33  com.apple.AE                            0x00007fff840f312b aeProcessAppleEvent + 210
    34  com.apple.HIToolbox                     0x00007fff8073e619 AEProcessAppleEvent + 48
    35  com.apple.AppKit                        0x00007fff88db1095 _DPSNextEvent + 1191
    36  com.apple.AppKit                        0x00007fff88db0801 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 155
    37  com.apple.AppKit                        0x00007fff88d7668f -[NSApplication run] + 395
    38  com.apple.prokit                        0x000000010030804b NSProApplicationMain + 267
    39  com.apple.FinalCutTrial                 0x00000001000022b8 start + 52
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x00007fff83806c0a kevent + 10
    1   libSystem.B.dylib                       0x00007fff83808add _dispatch_mgr_invoke + 154
    2   libSystem.B.dylib                       0x00007fff838087b4 _dispatch_queue_invoke + 185
    3   libSystem.B.dylib                       0x00007fff838082de _dispatch_worker_thread2 + 252
    4   libSystem.B.dylib                       0x00007fff83807c08 _pthread_wqthread + 353
    5   libSystem.B.dylib                       0x00007fff83807aa5 start_wqthread + 13
    Thread 2:
    0   libSystem.B.dylib                       0x00007fff83828a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8382c881 _pthread_cond_wait + 1286
    2   com.apple.progl.framework               0x0000000101b50131 (anonymous namespace)::threadFunc(void*) + 61
    3   com.apple.procore.framework             0x0000000100164f9e PCThread::startup(void*) + 18
    4   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 3:  com.apple.flexo.throttled-scheduled-io
    0   libSystem.B.dylib                       0x00007fff83828a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8382c881 _pthread_cond_wait + 1286
    2   com.apple.Flexo                         0x0000000100893898 Synchronizable::Wait() + 56
    3   com.apple.Fig.provider                  0x00000001153aef88 0x115380000 + 192392
    4   com.apple.Flexo                         0x000000010089c6aa Thread::RunHelper(void*) + 42
    5   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 4:
    0   libSystem.B.dylib                       0x00007fff83807a2a __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x00007fff83807e3c _pthread_wqthread + 917
    2   libSystem.B.dylib                       0x00007fff83807aa5 start_wqthread + 13
    Thread 5:
    0   libSystem.B.dylib                       0x00007fff837edd7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff837ee3ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff89da6902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff89da5d8f CFRunLoopRunSpecific + 575
    4   com.apple.CoreMediaIO                   0x0000000103f8f248 CMIO::DAL::RunLoop::OwnThread(void*) + 152
    5   com.apple.CoreMediaIO                   0x0000000103f85c81 CAPThread::Entry(CAPThread*) + 97
    6   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 6:
    0   libSystem.B.dylib                       0x00007fff837eddda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff8382c772 _pthread_cond_wait + 1015
    2   com.apple.CoreVideo                     0x00007fff82849de6 CVDisplayLink::waitUntil(unsigned long long) + 252
    3   com.apple.CoreVideo                     0x00007fff828492a2 CVDisplayLink::runIOThread() + 644
    4   com.apple.CoreVideo                     0x00007fff82848fe3 startIOThread(void*) + 139
    5   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 7:
    0   libSystem.B.dylib                       0x00007fff837eddda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff8382c772 _pthread_cond_wait + 1015
    2   com.apple.CoreVideo                     0x00007fff82849de6 CVDisplayLink::waitUntil(unsigned long long) + 252
    3   com.apple.CoreVideo                     0x00007fff828492a2 CVDisplayLink::runIOThread() + 644
    4   com.apple.CoreVideo                     0x00007fff82848fe3 startIOThread(void*) + 139
    5   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    6   libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 8:
    0   libSystem.B.dylib                       0x00007fff83828a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8382c881 _pthread_cond_wait + 1286
    2   com.apple.CoreVideo                     0x00007fff82849342 CVDisplayLink::runIOThread() + 804
    3   com.apple.CoreVideo                     0x00007fff82848fe3 startIOThread(void*) + 139
    4   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    5   libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 9:
    0   libSystem.B.dylib                       0x00007fff83828a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8382c881 _pthread_cond_wait + 1286
    2   com.apple.Foundation                    0x00007fff8593ba7a -[NSCondition wait] + 277
    3   com.apple.Foundation                    0x00007fff85928cf3 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 916
    4   com.apple.Foundation                    0x00007fff8593bdd0 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 143
    5   com.apple.iLifeMediaBrowser             0x00007fff882e0876 -[ILMediaManager commitBatch] + 24
    6   com.apple.iLMBPhotoBoothPlugin          0x000000011eebcca5 0x11eeba000 + 11429
    7   com.apple.Foundation                    0x00007fff85912114 __NSThread__main__ + 1429
    8   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 10:
    0   libSystem.B.dylib                       0x00007fff83828a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8382c881 _pthread_cond_wait + 1286
    2   com.apple.Foundation                    0x00007fff8593ba7a -[NSCondition wait] + 277
    3   com.apple.Foundation                    0x00007fff85928cf3 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 916
    4   com.apple.Foundation                    0x00007fff8593bdd0 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 143
    5   com.apple.iLifeMediaBrowser             0x00007fff882e0876 -[ILMediaManager commitBatch] + 24
    6   com.apple.iLMBPhotoBoothPlugin          0x000000011eebcca5 0x11eeba000 + 11429
    7   com.apple.Foundation                    0x00007fff85912114 __NSThread__main__ + 1429
    8   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 11:
    0   libSystem.B.dylib                       0x00007fff83828a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8382c881 _pthread_cond_wait + 1286
    2   com.apple.Foundation                    0x00007fff8593ba7a -[NSCondition wait] + 277
    3   com.apple.Foundation                    0x00007fff85928cf3 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 916
    4   com.apple.Foundation                    0x00007fff8593bdd0 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 143
    5   com.apple.iLifeMediaBrowser             0x00007fff882e0876 -[ILMediaManager commitBatch] + 24
    6   com.apple.iLMBPhotoBoothPlugin          0x000000011eebcca5 0x11eeba000 + 11429
    7   com.apple.Foundation                    0x00007fff85912114 __NSThread__main__ + 1429
    8   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 12:
    0   libSystem.B.dylib                       0x00007fff83828a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8382c881 _pthread_cond_wait + 1286
    2   com.apple.Foundation                    0x00007fff8593ba7a -[NSCondition wait] + 277
    3   com.apple.Foundation                    0x00007fff85928cf3 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 916
    4   com.apple.Foundation                    0x00007fff8593bdd0 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 143
    5   com.apple.iLifeMediaBrowser             0x00007fff882df3e0 -[ILMediaManager setRootMediaGroup:] + 258
    6   com.apple.iLMBPhotoBoothPlugin          0x000000011eebc84c 0x11eeba000 + 10316
    7   com.apple.iLMBPhotoBoothPlugin          0x000000011eebcc96 0x11eeba000 + 11414
    8   com.apple.Foundation                    0x00007fff85912114 __NSThread__main__ + 1429
    9   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 13:
    0   libSystem.B.dylib                       0x00007fff837f843e open + 10
    1   com.apple.Metadata                      0x00007fff833aa925 accurate_realpath + 41
    2   com.apple.Metadata                      0x00007fff833aa6e8 MDItemCreate + 171
    3   com.apple.iLifeMediaBrowser             0x00007fff882b4fd9 +[ILMediaObject spotlightProperties:] + 52
    4   com.apple.iLifeMediaBrowser             0x00007fff882fc60b -[ILFolderPluginSDK _createMediaObjectForPath_V2:isAlias:resolvedAliasPath:dstInfoRec:] + 631
    5   com.apple.iLifeMediaBrowser             0x00007fff882fd5aa -[ILFolderPluginSDK _createFolderMediaGroupForPath:currentLoadAliases:] + 2208
    6   com.apple.iLifeMediaBrowser             0x00007fff882fd484 -[ILFolderPluginSDK _createFolderMediaGroupForPath:currentLoadAliases:] + 1914
    7   com.apple.iLifeMediaBrowser             0x00007fff882f9556 -[ILFolderPluginSDK _loadMediaFolders:] + 100
    8   com.apple.iLifeMediaBrowser             0x00007fff882fa69d -[ILFolderPluginSDK performLoadData] + 306
    9   com.apple.iLMBPhotoBoothPlugin          0x000000011eebc7db 0x11eeba000 + 10203
    10  com.apple.iLMBPhotoBoothPlugin          0x000000011eebcc96 0x11eeba000 + 11414
    11  com.apple.Foundation                    0x00007fff85912114 __NSThread__main__ + 1429
    12  libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    13  libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 14:
    0   libSystem.B.dylib                       0x00007fff83828a6a __semwait_signal + 10
    1   libSystem.B.dylib                       0x00007fff8382c881 _pthread_cond_wait + 1286
    2   com.apple.Foundation                    0x00007fff8593ba7a -[NSCondition wait] + 277
    3   com.apple.Foundation                    0x00007fff85928cf3 -[NSObject(NSThreadPerformAdditions) performSelector:onThread:withObject:waitUntilDone:modes:] + 916
    4   com.apple.Foundation                    0x00007fff8593bdd0 -[NSObject(NSThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 143
    5   com.apple.iLMBiTunesPlugin              0x000000011eea7ced HexStringToUInt64 + 16859
    6   com.apple.iLMBPhotoBoothPlugin          0x000000011eebc7db 0x11eeba000 + 10203
    7   com.apple.iLMBPhotoBoothPlugin          0x000000011eebcc96 0x11eeba000 + 11414
    8   com.apple.Foundation                    0x00007fff85912114 __NSThread__main__ + 1429
    9   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    10  libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 15:
    0   libSystem.B.dylib                       0x00007fff837eddc2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff837f340d pthread_mutex_lock + 469
    2   com.apple.Foundation                    0x00007fff859045a1 -[NSRecursiveLock lock] + 25
    3   com.apple.iLifeMediaBrowser             0x00007fff882e0d0f -[ILMediaManager beginBatch] + 107
    4   com.apple.iLifeMediaBrowser             0x00007fff882fa05c -[ILFolderPluginSDK _loadMediaFoldersThreaded:] + 83
    5   com.apple.Foundation                    0x00007fff85912114 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 16:
    0   libSystem.B.dylib                       0x00007fff837eddc2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff837f340d pthread_mutex_lock + 469
    2   com.apple.Foundation                    0x00007fff859045a1 -[NSRecursiveLock lock] + 25
    3   com.apple.iLifeMediaBrowser             0x00007fff882e0d0f -[ILMediaManager beginBatch] + 107
    4   com.apple.iLifeMediaBrowser             0x00007fff882fa05c -[ILFolderPluginSDK _loadMediaFoldersThreaded:] + 83
    5   com.apple.Foundation                    0x00007fff85912114 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 17:
    0   libSystem.B.dylib                       0x00007fff837eddc2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff837f340d pthread_mutex_lock + 469
    2   com.apple.Foundation                    0x00007fff859045a1 -[NSRecursiveLock lock] + 25
    3   com.apple.iLifeMediaBrowser             0x00007fff882e0d0f -[ILMediaManager beginBatch] + 107
    4   com.apple.iLifeMediaBrowser             0x00007fff882fa05c -[ILFolderPluginSDK _loadMediaFoldersThreaded:] + 83
    5   com.apple.Foundation                    0x00007fff85912114 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 18:
    0   libSystem.B.dylib                       0x00007fff837eddc2 semaphore_wait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff837f340d pthread_mutex_lock + 469
    2   com.apple.Foundation                    0x00007fff859045a1 -[NSRecursiveLock lock] + 25
    3   com.apple.iLifeMediaBrowser             0x00007fff882e0d0f -[ILMediaManager beginBatch] + 107
    4   com.apple.iLifeMediaBrowser             0x00007fff882fa05c -[ILFolderPluginSDK _loadMediaFoldersThreaded:] + 83
    5   com.apple.Foundation                    0x00007fff85912114 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 19:  MIO Mounting Thread
    0   libSystem.B.dylib                       0x00007fff837eddda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff8382c772 _pthread_cond_wait + 1015
    2   com.apple.Foundation                    0x00007fff8594beb3 -[NSCondition waitUntilDate:] + 399
    3   com.apple.Foundation                    0x00007fff8593f032 -[NSConditionLock lockWhenCondition:beforeDate:] + 238
    4   com.apple.proapps.MIO                   0x00000001017bb00c -[PluginLockPair scanPaths] + 284
    5   com.apple.Foundation                    0x00007fff85912114 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 20:  MIO Mounting Thread
    0   libSystem.B.dylib                       0x00007fff837eddb6 semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x000000012a7d8007 semaphore_wait(viona_semaphore_t*) + 55
    2   com.apple.AVCHDPlugin                   0x000000012a7e6618 WinPort::DoMessage(long, long) + 264
    3   com.apple.AVCHDPlugin                   0x000000012a7732cc DDP_CreateClipDictionary + 300
    4   com.apple.AVCHDPlugin                   0x000000012a7f0da3 FDVDProcessor::FCDVDManager::OpenPlayer(FDVDProcessor::MediaItem*, unsigned char, unsigned char) + 7283
    5   com.apple.AVCHDPlugin                   0x000000012a7f4b38 FDVDProcessor::FCDVDManager::OpenAVCHDMediaFileWithURL(__CFURL const*, FDVDProcessor::MediaItem**) + 1512
    6   com.apple.AVCHDPlugin                   0x000000012a7e9363 FDVDProcessor::FCDVDManager::OpenAVCHDMediaFile(FSRef&) + 51
    7   com.apple.AVCHDPlugin                   0x000000012a786078 FAVCHDOpenMediaFile + 56
    8   com.apple.AVCHDPlugin                   0x000000012a6fab65 0x12a6f8000 + 11109
    9   com.apple.AVCHDPlugin                   0x000000012a6fa53b 0x12a6f8000 + 9531
    10  com.apple.AVCHDPlugin                   0x000000012a6fa0a2 0x12a6f8000 + 8354
    11  com.apple.proapps.MIO                   0x00000001017ba63e -[PluginLockPair mountPath:] + 286
    12  com.apple.proapps.MIO                   0x00000001017bb03c -[PluginLockPair scanPaths] + 332
    13  com.apple.Foundation                    0x00007fff85912114 __NSThread__main__ + 1429
    14  libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    15  libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 21:  MIO Mounting Thread
    0   libSystem.B.dylib                       0x00007fff837eddda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff8382c772 _pthread_cond_wait + 1015
    2   com.apple.Foundation                    0x00007fff8594beb3 -[NSCondition waitUntilDate:] + 399
    3   com.apple.Foundation                    0x00007fff8593f032 -[NSConditionLock lockWhenCondition:beforeDate:] + 238
    4   com.apple.proapps.MIO                   0x00000001017bb00c -[PluginLockPair scanPaths] + 284
    5   com.apple.Foundation                    0x00007fff85912114 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 22:  MIO Mounting Thread
    0   libSystem.B.dylib                       0x00007fff837eddda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff8382c772 _pthread_cond_wait + 1015
    2   com.apple.Foundation                    0x00007fff8594beb3 -[NSCondition waitUntilDate:] + 399
    3   com.apple.Foundation                    0x00007fff8593f032 -[NSConditionLock lockWhenCondition:beforeDate:] + 238
    4   com.apple.proapps.MIO                   0x00000001017bb00c -[PluginLockPair scanPaths] + 284
    5   com.apple.Foundation                    0x00007fff85912114 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 23:  MIO Mounting Thread
    0   libSystem.B.dylib                       0x00007fff837eddda semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x00007fff8382c772 _pthread_cond_wait + 1015
    2   com.apple.Foundation                    0x00007fff8594beb3 -[NSCondition waitUntilDate:] + 399
    3   com.apple.Foundation                    0x00007fff8593f032 -[NSConditionLock lockWhenCondition:beforeDate:] + 238
    4   com.apple.proapps.MIO                   0x00000001017bb00c -[PluginLockPair scanPaths] + 284
    5   com.apple.Foundation                    0x00007fff85912114 __NSThread__main__ + 1429
    6   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    7   libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 24 Crashed:  com.apple.dvdplayback-DDPTask
    0   libSystem.B.dylib                       0x00007fffffe00eed __memcpy + 1869
    1   com.apple.AVCHDPlugin                   0x000000012a81066a CByteArray::setLen(unsigned int) + 186
    2   com.apple.AVCHDPlugin                   0x000000012a8107f3 CBytes::setFieldLen(unsigned int) + 35
    3   com.apple.AVCHDPlugin                   0x000000012a8cce4a CClipInformationFile::fromMEM(unsigned char const*, unsigned int) + 5498
    4   com.apple.AVCHDPlugin                   0x000000012a853fdc CPlaybackControlEngine::InitClipObject(CClipObject&, unsigned short, unsigned short, CPlayItem&) + 1228
    5   com.apple.AVCHDPlugin                   0x000000012a869bf1 CPlaybackControlEngine::GenerateClipObjects(void*) + 3249
    6   com.apple.AVCHDPlugin                   0x000000012a76b2b7 DDPScheduler::Message(long, long) + 3607
    7   com.apple.AVCHDPlugin                   0x000000012a7e5792 WinPortServer::ProcessMessages() + 1042
    8   com.apple.AVCHDPlugin                   0x000000012a769ae3 DDP_Init + 707
    9   com.apple.AVCHDPlugin                   0x000000012a7d7810 ST20Thread::Run(PThreadRunParams*) + 32
    10  libSystem.B.dylib                       0x00007fff838c929a _pthread_body + 24
    Thread 25:
    0   libSystem.B.dylib                       0x00007fff837eddb6 semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x000000012a7d8007 semaphore_wait(viona_semaphore_t*) + 55
    2   com.apple.AVCHDPlugin                   0x000000012a7e5d80 WinPortServer::FlushMessages(WinPort*, unsigned int, int) + 1344
    3   com.apple.AVCHDPlugin                   0x000000012a7d7810 ST20Thread::Run(PThreadRunParams*) + 32
    4   libSystem.B.dylib                       0x00007fff838c929a _pthread_body + 24
    Thread 26:
    0   libSystem.B.dylib                       0x00007fff837eddb6 semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x000000012a7d8007 semaphore_wait(viona_semaphore_t*) + 55
    2   com.apple.AVCHDPlugin                   0x000000012a7e5d80 WinPortServer::FlushMessages(WinPort*, unsigned int, int) + 1344
    3   com.apple.AVCHDPlugin                   0x000000012a7d7810 ST20Thread::Run(PThreadRunParams*) + 32
    4   libSystem.B.dylib                       0x00007fff838c929a _pthread_body + 24
    Thread 27:  com.apple.dvdplayback-CPresentationEngine
    0   libSystem.B.dylib                       0x00007fff837eddb6 semaphore_wait_trap + 10
    1   com.apple.AVCHDPlugin                   0x000000012a7d8007 semaphore_wait(viona_semaphore_t*) + 55
    2   com.apple.AVCHDPlugin                   0x000000012a7e5d80 WinPortServer::FlushMessages(WinPort*, unsigned int, int) + 1344
    3   com.apple.AVCHDPlugin                   0x000000012a7d7810 ST20Thread::Run(PThreadRunParams*) + 32
    4   libSystem.B.dylib                       0x00007fff838c929a _pthread_body + 24
    Thread 28:
    0   libSystem.B.dylib                       0x00007fff837edd7a mach_msg_trap + 10
    1   libSystem.B.dylib                       0x00007fff837ee3ed mach_msg + 59
    2   com.apple.CoreFoundation                0x00007fff89da6902 __CFRunLoopRun + 1698
    3   com.apple.CoreFoundation                0x00007fff89da5d8f CFRunLoopRunSpecific + 575
    4   com.apple.CoreFoundation                0x00007fff89da5b16 CFRunLoopRun + 70
    5   com.apple.qmaster.do                    0x000000012d3dd0b1 swamp::CRAdReceiver2::ReceivingThread::runOnce() + 187
    6   com.apple.AECore                        0x0000000116d77eff aecore::CThread::runThread() + 35
    7   com.apple.AECore                        0x0000000116d75ed0 threadProc(void*) + 9
    8   libSystem.B.dylib                       0x00007fff83826fd6 _pthread_start + 331
    9   libSystem.B.dylib                       0x00007fff83826e89 thread_start + 13
    Thread 24 crashed with X86 Thread State (64-bit):
      rax: 0x0000000097b24800  rbx: 0x000000011aca98b0  rcx: 0x0000000097361880  rdx: 0x0000000000000000
      rdi: 0x00000001b3bdf000  rsi: 0x000000011c0ba780  rbp: 0x000000012b2a2770  rsp: 0x000000012b2a2770
       r8: 0x0000000103baf200   r9: 0x0000000000000000  r10: 0x0000000000001002  r11: 0x00000001b3bdf000
      r12: 0x00000000acdcefcf  r13: 0x00000001b3bdf000  r14: 0x00000000acdcefcf  r15: 0x00000000acdcefcf
      rip: 0x00007fffffe00eed  rfl: 0x0000000000010202  cr2: 0x00000001b341bff0
    Binary Images:
           0x100000000 -        0x1000cbfff  com.apple.FinalCutTrial 10.0.4 (197051) <3079CD68-239E-40A2-466B-3F9A058F569D> /Applications/Final Cut Pro Trial.app/Contents/MacOS/Final Cut Pro Trial
           0x100146000 -        0x100225fef  com.apple.procore.framework 4.0.2 (19703.3.25) <A54BC869-E45E-9BFA-4E9E-9BE32C1B1673> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/ProCore.framework/Versions/A/ProCore
           0x10027f000 -        0x1002c7ff7  com.apple.CoreMedia.ProAppsSupport 1.0 (705.73) <06403DF9-88E6-91FA-836E-B5305AC1842E> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
           0x1002e8000 -        0x100576ff7  com.apple.prokit 7.0.1 (1331.1) <0C6C56BB-83E2-7090-90D0-C9005C955F8A> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
           0x1006f8000 -        0x1012f4ff7  com.apple.Flexo 1.0.0 (19703.3.25) <6A284C36-194D-BB87-D296-D3E9F8C0B103> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/Flexo
           0x101789000 -        0x101855fef  com.apple.proapps.MIO 2.0 (19703.3.25) <6F2D33F9-0079-9EF5-80E4-CFD8131838BB> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
           0x1018bc000 -        0x1018dbfff  com.apple.pro.sharedstudio 1.0 (19703.3.25) <93F08F35-379F-9D21-C5F2-D81902BFE278> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/StudioSharedResources.framework/Versions/A/Studio SharedResources
           0x1018fc000 -        0x1019c9fef  com.apple.TLKit 1.0 (19703.3.25) <C60AFF97-EF08-0648-0BE9-6419A05E32DD> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/TLKit.framework/Versions/A/TLKit
           0x101a29000 -        0x101acdfef  com.apple.LunaKit 1.0 (19703.3.25) <7B3231B7-35D8-E077-83BA-E1985F740024> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/LunaKit.framework/Versions/A/LunaKit
           0x101b45000 -        0x101b82fff  com.apple.progl.framework 1.0 (19703.3.25) <2E2005F0-DA39-AA4A-3306-2B1C77C17D08> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/ProGL.framework/Versions/A/ProGL
           0x101bc5000 -        0x101c74fef  com.apple.ProAppsFxSupport 4.0.0 (19703.3.25) <03ED0841-C538-9971-004E-887175FE6128> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/ProAppsFxSupport.framework/Versions/A/ProAppsFxSu pport
           0x101e9d000 -        0x101ebbfef  com.apple.DeepSkyLite 0.6 (19703.3.25) <5819C636-A7A5-5BF9-9DD5-86ACDCFB9F66> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/DeepSkyLite .framework/Versions/A/DeepSkyLite
           0x101ed0000 -        0x1022ddfff  com.apple.VideoToolbox.ProAppsSupport 1.0 (705.73) <65ABE155-6852-F6C5-9AA4-6BA04E43EE4E> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
           0x102367000 -        0x102723ff7  com.apple.MediaToolbox.ProAppsSupport 1.0 (705.73) <04A8D97F-0B45-8F54-CA9C-781520BA84DF> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
           0x102795000 -        0x1028d3fef  com.apple.prochannel.framework 4.0.2 (19703.3.25) <E5A4ED7A-8E78-A484-40A2-A9834848134F> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/ProChannel.framework/Versions/A/ProChannel
           0x102986000 -        0x102986fff  com.apple.Helium 3.1.0 (19703.3.25) <226B96AC-CC2D-6062-78AF-F5F0423AE670> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
           0x10298a000 -        0x102a05fff  com.apple.proinspector.framework 4.0.2 (19703.3.25) <9A8798F5-51E2-2F46-E669-A5319DCED691> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/ProInspector.framework/Versions/A/ProInspector
           0x102a4c000 -        0x102a78fff  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <5B92DFB9-CE09-74B3-E67D-7302FB5984E8> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
           0x102a91000 -        0x102aa6fef  com.apple.MAAudioUnitSupport 1.0.0 (101) <6EBF5571-0CBE-4EEC-1C33-A9C798DD919E> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/MAAudioUnit Support.framework/Versions/A/MAAudioUnitSupport
           0x102ab6000 -        0x102b05fff  com.apple.proshapes.framework 1.0 (19703.3.25) <2F6DA227-B865-25E9-5BD4-490CCF4E4F72> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/ProShapes.framework/Versions/A/ProShapes
           0x102b30000 -        0x102c42fff  com.apple.proosc.framework 3.1.0 (19703.3.25) <B881F201-F5EE-0DC2-2839-1A23E07D51A5> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/ProOSC.framework/Versions/A/ProOSC
           0x102ca8000 -        0x102cc2ff7  com.apple.iLifeFaceRecognition 1.0 (21) <5D45F816-8F9C-C6F5-4050-1331BCA3ADB2> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceRe cognition.framework/Versions/A/iLifeFaceRecognition
           0x102cd5000 -        0x102d52fff  com.apple.procurveeditor.framework 3.1.0 (19703.3.25) <D4884EC3-471F-2E3C-F261-98123A8E9B92> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/ProCurveEditor.framework/Versions/A/ProCurveEdito r
           0x102d8d000 -        0x102d9ffef  com.apple.TLKEventDispatcher 1.0 (19703.3.25) <B9D1A3E9-376C-9F6E-6CDB-2CD8EC307F51> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/TLKEventDispatcher.framework/Versions/A/TLKEventD ispatcher
           0x102dad000 -        0x10315bfe7  com.apple.Helium.HeliumRender 2.1.0 (19703.3.25) <0D06A095-BB06-D193-2FA1-4E90A72F8FC2> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Helium.framework/Versions/A/Frameworks/HeliumRend er.framework/Versions/A/HeliumRender
           0x10327f000 -        0x10334afef  com.apple.Helium.Heliumfilters 2.1.0 (19703.3.25) <6D806578-FFC4-A63D-A650-7427E2A058D4> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Helium.framework/Versions/A/Frameworks/HeliumFilt ers.framework/Versions/A/HeliumFilters
           0x103600000 -        0x1038b4fef  com.apple.Helium.HeliumSensoCore 2.0.2 (19703.3.25) <96791AF1-948E-C893-7B94-AA0CF6F82AE4> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Helium.framework/Versions/A/Frameworks/HeliumSens oCore.framework/Versions/A/HeliumSensoCore
           0x10392a000 -        0x10392aff7  libmx.A.dylib 315.0.0 (compatibility 1.0.0) <B146C134-CE18-EC95-12F8-E5C2BCB43A6B> /usr/lib/libmx.A.dylib
           0x10392d000 -        0x103964ff7  com.apple.FWAVC 130.46 (46) <98356E01-C6E3-44EA-0D44-412CDC595F0B> /System/Library/PrivateFrameworks/FWAVC.framework/Versions/A/FWAVC
           0x10397b000 -        0x10397dfff +eOkaoCom.dylib ??? (???) <393F340C-3AD1-C89B-6C37-9D8ABF4BFFD9> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceRe cognition.framework/Versions/A/Resources/eOkaoCom.dylib
           0x103981000 -        0x1039a8ff2 +eOkaoPt.dylib ??? (???) <E6500FB8-157F-57B5-FE25-2A3A1CB3574C> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceRe cognition.framework/Versions/A/Resources/eOkaoPt.dylib
           0x1039af000 -        0x1039e4fe7 +eOkaoDt.dylib ??? (???) <7A74253D-8930-6FF1-B513-0929C4E111A2> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceRe cognition.framework/Versions/A/Resources/eOkaoDt.dylib
           0x1039eb000 -        0x103b53fef +eOkaoFr.dylib ??? (???) <510E837E-135A-92C8-9AC0-465691EA43D2> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/Frameworks/iLifeFaceRe cognition.framework/Versions/A/Resources/eOkaoFr.dylib
           0x103b59000 -        0x103b79fff  com.apple.fxplugframework 2.2 (19703.3.25) <594C318D-269C-6A35-6463-A96F0E64BF7E> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/FxPlug.framework/Versions/A/FxPlug
           0x103b8e000 -        0x103b9dfff  com.apple.PluginManager 1.7.4 (19703.3.25) <7D5E14FF-4A6F-C881-57CE-46E7653BADB8> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/PluginManager.framework/Versions/B/PluginManager
           0x103be0000 -        0x103be7ff7  com.apple.filter.PAECIAdaptor 1.0 (19703.3.25) <EBA0102C-A63B-9D23-B944-89DFA0ADAFF3> /Applications/Final Cut Pro Trial.app/Contents/PlugIns/FxPlug/PAECIAdaptor.fxplug/Contents/MacOS/PAECIAdapt or
           0x103f83000 -        0x103fd2ff7  com.apple.CoreMediaIO 212.0 (3191) <6C0795C3-9795-D0B8-65DF-5B0965266EE1> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/CoreMediaIO.framework/Versions/Current/CoreMediaI O
           0x114883000 -        0x114a16fe7  GLEngine ??? (???) <BCE83654-81EC-D231-ED6E-1DD449B891F2> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
           0x114a47000 -        0x114e63fff  com.apple.ATIRadeonX2000GLDriver 1.6.36 (6.3.6) <EBE273B9-6BF7-32B1-C5A2-2B3C85D776AA> /System/Library/Extensions/ATIRadeonX2000GLDriver.bundle/Contents/MacOS/ATIRade onX2000GLDriver
           0x114eaf000 -        0x114ed5fff  GLRendererFloat ??? (???) <38621D22-8F49-F937-851B-E21BD49A8A88> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
           0x11527f000 -        0x115281ff7  com.apple.music.apps.common.resources 9.1.0 (279.8) <67622011-AE23-6AE4-0FEB-F7CD38C99460> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bun dle/Contents/Resources/common.res/Contents/MacOS/common
           0x115370000 -        0x115379fef  com.apple.Audio.provider 1.0.0 (19703.3.25) <2941DD1D-774F-0BB1-B8C7-13CFB7230292> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/MediaProviders /AudioProvider.fxp/Contents/MacOS/AudioProvider
           0x115380000 -        0x1153cafe7  com.apple.Fig.provider 1.0.0 (19703.3.25) <028EEE74-4E3D-1BDD-8562-BF6416E5E4E5> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/MediaProviders /FigProvider.fxp/Contents/MacOS/FigProvider
           0x115463000 -        0x115492fff  com.apple.proapps.AppleAVCIntraCodec 1.0.1 (5708) <86B1E465-5CD9-407E-CEF0-EED1C8031F27> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleAVCIntraCodec .bundle/Contents/MacOS/AppleAVCIntraCodec
           0x11549f000 -        0x1154effe7  com.apple.proapps.AppleDVCPROHDCodec 1.0.1 (5708) <E50A1023-5825-C902-2BFB-573A94FDFDE6> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleDVCPROHDCodec .bundle/Contents/MacOS/AppleDVCPROHDCodec
           0x115506000 -        0x115524fff  com.apple.proapps.AppleIMXCodec 1.0.1 (5708) <D819B3B5-C6B7-2EAF-264D-ABAF67B19455> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleIMXCodec.bund le/Contents/MacOS/AppleIMXCodec
           0x115536000 -        0x115566fef  com.apple.proapps.AppleIntermediateCodec 1.0.1 (5718) <681C1BAC-DD5A-B885-FD51-16A211D98E9D> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleIntermediateC odec.bundle/Contents/MacOS/AppleIntermediateCodec
           0x11557c000 -        0x115641fff  com.apple.proapps.AppleMPEG2Codec 1.0.2 (5708) <E32A26C9-3D2D-682B-388C-ECA6E2CC9048> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleMPEG2Codec.bu ndle/Contents/MacOS/AppleMPEG2Codec
           0x11565e000 -        0x1156f4fef  com.apple.proapps.AppleProResCodec 1.0.3 (5758.29) <CC38213F-65EA-495D-9291-3C3F03325193> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleProResCodec.b undle/Contents/MacOS/AppleProResCodec
           0x115732000 -        0x115741ff7  com.apple.proapps.AppleUncompressedCodec 1.0.1 (5708) <902E7643-1858-5A57-7A93-BFE41B65CA37> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/PlugIns/Codecs/AppleUncompressedC odec.bundle/Contents/MacOS/AppleUncompressedCodec
           0x11574a000 -        0x11574efe7  com.apple.proapps.AppleCMQTAdapterCodec 1.0 (1) <E298BB99-A5DD-274D-80CA-AF568E3B29D2> /Applications/Final Cut Pro Trial.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/PlugIns/App leCMQTAdapterCodec.bundle/Contents/MacOS/AppleCMQTAdapterCodec
           0x115754000 -        0x115774ff7  com.apple.FxPlug.provider 1.0.0 (19703.3.25) <0F477F94-71E5-8561-0F18-BFFEC62E694A> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/MediaProviders /FxPlugProvider.fxp/Contents/MacOS/FxPlugProvider
           0x115780000 -        0x11579aff7  com.apple.promath.framework 5.0.0 (19704.8.25) <9985B873-AA33-7E56-C9A7-801CA219369F> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/ProMath.framework/Versions/A/ProMath
           0x1157a3000 -        0x1157b5ff7  com.apple.RetimingMath 5.0.0 (19704.8.25) <4E54A4E2-18E6-0281-47AF-82C0D06542BA> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/RetimingMath.framework/Versions/A/RetimingMath
           0x116d5b000 -        0x116ec7fef  com.apple.AECore 4.0.3 (303) <8A25EA37-E0C1-144D-01F4-E8D6EBCC5F51> /Applications/Final Cut Pro Trial.app/Contents/PlugIns/Compressor/CompressorKit.bundle/Contents/Frameworks/ AECore.framework/Versions/A/AECore
           0x116f49000 -        0x11719bff7  com.apple.Motion.effect 5.0.0 (19704.8.25) <AF38E634-39F5-260B-1B21-3657615C95F8> /Applications/Final Cut Pro Trial.app/Contents/PlugIns/MediaProviders/MotionEffect.fxp/Contents/MacOS/Motio nEffect
           0x1171d0000 -        0x117390ff7  com.apple.Lithium 5.0.0 (19704.8.25) <0648F4A5-F5F7-EDCF-594E-848857174794> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Lithium.framework/Versions/A/Lithium
           0x117423000 -        0x118067fef  Ozone 19704.8.25 (compatibility 1.0.0) <1E598732-348F-601A-8AA7-1DFD7CF2B07A> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Ozone.framework/Versions/A/Ozone
           0x118457000 -        0x1184b0ff7  com.apple.ProGraphics 5.0.0 (19704.8.25) <C09C5603-509D-9BD5-4AB4-C9FD45BAD4F8> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/ProGraphics.framework/Versions/A/ProGraphics
           0x1184dd000 -        0x118bb5ff7  com.apple.motion.TextFramework 5.0.0 (19704.8.25) <F21AF015-7734-5802-E44E-7BF4100A0E92> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/TextFramework.framework/Versions/A/TextFramework
           0x118cab000 -        0x118d72fe7  com.apple.ProMedia 5.0.0 (19704.8.25) <21C06D40-C36F-72D9-49D6-15496BD2595E> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/ProMedia.framework/Versions/A/ProMedia
           0x118de8000 -        0x118ef8ff7  org.python.python 2.6.1 (2.6.1) <126DA8FF-5BC2-8788-51E3-D7A29A3F9F0F> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
           0x118f58000 -        0x118fa8ff7  com.apple.audio.midi.CoreMIDI 1.7.1 (42) <E7DBCE93-A637-ABA2-B623-6A76B82EE243> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
           0x118fd0000 -        0x119039fff  com.apple.proapps.AudioMixEngine 2.0 (68) <58BA4846-87F7-A80D-4A02-D083100EFA94> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Ozone.framework/Versions/A/Frameworks/AudioMixEng ine.framework/Versions/A/AudioMixEngine
           0x11909e000 -        0x1190a0ff7  com.apple.music.apps.efx.resources 9.1.0 (279.8) <059005E1-FC82-0687-0B93-B65D4601CDBB> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bun dle/Contents/Resources/efx.res/Contents/MacOS/efx
           0x119252000 -        0x119254ff7  com.apple.music.apps.egt.resources 9.1.0 (279.8) <7EC6FF3C-56ED-D700-8283-60256B19E040> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bun dle/Contents/Resources/egt.res/Contents/MacOS/egt
           0x1192ab000 -        0x1192adff7  com.apple.music.apps.evb3.resources 9.1.0 (279.8) <A5E2A4BA-9388-E22A-540A-82C08D11546A> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bun dle/Contents/Resources/evb3.res/Contents/MacOS/evb3
           0x11946d000 -        0x119473ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <E5986961-7A1E-C304-9BF4-431A32EF1DC2> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
           0x11947a000 -        0x11947cff7  com.apple.music.apps.evd6.resources 9.1.0 (279.8) <D8FB480F-EDBC-B173-5155-2417C4204574> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bun dle/Contents/Resources/evd6.res/Contents/MacOS/evd6
           0x119481000 -        0x119483ff7  com.apple.music.apps.evoc.resources 9.1.0 (279.8) <4820A0BC-48C8-2D4D-6659-8194FB28FE7F> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bun dle/Contents/Resources/evoc.res/Contents/MacOS/evoc
           0x119488000 -        0x11948aff7  com.apple.music.apps.evp88.resources 9.1.0 (279.8) <7BFB2040-677D-7D82-A29D-223563ECC9E9> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bun dle/Contents/Resources/evp88.res/Contents/MacOS/evp88
           0x11948f000 -        0x119491ff7  com.apple.music.apps.mutapdel.resources 9.1.0 (279.8) <5389AB40-9014-7B05-998E-A275175AAD1F> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bun dle/Contents/Resources/mutapdel.res/Contents/MacOS/mutapdel
           0x119cb2000 -        0x119cefff7  com.apple.prokit.SnowLeopardPanels 7.0.1 (1331.1) <3585FB91-33B6-1BF3-A716-85D069944820> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
           0x119d5b000 -        0x119d5dff7  com.apple.music.apps.sphere.resources 9.1.0 (279.8) <E29B8533-1854-7F05-3624-334E85DCA3E8> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bun dle/Contents/Resources/sphere.res/Contents/MacOS/sphere
           0x119d62000 -        0x119d64ff7  libclparser.dylib ??? (???) <1B770111-C056-FC1A-FC7A-E2A5DAD749CB> /System/Library/Frameworks/OpenCL.framework/Libraries/libclparser.dylib
           0x119dd3000 -        0x119dd8ff7  libcldcpuengine.dylib 1.5.6 (compatibility 1.0.0) <AEBE018E-84A8-4412-636C-0363F9997066> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
           0x119fd2000 -        0x119fedff7  com.apple.EDEL 2.5 (536) <FDBD34E5-AF22-DB4F-AFBB-9F4B74872530> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bun dle/Contents/MacOS/EDEL
           0x11a2f2000 -        0x11a2f6fff  com.apple.audio.AudioIPCPlugIn 1.1.6 (1.1.6) <917E3DC8-E34D-B130-F61F-50808466E674> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x11a6dd000 -        0x11a76cff7  com.apple.music.apps.MACore 9.1.0 (475.15) <B4990968-DF1C-4D37-E088-5B292EBB0D80> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bun dle/Contents/Frameworks/MACore.framework/Versions/A/MACore
           0x11ba7b000 -        0x11bb32fef  com.apple.music.apps.MAFiles 9.1.0 (143.14) <93BAA38B-9E11-658C-BA79-7B60806259F3> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bun dle/Contents/Frameworks/MAFiles.framework/Versions/A/MAFiles
           0x11bb7e000 -        0x11bbc8fef  com.apple.music.apps.MAHarmony 9.1.0 (198.11) <37FB1C22-4A16-12D5-B978-BCA4C727242C> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framework/Versions/A/PlugIns/Audio/EDEL.bun dle/Contents/Frameworks/MAHarmony.framework/Versions/A/MAHarmony
           0x11bee4000 -        0x11beeaff7  com.apple.audio.AppleHDAHALPlugIn 2.0.5 (2.0.5f14) <C35BDA60-35FC-4BE7-B378-DCC73D99E2C9> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x11bf00000 -        0x11bf54fff  com.apple.Bloodhound 5.0.0 (19704.8.25) <0CDA199C-1639-1D81-AFFD-E03CC29CC2D4> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Bloodhound.framework/Versions/A/Bloodhound
           0x11bf84000 -        0x11bf9bff7  com.apple.motion.Text 5.0.0 (19704.8.25) <A8251CEA-1CE6-3656-D397-86BAF9D85436> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Ozone.framework/Versions/A/PlugIns/Text.ozp/Conte nts/MacOS/Text
           0x11c100000 -        0x11c449fe7  com.apple.music.apps.MADSP 9.1.0 (586.17) <0C23D10E-CBEC-FA04-D02C-2F2D8AD9B8AF> /Applications/Final Cut Pro Trial.app/Contents/Frameworks/Flexo.framewo

    Have you ever noticed how the newspapers and TV news programmes are full of murders and other horrific events?
    Everyone is in dire and imminent peril.
    Well the internet forums are like that. People with problems are airing them and you only need to see a few complaints to get the impression they are affecting the bulk of users, when in truth it is merely a handful compared with the countless thousands of satisfied customers.
    The bulk of problems is due to user error and  most of the rest can be credited to conflicts occurring on particular systems.
    Manufacturers do get it wrong but most of the time most of the complaints are usually unfounded or unfair.
    It sounds as though there are aspects of your setup that are causing the problems.
    Some people think that applications should be tested for conflicts before being released.
    They are, but the infinite number of permutations of ways a computer and its apps can be set up makes it impossible to test against all eventualities.
    Sorry, this isn't directed at you. I'm just airing my thoughts to the world (or at least, this miniscule forum) in general. 

  • HI THERE!IS THERE ANY ONE WHO CAN HELP ME HAVING TROUBLE WITH MY IPHONE 3GS AFTER UPGRADING TO IOS5.0 IT WONT READ THE SIM AND NO SERVICE  AND IT WONT ACTIVATED.PLEASE HELP

    HI THERE IS THERE ANYONE WHO CAN HELP ME?I UPGRADE MY IPHONE 3GS TO IOS5 AND NOW IT WONT ACTIVATE AND SAYS THE SIM CARD IS NOT SUPPORTED I CHANGE FOR ANEW SIM ALREADY BUT STILL WONT ACTIVATE.PLEASE HELP

    you're responding to a post that's almost 2 months old. Time to post your own thread.

  • Creating an Array of external JPGs, please help.

    So what I want to do is load up external JPGs into an Array of MovieClips, and then go to the main onEnterFrame function. My code is below:
    var imageLoader:Loader = new Loader();
    var imageArray:Array = new Array();
    function loadImage():void {
        for (i = 0; i < 9; i++) {
            imageLoader.load(new URLRequest("image" + String(i) + ".jpg"));   
            imageArray[i] = new MovieClip();
            imageArray[i].addChild(imageLoader);
        addEventListener(Event.ENTER_FRAME,onEnterFrame);
    I tried adding an Event.COMPLETE function I found:
    imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);
    function imageLoaded(e:Event):void {
         var image:Bitmap = (Bitmap)(e.target.content);
         imageArray[i] = new MovieClip();
         imageArray[i].addChild(image);
    Unfortunately, I usually only ended up with 1 or 0 images, and errors. I can't seem to properly pass the i
    value, so that's a big problem because the order the images go is key to my program.
    Please help me get this working so my image gallery can work, thanks!

    So the problem is that you want them in the array in the same sequence am I right on this?
    See the updated code:
    var imageArray:Array = new Array();
    var imageLoader:Array = new Array();
    function loadImage():void {
        for (i = 0; i < 9; i++) {
            var imageLoader[i] = new Loader();
            imageArray[i] = new MovieClip();
            imageLoader.load(new URLRequest("image" + String(i) + ".jpg"));   
            imageArray[i].addChild(imageLoader[i]);
            //imageLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, imageLoaded);
        addEventListener(Event.ENTER_FRAME,onEnterFrame);
    /* function imageLoaded(e:Event):void {
         var image:Bitmap = (Bitmap)(e.target.content);
         imageArray[index].addChild(image);
    In this case you can not track whether an image is loaded or not. It is the most simplest way of doing this. If your images are not coming from dynamic sources and are fixed in number and position you can use this method also.

  • Parse into array using JDOM! please help

    hey,
    i've managed to parse an xml document using JDOM
    i[b] need to be able to parse it and store the text (the value of each node) into an array, and then insert into db etc.
    the problem is with the recursive function listChildren which calls itself... can someone tell me where do i insert the block of code such that i can store it into an array of string.
    here's the code:
    public static void parse(String stock) throws SQLException
    SAXBuilder builder = new SAXBuilder();
    Reader r = new StringReader(stock);
    Document doc = builder.build(r);
    Element root = doc.getRootElement();
    listChildren(root, 0);
    public static void listChildren(Element current, int depth) throws Exception
    String nodes = current.getName();
    System.out.println(nodes + " : " + current.getText());
    List children = current.getChildren();
    Iterator iterator = children.iterator();
    while(iterator.hasNext())
    Element child = (Element) iterator.next();
    listChildren(child, depth+1);
    i'm looking for something like:
    a=current.getText();
    but i donno where to include this line of code, please help
    cheers,
    Shivek Sachdev

    hi, I suggest you make an array of byte arrays
    --> Byte[][] and use one row for each number
    you can do 2 things,
    take each cipher of one number and put one by one in each column of the row correspondent to that number. of course it may take too much room if the int[] is too big, but that is the easiest way I think
    the other way is dividing your number into bitsets(class BitSet) with sizes of 8 bits and then you can save each bit into each column of your array. and you still have one number in each row. To put your numbers back use the same class.
    Maybe someone has an easier way, I couldnt think of any.

Maybe you are looking for

  • Is iSight using internal USB BUS in Bootcamp (win xp ) mode?

    Hello, I am having issues with my musicall instrument that is plugged into Mac Book Pro 15" 2.0 Core Duo 1G RAM. The instrument is plugged into one of the USB port of MBP. I would like to know if iSight in WinXP mode is using internal USB bus. If it

  • Regarding The Function Module SXMS_ASYNC_EXEC strucking In Queue

    Dear All, I have Written an Enhancement for standard Program MB52,  I have written an Outbound Proxy and scheduled the job in background the Job is running successfully but default the the Function module SXMS_ASYNC_EXEC is also scheduled and is it 

  • How to check in hp laser jet 1020 Plus , how many printout in one toner. cartridge

    I change again-by-again in HP Laser 1020Plus toner but not recevied any information like how many printout this  cartridge . please give me any solution.

  • REPOSITORY SYNC

    Hello, Currently we are working on configuration of LDAP AD on GRC(sp13) system. Done with all the required configuration as per the recommendations by SAP. But, while trying to perform repository sync getting error as" USER ADAPTER IS EMPTY". I am a

  • Directly Printing the Reports Output to a Printer in 10g.

    Hi All, We need to print directly from the reports to a printer. How it can be achieved? i.e Reports running in client machine and when I hit the Run Button in my form the report runs. Similarly the report output should be printed to the printer atta