Matrix Bound

HI Experts,
The following code i used for bind the query result to matrix. It bind sucessfully and  when i click Add button i am getting the sucsessful message .But when i close the programme and open the screen using screen painter and check the records then the records was not inserted successfully And also check rerords using query also not came.
What is the problem . PLease guide me. I did any mistake in the following code?
Case "TBL_MREADING_"
oForm = SBO_Application.Forms.Item("TBL_MREADING_")
Dim MReading As SAPbouiCOM.DataTable
oForm.DataSources.DataTables.Add("MReading")
oForm.DataSources.DataTables.Item("MReading").Clear()
Dim sSQL As String = "SELECT CardCode as code,CardName as name,U_VOLTAGE as voltage FROM OCRD where GroupCode!= 100 order by GroupCode"
oForm.DataSources.DataTables.Item("MReading").ExecuteQuery(sSQL)
oItem = oForm.Items.Item("MATRIX")
oMatrix = oItem.Specific
oColumns = oMatrix.Columns
'' oMatrix.Columns.Item("V_0").DataBind.Bind("drSlction", "DocEntry")
oMatrix.Columns.Item("P_2").DataBind.Bind("MReading", "name")
'' oMatrix.Columns.Item("V_2").DataBind.Bind("drSlction", "LineNum")
oMatrix.Columns.Item("P_4").DataBind.Bind("MReading", "Code")
oMatrix.Columns.Item("P_5").DataBind.Bind("MReading", "voltage")
' oMatrix.Columns.Item("P_5").DataBind.SetBound(True,"MReading", "voltage")
oMatrix.LoadFromDataSource()
""" For LineId Updation
Dim  x As Integer = 1
                                    While x <= oMatrix.RowCount
                                        oMatrix.Columns.Item("V_0").Cells.Item(x).Specific.Value = x
                                        x = x + 1
                                    End While
With Best Records,
M.Thippa Reddy.

See answer to your parallel posting...

Similar Messages

  • Loading Matrix Bound to UDO with Large Data Set

    Hello Experts,
    I have been looking on the forums for the best method out there to effectively load a Matrix that is bound to a User Defined Object (UDO).  In short, I will explain to you what I would like to do.  I have a form that has a matrix on it bound to a User Defined Object.  This matrix takes data stored in other UDO forms/tables and processes it to extract new information. 
    Unfortunately, the resulting dataset is quite large (up to 1000 rows).  I realize if this were just a "report" I could easily do this with a Grid.  I also realize if this were just a Matrix bound to a User Defined Table, I could bind it to a DataTable and perform the query that way.  However, since this is a Matrix bound to a DBDataSource (as I would like to have SAP handle any updates/finds) I believe my only options are to try and use a DBDataSource.Query method and try to work with Conditions. 
    The DBDataSource.Query method has not proven to be effective due to the complexity of the query and the multiple tables involved.  I have read from others on the forum that I could just load the matrix by temporarily databinding the matrix to a DataTable and then, after it is loaded, switch the databinding back to the DBDataSource but this does not work as it comes back with an error informing me (rightly so) that there are already rows in the matrix.
    One final option would be to use the User Interface (UI) to cycle through and update each cell of the matrix with the results of a recordset, but, as I said, this can be a large dataset and that could take hours (literally).
    In short, I was wondering if anyone out there can advise me on the most effective options I have.  Is there  a way to quickly load a matrix bound to a DBDataSource?  Is there someway I can load the matrix by binding it to a DataTable and then quickly move this information over to the DBDataSource (I already attempted this and the method I used was as slow as using the UI to update the Matrix)?  Are there effective ways to use the DBDataSource.Query method that I do not know much about (and cannot find many examples of how this functionality is truly used)?  Should I abandon the DBDataSource (though I believe this is the SAP preferred method) and, if so, is there another technique to appropriately update the database other than using DBDataSource?  Others have mentioned handling the updates to the database themselves but I am not sure what this means (maybe it means using SQL UPDATE/INSERT?).  Is there a ways to Flush matrix information to a DBDataSource if the DBDataSource was not used in the loading and is not currently bound to the matrix? 
    Sorry for the numerous amount of questions but thanks for the advise.

            Dim oForm As SAPbouiCOM.Form
            Dim creationPackage As SAPbouiCOM.FormCreationParams
            creationPackage = sbo_application.CreateObject(SAPbouiCOM.BoCreatableObjectType.cot_FormCreationParams)
            creationPackage.UniqueID = "MyFormID"
            creationPackage.FormType = "MyFormID"
            creationPackage.ObjectType = "UDO_TEST"
            creationPackage.BorderStyle = SAPbouiCOM.BoFormBorderStyle.fbs_Fixed
            oForm = sbo_application.Forms.AddEx(creationPackage)
            oForm.Visible = True
            oForm.Width = 300
            oForm.Height = 400
            Dim oItem As SAPbouiCOM.Item
            oItem = oForm.Items.Add("1", BoFormItemTypes.it_BUTTON)
            oItem.Top = 336
            oItem.Left = 5
            oItem = oForm.Items.Add("2", BoFormItemTypes.it_BUTTON)
            oItem.Top = 336
            oItem.Left = 80
    Now put and Edit box to DocEntry
            oItem = oForm.Items.Add("3", SAPbouiCOM.BoFormItemTypes.it_EDIT)
            oItem.Top = 5
            oItem.Left = 5
            oItem.Width = 100
            Dim oEditText As SAPbouiCOM.EditText = oItem.Specific
            oForm.DataSources.DataTables.Add("oMatrixDT")
            oItem = oForm.Items.Add("oMtrx1", SAPbouiCOM.BoFormItemTypes.it_MATRIX)
            oItem.Top = 20
            oItem.Left = 20
            oItem.Width = oForm.Width - 30
            oItem.Height = oForm.Height - 100
            Dim oMatrix As SAPbouiCOM.Matrix = oItem.Specific
            Dim oColumn As SAPbouiCOM.Column = oMatrix.Columns.Add("#", SAPbouiCOM.BoFormItemTypes.it_EDIT)
            oColumn.TitleObject.Caption = "#"
            oColumn = oMatrix.Columns.Add("oClmn0", SAPbouiCOM.BoFormItemTypes.it_LINKED_BUTTON)
            oColumn.TitleObject.Caption = "BP Code"
            Dim oLinkedButton As SAPbouiCOM.LinkedButton = oColumn.ExtendedObject
            oLinkedButton.LinkedObject = SAPbouiCOM.BoLinkedObject.lf_BusinessPartner
            ' Now bind Columns to UDO Objects in Add Mode
            oEditText.DataBind.SetBound(True, "@UDO_TEST", "DocEntry")
            oMatrix.Columns.Item("oClmn0").DataBind.SetBound(True, "@UDO_TEST1", "U_CARDCODE")
            oForm.DataBrowser.BrowseBy = "3"

  • Save data from a bounded matrix

    Hi!
    I have a matrix bounded to a UDO table. This matrix is filtered by a Condition object. Which is the best way to update records to the database?
    Best regards,
    Jose

    I had these problems too but didn't find another way yet.
    Maybe any user with more experience can answer here.
    The way i did it was this:
    I queried the information from the UDO with a RecordSet object. Then I went throug it, line by line, and filled the UDSs that were bound to the colums of my matrix and added the line to the matrix. In one hidden column I wrote the uniq key to be able to update this line in the UDO after it had been changed.
    I think that this is not the best solution but it worked for me, very slow, but it worked.

  • Problem AddRow in Matrix

    Execute the following code to add rows in a matrix.
    for (int RecIndex = 0; RecIndex <= RecCount - 1; RecIndex++)
                            oMatrix.AddRow(1, oMatrix.RowCount);
                            string coluna = rec.Fields.Item(0).Value.ToString();
                            string descricao = rec.Fields.Item(1).Value.ToString();
                            ((SAPbouiCOM.EditText)oMatrix.Columns.Item("V_0").Cells.Item(oMatrix.RowCount).Specific).Value = coluna;
                            ((SAPbouiCOM.EditText)oMatrix.Columns.Item("V_1").Cells.Item(oMatrix.RowCount).Specific).Value = descricao;
                            rec.MoveNext();
    The problem is that the values ​​are added to the matrix problems. Sometimes it adds value in a row, and sometimes the line with preeche blank.
    In other words, is created in the amount of matrix rows according to the For, but many line are not satisfied with the values ​​passed.

    Hi Harley,
    What type of datasource is your matrix bound to (ie DBDataSource, UserDataSource or DataTable)? It's normally better to write your data to the datasource rather than the matrix cells (the only exception being system forms).
    Kind Regards,
    Owen

  • Matrix with DataTable - GetLineData and SetLineData B1 8.8 Bug

    Hi experts,
    I have a matrix bounded to a DataTable and I succefully load the matrix with:
    DataTable dt = form.DataSources.DataTables.Item("matDT");
    dt.ExecuteQuery(sql);
    Matrix mat = form.Items.Item("mat").Specific as Matrix;
    mat.LoadFromDataSource();
    mat.AutoResizeColumns();
    Now in Event et_VALIDATE(after), i would like to change some not editable column of the matrix
    [B1Listener(BoEventTypes.et_VALIDATE, false)]
    public virtual void OnAfterValidate(ItemEvent pVal) {
              if(pVal.ItemUID!="mat")
                    return;
              Form form = B1Connections.theAppl.Forms.Item(pVal.FormUID);
              Matrix mat = form.Items.Item("mat").Specific as Matrix;
              DataTable dt = form.DataSources.DataTables.Item("matDT");
              //Pont 1)
              mat.GetLineData(pVal.Row)     
              //Point 2
              //Change Values
              int minutes = dt.GetValue("U_Minutes", pVal.Row-1);
              dt.SetValue("U_Hours",pVal.Row-1, (double) minutes / 60);
              //Point 3
              mat.SetLineData(pVal.Row);
    Now I will expain the problem:
    For simplicity assume the matrix has 2 rows after load. After the user edit a column, validate event fires and:
    -) After the call of GetLineData  in Point 1) I verified that all DataTable Rows are identical (derived from the first row in the matrix)
    -) If I substitute GetLineData   in point 1) with FlushToDataSource, DataTable became corret but after the call of SetLineData in point 3) all the matrix rows are identical (derived from the first DataTable row).
    -) If I also substitute SetLineData   in point 3) with LoadFromDataSource, all works fine but i loose focus and performances
    Is it a B1 8.8 Bug?

    Yes, but sap said that my  customer is not officially approved.
    the following is the original text.
    Please note that SAP Business One Release 8.8 has only been released for
    Ramp-Up. Because of this, only approved projects for productive usage a
    re fully supported by SAP Business One Support. However feedback on prod
    uct quality or bugs reporting from all partners - even from partners who
    are not part of the Ramp-Up - is welcome and highly appreciated.
    According to the information we have, your customer is not officially ap
    proved for Ramp-Up yet. Due to the difficulty to estimate the number of
    messages that will be submitted, SAP cannot commit itself to solving all
    issues reported about projects not officially approved for Ramp-Up, nor
    guarantee any response times.
    Kind regards,
    SAP Business One Support

  • Delete row matrix in UDO Form

    Hi All,
    I've created a simple form based on an registered UDO (2 tables: Document and Document Lines).
    This form contains a matrix bounded to the lines of my UDO document.
    Everything works fine except the Delete button that should delete a document line in the matrix: it never
    deletes the lines from database, although it deletes them from the form. But if I select again the same
    record, the deleted line is show again!
    My code is very simple:
    void btRemove_ClickEvent()
         // Remove selected row from Matrix
         SAPbouiCOM.Matrix oMatrix = (SAPbouiCOM.Matrix) oForm.Items.Item("mxMatrix").Specific;
         int iPos = oMatrix.GetNextSelectedRow( 0, SAPbouiCOM.BoOrderType.ot_RowOrder );
         if( iPos > -1 )
              oMatrix.DeleteRow( iPos );
              oMatrix.FlushToDataSource();
              oForm.Update();
    What is the problem with my code? Is it missing something?
    Regards,
    Manuel Dias

    Thanks Gianluigi,
    By the way, I want to delete the Matrix line with DI API has you suggest, so I was thinking in using this code:
         SAPbobsCOM.UserTables pUT = Main.oSBOCompany.UserTables;
         SAPbobsCOM.UserTable dt = pUT.Item("@PDWC_LINE");
         bool xx = dt.GetByKey( sKey );
         int res = dt.Remove();
    The problem is that UserTable object, has a GetByKey() method that works only for user tables whose PK
    contains only one column (GetByKey requires only a single value).
    Since my table is created in SBO with the UDO Document Lines template, the PK is composed automatically
    by Code and LineId columns, so the GetByKey() method does not allow me to select a specific record in
    order to delete it next.
    Do you know any workaround for this? Of course I could user the Recordsed object and write SQL to
    delete my table line, but I think it must be an esay way to do this....
    Regards,
    Manuel Dias

  • Problem to update UDO-recordsets using a matrix with DBDataSource

    Hello,
    I've got a problem with updating recordsets in an UDO-Table using DBDataSource.SetValue().
    Special szenario: I use a matrix bounded with DBDataSources. Adding new records and loading them via DBDataSource.Query() with conditions works fine. The UDO object type is "Document" without lines.
    In the simple way now I load just one record and after this I was trying to set an "message" to an simple, editable edittext-column via calling:
    oDBDataSource.SetValue("U_Message", 0, "Hello world");
    oMatrix.LoadFromDataSource();
    Now it's visible in the matrix.
    But when I call update via clicking the update-button, B1 do say, everything was ok (green status-message). Reloading this recordset you can see: it was not stored in the database
    Even not after:
    oMatrix.FlushToDataSource();
    As a workaround I do write the "message" via using Cell.Specific.
    Can anybody help me?
    I'am using SBO 2005 A SP 01 PL 39
    Edited by: Christian Bührig on Mar 18, 2008 4:48 PM

    look at
    New Row in Matrix is a Duplicate and Cannot update Object with new Row
    the next way is do it with recordset and directly insert to table.
    hope it helps
    Petr

  • Trying to Bind Matrix to DBDatasource

    Hi,
    I cannot seem to get my matrix bound to a system datasource (POR1)
    The Error I get is "Data Source - Not  A User Datasource"
    This occurs when trying to bind the first column.
    (  colItem.DataBind.SetBound(True, "POR1", "ItemCode" )
    I am trying to do this in a new tab in the purchase order form (142)
    odbs is a variable with class scope.
    Please help :
            odbs = oform.DataSources.DBDataSources.Add("POR1")
            oNewItem = oform.Items.Add("Lmat", SAPbouiCOM.BoFormItemTypes.it_MATRIX)
            oItem = oform.Items.Item("38")
            oNewItem.Left = oitem.Left
            oNewItem.Width = oItem.Width
            oNewItem.Top = oitem.Top
            oNewItem.Height = oitem.Height
            oNewItem.AffectsFormMode = False
            oNewItem.FromPane = 15
            oNewItem.ToPane = 15
            omat = oNewItem.Specific
            Dim colItem As SAPbouiCOM.Column
            Dim colItemD As SAPbouiCOM.Column
            Dim colQty As SAPbouiCOM.Column
            Dim colQtyO As SAPbouiCOM.Column
            Dim colSO As SAPbouiCOM.Column
            Dim l As SAPbouiCOM.LinkedButton
            Dim l2 As SAPbouiCOM.LinkedButton
            colItem = omat.Columns.Add("colItem", SAPbouiCOM.BoFormItemTypes.it_LINKED_BUTTON)
            colItem.Width = "125"
            colItem.TitleObject.Caption = "Item"
            colItem.DataBind.SetBound(True, "POR1", "ItemCode")
            colItem.Visible = True
            l = colItem.ExtendedObject
            l.LinkedObject = SAPbouiCOM.BoLinkedObject.lf_Items
            colItemD = omat.Columns.Add("colItemTxt", SAPbouiCOM.BoFormItemTypes.it_EDIT)
            colItemD.Width = "225"
            colItemD.TitleObject.Caption = "Item Name"
            colItemD.DataBind.SetBound(True, "POR1", "Dscription")
            colItemD.Visible = True
            colQty = omat.Columns.Add("colQty", SAPbouiCOM.BoFormItemTypes.it_EDIT)
            colQty.Width = "75"
            colQty.TitleObject.Caption = "Qty"
            colQty.DataBind.SetBound(True, "POR1", "Quantity")
            colQty.Visible = True
            colQtyO = omat.Columns.Add("colQtyO", SAPbouiCOM.BoFormItemTypes.it_EDIT)
            colQtyO.Width = "75"
            colQtyO.TitleObject.Caption = "Qty"
            colQtyO.DataBind.SetBound(True, "POR1", "OpenQty")
            colQtyO.Visible = True
            colSO = omat.Columns.Add("colSO", SAPbouiCOM.BoFormItemTypes.it_LINKED_BUTTON)
            colSO.Width = "125"
            colSO.TitleObject.Caption = "Sales Order"
            colSO.DataBind.SetBound(True, "POR1", "U_SONumber")
            colSO.Visible = True
            l2 = colSO.ExtendedObject
            l2.LinkedObject = SAPbouiCOM.BoLinkedObject.lf_Order

    Nick,
    Yes, you can add link button in grid column. There are 4 type of GridColumn, CheckBoxColumn, ComboBoxColumn, EditTextColumn, PictureColumn objects.  And you can set the linkobjecttype for EditTextColumn
    Please refer to BoGridColumnType for more info.
    sample code:
    oItem = oItems.Add("My_Grid", SAPbouiCOM.BoFormItemTypes.it_GRID)
                oItem.Top = 30
                oItem.Left = 10
                oItem.Width = 200
                oItem.Height = 100
                Dim oGrid As SAPbouiCOM.Grid = oItem.Specific
                Dim oDataTable = oForm.DataSources.DataTables.Add("POLines")
                oGrid.DataTable = oDataTable
                oDataTable.ExecuteQuery("SELECT ItemCode AS 'Item Code', Dscription AS 'Item Name', Quantity FROM POR1 WHERE DocEntry = 1")
                Dim colItemCode As SAPbouiCOM.GridColumn = oGrid.Columns.Item(0)
                colItemCode.Type = SAPbouiCOM.BoGridColumnType.gct_EditText           
                Dim editColItemCode As SAPbouiCOM.EditTextColumn = CType(colItemCode, SAPbouiCOM.EditTextColumn)
                editColItemCode.LinkedObjectType = 4
    Regards, Yatsea

  • QT keeps randomly quitting

    Quicktime has just today started randomly quitting on me. Doesn't matter what video is playing. If anyone can offer any suggestions.
    Here is the error report:
    Date/Time: 2009-06-29 18:04:07.832 -0400
    OS Version: 10.4.11 (Build 8S165)
    Report Version: 4
    Command: QuickTime Player
    Path: /Applications/QuickTime Player.app/Contents/MacOS/QuickTime Player
    Parent: WindowServer [95]
    Version: 7.6.2 (7.6.2)
    Build Version: 3
    Project Name: QuickTimePlayer
    Source Version: 5180000
    PID: 377
    Thread: 5
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0xf0387a94
    Thread 0:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de9ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de2b0 CFRunLoopRunSpecific + 268
    4 com.apple.HIToolbox 0x932beb20 RunCurrentEventLoopInMode + 264
    5 com.apple.HIToolbox 0x932be1b4 ReceiveNextEventCommon + 380
    6 com.apple.HIToolbox 0x932be020 BlockUntilNextEventMatchingListInMode + 96
    7 com.apple.AppKit 0x937e9734 _DPSNextEvent + 384
    8 com.apple.AppKit 0x937e93f8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    9 com.apple.quicktimeplayer 0x00004e38 -[QTPApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 56
    10 com.apple.AppKit 0x937e593c -[NSApplication run] + 472
    11 com.apple.AppKit 0x938d6458 NSApplicationMain + 452
    12 com.apple.quicktimeplayer 0x000564ec _start + 760
    13 com.apple.quicktimeplayer 0x000561f0 start + 48
    Thread 1:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.unsanity.ape 0xc000a954 _apeinternal + 37048 (icplusplus.c:27)
    3 com.unsanity.ape 0xc0001328 _apeagent + 64 (icplusplus.c:27)
    4 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x90053f88 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900707e8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf73c4 TSWaitOnSemaphoreCommon + 176
    3 ...ickTimeComponents.component 0x998f0fc4 ReadSchedulerThreadEntryPoint + 5300
    4 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x90053f88 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900707e8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf73c4 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90c01e70 AIOFileThread(void*) + 520
    4 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de9ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de2b0 CFRunLoopRunSpecific + 268
    4 com.apple.audio.CoreAudio 0x91458524 HALRunLoop::OwnThread(void*) + 264
    5 com.apple.audio.CoreAudio 0x914582c4 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 5 Crashed:
    0 com.apple.QuartzCore 0x94448fc4 fegl_updatekernel + 4
    1 com.apple.QuartzCore 0x9437fd00 fegl_loadkernel + 608
    2 com.apple.QuartzCore 0x944653ac fetree_render_apply1 + 76
    3 com.apple.QuartzCore 0x943e3f88 fetree_renderapply + 1184
    4 com.apple.QuartzCore 0x943e37a4 fetreerender + 560
    5 com.apple.QuartzCore 0x94452d10 fetree_render_image + 464
    6 com.apple.QuartzCore 0x943e30e0 fetree_renderimage + 304
    7 com.apple.QuartzCore 0x943e2f8c feimage_render + 176
    8 com.apple.QuartzCore 0x943e2ec8 feimagerender + 164
    9 com.apple.QuartzCore 0x943e2e14 -[CIOpenGLContextImpl renderAccel:matrix:bounds:] + 80
    10 com.apple.QuartzCore 0x943e1fac -[CIOpenGLContextImpl render:] + 204
    11 com.apple.QuartzCore 0x943f230c -[CIContext drawImage:inRect:fromRect:] + 512
    12 com.apple.QTKit 0x95f718ec -[QTSurfaceRendererAcceleratedTile render] + 1328
    13 com.apple.QTKit 0x95f6a4cc -[QTSurfaceRenderer scheduledDisplay] + 548
    14 com.apple.QTKit 0x95f6a5bc QTSurfaceRendererScheduledDisplayCallback + 160
    15 com.apple.QTKit 0x95f67a48 _QTHostTimeRunLoopSourceInfoPerform + 124
    16 com.apple.CoreFoundation 0x907ec568 __CFRunLoopDoSource1 + 152
    17 com.apple.CoreFoundation 0x907dec80 __CFRunLoopRun + 1556
    18 com.apple.CoreFoundation 0x907de2b0 CFRunLoopRunSpecific + 268
    19 com.apple.CoreFoundation 0x907ed710 CFRunLoopRun + 52
    20 com.apple.QTKit 0x95f6a658 QTSurfaceRendererScheduledDisplayThread + 100
    21 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.CoreFoundation 0x907de9ac __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907de2b0 CFRunLoopRunSpecific + 268
    4 com.apple.CoreFoundation 0x907ed710 CFRunLoopRun + 52
    5 com.apple.QTKit 0x95f62e6c QTVisualContextImageProviderWorkLoop + 100
    6 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9000af48 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000ae9c mach_msg + 60
    2 com.apple.opengl 0x9371cd60 glcDebugListener + 252
    3 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x9002c0b8 semaphorewaittrap + 8
    1 QuickTimeH264.altivec 0x9a3fd108 JVTLibDecoDispose + 847208
    2 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 9:
    0 libSystem.B.dylib 0x90053f88 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900707e8 pthreadcond_timedwait_relativenp + 556
    2 com.apple.audio.CoreAudio 0x914696ac CAGuard::WaitFor(unsigned long long) + 204
    3 com.apple.audio.CoreAudio 0x914695bc CAGuard::WaitUntil(unsigned long long) + 304
    4 com.apple.audio.CoreAudio 0x91467800 HP_IOThread::WorkLoop() + 852
    5 com.apple.audio.CoreAudio 0x91467498 HPIOThread::ThreadEntry(HPIOThread*) + 16
    6 com.apple.audio.CoreAudio 0x914582c4 CAPThread::Entry(CAPThread*) + 96
    7 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 10:
    0 libSystem.B.dylib 0x9002c0b8 semaphorewaittrap + 8
    1 ...ickTimeComponents.component 0x99e18274 QTThreadWaitSignal + 100
    2 ...ickTimeComponents.component 0x99976990 audioprepThreadEntry + 96
    3 ...ickTimeComponents.component 0x99e17f34 start_thread + 84
    4 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 11:
    0 libSystem.B.dylib 0x90053f88 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900707e8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf73c4 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90bff364 TimerThread + 60
    4 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 12:
    0 libSystem.B.dylib 0x90053f88 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900707e8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf73c4 TSWaitOnSemaphoreCommon + 176
    3 ...ple.CoreServices.CarbonCore 0x90c02e98 DeferredTaskThread + 56
    4 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 13:
    0 libSystem.B.dylib 0x90053f88 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x900707e8 pthreadcond_timedwait_relativenp + 556
    2 ...ple.CoreServices.CarbonCore 0x90bf73c4 TSWaitOnSemaphoreCommon + 176
    3 com.apple.QuickTime 0x9494546c VideoDecodeThread + 76
    4 libSystem.B.dylib 0x9002b908 pthreadbody + 96
    Thread 5 crashed with PPC Thread State 64:
    srr0: 0x0000000094448fc4 srr1: 0x000000000200f030 vrsave: 0x0000000000000000
    cr: 0x44022224 xer: 0x0000000000000004 lr: 0x000000009437fd00 ctr: 0x000000009437faa0
    r0: 0x000000009437fd00 r1: 0x00000000f03813b0 r2: 0x0000000024022224 r3: 0x0000000001a54c00
    r4: 0x00000000019a8a00 r5: 0x00000000163744e0 r6: 0x0000000000000000 r7: 0x0000000001a54c88
    r8: 0x0000000000000000 r9: 0x0000000001a54c88 r10: 0x00000000163744e0 r11: 0x0000000024022224
    r12: 0x000000009437faa0 r13: 0x0000000000000000 r14: 0x0000000000000000 r15: 0x0000000000000000
    r16: 0x0000000000000000 r17: 0x0000000000000000 r18: 0x0000000000000005 r19: 0x00000000f0381ad0
    r20: 0x0000000000000002 r21: 0x00000000f0381ab0 r22: 0x00000000f0381950 r23: 0x00000000f0381dd8
    r24: 0x0000000016372d48 r25: 0x0000000000000000 r26: 0x00000000019a8a00 r27: 0x0000000016372d48
    r28: 0x0000000001a54c00 r29: 0x0000000000000001 r30: 0x00000000163744e0 r31: 0x0000000094465370
    Binary Images Description:
    0x1000 - 0x131fff com.apple.quicktimeplayer 7.6.2 /Applications/QuickTime Player.app/Contents/MacOS/QuickTime Player
    0x3e1000 - 0x3e8fff com.unsanity.smartcrashreports Smart Crash Reports version 1.0.3 (1.0.3b1) /Users/joshuahodges/Library/InputManagers/Smart Crash Reports/Smart Crash Reports.bundle/Contents/MacOS/Smart Crash Reports
    0x17f9000 - 0x17fafff com.apple.aoa.halplugin 2.5.6 (2.5.6b5) /System/Library/Extensions/IOAudioFamily.kext/Contents/PlugIns/AOAHALPlugin.bun dle/Contents/MacOS/AOAHALPlugin
    0x15714000 - 0x1579dfff com.apple.DVCPROHDAudio 1.0 /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio
    0x15b25000 - 0x15cdbfff com.apple.audio.codecs.Components 1.5.6 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x15d9a000 - 0x16006fff org.perian.Perian 1.1.3 /Library/QuickTime/Perian.component/Contents/MacOS/Perian
    0x164f4000 - 0x16603fff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x16632000 - 0x16722fff com.apple.ATIRadeon9700GLDriver 1.4.18 (4.1.8) /System/Library/Extensions/ATIRadeon9700GLDriver.bundle/Contents/MacOS/ATIRadeo n9700GLDriver
    0x16730000 - 0x16749fff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x1674f000 - 0x1676afff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x16c0e000 - 0x16e47fff net.telestream.wmv.import 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x16e7d000 - 0x17031fff net.telestream.wmv.advanced 2.2.0.49 /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x17073000 - 0x170dbfff com.apple.AppleProResDecoder 2.0 (223) /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x170df000 - 0x1711ffff com.apple.applepixletvideo 1.2.18 (1.2d18) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x70000000 - 0x700fdfff com.apple.audio.units.Components 1.4.7 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8fe00000 - 0x8fe52fff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x901bcfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90214000 - 0x90219fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021b000 - 0x90268fff com.apple.CoreText 1.0.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90293000 - 0x90344fff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90373000 - 0x9072efff com.apple.CoreGraphics 1.258.84 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907bb000 - 0x90895fff com.apple.CoreFoundation 6.4.11 (368.35) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908de000 - 0x908defff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e0000 - 0x909e2fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a3c000 - 0x90ac0fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aea000 - 0x90b5afff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b70000 - 0x90b82fff libauto.dylib /usr/lib/libauto.dylib
    0x90b89000 - 0x90e60fff com.apple.CoreServices.CarbonCore 681.19 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ec6000 - 0x90f46fff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f90000 - 0x90fd2fff com.apple.CFNetwork 129.24 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90fe7000 - 0x90ffffff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x9100f000 - 0x91090fff com.apple.SearchKit 1.0.8 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910d6000 - 0x91100fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91111000 - 0x9111ffff libz.1.dylib /usr/lib/libz.1.dylib
    0x91122000 - 0x912ddfff com.apple.security 4.6 (29770) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913dc000 - 0x913e5fff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913ec000 - 0x913f4fff libbsm.dylib /usr/lib/libbsm.dylib
    0x913f8000 - 0x91420fff com.apple.SystemConfiguration 1.8.3 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91433000 - 0x9143efff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91443000 - 0x914befff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x914fb000 - 0x914fbfff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x914fd000 - 0x91535fff com.apple.AE 312.2 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91550000 - 0x91622fff com.apple.ColorSync 4.4.11 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x91675000 - 0x91706fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9174d000 - 0x91804fff com.apple.QD 3.10.28 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91841000 - 0x9189ffff com.apple.HIServices 1.5.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ce000 - 0x918f2fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91906000 - 0x9192bfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9193e000 - 0x91980fff com.apple.LaunchServices 183.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x9199c000 - 0x919b0fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919be000 - 0x91a04fff com.apple.ImageIO.framework 1.5.8 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a1b000 - 0x91ae2fff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b30000 - 0x91b45fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b4a000 - 0x91b68fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b6e000 - 0x91c25fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c74000 - 0x91c78fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c7a000 - 0x91ce4fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91ce9000 - 0x91d03fff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91d08000 - 0x91d0bfff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91d0d000 - 0x91dfbfff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91e1a000 - 0x91e58fff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91e5f000 - 0x91e5ffff com.apple.Accelerate 1.2.2 (Accelerate 1.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91e61000 - 0x91f46fff com.apple.vImage 2.4 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91f4e000 - 0x91f6dfff com.apple.Accelerate.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91fd9000 - 0x92047fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x92052000 - 0x920e7fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x92101000 - 0x92689fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x926bc000 - 0x929e7fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92a17000 - 0x92b05fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92b08000 - 0x92b90fff com.apple.DesktopServices 1.3.7 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x92bd1000 - 0x92e04fff com.apple.Foundation 6.4.12 (567.42) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92f37000 - 0x92f55fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92f60000 - 0x92fbafff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92fd8000 - 0x92fd8fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92fda000 - 0x92feefff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x93006000 - 0x93016fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x93022000 - 0x93037fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93049000 - 0x930d0fff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x930e4000 - 0x930effff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x930f9000 - 0x93127fff com.apple.openscripting 1.2.7 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93141000 - 0x93151fff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9315d000 - 0x931c3fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x931f4000 - 0x93243fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x93271000 - 0x9328efff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x932a0000 - 0x932adfff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x932b6000 - 0x935c4fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93714000 - 0x93720fff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x937b9000 - 0x937d9fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x937df000 - 0x937dffff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x937e1000 - 0x93e14fff com.apple.AppKit 6.4.10 (824.48) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x941a1000 - 0x94213fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9424c000 - 0x94311fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x94364000 - 0x94364fff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x94366000 - 0x94526fff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94570000 - 0x945adfff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x945b5000 - 0x94605fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9460e000 - 0x94627fff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x947d5000 - 0x947e4fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x947ec000 - 0x947f9fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9483f000 - 0x94858fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x9485f000 - 0x94b92fff com.apple.QuickTime 7.6.2 (1327) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94c7a000 - 0x94cebfff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x95ef1000 - 0x95fa1fff com.apple.QTKit 7.6.2 (1327) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x960d4000 - 0x96106fff com.apple.PDFKit 1.0.4 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x970ec000 - 0x9710bfff com.apple.vecLib 3.2.2 (vecLib 3.2.2) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97811000 - 0x978d2fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x978fd000 - 0x978fefff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x97900000 - 0x9790dfff com.apple.agl 2.5.6 (AGL-2.5.6) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x98388000 - 0x98459fff com.apple.QuartzComposer 1.2.6 (32.25) /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x984d6000 - 0x984d6fff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x98bd1000 - 0x98bdefff libbz2.1.0.dylib /usr/lib/libbz2.1.0.dylib
    0x993f0000 - 0x9a0a8fff com.apple.QuickTimeComponents.component 7.6.2 (1327) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9a306000 - 0x9a30afff com.apple.QuickTimeH264.component 7.6.2 (1327) /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x9a30c000 - 0x9a43afff QuickTimeH264.altivec /System/Library/QuickTime/QuickTimeH264.component/Contents/Resources/QuickTimeH 264.altivec
    0x9ff19000 - 0x9ff58fff com.apple.QuickTimeFireWireDV.component 7.6.2 (1327) /System/Library/QuickTime/QuickTimeFirewireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x9ff61000 - 0x9ffa3fff com.apple.CoreMediaIOServicesPrivate 20.0 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x9ffc8000 - 0x9fff2fff com.apple.CoreMediaPrivate 15.0 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0xc0000000 - 0xc000efff com.unsanity.ape 1.4.1 /Library/Frameworks/ApplicationEnhancer.framework/Versions/A/ApplicationEnhance r
    Model: PowerMac3,6, BootROM 4.4.8f2, 2 processors, PowerPC G4 (3.2), 1.25 GHz, 1.5 GB
    Graphics: ATI Radeon 9600, ATY,RV351, AGP, 256 MB
    Memory Module: DIMM0/J21, 512 MB, DDR SDRAM, PC2600U-25330
    Memory Module: DIMM1/J22, 512 MB, DDR SDRAM, PC2600U-30330
    Memory Module: DIMM3/J20, 512 MB, DDR SDRAM, PC2600U-25330
    AirPort: AirPort, 9.52
    Modem: Dash2, UCJ, V.92, 1.0F, APPLE VERSION 2.6.6
    Network Service: AirPort, AirPort, en1
    PCI Card: pci1412,d634, sppci_audio, SLOT-3
    PCI Card: usb, usb, SLOT-5
    PCI Card: usb, usb, SLOT-5
    PCI Card: pci1838,1074, SLOT-5
    Parallel ATA Device: ST3750640A, 698.64 GB
    Parallel ATA Device: PIONEER DVD-RW DVR-115D
    Parallel ATA Device: PIONEER DVD-RW DVR-104
    Parallel ATA Device: ST3750640A, 698.64 GB
    USB Device: Rocketfish 2MP AF Webcam, Rocketfish, Up to 480 Mb/sec, 500 mA
    USB Device: Hub in Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 500 mA
    USB Device: USB Mouse, Kensington, Up to 1.5 Mb/sec, 100 mA
    USB Device: Apple Pro Keyboard, Mitsumi Electric, Up to 12 Mb/sec, 250 mA
    FireWire Device: My Book, WD, Up to 400 Mb/sec

    Nevermind, it was a bad stick of RAM.

  • "This entry already exists in the following table"

    Hello Friends
    I use SAP 2005 B PL05.In my UDO screens when i try to update an existing record in matrix, i get the error message
    This entry already exists in the following tables: "Tablename"
    But i'm not restricting anything  through code in the Update mode.What could be the reason for this?
    Thanks
    Ram

    Raghu,
    Have a look at this thread. might help you.
    restore numbering files
    BTW, is your linenum column in matrix bound to Linenum in the table?
    regards,
    Binita

  • IMovie 08 - when importing from camcorder, crashes after 1 min

    Hi everyone. Just got a Macbook and love it. I'm trying to import footage from my Canon Elura. Whether I import manually or via the automatic setting, within 1-1.5 minutes IMovie shuts down. I had downloaded the IMovie 7.1 upgrade (I assume I had 7.0 when it came with my mac) and heard that this can occur with version 7.1 and that I should try to reinstall 7.0. I had not tried to import using version 7.0.
    Is this true about 7.1? And if so, and I have to uninstall 7.1 and reinstall 7.0, all I have is the Mac OS Install discs (I didn't get any separate ILife discs). Can I reinstal 7.0 using the Mac OS install discs?
    Thanks for helping a newbie.
    Rene

    Sorry if this is too long, but this is the error message I get:
    Date/Time: 2007-12-03 17:15:28.086 -0500
    OS Version: 10.4.11 (Build 8S2167)
    Report Version: 4
    Command: iMovie
    Path: /Applications/iMovie.app/Contents/MacOS/iMovie
    Parent: WindowServer [53]
    Version: 7.1 (506)
    Build Version: 13
    Project Name: iMovieApp
    Source Version: 5060000
    PID: 756
    Thread: 19
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNPROTECTIONFAILURE (0x0002) at 0x0000072a
    Thread 0:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.framework.IOKit 0x90be721b ioconnect_mapmemory + 163
    2 com.apple.GeForce8xxxGLDriver 0x1298b7f3 gldInitDispatch + 8878
    3 com.apple.GeForce8xxxGLDriver 0x1298bbd8 gldFlush + 44
    4 com.apple.QuartzCore 0x93f43285 feaccel_contextflush + 33
    5 com.apple.QuartzCore 0x93f458ec fegl_releasecontext + 18
    6 com.apple.QuartzCore 0x93ecf393 fegl_bufferactivate + 50
    7 com.apple.QuartzCore 0x93eced55 febufferactivate + 686
    8 com.apple.QuartzCore 0x93ea7df2 fegl_textureload + 5092
    9 com.apple.QuartzCore 0x93ece33a fecontext_textureload + 215
    10 com.apple.QuartzCore 0x93ece13a imagebuffer_textureref + 232
    11 com.apple.QuartzCore 0x93f4d24d texture_retain + 268
    12 com.apple.QuartzCore 0x93ecdd1d fetexturenew + 604
    13 com.apple.QuartzCore 0x93ecd966 fetree_createtexture + 1218
    14 com.apple.QuartzCore 0x93ecd0d0 fetree_renderapply + 897
    15 com.apple.QuartzCore 0x93ecb9b7 fetreerender + 1952
    16 com.apple.QuartzCore 0x93ecac62 fetree_renderimage + 1070
    17 com.apple.QuartzCore 0x93eca811 feimage_render + 232
    18 com.apple.QuartzCore 0x93eca71f feimagerender + 194
    19 com.apple.QuartzCore 0x93eca65b -[CIOpenGLContextImpl renderAccel:matrix:bounds:] + 113
    20 com.apple.QuartzCore 0x93ec9334 -[CIOpenGLContextImpl render:] + 390
    21 com.apple.QuartzCore 0x93edc50f -[CIContext drawImage:inRect:fromRect:] + 1437
    22 com.apple.iMovie7 0x0001a9d1 0x1000 + 104913
    23 com.apple.AppKit 0x932fa3d1 -[NSView _drawRect:clip:] + 3228
    24 com.apple.AppKit 0x932f942b -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 614
    25 com.apple.AppKit 0x932f8493 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 217
    26 com.apple.AppKit 0x932f9061 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    27 com.apple.AppKit 0x932f9061 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    28 com.apple.AppKit 0x932f9061 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    29 com.apple.AppKit 0x932f9061 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    30 com.apple.AppKit 0x932f9061 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    31 com.apple.AppKit 0x932f9061 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    32 com.apple.AppKit 0x932f9061 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 3239
    33 com.apple.AppKit 0x933d78d5 -[NSNextStepFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 601
    34 com.apple.AppKit 0x932f7382 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 523
    35 com.apple.AppKit 0x932f6cae -[NSView displayIfNeeded] + 439
    36 com.apple.AppKit 0x932f6a52 -[NSWindow displayIfNeeded] + 168
    37 com.apple.AppKit 0x93346d8c _handleWindowNeedsDisplay + 206
    38 com.apple.CoreFoundation 0x9082dd0e __CFRunLoopDoObservers + 342
    39 com.apple.CoreFoundation 0x9082cdb0 CFRunLoopRunSpecific + 827
    40 com.apple.CoreFoundation 0x9082ca6e CFRunLoopRunInMode + 61
    41 com.apple.HIToolbox 0x92df4878 RunCurrentEventLoopInMode + 285
    42 com.apple.HIToolbox 0x92df3f82 ReceiveNextEventCommon + 385
    43 com.apple.HIToolbox 0x92df3dd9 BlockUntilNextEventMatchingListInMode + 81
    44 com.apple.AppKit 0x9327b485 _DPSNextEvent + 572
    45 com.apple.AppKit 0x9327b076 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 137
    46 com.apple.iMovie7 0x0002f108 0x1000 + 188680
    47 com.apple.AppKit 0x93274dfb -[NSApplication run] + 512
    48 com.apple.AppKit 0x93268d4f NSApplicationMain + 573
    49 com.apple.iMovie7 0x00004de8 0x1000 + 15848
    50 com.apple.iMovie7 0x00002806 0x1000 + 6150
    51 com.apple.iMovie7 0x0000272d 0x1000 + 5933
    Thread 1:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 libGLProgrammability.dylib 0x941a7a4f glvmDoWork + 150
    2 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 2:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d253 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082ca6e CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x9282cd1a -[NSRunLoop runMode:beforeDate:] + 182
    4 com.apple.Foundation 0x9287a8ec -[NSRunLoop runUntilDate:] + 78
    5 com.apple.iLifeMediaBrowser 0x004bbf5e -[ILMediaBrowserPathWatcher watcherThread:] + 712
    6 com.apple.Foundation 0x927f72c0 forkThreadForFunction + 123
    7 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 3:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d253 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082ca6e CFRunLoopRunInMode + 61
    3 com.apple.Foundation 0x9282cd1a -[NSRunLoop runMode:beforeDate:] + 182
    4 com.apple.Foundation 0x9287a8ec -[NSRunLoop runUntilDate:] + 78
    5 com.apple.iLifeMediaBrowser 0x004be4d0 -[ILMediaBrowserPathWatcher(SpotlightSupport) spotlightWatcherThread:] + 724
    6 com.apple.Foundation 0x927f72c0 forkThreadForFunction + 123
    7 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 4:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d253 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082ca6e CFRunLoopRunInMode + 61
    3 com.apple.audio.CoreAudio 0x91469356 HALRunLoop::OwnThread(void*) + 158
    4 com.apple.audio.CoreAudio 0x91469171 CAPThread::Entry(CAPThread*) + 93
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 5:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d253 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9083e128 CFRunLoopRun + 60
    3 com.apple.AVCVideoServices 0x00253871 AVS::AVCVideoServicesThreadStart(AVS::AVCVideoServicesThreadParams*) + 149
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 6:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d253 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9082ca6e CFRunLoopRunInMode + 61
    3 ....CoreMediaIOServicesPrivate 0x8ef68133 MIO::DAL::RunLoop::OwnThread(void*) + 159
    4 ....CoreMediaIOServicesPrivate 0x8ef69981 CAPThread::Entry(CAPThread*) + 93
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 7:
    0 libSystem.B.dylib 0x9002493f semaphorewaittrap + 7
    1 com.apple.AVCHDPlugin 0x1c88089e 0x1c7f6000 + 567454
    2 com.apple.AVCHDPlugin 0x1c8808d7 0x1c7f6000 + 567511
    3 com.apple.AVCHDPlugin 0x1c88b40d 0x1c7f6000 + 611341
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 8:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.AVCHDPlugin 0x1c875b00 0x1c7f6000 + 523008
    2 com.apple.AVCHDPlugin 0x1c8903b1 0x1c7f6000 + 631729
    3 com.apple.AVCHDPlugin 0x1c8757e4 0x1c7f6000 + 522212
    4 com.apple.AVCHDPlugin 0x1c88b40d 0x1c7f6000 + 611341
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 9:
    0 libSystem.B.dylib 0x9002493f semaphorewaittrap + 7
    1 com.apple.AVCHDPlugin 0x1c88089e 0x1c7f6000 + 567454
    2 com.apple.AVCHDPlugin 0x1c858829 0x1c7f6000 + 403497
    3 com.apple.AVCHDPlugin 0x1c88b40d 0x1c7f6000 + 611341
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 10:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d253 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9083e128 CFRunLoopRun + 60
    3 com.apple.iMovie7 0x0001b403 0x1000 + 107523
    4 com.apple.Foundation 0x927f72c0 forkThreadForFunction + 123
    5 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 11:
    0 libSystem.B.dylib 0x90047dd7 semaphoretimedwait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x90ce1da5 TSWaitOnSemaphoreCommon + 163
    2 ...ickTimeComponents.component 0x987657a6 ReadSchedulerThreadEntryPoint + 4723
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 12:
    0 libSystem.B.dylib 0x901101bf semaphoretimedwaittrap + 7
    1 ...ickTimeComponents.component 0x98ba1f7f DecompressFramesMPTask + 120
    2 ...ple.CoreServices.CarbonCore 0x90cb8c68 PrivateMPEntryPoint + 51
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 13:
    0 libSystem.B.dylib 0x90037b57 machwaituntil + 7
    1 libSystem.B.dylib 0x9003a222 usleep + 82
    2 com.apple.iMovie7 0x00015f2a 0x1000 + 85802
    3 com.apple.Foundation 0x927f72c0 forkThreadForFunction + 123
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 14:
    0 libSystem.B.dylib 0x90009cd7 machmsgtrap + 7
    1 com.apple.CoreFoundation 0x9082d253 CFRunLoopRunSpecific + 2014
    2 com.apple.CoreFoundation 0x9083e128 CFRunLoopRun + 60
    3 com.apple.AVCVideoServices 0x0024d345 AVS::DVReceiverRTThreadStart(AVS::DVReceiverThreadParams*) + 241
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 15:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.Foundation 0x9284d250 -[NSConditionLock lockWhenCondition:] + 39
    2 com.apple.AppKit 0x933522a4 -[NSUIHeartBeat _heartBeatThread:] + 377
    3 com.apple.Foundation 0x927f72c0 forkThreadForFunction + 123
    4 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 16:
    0 libSystem.B.dylib 0x901101bf semaphoretimedwaittrap + 7
    1 ...ickTimeComponents.component 0x98ba1f7f DecompressFramesMPTask + 120
    2 ...ple.CoreServices.CarbonCore 0x90cb8c68 PrivateMPEntryPoint + 51
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 17:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.vImage 0x91d6cd9d vImageQueue_DequeueJob + 104
    2 com.apple.vImage 0x91d6cff4 vImageWorkerThreadFunc + 113
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 18:
    0 libSystem.B.dylib 0x90047dd7 semaphoretimedwait_signaltrap + 7
    1 ...ple.CoreServices.CarbonCore 0x90ce1da5 TSWaitOnSemaphoreCommon + 163
    2 ...ple.CoreServices.CarbonCore 0x90cebcd8 AIOFileThread(void*) + 1068
    3 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 19 Crashed:
    0 com.apple.GeForce8xxxGLDriver 0x12a7dfc6 gldGetTextureLevel + 958807
    1 com.apple.GeForce8xxxGLDriver 0x129e6f92 gldGetTextureLevel + 340259
    2 com.apple.GeForce8xxxGLDriver 0x12a025ca gldGetTextureLevel + 452443
    3 com.apple.GeForce8xxxGLDriver 0x1299158d gldAllocVertexBuffer + 13323
    4 com.apple.GeForce8xxxGLDriver 0x1297197d gldDestroyContext + 40
    5 GLEngine 0x01425c41 gliDestroyContext + 213
    6 com.apple.opengl 0x931f0c17 cglDestroyContext + 432
    7 com.apple.opengl 0x931f0cb3 CGLReleaseContext + 60
    8 com.apple.opengl 0x931ed726 CGLDestroyContext + 29
    9 com.apple.QuartzCore 0x93e9a535 fecgl_destroycontext + 30
    10 com.apple.QuartzCore 0x93ebe4b7 fe_release + 414
    11 com.apple.QuartzCore 0x93edccd0 feaccelpurge + 149
    12 com.apple.QuartzCore 0x93edca67 fecontextpurge + 85
    13 com.apple.QuartzCore 0x93edc9ef feglfinalize + 18
    14 com.apple.QuartzCore 0x93ebe4b7 fe_release + 414
    15 com.apple.QuartzCore 0x93edc9a5 -[CIOpenGLContextImpl invalidate] + 27
    16 com.apple.QuartzCore 0x93ec915e -[CIOpenGLContextImpl setOwner:] + 42
    17 com.apple.QuartzCore 0x93edc953 -[CIContext invalidate] + 45
    18 com.apple.QuartzCore 0x93edc8fe -[CIContext dealloc] + 34
    19 com.apple.Foundation 0x927db8af NSPopAutoreleasePool + 530
    20 com.apple.iMovie7 0x0003be4e 0x1000 + 241230
    21 com.apple.Foundation 0x927f72c0 forkThreadForFunction + 123
    22 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 20:
    0 libSystem.B.dylib 0x900248c7 semaphorewait_signaltrap + 7
    1 com.apple.opengl 0x931e8ff7 glcPluginCount + 31
    2 com.apple.opengl 0x931e77bb cglChoosePixelFormat + 638
    3 com.apple.opengl 0x931e74f1 CGLChoosePixelFormat + 115
    4 com.apple.AppKit 0x9339e516 createPixelFormat + 62
    5 com.apple.AppKit 0x9339e4b1 -[NSOpenGLPixelFormat initWithAttributes:] + 63
    6 com.apple.iMovie7 0x0014a13a 0x1000 + 1347898
    7 com.apple.iMovie7 0x0003bbea 0x1000 + 240618
    8 com.apple.Foundation 0x927f72c0 forkThreadForFunction + 123
    9 libSystem.B.dylib 0x90024227 pthreadbody + 84
    Thread 19 crashed with X86 Thread State (32-bit):
    eax: 0x000006c2 ebx: 0x129e6ea5 ecx: 0x2d1d1000 edx: 0x00000068
    edi: 0x2d1d1000 esi: 0x2a5ede00 ebp: 0xb0853a08 esp: 0xb0853a04
    ss: 0x0000001f efl: 0x00010202 eip: 0x12a7dfc6 cs: 0x00000017
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    Binary Images Description:
    0x1000 - 0x1d6fff com.apple.iMovie7 7.1 (506) /Applications/iMovie.app/Contents/MacOS/iMovie
    0x242000 - 0x272fff com.apple.AVCVideoServices 1.0 (39) /Applications/iMovie.app/Contents/Frameworks/AVCVideoServices.framework/Version s/A/AVCVideoServices
    0x294000 - 0x2b6fff com.apple.iWidgets 1.0.0 (23) /Applications/iMovie.app/Contents/Frameworks/iWidgets.framework/Versions/A/iWid gets
    0x2c7000 - 0x2cffff com.apple.framework.promediaio 1.0.0 (1) /Applications/iMovie.app/Contents/Frameworks/ProMediaIO.framework/Versions/A/Pr oMediaIO
    0x2d6000 - 0x2e7fff com.apple.framework.promedia.ProMediaIOUnit 1.0.0 (1) /Applications/iMovie.app/Contents/Frameworks/ProMediaIOUnit.framework/Versions/ A/ProMediaIOUnit
    0x405000 - 0x43cfff com.apple.MPEG2TSDecoder 1.0 (70) /Applications/iMovie.app/Contents/Frameworks/Mpeg2TsDecoder.framework/Versions/ A/Mpeg2TsDecoder
    0x479000 - 0x4e8fff com.apple.iLifeMediaBrowser 1.0.3 (194) /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x525000 - 0x577fff com.apple.proapps.MIO 1.0 /Applications/iMovie.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0x5b1000 - 0x650fff com.apple.DotMacKit 46 (3.0.2L) /Applications/iMovie.app/Contents/Frameworks/DotMacKit.framework/Versions/A/Dot MacKit
    0x6be000 - 0x73dfff com.apple.imageKit 1.0 /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Image Kit.framework/Versions/A/ImageKit
    0x1008000 - 0x1192fff com.apple.QuartzComposer 2.0 (103) /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Frameworks/Quart zComposer.framework/Versions/A/QuartzComposer
    0x12d4000 - 0x12f1fff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x1405000 - 0x156efff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1759000 - 0x17c6fff com.DivXInc.DivXDecoder 6.6.0 /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x17d5000 - 0x17eefff com.apple.QuartzComposer.ExtraPatches 2.0 (103) /System/Library/PrivateFrameworks/GraphicsAppSupport.framework/Versions/A/Frame works/QuartzComposer.framework/Versions/A/Resources/ExtraPatches.plugin/Contents /MacOS/ExtraPatches
    0x1296b000 - 0x12c65fff com.apple.GeForce8xxxGLDriver 1.5.8 (5.0.8) /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/GeForce8xx xGLDriver
    0x13ea2000 - 0x13ecefff com.apple.oxygene.layers.iDVDQCPatches 1.0.0 (602) /Applications/iMovie.app/Contents/Resources/iDVDQCPatches.plugin/Contents/MacOS /iDVDQCPatches
    0x17af1000 - 0x17b2dfff com.apple.QuickTimeFireWireDV.component 7.3 /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x17b39000 - 0x17b53fff com.apple.AppleIntermediateCodec 1.2 (145) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x17b58000 - 0x17b5dfff com.apple.AppleMPEG2Codec 1.0 (211) /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x17b63000 - 0x17b7cfff com.apple.applepixletvideo 1.2.9 (1.2d9) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x17ced000 - 0x17ceffff com.apple.PDFImporter 1.6 (???) /System/Library/Components/PDFImporter.component/Contents/MacOS/PDFImporter
    0x17de2000 - 0x17de7fff com.apple.audio.AppleHDAHALPlugIn 1.3.7 (1.3.7a23) /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x17ee7000 - 0x17f0ffff com.apple.mio.DAL.VDC 7.2 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Resource s/VDC.plugin/Contents/MacOS/VDC
    0x17f4a000 - 0x17f53fff com.apple.IOFWDVComponents 1.9.0 /System/Library/Components/IOFWDVComponents.component/Contents/MacOS/IOFWDVComp onents
    0x17f5c000 - 0x17f8cfff com.apple.QuickTimeIIDCDigitizer 7.3 /System/Library/QuickTime/QuickTimeIIDCDigitizer.component/Contents/MacOS/Quick TimeIIDCDigitizer
    0x18105000 - 0x18227fff com.apple.TundraComponent 1.2 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/Resources/Tundra.component/Contents/MacOS/Tundra
    0x1c7f6000 - 0x1cdabfff com.apple.AVCHDPlugin 1.0 /Applications/iMovie.app/Contents/RADPlugins/AVCHD.RADPlug/Contents/MacOS/AVCHD
    0x1d1a3000 - 0x1d1cefff com.apple.GeForceVADriver 1.5.8 (5.0.8) /System/Library/Extensions/GeForceVADriver.bundle/Contents/MacOS/GeForceVADrive r
    0x1d1de000 - 0x1d232fff com.apple.AppleVADriver 4.0.3 /System/Library/Extensions/AppleVADriver.bundle/Contents/MacOS/AppleVADriver
    0x1d311000 - 0x1d316fff com.apple.MP4RADPlugin 1.0 /Applications/iMovie.app/Contents/RADPlugins/MP4.RADPlug/Contents/MacOS/MP4
    0x1d31e000 - 0x1d41bfff com.apple.MPEG2PSRADPlugin 1.0 (1.1) /Applications/iMovie.app/Contents/RADPlugins/MPEG2PS.RADPlug/Contents/MacOS/MPE G2PS
    0x2117c000 - 0x211a3fff com.apple.mio.DAL.AVC 7.2 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Resource s/AVC.plugin/Contents/MacOS/AVC
    0x215b6000 - 0x215bcfff com.apple.IOFireWireAVCLib 1.9.7 /System/Library/Extensions/IOFireWireAVC.kext/Contents/PlugIns/IOFireWireAVCLib .plugin/Contents/MacOS/IOFireWireAVCLib
    0x21724000 - 0x2173dfff com.apple.IOFireWireLib 2.6.0 /System/Library/Extensions/IOFireWireFamily.kext/Contents/PlugIns/IOFireWireLib .plugin/Contents/MacOS/IOFireWireLib
    0x28955000 - 0x28ae0fff com.apple.audio.codecs.Components 1.5 /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x70000000 - 0x700fafff com.apple.audio.units.Components 1.4.7 /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x89030000 - 0x890cffff com.apple.QuickTimeImporters.component 7.3 /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x8ef0c000 - 0x8ef42fff FWAVCPrivate /System/Library/PrivateFrameworks/FWAVCPrivate.framework/Versions/A/FWAVCPrivat e
    0x8ef5d000 - 0x8ef99fff com.apple.CoreMediaIOServicesPrivate 1.2 /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x8efc2000 - 0x8efe5fff com.apple.CoreMediaPrivate 1.2 /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x8eff4000 - 0x8eff8fff com.apple.CoreMediaAuthoringPrivate 1.1 /System/Library/PrivateFrameworks/CoreMediaAuthoringPrivate.framework/Versions/ A/CoreMediaAuthoringPrivate
    0x8fe00000 - 0x8fe4afff dyld 46.16 /usr/lib/dyld
    0x90000000 - 0x90171fff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x901c1000 - 0x901c3fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x901c5000 - 0x90202fff com.apple.CoreText 1.1.3 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90229000 - 0x902fffff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90420000 - 0x904a6fff com.apple.QTKit 7.3 /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9080b000 - 0x908d3fff com.apple.CoreFoundation 6.4.8 (368.31) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90911000 - 0x90911fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x90913000 - 0x90a07fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a57000 - 0x90ad6fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aff000 - 0x90b63fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x90bd2000 - 0x90bd9fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x90bde000 - 0x90c51fff com.apple.framework.IOKit 1.4.8 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90c66000 - 0x90c78fff libauto.dylib /usr/lib/libauto.dylib
    0x90c7e000 - 0x90f24fff com.apple.CoreServices.CarbonCore 682.28 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90f67000 - 0x90fcffff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x91008000 - 0x91047fff com.apple.CFNetwork 129.22 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x9105a000 - 0x9106afff com.apple.WebServices 1.1.3 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91075000 - 0x910f4fff com.apple.SearchKit 1.0.7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9112e000 - 0x9114cfff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91158000 - 0x91166fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91169000 - 0x91308fff com.apple.security 4.5.2 (29774) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91406000 - 0x9140efff com.apple.DiskArbitration 2.1.2 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x91415000 - 0x9141cfff libbsm.dylib /usr/lib/libbsm.dylib
    0x91420000 - 0x91446fff com.apple.SystemConfiguration 1.8.6 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91458000 - 0x914cefff com.apple.audio.CoreAudio 3.0.5 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9151f000 - 0x9151ffff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91521000 - 0x9154dfff com.apple.AE 314 (313) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91560000 - 0x91634fff com.apple.ColorSync 4.4.9 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x9166f000 - 0x916e2fff com.apple.print.framework.PrintCore 4.6 (177.13) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x91710000 - 0x917b9fff com.apple.QD 3.10.25 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x917df000 - 0x9182afff com.apple.HIServices 1.5.2 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x91849000 - 0x9185ffff com.apple.LangAnalysis 1.6.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9186b000 - 0x91886fff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x91891000 - 0x918cefff com.apple.LaunchServices 182 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x918e2000 - 0x918eefff com.apple.speech.synthesis.framework 3.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x918f5000 - 0x91935fff com.apple.ImageIO.framework 1.5.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91948000 - 0x919fafff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91a40000 - 0x91a56fff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91a5b000 - 0x91a79fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91a7e000 - 0x91addfff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91aef000 - 0x91af3fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91af5000 - 0x91b7dfff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91b81000 - 0x91bbefff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91bc4000 - 0x91bdefff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91be3000 - 0x91be5fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91be7000 - 0x91cc5fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x91ce2000 - 0x91ce2fff com.apple.Accelerate 1.3.1 (Accelerate 1.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91ce4000 - 0x91d72fff com.apple.vImage 2.5 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91d79000 - 0x91d79fff com.apple.Accelerate.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91d7b000 - 0x91dd4fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91ddd000 - 0x91e01fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91e09000 - 0x92212fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9224c000 - 0x92600fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x9262d000 - 0x9271afff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x9271c000 - 0x92799fff com.apple.DesktopServices 1.3.6 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x927da000 - 0x92a0afff com.apple.Foundation 6.4.9 (567.36) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92b24000 - 0x92b3ffff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92b4b000 - 0x92ba3fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92bb7000 - 0x92bb7fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92bb9000 - 0x92bc9fff com.apple.ImageCapture 3.0.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92bd8000 - 0x92be0fff com.apple.speech.recognition.framework 3.6 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92be6000 - 0x92becfff com.apple.securityhi 2.0.1 (24742) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92bf2000 - 0x92c83fff com.apple.ink.framework 101.2.1 (71) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x92c97000 - 0x92c9bfff com.apple.help 1.0.3 (32.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x92c9e000 - 0x92cbcfff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x92cce000 - 0x92cd4fff com.apple.print.framework.Print 5.2 (192.4) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x92cda000 - 0x92d3dfff com.apple.htmlrendering 66.1 (1.1.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x92d64000 - 0x92da5fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x92dcc000 - 0x92ddafff com.apple.audio.SoundManager 3.9.1 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92de1000 - 0x92de6fff com.apple.CommonPanels 1.2.3 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x92deb000 - 0x930e0fff com.apple.HIToolbox 1.4.10 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x931e6000 - 0x931f2fff com.apple.opengl 1.5.1 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93226000 - 0x93258fff com.apple.MediaKit 8.11 (351.3) /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x93262000 - 0x93262fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93264000 - 0x9391afff com.apple.AppKit 6.4.9 (824.44) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93c9b000 - 0x93d16fff com.apple.CoreData 91 (92.1) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x93d4f000 - 0x93e08fff com.apple.audio.toolbox.AudioToolbox 1.4.7 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x93e4b000 - 0x93e4bfff com.apple.audio.units.AudioUnit 1.4.3 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x93e4d000 - 0x9400efff com.apple.QuartzCore 1.4.12 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x94054000 - 0x94095fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x9409d000 - 0x940e0fff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x940e4000 - 0x940fafff com.apple.CoreVideo 1.4.2 /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x9410a000 - 0x945c6fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x9474a000 - 0x94788fff com.apple.vmutils 4.0.2 (93.1) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x94845000 - 0x94854fff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x9485b000 - 0x94866fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x948b2000 - 0x948ccfff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x948d2000 - 0x94be7fff com.apple.QuickTime 7.3.0 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x94f96000 - 0x94fbbfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x95089000 - 0x95089fff com.apple.DiscRecording 3.2.0 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9508b000 - 0x95109fff com.apple.DiscRecordingEngine 3.2.0 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x95139000 - 0x9517bfff com.apple.DiscRecordingContent 3.2.0 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x952e5000 - 0x95309fff libcurl.3.dylib /usr/lib/libcurl.3.dylib
    0x95310000 - 0x953c0fff com.apple.WebKit 523.12 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x95426000 - 0x954c9fff com.apple.JavaScriptCore 523.12 /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x954f1000 - 0x959b6fff com.apple.WebCore 523.12 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95e27000 - 0x95e5ffff com.apple.PDFKit 1.0.4 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x96aa0000 - 0x96aa4fff com.apple.JavaScriptGlue 523.12 /System/Library/PrivateFrameworks/JavaScriptGlue.framework/Versions/A/JavaScrip tGlue
    0x96aa9000 - 0x96adffff com.apple.audio.midi.CoreMIDI 1.5.1 (41) /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x96ea8000 - 0x96ea8fff com.apple.vecLib 3.3.1 (vecLib 3.3.1) /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97422000 - 0x97427fff com.apple.agl 2.6.2 (AGL-2.6.2) /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x9750a000 - 0x9753dfff com.apple.AppleVAFramework 4.0.3 /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x9758e000 - 0x9758efff com.apple.MonitorPanelFramework 1.1.1 /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x97f77000 - 0x97f77fff com.apple.quartzframework 1.0 /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x982f4000 - 0x983fcfff com.apple.DiskImagesFramework 10.4.11 (115.2) /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x9846a000 - 0x98477fff libbz2.1.0.dylib /usr/lib/libbz2.1.0.dylib
    0x9851f000 - 0x98521fff com.apple.DisplayServicesFW 1.8.2 /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x9874e000 - 0x995e6fff com.apple.QuickTimeComponents.component 7.3 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x9982a000 - 0x9982cfff com.apple.QuickTimeH264.component 7.3 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x99c24000 - 0x99cebfff com.apple.QuickTimeMPEG4.component 7.3 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x9a66d000 - 0x9a6a4fff com.apple.Syndication 1.0.6 (54) /System/Library/PrivateFrameworks/Syndication.framework/Versions/A/Syndication
    0x9fb14000 - 0x9ff69fff com.apple.CoreGraphics 1.258.77 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    Model: MacBookPro3,1, BootROM MBP31.0070.B02, 2 processors, Intel Core 2 Duo, 2.4 GHz, 2 GB
    Graphics: GeForce 8600M GT, GeForce 8600M GT, PCIe, 256 MB
    Memory Module: BANK 0/DIMM0, 1 GB, DDR2 SDRAM, 667 MHz
    Memory Module: BANK 1/DIMM1, 1 GB, DDR2 SDRAM, 667 MHz
    AirPort: spairportwireless_card_type_airportextreme (0x168C, 0x87), 1.2.2
    Bluetooth: Version 1.9.5f4, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    PCI Card: pci168c,24, sppci_othernetwork, PCI Slot 5
    Serial ATA Device: FUJITSU MHW2160BHPL, 149.05 GB
    Parallel ATA Device: MATSHITADVD-R UJ-857E, 700.89 MB
    USB Device: Built-in iSight, Apple Inc., Up to 480 Mb/sec, 500 mA
    USB Device: Apple Internal Keyboard / Trackpad, Apple Computer, Up to 12 Mb/sec, 500 mA
    USB Device: IR Receiver, Apple Computer, Inc., Up to 1.5 Mb/sec, 500 mA
    USB Device: Bluetooth USB Host Controller, Apple, Inc., Up to 12 Mb/sec, 500 mA
    FireWire Device: ELURA100, Canon, Unknown

  • Aperture 1.1 crash -- and workaround -- trying to import .mov files

    After finally getting Aperture 1.1 for my Intel iMac it crashed twice during import of my iPhoto library. I noticed that the crash was in the same folder and saw that the folder contained a few .mov (quicktime) files from a friend's digicam (that iPhoto didn't have any problems with).
    After moving these video files out of my iPhoto library, Aperture 1.1 was able to import my ~10K iPhoto library in about 3 hours without any further problems.
    Sanjaya
    iMac 17 1.25 GHz; iMac 20 Intel   Mac OS X (10.4.4)  

    I've got an import crasher - looks like it's in CoreGraphics (see Thread 17)...
    and another in the GPU driver (see second log Thread 0)...
    Host Name: Rons-G5
    Date/Time: 2006-05-05 14:58:38.638 -0700
    OS Version: 10.4.6 (Build 8I127)
    Report Version: 4
    Command: Aperture
    Path: /Applications/Aperture.app/Contents/MacOS/Aperture
    Parent: WindowServer [16765]
    Version: 1.1.1 (1.1.1)
    Build Version: 2
    Project Name: Redrock
    Source Version: 605010330
    PID: 15906
    Thread: 17
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x17500000
    Thread 0:
    0 libSystem.B.dylib 0x9000b0a8 machmsgtrap + 8
    1 libSystem.B.dylib 0x9000affc mach_msg + 60
    2 com.apple.CoreFoundation 0x907e4114 __CFRunLoopRun + 832
    3 com.apple.CoreFoundation 0x907e3a18 CFRunLoopRunSpecific + 268
    4 com.apple.Foundation 0x92984164 -[NSRunLoop runMode:beforeDate:] + 172
    5 com.apple.Foundation 0x929c8e20 -[NSRunLoop runUntilDate:] + 80
    6 com.apple.Aperture 0x00272f98 0x1000 + 2563992
    7 com.apple.AppKit 0x9390cbb4 -[NSSavePanel(NSSavePanelRuntime) _didEndSheet:returnCode:contextInfo:] + 272
    8 com.apple.AppKit 0x938d997c -[NSSavePanel(NSSavePanelRuntime) ok:] + 288
    9 com.apple.AppKit 0x937c0270 -[NSApplication sendAction:to:from:] + 108
    10 com.apple.prokit 0x9646dbdc NSProCenterRect + 32000
    11 com.apple.Aperture 0x0000d59c 0x1000 + 50588
    12 com.apple.AppKit 0x937c01a4 -[NSControl sendAction:to:] + 96
    13 com.apple.AppKit 0x937c0084 -[NSCell _sendActionFrom:] + 156
    14 com.apple.AppKit 0x937da09c -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1020
    15 com.apple.AppKit 0x937d9c84 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 564
    16 com.apple.prokit 0x9649e850 NSProApplicationLoad + 197300
    17 com.apple.AppKit 0x937d96a8 -[NSControl mouseDown:] + 536
    18 com.apple.AppKit 0x9377aeb0 -[NSWindow sendEvent:] + 4616
    19 com.apple.AppKit 0x93bc3c0c -[NSSavePanel sendEvent:] + 400
    20 com.apple.AppKit 0x93723ef4 -[NSApplication sendEvent:] + 4172
    21 com.apple.Aperture 0x0000d1a4 0x1000 + 49572
    22 com.apple.AppKit 0x9371b330 -[NSApplication run] + 508
    23 com.apple.prokit 0x9646e514 NSProApplicationMain + 288
    24 com.apple.Aperture 0x000037c4 0x1000 + 10180
    25 com.apple.Aperture 0x0000366c 0x1000 + 9836
    Thread 1:
    0 libSystem.B.dylib 0x900325cc wait4 + 12
    1 com.apple.Foundation 0x92963448 _waitForTermination + 40
    2 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x9297c300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Aperture 0x0035e384 0x1000 + 3527556
    4 com.apple.Aperture 0x00150958 0x1000 + 1374552
    5 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.ColorSync 0x915d3224 pthreadSemaphoreWait(t_pthreadSemaphore*) + 56
    3 com.apple.ColorSync 0x915d24c0 CMMConvTask(void*) + 40
    4 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9004a388 syscallthreadswitch + 8
    1 com.apple.Foundation 0x9298d5d0 +[NSThread sleepUntilDate:] + 152
    2 com.apple.AppKit 0x937bc034 -[NSUIHeartBeat _heartBeatThread:] + 1100
    3 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    4 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x9297c300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Aperture 0x000d2938 0x1000 + 858424
    4 com.apple.Aperture 0x000877f0 0x1000 + 550896
    5 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x9297c300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Aperture 0x000c4010 0x1000 + 798736
    4 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x9297c300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Aperture 0x000c4010 0x1000 + 798736
    4 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x9297c300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Aperture 0x000c4010 0x1000 + 798736
    4 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 9:
    0 libSystem.B.dylib 0x90040eb8 machwaituntil + 8
    1 libSystem.B.dylib 0x90040c84 nanosleep + 388
    2 libSystem.B.dylib 0x900443f8 usleep + 88
    3 com.apple.Aperture 0x0012143c 0x1000 + 1180732
    4 com.apple.Aperture 0x000c4778 0x1000 + 800632
    5 com.apple.Aperture 0x000c41c4 0x1000 + 799172
    6 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    7 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 10:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x9297c300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Aperture 0x000c4010 0x1000 + 798736
    4 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 11:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x9297c300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Aperture 0x0035e384 0x1000 + 3527556
    4 com.apple.Aperture 0x0006703c 0x1000 + 417852
    5 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 12:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x9297c300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Aperture 0x0035e384 0x1000 + 3527556
    4 com.apple.Aperture 0x0006ee6c 0x1000 + 450156
    5 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 13:
    0 libSystem.B.dylib 0x9002edcc kevent + 12
    1 com.apple.DesktopServices 0x928892b0 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
    2 ...ple.CoreServices.CarbonCore 0x90bc9260 PrivateMPEntryPoint + 76
    3 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 14:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 ...ple.CoreServices.CarbonCore 0x90bc9450 MPWaitOnQueue + 224
    3 com.apple.DesktopServices 0x9288992c TNodeSyncTask::SyncTaskProc(void*) + 116
    4 ...ple.CoreServices.CarbonCore 0x90bc9260 PrivateMPEntryPoint + 76
    5 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 15:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.QuartzCore 0x94387d58 fefragmentthread + 52
    3 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 16:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.QuartzCore 0x94387d58 fefragmentthread + 52
    3 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 17 Crashed:
    0 com.apple.CoreGraphics 0x903dfa08 CGNotificationCenterPostNotification + 116
    1 com.apple.CoreGraphics 0x90467d84 csFinalize + 112
    2 com.apple.CoreFoundation 0x907c4554 _CFRelease + 240
    3 com.apple.ImageIO.framework 0x919f5010 _CGImagePlusFinalize + 36
    4 com.apple.CoreFoundation 0x907c4554 _CFRelease + 240
    5 com.apple.CoreFoundation 0x907f8ec4 CFArraySetValueAtIndex + 784
    6 com.apple.ImageIO.framework 0x919f2370 makeImagePlus + 188
    7 com.apple.ImageIO.framework 0x919f2288 CGImageSourceGetPropertiesAtIndex + 84
    8 com.apple.ImageIO.framework 0x919f9044 CGImageSourceCopyPropertiesAtIndex + 52
    9 com.apple.Aperture 0x002d54c0 0x1000 + 2966720
    10 com.apple.Aperture 0x002d0abc 0x1000 + 2947772
    11 com.apple.Aperture 0x0011dc60 0x1000 + 1166432
    12 com.apple.Aperture 0x0011e7ec 0x1000 + 1169388
    13 com.apple.Aperture 0x0011f6cc 0x1000 + 1173196
    14 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    15 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 18:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.QuartzCore 0x94387d58 fefragmentthread + 52
    3 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 17 crashed with PPC Thread State 64:
    srr0: 0x00000000903dfa08 srr1: 0x100000000200f030 vrsave: 0x0000000000000000
    cr: 0x24082428 xer: 0x0000000000000000 lr: 0x00000000903df9f0 ctr: 0x00000000900017b8
    r0: 0x00000000903df9f0 r1: 0x00000000f0890680 r2: 0x0000000017500000 r3: 0x0000000000000000
    r4: 0x0000000000000000 r5: 0x00000000000003e8 r6: 0xffffffffffffffff r7: 0xfe919ebff62d2579
    r8: 0xffda31244551caf8 r9: 0x0000000000000074 r10: 0x00000000a07c1b8c r11: 0x0000000000000000
    r12: 0x00000000900017b8 r13: 0x0000000000000000 r14: 0x00000000004331a8 r15: 0x000000000044b65c
    r16: 0x0000000000000000 r17: 0x0000000000000001 r18: 0xffda31252d51cb5d r19: 0x0000000000000b06
    r20: 0x0000000026b660e0 r21: 0x00000000000013f6 r22: 0x0000000000440000 r23: 0x0000000000000000
    r24: 0x0000000000000000 r25: 0x0000000000000000 r26: 0x0000000017d067e8 r27: 0x0000000026b660e0
    r28: 0x00000000a037c1b4 r29: 0x0000000017d067e0 r30: 0x0000000000000001 r31: 0x00000000903df9a4
    Binary Images Description:
    0x1000 - 0x415fff com.apple.Aperture 1.1.1 /Applications/Aperture.app/Contents/MacOS/Aperture
    0x4b5000 - 0x4bdfff com.apple.NetServices.BDControl 1.0.4 /Applications/Aperture.app/Contents/NetServices/Frameworks/BDControl.framework/ Versions/A/BDControl
    0x4c5000 - 0x4c8fff com.apple.NetServices.BDRuleEngine 1.0.1 /Applications/Aperture.app/Contents/NetServices/Frameworks/BDRuleEngine.framewo rk/Versions/A/BDRuleEngine
    0x605000 - 0x661fff com.apple.NetServices.NetServices 6.0 /Applications/Aperture.app/Contents/NetServices/Frameworks/NetServices.framewor k/Versions/A/NetServices
    0x6a8000 - 0x6edfff com.apple.DotMacKit 1.2 /Applications/Aperture.app/Contents/Frameworks/DotMacKit.framework/Versions/A/D otMacKit
    0x7cd000 - 0x7eafff com.apple.prokit.TigerPanels 3.1 (589) /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/TigerPa nels.bundle/Contents/MacOS/TigerPanels
    0x17a2000 - 0x17a5fff com.mac.bwebster.iPLM ??? (3.0.1) /Users/rpomeroy/Library/InputManagers/iPLM/iPLM.bundle/Contents/MacOS/iPLM
    0x17aa000 - 0x17abfff com.ecamm.pluginloader Ecamm Plugin Loader v1.0.2 (1.0.2) /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0x17834000 - 0x1784dfff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x17853000 - 0x1786efff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x179f0000 - 0x17afffff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x17b2e000 - 0x17c91fff com.apple.GeForceFXGLDriver 1.4.18 (4.1.8) /System/Library/Extensions/GeForceFXGLDriver.bundle/Contents/MacOS/GeForceFXGLD river
    0x7ffd0000 - 0x7ffd8fff com.apple.AEProfiling 1.2 (14) /Applications/Aperture.app/Contents/Frameworks/AEProfiling.framework/Versions/A /AEProfiling
    0x7fff0000 - 0x80007fff com.apple.AERegistration 1.2 (58) /Applications/Aperture.app/Contents/Frameworks/AERegistration.framework/Version s/A/AERegistration
    0x8fa79000 - 0x8fd27fff com.apple.QuickTime 7.0.4 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x8fe00000 - 0x8fe51fff dyld 44.4 /usr/lib/dyld
    0x90000000 - 0x901bbfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90213000 - 0x90218fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021a000 - 0x9026dfff com.apple.CoreText 1.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9029a000 - 0x9034bfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9037a000 - 0x90734fff com.apple.CoreGraphics 1.258.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907c1000 - 0x9089afff com.apple.CoreFoundation 6.4.4 (368.25) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908e3000 - 0x908e3fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e5000 - 0x909e7fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a41000 - 0x90ac5fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aef000 - 0x90b5dfff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b74000 - 0x90b86fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8d000 - 0x90e65fff com.apple.CoreServices.CarbonCore 681.3 (671.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ecb000 - 0x90f4bfff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f95000 - 0x90fd6fff com.apple.CFNetwork 129.13 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90feb000 - 0x91003fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91013000 - 0x91094fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910da000 - 0x91104fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91115000 - 0x91123fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91126000 - 0x912e9fff com.apple.security 4.3 (25966) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913ec000 - 0x913f5fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913fc000 - 0x91423fff com.apple.SystemConfiguration 1.8.2 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91436000 - 0x91441fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91446000 - 0x91466fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9146c000 - 0x91474fff libbsm.dylib /usr/lib/libbsm.dylib
    0x91478000 - 0x914f3fff com.apple.audio.CoreAudio 3.0.3 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91530000 - 0x91530fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91532000 - 0x9156afff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91585000 - 0x91652fff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x916a7000 - 0x91738fff com.apple.print.framework.PrintCore 4.5 (177.10) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9177f000 - 0x91836fff com.apple.QD 3.8.19 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91873000 - 0x918d1fff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ff000 - 0x91923fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91937000 - 0x9195cfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9196f000 - 0x919b1fff com.apple.LaunchServices 168.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x919cd000 - 0x919e1fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919ef000 - 0x91a2efff com.apple.ImageIO.framework 1.4.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a44000 - 0x91b0cfff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b5a000 - 0x91b6ffff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b74000 - 0x91b91fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b96000 - 0x91c05fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c1c000 - 0x91c20fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c22000 - 0x91c69fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c6e000 - 0x91cabfff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91cb2000 - 0x91ccbfff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91cd0000 - 0x91cd3fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91cd5000 - 0x91cd5fff com.apple.Accelerate 1.2.1 (Accelerate 1.2.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cd7000 - 0x91db6fff com.apple.vImage 2.3 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91dbe000 - 0x91dddfff com.apple.Accelerate.vecLib 3.2.1 (vecLib 3.2.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e49000 - 0x91eb7fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91ec2000 - 0x91f56fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f70000 - 0x924f8fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9252b000 - 0x92856fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92886000 - 0x9290efff com.apple.DesktopServices 1.3.3 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9294f000 - 0x92b7afff com.apple.Foundation 6.4.5 (567.26) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c98000 - 0x92d76fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d96000 - 0x92e84fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e96000 - 0x92eb4fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92ebf000 - 0x92f19fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92f37000 - 0x92f37fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92f39000 - 0x92f4dfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f65000 - 0x92f75fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f81000 - 0x92f96fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92fa8000 - 0x9302ffff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93043000 - 0x9304efff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93058000 - 0x93085fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9309f000 - 0x930affff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x930bb000 - 0x93121fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93152000 - 0x931a1fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x931cf000 - 0x931ecfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x931fe000 - 0x9320bfff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93214000 - 0x93521fff com.apple.HIToolbox 1.4.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93670000 - 0x9367cfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93681000 - 0x936a1fff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x936b6000 - 0x936b7fff com.apple.ServerControl 10.3.0 /System/Library/PrivateFrameworks/ServerControl.framework/Versions/A/ServerCont rol
    0x936b9000 - 0x936e9fff com.apple.MediaKit 8.6.1 (345.1.7) /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x93715000 - 0x93715fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93717000 - 0x93d4afff com.apple.AppKit 6.4.4 (824.33) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x940d7000 - 0x94147fff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94180000 - 0x9424afff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9429e000 - 0x9429efff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942a0000 - 0x94454fff com.apple.QuartzCore 1.4.7 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x944a7000 - 0x944e4fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x944ec000 - 0x9453cfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94545000 - 0x94566fff com.apple.framework.Admin 1.4.1 /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0x9457a000 - 0x9457afff com.apple.AFPDefines 3.0.1 /System/Library/PrivateFrameworks/AFPDefines.framework/Versions/A/AFPDefines
    0x9457c000 - 0x945c0fff com.apple.bom 8.3 (86.1) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x945cc000 - 0x94604fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x94619000 - 0x94621fff com.apple.IntlPreferences 1.2 /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
    0x94628000 - 0x9463afff com.apple.frameworks.preferencepanes 11.0.1 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x94647000 - 0x94663fff com.apple.securityfoundation 2.1 (24988) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94677000 - 0x946bbfff com.apple.securityinterface 2.1 (24981) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x946df000 - 0x946eefff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x946f6000 - 0x94702fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94748000 - 0x94760fff libRIP.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x94767000 - 0x947d8fff libstdc++.6.dylib /usr/lib/libstdc++.6.dylib
    0x94908000 - 0x9490dfff com.apple.SetupAssistant.International 1.4.0 /System/Library/PrivateFrameworks/International.framework/Versions/A/Internatio nal
    0x9494d000 - 0x94a7bfff com.apple.AddressBook.framework 4.0.3 (483) /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x94b0d000 - 0x94b1cfff com.apple.DSObjCWrappers.Framework 1.1 /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x94b24000 - 0x94b51fff com.apple.LDAPFramework 1.4.1 (69.0.1) /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x94b58000 - 0x94b68fff libsasl2.2.dylib /usr/lib/libsasl2.2.dylib
    0x94b6c000 - 0x94b9bfff libssl.0.9.7.dylib /usr/lib/libssl.0.9.7.dylib
    0x94bab000 - 0x94bc8fff libresolv.9.dylib /usr/lib/libresolv.9.dylib
    0x94fc1000 - 0x94fc1fff com.apple.DiscRecording 3.1.2 (???) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x94fc3000 - 0x95046fff com.apple.DiscRecordingEngine 3.1.2 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingEngine.framework/Versions/A/DiscRecordingEngine
    0x95073000 - 0x950b9fff com.apple.DiscRecordingContent 3.1.2 /System/Library/Frameworks/DiscRecording.framework/Versions/A/Frameworks/DiscRe cordingContent.framework/Versions/A/DiscRecordingContent
    0x95288000 - 0x952a7fff com.apple.DiskManagement 1.9 (92.18) /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
    0x95723000 - 0x957affff com.apple.WebKit 418 /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x9580a000 - 0x958fffff com.apple.JavaScriptCore 417.11 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/JavaScriptCor e.framework/Versions/A/JavaScriptCore
    0x9593b000 - 0x95c45fff com.apple.WebCore 417.24 /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x95dcd000 - 0x95df6fff libxslt.1.dylib /usr/lib/libxslt.1.dylib
    0x960e4000 - 0x96116fff com.apple.PDFKit 1.0.1 /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9644e000 - 0x96520fff com.apple.prokit 3.1 (589) /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x97816000 - 0x978d7fff libGLProgrammability.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x97902000 - 0x97903fff libGLSystem.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLSystem.dy lib
    0x98620000 - 0x98642fff com.apple.DiscRecordingUI 3.1.2 /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x9a405000 - 0x9a41cfff libCFilter.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCFilter.A.dylib
    Host Name: Rons-G5
    Date/Time: 2006-05-05 17:51:54.148 -0700
    OS Version: 10.4.6 (Build 8I127)
    Report Version: 4
    Command: Aperture
    Path: /Applications/Aperture.app/Contents/MacOS/Aperture
    Parent: WindowServer [16765]
    Version: 1.1.1 (1.1.1)
    Build Version: 2
    Project Name: Redrock
    Source Version: 605010330
    PID: 15982
    Thread: 0
    Exception: EXCBADACCESS (0x0001)
    Codes: KERNINVALIDADDRESS (0x0001) at 0x1853807c
    Thread 0 Crashed:
    0 com.apple.GeForceFXGLDriver 0x17b7bf00 gldFreeVertexBuffer + 42444
    1 <<00000000>> 0x00000000 0 + 0
    2 com.apple.GeForceFXGLDriver 0x17b6c440 gldInitDispatch + 124
    3 GLEngine 0x179f9f18 gliSetCurrentPluginDispatchTable + 64
    4 GLEngine 0x17a0277c gliAttachDrawableWithOptions + 624
    5 com.apple.opengl 0x93676a34 cglSetContextScreen + 488
    6 com.apple.opengl 0x936765a4 cglSetAnyDrawable + 100
    7 com.apple.opengl 0x936776dc CGLSetPBuffer + 1492
    8 com.apple.QuartzCore 0x94347dfc fecgl_setpbuffer + 48
    9 com.apple.QuartzCore 0x94380a6c feaccel_buffer_attach + 208
    10 com.apple.QuartzCore 0x94323508 feaccel_bufferattach + 56
    11 com.apple.QuartzCore 0x943234b0 fegl_bufferupdate + 108
    12 com.apple.QuartzCore 0x942fc300 fegl_textureload + 1816
    13 com.apple.QuartzCore 0x94321aa8 fecontext_textureload + 232
    14 com.apple.QuartzCore 0x943217e4 imagebuffer_textureref + 200
    15 com.apple.QuartzCore 0x94321708 feimage_textureref + 228
    16 com.apple.QuartzCore 0x94387980 texture_retain + 296
    17 com.apple.QuartzCore 0x943213f8 fetexturenew + 596
    18 com.apple.QuartzCore 0x943210ac fetree_createtexture + 952
    19 com.apple.QuartzCore 0x943209d8 fetree_renderapply + 676
    20 com.apple.QuartzCore 0x943203f0 fetreerender + 560
    21 com.apple.QuartzCore 0x9438d0b0 fetree_render_image + 464
    22 com.apple.QuartzCore 0x9431fd2c fetree_renderimage + 304
    23 com.apple.QuartzCore 0x9431fbd8 feimage_render + 176
    24 com.apple.QuartzCore 0x9431fb14 feimagerender + 164
    25 com.apple.QuartzCore 0x9431fa60 -[CIOpenGLContextImpl renderAccel:matrix:bounds:] + 80
    26 com.apple.QuartzCore 0x9431ec5c -[CIOpenGLContextImpl render:] + 204
    27 com.apple.QuartzCore 0x94334928 -[CIContext drawImage:inRect:fromRect:] + 512
    28 com.apple.Aperture 0x002d89d4 0x1000 + 2980308
    29 com.apple.Aperture 0x0006966c 0x1000 + 427628
    30 com.apple.Aperture 0x0002fa70 0x1000 + 191088
    31 com.apple.Aperture 0x0008c6a8 0x1000 + 571048
    32 com.apple.Aperture 0x00045a80 0x1000 + 281216
    33 com.apple.AppKit 0x93764e78 -[NSView _drawRect:clip:] + 2128
    34 com.apple.AppKit 0x93764438 -[NSView _recursiveDisplayAllDirtyWithLockFocus:visRect:] + 404
    35 com.apple.AppKit 0x93763a00 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 196
    36 com.apple.AppKit 0x93763fc8 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    37 com.apple.AppKit 0x93763fc8 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    38 com.apple.AppKit 0x93763fc8 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    39 com.apple.AppKit 0x93763fc8 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    40 com.apple.AppKit 0x93763fc8 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    41 com.apple.AppKit 0x93763fc8 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    42 com.apple.AppKit 0x93763fc8 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    43 com.apple.AppKit 0x93763fc8 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    44 com.apple.AppKit 0x93763fc8 -[NSView _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 1676
    45 com.apple.AppKit 0x93784664 -[NSThemeFrame _recursiveDisplayRectIfNeededIgnoringOpacity:isVisibleRect:rectIsVisibleRectFor View:topView:] + 192
    46 com.apple.prokit 0x9648c800 NSProApplicationLoad + 123492
    47 com.apple.AppKit 0x9375d674 -[NSView _displayRectIgnoringOpacity:isVisibleRect:rectIsVisibleRectForView:] + 384
    48 com.apple.AppKit 0x93752968 -[NSView displayIfNeeded] + 248
    49 com.apple.AppKit 0x937527d8 -[NSWindow displayIfNeeded] + 180
    50 com.apple.AppKit 0x93752684 _handleWindowNeedsDisplay + 200
    51 com.apple.CoreFoundation 0x907e3cd8 __CFRunLoopDoObservers + 352
    52 com.apple.CoreFoundation 0x907e3f78 __CFRunLoopRun + 420
    53 com.apple.CoreFoundation 0x907e3a18 CFRunLoopRunSpecific + 268
    54 com.apple.HIToolbox 0x9321c980 RunCurrentEventLoopInMode + 264
    55 com.apple.HIToolbox 0x9321bf8c ReceiveNextEventCommon + 244
    56 com.apple.HIToolbox 0x9321be80 BlockUntilNextEventMatchingListInMode + 96
    57 com.apple.AppKit 0x9371f104 _DPSNextEvent + 384
    58 com.apple.AppKit 0x9371edc8 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 116
    59 com.apple.AppKit 0x938c9e30 -[NSApplication _realDoModalLoop:peek:] + 260
    60 com.apple.AppKit 0x9391f854 -[NSApplication runModalSession:] + 64
    61 com.apple.Aperture 0x00272f60 0x1000 + 2563936
    62 com.apple.AppKit 0x9390cbb4 -[NSSavePanel(NSSavePanelRuntime) _didEndSheet:returnCode:contextInfo:] + 272
    63 com.apple.AppKit 0x938d997c -[NSSavePanel(NSSavePanelRuntime) ok:] + 288
    64 com.apple.AppKit 0x937c0270 -[NSApplication sendAction:to:from:] + 108
    65 com.apple.prokit 0x9646dbdc NSProCenterRect + 32000
    66 com.apple.Aperture 0x0000d59c 0x1000 + 50588
    67 com.apple.AppKit 0x937c01a4 -[NSControl sendAction:to:] + 96
    68 com.apple.AppKit 0x937c0084 -[NSCell _sendActionFrom:] + 156
    69 com.apple.AppKit 0x937da09c -[NSCell trackMouse:inRect:ofView:untilMouseUp:] + 1020
    70 com.apple.AppKit 0x937d9c84 -[NSButtonCell trackMouse:inRect:ofView:untilMouseUp:] + 564
    71 com.apple.prokit 0x9649e850 NSProApplicationLoad + 197300
    72 com.apple.AppKit 0x937d96a8 -[NSControl mouseDown:] + 536
    73 com.apple.AppKit 0x9377aeb0 -[NSWindow sendEvent:] + 4616
    74 com.apple.AppKit 0x93bc3c0c -[NSSavePanel sendEvent:] + 400
    75 com.apple.AppKit 0x93723ef4 -[NSApplication sendEvent:] + 4172
    76 com.apple.Aperture 0x0000d1a4 0x1000 + 49572
    77 com.apple.AppKit 0x9371b330 -[NSApplication run] + 508
    78 com.apple.prokit 0x9646e514 NSProApplicationMain + 288
    79 com.apple.Aperture 0x000037c4 0x1000 + 10180
    80 com.apple.Aperture 0x0000366c 0x1000 + 9836
    Thread 1:
    0 libSystem.B.dylib 0x900325cc wait4 + 12
    1 com.apple.Foundation 0x92963448 _waitForTermination + 40
    2 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 2:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x9297c300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Aperture 0x0035e384 0x1000 + 3527556
    4 com.apple.Aperture 0x00150958 0x1000 + 1374552
    5 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 3:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.ColorSync 0x915d3224 pthreadSemaphoreWait(t_pthreadSemaphore*) + 56
    3 com.apple.ColorSync 0x915d24c0 CMMConvTask(void*) + 40
    4 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 4:
    0 libSystem.B.dylib 0x9004a388 syscallthreadswitch + 8
    1 com.apple.Foundation 0x9298d5d0 +[NSThread sleepUntilDate:] + 152
    2 com.apple.AppKit 0x937bc034 -[NSUIHeartBeat _heartBeatThread:] + 1100
    3 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    4 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 5:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x9297c300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Aperture 0x000d2938 0x1000 + 858424
    4 com.apple.Aperture 0x000877f0 0x1000 + 550896
    5 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 6:
    0 libSystem.B.dylib 0x9004b52c pread + 12
    1 ...ple.CoreServices.CarbonCore 0x90bccbcc BasicRead(FileRecord*, short, long long, unsigned long long*, void*, unsigned long long*) + 632
    2 ...ple.CoreServices.CarbonCore 0x90bcc904 PBReadForkSync + 124
    3 ...ple.CoreServices.CarbonCore 0x90bcc864 FSReadFork + 52
    4 com.apple.Foundation 0x92a018a8 _NSCopyForkUsingBuffer + 296
    5 com.apple.Foundation 0x92a01700 _NSCopyForkedFile + 308
    6 com.apple.Foundation 0x92a01328 -[NSFileManager _newReplicatePath:ref:atPath:ref:operation:fileMap:handler:] + 1944
    7 com.apple.Foundation 0x92a00b7c -[NSFileManager _replicatePath:atPath:operation:fileMap:handler:] + 536
    8 com.apple.Foundation 0x92a00940 -[NSFileManager copyPath:toPath:handler:] + 212
    9 com.apple.Aperture 0x00120bc8 0x1000 + 1178568
    10 com.apple.Aperture 0x000c4778 0x1000 + 800632
    11 com.apple.Aperture 0x000c41c4 0x1000 + 799172
    12 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    13 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 7:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x9297c300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Aperture 0x000c4010 0x1000 + 798736
    4 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 8:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x9297c300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Aperture 0x000c4010 0x1000 + 798736
    4 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 9:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x9297c300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Aperture 0x000c4010 0x1000 + 798736
    4 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 10:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x9297c300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Aperture 0x000c4010 0x1000 + 798736
    4 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    5 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 11:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x9297c300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Aperture 0x0035e384 0x1000 + 3527556
    4 com.apple.Aperture 0x0006703c 0x1000 + 417852
    5 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 12:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x9297c300 -[NSConditionLock lockWhenCondition:] + 68
    3 com.apple.Aperture 0x0035e384 0x1000 + 3527556
    4 com.apple.Aperture 0x0006ee6c 0x1000 + 450156
    5 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    6 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 13:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.QuartzCore 0x94387d58 fefragmentthread + 52
    3 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 14:
    0 libSystem.B.dylib 0x9002edcc kevent + 12
    1 com.apple.DesktopServices 0x928892b0 TFSNotificationTask::FSNotificationTaskProc(void*) + 56
    2 ...ple.CoreServices.CarbonCore 0x90bc9260 PrivateMPEntryPoint + 76
    3 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 15:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 ...ple.CoreServices.CarbonCore 0x90bc9450 MPWaitOnQueue + 224
    3 com.apple.DesktopServices 0x9288992c TNodeSyncTask::SyncTaskProc(void*) + 116
    4 ...ple.CoreServices.CarbonCore 0x90bc9260 PrivateMPEntryPoint + 76
    5 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 16:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.QuartzCore 0x94387d58 fefragmentthread + 52
    3 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 17:
    0 libSystem.B.dylib 0x9002c128 semaphorewait_signaltrap + 8
    1 libSystem.B.dylib 0x90030bec pthreadcondwait + 480
    2 com.apple.Foundation 0x929786a8 -[NSConditionLock lock] + 52
    3 com.apple.Foundation 0x92982844 -[NSObject(NSMainThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:modes:] + 780
    4 com.apple.Foundation 0x92982518 -[NSObject(NSMainThreadPerformAdditions) performSelectorOnMainThread:withObject:waitUntilDone:] + 120
    5 com.apple.Aperture 0x0011ede0 0x1000 + 1170912
    6 com.apple.Aperture 0x0011f7a0 0x1000 + 1173408
    7 com.apple.Foundation 0x92975194 forkThreadForFunction + 108
    8 libSystem.B.dylib 0x9002ba68 pthreadbody + 96
    Thread 0 crashed with PPC Thread State 64:
    srr0: 0x0000000017b7bf00 srr1: 0x100000000000f030 vrsave: 0x0000000080000000
    cr: 0x84244234 xer: 0x0000000020000000 lr: 0x0000000017b6c440 ctr: 0x00000000901313a0
    r0: 0x0000000017b6c440 r1: 0x00000000bfff5a40 r2: 0x000000001852a000 r3: 0x000000001851a000
    r4: 0x000000001851a1d0 r5: 0x0000000000000034 r6: 0x0000000000000000 r7: 0xfffffffd07ffffff
    r8: 0x0000000000000000 r9: 0x000000000000044d r10: 0x0000000000000000 r11: 0x0000000000000000
    r12: 0x00000000bfff5b24 r13: 0x0000000000000001 r14: 0x0000000000000000 r15: 0x0000000000000300
    r16: 0x0000000000000400 r17: 0x0000000000000001 r18: 0x0000000000000002 r19: 0x0000000001c37688
    r20: 0x0000000000000000 r21: 0x00000000000084f5 r22: 0x0000000000000000 r23: 0x0000000001a20400
    r24: 0x000000000000005a r25: 0x0000000037160da0 r26: 0x0000000000000000 r27: 0x000000001851a1d0
    r28: 0x000000001851a000 r29: 0x0000000018538000 r30: 0x000000001851a000 r31: 0x0000000017b6c3cc
    Binary Images Description:
    0x1000 - 0x415fff com.apple.Aperture 1.1.1 /Applications/Aperture.app/Contents/MacOS/Aperture
    0x4b5000 - 0x4bdfff com.apple.NetServices.BDControl 1.0.4 /Applications/Aperture.app/Contents/NetServices/Frameworks/BDControl.framework/ Versions/A/BDControl
    0x4c5000 - 0x4c8fff com.apple.NetServices.BDRuleEngine 1.0.1 /Applications/Aperture.app/Contents/NetServices/Frameworks/BDRuleEngine.framewo rk/Versions/A/BDRuleEngine
    0x605000 - 0x661fff com.apple.NetServices.NetServices 6.0 /Applications/Aperture.app/Contents/NetServices/Frameworks/NetServices.framewor k/Versions/A/NetServices
    0x6a8000 - 0x6edfff com.apple.DotMacKit 1.2 /Applications/Aperture.app/Contents/Frameworks/DotMacKit.framework/Versions/A/D otMacKit
    0x1008000 - 0x1025fff com.apple.prokit.TigerPanels 3.1 (589) /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/TigerPa nels.bundle/Contents/MacOS/TigerPanels
    0x17a2000 - 0x17a5fff com.mac.bwebster.iPLM ??? (3.0.1) /Users/rpomeroy/Library/InputManagers/iPLM/iPLM.bundle/Contents/MacOS/iPLM
    0x17aa000 - 0x17abfff com.ecamm.pluginloader Ecamm Plugin Loader v1.0.2 (1.0.2) /Library/InputManagers/Ecamm/Ecamm Plugin Loader.bundle/Contents/MacOS/Ecamm Plugin Loader
    0x174eb000 - 0x174ecfff com.apple.URLMount.WebDAVPlugin 1.1.3 /System/Library/Filesystems/URLMount/http.URLMounter/Contents/MacOS/http
    0x17834000 - 0x1784dfff GLDriver /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLDriver.bundl e/GLDriver
    0x17853000 - 0x1786efff GLRendererFloat /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloa t.bundle/GLRendererFloat
    0x179f0000 - 0x17afffff GLEngine /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x17b2e000 - 0x17c91fff com.apple.GeForceFXGLDriver 1.4.18 (4.1.8) /System/Library/Extensions/GeForceFXGLDriver.bundle/Contents/MacOS/GeForceFXGLD river
    0x19c00000 - 0x19c00fff com.apple.SpotLightCM 1.0 (121.20.2) /System/Library/Contextual Menu Items/SpotlightCM.plugin/Contents/MacOS/SpotlightCM
    0x19f13000 - 0x19f15fff com.apple.AutomatorCMM 1.0 (48) /System/Library/Contextual Menu Items/AutomatorCMM.plugin/Contents/MacOS/AutomatorCMM
    0x1d6ac000 - 0x1d6bafff com.cocoatech.PathFinderCM Path Finder CM version 2.1.1 (2.1.2) /Users/rpomeroy/Library/Contextual Menu Items/Path Finder CM.plugin/Contents/MacOS/Path Finder CM
    0x1d6c3000 - 0x1d6c7fff com.apple.FolderActionsMenu 1.3 /System/Library/Contextual Menu Items/FolderActionsMenu.plugin/Contents/MacOS/FolderActionsMenu
    0x384bc000 - 0x384c5fff com.apple.LiveType.component 1.2.1 /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x38834000 - 0x38871fff com.apple.QuickTimeFireWireDV.component 7.0.4 /System/Library/QuickTime/QuickTimeFirewireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x3887c000 - 0x38896fff com.apple.AppleIntermediateCodec 1.1 (141) /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x3889b000 - 0x38914fff com.apple.applepixletvideo 1.2.5 (1.2d5) /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x39115000 - 0x392f0fff net.telestream.wmv.import 2.0.2.10 /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x70090000 - 0x700e5fff com.apple.LiveType.framework 1.2.2 /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x7ffd0000 - 0x7ffd8fff com.apple.AEProfiling 1.2 (14) /Applications/Aperture.app/Contents/Frameworks/AEProfiling.framework/Versions/A /AEProfiling
    0x7fff0000 - 0x80007fff com.apple.AERegistration 1.2 (58) /Applications/Aperture.app/Contents/Frameworks/AERegistration.framework/Version s/A/AERegistration
    0x8c2c1000 - 0x8c2cafff Motion /Library/Frameworks/Motion.framework/Versions/A/Motion
    0x8e94a000 - 0x8ea05fff com.apple.QuickTimeMPEG4.component 7.0.4 /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x8ec2d000 - 0x8ec30fff com.apple.QuickTimeH264.component 7.0.4 /System/Library/QuickTime/QuickTimeH264.component/Contents/MacOS/QuickTimeH264
    0x8ed27000 - 0x8f6e6fff com.apple.QuickTimeComponents.component 7.0.4 /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x8fa79000 - 0x8fd27fff com.apple.QuickTime 7.0.4 /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x8fe00000 - 0x8fe51fff dyld 44.4 /usr/lib/dyld
    0x90000000 - 0x901bbfff libSystem.B.dylib /usr/lib/libSystem.B.dylib
    0x90213000 - 0x90218fff libmathCommon.A.dylib /usr/lib/system/libmathCommon.A.dylib
    0x9021a000 - 0x9026dfff com.apple.CoreText 1.0.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9029a000 - 0x9034bfff ATS /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x9037a000 - 0x90734fff com.apple.CoreGraphics 1.258.27 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x907c1000 - 0x9089afff com.apple.CoreFoundation 6.4.4 (368.25) /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x908e3000 - 0x908e3fff com.apple.CoreServices 10.4 (???) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x908e5000 - 0x909e7fff libicucore.A.dylib /usr/lib/libicucore.A.dylib
    0x90a41000 - 0x90ac5fff libobjc.A.dylib /usr/lib/libobjc.A.dylib
    0x90aef000 - 0x90b5dfff com.apple.framework.IOKit 1.4 (???) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x90b74000 - 0x90b86fff libauto.dylib /usr/lib/libauto.dylib
    0x90b8d000 - 0x90e65fff com.apple.CoreServices.CarbonCore 681.3 (671.2) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x90ecb000 - 0x90f4bfff com.apple.CoreServices.OSServices 4.1 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x90f95000 - 0x90fd6fff com.apple.CFNetwork 129.13 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x90feb000 - 0x91003fff com.apple.WebServices 1.1.2 (1.1.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/WebServ icesCore.framework/Versions/A/WebServicesCore
    0x91013000 - 0x91094fff com.apple.SearchKit 1.0.5 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x910da000 - 0x91104fff com.apple.Metadata 10.4.4 (121.36) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x91115000 - 0x91123fff libz.1.dylib /usr/lib/libz.1.dylib
    0x91126000 - 0x912e9fff com.apple.security 4.3 (25966) /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x913ec000 - 0x913f5fff com.apple.DiskArbitration 2.1 /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x913fc000 - 0x91423fff com.apple.SystemConfiguration 1.8.2 /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x91436000 - 0x91441fff libgcc_s.1.dylib /usr/lib/libgcc_s.1.dylib
    0x91446000 - 0x91466fff libmx.A.dylib /usr/lib/libmx.A.dylib
    0x9146c000 - 0x91474fff libbsm.dylib /usr/lib/libbsm.dylib
    0x91478000 - 0x914f3fff com.apple.audio.CoreAudio 3.0.3 /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x91530000 - 0x91530fff com.apple.ApplicationServices 10.4 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91532000 - 0x9156afff com.apple.AE 1.5 (297) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ AE.framework/Versions/A/AE
    0x91585000 - 0x91652fff com.apple.ColorSync 4.4.4 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x916a7000 - 0x91738fff com.apple.print.framework.PrintCore 4.5 (177.10) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x9177f000 - 0x91836fff com.apple.QD 3.8.19 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91873000 - 0x918d1fff com.apple.HIServices 1.5.1 (???) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918ff000 - 0x91923fff com.apple.LangAnalysis 1.6.1 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x91937000 - 0x9195cfff com.apple.FindByContent 1.5 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ FindByContent.framework/Versions/A/FindByContent
    0x9196f000 - 0x919b1fff com.apple.LaunchServices 168.10 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LaunchServices.framework/Versions/A/LaunchServices
    0x919cd000 - 0x919e1fff com.apple.speech.synthesis.framework 3.3 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x919ef000 - 0x91a2efff com.apple.ImageIO.framework 1.4.6 /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x91a44000 - 0x91b0cfff libcrypto.0.9.7.dylib /usr/lib/libcrypto.0.9.7.dylib
    0x91b5a000 - 0x91b6ffff libcups.2.dylib /usr/lib/libcups.2.dylib
    0x91b74000 - 0x91b91fff libJPEG.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91b96000 - 0x91c05fff libJP2.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x91c1c000 - 0x91c20fff libGIF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x91c22000 - 0x91c69fff libRaw.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRaw.dylib
    0x91c6e000 - 0x91cabfff libTIFF.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x91cb2000 - 0x91ccbfff libPng.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x91cd0000 - 0x91cd3fff libRadiance.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x91cd5000 - 0x91cd5fff com.apple.Accelerate 1.2.1 (Accelerate 1.2.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91cd7000 - 0x91db6fff com.apple.vImage 2.3 /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x91dbe000 - 0x91dddfff com.apple.Accelerate.vecLib 3.2.1 (vecLib 3.2.1) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x91e49000 - 0x91eb7fff libvMisc.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x91ec2000 - 0x91f56fff libvDSP.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x91f70000 - 0x924f8fff libBLAS.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x9252b000 - 0x92856fff libLAPACK.dylib /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x92886000 - 0x9290efff com.apple.DesktopServices 1.3.3 /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9294f000 - 0x92b7afff com.apple.Foundation 6.4.5 (567.26) /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x92c98000 - 0x92d76fff libxml2.2.dylib /usr/lib/libxml2.2.dylib
    0x92d96000 - 0x92e84fff libiconv.2.dylib /usr/lib/libiconv.2.dylib
    0x92e96000 - 0x92eb4fff libGL.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x92ebf000 - 0x92f19fff libGLU.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x92f37000 - 0x92f37fff com.apple.Carbon 10.4 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x92f39000 - 0x92f4dfff com.apple.ImageCapture 3.0 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92f65000 - 0x92f75fff com.apple.speech.recognition.framework 3.4 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x92f81000 - 0x92f96fff com.apple.securityhi 2.0 (203) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x92fa8000 - 0x9302ffff com.apple.ink.framework 101.2 (69) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x93043000 - 0x9304efff com.apple.help 1.0.3 (32) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x93058000 - 0x93085fff com.apple.openscripting 1.2.5 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x9309f000 - 0x930affff com.apple.print.framework.Print 5.0 (190.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x930bb000 - 0x93121fff com.apple.htmlrendering 1.1.2 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x93152000 - 0x931a1fff com.apple.NavigationServices 3.4.4 (3.4.3) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x931cf000 - 0x931ecfff com.apple.audio.SoundManager 3.9 /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x931fe000 - 0x9320bfff com.apple.CommonPanels 1.2.2 (73) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x93214000 - 0x93521fff com.apple.HIToolbox 1.4.6 (???) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x93670000 - 0x9367cfff com.apple.opengl 1.4.7 /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x93681000 - 0x936a1fff com.apple.DirectoryService.Framework 3.1 /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x936b6000 - 0x936b7fff com.apple.ServerControl 10.3.0 /System/Library/PrivateFrameworks/ServerControl.framework/Versions/A/ServerCont rol
    0x936b9000 - 0x936e9fff com.apple.MediaKit 8.6.1 (345.1.7) /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x93715000 - 0x93715fff com.apple.Cocoa 6.4 (???) /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x93717000 - 0x93d4afff com.apple.AppKit 6.4.4 (824.33) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x940d7000 - 0x94147fff com.apple.CoreData 80 /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x94180000 - 0x9424afff com.apple.audio.toolbox.AudioToolbox 1.4.1 /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9429e000 - 0x9429efff com.apple.audio.units.AudioUnit 1.4 /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x942a0000 - 0x94454fff com.apple.QuartzCore 1.4.7 /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x944a7000 - 0x944e4fff libsqlite3.0.dylib /usr/lib/libsqlite3.0.dylib
    0x944ec000 - 0x9453cfff libGLImage.dylib /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x94545000 - 0x94566fff com.apple.framework.Admin 1.4.1 /System/Library/PrivateFrameworks/Admin.framework/Versions/A/Admin
    0x9457a000 - 0x9457afff com.apple.AFPDefines 3.0.1 /System/Library/PrivateFrameworks/AFPDefines.framework/Versions/A/AFPDefines
    0x9457c000 - 0x945c0fff com.apple.bom 8.3 (86.1) /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x945cc000 - 0x94604fff com.apple.vmutils 4.0.0 (85) /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x94619000 - 0x94621fff com.apple.IntlPreferences 1.2 /System/Library/PrivateFrameworks/IntlPreferences.framework/Versions/A/IntlPref erences
    0x94628000 - 0x9463afff com.apple.frameworks.preferencepanes 11.0.1 /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x94647000 - 0x94663fff com.apple.securityfoundation 2.1 (24988) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x94677000 - 0x946bbfff com.apple.securityinterface 2.1 (24981) /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x946df000 - 0x946eefff libCGATS.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGATS.A.dylib
    0x946f6000 - 0x94702fff libCSync.A.dylib /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x94748000 - 0x94760fff li

  • Un-bound Matrix

    I have a problem about matrix, so I need a help, please =). I create a form using screen painter and I added a matrix, but I don't bind the columns in my matrix to a table, hence, when I fill my matrix, like this: oMatrix.Columns("Month").Cells(1).Specific.String = "January", it doesn't create any error, but what seems strange to me is as soon as the matrix is filled, it become empty again. Why should that happen? But it only happen when a column in a matrix is not bind to a table, actually this is the first time I am not binding my column to a table, when I bind the column, there is no problem in filling the cell, but when it un-bound, there came a problem.
    Is there anyone who can give me a solution? Thanks for your kindly attention =)

    Hello.
    You must bing columns in matrix because it will doesn`t work.
    You must bind column to UserDataSources or DBDataSources.
    Regards
    Kamil Wydra

  • Dbdatasource bound matrix and form.freeze bug

    I have a UDO, with a child talbe attached to it correctly.
    I've build a form to handle the UDO and it's child, in a bound matrix, and everything works fine.
    There are 2 comboboxes in the matrix. I want to update a combobox upon selecting in the other combobox. it works fine, yet it looks 'silly' since you can see the focus going to the other cobobox and then return to the original combobox. I thought the Form.Freeze would help me, but it doesnt.
    It seems that a dbdatasource-bound-matrix will not show it changes made while being in From.Freeze(True) state. And although changes are not show, they are made, meaning you can click the other combobox and see that the selected value is the one you programmatically selected, but the value inside the box remains as it was before evoking From.Freeze(True).

    Hi Avi,
    I have created a UDForm for a UDO (Document) with a Matrix for the child table.  I am able to Add the Header with the Child Lines into the DB.  My Problem is that when I need to Update the Document, i call it up, and all the data is shown.  I call "Matrix.AddRow()" and it DUPLICATES the Last line from the matrix into the new row.  So I delete the Duplicated Item Code and retype the new added Item Code and relevent columns.  When I click on "UPDATE" the system says that....
    "This Entry Already Exists in the Following Tables " @EB.........
    I've been searching the forum for posible answers and I cam across your posting saying that you were successfull in achieving what I am battling with.
    Could you please help me with this issue.
    I've posted a new Thread as follows.....
    [New Row in Matrix is a Duplicate and Cannot update Object with new Row;

  • Can I Upload Data from a table to matrix, while matrix is bound to another table??

    Hi Friends,
            right now i am uploading records to matrix row by row, but when records are very large in numbers then its taking too much time, so how can i upload these record directly to matrix without changing current data binding of the matrix.

    Hi Shrinivas,
    Can you please paste your code how your are copying your data to matrix ?
    Also have you tried this ?
    this.oDBDataSource= (DBDataSource)oForm.DataSources.DBDataSources.Add("@DETAILTABLE");
                                                                oForm.DataSources.DBDataSources.Item("@DETAILTABLE").InsertRecord(oDBDataSource.Size);
    this.oDBDataSource.SetValue("U_Field1", oDBDataSource.Size - 1, Convert.ToString(oDBDataSource.Size));
    this.oDBDataSource.SetValue("U_ICode", oDBDataSource.Size - 1, Convert.ToString(oRecSet.Fields.Item("ItemCode").Value));
    this.oDBDataSource1.SetValue("U_IName", oDBDataSource.Size - 1, Convert.ToString(oRecSet.Fields.Item("ItemName").Value));
    Finally use oMatrix.LoadFromDataSource()
    Hope it helps.
    Thanks & Regards
    Ankit Chauhan

Maybe you are looking for