Help with exporting document and generating an enumerated value error

Can anyone help me figure out why I cannot get this script to export the document and save it for the web?
I keep getting the same frustrating "Enumerated Value expected".
here is the script thus far:
* attempting to create a script to insert names automatically within photoshop cs2. Similar to the PSP.
tag = app.activeDocument;
var lee = ["Barb","Belle","Betty","Carmel","Christy","Connie",
"Debbie","Debra","Denise","Diamond","Dolceluna","Irene","Jacqui"];
//determine if active layer is a text layer or not.
if(tag.isBackground == true){
alert("this is a background layer and cannot be changed.");
else{
alert("this is the name layer.")
for(i=0;i<lee.length;i++){
tag.activeLayer.textItem.contents = lee[i];
var options = new ExportOptionsSaveForWeb();
options.format = SaveDocumentType.PNG-24;
options.interlaced = false;
    options.PNG8= false;
var fName = lee[i];
var newName = fName+'-'+tag.name+'.png';
alert(newName);
//EXPORT DOCUMENT KEEPS GENERATING ENUMBERATED VALUE EXPECTED
// web.matte = MatteType.NONE;
tag.exportDocument(File(tag.path + '/' + newName),ExportType.SAVEFORWEB,options);
} // closes for loop
}// end of else statement

Yes the guide is misleading. It says 'For this property, only COMPUSERVEGIF, JPEG, PNG-8, PNG-24, and BMP are supported.'
It really should say 'For this property, only COMPUSERVEGIF, JPEG, PNG, and BMP are supported.'
But if you look under SaveDocumentType you will not find PNG-8 or PNG-24 listed in the values.

Similar Messages

  • Help with ORA-06502: PL/SQL: numeric or value error:

    ORA-06502: PL/SQL: numeric or value error: character to number conversion error
    I passed a fiscal year in as a parameter, and try to set a local variable to that value so i can use that variable later on in the for loop statement to increment the fiscal year to 2009, 2010, etc.
    I kept getting the error message above, is it because I can't assign value greater than 99 to a variable? The local variable's type is based on the table.fiscal_year%type.
    Thanks.

    The data type of the fiscal_year is number(4);
    this is the beginning of the procedure code:
    PROCEDURE load_data ( fiscal_year_in IN table8.fiscalyear%TYPE) IS
         l_fiscal_year table8.fiscalyear%TYPE := fiscal_year_in ;
    and I run the procedure as
    exec import_data.load_data(2008);
    Edited by: jasmine6 on Oct 7, 2008 8:50 AM

  • Need help with export, truncate and import partitions for schema

    I need to export a couple partions for our Oracle 10g Data Warehouse, truncate the partions and re-import the data using the exported file. How can I do this?
    In summary here is what I need to do:
    1) Export partition P_SUB_1 of table1
    2) Export partition P_SUB2 of table2
    3) Truncate P_SUB1 partition of table1
    4) Truncate P_SUB2 partition of table2
    5) Rebuild indexes on table1 and table2
    6) Re-import data into each partition from export files.

    If you have enough free space it might be easier to keep these partition in the database and do an exchange.
    That means:
    create table tmp_sub1 as select * from table1 where 1=0;
    create table tmp_sub2 as select * from table2 where 1=0;
    alter table table1 exchange partition sub1 with table tmp_sub1;
    alter table table2 exchange partition sub2 with table tmp_sub2;After that your have the data of your original partitions in the tmp tables and the particular partitions in the partitioned table are empty and ready for the loading process.
    If the loading process fail and you need to restore the partitions just reverse the exchange statements and you are done.

  • Help with multiple recordsets and pulling an ID value (ASP)

    I started this discussion when first developing my project and posted on the General Tab.  I have figured out that issue (trying to get my Insert to work in ASP) but now am having trouble retrieving an ID value.  It should be simple.  I want to insert a new record into a single table and want to create a unique ID field.  I am using SQL Server and tried the Identity setting but won't be able to have admin privileges which are required to set the ID.  So, I'd like to just take the ID value from the last record and just add '1' to it to get a new unique ID manually. My INSERT portion was working, so I just decided to query the records to retrieve the last CatalogID and add '1' to get my new ID.  But it's not working!  I tried opening both a command and a recordset, but get various errors on invalid command use. 
    Any help would be great!  I'm new to all of this!
    I've posted a code snippet of what I thought I should do:
    <%LANGUAGE = “VBSCRIPT” CODEPAGE=”65001”%)
    <!--#include file=”Connections/CapConnect.asp”” -->
    <%
    If (Cstr(Request(“MM_insert”)) = “form1”) Then
                    Dim MM_editCmd
                    Dim MM_Lookup
                    Dim NextCatalogID
                    Set MM_Lookup = Server.CreateObject (“ADOB.Recordset”)
                    MM_Lookup.ActiveConnection = MM_CapConnect_STRING
                    MM_Liikup.Source = “Select CatalogID From dbo.tblCatalogItems ORDERBY CatalogID Ascending”
                    MMLookup.Open
                    MM_Lookup.MoveLast
                    NextCatalogID = MM_Lookup.Fields(“CatalogID”) + 1   'this is supposed to be my new ID value
                    Set MM_Lookup = Nothing
                    Set MM_editCmd = Server.CreateObject(“ADOB.Command”)
                    MM_editCmd.ActiveConnection = MM_CapConnect_STRING
                    MM_editcmd.CommandText = “INSET INTO dbo.tblCatalogItems (CatalogID, ModelName, Description, POCName, [POCPhone]) VALUES (NextCatalogID, ?,?,?,?)
                    MM_editcmd.Prepared = True
                    MM_edit.Parameters.Append MM_editcmd.CreateParameter(“param2”, 202, 1, 100, Request.Form(“modelname”) )
                  MM_edit.Parameters.Append MM_editcmd.CreateParameter(“param3”, 202, 1, 300, Request.Form(“Description”) )
    [Subject line edited by moderator to add server model]

    Ok, you've got lots of problems. First, explain again why you are not able to modify the CatologID to be an identity column? What is the datatype of that column now?
    Next, you are going about selecting your recordset incorrectly. If you are just looking for the last value inserted, there is no need to return all values to the recordset. Just select the max value:
    MM_Liikup.Source = “Select MAX (CatalogID) From dbo.tblCatalogItems”
    Next, you have a typo in your insert statement "“INSET INTO" should be "INSERT INTO"
    Next, your CommandText is wrong. There is no ending quote, and NextCatalogID will be treated as a string literal, not a variable. Use a ? placeholder for it and use the CreateParameter method to populate it.
    Next, your command text includes 4 placeholder, but you are only populating 2.
    But even when you get this to work it will be problematic. What happens when 2 users execute this at the same time? They both read the same value for the max record and increment by one, but the first will succeed and the second will fail. That's why it is always better to use an auto increment (Identity) column.

  • Export pdf doasn´t work with some documents pdf... guive an error?

    Why EXPORT PDF ddasn´t translate to WORD in many documents..... guive me an error
    Please guivme a solution
    Regards
    Jose Antonio Resco

    De: florencejohn
    Enviado el: miércoles, 3 de diciembre de 2014 10:44
    Para: José Antonio Resco
    Asunto:  Export pdf doasn´t work with some documents pdf... guive an error?
    Export pdf doasn´t work with some documents pdf... guive an error?
    created by florencejohn <https://forums.adobe.com/people/florencejohn>  in Adobe Acrobat.com Services - View the full discussion <https://forums.adobe.com/message/6981587#6981587>
    What I must do???
    Hi jose antonio resco <https://forums.adobe.com/people/joseantonioresco> ,
    Please let me know the exact workflow you are following when you get this error.
    Are you trying to convert from within Reader or from Browser? BROWSER
    If from Reader then make sure you are signed in within Reader, Also try updating Reader to the latest v11.0.09 and check.
    If from browser, please let me know which browser you are using and its version? GOOGEL CHRONE and MOZILA
    Have you checked with a different browser if possible?yes
    Regards,
    Florence
    If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/6981587#6981587 and clicking ‘Correct’ below the answer
    Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/6981587#6981587
    To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
    Start a new discussion in Adobe Acrobat.com Services by email <mailto:[email protected]com>  or at Adobe Community <https://forums.adobe.com/choose-container.jspa?contentType=1&containerType=14&container=48 70>
    For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.
    El software de antivirus Avast ha analizado este correo electrónico en busca de virus.
    http://www.avast.com

  • Can I hide the Adobe Reader panel with "Export, Create and Edit PDF and Send and Store Files"? I don't use it and it takes up space

    Can I hide the Adobe Reader panel with "Export, Create and Edit PDF and Send and Store Files"? I don't use it and it takes up space

    If you just mean, can I close it, sure. In Reader XI click the Tools button to close or reopen it.

  • Need help with Blog, Wiki and Gallery

    Hi Team,
    Need help with Blog, Wiki and Gallery startup. I have newly started visiting forums and quite interested to contribute towards these areas also.
    Please help.
    Thanks,
    Santosh Singh
    Santosh Singh

    Hello Santhosh,
    Blog is for Microsoft employees only. However, you can contribute towards WIKI and GALLERY using the below links.
    http://social.technet.microsoft.com/wiki/
    http://gallery.technet.microsoft.com/

  • What's the phone number I should call for help with my iPhone and ihome dock?

    What's the phone number I should call for help with my iPhone and ihome dock?

    http://www.ihomeaudio.com/support/

  • Help with photoshop quitting and AMD graphics

    help with photoshop quitting and AMD graphics
    im not a techy, but it appears i have to do someting with my amd graphics card - this might be why my software is crashing - ive no idea what to do though

    Hi Chris
    I have tried to go on the website, then i tried to download the automatic detect because i wasnt sure which driver i had or needed - but it has just downloaded a load of game software - which i dont want ( i dont think)
    i have find out my laptop has a amd radeon HD 8750M card, but i dont know what im doing! i would hate to mess my computer up as i am in thailand with no one to help me!
    its frustrating as i am paying for CC but cant use it!

  • Im trying to convert a PDF into an excel document and I keep getting an error message that reads "An error has occurred while trying to access the service". WHat am I doing wrong?

    Im trying to convert a PDF into an excel document and I keep getting an error message that reads "An error has occurred while trying to access the service". WHat am I doing wrong?

    it seems my subscription had expired so I signed up again.. It was still having trouble so I repeated the sign up process again.. Then it worked perfectly.. Unfortunately, I think I just subscribed twice and need to cancel one of them. Ugh. Such a pain when I'm trying to get this project completed. I'll be canceling at least one of the subscriptions in the morning. Adobe is not my favorite company right now. None of this was intuitive. And trying to get help was an absolute waste of an hour.
    Regards,
    Nathaniel
    [removed by moderator]

  • Help with exporting and image size or boundaries?

    I am trying to slide the cat into the scene a little at a time foir an animation project I am working on. However, when I export the image the back ground of the image expands with a checkered back ground( showing here in white) and shows the whole cat.
    How do I just show a little of the cat on the image at a time when exporting. I am trying to give the impression that the cat is walking into the room. I do not want to have to cut the cat up.
    I would be thankful for any suggestions.

    Provide the name of the program you are using so a Moderator may move this message to the correct program forum
    This Cloud forum is not about help with program problems... a program would be Photoshop or Lighroom or Muse or ???

  • Help with export format - can I meet ad requirements?

    Help!
    I need to create a color ad for magazine. Starting with a file in either PDF or EPS. Need to tweek existing file by changing some of the text and adding a logo. Final product is for magazine ad with media requirements:
    Preferred High Resolution PDF
    Embedded fonts - no true type fonts, only Type 1 or open Type fonts
    300 DPI
    supporting images must be CMYK, not RGB
    I also have PS CS3. I have experienced output issues with printers in past, especially using the PDF export format from Pages (problems with fonts and layers).
    From reading other posts my plan was to start in Pages, insert PDF file, overlay text and logo, print to Postscript, then open in PSCS3 where I would "save as PDF." Only concern is uncertain resolution of original PDF which is a small file (about 100k for quarter page color ad).
    Other thought was to start with EPS in PS, save as PDF or TiFF, open in Pages to ad text/logo, then back to PS. Trying to avoid PS for main editing, just more versed in PAGES.
    Will this work?
    Any comments appreciated!!

    Good evening from Normandy
    In response to Barbara's point:
    It is serious. At an early stage in my magazine project I lost a client because the background colour in his ad had changed after CMYK separation, and when I noticed it was too late. The client is with us now and very happy with the quality of his ad.
    Pages colour palette allows adjusting CMYK separation WITHIN Pages (note: it is also available in other Mac applications, even in SimpleText). Click on the rainbow circle in the tool bar to open it. Click on the second icon with colour sliders, in the drop down menu click on CMYK sliders. They show percentage content of the four colours used in professional printing - Cyan(blue), Magenta (purple), Yellow and Black.
    With Pages you work in what-i-see-what-i-get mode (WYSIWYG) which is wonderfully intuitive and the results in print are satisfactory more often than not. As a general rule of thumb, however, I would recommend avoiding sharp, vibrant colours. What looks exciting on screen comes out dull on paper. Mind physiology here: screen colours are generated to go staight into your eyes, but the colours on paper are a reflected and refracted sun- or electric light.
    It also makes sense to avoid colours that are too feeble. I used light blue colour wash for background with Cyan reading of 8 percent and it completely disappeared in print. After consulting with my printers I had to change the reading to 15 percent.
    Another printers tool is colour-code or colour-guide tablets. They are like a stack of cards with changing colour sequences with exact CMYK percentage reading for each shade of colour. They can be purchased at specialised shops and web-sites, but are costly. Weigh your needs against costs. In my work I have to pay more attention to general lay-out rather than to colours, so I decided against investing in colour tablets.
    Another work-around here is to use colour combinations from Apple's own templates that come with iWork suite. Copy colours that work nicely together from templates to your colour palette (I wish there was a feature allowing to give custom names to composite colours) and they will be available for use in your projects.
    Re ColourSync utility mentioned here by Dragon. I agree, it is a powerful tool, but Barbara's point is especially relevant here: you have to know what you are doing. I invested some time in creating new workflows with ColourSync. The improvement in quality was dramatic, but while some problems were solved, others appeared. A short article I wrote re using Colour Sync is here:
    i-work-in-pages.blogspot.com/2006/10/preparing-colour-separated-pdfs-using.html
    So after a while I dropped ColourSync method and started using Enfocus PitStop which allows adjusting PDFs right at the CMYK conversion stage.
    Another work-around which makes life even easier is to ask your computer service people to prepare Distiller settings exactly to your requirements as a separate folder which you can install as default in your Distiller settings. That way you just drag-n-drop your files onto the Distiller icon in the Dock and get perfect press quality PDFs in no time.
    It is worth remembering that we are mostly end-users, not developers or technicians. Remembering this saves a lot of heart-ache. I call it the Renaissance Man dilemma - if you spend to much time chasing too many things your main goal is not achieved. Leonardo da Vinci was famous for not finishing his projects, because he always got distracted by exciting technical solutions that he stumbled upon while working...
    This is more in response to Angiomans thread than to Barbara's comment now, but I assume he followed Dragon's invitation to this thread.
    Cheers everybody - it is really exciting to share things with people who have similar experiences.
    Alex,
    Normandy
    <edited by host>

  • Need help with Export workflow.

    Hello again.
    Today I was experimenting with exporting a project using Export QT Movie and QT Conversion.
    My goal is to show a QT project on the web, either 640x480 or 320xx240, depending on how monstrous the file size is.
    My initial impression was that export QT Movie simply generates (I'm guessing) a full size rendering of the project. It's icon is a FC icon. What I did then was an "Open with..." quicktime(pro). This is where I get confused: I know that the next steps are for for preparing the project for sizes, compressions and so on. The export to QT movie seems to be a longer route to get to the settings that you need to use in QT Conversion, which after selecting QT conversion, you have the Format, Use, and Options settings.
    Am I right so far?
    Some background about my project- Easy setup= DV-NTSC. If I look in my browser, my clips are 720x480, 29.97fps, Compressor(?)DV/DVCPRO-NTSC, pixel aspect ratio, NTSC-CCIR 601 and anamorphic is checked.
    I also have still photos motion control stuff, PS tiffs, that do not have anamorphic checked.
    Form here on is where I get confused.
    Under settings, I am selecting DV/dvc-NTSC for compression frame rate 29.97, medium compressor, scan mode, interlaced, and aspect 4:3.
    The filters setting I don't use.
    The size setting I'm trying 320x240 with aspect ratio and de interlace video UNCHECKED.
    Is this a good workflow for the web. I notice on 640x480 my titles (livetype) seem kind of jagged.
    Any help preparing a project for the web would be appreciated. If you need more info let me know.
    Thanks so much.
    Jonathan

    Thanks for the additional comments and ideas.
    In terms of profile, as I mentioned, the intermediates will be going off to the editor (off-site) for editing on his FCP suite.  I'll stick to working in the prescribed HDTV (Rec. 709) space, and I've given him all the detail I can of how I'm working, but crucially I haven't stood at his edit-suite to see how the stuff looks.
    But, he's no newbie, so I'm hoping it'll be OK.
    Blasted shame about the H.264 BluRay not being compatible with QT - I thought I had this whole issue beat until that came along.  It's not a matter of disk space here, but the editor is mithering that the intermediates we are testing, in either PNG, or Animation, and a couple of others, are choking his playback.
    I'm not sure what to say about that, other than to go down this road of trying to squish these intermediates as low as possible without wrecking the look, hence finding that the DNxHD is providing the best solution.  If it had been a SD project, I might well have tried the native H.264, even over our normal PNG workflow.
    So what will play the native H.264 BluRay compressed output?
    Julian.

  • Help with exporting to WHCC using Lightroom

    Please help!  My brother (professional photographer) is on a 6 month kayak trip and I've been left in charge of 20 years of photography!  I have detailed instructions on how to export photographs from the external hard drives, to an online company who will print them.  However, I cannot seem to get the export to work after hours of trying!
    In Lightshop, I can pull up the photo that I want to export.  I was instructed to click EXPORT, and then click WHCC...however, I can't find anywhere to click WHCC.  When I use the help function in Lightshop, it directs me to the file menu, where I can click Export to WHCC...however, when I try to do that, it tells me that I've missed an export function and that the file doesn't exist.
    I think I'm just missing the place to select WHCC...can anyone please help?  I've got to order some photos online (I believe my brother has me set up to use a company called ROES, but not positive). 
    Thanks! 

    Are you certain your brother didn't mean you should export the files to a *folder* named WHCC and then upload the contents of that folder to WHCC using their ROES interface?
    WHCC does full color management so you will need to know if your brother wants the images to be exported as ProPhotoRGB, AdobeRGB or sRGB.  When WHCC generates the print they always use (that last time I asked them) Perceptual rendering intent.
    Other questions are:
    (1) what size prints?
    (2) are *you* to resize the images and perform sharpening or is WHCC to do that?
    I'd suggest you call them on Monday if you have questions.  They may have a record of previous jobs submitted by your brother.

  • Help with exporting/finalizing - Error -108 ??

    Hello all,
    Been reading the different threads regarding issues when exporting/finalizing movies. My iMovie finalization/export seems to be crashing about 50% in the export process. I either get an error -108 which is not further explained or the app crashes with below debug ode.
    I am so hoping to find a solution for this as I work a good month on getting a 20mn movie together.
    I already tried cleaning my caches everywhere and I am about to try to remove title transitions. Any other ideas on how I can still rescue/export this movie? The odd thing is that it works fine in fullscreen preview mode.
    Thanks all in advance for your help!
    Mike
    Process:    
    iMovie [218]
    Path:       
    /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier: 
    com.apple.iMovieApp
    Version:    
    9.0.4 (1635)
    Build Info: 
    iMovieApp-16350000~2
    App Item ID:
    408981434
    App External ID: 3919357
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [120]
    Date/Time:  
    2012-03-08 17:45:52.494 +0100
    OS Version: 
    Mac OS X 10.7.3 (11D50b)
    Report Version:  9
    Interval Since Last Report:     
    2842 sec
    Crashes Since Last Report:      
    2
    Per-App Interval Since Last Report:  2451 sec
    Per-App Crashes Since Last Report:   1
    Anonymous UUID:                 
    C51C0B6D-7F2E-43E8-AEF9-D4F278B68B96
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_CRASH (SIGABRT)
    Exception Codes: 0x0000000000000000, 0x0000000000000000
    Application Specific Information:
    building project tree
    VRAM info:disp 0:256MB
    ...built
    objc[218]: garbage collection is OFF
    Performing @selector(a_finalize:) from sender NSMenuItem 0xd62c10
    abort() called
    terminate called throwing an exception
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x975bb9c6 __pthread_kill + 10
    1   libsystem_c.dylib        
    0x94a5ef78 pthread_kill + 106
    2   libsystem_c.dylib        
    0x94a4fbdd abort + 167
    3   libc++abi.dylib          
    0x9a6d4921 abort_message + 94
    4   libc++abi.dylib          
    0x9a6d21bc default_terminate() + 36
    5   libc++abi.dylib          
    0x9a6d21fe safe_handler_caller(void (*)()) + 15
    6   libc++abi.dylib          
    0x9a6d2268 std::terminate() + 23
    7   libc++abi.dylib          
    0x9a6d32a0 __cxa_throw + 112
    8   libstdc++.6.dylib        
    0x94fa8401 operator new(unsigned long) + 97
    9   libstdc++.6.dylib        
    0x94fa846b operator new[](unsigned long) + 17
    10  QuickTimeH264.scalar     
    0x0ffecbe9 0xfcf2000 + 3124201
    11  QuickTimeH264.scalar     
    0x0ffecb6a 0xfcf2000 + 3124074
    12  QuickTimeH264.scalar     
    0x0feb8f27 0xfcf2000 + 1863463
    13  QuickTimeH264.scalar     
    0x0ffff34b 0xfcf2000 + 3199819
    14  QuickTimeH264.scalar     
    0x0fffd7cb 0xfcf2000 + 3192779
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x975bbb5e __select_nocancel + 10
    1   libdispatch.dylib        
    0x9a554b11 _dispatch_mgr_invoke + 642
    2   libdispatch.dylib        
    0x9a5536a7 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib   
    0x975bc02e __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x94a5eccf _pthread_wqthread + 773
    2   libsystem_c.dylib        
    0x94a606fe start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib   
    0x975bb83e __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x94a60e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib        
    0x94a60f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore
    0x902793ef TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore
    0x90279165 TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore
    0x90278f76 TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component
    0x92ecbbe6 0x928df000 + 6212582
    7   libsystem_c.dylib        
    0x94a5ced9 _pthread_start + 335
    8   libsystem_c.dylib        
    0x94a606de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib   
    0x975bb83e __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x94a60e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib        
    0x94a60f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore
    0x902793ef TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore
    0x90279165 TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore
    0x90278f76 TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore
    0x902abe9b AIOFileThread(void*) + 1019
    7   libsystem_c.dylib        
    0x94a5ced9 _pthread_start + 335
    8   libsystem_c.dylib        
    0x94a606de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib   
    0x975b9c5e semaphore_wait_trap + 10
    1   com.apple.QuickTimeComponents.component
    0x933a6f10 0x928df000 + 11304720
    2   com.apple.QuickTimeComponents.component
    0x92f3bd0d 0x928df000 + 6671629
    3   com.apple.QuickTimeComponents.component
    0x933a6e43 0x928df000 + 11304515
    4   libsystem_c.dylib        
    0x94a5ced9 _pthread_start + 335
    5   libsystem_c.dylib        
    0x94a606de thread_start + 34
    Thread 6:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib   
    0x975bb83e __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x94a60e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib        
    0x94a0882a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component
    0x92fedb7d 0x928df000 + 7400317
    4   libsystem_c.dylib        
    0x94a5ced9 _pthread_start + 335
    5   libsystem_c.dylib        
    0x94a606de thread_start + 34
    Thread 7:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib   
    0x975bb83e __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x94a60e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib        
    0x94a0882a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component
    0x92fedb7d 0x928df000 + 7400317
    4   libsystem_c.dylib        
    0x94a5ced9 _pthread_start + 335
    5   libsystem_c.dylib        
    0x94a606de thread_start + 34
    Thread 8:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib   
    0x975bb83e __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x94a60e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib        
    0x94a0882a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component
    0x92fedb7d 0x928df000 + 7400317
    4   libsystem_c.dylib        
    0x94a5ced9 _pthread_start + 335
    5   libsystem_c.dylib        
    0x94a606de thread_start + 34
    Thread 9:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib   
    0x975bbb42 __select + 10
    1   com.apple.CoreFoundation 
    0x93ac9ee5 __CFSocketManager + 1557
    2   libsystem_c.dylib        
    0x94a5ced9 _pthread_start + 335
    3   libsystem_c.dylib        
    0x94a606de thread_start + 34
    Thread 10:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib   
    0x975bb83e __psynch_cvwait + 10
    1   libsystem_c.dylib        
    0x94a60e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib        
    0x94a113e0 pthread_cond_timedwait$UNIX2003 + 70
    3   com.apple.JavaScriptCore 
    0x9179b9dc ***::ThreadCondition::timedWait(***::Mutex&, double) + 156
    4   com.apple.JavaScriptCore 
    0x9198ff03 JSC::Heap::blockFreeingThreadMain() + 323
    5   com.apple.JavaScriptCore 
    0x9198ff3f JSC::Heap::blockFreeingThreadStartFunc(void*) + 15
    6   libsystem_c.dylib        
    0x94a5ced9 _pthread_start + 335
    7   libsystem_c.dylib        
    0x94a606de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib   
    0x975bc02e __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x94a5eccf _pthread_wqthread + 773
    2   libsystem_c.dylib        
    0x94a606fe start_wqthread + 30
    Thread 12:: com.apple.coremedia.JVTlib
    0   QuickTimeH264.scalar     
    0x0ffee348 0xfcf2000 + 3130184
    1   QuickTimeH264.scalar     
    0x10026bb4 0xfcf2000 + 3361716
    2   QuickTimeH264.scalar     
    0x0fffee2b 0xfcf2000 + 3198507
    3   QuickTimeH264.scalar     
    0x0fffd7cb 0xfcf2000 + 3192779
    Thread 13:: com.apple.coremedia.JVTlib
    0   QuickTimeH264.scalar     
    0x0ffff082 0xfcf2000 + 3199106
    1   QuickTimeH264.scalar     
    0x0fffd7cb 0xfcf2000 + 3192779
    2   QuickTimeH264.scalar     
    0x0fff9938 0xfcf2000 + 3176760
    3   QuickTimeH264.scalar     
    0x0ff8df01 0xfcf2000 + 2735873
    4   libsystem_c.dylib        
    0x94a5ced9 _pthread_start + 335
    5   libsystem_c.dylib        
    0x94a606de thread_start + 34
    Thread 14:: com.apple.coremedia.JVTlib
    0   QuickTimeH264.scalar     
    0x0fd9ca09 0xfcf2000 + 698889
    1   QuickTimeH264.scalar     
    0x0fd9a5ff 0xfcf2000 + 689663
    2   QuickTimeH264.scalar     
    0x1002910b 0xfcf2000 + 3371275
    3   QuickTimeH264.scalar     
    0x10026d70 0xfcf2000 + 3362160
    4   QuickTimeH264.scalar     
    0x0fffee2b 0xfcf2000 + 3198507
    5   QuickTimeH264.scalar     
    0x0fffd7cb 0xfcf2000 + 3192779
    Thread 15:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib   
    0x975b9c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar     
    0x0ff8e3f3 0xfcf2000 + 2737139
    2   QuickTimeH264.scalar     
    0x0ff8dedb 0xfcf2000 + 2735835
    3   libsystem_c.dylib        
    0x94a5ced9 _pthread_start + 335
    4   libsystem_c.dylib        
    0x94a606de thread_start + 34
    Thread 16:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib   
    0x975b9c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar     
    0x0ff8e3f3 0xfcf2000 + 2737139
    2   QuickTimeH264.scalar     
    0x0ff8dedb 0xfcf2000 + 2735835
    3   libsystem_c.dylib        
    0x94a5ced9 _pthread_start + 335
    4   libsystem_c.dylib        
    0x94a606de thread_start + 34
    Thread 17:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib   
    0x975b9c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar     
    0x0ff8e3f3 0xfcf2000 + 2737139
    2   QuickTimeH264.scalar     
    0x0ff8dedb 0xfcf2000 + 2735835
    3   libsystem_c.dylib        
    0x94a5ced9 _pthread_start + 335
    4   libsystem_c.dylib        
    0x94a606de thread_start + 34
    Thread 18:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib   
    0x975b9c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar     
    0x0ff8e3f3 0xfcf2000 + 2737139
    2   QuickTimeH264.scalar     
    0x1004b5e3 0xfcf2000 + 3511779
    3   libsystem_c.dylib        
    0x94a5ced9 _pthread_start + 335
    4   libsystem_c.dylib        
    0x94a606de thread_start + 34
    Thread 19:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib   
    0x975b9c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar     
    0x0ff8e3f3 0xfcf2000 + 2737139
    2   QuickTimeH264.scalar     
    0x0ff8dedb 0xfcf2000 + 2735835
    3   libsystem_c.dylib        
    0x94a5ced9 _pthread_start + 335
    4   libsystem_c.dylib        
    0x94a606de thread_start + 34
    Thread 20:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib   
    0x975b9c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar     
    0x0ff8e3f3 0xfcf2000 + 2737139
    2   QuickTimeH264.scalar     
    0x0ff8dedb 0xfcf2000 + 2735835
    3   libsystem_c.dylib        
    0x94a5ced9 _pthread_start + 335
    4   libsystem_c.dylib        
    0x94a606de thread_start + 34
    Thread 21:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib   
    0x975b9c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar     
    0x0ff8e3f3 0xfcf2000 + 2737139
    2   QuickTimeH264.scalar     
    0x0ff8dedb 0xfcf2000 + 2735835
    3   libsystem_c.dylib        
    0x94a5ced9 _pthread_start + 335
    4   libsystem_c.dylib        
    0x94a606de thread_start + 34
    Thread 22:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib   
    0x975b9c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar     
    0x0ff8e3f3 0xfcf2000 + 2737139
    2   QuickTimeH264.scalar     
    0x1004b5e3 0xfcf2000 + 3511779
    3   libsystem_c.dylib        
    0x94a5ced9 _pthread_start + 335
    4   libsystem_c.dylib        
    0x94a606de thread_start + 34
    Thread 23:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib   
    0x975b9c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar     
    0x0ff8e3f3 0xfcf2000 + 2737139
    2   QuickTimeH264.scalar     
    0x0ffcd7f6 0xfcf2000 + 2996214
    3   libsystem_c.dylib        
    0x94a5ced9 _pthread_start + 335
    4   libsystem_c.dylib        
    0x94a606de thread_start + 34
    Thread 24:
    0   libsystem_kernel.dylib   
    0x975bc02e __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x94a5eccf _pthread_wqthread + 773
    2   libsystem_c.dylib        
    0x94a606fe start_wqthread + 30
    Thread 25:
    0   libsystem_kernel.dylib   
    0x975bc02e __workq_kernreturn + 10
    1   libsystem_c.dylib        
    0x94a5eccf _pthread_wqthread + 773
    2   libsystem_c.dylib        
    0x94a606fe start_wqthread + 30
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x9a6d5330  ecx: 0xbfffcc8c  edx: 0x975bb9c6
      edi: 0xac5fc2c0  esi: 0x00000006  ebp: 0xbfffcca8  esp: 0xbfffcc8c
       ss: 0x00000023  efl: 0x00000246  eip: 0x975bb9c6   cs: 0x0000000b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0x1005c7e4
    Logical CPU: 0
    Binary Images:
    0x1000 -   0x441feb  com.apple.iMovieApp (9.0.4 - 1635) <677756C9-3E33-AE1B-EAF8-6A78D6C9DD37> /Applications/iMovie.app/Contents/MacOS/iMovie
      0x502000 -   0x519fe7  com.apple.iLifeFaceRecognition (1.0 - 21.1) <AFB95F66-06DF-8076-94EE-19B1BAE836FC> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
      0x528000 -   0x5b2ff7  com.apple.mobiledevice (503.2 - 503.2) <F50D6D27-E18C-282A-398A-5A55A90B12C6> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
      0x5fa000 -   0x635fe7  com.apple.MPEG2TSDecoder (1.0 - 84) <A0150F28-CB98-7C59-4514-80CE7A58B600> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
      0x673000 -   0x674ffb  com.apple.Helium (3.0.2 - 234) <723972E4-0FBB-4135-980E-15E8A40C11FF> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
      0x679000 -   0x67aff7 +com.bensyverson.dvmatte.autopicker (1.0 - 1.0) <EB13CAE4-1A5F-7C8E-F4FA-39C5B0A22636> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
      0x680000 -   0x71fff3  com.apple.MobileMe (11 - 1.0.3) <8E95CD1B-525E-748C-743A-EB0E369B05F6> /Applications/iMovie.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
      0x77c000 -   0x829ff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
      0x86e000 -   0x86ffff +eOkaoCom.dylib (??? - ???) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
      0x873000 -   0x898ff2 +eOkaoPt.dylib (??? - ???) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
      0x89f000 -   0x8d3fe7 +eOkaoDt.dylib (??? - ???) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
      0x8d9000 -   0xa40fff +eOkaoFr.dylib (??? - ???) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
      0xa44000 -   0xa67ffc  libssl.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <EAD01EC4-D8D7-3462-84E5-A74BEB52B456> /usr/lib/libssl.0.9.7.dylib
      0xa75000 -   0xc02ffb  com.apple.Helium.HeliumRender (2.0.2 - 234) <461D47A8-54FA-BB4F-F3E4-FD80C7ADC894> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
      0xf40000 -   0xf6dff8  GLRendererFloat (??? - ???) <046FB12A-6022-3A91-8385-5BDF85BDACE7> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x2500000 -  0x25f7ffb  libGLProgrammability.dylib (??? - ???) <C45CEE58-603A-371C-B4AB-5346DC13D8F3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x2624000 -  0x2626fff  com.apple.AddressBook.LocalSourceBundle (1.2 - 1083) <114A418A-D35E-3859-9CF2-43A8EBEE5223> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x262b000 -  0x262effe  com.apple.DirectoryServicesSource (1.2 - 1083) <0986E1F9-47D8-3E90-BAA1-702336BB0371> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x3fa5000 -  0x4112ffc  GLEngine (??? - ???) <5C52561A-F1B6-33ED-B6A0-7439EA2B0920> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x4146000 -  0x44ddfef  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (7.18.11 - 7.1.8) <B32656E1-E4CA-3176-94F0-C3F50B1D4D32> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
    0x65d7000 -  0x6632fff  com.apple.AddressBook.CardDAVPlugin (10.7.2 - 200) <B5CA94A3-383B-371A-BB8C-F7142EB4FF6B> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0x98e6000 -  0x98edff5  com.apple.iLMBAperturePlugin (2.6.2 - 288.2.12) <A9882D14-D1F2-3724-A486-DAD561ECF2E5> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin
    0x9f1d000 -  0x9f25ff3  com.apple.iLMBiPhotoPlugin (2.6.2 - 288.2.12) <F4057373-3E0F-3E7C-A65E-C204B6E1018E> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin
    0xa697000 -  0xa697fff  com.apple.iLMBAppDefPlugin (2.6.2 - 288.2.12) <13748A1D-487A-3815-94A7-E5342AD254DC> /Library/Application Support/iLifeMediaBrowser/*/iLMBAppDefPlugin
    0xa69c000 -  0xa69dfff  com.apple.iLMBFolderPlugin (2.6.2 - 288.2.12) <E9F003F7-D978-3E7A-A15D-04BABB025F09> /Library/Application Support/iLifeMediaBrowser/*/iLMBFolderPlugin
    0xa6ee000 -  0xa6f7ffc  com.apple.iLMBFinalCutPlugin (2.6.2 - 288.2.12) <AB6A3216-4F2D-344C-BBA8-69DA7273D699> /Library/Application Support/iLifeMediaBrowser/*/iLMBFinalCutPlugin
    0xad08000 -  0xad0bfff  com.apple.iLMBGarageBandPlugin (2.6.2 - 288.2.12) <011958D7-5E85-3820-8BF1-29D5082F9B05> /Library/Application Support/iLifeMediaBrowser/*/iLMBGarageBandPlugin
    0xad11000 -  0xad1cff3  com.apple.iLMBiMoviePlugin (2.6.2 - 288.2.12) <3A7C1FA1-8F5D-3620-B8EA-9093323D8388> /Library/Application Support/iLifeMediaBrowser/*/iLMBiMoviePlugin
    0xad23000 -  0xad36ff7  com.apple.iLMBiPhoto8Plugin (2.6.2 - 288.2.12) <E539BF4E-56CA-3B20-94B7-F12ABCAA7BB6> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto8Plugin
    0xad3e000 -  0xad46ff3  com.apple.iLMBiTunesPlugin (2.6.2 - 288.2.12) <8547E357-96D5-3D8F-8423-B49376A77FFE> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
    0xad4d000 -  0xad4eff7  com.apple.iLMBMoviesFolderPlugin (2.6.2 - 288.2.12) <198BA9E9-5FE6-3747-AA19-90DC344730E5> /Library/Application Support/iLifeMediaBrowser/*/iLMBMoviesFolderPlugin
    0xad53000 -  0xad55ff8  com.apple.iLMBPhotoBooth2Plugin (2.6.2 - 288.2.12) <F197CF53-0EE3-32F9-9539-47C2FCEA7224> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBooth2Plugin
    0xad5a000 -  0xad5bff7  com.apple.iLMBPhotoBoothPlugin (2.6.2 - 288.2.12) <078CF428-0527-355B-8BB1-90E83C7F5EC0> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBoothPlugin
    0xb000000 -  0xb155ff9  com.apple.iLMBAperture31Plugin (2.6.2 - 288.2.12) <817A3E85-B1D7-3430-BFF5-AA3E529ACA41> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperture31Plugin
    0xb19d000 -  0xb2f5ff9  com.apple.iLMBiPhoto9Plugin (2.6.2 - 288.2.12) <7F6D66BF-6A80-3FBA-B02F-13AD7D185843> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto9Plugin
    0xb33d000 -  0xb3edfff  com.apple.iTunesAccess (10.5.3 - 10.5.3) <16ED9ECE-172C-D221-E50F-405A1DD78CC7> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0xd6f7000 -  0xd6fbffb  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <E6982BB2-BEC8-3232-989D-B3D5B26AE0DF> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0xdde8000 -  0xddeeffb  com.apple.audio.AppleHDAHALPlugIn (2.1.7 - 2.1.7f9) <731DE928-8747-39A9-8C7A-E1017A4D1A07> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xe587000 -  0xe589fff  com.apple.podcastproducer.ImageDiffer (1.3 - 245) <073C136E-6E98-337D-B8D9-84664E84B9C5> /System/Library/Graphics/Quartz Composer Patches/ImageDifferPatch.plugin/Contents/MacOS/ImageDifferPatch
    0xed28000 -  0xed2dfe2  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <57256969-D8B2-3B02-9425-25E719AAF478> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0xed34000 -  0xed36fff  libCoreFSCache.dylib (??? - ???) <17698E23-65F8-30AF-9C05-7E6172E52656> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0xede1000 -  0xedeeff7 +net.telestream.license (1.0.8.2-GC - 1.0.8.2-GC) <1323CE63-89A3-968F-F3D6-DE830D9C720B> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0xef00000 -  0xefa1ff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <7A0427BD-4FB5-3F4E-A7F8-F760AD944283> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
    0xf341000 -  0xf348ffe  com.apple.AppleGVAHW.component (1.0 - 1) <13BFEB64-0AD7-3ACE-94DA-806546212480> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0xf34e000 -  0xf353ffb  com.apple.AppleMPEG2Codec (1.0.2 - 220.1) <6DCB845F-B965-3434-9CF7-2623CEF06685> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0xfa35000 -  0xfa4dff2  com.apple.applepixletvideo (1.2.30 - 1.2d30) <72A0B4BD-DB7A-3C7F-ADB9-6D059F7ABA2B> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0xfac7000 -  0xfc93ff7  com.apple.audio.codecs.Components (2.2 - 2.2) <ACB95E1B-100E-36FE-BE0F-F2525946B5A8> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0xfcf2000 - 0x1007ffe3  QuickTimeH264.scalar (??? - ???) <DBBBB79F-0E6B-3623-8BF8-261019F511ED> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x11610000 - 0x11635fff  com.apple.QuartzComposer.ExtraPatches (4.0 - 236.3) <53682AE5-1424-3784-8AA2-E6F159ED4132> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x116f2000 - 0x1173effb  com.apple.audio.midi.CoreMIDI (1.8 - 42) <67FE17BA-C921-3D2D-AAC5-B5E9083CE004> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x11761000 - 0x1178afff  com.apple.audio.OpenAL (1.5.1 - 1.5.1) <66AB8BA7-6F8A-3D8C-9DAE-D82AF54139BB> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
    0x1198d000 - 0x119aefe7  com.apple.AppleIntermediateCodec (2.0 - 542.4) <76A60DE0-273C-3939-ADCB-5554402F76E6> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x11a61000 - 0x11c56ff2 +net.telestream.wmv.import (2.4.1.4 - 2.4.1.4) <72CC344A-FDF2-6ABD-1906-8169D0377295> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x11c8b000 - 0x11e4dff2 +net.telestream.wmv.advanced (2.4.1.4 - 2.4.1.4) <669FFFED-A768-B9CB-082D-ED1BCE1A86EB> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x11e91000 - 0x11ef7fff  com.apple.AppleProResDecoder (3.0 - 542.6) <6F0062A8-3C7B-31E8-AABC-2DE8839E62AA> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x11f28000 - 0x11f67ff7  com.apple.AppleVAH264HW.component (3.0 - 3.0) <4460AFFB-17DE-34F0-91C7-A2C90B817146> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x1202a000 - 0x12140ff3  com.apple.AppleGVAFramework (2.2.79 - 2.2.79) <7D6AA57B-BA89-398A-8522-0D6D2106669E> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0x12159000 - 0x12192ff3  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2315) <F2AFE0C1-1B5B-3A46-9A09-A2E04DCBE215> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x259c8000 - 0x259c9ffe +cl_kernels (??? - ???) <9AEDD2FC-2F49-4EBF-A8FA-A6A36EDF7C49> cl_kernels
    0x26640000 - 0x26640ff3 +cl_kernels (??? - ???) <D5BB5015-100D-4D6A-A015-3F022FCCA0C6> cl_kernels
    0x28cb5000 - 0x28ce0ff3  com.apple.iMovieQCPlugIns (1.1 - 1635) <A89F1B94-B061-1CD1-AEB9-F4F080BE9073> /Applications/iMovie.app/Contents/PlugIns/iMovieQCPlugIns.plugin/Contents/MacOS /iMovieQCPlugIns
    0x29490000 - 0x29531ff7  unorm8_argb.dylib (1.50.69 - compatibility 1.0.0) <C8E7C58B-E670-3EB2-A87E-C2F618D1C402> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_argb. dylib
    0x29547000 - 0x295e6ff7  unorm8_rgba.dylib (1.50.69 - compatibility 1.0.0) <3A06E8EA-0335-348A-BCCB-21C3E94AED31> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
    0x3e000000 - 0x3e044fff  com.apple.glut (3.4.9 - GLUT-3.4.9) <28FCEDCC-0E24-3F81-BB29-E09CBCD5E047> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x70000000 - 0x70141fff  com.apple.audio.units.Components (1.7.2 - 1.7.2) <44C7D574-F577-30B8-B74D-F2EF8A5A282A> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe23000 - 0x8fe55aa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x90005000 - 0x900bbff3  com.apple.QuickTimeMPEG4.component (7.7.1 - 2315) <17DE2163-96B2-301F-BCF5-256D92CCF13F> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x900bc000 - 0x900beffc  com.apple.QuickTimeH264.component (7.7.1 - 2315) <94626300-FADD-3219-9E76-278AD69C9A1F> /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x900e8000 - 0x9023afff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <E369AC9E-F548-3DF6-B320-9D09E486070E> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9023b000 - 0x9053dfff  com.apple.CoreServices.CarbonCore (960.20 - 960.20) <E6300673-A013-3A91-BB1A-DD793B857E16> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9053e000 - 0x90767ffb  com.apple.QuartzComposer (5.0 - 236.3) <E805537F-7BB8-31C6-A3F3-27D8CD1FE31E> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x90768000 - 0x90983ff7  com.apple.imageKit (2.1.1 - 1.0) <3A523A4F-BE07-35B1-9A41-523FD27C14D4> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x909de000 - 0x91471ff6  com.apple.AppKit (6.7.3 - 1138.32) <008E7C05-C20C-344A-B51C-4A2441372785> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91472000 - 0x914afff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <4508AABD-EDA8-3BF7-B03A-978D2395C9A8> /usr/lib/libcups.2.dylib
    0x914b0000 - 0x914b3fff  com.apple.AppleSystemInfo (1.0 - 1) <1D454280-96FB-340D-A840-DCEAC9ED4481> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x914b4000 - 0x915acff7  libFontParser.dylib (??? - ???) <8C069D3D-534F-3EBC-8035-A43E2B3A431A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x915ad000 - 0x915b0ffc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x915e4000 - 0x915f9fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <361FB1E8-461F-3349-B56E-A8BDB28B0010> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x91616000 - 0x9170dff3  com.apple.PubSub (1.0.5 - 65.28) <2CCF7C46-2F25-321D-8F41-5791F0C336B9> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x91790000 - 0x919d9ff7  com.apple.JavaScriptCore (7534.53 - 7534.53.8) <5F799A84-B6B2-398F-B617-285BAA60139F> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x919da000 - 0x919dfff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <6DCCA207-8F4D-343A-B77D-C4FB905DADC4> /usr/lib/system/libmacho.dylib
    0x919e0000 - 0x91af4ff3  com.apple.QuickTimeImporters.component (7.7.1 - 2315) <5851AB10-A55E-3D80-94D3-46B90E0879DA> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x91af5000 - 0x91c57fff  com.apple.QTKit (7.7.1 - 2315) <21C7F00E-FBB9-3F12-AE51-06A630ECAC5E> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x91c5c000 - 0x91c92ff4  com.apple.LDAPFramework (3.0 - 120.1) <F56ACDE4-4DC3-3B1A-BA0D-FE5E7F3619C1> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x91cd8000 - 0x91cdcffd  IOSurface (??? - ???) <8D56A6E8-5785-311E-BD0D-661B92C92A5A> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x91cdd000 - 0x91cf0ffb  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <AE079D11-3A38-3707-A2DF-6BD2FC24B712> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x91d05000 - 0x91d3bff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x91d3c000 - 0x91d4cfff  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <D6F728DA-990A-32A3-86FA-4A3F4D88E309> /usr/lib/libsasl2.2.dylib
    0x91d61000 - 0x91e70fff  com.apple.DesktopServices (1.6.2 - 1.6.2) <33DCFB71-1D9E-30B6-BC4C-CD54068690BE> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x91e71000 - 0x91eacfff  com.apple.bom (11.0 - 183) <6D23FFB2-006F-34EE-9864-835FCE4711A5> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x91ead000 - 0x91efeff3  com.apple.CoreMediaIO (210.0 - 3180) <6C9974AD-CA84-3C49-B55E-0496B675DBA1> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x91f6f000 - 0x91f78ff3  com.apple.CommonAuth (2.1 - 2.0) <5DA75D12-A4D6-3362-AD72-79A64C79669E> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x91f79000 - 0x91f80ff5  libsystem_dnssd.dylib (??? - ???) <EC680003-9D5A-3949-B13B-8F7931861EB2> /usr/lib/system/libsystem_dnssd.dylib
    0x92613000 - 0x92613fff  com.apple.quartzframework (1.5 - 1.5) <E897CB0C-1CCC-393F-AE36-A182723AFD37> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9266c000 - 0x926e2fff  com.apple.Metadata (10.7.0 - 627.28) <71AC8DA5-FA89-3411-A97C-65B6129E97BD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x926e3000 - 0x926ebfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x926ec000 - 0x927dcff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x927dd000 - 0x9281dff7  com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92843000 - 0x92865ffe  com.apple.framework.familycontrols (3.0 - 300) <6B0920A5-3971-30EF-AE4C-5361BB7199EB> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x92866000 - 0x928deff8  com.apple.CorePDF (3.1 - 3.1) <0074267B-F74A-30FC-8508-A14C821F0771> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x928df000 - 0x9362ffeb  com.apple.QuickTimeComponents.component (7.7.1 - 2315) <1826E4DB-15C2-3495-A278-A17ADEDB0A62> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x93630000 - 0x93633ffd  libCoreVMClient.dylib (??? - ???) <2D135537-F9A6-33B1-9B01-6ECE7E929C00> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9363b000 - 0x936fbffb  com.apple.ColorSync (4.7.1 - 4.7.1) <68413C12-2380-3B73-AF74-B9E069DFB89A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x936fc000 - 0x93a3ffff  com.apple.MediaToolbox (1.0 - 705.61) <FF915A3D-16F4-3191-A9B2-EF9270104786> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x93a40000 - 0x93c17fff  com.apple.CoreFoundation (6.7.1 - 635.19) <3A07EDA3-F460-3971-BFCB-AFE9A11F74F1> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x93c18000 - 0x93c20ff3  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <15D6D66D-4DB9-3BCA-87EE-02EE9B7B6189> /usr/lib/system/liblaunch.dylib
    0x93c21000 - 0x93c70ffb  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <71C9D388-E607-3DB4-9FD3-FC918EB4A835> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x93c71000 - 0x93c71fff  com.apple.Carbon (153 - 153) <A75A970B-6D82-3451-8D3E-05B1A130ABDE> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x93c72000 - 0x93c9fff7  com.apple.securityinterface (5.0 - 55007) <E5139C3F-23D2-363D-A4A2-B491E55A5439> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x93ca0000 - 0x93ca6ffb  com.apple.print.framework.Print (7.1 - 247.1) <5D7ADC17-D8EF-3958-9C0C-AA45B7717FBA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x93ca7000 - 0x93cf0ff7  libGLU.dylib (??? - ???) <AEA2AD9A-EEDD-39B8-9B28-4C7C1BACB594> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x93d94000 - 0x94187ffb  com.apple.VideoToolbox (1.0 - 705.61) <1278DC1E-AF77-34C1-9A60-B61ECF806E4D> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9458d000 - 0x94590ff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x94594000 - 0x94596ffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x94597000 - 0x9466daab  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <2E272DCA-38A0-3530-BBF4-47AE678D20D4> /usr/lib/libobjc.A.dylib
    0x949d0000 - 0x949fbfff  com.apple.GSS (2.1 - 2.0) <DA24E4F9-F9D4-3CDB-89E4-6EAA7A9F6005> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x94a00000 - 0x94acbfff  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <1B0A12B3-DAFA-31E2-8F82-E98D620E4D72> /usr/lib/system/libsystem_c.dylib
    0x94acc000 - 0x94b63ff3  com.apple.securityfoundation (5.0 - 55107) <DF36D4ED-47F7-3F7F-AB09-32E5BFB7EF05> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94b64000 - 0x94b6bffd  com.apple.NetFS (4.0 - 4.0) <144149F1-057D-3A6F-974B-357461F7E438> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x94b6c000 - 0x94b88ff5  com.apple.GenerationalStorage (1.0 - 126.1) <E622F823-7D98-3D13-9C3D-7EA482567394> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x94b8e000 - 0x94bc2ff8  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <567E922C-E64F-321B-9A47-6B18BF481625> /usr/lib/libssl.0.9.8.dylib
    0x94bc3000 - 0x94c4dffb  com.apple.SearchKit (1.4.0 - 1.4.0) <CF074082-64AB-3A1F-831E-582DF1667827> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x94c54000 - 0x94ca4ff0  libTIFF.dylib (??? - ???) <F532A16A-7761-355C-8B7B-CEF988D8EEFF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x94cb1000 - 0x94cbcffc  com.apple.NetAuth (1.0 - 3.0) <E4844688-90B6-3834-9C36-395797CEBC69> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x94cbd000 - 0x94cc1ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <9DFB61F2-9B1F-31B2-BF41-099994D74E1F> /usr/lib/system/libcache.dylib
    0x94cc2000 - 0x94cc2ff2  com.apple.CoreServices (53 - 53) <7CB7AA95-D5A7-366A-BB8A-035AA9E582F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x94cc3000 - 0x94cf1ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <DA16A8B2-F359-345A-BAF7-8E6A5A0741A1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x94cf2000 - 0x94f65ff7  com.apple.CoreImage (7.93 - 1.0.1) <88FEFE5B-83A9-3CD9-BE2E-DB1E0553EBB0> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x94f66000 - 0x94fc8ff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x94fc9000 - 0x950e0fe9  com.apple.WebKit (7534.53 - 7534.53.11) <E6C70036-EDDD-368B-A865-349615BB0A89> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9512e000 - 0x95138ff2  com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95139000 - 0x955aeff7  FaceCoreLight (1.4.7 - compatibility 1.0.0) <312D0F58-B8E7-3F61-8A83-30C95F2EBEAA> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x956fc000 - 0x95703fff  com.apple.agl (3.1.4 - AGL-3.1.4) <67C8B2A1-32B9-32AF-B07C-502D586DD06F> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x95704000 - 0x95766ffb  com.apple.datadetectorscore (3.0 - 179.4) <32262124-6F75-3999-86DA-590A90BA464C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x95767000 - 0x957f4ff7  com.apple.CoreText (220.11.0 - ???) <720EFEE0-A92A-3519-9C88-D06E4DE14EAB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x957f5000 - 0x9585cfff  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <3AFF3CE8-14AE-300F-8F63-8B7FB9D4DA96> /usr/lib/libc++.1.dylib
    0x9585d000 - 0x9585eff7  libquarantine.dylib (36.2.0 - compatibility 1.0.0) <3F974196-FBAD-3DBD-8ED0-DC16C2B3526B> /usr/lib/system/libquarantine.dylib
    0x9585f000 - 0x958faff3  com.apple.ink.framework (1.3.2 - 110) <1ACFD1F1-FB42-30C0-9C93-12D0BBE5BFE9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x95948000 - 0x959a4fff  com.apple.coreui (1.2.1 - 165.3) <65526A00-D355-3932-9279-9A7D6BF76D95> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x959a5000 - 0x959a5fff  libdnsinfo.dylib (395.7.0 - compatibility 1.0.0) <A870EB56-560C-3DA2-B189-6E0FD2D3B66D> /usr/lib/system/libdnsinfo.dylib
    0x959a6000 - 0x959e2ffa  libGLImage.dylib (??? - ???) <05B36DC4-6B90-33E6-AE6A-10CAA1B70606> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x959e3000 - 0x959e8ffb  com.apple.phonenumbers (1.0 - 47) <84484814-C9BE-33E7-A3DF-4DD0E970B902> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x959e9000 - 0x959e9fff  com.apple.Cocoa (6.6 - ???) <30E6ABEE-B390-3C02-8C76-9C62F19FAA83> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x959ea000 - 0x95a2dffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x95a2e000 - 0x95a5dff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x95a5e000 - 0x95d1aff3  com.apple.security (7.0 - 55110) <2F4FCD65-2A30-3330-99DE-91FE1F78B9FB> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x95d1b000 - 0x95d1bfff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x95d5f000 - 0x95d60fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x95d61000 - 0x95d87ffb  com.apple.quartzfilters (1.7.0 - 1.7.0) <4BFB3107-CF63-3B9C-8F57-D2987FE50566> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x95d9e000 - 0x96023fe3  com.apple.QuickTime (7.7.1 - 2315) <E6249041-B569-3A96-897F-E84B1C057948> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9607e000 - 0x96085ff8  libCGXCoreImage.A.dylib (600.0.0 - compatibility 64.0.0) <8CBED8FC-BF9A-316D-8B47-32336263BE68> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x96086000 - 0x9608efff  com.apple.AOSNotification (1.4.0 - 504.1) <7C46FEED-AC63-3527-97BA-55FA497F1582> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x960bc000 - 0x960d2ffe  libxpc.dylib (77.18.0 - compatibility 1.0.0) <D40B8FD1-C671-3BD5-8C9E-054AF6D4FE9A> /usr/lib/system/libxpc.dylib
    0x960d3000 - 0x96107ff3  libTrueTypeScaler.dylib (??? - ???) <43479E0A-C47D-3CE3-B328-9CB33D3FC3B3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x96108000 - 0x96108fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9611b000 - 0x9613dff1  com.apple.PerformanceAnalysis (1.10 - 10) <F60C8A7E-D7DE-31D4-9D78-6F8130914B13> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x9613e000 - 0x9615bff3  com.apple.openscripting (1.3.3 - ???) <476BFEC9-880C-3182-A5AA-2CAB2D82EACA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x964e7000 - 0x964feff8  com.apple.CoreMediaAuthoring (2.0 - 890) <53F48529-E89F-3518-B888-C8C735C16F8F> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x964ff000 - 0x96567ff3  com.apple.ISSupport (1.9.8 - 56) <A8CB81EA-134B-33B7-8A21-C1F33384A98A> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x96590000 - 0x96591fff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x96592000 - 0x96a6eff6  libBLAS.dylib (??? - ???) <134ABFC6-F29E-3DC5-8E57-E13CB6EF7B41> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x96a71000 - 0x96a8bfff  com.apple.Kerberos (1.0 - 1) <D7920A1C-FEC4-3460-8DD0-D02491578CBB> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x96aa9000 - 0x96ad1ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <FCAC685A-724F-3FE7-8416-146108DF75FB> /usr/lib/libxslt.1.dylib
    0x96add000 - 0x96af1ff7  com.apple.CFOpenDirectory (10.7 - 144) <708CEADD-B38F-3D74-BFBA-D54477B8561D> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x96af2000 - 0x96af5ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x96af6000 - 0x96af7ff7  libsystem_sandbox.dylib (??? - ???) <D272A77F-7F47-32CD-A36E-5A3FB966ED55> /usr/lib/system/libsystem_sandbox.dylib
    0x96af8000 - 0x96b10ff3  com.apple.frameworks.preferencepanes (15.0 - 15.0) <9E5FE337-358F-3B10-955D-B2D2021F732B> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x96b16000 - 0x96b21ffe  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <4A7FCD28-9C09-3120-980A-BDF6EDFAAC62> /usr/lib/libbz2.1.0.dylib
    0x96bfd000 - 0x96bfefff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x96bff000 - 0x96c5aff3  com.apple.Symbolication (1.3 - 91) <4D12D2EC-5010-3958-A205-9A67E972C76A> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x96ca7000 - 0x96d69fff  com.apple.CoreServices.OSServices (478.37 - 478.37) <00A48B2A-2D75-3FD0-9805-61BB11710879> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x96d70000 - 0x96d99ffe  com.apple.opencl (1.50.69 - 1.50.69) <44120D48-00A2-3C09-9055-36D309F1E7C9> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x96d9a000 - 0x971e7ffb  com.apple.RawCamera.bundle (3.9.1 - 586) <81E19AD7-A034-3A56-B74E-31EDBD663694> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x971e8000 - 0x9739cff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6AD14A51-AEA8-3732-B07B-DEA37577E13A> /usr/lib/libicucore.A.dylib
    0x9739f000 - 0x973a3fff  libGIF.dylib (??? - ???) <06E85451-F51C-31C4-B5A6-180819BD9738> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x973a4000 - 0x9742bfff  com.apple.print.framework.PrintCore (7.1 - 366.1) <BD9120A6-BFB0-3796-A903-05F627F696DF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9742c000 - 0x97441ff7  com.apple.ImageCapture (7.0 - 7.0) <086DF959-E47E-325A-A527-2EA3713137D1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x97442000 - 0x97467ff9  libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9759c000 - 0x975a2ffd  com.apple.CommerceCore (1.0 - 17) <595A67CF-3546-35FD-8D2E-2861CB959379> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x975a3000 - 0x975c1ff7  libsystem_kernel.dylib (1699.23.2 - compatibility 1.0.0) <92922567-64B5-3693-A3CD-9E1031850E3C> /usr/lib/system/libsystem_kernel.dylib
    0x975c2000 - 0x975c4ff9  com.apple.securityhi (4.0 - 1) <BD367302-73C3-32F4-8080-E389AE89E434> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x975c5000 - 0x97682ff3  ColorSyncDeprecated.dylib (4.6.0 - compatibility 1.0.0) <1C0646D4-18D6-375E-9C0E-EA066C6A6C3C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x97683000 - 0x97684fff  com.apple.TrustEvaluationAgent (2.0 - 1) <4BB39578-2F5E-3A50-AD59-9C0AB99472EB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x97685000 - 0x980a5fff  com.apple.WebCore (7534.53 - 7534.53.11) <1A48798F-7E15-3792-9CA2-8661F49669AB> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x980a6000 - 0x98103ffb  com.apple.htmlrendering (76 - 1.1.4) <792F1D51-3A88-3430-8A32-F252FAAE0D13> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x98262000 - 0x98265ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <E06426D8-CC01-3754-B5B3-D15CBA5C8D73> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x9828c000 - 0x982f1ff7  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x982f2000 - 0x982f3ffd  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <CECF26FA-E583-3B86-BCAA-DBF8FF72EAFC> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x98336000 - 0x98341ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <DD0529E3-9D71-37B6-9EB8-D7747B2B12C6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Vers

    Attached latest error log on latest iMovie version...
    Process:         iMovie [679]
    Path:            /Applications/iMovie.app/Contents/MacOS/iMovie
    Identifier:      com.apple.iMovieApp
    Version:         9.0.4 (1635)
    Build Info:      iMovieApp-16350000~2
    App Item ID:     408981434
    App External ID: 3919357
    Code Type:       X86 (Native)
    Parent Process:  launchd [115]
    Date/Time:       2012-06-06 12:51:45.552 +0200
    OS Version:      Mac OS X 10.7.4 (11E53)
    Report Version:  9
    Interval Since Last Report:          69355 sec
    Crashes Since Last Report:           21
    Per-App Interval Since Last Report:  23256 sec
    Per-App Crashes Since Last Report:   21
    Anonymous UUID:                      951BA03B-35B8-403B-AD32-DEB9BCF04DAD
    Crashed Thread:  19  CVDisplayLink
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000ffd8cec7
    VM Regions Near 0xffd8cec7:
        IOKit                  00000000f4270000-00000000ffd78000 [187.0M] rw-/rw- SM=ALI 
    -->
        Submap                 00000000ffff0000-00000000ffff2000          r-x/r-x process-only submap
    Application Specific Information:
    building project tree
    VRAM info:disp 0:256MB
    ...built
    12943392768 bytes free after failed export attempt
    playing: VM 1280.99 MB
    playing: VM 3148.90 MB
    objc[679]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x92674c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x926741f6 mach_msg + 70
    2   com.apple.CoreFoundation                0x964d89da __CFRunLoopServiceMachPort + 170
    3   com.apple.CoreFoundation                0x964e1b04 __CFRunLoopRun + 1428
    4   com.apple.CoreFoundation                0x964e11dc CFRunLoopRunSpecific + 332
    5   com.apple.CoreFoundation                0x964e1088 CFRunLoopRunInMode + 120
    6   com.apple.HIToolbox                     0x94756723 RunCurrentEventLoopInMode + 318
    7   com.apple.HIToolbox                     0x9475da8b ReceiveNextEventCommon + 381
    8   com.apple.HIToolbox                     0x9475d8fa BlockUntilNextEventMatchingListInMode + 88
    9   com.apple.AppKit                        0x997ba0d8 _DPSNextEvent + 678
    10  com.apple.AppKit                        0x997b9942 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    11  com.apple.iMovieApp                     0x00044e47 0x1000 + 278087
    12  com.apple.AppKit                        0x997b5cb1 -[NSApplication run] + 911
    13  com.apple.AppKit                        0x99a46bd9 NSApplicationMain + 1054
    14  com.apple.iMovieApp                     0x000031b3 0x1000 + 8627
    15  com.apple.iMovieApp                     0x00002a6e 0x1000 + 6766
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x92676b5e __select_nocancel + 10
    1   libdispatch.dylib                       0x96302cc9 _dispatch_mgr_invoke + 642
    2   libdispatch.dylib                       0x9630185f _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x9267683e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x913bee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x913bef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9cb003a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x9cb0011d TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x9cafff2e TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTimeComponents.component          0x90a46516 0x9045a000 + 6210838
    7   libsystem_c.dylib                       0x913baed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x913be6de thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x92674c5e semaphore_wait_trap + 10
    1   com.apple.QuickTimeComponents.component          0x90f21f00 0x9045a000 + 11304704
    2   com.apple.QuickTimeComponents.component          0x90ab663d 0x9045a000 + 6669885
    3   com.apple.QuickTimeComponents.component          0x90f21e33 0x9045a000 + 11304499
    4   libsystem_c.dylib                       0x913baed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x913be6de thread_start + 34
    Thread 4:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x9267683e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x913bee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9136682a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x90b68553 0x9045a000 + 7398739
    4   libsystem_c.dylib                       0x913baed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x913be6de thread_start + 34
    Thread 5:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x9267683e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x913bee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9136682a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x90b68553 0x9045a000 + 7398739
    4   libsystem_c.dylib                       0x913baed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x913be6de thread_start + 34
    Thread 6:: jpegdecompress_MPLoop
    0   libsystem_kernel.dylib                  0x9267683e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x913bee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x9136682a pthread_cond_wait + 48
    3   com.apple.QuickTimeComponents.component          0x90b68553 0x9045a000 + 7398739
    4   libsystem_c.dylib                       0x913baed9 _pthread_start + 335
    5   libsystem_c.dylib                       0x913be6de thread_start + 34
    Thread 7:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x92676b42 __select + 10
    1   com.apple.CoreFoundation                0x9652fe15 __CFSocketManager + 1557
    2   libsystem_c.dylib                       0x913baed9 _pthread_start + 335
    3   libsystem_c.dylib                       0x913be6de thread_start + 34
    Thread 8:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x92674c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x1129c433 0x11000000 + 2737203
    2   QuickTimeH264.scalar                    0x1129bf1b 0x11000000 + 2735899
    3   libsystem_c.dylib                       0x913baed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x913be6de thread_start + 34
    Thread 9:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x92674c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x1129c433 0x11000000 + 2737203
    2   QuickTimeH264.scalar                    0x1129bf1b 0x11000000 + 2735899
    3   libsystem_c.dylib                       0x913baed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x913be6de thread_start + 34
    Thread 10:: com.apple.coremedia.JVTlib
    0   libsystem_kernel.dylib                  0x92674c5e semaphore_wait_trap + 10
    1   QuickTimeH264.scalar                    0x1129c433 0x11000000 + 2737203
    2   QuickTimeH264.scalar                    0x1129bf1b 0x11000000 + 2735899
    3   libsystem_c.dylib                       0x913baed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x913be6de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x9267702e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x913bcccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x913be6fe start_wqthread + 30
    Thread 12:
    0   libsystem_kernel.dylib                  0x9267683e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x913bee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x913bef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9cb003a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x9cb0011d TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x9cafff2e TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x9cb32e53 AIOFileThread(void*) + 1019
    7   libsystem_c.dylib                       0x913baed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x913be6de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x9267702e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x913bcccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x913be6fe start_wqthread + 30
    Thread 14:
    0   libsystem_kernel.dylib                  0x9267683e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x913bee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x913bef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9cb003a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x9cb0011d TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x9cafff2e TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x9cb75398 TimerThread + 292
    7   libsystem_c.dylib                       0x913baed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x913be6de thread_start + 34
    Thread 15:
    0   libsystem_kernel.dylib                  0x9267683e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x913bee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x913bef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9cb003a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x9cb0011d TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x9cafff2e TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x9cb74e8a DeferredTaskThread + 65
    7   libsystem_c.dylib                       0x913baed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x913be6de thread_start + 34
    Thread 16:: com.apple.quicktime.VideoDecodeThread
    0   libsystem_kernel.dylib                  0x9267683e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x913bee78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x913bef7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9cb003a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x9cb0011d TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x9cafff2e TSWaitOnSemaphoreRelative + 24
    6   com.apple.QuickTime                     0x98a6d2e4 VideoDecodeThread + 77
    7   libsystem_c.dylib                       0x913baed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x913be6de thread_start + 34
    Thread 17:
    0   libsystem_kernel.dylib                  0x9267702e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x913bcccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x913be6fe start_wqthread + 30
    Thread 18:: com.apple.audio.IOThread.client
    0   libsystem_kernel.dylib                  0x92674c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x926741f6 mach_msg + 70
    2   com.apple.audio.CoreAudio               0x918c69fe HALB_MachPort::SendMessageWithReply(unsigned int, unsigned int, unsigned long, unsigned long, mach_msg_header_t*, unsigned int) + 122
    3   com.apple.audio.CoreAudio               0x918c6a6a HALB_MachPort::SendSimpleMessageWithSimpleReply(unsigned int, unsigned int, int, int&, unsigned int) + 60
    4   com.apple.audio.CoreAudio               0x918bee5f HALC_ProxyIOContext::IOWorkLoop() + 1145
    5   com.apple.audio.CoreAudio               0x918be926 HALC_ProxyIOContext::IOThreadEntry(void*) + 136
    6   com.apple.audio.CoreAudio               0x918be898 __HALC_ProxyIOContext_block_invoke_6 + 20
    7   com.apple.audio.CoreAudio               0x918be81d HALB_IOThread::Entry(void*) + 69
    8   libsystem_c.dylib                       0x913baed9 _pthread_start + 335
    9   libsystem_c.dylib                       0x913be6de thread_start + 34
    Thread 19 Crashed:: CVDisplayLink
    0   libobjc.A.dylib                         0x9a8d3074 fixupSelectorsInMethodList + 30
    1   libobjc.A.dylib                         0x9a8c8d87 _class_getMethodNoSuper_nolock + 108
    2   libobjc.A.dylib                         0x9a8c86a3 lookUpMethod + 241
    3   libobjc.A.dylib                         0x9a8d34bb _class_lookupMethodAndLoadCache + 40
    4   libobjc.A.dylib                         0x9a8c7d83 objc_msgSend + 83
    5   com.apple.QuartzComposer                0x92cc7ee2 -[QCImageManager createTextureBufferWithFormat:target:pixelsWide:pixelsHigh:options:] + 1002
    6   com.apple.QuartzComposer                0x92d4ded2 -[QCProvider_CoreImage createTextureBufferForManager:withFormat:target:transformation:bounds:colorSpac e:options:] + 106
    7   com.apple.QuartzComposer                0x92cbc30b -[QCImageManager(Internal) _createImageBufferFromProvider:withFormat:target:transformation:bounds:colorSpa ce:options:] + 4580
    8   com.apple.QuartzComposer                0x92cbb11c -[QCImageManager createTextureBufferFromProvider:withFormat:target:transformation:bounds:colorSp ace:options:] + 2405
    9   com.apple.QuartzComposer                0x92cef4c5 -[QCImagePort_Cache setOnOpenGLContext:unit:withBounds:transformation:target:mipmappingLevels:matri x:] + 1509
    10  com.apple.QuartzComposer                0x92ceeeda -[QCOpenGLPort_Image setOnOpenGLContext:unit:withBounds:transformation:target:mipmappingLevels:matri x:] + 104
    11  com.apple.QuartzComposer                0x92ceee60 -[QCOpenGLPort_Image setOnOpenGLContext:unit:fromBounds:withTarget:mipmappingLevels:matrix:] + 117
    12  com.apple.QuartzComposer                0x92ceecd4 QCExecutionSetStates + 944
    13  com.apple.QuartzComposer                0x92ca8723 -[QCRenderingManager renderAtTime:arguments:] + 1630
    14  com.apple.QuartzComposer                0x92ca67af -[QCPatch(Extensions) executeSubpatches:arguments:] + 65
    15  com.apple.QuartzComposer                0x92ca675d -[QCPatch(Customization) execute:time:arguments:] + 61
    16  com.apple.QuartzComposer                0x92ca7500 -[QCPatch(Private) _renderAtTime:arguments:] + 132
    17  com.apple.QuartzComposer                0x92ca876a -[QCRenderingManager renderAtTime:arguments:] + 1701
    18  com.apple.QuartzComposer                0x92ca67af -[QCPatch(Extensions) executeSubpatches:arguments:] + 65
    19  com.apple.QuartzComposer                0x92ca675d -[QCPatch(Customization) execute:time:arguments:] + 61
    20  com.apple.QuartzComposer                0x92ca7500 -[QCPatch(Private) _renderAtTime:arguments:] + 132
    21  com.apple.QuartzComposer                0x92cae4b0 -[QCContext renderPatch:time:arguments:] + 846
    22  com.apple.QuartzComposer                0x92cae0f1 -[QCGraphicsContext renderPatch:time:arguments:] + 92
    23  com.apple.QuartzComposer                0x92cad141 -[QCOpenGLContext renderPatch:time:arguments:] + 557
    24  com.apple.QuartzComposer                0x92cacf0a -[QCPatch(Runtime) render:arguments:] + 78
    25  com.apple.QuartzComposer                0x92cd4e45 -[QCRenderer renderAtTime:arguments:] + 57
    26  com.apple.iMovieApp                     0x0017badd 0x1000 + 1551069
    27  com.apple.iMovieApp                     0x0006855d 0x1000 + 423261
    28  com.apple.iMovieApp                     0x00064532 0x1000 + 406834
    29  com.apple.iMovieApp                     0x00065090 0x1000 + 409744
    30  com.apple.iMovieApp                     0x00055fb4 0x1000 + 348084
    31  com.apple.CoreVideo                     0x9aa0c185 CVDisplayLink::performIO(CVTimeStamp*) + 489
    32  com.apple.CoreVideo                     0x9aa0b088 CVDisplayLink::runIOThread() + 876
    33  com.apple.CoreVideo                     0x9aa0ad05 _ZL13startIOThreadPv + 160
    34  libsystem_c.dylib                       0x913baed9 _pthread_start + 335
    35  libsystem_c.dylib                       0x913be6de thread_start + 34
    Thread 20:
    Thread 19 crashed with X86 Thread State (32-bit):
      eax: 0x00000000  ebx: 0x0a2d2130  ecx: 0x20000000  edx: 0xffd8cec7
      edi: 0x20000000  esi: 0xffd8cec7  ebp: 0xb5ab3d08  esp: 0xb5ab3ce0
       ss: 0x00000023  efl: 0x00010282  eip: 0x9a8d3074   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0xffd8cec7
    Logical CPU: 2
    Binary Images:
        0x1000 -   0x441feb  com.apple.iMovieApp (9.0.4 - 1635) <677756C9-3E33-AE1B-EAF8-6A78D6C9DD37> /Applications/iMovie.app/Contents/MacOS/iMovie
      0x502000 -   0x519fe7  com.apple.iLifeFaceRecognition (1.0 - 21.1) <AFB95F66-06DF-8076-94EE-19B1BAE836FC> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
      0x528000 -   0x5b4ff7  com.apple.mobiledevice (507.6 - 507.6) <F7DDA28B-630F-862A-11E2-6386027EB81C> /System/Library/PrivateFrameworks/MobileDevice.framework/Versions/A/MobileDevic e
      0x5fd000 -   0x638fe7  com.apple.MPEG2TSDecoder (1.0 - 84) <A0150F28-CB98-7C59-4514-80CE7A58B600> /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
      0x676000 -   0x677ffb  com.apple.Helium (3.0.2 - 234) <723972E4-0FBB-4135-980E-15E8A40C11FF> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Helium
      0x67c000 -   0x67dff7 +com.bensyverson.dvmatte.autopicker (1.0 - 1.0) <EB13CAE4-1A5F-7C8E-F4FA-39C5B0A22636> /Applications/iMovie.app/Contents/Frameworks/DVMAutopick.framework/Versions/A/D VMAutopick
      0x683000 -   0x722ff3  com.apple.MobileMe (11 - 1.0.3) <8E95CD1B-525E-748C-743A-EB0E369B05F6> /Applications/iMovie.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
      0x77f000 -   0x82cff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
      0x871000 -   0x872fff +eOkaoCom.dylib (??? - ???) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
      0x876000 -   0x89bff2 +eOkaoPt.dylib (??? - ???) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
      0x8a2000 -   0x8d6fe7 +eOkaoDt.dylib (??? - ???) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
      0x8dc000 -   0xa43fff +eOkaoFr.dylib (??? - ???) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iMovie.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
      0xa47000 -   0xa6affc  libssl.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <EAD01EC4-D8D7-3462-84E5-A74BEB52B456> /usr/lib/libssl.0.9.7.dylib
      0xa78000 -   0xc05ffb  com.apple.Helium.HeliumRender (2.0.2 - 234) <461D47A8-54FA-BB4F-F3E4-FD80C7ADC894> /Applications/iMovie.app/Contents/Frameworks/Helium.framework/Versions/A/Framew orks/HeliumRender.framework/Versions/A/HeliumRender
      0xf6a000 -   0xf97ff8  GLRendererFloat (??? - ???) <70ADE58D-B399-3279-9774-2D5929D5FCB1> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x2600000 -  0x276dffb  GLEngine (??? - ???) <D73F1031-6DD3-38EB-966B-7A2C9F17F023> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x27d1000 -  0x27d3fff  com.apple.AddressBook.LocalSourceBundle (1.4 - 1090) <61BC69A7-F09E-3CD9-A4CD-FAB46898E9DD> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x27d8000 -  0x27dbffe  com.apple.DirectoryServicesSource (1.4 - 1090) <D9ED3AB9-2F3E-3331-84B5-EDDDBBC1F371> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x47a5000 -  0x489cffb  libGLProgrammability.dylib (??? - ???) <FA509930-D201-372B-B787-18CBD8477D06> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x4c31000 -  0x4fc8fef  com.apple.driver.AppleIntelHD3000GraphicsGLDriver (7.18.18 - 7.1.8) <FA35853F-72D6-3070-A975-D64BB5A2952D> /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/Mac OS/AppleIntelHD3000GraphicsGLDriver
    0x66fc000 -  0x6757fff  com.apple.AddressBook.CardDAVPlugin (10.7.2 - 200) <B5CA94A3-383B-371A-BB8C-F7142EB4FF6B> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
    0xa124000 -  0xa12bff5  com.apple.iLMBAperturePlugin (2.6.3 - 288.3.32) <5E332CFA-0A13-3C06-AF16-EFCC1FDD2038> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin
    0xa132000 -  0xa132fff  com.apple.iLMBAppDefPlugin (2.6.3 - 288.3.32) <2DD0403B-5608-3BE8-B005-27F92AC570F4> /Library/Application Support/iLifeMediaBrowser/*/iLMBAppDefPlugin
    0xa137000 -  0xa140ffc  com.apple.iLMBFinalCutPlugin (2.6.3 - 288.3.32) <46FDDF4E-4165-3923-B57A-21D38462C472> /Library/Application Support/iLifeMediaBrowser/*/iLMBFinalCutPlugin
    0xa146000 -  0xa147fff  com.apple.iLMBFolderPlugin (2.6.3 - 288.3.32) <D85D3CB7-6A10-3F68-96E9-C9CC5A66255D> /Library/Application Support/iLifeMediaBrowser/*/iLMBFolderPlugin
    0xa14c000 -  0xa14ffff  com.apple.iLMBGarageBandPlugin (2.6.3 - 288.3.32) <75D95F77-ED1C-31DD-B4D6-BACA044399C3> /Library/Application Support/iLifeMediaBrowser/*/iLMBGarageBandPlugin
    0xa155000 -  0xa160ff3  com.apple.iLMBiMoviePlugin (2.6.3 - 288.3.32) <583F1438-3B57-3B81-AF28-FB82A82054B5> /Library/Application Support/iLifeMediaBrowser/*/iLMBiMoviePlugin
    0xa16a000 -  0xa17dff7  com.apple.iLMBiPhoto8Plugin (2.6.3 - 288.3.32) <7A31CC42-9752-3B19-B3D2-7435CB7A0D50> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto8Plugin
    0xa185000 -  0xa18dff3  com.apple.iLMBiPhotoPlugin (2.6.3 - 288.3.32) <845CB0C1-6DF5-3D73-B914-ADCD529DE7E1> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin
    0xa194000 -  0xa19cff3  com.apple.iLMBiTunesPlugin (2.6.3 - 288.3.32) <26B31C94-C68B-35D2-976D-53869C819FDD> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
    0xa1a3000 -  0xa1a4ff7  com.apple.iLMBMoviesFolderPlugin (2.6.3 - 288.3.32) <046183A4-8B97-3CF4-929B-F73FE64B6276> /Library/Application Support/iLifeMediaBrowser/*/iLMBMoviesFolderPlugin
    0xa1a9000 -  0xa1abff8  com.apple.iLMBPhotoBooth2Plugin (2.6.3 - 288.3.32) <96393C47-51C0-3A02-B182-A155B9DBD2A6> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBooth2Plugin
    0xa1b0000 -  0xa1b1ff7  com.apple.iLMBPhotoBoothPlugin (2.6.3 - 288.3.32) <B033393A-644E-32AB-85C4-77D1B30C0850> /Library/Application Support/iLifeMediaBrowser/*/iLMBPhotoBoothPlugin
    0xa300000 -  0xa456ff9  com.apple.iLMBAperture31Plugin (2.6.3 - 288.3.32) <F7E40BA5-4DB1-3486-96E8-1106CC60FD48> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperture31Plugin
    0xa49e000 -  0xa642ff5  com.apple.iLMBAperturePlugin2012 (2.6.3 - 288.3.32) <44BB86D6-86F9-3877-9137-CDF1DB927554> /Library/Application Support/iLifeMediaBrowser/*/iLMBAperturePlugin2012
    0xa800000 -  0xa959ff9  com.apple.iLMBiPhoto9Plugin (2.6.3 - 288.3.32) <F8C6F271-ED94-35D9-A5A1-0BF62F6FAC27> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhoto9Plugin
    0xa9a1000 -  0xab46ffd  com.apple.iLMBiPhotoPlugin2012 (2.6.3 - 288.3.32) <01BA4581-21CB-37B1-A083-5B3A5717F2EC> /Library/Application Support/iLifeMediaBrowser/*/iLMBiPhotoPlugin2012
    0xaba1000 -  0xac56fff  com.apple.iTunesAccess (10.6.1 - 10.6.1) <BDD09920-0C89-4FB3-6F06-3C6DB360C8A3> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0xac9b000 -  0xac9cff1  com.apple.textencoding.unicode (2.4 - 2.4) <4E55D4B9-4E67-3FC9-9407-3E99D1D50F15> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xb9c9000 -  0xb9cbfff  com.apple.podcastproducer.ImageDiffer (1.3 - 245) <073C136E-6E98-337D-B8D9-84664E84B9C5> /System/Library/Graphics/Quartz Composer Patches/ImageDifferPatch.plugin/Contents/MacOS/ImageDifferPatch
    0xd0f4000 -  0xd0f8ffb  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <E6982BB2-BEC8-3232-989D-B3D5B26AE0DF> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0xd4eb000 -  0xd4f0fff  com.apple.audio.AppleHDAHALPlugIn (2.2.0 - 2.2.0f3) <BAD1E0E6-10E6-342C-BEB8-B1706F0CE2CF> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0xdcee000 -  0xdcf5ffe  com.apple.AppleGVAHW.component (1.0 - 1) <B7C2F235-194D-36F8-8EAC-9A70B5A29B03> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0xe539000 -  0xe53effb  com.apple.AppleMPEG2Codec (1.0.2 - 220.1) <6DCB845F-B965-3434-9CF7-2623CEF06685> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0xe6cf000 -  0xe6cfffb +cl_kernels (??? - ???) <8A93980A-223E-40A8-AA4B-4B35B057FDC2> cl_kernels
    0xe6e6000 -  0xe6ebfe2  libcldcpuengine.dylib (1.50.69 - compatibility 1.0.0) <864BA467-5F11-3B41-B261-894067B8209E> /System/Library/Frameworks/OpenCL.framework/Libraries/libcldcpuengine.dylib
    0xe6f2000 -  0xe6f4fff  libCoreFSCache.dylib (??? - ???) <5B141DE1-6FC9-3155-833B-23A447A598AB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0xe723000 -  0xe723ffb +cl_kernels (??? - ???) <FC163F90-CF99-4798-9867-5CE5FFCF3721> cl_kernels
    0xe725000 -  0xe7c6ff7  unorm8_bgra.dylib (1.50.69 - compatibility 1.0.0) <7A0427BD-4FB5-3F4E-A7F8-F760AD944283> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_bgra. dylib
    0xe7e0000 -  0xe7e1ff8 +cl_kernels (??? - ???) <7A11BD33-F68D-4905-8740-C580E63C8531> cl_kernels
    0xfb2b000 -  0xfb2cff6 +cl_kernels (??? - ???) <C8EA1808-AEFB-44E1-86ED-EA06B65416AD> cl_kernels
    0x104f6000 - 0x10503ff7 +net.telestream.license (1.0.8.2-GC - 1.0.8.2-GC) <1323CE63-89A3-968F-F3D6-DE830D9C720B> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0x107c4000 - 0x107c5ff0 +cl_kernels (??? - ???) <5A778D81-7A7D-4544-BB1D-42B6804348F3> cl_kernels
    0x11000000 - 0x1138dff3  QuickTimeH264.scalar (??? - ???) <07251F94-A930-38A8-BB7A-5F21BD5FACFF> /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.scalar
    0x1140b000 - 0x115d7ff7  com.apple.audio.codecs.Components (2.2 - 2.2) <6D0FEBA5-0913-3BEF-9551-AFF7D0918845> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x1168c000 - 0x116f2fff  com.apple.AppleProResDecoder (3.0 - 542.6) <6F0062A8-3C7B-31E8-AABC-2DE8839E62AA> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x11723000 - 0x1175cff3  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2330) <8C6BCE18-BB4B-3507-AF89-433E582DB4F0> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x11861000 - 0x11882fe7  com.apple.AppleIntermediateCodec (2.0 - 542.4) <76A60DE0-273C-3939-ADCB-5554402F76E6> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x119b2000 - 0x119d7fff  com.apple.QuartzComposer.ExtraPatches (4.0 - 236.7) <64765331-E282-397D-8DE7-6BB159782CA2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0x11a02000 - 0x11a1aff2  com.apple.applepixletvideo (1.2.30 - 1.2d30) <72A0B4BD-DB7A-3C7F-ADB9-6D059F7ABA2B> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x11bdc000 - 0x11c05fff  com.apple.audio.OpenAL (1.5.1 - 1.5.1) <66AB8BA7-6F8A-3D8C-9DAE-D82AF54139BB> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
    0x11c63000 - 0x11e58ff2 +net.telestream.wmv.import (2.4.1.4 - 2.4.1.4) <72CC344A-FDF2-6ABD-1906-8169D0377295> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x11e8d000 - 0x1204fff2 +net.telestream.wmv.advanced (2.4.1.4 - 2.4.1.4) <669FFFED-A768-B9CB-082D-ED1BCE1A86EB> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x12093000 - 0x120d2ff7  com.apple.AppleVAH264HW.component (3.0 - 3.0) <952FB556-4DBA-35E5-9390-0B944801C63A> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x12195000 - 0x122abff3  com.apple.AppleGVAFramework (2.2.80 - 2.2.80) <D615A7A9-F326-3A95-AAFD-F9AFF8E55517> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0x13652000 - 0x1369effb  com.apple.audio.midi.CoreMIDI (1.8 - 42) <67FE17BA-C921-3D2D-AAC5-B5E9083CE004> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x2716a000 - 0x27195ff3  com.apple.iMovieQCPlugIns (1.1 - 1635) <A89F1B94-B061-1CD1-AEB9-F4F080BE9073> /Applications/iMovie.app/Contents/PlugIns/iMovieQCPlugIns.plugin/Contents/MacOS /iMovieQCPlugIns
    0x29330000 - 0x293cfff7  unorm8_rgba.dylib (1.50.69 - compatibility 1.0.0) <3A06E8EA-0335-348A-BCCB-21C3E94AED31> /System/Library/Frameworks/OpenCL.framework/Libraries/ImageFormats/unorm8_rgba. dylib
    0x3e000000 - 0x3e044fff  com.apple.glut (3.4.9 - GLUT-3.4.9) <28FCEDCC-0E24-3F81-BB29-E09CBCD5E047> /System/Library/Frameworks/GLUT.framework/Versions/A/GLUT
    0x70000000 - 0x70141fff  com.apple.audio.units.Components (1.7.2 - 1.7.2) <44C7D574-F577-30B8-B74D-F2EF8A5A282A> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe71000 - 0x8fea3aa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x90005000 - 0x90006fff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x90049000 - 0x9007cfef  libtidy.A.dylib (??? - ???) <E962D8EC-6B9D-35B7-B586-F07D92302ADD> /usr/lib/libtidy.A.dylib
    0x9007d000 - 0x9032fff7  com.apple.AddressBook.framework (6.1.2 - 1090) <0DCD5DB2-81DC-3103-A1F7-DC6960184C61> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x90330000 - 0x90344ff7  com.apple.CFOpenDirectory (10.7 - 144) <708CEADD-B38F-3D74-BFBA-D54477B8561D> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x90345000 - 0x90459ff3  com.apple.QuickTimeImporters.component (7.7.1 - 2330) <4EFF594F-DC0B-3DAC-9149-15D01478DD99> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x9045a000 - 0x911aaffb  com.apple.QuickTimeComponents.component (7.7.1 - 2330) <91F3ABCA-3BB8-3B01-AA3F-37B3D798755A> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x911ab000 - 0x911afffd  IOSurface (??? - ???) <EDDBEE65-1EB8-33A7-9972-E361A3508234> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x91202000 - 0x91222ff7  com.apple.RemoteViewServices (1.4 - 44.1) <1F831750-1E77-3013-B1A6-0DF528623790> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x91223000 - 0x91275ffb  com.apple.CoreMediaIO (212.0 - 3199.1.1) <BBC14F4C-2748-3583-85E3-EF3A1F249370> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x91285000 - 0x9135dff6  com.apple.QuickLookUIFramework (3.2 - 500.16) <1598FDEB-8F90-3D42-AAA1-CD227F3C16BF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x9135e000 - 0x91429fff  libsystem_c.dylib (763.13.0 - compatibility 1.0.0) <52421B00-79C8-3727-94DE-62F6820B9C31> /usr/lib/system/libsystem_c.dylib
    0x9179f000 - 0x9179ffff  com.apple.Cocoa (6.6 - ???) <30E6ABEE-B390-3C02-8C76-9C62F19FAA83> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x917a0000 - 0x917fcff7  com.apple.coredav (1.0.1 - 164.1) <6AED84F9-51EF-3015-B922-1063473E5F1A> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x91810000 - 0x91818ff3  liblaunch.dylib (392.38.0 - compatibility 1.0.0) <D7F6E875-263A-37B5-B403-53F76710538C> /usr/lib/system/liblaunch.dylib
    0x91819000 - 0x91857fff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <19174EC0-DE0F-38EA-B5F3-7580E84677DD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x91858000 - 0x91872fff  com.apple.Kerberos (1.0 - 1) <D7920A1C-FEC4-3460-8DD0-D02491578CBB> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x918aa000 - 0x9190bffb  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <E617857C-D870-3E2D-BA13-3732DD1BC15E> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9190c000 - 0x919e3ff3  com.apple.avfoundation (2.0 - 180.40) <B906D052-D92D-3D35-BF59-F6D0AE692EC2> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x919e4000 - 0x91a80fef  com.apple.ink.framework (1.4 - 110) <1A3E2916-60C1-3AC1-86BF-202F6567B228> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x91bf7000 - 0x91bfaff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <1211BEEB-31C9-3A5D-9E71-10FC4A541D1E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x91c03000 - 0x91c2dff0  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <5CAA1478-97E0-31EA-8F50-BF09D665DD84> /usr/lib/libpcre.0.dylib
    0x91c2e000 - 0x91c46ff7  libexpat.1.dylib (7.2.0 - compatibility 7.0.0) <C7003CC0-28CA-3E04-9B9E-0A15138ED726> /usr/lib/libexpat.1.dylib
    0x91c47000 - 0x91c49ff9  com.apple.securityhi (4.0 - 1) <BD367302-73C3-32F4-8080-E389AE89E434> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91c4a000 - 0x91c54ff2  com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x91c55000 - 0x91c56fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x91c83000 - 0x91cb1ff7  com.apple.DictionaryServices (1.2.1 - 158.2) <DA16A8B2-F359-345A-BAF7-8E6A5A0741A1> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x91cb2000 - 0x91cb3fff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x91f18000 - 0x91f1bff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x91f1c000 - 0x91f52ff4  com.apple.LDAPFramework (3.2 - 120.2) <39DF72E3-CDAF-33CC-B2DA-67B8891A5CFF> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x92006000 - 0x92007ff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <9EF47F4C-32F6-3379-A3DD-89183D821B48> /usr/lib/system/libunc.dylib
    0x92008000 - 0x9209eff7  com.apple.LaunchServices (480.33 - 480.33) <5A4BF529-391E-3987-940E-287ACE56078A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x920d4000 - 0x920d7ffb  com.apple.help (1.3.2 - 42) <46BC94D1-14C4-3178-9BFB-85470F1ED805> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x920d8000 - 0x920e5fff  com.apple.KerberosHelper (3.0 - 1.0) <0E16B080-3931-3D3E-A786-419C24B44B02> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x920f1000 - 0x922e9ff7  com.apple.CoreData (104.1 - 358.14) <C1730963-F75D-3338-B65F-D50235538B28> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9234e000 - 0x9235bfff  com.apple.HelpData (2.1.2 - 72.2) <330C6B7F-2512-37B7-B2FF-24E1804E9426> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x9235c000 - 0x9235cfff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9235d000 - 0x923f4ff3  com.apple.securityfoundation (5.0 - 55116) <EB53CEF7-4836-39FD-B012-6BC122ED4CE9> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x92401000 - 0x92408ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <47DB9E1B-A7D1-3818-A747-382B2C5D9E1B> /usr/lib/system/libsystem_notify.dylib
    0x92409000 - 0x9242bffe  com.apple.framework.familycontrols (3.0 - 300) <5BCCDDC2-AFAC-3290-AEEF-23B2664CA11F> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9242c000 - 0x92494ff7  libc++.1.dylib (28.1.0 - compatibility 1.0.0) <FE3304C5-C000-3DA0-9E53-0E4CA074B73B> /usr/lib/libc++.1.dylib
    0x92495000 - 0x92499fff  libGIF.dylib (??? - ???) <A6F1ACAE-7B9B-3B3F-A54A-ED4004EA1D85> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x9249a000 - 0x924c3ffe  com.apple.opencl (1.50.69 - 1.50.69) <2601993F-F3B3-3737-91AE-4A5795C52CD5> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x924c4000 - 0x925d5ff7  libJP2.dylib (??? - ???) <845C74F4-1074-3983-945F-EB669538CAA9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x925d8000 - 0x925e0fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x925e1000 - 0x925e7ffb  com.apple.print.framework.Print (7.4 - 247.3) <CB075EEE-FA1F-345C-A1B5-1AB266FC73A1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x925e8000 - 0x925e8ff0  com.apple.ApplicationServices (41 - 41) <45032433-76F6-365A-95CA-641C9427EAA1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x925e9000 - 0x9265dfff  com.apple.CoreSymbolication (2.2 - 73.2) <FA9305CA-FB9B-3646-8C41-FF8DF15AB2C1> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x9265e000 - 0x9267cff7  libsystem_kernel.dylib (1699.26.8 - compatibility 1.0.0) <3705DE40-E00F-3E37-ADB0-D4AE5F9950F5> /usr/lib/system/libsystem_kernel.dylib
    0x9267d000 - 0x9277cffb  com.apple.DiskImagesFramework (10.7.4 - 331.6) <8CC0C204-1069-3CC3-9CE1-3CDF92757E5B> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x9277d000 - 0x92a40fff  com.apple.security (7.0 - 55148.1) <77754898-4FCD-3CA3-9339-F1058C852806> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92a41000 - 0x92a6afff  com.apple.shortcut (2.1 - 2.1) <D56F5E5E-A41F-36D1-ACD5-42EA7910B20F> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x92a6b000 - 0x92abcff9  com.apple.ScalableUserInterface (1.0 - 1) <3E650401-FB58-3704-8A24-E0B2F3914884> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x92abd000 - 0x92ac3ffd  com.apple.CommerceCore (1.0 - 17) <595A67CF-3546-35FD-8D2E-2861CB959379> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x92ac4000 - 0x92ae9fff  com.apple.datadetectors (3.3 - 172.6) <031FE5D2-9ED3-37E6-9DAB-5925485845AD> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
    0x92b0e000 - 0x92b3dff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x92c6d000 - 0x92e96ffb  com.apple.QuartzComposer (5.0 - 236.7) <1504F5A4-FF1A-365E-9E01-30410C561C2C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x92edf000 - 0x9300bff9  com.apple.CFNetwork (520.4.3 - 520.4.3) <E9E315D4-CE22-3715-BED2-BB95AD5E10E8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9300c000 - 0x9304dff9  libcurl.4.dylib (7.0.0 - compatibility 7.0.0) <9FD420FB-7984-3A07-8914-BB19E687D38B> /usr/lib/libcurl.4.dylib
    0x93053000 - 0x93063fff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <8BE2D2EF-9AF0-3960-9845-052CCE04B53A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x93064000 - 0x9306fff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <EDA0F56F-CB2C-30BB-940D-C6A25B73C717> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x93070000 - 0x930c9fff  com.apple.HIServices (1.21 - ???) <5F4D3797-32E2-3709-85F4-4B56515A17D7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x930ca000 - 0x930d1fff  com.apple.agl (3.2.0 - AGL-3.2.0) <ED5A5B8A-0014-3897-951F-628391333256> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x930d2000 - 0x930f4ff8  com.apple.PerformanceAnalysis (1.11 - 11) <453463FF-7C42-3526-8C96-A9971EE07154> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x930f9000 - 0x931d9fff  com.apple.backup.framework (1.3.3 - 1.3.3) <AAE44D28-DA18-326B-BC3D-C37D50DD5DAC> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x93201000 - 0x93b2b59b  com.apple.CoreGraphics (1.600.0 - ???) <62026E0C-E30F-3FF0-B0F6-6A2D270B20BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x93b2c000 - 0x941a7fe5  com.apple.CoreAUC (6.16.11 - 6.16.11) <E52E2D54-138B-3F44-AA2C-309FB876DF6A> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x941a8000 - 0x9428bff7  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <BD913D3B-388D-33AE-AA5E-4810C743C28F> /usr/lib/libcrypto.0.9.8.dylib
    0x9428c000 - 0x944a6ff7  com.apple.imageKit (2.1.2 - 1.0) <0A14D083-5217-3180-A354-A5FDC754E3FC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x944a7000 - 0x944aaffd  libCoreVMClient.dylib (??? - ???) <361CCFAF-8565-383F-915F-0B059C793E42> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x944ab000 - 0x944fcff9  com.apple.QuickLookFramework (3.2 - 500.16) <725FAE01-1597-38C7-841D-D9D83358921E> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x944fd000 - 0x945bdffb  com.apple.ColorSync (4.7.4 - 4.7.4) <0A68AF35-15DF-3A0A-9B17-70CE2A106A6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x94754000 - 0x94a9aff3  com.apple.HIToolbox (1.9 - ???) <409E6397-0DCB-3431-9CCC-368317C62545> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x94a9b000 - 0x94ab8ff3  com.apple.openscripting (1.3.3 - ???) <33713C0B-B7D5-37AA-87DB-2727FDCC8007> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x94aba000 - 0x94ba2fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <1841196F-68B5-309F-8ED1-6714B1DFEC83> /usr/lib/libxml2.2.dylib
    0x94ba9000 - 0x94e56ff3  com.apple.JavaScriptCore (7534.56 - 7534.56.6) <94C4DC32-FE6B-3D5C-93B5-75753F38A0C0> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x94e57000 - 0x94fb9fff  com.apple.QTKit (7.7.1 - 2330) <DD58823D-D3E7-31CB-9DF9-ACB981F5A744> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x94fba000 - 0x952c4ff3  com.apple.Foundation (6.7.2 - 833.25) <4C52ED74-A1FD-3087-A2E1-035AB3CF9610> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x952c5000 - 0x95322ffb  com.apple.htmlrendering (76 - 1.1.4) <792F1D51-3A88-3430-8A32-F252FAAE0D13> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x95323000 - 0x95387fff  com.apple.framework.IOKit (2.0 - ???) <88D60E59-430D-35B8-B1E9-F5138301AEF9> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x95388000 - 0x9538fffd  com.apple.NetFS (4.0 - 4.0) <144149F1-057D-3A6F-974B-357461F7E438> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x95592000 - 0x955f7ff7  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <4B4B32D2-4F66-3B0D-BD61-FA8429FF8507> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x955f8000 - 0x95638ff7  com.apple.NavigationServices (3.7 - 193) <16A8BCC8-7343-3A90-88B3-AAA334DF615F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x95639000 - 0x9569bffb  com.apple.datadetectorscore (3.0 - 179.4) <3A418498-C189-37A1-9B86-F0ECB33AD91C> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x9569c000 - 0x956b4fff  com.apple.frameworks.preferencepanes (15.0 - 15.0) <A8CE15CF-2539-318A-910C-8789D45FFD69> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x956b5000 - 0x95732ffe  com.apple.PDFKit (2.6.3 - 2.6.3) <780A5EE1-48CB-3B80-BBDF-1081512BA0DC> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x95733000 - 0x95c3ffff  com.apple.RawCamera.bundle (3.13.0 - 627) <3859CCFE-E5FB-3EA6-7D4D-D32801FC31E4> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x95c40000 - 0x95c82ff7  com.apple.CoreMedia (1.0 - 705.78) <D88AC852-8844-3B73-81C8-DF605F00AB40> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x95c83000 - 0x95c88ffd  libGFXShared.dylib (??? - ???) <1CA9B41B-2C61-38F8-ABAC-1D5511478F5C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x95c89000 - 0x95c97ff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x95c98000 - 0x95cbdff9  libJPEG.dylib (??? - ???) <743578F6-8C0C-39CC-9F15-3A01E1616EAE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x95cbe000 - 0x95cebff9  com.apple.securityinterface (5.0 - 55022.4) <B59D9B2A-7FB8-32EC-B8D9-6D4DE76508F7> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x95cec000 - 0x95cf1ffb  com.apple.phonenumbers (1.0 - 47) <84484814-C9BE-33E7-A3DF-4DD0E970B902> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x95d34000 - 0x95d70ffa  libGLImage.dylib (??? - ???) <504E7865-571E-38B4-A84A-D7B513AC84F5> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x95d71000 - 0x95d75ff7  com.apple.OpenDirectory (10.7 - 146) <4986A382-8FEF-3392-8CE9-CF6A5EE4E365> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x95d76000 - 0x95d84fff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x95d85000 - 0x95d8cff9  libsystem_dnssd.dylib (??? - ???) <D3A766FC-C409-3A57-ADE4-94B7688E1C7E> /usr/lib/system/libsystem_dnssd.dylib
    0x95d8d000 - 0x95d9bfff  com.apple.opengl (1.7.7 - 1.7.7) <2D362F15-5EA6-37B6-9BCB-58F2C599ACDA> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x95d9c000 - 0x95deeff3  com.apple.ImageCaptureCore (3.0.3 - 3.0.3) <9C6A4134-0D1D-323F-BD07-1D88D258A7B4> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x95def000 - 0x95ee6ff3  com.apple.PubSub (1.0.5 - 65.28) <385D984B-984E-3A93-A601-ECDBCAE545E2> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x9602e000 - 0x960adff7  com.apple.iLifeMediaBrowser (2.6.3 - 502.3.12) <2A8A782C-0799-3CB9-A1AE-13743B7EFECF> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x960ae000 - 0x960f2ff3  com.apple.framework.CoreWLAN (2.1.2 - 212.2) <677D9374-3EC0-3F4C-9552-3DBFD5161BF3> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x960f3000 - 0x96169fff  com.apple.Metadata (10.7.0 - 627.32) <650EE880-1488-3DC6-963B-F3D6E043FFDC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x9616a000 - 0x96279fff  com.apple.DesktopServices (1.6.3 - 1.6.3) <18CAAA9E-7065-3FF7-ACFE-CDB60E5426A2> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x962c7000 - 0x962caff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x962cb000 - 0x962d6fff  libkxld.dylib (??? - ???) <D8ED88D0-7153-3514-9927-AF15A12261A5> /usr/lib/system/libkxld.dylib
    0x962d7000 - 0x962e1ff0  com.apple.DirectoryService.Framework (10.7 - 146) <59061A4B-D743-3A34-B142-7BE2472BBC2D> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x962e2000 - 0x962fffff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
    0x96300000 - 0x9630efff  libdispatch.dylib (187.9.0 - compatibility 1.0.0) <2F918480-12C8-3F22-9B1A-9B2D76F6F4F5> /usr/lib/system/libdispatch.dylib
    0x9630f000 - 0x963b3fff  com.apple.QD (3.40 - ???) <3881BEC6-0908-3073-BA44-346356E1CDF9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x963f5000 - 0x96402fff  libGL.dylib (??? - ???) <30E6DED6-0213-3A3B-B2B3-310E33301CCB> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x96403000 - 0x9641aff8  com.apple.CoreMediaAuthoring (2.0 - 891) <69D569FD-670C-3BD0-94BF-7A8954AA2953> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x9641b000 - 0x964a5ffb  com.apple.SearchKit (1.4.0 - 1.4.0) <CF074082-64AB-3A1F-831E-582DF1667827> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x964a6000 - 0x9667dfe7  com.apple.CoreFoundation (6.7.2 - 635.21) <4D1D2BAF-1332-32DF-A81B-7E79D4F0A6CB> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x9667e000 - 0x970affff  com.apple.WebCore (7534.56 - 7534.56.5) <568036DA-63F6-33E5-B25D-D66DF1B1C2E7> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x970c1000 - 0x97130fff  com.apple.Heimdal (2.2 - 2.0) <2E1B8779-36D4-3C62-A67E-0034D77D7707> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x97131000 - 0x971e7ff3  com.apple.QuickTimeMPEG4.component (7.7.1 - 2330) <FF7D591B-9C17-3743-98F1-86146EC5CB86> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x971e8000 - 0x97212ff1  com.apple.CoreServicesInternal (113.17 - 113.17) <41979516-2F26-3707-A6CA-7A95A1B0D963> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x97213000 - 0x9721cfff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x9721d000 - 0x9726fff7  libFontRegistry.dylib (??? - ???) <96E9602C-DFD3-3021-8090-60228CC80D26> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x9728a000 - 0x972beff8  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <567E922C-E64F-321B-9A47-6B18BF481625> /usr/lib/libssl.0.9.8.dylib
    0x972bf000 - 0x972cdff7  com.apple.AppleFSCompression (37 - 1.0) <4C2F91BC-3705-340B-B979-CF8744EC2BE6> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x972ce000 - 0x972d9ffc  com.apple.NetAuth (1.0 - 3.0) <E4844688-90B6-3834-9C36-395797CEBC69> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x972da000 - 0x9742cfff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <E369AC9E-F548-3DF6-B320-9D09E486070E> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9742d000 - 0x97436ffb  com.apple.aps.framework (2.1 - 2.1) <498C8125-A32E-3554-B4B1-8F416623D45C> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0x97437000 - 0x9743affc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x9743b000 - 0x9749dff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x9749e000 - 0x9755bff3  ColorSyncDeprecated.dylib (4.6.0 - compatibility 1.0.0) <726898F5-E718-3F27-B415-D6FDCDE09174> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x97577000 - 0x975c6ffb  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <7FF10781-5418-37BB-A6B3-1606DA82CBFF> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x975c7000 - 0x975c7fff  libdnsinfo.dylib (395.11.0 - compatibility 1.0.0) <7EFAD88C-AFBC-3D48-BE14-60B8EACC68D7> /usr/lib/system/libdnsinfo.dylib
    0x975c8000 - 0x979caff6  libLAPACK.dylib (??? - ???) <6FCC72E8-CCA1-3AFC-B2B4-CC47BC1F27D1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x979cb000 - 0x97a43ff8  com.apple.CorePDF (3.1 - 3.1) <0074267B-F74A-30FC-8508-A14C821F0771> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x97a53000 - 0x97a63fff  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <D6F728DA-990A-32A3-86FA-4A3F4D88E309> /usr/lib/libsasl2.2.dylib
    0x97a64000 - 0x97b54ff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x97b55000 - 0x97b5aff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <6DCCA207-8F4D-343A-B77D-C4FB905DADC4> /usr/lib/system/libmacho.dylib
    0x97b5b000 - 0x97b63ff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D

Maybe you are looking for

  • FB70 Customer manual invoice not generating

    Dear Sap Gurus Iam facing problem with Customer Invoice i.e, FB70 T.code, while executing this transaction with all monditory inputs it showing one error    "A1Taxcode is not in TAXINN procedure" I have checked FTXP t.code there taxcode assigned with

  • Linking 2 different rdms

    The need is to report (using Bus Obs) from an Oracle RDBMS and SQL Server linking various tables from both databases. How can this be done?

  • Unexpected end-of-file was encountered

    I am unable to open a large (184.1 MB) multi-layer image created in Photoshop CS6.  I have looked through a few discussion forums and think this issue happened because I am working from an external hard drive.  I have several backup copies of the ima

  • Logic Express 7.2.3 & Rewire

    Hi, I´m using Logic Express 7.2.3 and when I launch Reason 2, it doesn´t gets hooked thru Rewire. If I use Logic 7.0 it does work thru Rewire...... Can anyone help me please? Power PC G4/ MacBook Pro   Mac OS X (10.4.8)  

  • Can I use "accesshw.zip" to make the in port and out port VIs work (for NT) for Labview 6.0.2.

    I am trying to write to the parallel port using labview 6.0.2 (vi attatched). It does not seem to be working with NT though it does with Win 98. The information about the software (accesshw.zip)mentions versions 4.x and 5.x only. Please refer to the