Array to vector - isn't working.

Hello all.
Firstly, this is not a homework question. I am doing a course which teaches Object Oriented programming which happens to use Java to teach it. I've discovered I like programming in Java and figure I have just enough knowledge to be dangerous, so I have set out on a project of my own.
The app I am building uses a webservice to log into a site and retrieve sports information, then performs calculations based on the information and sends further requests to get stuff done. Your basic webservice app I guess.
The problem I am having at the moment is that I'm trying to populate a vector using a complex type array called EventType which is returned by the service.
I'm not having any problems getting the information back from the service, but I want to use the data returned in a JTable, which means I have to construct a model for the table and it is here that I am striking my problem.
I can access the EventType array and get the information from it easily enough and I can separate the information I want out of it pretty easily as well. What I am having trouble doing is putting the information into a collection of some sort which I can send to my AbstractTableModel.
The EventType array contains four arrays of Strings and Integers. I only need to work with two of them though, so my first thought was to use a HashMap<Integer, String> because the integer will always be unique to that event and can be used as a key. Another way of doing it would be to pass the information over to the table model as a vector, then break it down in the model itself.
I am having trouble iterating over the EventType array and inserting it into whatever collection type I am using though.
Here is the code:
// imports
import com.betfair.publicapi.types.global.v3.EventType;
import java.util.Vector;
// declarations
public static EventType[] sports;
public static Vector sportsVector;
// troublesome code
sports = new EventType[result.getEventTypeItems().getEventType().size()];
System.out.println("Number of sports: " + sports.length);
sportsVector = new Vector();
System.out.println("Made the vector...");
for (int s = 0; s < sports.length; s++)
    System.out.println("Putting entry number " + s + " in now.");
    sportsVector.addElement(sports[s]);
    System.out.println("Added sport number " + s);
System.out.println("Filled the map...");As you can see I have sprinkled the code with println's to track down where the problem is. The code works perfectly right up until I see:
System.out.println("Putting entry number " + s + " in now."); the first time it goes through the loop.
Whereupon the entire thing stops. There is no crash, there is no warning in the output window (I am using netbeans), nothing happens at all. The same thing happens when I try to use a Vector or a Set. I haven't tried a list yet.
I'm fairly sure this is something basic I have missed, but I can't for the life of me figure out what it is.
Any ideas please?
Alan

Thanks for your replies guys.
I'm not sure what has happened there, since I didn't change anything except to restart netbeans (started to behave strangely), but suddenly it is filling the vector the way it is supposed to.
I am getting a warning:
Note: C:\Users\alan\Documents\NetBeansProjects\AnotherBF\src\anotherbf\SportsMonitor.java uses unchecked or unsafe operations.
Note: Recompile with -Xlint:unchecked for details.Which I think has to do with declaring a type within the vector. I gave google a scouring and after trying the solution of declaring the type within the addElement method, the whole thing refused to compile.
i.e.
sportsVector.addElement(new EventType(sports[s]));I'm not sure how to fix that.
Edited by: inksmithy on 23-Mar-2008 14:09 - saying thanks to people replying.

Similar Messages

  • Use array or vector ?

    I need to store data into a 3D array i.e. abc[128][128][128]. Every item of the array is an object.
    My problem is, if i use 3D array to store the data directly, it is too memory costing and always return OutOfMemoryError!!! Also terribly slow !
    Is it better to use vector of vector instead of 3D array? I mean put the 128 objects into a single array and then put 128 single arrays into a vector, lastly put 128 vectors into a new vector.
    Or otherwise, who has any other good suggestions to store these 128*128*128 objects?

    However, that's small compared to the number ofdistinct objects in that space -- 128^3. So the number
    of objects taken up by the arrays or vectors, is less
    than 1% of the number of objects in the 3D space
    defined by the arrays or vectors.
    Sorry, I don't get what you mean ;)
    Yes, it is 1% of the number of objects in the 3D
    space, but you haven't calculate the 4 bytes int value
    used by the int value itself.We're not talking about ints though, are we? The question was about a 3D space of objects.
    So, if let say array Object definition uses 2 bytes,
    then the RAM needed will be:
    Object definition + int values
    ((128^2 + 128 + 1) * 2) + ((128^3) * 4)
    if you create int[128^3], you will only create:
    128^3 * 4Given that problem statement, the array object definitions take up 33026 bytes, whereas the int values take up 8388608. So the memory used by the array object definitions is still just 1% of the memory used. By switching to a 1D array of length 128^3, you're saving less than 1% of the memory. The 33026 bytes isn't the problem here.
    (((128^2 + 128 + 1) * 2) + ((128^3) * 4)) is a much bigger number than ((128^2 + 128 + 1) * 2).
    Just (128^3 * 4) is a much bigger number than ((128^2 + 128 + 1) * 2).
    But anyway that's not the problem statement anyway. There are 128^3 potential objects created in the heap. That's going to be a lot more than the arrays or vectors used to reference them.
    This is why I think the best solution is to look at the data and see if a better approach can be taken than just using 128^3 buckets.
    Another slow but possible solution is using HashMap.
    To check coordinate 33, 75, 109, you can use:
    map.get(new Integer(33*75*109)] and hope Java garbage
    collector runs pretty fast.I wouldn't advise that, because that would cause conflicts between objects at 33,75,109 and 75,33,109, etc. There would be 3! = 6 possible conflicts. If you want to turn the 3D index into a flat 1D index, then multiply each coordinate by a constant to put each into its own range, e.g., (33,75,109)'s 1D index would be (33 * (128^2)) + (75 * 128) + 109.
    Hopefully that's less than the maximum int value. It may not be.
    This solution works fine only if in vast 128*128*128,
    only few hundreds coordinate x,y,z which actually have
    a value. This way you can store the value only if
    needed.Yes, exactly, if the domain data is sparse, a different approach like this would work better than defining 128^3 data buckets.
    If the data is sparse enough, it might be easier to define a 3DCoordinate object to use as the index into the hashtable, than programmatically creating a 1D index.

  • Please help, 2D Array of Vectors and Incompatible types :(

    I have a 2D array of vectors called nodeLocations but when I try and access the vector inside I get a compile error.
    My code is something like this:
    nodeLocations[j].addElement(noArc)
    My editor picks up that its a Vector and shows me addElement as an acceptable entry to put after the "." yet the compiler says:
    "addElement(java.lang.Object) in java.util.Vector cannot be applied to (int)"
    Can someone please help?
    Thank you in advance.
    also a related problem:
    I get inconvertible types (says int required) when I try and get an element from a vector stored in a 2D Array. I know that it comes out as an object and so should be cast but it does not seem to work. My code is as follows:
    else if (((int)(nodeLocations[nodeNumber][adjNodeNumber].elementAt(0))) != distance)
    I would appreciate any help anyone can give.
    Similar errors to the above two happen when
    I try a push with a Stack in a vector.
    I try to get something out of the stack inside the vector.

    The Vector class's addElement() method requires an Object parameter. It appears that you're trying to add an int to the Vector. You'll need to create an Integer object and place that into the vector (see sample below) or use the pre-release version of JDK 1.5 which provides autoboxing capabilities.
    int z = 5;
    Integer x = new Integer(z);
    nodeLocations[j].addElement(x);

  • Array of vectors

    if I have an array of vectors how would I got about add elements
    to one of the vectors in the array, also how would I search a specific vectors object for equality on another object.
    example: Vector [] lists = new Vector[61];
    how would I add an ID object to on of the vectors.
    also how would a search a vector for equality with a specific ID
    object.
    thanks

    To add an object to (say) the 20th vector use
    ID id = new ID();
    lists.add(id);
    Searching for equality is similar; use the contains method in the vector class.
    I have not tried this, but it should work I think.

  • I have Google Chrome, but my flash player isn't working, what should I do?

    Whenever I try to download it, I am unable to as well.  I have the most up to date version of Flash Player because I have Chrome, but it simply isn't working.

    On June 16, a new update for Adobe Flashplayer (add-on) appeared. The update could be installed (Win 7/64 SP1, IE 11.0.9600.17126), but made it impossible to watch websites requirering Flash - pages will be blank, videos will not play (blank). Current Flash player version seems to be 14.0.0.125.
    When I start IE, even without any default initial webpage, messages pop up, saying something like "This webpage wants to run the following add-on: '<add-on name' from '<supplier>'. ..." There are a variety of <add-on names>, for instance 'Adobe Flashruntime' from 'Adobe Systems Incorporated', and 'MSXML 3.0 SP11' from 'Microsoft Corporation'. The MSXML 3.0 SP11 is something, that should not be enabled, as it indicates the webpage refers to an old version of the XML editor software, instead of using the latest available in the computer. Enabling any of these required add-ons will have no observable effect - the popups continue to appear and many webpages remain non-viewable.
    I cannot find any way to restore a previous version as a temporary solution. Attempted downloading and installing Adobe Flash player from their site, but that only turned the situation worse, resulting in an unknown Internet search tool (speedial something) being installed, that shortcutted Google, rendering it non-usable. I had to deinstall Adobe flash player and that non-wanted search tool (which wasn't easy), before resetting IE (Internet Explorer). The Adobe flash problem did not go away. There is no easily available method to contact Adobe about this problem.
    I also have an instance of Opera installed, which is not affected by this flash player problem, as is not Google Chrome. Google Chrome however, normally never used, prompts to install Mcafee and other software.
    Plausible demands on Adobe:
    1.  There should be an easy method to restore the previous version of the software, in case of a failure or when post-install problems occur.
    2.  Make it possible to report a problem. In installation cannot be regarded as successful, unless it also works properly as seen by the user. Like Microsoft, you can collect the necessary technical details to understand the possible cause of many problems, after an analysis.
    3.  The current way of opting-out additional software options is dubious and prone to mistakes. Instead, present all options in an array, where tick marks are to be used to select or deselect them. For instance, installing Mcafee or any other anti-virus software will seriously affect the functioning of existing firewall or anti-malware software application instances.
    4.  Make no automatic changes to browsers, without informing the user.
    5.  Do NOT remove downloaded updates from hard drive upon installation, at least never, when I choose to first download, then to install.

  • Convolution.vi isn't working properly

    I'm using LabView 7.0 and I'm trying to performing a convolution with the convolution.vi. This VI isn't working properly. As you can see in the attached file, the result isn't right even for very small input arrays. The result also depend on the input data format (singel or double etc.)
    May be someone had the same problem, or knows something about it. I'm using LabView 7 on an Windows NT system, may be that has something to do with it.
    Would be greatful about every hint,
    best regards Andy
    Attachments:
    example_convoultionvi.vi ‏18 KB

    Very strange...
    Can you open the diagram of the convolution.vi, then double-click on the "Call Library Function Node". What is the Path? (It should be C:\Program Files\National Instruments\LabVIEW 7.0\resource\lvanlys.*).
    Could ot be yours points somewhere else?
    Now find the lvanlys.dll in explorer. The size of the LabVIEW 7.0 version should be 528384 bytes.
    Do a search for lvanlys.dll. How many different versions show up?
    LabVIEW Champion . Do more with less code and in less time .

  • Is there any way of  using arrays or vectors in JavaScript

    In my JSP page when ever a value in the text field changes i have to store that value before submitting a form. When ever the value in the text field changes i have to use "OnChange" option but i have to store all these values in an array or vector. Is there any other way of doing this. I am using webwork. Can any one help me!!!!!!

    JavaScript arrays are dynamic. You can add new values to the array and the array will grow in size.
    //a is an array of size zero
    var a = new Array();
    a[0] = "something";
    a[1] = "else";
    a[a.length] = "Adding another String at the end of my array";But here's something to think about. If your web site absolutely needs JavaScript, what happens to your site when the user decides to disable JavaScript in his browser....?
    I only use JavaScript to validate the user's input data, but I revalidate server-side in case JavaScript was disabled.

  • TS1398 Got the dreaded no wifi on my wife's iPhone 4S. Wifi greyed out and no luck with the reset network instructions. Why isn't Apple addressing this issue? We are a family of Apple product users, 2 ipads, an ipad mini, 4 iPhones but one isn't working!

    Got the dreaded no wifi on my wife's iPhone 4S. Wifi greyed out and no luck with the reset network instructions. Why isn't Apple addressing this issue? We are a family of Apple product users, 2 ipads, an ipad mini, 4 iPhones but one isn't working! Issue began whenwe upgraded the operating system.....
    Come on Apple.....get this issue sorted out!

    Just out of warranty. This is a software issue. everything was ok until the software update. Apple just need to sort it out.

  • For the second time (I've been to the Genius Bar once already) my WiFi isn't working on my iPhone 4S. This is really infuriating and costly!!! I see others have the same issues.  Can't Apple do anything about this?  It's obviously a hardware problem!

    For the second time (I've been to the Genius Bar already once with this) my Wifi isn't working.  They gave me a new iphone last time, but the new one has the same issue as the old one, I'm guessing.  I've tried resetting the network but that doesn't work.
    I see others have this issue too.
    If this is a hardware problem why doesn't Apple fix it?  Or do I just have to wait another year for another upgrade?
    Currently it's not costing me anything - yet - because I've got the Apple Warranty but this is totally frustating!!! I bought the original phone (which has been replaced in July 2012.  The new phone (without working Wifi) is a month old.
    Will try Restore via ITunes before (I will invariably) have to return to the Genius Bar for another Iphone 4S unless someone has an ingenius solution here?..?

    sematson wrote:
    If this is a hardware problem why doesn't Apple fix it?  Or do I just have to wait another year for another upgrade?
    For what reason, other than making yourself look foolish, would you ask questions that we users could not possibly answer as we're NOT Apple?
    Basics from the manual are restart, reset, restore from backup, restore as NEW.  Nothing more "ingenius" to suggest than these steps that Apple has outlined in the manual.  If these steps don't work, then go back to the Apple store.

  • Mini DisplayPort to VGA isn't working. It won't recognize any external monitor. It worked just fine with my older spring 2011 MacBook Pro running Snow Leopard, but now with my brand new 2012 MacBook Pro running Mountain Lion, it no longer works

    I just bought a new MacBook Pro this summer and was all excited. But I'm very frustrated right now because I can't connect to any external monitors through VGA. My thunderbolt (DisplayPort Mini) to HDMI works just fine, but when I try with my other connector to go from Thunderbolt (DisplayPort Mini) to VGA, Nothing works. my screen goes blue and changes size like it recognized something but nothing is ever detected on the external moniter or projector. I'm not sure what is wrong but it's very frustrating. I'm just very depressed that it worked just fine with my 2-year-old MacBook Pro but isn't working now. I'm running OS X 10.8.2. I just upgraded yesterday from 10.8.1 but that upgrade did nothing to fix my problem. Can anyone help? Thanks

    I am haveing this exact same issue. I have plugging in 3 monitors and tried two different VGA to mini displayport and nothing is working. I recently bought a Acer monitor and it work for an hour and now it back to doing the same thing.
    When I plug the VGA adapter in to the monitor the monitor think its not connected to a computer then when disconnecting the VGA adapter the monitor thinks it is connected to a computer.
    NEED SOME HELP!!! at the point of all my hair is pulled out.
    ^^^
    that is the same problem i am having! if anyone can help that would be great i'm losing my mind over here

  • I am a newbie...and I think I did a big no-no as my Ipad isn't working.  I synced it to a second computer at work which is a new Imac after already syncing to my pc at home with Itunes.  Now it says it can't restore and can't get it to open.  HELP!

    I am a newbie...and I think I did a big no-no as my Ipad isn't working.  I synced it to a second computer at work which is a new Imac after already syncing to my pc at home with Itunes.  Now it says it can't restore and can't get it to open, getting error messages but can't fix myself.  Can anyone help??

    iPad can connect only in one iTunes Library. If you want to connect it to a iTunes Library then you have to erase it. You can erase it from iTunes. Make sure you iPad doesn't have a password, or if it has a password make sure that you connect to the computer and enter the password of your iPad

  • I've searched to no avail for this problem. Similar posts but none that tell me what to do. I can't add or delete any bookmarks on my iPad 2 running the newest iOS. I know how it's suppose to work, it just isn't working!

    I've searched to no avail for this problem. Similar posts but none that tell me what to do. I can't add or delete any bookmarks on my iPad 2 running the newest iOS. I know how it's suppose to work, it just isn't working!
    It started after the major update to iOS 7.
    I can't believe that this is so hard to do. It's just not letting me. I can add a bookmark to the home screen just fine, just not in a bookmarks folder anywhere I try.
    I've used Apple products since 2001 and have always loved how intuitive they are. But the Safari browser since iOS 7 has been the worst I've experienced. At least right in the beginning after that update.
    I'd really appreciate any help that doesn't just tell me how it's suppose to work...I know that.
    My iPad 4 is not affected with the problem and works as it should.

    To delete, tap "Edit" (tap to enlarge image)

  • My iPhoto isn't working, I open it and a second later its saying "iphoto quit unexpectedly while using the Flip4Mac WMV Import Plug in"

    As i said in my topic My iPhoto isn't working, I open it and a second later its saying hoto quit unexpectedly while using the Flip4Mac WMV Import Plug in. i press ok and try to open it again but than says to repair so i do so, but it doesnt seem to repair its problem. I have tried opening a new photo library through it with the alt/option key but that doesnt seem to work either. i thought it did for a min because it didnt log out but once i pressed open photo stream it seemed to have the same problem. this is what i see
    Process:         iPhoto [661]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.4.2 (9.4.2)
    Build Info:      iPhotoProject-710042000000000~2
    App Item ID:     408981381
    App External ID: 11723545
    Code Type:       X86 (Native)
    Parent Process:  launchd [149]
    User ID:         502
    PlugIn Path:       /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    PlugIn Identifier: net.telestream.wmv.import
    PlugIn Version:    2.4.0.11 (2.4.0.11)
    Date/Time:       2013-03-17 14:23:46.000 -0700
    OS Version:      Mac OS X 10.8.3 (12D78)
    Report Version:  10
    Interval Since Last Report:          2036 sec
    Crashes Since Last Report:           13
    Per-App Interval Since Last Report:  413 sec
    Per-App Crashes Since Last Report:   13
    Anonymous UUID:                      4D8E93A6-DD18-B081-7D86-BA37E751C35B
    Crashed Thread:  27  Import thread 0
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/iPhoto.app/Contents/MacOS/iPhoto
        VM_ALLOCATE            0000000000001000-00000000000c3000 [  776K] ---/--- SM=NUL 
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   com.apple.AppKit                        0x9604dd81 -[NSApplication isActive] + 1
    1   com.apple.iPhoto                        0x005ea4d8 0xc3000 + 5403864
    2   com.apple.AppKit                        0x9608e3a4 -[NSView _drawRect:clip:] + 3706
    3   com.apple.AppKit                        0x9608b909 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 2156
    4   com.apple.AppKit                        0x9608c1fd -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4448
    5   com.apple.AppKit                        0x9608c1fd -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 4448
    6   com.apple.AppKit                        0x9608ae8f -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 290
    7   com.apple.AppKit                        0x96086bf3 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 4425
    8   com.apple.AppKit                        0x9604f3f1 -[NSView displayIfNeeded] + 1468
    9   com.apple.AppKit                        0x9604edad -[NSWindow displayIfNeeded] + 306
    10  com.apple.AppKit                        0x9604ea44 _handleWindowNeedsDisplayOrLayoutOrUpdateConstraints + 994
    11  com.apple.AppKit                        0x9668caeb __83-[NSWindow _postWindowNeedsDisplayOrLayoutOrUpdateConstraintsUnlessPostingDisabled]_block_ invoke_01253 + 58
    12  com.apple.CoreFoundation                0x94642ced _runLoopObserverWithBlockContext + 29
    13  com.apple.CoreFoundation                0x9461385e __CFRUNLOOP_IS_CALLING_OUT_TO_AN_OBSERVER_CALLBACK_FUNCTION__ + 30
    14  com.apple.CoreFoundation                0x9461379d __CFRunLoopDoObservers + 381
    15  com.apple.CoreFoundation                0x945ed806 __CFRunLoopRun + 886
    16  com.apple.CoreFoundation                0x945ed02a CFRunLoopRunSpecific + 378
    17  com.apple.CoreFoundation                0x945ece9b CFRunLoopRunInMode + 123
    18  com.apple.HIToolbox                     0x94229f5a RunCurrentEventLoopInMode + 242
    19  com.apple.HIToolbox                     0x94229cc9 ReceiveNextEventCommon + 374
    20  com.apple.HIToolbox                     0x94229b44 BlockUntilNextEventMatchingListInMode + 88
    21  com.apple.AppKit                        0x9604b9aa _DPSNextEvent + 724
    22  com.apple.AppKit                        0x9604b1dc -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    23  com.apple.AppKit                        0x9604163c -[NSApplication run] + 855
    24  com.apple.AppKit                        0x95fe4666 NSApplicationMain + 1053
    25  com.apple.iPhoto                        0x000d2c99 0xc3000 + 64665
    26  com.apple.iPhoto                        0x000d22e5 0xc3000 + 62181
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x92d489ae kevent + 10
    1   libdispatch.dylib                       0x979e0c71 _dispatch_mgr_invoke + 993
    2   libdispatch.dylib                       0x979e07a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 6:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 7:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x92d47c72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x97777a55 nanosleep$UNIX2003 + 189
    2   libsystem_c.dylib                       0x9777791e usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x96230c9d -[NSUIHeartBeat _heartBeatThread:] + 879
    4   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    5   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    6   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    7   libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0206fe12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x0206eefa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 16:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f22e9 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x976f2572 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x982e69b6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x982e67dd -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x982ebd10 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                       0x026cc48f -[RKAsyncImageRenderer _backgroundRenderThread:] + 173
    7   libobjc.A.dylib                         0x96ea4586 -[NSObject performSelector:] + 62
    8   com.apple.proxtcore                     0x02078df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    9   libobjc.A.dylib                         0x96ea45d3 -[NSObject performSelector:withObject:] + 70
    10  com.apple.proxtcore                     0x0207122c -[XTSubscription postMessage:] + 191
    11  com.apple.proxtcore                     0x02070aef -[XTDistributor distributeMessage:] + 681
    12  com.apple.proxtcore                     0x02070313 -[XTThread handleMessage:] + 515
    13  com.apple.proxtcore                     0x0206ef10 -[XTThread run:] + 434
    14  com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    15  com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    16  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    17  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 18:
    0   libsystem_kernel.dylib                  0x92d480ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x976f00ac _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x976efe79 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x976d7d2a start_wqthread + 30
    Thread 19:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x92d47be6 __select + 10
    1   com.apple.CoreFoundation                0x94631660 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    3   libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 20:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x92d457d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x92d44cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x945e7f89 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x945ed96f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x945ed02a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x945ece9b CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x9825463a +[NSURLConnection(Loader) _resourceLoadLoop:] + 395
    7   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    8   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    9   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    10  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 21:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f2280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x977780e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.apple.JavaScriptCore                0x94ed37a8 ***::ThreadCondition::timedWait(***::Mutex&, double) + 120
    4   com.apple.JavaScriptCore                0x950eaf63 JSC::BlockAllocator::blockFreeingThreadMain() + 115
    5   com.apple.JavaScriptCore                0x94ed172c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore                0x951008a0 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 22:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f2280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x97778095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore                0x95055b76 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 198
    4   com.apple.JavaScriptCore                0x95055a6e JSC::MarkStackThreadSharedData::markingThreadMain() + 238
    5   com.apple.JavaScriptCore                0x94ed172c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore                0x951008a0 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 23:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f2280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x97778095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore                0x95055b76 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 198
    4   com.apple.JavaScriptCore                0x95055a6e JSC::MarkStackThreadSharedData::markingThreadMain() + 238
    5   com.apple.JavaScriptCore                0x94ed172c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore                0x951008a0 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 24:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f2280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x97778095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.JavaScriptCore                0x95055b76 JSC::SlotVisitor::drainFromShared(JSC::SlotVisitor::SharedDrainMode) + 198
    4   com.apple.JavaScriptCore                0x95055a6e JSC::MarkStackThreadSharedData::markingThreadMain() + 238
    5   com.apple.JavaScriptCore                0x94ed172c ***::threadEntryPoint(void*) + 76
    6   com.apple.JavaScriptCore                0x951008a0 ***::wtfThreadEntryPoint(void*) + 16
    7   libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    8   libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 25:
    0   libsystem_kernel.dylib                  0x92d457d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x92d44cb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x945e7f89 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x945ed96f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x945ed02a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x945ece9b CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x982bdf36 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    7   com.apple.proxtcore                     0x0207106c -[XTRunLoopThread run:] + 469
    8   com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    11  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 26:
    0   libsystem_kernel.dylib                  0x92d478e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x976f2280 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x97778095 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation                    0x982b6d24 -[NSCondition wait] + 274
    4   com.apple.iPhoto                        0x00114a64 0xc3000 + 334436
    5   com.apple.iPhoto                        0x00114672 0xc3000 + 333426
    6   com.apple.CoreFoundation                0x946437cd __invoking___ + 29
    7   com.apple.CoreFoundation                0x94643707 -[NSInvocation invoke] + 279
    8   com.apple.RedRock                       0x026e885b -[RKInvoker _invokeTarget:] + 33
    9   com.apple.RedRock                       0x026f95f4 -[RKInvoker _invokeTargetWithPool:] + 68
    10  libobjc.A.dylib                         0x96ea45d3 -[NSObject performSelector:withObject:] + 70
    11  com.apple.proxtcore                     0x02078df9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    12  libobjc.A.dylib                         0x96ea45d3 -[NSObject performSelector:withObject:] + 70
    13  com.apple.proxtcore                     0x0207122c -[XTSubscription postMessage:] + 191
    14  com.apple.proxtcore                     0x02070aef -[XTDistributor distributeMessage:] + 681
    15  com.apple.proxtcore                     0x02070313 -[XTThread handleMessage:] + 515
    16  com.apple.proxtcore                     0x0206ef10 -[XTThread run:] + 434
    17  com.apple.Foundation                    0x982b87c8 -[NSThread main] + 45
    18  com.apple.Foundation                    0x982b874b __NSThread__main__ + 1396
    19  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    20  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 27 Crashed:: Import thread 0
    0   net.telestream.wmv.import               0x16eb179a ACWma1DecoderEntry + 1418
    1   net.telestream.wmv.import               0x16eb1a3c ACWma1DecoderEntry + 2092
    2   net.telestream.license                  0x1642c562 TSLicenseF4M::GetLevel(bool) + 42
    3   net.telestream.wmv.import               0x16e9b975 MjpgDecompressorComponentDispatch + 71957
    4   net.telestream.wmv.import               0x16ea00d5 MjpgDecompressorComponentDispatch + 90229
    5   net.telestream.wmv.import               0x16e84180 MmsMediaHandlerComponentDispatch + 14368
    6   com.apple.CoreServices.CarbonCore          0x9536dadb callComponentStorage_44 + 25
    7   com.apple.CoreServices.CarbonCore          0x9535eabf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    8   com.apple.CoreServices.CarbonCore          0x9535eaff CallComponentFunctionWithStorageProcInfo + 30
    9   net.telestream.wmv.import               0x16e8432d M4s2DecompressorComponentDispatch + 205
    10  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    11  com.apple.CoreServices.CarbonCore          0x952d8b38 CallComponentDispatch + 29
    12  com.apple.CoreServices.CarbonCore          0x9536bad7 CallComponentOpen + 43
    13  com.apple.CoreServices.CarbonCore          0x952d86a5 OpenAComponent + 443
    14  com.apple.CoreServices.CarbonCore          0x952d84e2 OpenComponent + 24
    15  com.apple.CoreServices.CarbonCore          0x952d8aeb CallComponent + 164
    16  com.apple.CoreServices.CarbonCore          0x952d8b38 CallComponentDispatch + 29
    17  com.apple.CoreServices.CarbonCore          0x9536bc5b CallComponentGetPublicResource + 57
    18  com.apple.QuickTime                     0x990d4c91 cchaMissing + 326
    19  com.apple.CoreServices.CarbonCore          0x952d7653 GetComponentPublicResourceList + 749
    20  com.apple.QuickTime                     0x990d40fb startUsingCachedCodecCharacterizations + 267
    21  com.apple.QuickTime                     0x990d3c14 FindBestChain + 30
    22  com.apple.QuickTime                     0x990d2af9 ICMSequenceGetChain + 514
    23  com.apple.QuickTime                     0x990cdca5 DoBandedDecompress + 5528
    24  com.apple.QuickTime                     0x990cc6a0 ICMAction + 1286
    25  com.apple.QuickTime                     0x990cbf90 ICMDeviceLoop + 3924
    26  com.apple.QuickTime                     0x990d2060 DecompressSequenceFrameWhen + 803
    27  com.apple.QuickTime                     0x990d1d34 DecompressSequenceFrameS + 61
    28  com.apple.QuickTimeImporters.component          0x9a2b57ad importGraphicDrawInternal + 1834
    29  com.apple.QuickTimeImporters.component          0x9a2af1ea importGraphicDrawOrDecide + 1782
    30  com.apple.CoreServices.CarbonCore          0x9535eabf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    31  com.apple.CoreServices.CarbonCore          0x9535eaff CallComponentFunctionWithStorageProcInfo + 30
    32  com.apple.QuickTimeImporters.component          0x9a2add31 ImportGraphicComponentDispatch + 81
    33  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    34  com.apple.CoreServices.CarbonCore          0x952d8b55 DelegateComponentCall + 24
    35  com.apple.QuickTimeImporters.component          0x9a24c768 ImportJFIFComponentDispatch + 98
    36  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    37  com.apple.CoreServices.CarbonCore          0x952d8b38 CallComponentDispatch + 29
    38  com.apple.QuickTimeComponents.component          0x93f3db61 0x933ab000 + 12135265
    39  com.apple.QuickTimeComponents.component          0x93c7abe0 0x933ab000 + 9239520
    40  com.apple.CoreServices.CarbonCore          0x9536d91f callComponentStorage_444 + 32
    41  com.apple.CoreServices.CarbonCore          0x9535eabf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    42  com.apple.CoreServices.CarbonCore          0x9535eaff CallComponentFunctionWithStorageProcInfo + 30
    43  com.apple.QuickTimeComponents.component          0x93c79b92 ExportBaseComponentDispatch + 81
    44  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    45  com.apple.CoreServices.CarbonCore          0x952d8b55 DelegateComponentCall + 24
    46  com.apple.QuickTimeComponents.component          0x93c7e3e2 ExportJFIFComponentDispatch + 98
    47  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    48  com.apple.CoreServices.CarbonCore          0x952d8b38 CallComponentDispatch + 29
    49  com.apple.QuickTimeComponents.component          0x93f3e825 0x933ab000 + 12138533
    50  com.apple.QuickTimeComponents.component          0x93c7a125 0x933ab000 + 9236773
    51  com.apple.CoreServices.CarbonCore          0x9536dadb callComponentStorage_44 + 25
    52  com.apple.CoreServices.CarbonCore          0x9535eabf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    53  com.apple.CoreServices.CarbonCore          0x9535eaff CallComponentFunctionWithStorageProcInfo + 30
    54  com.apple.QuickTimeComponents.component          0x93c79b92 ExportBaseComponentDispatch + 81
    55  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    56  com.apple.CoreServices.CarbonCore          0x952d8b55 DelegateComponentCall + 24
    57  com.apple.QuickTimeComponents.component          0x93c7e3e2 ExportJFIFComponentDispatch + 98
    58  com.apple.CoreServices.CarbonCore          0x952d8ade CallComponent + 151
    59  com.apple.CoreServices.CarbonCore          0x952d8b38 CallComponentDispatch + 29
    60  com.apple.QuickTime                     0x992bd8b3 GraphicsExportDoExport + 43
    61  com.apple.iPhoto                        0x001e75b9 0xc3000 + 1197497
    62  com.apple.iPhoto                        0x001e70e1 0xc3000 + 1196257
    63  com.apple.iPhoto                        0x001e2212 0xc3000 + 1176082
    64  com.apple.iPhoto                        0x001e0ead 0xc3000 + 1171117
    65  libsystem_c.dylib                       0x976ed5b7 _pthread_start + 344
    66  libsystem_c.dylib                       0x976d7d4e thread_start + 34
    Thread 27 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x16eb1799  ecx: 0x9265ad96  edx: 0x17050908
      edi: 0xb1cc49ac  esi: 0x00000000  ebp: 0xb1cc48c8  esp: 0xb1cc48bc
       ss: 0x00000023  efl: 0x00010292  eip: 0x16eb179a   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU: 3
    Binary Images:
       0xc3000 -   0xdaffeb  com.apple.iPhoto (9.4.2 - 9.4.2) <3AC6405B-33E2-3184-9F20-4C9CC5256A3A> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xf41000 -  0x101bffc  org.python.python (2.6.7 - 2.6.7) <FA305A16-14DB-3062-BB61-3944ED836202> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
    0x1066000 -  0x106efff  com.apple.PhotoFoundation (1.0 - 10.17) <D48FDC95-21FC-328C-9F4F-89C28A260C2D> /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/PhotoFoundation
    0x10dd000 -  0x12b9ffb  com.apple.geode (1.5.3 - 270.7) <DFD97416-FD86-3AF1-BFF0-79A47DADE257> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x134a000 -  0x134fff7  com.apple.iLifePhotoStreamConfiguration (3.4 - 2.5) <65A74F18-5020-31EC-B7E9-EBC14E2D9CA1> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x1359000 -  0x1388ff7  com.apple.iLifeAssetManagement (2.7 - 40.34) <2B65BA8A-2C25-360D-B50E-0A9EECA1CE57> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x13aa000 -  0x13d1ff3  com.apple.iPhoto.Tessera (1.1 - 70.18) <F190FD9B-9CC9-3D4D-9744-113F7CA36097> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x13e6000 -  0x140affb  com.apple.iPhoto.Tellus (1.3 - 70.18) <768463A7-60B4-3D50-B36B-D6E5AFA43DC9> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x1421000 -  0x142cfff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <86E53BF3-BCAD-36F9-999B-013E359EF079> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x1438000 -  0x144dffb  com.apple.iLifeFaceRecognition (1.0 - 30.11) <4A781CBF-9764-3531-91E0-94C5B4DFCFDF> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
    0x1459000 -  0x1482ff3  com.apple.DiscRecordingUI (7.0 - 7000.2.4) <C38D0A24-E868-362A-A195-8510CF36F66E> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x149d000 -  0x149ffff  com.apple.ExceptionHandling (1.5 - 10) <D565F065-B45F-37FF-BA46-C675F95BBC00> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x14a7000 -  0x14b2ff7  com.apple.UpgradeChecker (9.2 - 9.2) <D34CC218-8200-34D7-816C-B747EE4BF5F7> /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x14bd000 -  0x153cff7  com.apple.iLifeMediaBrowser (2.7.3 - 546.4) <41C10827-7C8E-3241-922A-9E1A6CD48866> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x1581000 -  0x16a0ffb  com.apple.WebKit (8536 - 8536.28.10) <C181C3FB-91E3-38AB-A709-6B61935B3AD8> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x1751000 -  0x1766fff  com.apple.iChat.InstantMessage (7.0.1 - 3305) <BDC60881-195C-3C36-B863-AAA6BDA76C18> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x1774000 -  0x1b0dff3  com.apple.iLifeSlideshow (3.1 - 1151.4) <B03978EF-A395-30D4-833B-7C474E1F5F12> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/iLifeSlideshow
    0x1c0b000 -  0x1e9cff3  com.apple.iLifePageLayout (1.3 - 200.9) <067ACE80-5B73-39EE-850B-E392F6573AAC> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/iLifePageLayout
    0x1f76000 -  0x200dff7  com.apple.MobileMe (13 - 1.0.4) <5E6C6DEC-1F48-358F-8117-40FAAEB8AFAD> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x206b000 -  0x20d3ff3  com.apple.proxtcore (1.4.1 - 250.56) <BBADA727-FB78-32AF-8D45-4498F68343A7> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x2116000 -  0x2214ff7  com.apple.iLifeSQLAccess (1.7.1 - 60.5) <845C6292-8EC2-3B4A-8E2E-8D98986148C2> /Applications/iPhoto.app/Contents/Frameworks/iLifeSQLAccess.framework/Versions/ A/iLifeSQLAccess
    0x225e000 -  0x2289ffb  com.apple.ProUtils (1.1 - 200.36) <E286BD1F-0BE8-3151-B758-89870AB4AC89> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x22a3000 -  0x230efff  com.apple.iLifeKit (1.3.1 - 156.11) <F93283F4-046D-3653-9607-8B0F850E6318> /Applications/iPhoto.app/Contents/Frameworks/iLifeKit.framework/Versions/A/iLif eKit
    0x2353000 -  0x258cff3  com.apple.prokit (7.3.2 - 1944.10) <5276C99B-E10E-3B92-AB06-1B546A6291D1> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x26a9000 -  0x2bd5ffb  com.apple.RedRock (1.9.4 - 310.33) <548258F5-3AE9-3AD4-B986-A9674D131164> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x2dd2000 -  0x2df6fff  com.apple.AOSAccounts (1.1.2 - 1.1.95) <6C931BC9-7C14-3F67-86F5-EBE2916E0670> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
    0x2e10000 -  0x2e10fff  com.apple.SafariServices.framework (8536 - 8536.28.10) <38360619-29CB-30E2-8031-B8BCF393372E> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
    0x2e16000 -  0x2e1dff7  com.apple.AOSNotification (1.7.0 - 636.3) <520524D9-B14F-3DED-9281-8FAFEFFBA863> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x2e28000 -  0x2e28ffc  com.apple.SafariDAVNotifier (1.1.1 - 1) <0626242D-C677-3B1D-BCC0-75F5857E9E37> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
    0x2e2e000 -  0x309eff3  com.apple.CalendarStore (6.0 - 1249) <A6C4BC52-A53D-38F9-B938-AF2E885AAC0E> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x31a2000 -  0x31feffb  com.apple.corelocation (1239.40 - 1239.40) <DF504BBD-A9D5-3AF0-AAF7-F7C06753A13C> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x322b000 -  0x325dff3  com.apple.GeoServices (1.0 - 1) <E42ABF31-2FE8-303E-908F-2510E69B70CE> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x326f000 -  0x3278fff  com.apple.ProtocolBuffer (2 - 104) <54ACBE43-3E02-38C0-81D1-A9EB40E5655A> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x3280000 -  0x3288ff3  com.apple.AppSandbox (2.0 - 1) <EA5C2F87-F046-349E-B276-6B9F252B2AD5> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x3290000 -  0x32d4ff3  com.apple.CalDAV (6.0 - 112.6) <EF9166E6-A80B-3C8D-BD22-F1555DB0649D> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
    0x3307000 -  0x3310ff3  com.apple.CalendarAgentLink (1.0 - 37) <2D0AFE12-0235-3B60-B786-0EC07AC9F52C> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
    0x3321000 -  0x3332fff  com.apple.CalendarFoundation (1.0 - 29) <6BC68447-ED79-3ABD-8A6E-FA5416D09E2E> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
    0x3345000 -  0x33a7fff  com.apple.coredav (1.0.1 - 179.7) <FE9A6204-03DA-3183-A793-3FA8EEBFA1C4> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x33e5000 -  0x3432ffb  com.apple.ExchangeWebServices (3.0 - 157) <B519C697-55B7-3588-945D-55A7C9C9F375> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x3488000 -  0x34d6fff  com.apple.iCalendar (6.0 - 126.5) <C30CAF95-3D02-3E2E-8855-51DCDF8DB219> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x3501000 -  0x3501fff +cl_kernels (???) <C95C2C6C-E8D9-4FB7-8D3B-9BC35740A414> cl_kernels
    0x3503000 -  0x3510ffb  com.apple.KerberosHelper (4.0 - 1.0) <527E53D2-F8D2-31D1-8576-B725B42C97D9> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x351c000 -  0x3668ff7  com.apple.syncservices (7.1 - 713.1) <0A9790C9-1D95-3B46-84FA-43848FCB476E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x36e4000 -  0x3751ffb  com.apple.WhitePagesFramework (10.7.0 - 141.0) <569589AA-CBE2-3B49-8690-D2977E209499> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x377f000 -  0x37a6ffb  libsandbox.1.dylib (220.2) <3DBD15B6-ABFC-3395-9F6A-3061C8C1AC35> /usr/lib/libsandbox.1.dylib
    0x37b0000 -  0x37c3fff  com.apple.AppContainer (2.0 - 1) <A2C97877-F90D-34CB-BAC7-811D62BABDF0> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x37d2000 -  0x37d3ff5 +cl_kernels (???) <B3AF783E-16EA-4713-B50F-CEF8B240316F> cl_kernels
    0x37d5000 -  0x37d9ff7  com.apple.SecCodeWrapper (2.0 - 1) <2ADFEC5C-ECC7-3CF5-89B9-0B461E014F12> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x37e3000 -  0x37e7ffe  libMatch.1.dylib (17) <29090908-32A9-3087-B197-00128F5954CD> /usr/lib/libMatch.1.dylib
    0x37ee000 -  0x37f1ffb  com.apple.LibraryRepair (1.0 - 1) <C6A079B1-1FD5-39FF-B141-E6C99ECBAA77> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air
    0x37fb000 -  0x3855fff  com.apple.proapps.MIO (1.0.6 - 512) <8321DF77-4AD8-376B-9465-83F471AA61D2> /Applications/iPhoto.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0x386f000 -  0x4502ffb  com.apple.WebCore (8536 - 8536.28.10) <AA738A8C-808D-302A-B58D-404C58075C45> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x4c8a000 -  0x4c8bfff +eOkaoCom.dylib (1) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
    0x4c93000 -  0x4cb8ff2 +eOkaoPt.dylib (1) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
    0x4cc4000 -  0x4cf8fe7 +eOkaoDt.dylib (1) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
    0x4d03000 -  0x4e6afff +eOkaoFr.dylib (1) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
    0x4e71000 -  0x4ecdfff  com.apple.NyxAudioAnalysis (12.4 - 12.4) <096185BF-14F0-385C-88FF-1ABB418697A8> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
    0x4ee7000 -  0x5001ffb  com.apple.avfoundation (2.0 - 361.32) <7EDA9CE4-6147-302E-8B98-9F753E2849EB> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x50a0000 -  0x50d8ff3  com.apple.CoreMediaIOServicesPrivate (52.0 - 3311.1) <224D00BA-092E-38A6-9BBB-6E8B51202227> /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x50f5000 -  0x511cff7  com.apple.CoreMediaPrivate (20.0 - 20.0) <277A523B-0808-366A-A6E4-99C765C38387> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x5131000 -  0x5162ff3  com.apple.FWAVCPrivate (52.47 - 47) <0A275296-00A0-3227-9201-1F8CB0E054AF> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/Versions/A/FWAVCPrivat e
    0x5179000 -  0x51c1ffb  com.apple.CoreMediaIOServices (171.0 - 3244) <A54BCA4B-40BD-3B8C-BDA9-FFB50DA5FDC9> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x51e3000 -  0x5282ff7  com.apple.imcore (8.0 - 900) <E17C2E05-730E-3157-9FC4-6B67456054C8> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
    0x52a9000 -  0x52fdff7  com.apple.imfoundation (8.0 - 900) <94D754EA-3FCB-30A8-8C96-7A0FA2DB7D9A> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
    0x5329000 -  0x5331ff7  com.apple.marco (8.0 - 900) <FAE5B666-B0A2-3348-9DAF-55D6851139E6> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x5339000 -  0x5360ff7  com.apple.ExpressCheckout (1.0 - 1.0) <ACE460FA-35FB-3C0E-9BA8-937F560F0847> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/ExpressCheckout.framework/Versions/A/ExpressCheckout
    0x537b000 -  0x53a9ffb  com.apple.iLifeImageAnalysis (3.0 - 3) <82BEE3DD-958D-35A6-B167-C8C0C31227DB> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/iLifeImageAnalysis.framework/Versions/A/iLifeImageAnalysis
    0x67fc000 -  0x6854fff +com.DivXInc.DivXDecoder (6.8.4.3 - 6.8.4) <26A406B3-E4BC-C6FF-8F28-A99FFEB5CF2D> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x6878000 -  0x687bffb +com.divx.divxtoolkit (1.0 - 1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0xcf4b000 -  0xcf58ff3  com.apple.Librarian (1.1 - 1) <68F8F983-5F16-3BA5-BDA7-1A5451CC02BB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0xe96c000 -  0xe96dffe  com.apple.AddressBook.LocalSourceBundle (2.1 - 1169) <5184600D-D93E-3267-A3C0-1927BD7DB823> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x12602000 - 0x12796ffb  GLEngine (8.7.25) <37CEB6BA-0A46-3A34-BE81-7A0ED7DE1830> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x127cd000 - 0x1294efff  libGLProgrammability.dylib (8.7.25) <CE1A4DFC-EEB2-37C1-B574-0338666C4017> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x12980000 - 0x1298bfff  libGPUSupport.dylib (8.7.25) <08BED1B3-FD0C-3137-BC0C-39EED6029D84> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x12992000 - 0x129bdff7  GLRendererFloat (8.7.25) <2173CC9F-3A9A-37EB-BB50-3E60ABF7F5A3> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x129c6000 - 0x129ceffd  libcldcpuengine.dylib (2.2.16) <0BE2D018-66CC-3F69-B8F1-7A81EEEE09F4> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x129d5000 - 0x129d8ffe  com.apple.DirectoryServicesSource (2.1 - 1169) <F49E7180-F3CF-3C63-8AF3-76C088BA779C> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x1311f000 - 0x131b1fff  unorm8_bgra.dylib (2.2.16) <1298D118-0B14-3F3D-B2CA-348A1C67183E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x131c3000 - 0x13205fff  com.apple.facetimeservices (8.0 - 900) <1C565FAC-C1EE-3327-BB19-6DB8987E703A> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
    0x1321d000 - 0x1326eff7  com.apple.AddressBook.CardDAVPlugin (10.8 - 333) <A8099206-0C6D-3114-A908-F8992CA5CA88> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x1328b000 - 0x1329affd  com.apple.NSServerNotificationCenter (5.0 - 5.0) <86494495-4C08-3673-8B73-04931F3D9345> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0x13329000 - 0x1332effe  com.apple.iphoto.accountconfig.Email (9.2 - 9.2) <50B32E94-2383-3409-A2AE-8367DE6CD6EF> /Applications/iPhoto.app/Contents/PlugIns/Email.accountconfigplugin/Contents/Ma cOS/Email
    0x13418000 - 0x1341bfff  com.apple.iphoto.accountconfig.Facebook (1.2 - 1.2) <A69EF05F-5213-3D42-B6C5-97D4C8C5E7A7> /Applications/iPhoto.app/Contents/PlugIns/Facebook.accountconfigplugin/Contents /MacOS/Facebook
    0x15405000 - 0x15408fff  com.apple.iphoto.accountconfig.Flickr (1.1 - 1) <4002CDBC-05C4-3DEF-ADE3-9917FB7050E9> /Applications/iPhoto.app/Contents/PlugIns/Flickr.accountconfigplugin/Contents/M acOS/Flickr
    0x1540e000 - 0x1540fffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x15476000 - 0x15534ff3  ColorSyncDeprecated.dylib (400) <A959DD25-E448-3563-B74E-E58C69961C76> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x15678000 - 0x1567dff8  com.apple.iphoto.accountconfig.MobileMe (1.1 - 1) <433656FC-3D8F-3088-BCF3-C6765E788E20> /Applications/iPhoto.app/Contents/PlugIns/MobileMe.accountconfigplugin/Contents /MacOS/MobileMe
    0x15683000 - 0x156aaffb  com.apple.iPhoto.FacebookPublisher (1.2 - 1.2) <17607BF1-A294-33E6-B454-49F815BA72C1> /Applications/iPhoto.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/ MacOS/FacebookPublisher
    0x156b6000 - 0x156d5ffb  com.apple.iPhoto.FlickrPublisher (1.2 - 1.2) <BEFEC249-367D-30EA-B2C3-DC0AA41A8FED> /Applications/iPhoto.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Ma cOS/FlickrPublisher
    0x156df000 - 0x15715ffb  com.apple.iPhoto.MobileMePublisher (1.2 - 1.2) <D3890130-951A-3F09-9D10-04008FEAF6E2> /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0x15724000 - 0x1572bfff  com.apple.iPhoto.RSSPublisher (1.1 - 1.1) <C13A2FCB-178C-3CA9-AB1C-44B4C76D26BD> /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0x15732000 - 0x15746ff7  com.apple.iPhoto.SharedPhotoStreamPublisher (1.0 - 1.0) <6EA7F7AB-936F-384F-ABD1-D9BDF69B48B3> /Applications/iPhoto.app/Contents/PlugIns/SharedPhotoStreamPublisher.publisher/ Contents/MacOS/SharedPhotoStreamPublisher
    0x16427000 - 0x16434ff7 +net.telestream.license (1.0.8.2-GC - 1.0.8.2-GC) <A61005C5-E6A4-84A6-2A85-38E53CFBD6AF> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0x167de000 - 0x16889fff  libcrypto.0.9.7.dylib (106) <B96063DD-DBFC-320E-97C7-9ED5099051AC> /usr/lib/libcrypto.0.9.7.dylib
    0x16e44000 - 0x17039ff2 +net.telestream.wmv.import (2.4.0.11 - 2.4.0.11) <83F7489B-3935-E1BA-B934-69179217A26D> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x8e2fb000 - 0x8ec49ff3  com.apple.GeForceGLDriver (8.10.44 - 8.1.0) <4B231127-7885-33A3-9FC7-7EF42A066FD7> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fec2000 - 0x8fef4e57  dyld (210.2.3) <23DBDBB1-1D21-342C-AC2A-0E55F27E6A1F> /usr/lib/dyld
    0x90007000 - 0x90403feb  com.apple.VideoToolbox (1.0 - 926.87) <D6460276-E1CF-317D-B32F-80EAE916168C> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x90404000 - 0x90561ffb  com.apple.QTKit (7.7.1 - 2599.24) <39CC892D-2874-33FE-BE30-87FE07D875BD> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x90562000 - 0x90568fff  com.apple.phonenumbers (1.1 - 47) <0D9B4A12-C1D3-374C-B320-11806C0CCF2A> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x90569000 - 0x905c0ff7  com.apple.ScalableUserInterface (1.0 - 1) <4B538E02-4F41-37FF-81F6-ED43DE0E78CC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x905f7000 - 0x90651ffb  com.apple.AE (645.6 - 645.6) <44556FF7-A869-399A-AEBB-F4E9263D9152> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x90652000 - 0x90656fff  com.apple.OpenDirectory (10.8 - 151.10) <E3D2E1A4-6E55-3C23-BCB4-7B9D31EFD605> /

    You may need to update your version of Flip4Mac:
    http://www.telestream.net/flip4mac/overview.htm

  • Safari and iTunes download isn't working. Anybody help?

    Safari and ITunes isn't working, can anyone help? Apps aren't able to open to www.

    I'm sure that a little further explanation would help. What does "Safari and iTunes isn't working" mean exactly? They are crashing? They will not launch at all? Really ... come on ... help us help you ... Explain what is happening.

  • DVD drive isn't working. Can't install Snow Leopard.

    My DVD drive isn't working properly. Is there another way for me to install Snow Leopard? I didn't see a digital download of this software in the Apple Store.

    Another computer or an ext CD/DVD player are your only options.

Maybe you are looking for

  • Connecting iMac to Windows network with domain

    i tried to connect my new iMac to the windows network at the office.  it would not find the server.  any suggestions

  • How do i get my Nikon photos from viewNX 2 into the iPhoto library?

    1. How do I get my Nikon photos from ViewNX 2 into the iPhoto Library? 2.I tried by copying them and moving to the iphoto folder. Now the Iphoto applicationwon't open because it is locked. the help item says to open it with command option keys down t

  • Invoice Correction Transaction Type

    Hi All, What is the standard transaction type for Invoice Correction in CRM 7.0 ? Thanks in advance Andy

  • May i use the session bean in the jsp

    <%@ page import="sms.EJB.*,sms.UserDetailEJB.*" %> <% if (request.getParameter("userid")!=null && request.getParameter("password") !=null && request.getParameter("userLevel")!=null) UserHome userHome look up... UserLocal userLocal; userLocal = userHo

  • Plz clarify : In Segment Multiple entries possible

    Hi Friends, I have some data in my internal table. I wants to send it to Segment.can we store multy recoeds in segments. i have data like this:  po no , item details (4 no of items). I want to send data into one idoc and one segment . Is it possible.