2LIS_02_SCL transformation logic

Hi Guys,
There is a standard SAP DSO 0PUR_DS03 which is getting data from 2LIS_02_SCL.
In the transformation start routine, I could see alogic which is barring some records to DSO. The logic says:
LOOP AT SOURCE_PACKAGE into wa_package
    where ( BWVORG NE 001 AND
         BWVORG NE 002  AND
         BWVORG NE 011 AND
         BWVORG NE 012 AND
         BWVORG NE 021 AND
         BWVORG NE 022 ) OR
         umrez EQ 0 OR
         umren EQ 0.
      DELETE TABLE SOURCE_PACKAGE from wa_package.
      clear wa_package.
   ENDLOOP.
I want to understand what is the purpose behind this logic. Any documentation on the same?
Regards,
Gaurav

Hi Kanungo,
This field BWVORG (SAP BW - Transaction Key) you will find majorly in all the LO datasources . The value in this field will determine how other fields in the datasource gets populated .
You can check the below link :
http://help.sap.com/saphelp_sm32/helpdata/en/8d/bc383fe58d5900e10000000a114084/content.htm
The above link contains the explanation for the field BWVORG which exists in 2lis_02_scl  and how the value of other keyfigures are determined based on the value of this field .
Also check the note number : 684465 .
This note has the explanation as to what values BWVORG will have, depending on different document types .
Also you can see and maintain * SAP BW - Transaction Key* using the maintenance view : V_TMCLVBW .
This maintenance view consists of two tables : TMCLVBW (Transaction Key for SAP BW)
                                                                             TMCLVBWT (Texts for Transaction Key for SAP BW
In the above tables you will find SAP BW - Transaction Key entries for different application components of LO.
Hope the above reply was helpful.
Thanks & Regards,
Ashutosh Singh

Similar Messages

  • Transformation logic for char and keyfigure from source keyfigures and flag

    Hi All,
       My requirement is populate char and keyfigure values from source keyfigures and flag, which is like transformation of converting the Key Figure based structure to the accounts based structure. I am loading data from the cube1 to cube2,
    cube1 structure with sample data:
    Plant Furnace ZFurnace ZPlant1 Zplant2 Flag
    P01     Blank      0                56        73      P
    Blank     F01      335               0           0       F
    Target Cube str with sample data
    Plant  Furnace    FS(Char)   KYF   Flag
    P01     Blank         1               56       P
    Blank  F01            2               335    F
    P01      Blank         3               73      P
    ZPlant1, ZPlant2 and ZFurnace are the keyfigure tech.names.
    FS has master data:
    FScode  KYF            Flag
    1             ZPlant1        P
    2             ZFurnace     F
    3             Zplant2         P
    While loading data from the source cube1 I need to read FS master data and than fill FS code in target cube based on source Flag and  Key figure technical names.
    I would be greatly appreciate with points if anyone can help me in writing the ABAP logic. The challenging part for me is comparing key figure technical names in cube1 with the FS master data key figure values.
    Thanks.
    Baba.

    Hi All,
       Actually there will be 18 records in FS master data and there will not more than 18 Key figures. Is there any way I can hardcore the values and write small code.
    something like:
    if KYF = Zplant1.
         WA_FSCODE  = '1'.
       WA_EU = source_fields-KYF.
    WA_PLant = source_fields-plant.
    wa_furnace = source_fields-furnace.
    else
        if kyf = zplant2
    Please let me know the sample logic with code. I greatly appreciate with points..
    Regards
    Baba

  • Transformation logic for a scenario

    Hi Experts,
    Our scenario is:
    In DSO1 against doc A, there will be doc's created like B,C,D.
    Of these B,C,D only one will have follow up doc say E( E should be looked up on DSO2 with a common doc) created against doc C.
    A -> B
    A          -> C - > E
    A         - > D
    Requirement:
    If any of the 3 i.e. B, C or D have a followup doc i.e. E, then populate a constant say 'W' to Info object 'Status' against all the 3 i.e.  B, C, D.
    No rule that A, B, C, D, E will be created on the same day.
    Can anyone please let me know how to achive this through a transformation from DSO1 where all the B,C,D will be there and the E should be looked up on other DSO2.
    Thanks & Regards,
    Bhadri M.

    Hi,
    First let me mention what I actually understood from your example. Your DSO1 has fields as below
    Document1----Document2 Status
    A----
    B
    A----
    C
    A----
    D
    Similarly DSO2 has fields
    Document1----Document2
    C----
    E
    What you want in DSO1 is below
    Document1----Document2 Status
    A--B--
    W
    A--C--
    W
    A--D--
    W
    If this is the case, it can be achieved but would be a bit complex.
    Hopefully your datasource that fetches the data to DSO1 is a z datasource. Change your datasource logic in such a way that if for a document A followup document B is created on a day, it fetches the records for all the follow up documents that have been created for document A till date. i.e. A->B, A->C, A->D. This way the data coming to PSA would contain all the documents that have been created for A till date. Next, in the start routine you need to write routine to do following:
    Select * from DSO2 for all entries in source_package where document2 of DSO1 = document 1 of DSO2 into INT1.
    Then loop on source_package. Read from int1 for the document that are in source_package as follow up document. (i.e. to see whether C exists in int1). Once you find that a followup document exists in INT1, copy the main document from source_package into another internal table INT2 (copy A into it). This way in the loop you can collect all the main documents that have followup documents in DSO2.
    After the loop ends, start the loop on source_package again.
    Now, read whether document1 from source_package (A) exists in INT2 or not. If yes, update status as 'W'.
    Thats it.

  • Where to modify data transformation logic

    By default, there is a logic that concat user's fullname from firstname and lastname. I would like to ask where does this rule configure? I would like to modify this logic and add another logic for other attribute. Where should I configure?
    Thanks.

    I would like to do the same a Gerald. Has anyone created a custom tag that returns custom date format from BC4J. I actually am only viewing the date not actually inserting it back to the DB.
    I know that this will be available in the next release but that is still a while away.
    The code I am using is as follows:
    <jbo:ShowValue datasource="TableName" dataitem="LastUpdTs" ></jbo:ShowValue>
    null

  • End routine logic

    I have two options to populate values for two info - objects (both are attributes of 0Mat_Sales):
    1. Read Master data
    2. End routine logic
    The reason why I am toying with the second approach is because some of the transaction records do not have a value for Distribution Channel and Sales Org. We are
    therefore writing some end routine logic to populate these records with a suitable value.
    If I read from master data will the transformation logic also take into consideration the logic written to populate Distribution Channel and Sales Org or is there
    a possibility that this could be missed.
    In effect what is called first the logic that is written in the end routine or the reading from Master data?
    Thanks

    Hi Deo,
    Master data rading step will be performed first as it is executed for individual record and it is part of transformation. But the logic you are going to write is part of End routine and it will be executed for each data package at the end just before updating data to target.
    If you use both the methods then the logic written in End routine will overwrite the result calculated by Read master data.
    Regards,
    Durgesh.

  • Receiver based date transformation

    Hi,
    We have a scenario where we need to map the date to the  receiving databases. We have the same map going to oracle receiver and a mySQL receiver. The date formats of both the databases are different. How can this be handled within the same map ( like receiver based date transformation) or does it need to go throught the traditional route of different maps for different JDBC receivers? Any help is appreciated..
    Teresa

    Teresa,
    Yes, I have the same payload going across to both DB at the same time. THe payload to mySQL is failing because the date format is in oracle transformation. I was wondering whether this could be done without doing 2 different maps.
    Yes, you can do it in the same mapping.
    For two different receivers, you must be having two different Business Services? If yes, then get the values of receiver BS in your mapping and do a simple condition test. Apply the date transformation logic accordingly.
    For getting the Receiver Service name, you can either use the "Receiver" under "Constant" standard function or use the following UDF -
    String RcvService;
    java.util.Map map;
    map = container.getTransformationParameters();
    RcvService = (String) map.get(StreamTransformationConstants.RECEIVER_SERVICE);
    return RcvService;
    You can change the above code as per your requirement.
    Hope this helps.
    Regards,
    Neetesh

  • XML Simple Transformation with Name attribute

    Current logic for reference:
    ERS tag is presented in XML file as: <ERSFlag>X</ERSFlag>
    Transformation logic to populate ERS flag value into PO_item structure is as:
                      <tt:cond><ERSFlag>
                        <tt:value ref="$po_item.ers_flag"/>
                      </ERSFlag></tt:cond>
    New Changes:
    XML template with New tag: TaxField1. New Tag included as:
    - <TaxField1 name="GST" value="">
    - <MultiCurrencyMoney>
           <Transaction currency="CAD">400.0000000000000</Transaction>
           <Base currency="USD">380.68</Base>
           <Local currency="CAD">400.0000000000000</Local>
      </MultiCurrencyMoney>
    </TaxField1>
    I have added new field Taxfield1 with Char1 in structure po_item. I would need to Populate 'Y' to new field Taxfield1 in po_item structure based on the above XML tag.
    Could anyone please let me know the Tranformation code to populate 'Y' to new field Taxcode1 in po_item structure based on the above XML tag.
    Thanks in advance.

    Share solution with us. Thank you!!!

  • SAP ER: User Reconciliation Data Transformation

    Hi all,
    I need to transform data during user reconciliation from a SAP HR trusted source.
    I did everything as described at chapter *"4.5 Configuring Transformation of Data During User Reconciliation"*
    (http://download.oracle.com/docs/cd/E11223_01/doc.910/e11210/extnd_func.htm#CIHIHAJE)
    1. Write code that implements the required transformation logic in a Java class.
    2. Create a JAR file to hold the Java class.
    3. Upload jar into OIM database
    4. Edit&Save the Lookup.SAP.HRMS.ReconTransformation (applied for the Last Name field)
    5. Edit&Save Lookup.SAP.HRMS.Configuration
    Finally I also restarted the oim server.
    When the user reconciliation ends, I don't find any field (Last Name in my case) transformed and I cannot find any log message about my tranformation class.
    It seems that OIM (11g) doesn't invoke the transformation class: there is some additional task not described to follow?
    Some one has been able to transform data during SAP ER User Reconciliation? And if yes, how?
    Thanks a lot in advanced,
    Ettore

    Hi Gabriele
    Check the batch size system property. Only after the number of events reaches to that number, your recon events will be processed.
    Please run the scheduled job "Non Scheduled batch recon" to process the recon events immediately.
    Let me know the results.
    Regards
    user12841694

  • Transformation routine used for GR as at posting date (0GR_VAL_PD KF)

    HI all,
              I have problem in 2lis_02_scl transformation Routine where i am not getting corect data for GR as at posting date (0GR_Val_pd) KF.
    Can anyone tell me what routine shall i try to use.
    Thanks n Regards,
    Gaurav Sekhri

    HI Gaurav,
    The code which you have given does not specify the desired result which you want. Also one more thing you have written a code as follows:
    IF ( SOURCE_FIELDS-PROCESSKEY = '002' or  "WE-Wert
    SOURCE_FIELDS-PROCESSKEY = '012' or
    SOURCE_FIELDS-PROCESSKEY = '022' )
    AND SOURCE_FIELDS-BWAPPLNM EQ 'MM'.
    RESULT = SOURCE_FIELDS-CPPVLC.
    endif.
    What is the above condition does not satisfy. you need to specify a RESULT if the above condition is not met like.
    IF ( SOURCE_FIELDS-PROCESSKEY = '002' or "WE-Wert
    SOURCE_FIELDS-PROCESSKEY = '012' or
    SOURCE_FIELDS-PROCESSKEY = '022' )
    AND SOURCE_FIELDS-BWAPPLNM EQ 'MM'.
    RESULT = SOURCE_FIELDS-CPPVLC.
    ELSE.
    REULT  = " Your desired result if condition is not met".
    endif.
    Hope it helps.
    Regards,
    Satyam

  • Based on DB check I need to do transformation

    Hi,
    I am polling DB and transforming it to gtm.
    Ques is:
    I need to do transformation based on DB check ... If ITEM_ID exists in DB it should not do transformation for that particular ITEM_ID, The ITEM_ID's which are not present in the DB then it should do transformation ..
    Its urjunt requirement, plz do need full.
    Regards,
    Cherry

    If you are implementing this in OSB:
    Then in your XQuery you can use fn-bea:execute-sql() function to query the DB for existence of current ITEM ID within a if-else block and write transform logic in XQ accordingly.
    If you are implementing this in SOA Suite:
    Then in your XSLT you can use oraext:lookup-table() function within your XSLT to check the existence of current ITEM ID within a If node and write transform logic in XSLT accordingly.

  • Are there any transformation capabilities in the B2B 11g

    Does the Oracle 11g SOA Suite B2B provide any transformation capabilities internally, or by providing external Java collouts or some other external logic capability or is it necessary to use a SOA COmposite to do all transformation work?
    Does the EDIFECS XEngine, used by the Oracle SOA Suite 11g B2B at runtime, have hooks that can be used to configure custom transformation logic and associate it with specific trading partner agreements or channels?
    Thanks in advance
    Michael

    Hello Michael,
    You may use Java callouts with Oracle B2B for transformation purpose but it is not recommended to do heavy transformations in that. For light transformations you may use this. TP facing callouts are also supported.
    Please refer -
    http://download.oracle.com/docs/cd/E14571_01/integration.1111/e10229/callouts.htm#CHDEFBDG
    Does the EDIFECS XEngine, used by the Oracle SOA Suite 11g B2B at runtime, have hooks that can be used to configure custom transformation logic and associate it with specific trading partner agreements or channels?No. EDIFECS Xengine is used for translation purpose only. It uses ecs file for translation and validation. In short, it is for translation support.
    Regards,
    Anuj

  • Any hints on how to go from Requirement to Transformation Code?

    Hi Experts,
    I am trying to upgrade my skills in Transformation and reading some books on Transformations logic and I am getting lost. But when you bring in your practical guide it helps make it clear and I will appreciate some hints based your experience.
    1. Do you have any specific transformation requirement (from source to target) to share with me? And I will appreciate an explanation of the transformation requirement and transformation logic
    2. Is there a specific approach to converting the requirement to code? can you use a real-life case to explain it?
    3. Are there any best practices in converting requirements into codes?
    4. Is there a best practice for testing and validation of the transformation code?
    5. Any Dos and Don'ts in converting requirements into transformation logic?
    Thanks
    Edited by: AmandaBaah on Nov 9, 2011 8:55 PM

    Hi Amanda,
    I think you should start with the type of routines you can write
    start routine
    Field level Routine
    End Routine .
    Expert Routine
    There are lots of SDN articles available for the same .In forum you will find various scenarios and requirements comes in projects.
    1.Start and End Routine works on package so you need knowledge of  tables ,loops ,structures etc to write the code .
    They are good when you want to update multiple fields and want to implement complex logic.
    2.Field level routine works as one record at a time so its good when you want to do lookup etc for one field only .
    3.There are specific scenario when you can use a specific routine and it also depend greatly on your business requirement ,efficiency and performance of code  ,your comfort level .
    ex: Write start routine if
    you want processing of multiple fields at source data without filtering .
    You want to implement some logic based on which you need to update some more records at field level or at end routine .    *  You want to delete unwanted records.
    You  are doing master data lookup at field level routine so selecting master data in an internal table should be done at start routine.
    Write field routine if
    Only one field need to be update  and logic is simple .
    You want to change record by record.
    You have lookup .
    You want to further implement some logic at  end routine based on changes done at field level routine   
    Write End routine if
    It is final logic that you want to implement .
    You have multiple fields to update
    start routine and end routine can be used vice verse .Use them based on your requirement and efficiency of code.
    4.These threads will be helpful for you :
    Scenario examples for Lookup
    Re: What is the use of Look Ups?
    Sample Routine Code
    Re: Start routine - how to....?
    Re: Routine
    ABAP in BW
    Re: Abap for BW
    Hope this will be helpful .
    Regards,
    Jaya Tiwari

  • Conversion logic question

    Hi All,
    Writing transformation logic and have below challenge.  I have lets say 100 accounts coming as  ACTXXXX
    During data load i have to convert all the account ids to ACTXXXXYYYY  except for say 5 accounts. For those 5 accounts we have specific rules like
    ACTABCD  should become ACTABCD1234
    ACTABCE  should become ACTABCE2345  so on for 5 accounts. Rest all other accounts should be ACTXXXXYYYY
    Is it possible ?

    yes it is possible . You might need to list the hard coded ones first and then the rest  as below,in your conversion file
    External      Internal
    ACTABCD     ACTABCD1234
    ACTABCE     ACTABCD2345
    ACT????      ACT????YYYY
    Hope this helps.

  • Copy transformations and DTPs

    Is there a way to copy one Transformation to another? Is there also a way to copy one DTP to another?

    Transformations can be copied, but DTPs cannot be copied. To copy a Transformation, do the following:
    1) Right-click on the Transformation that is to be copied
    2) Select the Object Type and enter the Name of the source and target for the new Transformation
    3) Hit Enter
    4) Make any necessary updates to the mappings and transformational logic, as needed

  • Logic crashes during transposition

    Whenever I click the transposition function accessed through Piano Roll ---> Functions ---> Transform, Logic "unexpectedly crashes" and shuts off presenting me with an error report.
    There is no reason this should be happening. I have just upgraded to Snow Leopard so I'm hoping it's just an issue with that, which will hopefully be resolved with a patch in the near future.
    I have tried removing logic and reinstalling to no avail.
    Can anyone shed any light on the issue please? it's driving me mad.

    Here is my error report:
    Process: Logic Pro [6012]
    Path: /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    Identifier: com.apple.logic.pro
    Version: 8.0.2 (1502.22)
    Build Info: Logic-15022200~9
    Code Type: X86 (Native)
    Parent Process: launchd [90]
    Date/Time: 2009-11-23 02:21:07.265 +0000
    OS Version: Mac OS X 10.6.2 (10C540)
    Report Version: 6
    Interval Since Last Report: 19053 sec
    Crashes Since Last Report: 7
    Per-App Interval Since Last Report: 7094 sec
    Per-App Crashes Since Last Report: 7
    Anonymous UUID: 215A867B-FD97-4008-8173-992438A989B1
    Exception Type: EXCBADACCESS (SIGABRT)
    Exception Codes: KERNINVALIDADDRESS at 0x00000000b7e00000
    Crashed Thread: 0 Dispatch queue: com.apple.main-thread
    Application Specific Information:
    abort() called
    Thread 0 Crashed: Dispatch queue: com.apple.main-thread
    0 libSystem.B.dylib 0x98960732 __kill + 10
    1 libSystem.B.dylib 0x98960724 kill$UNIX2003 + 32
    2 libSystem.B.dylib 0x989f398d raise + 26
    3 libSystem.B.dylib 0x98a099d9 __abort + 124
    4 libSystem.B.dylib 0x98a09a55 abortreportnp + 0
    5 com.apple.logic.pro 0x002b37ff 0x1000 + 2828287
    6 libSystem.B.dylib 0x989659bb _sigtramp + 43
    7 ??? 0x0000000b 0 + 11
    8 com.apple.CoreFoundation 0x9828f8bc _CFBasicHashFindBucket1 + 444
    9 com.apple.CoreFoundation 0x98297aac CFBasicHashFindBucket + 252
    10 com.apple.CoreFoundation 0x98297973 CFDictionaryGetValue + 131
    11 com.apple.CoreFoundation 0x982df58e CFBundleCopyLocalizedString + 286
    12 com.apple.Foundation 0x923658b8 -[NSBundle localizedStringForKey:value:table:] + 89
    13 com.apple.logic.pro 0x003ece7d 0x1000 + 4111997
    14 com.apple.logic.pro 0x001a7103 0x1000 + 1728771
    15 com.apple.logic.pro 0x003e4845 0x1000 + 4077637
    16 com.apple.logic.pro 0x0055908e 0x1000 + 5603470
    17 com.apple.AppKit 0x935cef86 -[NSApplication sendAction:to:from:] + 112
    18 com.apple.prokit 0x0210d308 -[NSProApplication sendAction:to:from:] + 127
    19 com.apple.logic.pro 0x004dfd5a 0x1000 + 5107034
    20 com.apple.AppKit 0x935cee39 -[NSMenuItem _corePerformAction] + 435
    21 com.apple.AppKit 0x935ceb2a -[NSCarbonMenuImpl performActionWithHighlightingForItemAtIndex:] + 174
    22 com.apple.AppKit 0x935cea16 -[NSMenu performActionForItemAtIndex:] + 65
    23 com.apple.AppKit 0x935ce9c9 -[NSMenu _internalPerformActionForItemAtIndex:] + 50
    24 com.apple.AppKit 0x935ce92f -[NSMenuItem _internalPerformActionThroughMenuIfPossible] + 97
    25 com.apple.AppKit 0x935ce873 -[NSCarbonMenuImpl _carbonCommandProcessEvent:handlerCallRef:] + 336
    26 com.apple.AppKit 0x935c2f79 NSSLMMenuEventHandler + 404
    27 com.apple.HIToolbox 0x958e8e29 DispatchEventToHandlers(EventTargetRec*, OpaqueEventRef*, HandlerCallRec*) + 1567
    28 com.apple.HIToolbox 0x958e80f0 SendEventToEventTargetInternal(OpaqueEventRef*, OpaqueEventTargetRef*, HandlerCallRec*) + 411
    29 com.apple.HIToolbox 0x9590a981 SendEventToEventTarget + 52
    30 com.apple.HIToolbox 0x95936e3b SendHICommandEvent(unsigned long, HICommand const*, unsigned long, unsigned long, unsigned char, void const*, OpaqueEventTargetRef*, OpaqueEventTargetRef*, OpaqueEventRef**) + 448
    31 com.apple.HIToolbox 0x9595bb20 SendMenuCommandWithContextAndModifiers + 66
    32 com.apple.HIToolbox 0x9595bad7 SendMenuItemSelectedEvent + 121
    33 com.apple.HIToolbox 0x9595b9d3 FinishMenuSelection(SelectionData*, MenuResult*, MenuResult*) + 152
    34 com.apple.HIToolbox 0x95adcb82 PopUpMenuSelectCore(MenuData*, Point, double, Point, unsigned short, unsigned int, Rect const*, unsigned short, unsigned long, Rect const*, Rect const*, __CFString const*, OpaqueMenuRef**, unsigned short*) + 1773
    35 com.apple.HIToolbox 0x95adced0 _HandlePopUpMenuSelection7 + 678
    36 com.apple.AppKit 0x9385861e _NSSLMPopUpCarbonMenu3 + 3937
    37 com.apple.prokit 0x0218b720 -[NSProCarbonMenuImpl popUpMenu:atLocation:width:forView:withSelectedItem:withFont:withFlags:withOpti ons:] + 159
    38 com.apple.AppKit 0x93ab02a8 -[NSSegmentedCell _trackSelectedItemMenu] + 352
    39 com.apple.AppKit 0x936a8b61 -[NSSegmentedCell trackMouse:inRect:ofView:untilMouseUp:] + 1469
    40 com.apple.prokit 0x02186c63 -[NSProSegmentedCell trackMouse:inRect:ofView:untilMouseUp:] + 181
    41 com.apple.AppKit 0x936a7f07 -[NSControl mouseDown:] + 812
    42 com.apple.AppKit 0x936a5f10 -[NSWindow sendEvent:] + 5549
    43 com.apple.prokit 0x0212c736 -[NSProWindow sendEvent:] + 264
    44 com.apple.logic.pro 0x005c341b 0x1000 + 6038555
    45 com.apple.AppKit 0x935beb2f -[NSApplication sendEvent:] + 6431
    46 com.apple.logic.pro 0x004df8a6 0x1000 + 5105830
    47 com.apple.logic.pro 0x004d968e 0x1000 + 5080718
    48 com.apple.logic.pro 0x004df87e 0x1000 + 5105790
    49 com.apple.AppKit 0x935524ff -[NSApplication run] + 917
    50 com.apple.prokit 0x0210da01 NSProApplicationMain + 326
    51 com.apple.logic.pro 0x00003942 0x1000 + 10562
    52 com.apple.logic.pro 0x00003869 0x1000 + 10345
    Thread 1: Dispatch queue: com.apple.libdispatch-manager
    0 libSystem.B.dylib 0x989260ea kevent + 10
    1 libSystem.B.dylib 0x98926804 dispatch_mgrinvoke + 215
    2 libSystem.B.dylib 0x98925cc3 dispatch_queueinvoke + 163
    3 libSystem.B.dylib 0x98925a68 dispatch_workerthread2 + 234
    4 libSystem.B.dylib 0x989254f1 pthreadwqthread + 390
    5 libSystem.B.dylib 0x98925336 start_wqthread + 30
    Thread 2:
    0 libSystem.B.dylib 0x988ff8da machmsgtrap + 10
    1 libSystem.B.dylib 0x98900047 mach_msg + 68
    2 com.apple.CoreFoundation 0x982ba77f __CFRunLoopRun + 2079
    3 com.apple.CoreFoundation 0x982b9864 CFRunLoopRunSpecific + 452
    4 com.apple.CoreFoundation 0x982bf7a4 CFRunLoopRun + 84
    5 com.apple.DVCPROHDMuxer 0x1c4980fb AVS::DestroyAVCDeviceController(AVS::AVCDeviceController*) + 297
    6 libSystem.B.dylib 0x9892cfbd pthreadstart + 345
    7 libSystem.B.dylib 0x9892ce42 thread_start + 34
    Thread 3:
    0 libSystem.B.dylib 0x9891e856 select$DARWIN_EXTSN + 10
    1 com.apple.CoreFoundation 0x982f9ddd __CFSocketManager + 1085
    2 libSystem.B.dylib 0x9892cfbd pthreadstart + 345
    3 libSystem.B.dylib 0x9892ce42 thread_start + 34
    Thread 4:
    0 libSystem.B.dylib 0x988ff8da machmsgtrap + 10
    1 libSystem.B.dylib 0x98900047 mach_msg + 68
    2 com.apple.audio.midi.CoreMIDI 0x02450f31 XServerMachPort::ReceiveMessage(int&, void*, int&) + 155
    3 com.apple.audio.midi.CoreMIDI 0x0246f8fe MIDIProcess::RunMIDIInThread() + 150
    4 com.apple.audio.midi.CoreMIDI 0x02452149 XThread::RunHelper(void*) + 17
    5 com.apple.audio.midi.CoreMIDI 0x02451b16 CAPThread::Entry(CAPThread*) + 96
    6 libSystem.B.dylib 0x9892cfbd pthreadstart + 345
    7 libSystem.B.dylib 0x9892ce42 thread_start + 34
    Thread 5:
    0 libSystem.B.dylib 0x988ff93a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9892d445 pthread_condwait + 1066
    2 libSystem.B.dylib 0x9895c028 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x02f40235 TSWaitOnConditionTimedRelative + 242
    4 ...ple.CoreServices.CarbonCore 0x02f3ff73 TSWaitOnSemaphoreCommon + 511
    5 ...ple.CoreServices.CarbonCore 0x02f6416b TimerThread + 97
    6 libSystem.B.dylib 0x9892cfbd pthreadstart + 345
    7 libSystem.B.dylib 0x9892ce42 thread_start + 34
    Thread 6:
    0 libSystem.B.dylib 0x988ff916 semaphorewaittrap + 10
    1 libSystem.B.dylib 0x9892d54f pthread_condwait + 1332
    2 libSystem.B.dylib 0x98976503 pthreadcondwait + 48
    3 com.apple.logic.pro 0x001159f7 0x1000 + 1133047
    4 libSystem.B.dylib 0x9892cfbd pthreadstart + 345
    5 libSystem.B.dylib 0x9892ce42 thread_start + 34
    Thread 7:
    0 libSystem.B.dylib 0x988ff93a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9892d445 pthread_condwait + 1066
    2 libSystem.B.dylib 0x9895c028 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x02f40235 TSWaitOnConditionTimedRelative + 242
    4 ...ple.CoreServices.CarbonCore 0x02f3ff73 TSWaitOnSemaphoreCommon + 511
    5 ...ple.CoreServices.CarbonCore 0x02fd28c2 DeferredTaskThread + 84
    6 libSystem.B.dylib 0x9892cfbd pthreadstart + 345
    7 libSystem.B.dylib 0x9892ce42 thread_start + 34
    Thread 8:
    0 libSystem.B.dylib 0x988ff93a semaphoretimedwait_signaltrap + 10
    1 libSystem.B.dylib 0x9892d445 pthread_condwait + 1066
    2 libSystem.B.dylib 0x9895c028 pthreadcond_timedwait_relativenp + 47
    3 ...ple.CoreServices.CarbonCore 0x02f40235 TSWaitOnConditionTimedRelative + 242
    4 ...ple.CoreServices.CarbonCore 0x02f3ff73 TSWaitOnSemaphoreCommon + 511
    5 ...ple.CoreServices.CarbonCore 0x02f3fc09 AsyncFileThread(void*) + 102
    6 libSystem.B.dylib 0x9892cfbd pthreadstart + 345
    7 libSystem.B.dylib 0x9892ce42 thread_start + 34
    Thread 9:
    0 libSystem.B.dylib 0x9892d806 _semwaitsignal + 10
    1 libSystem.B.dylib 0x98959441 nanosleep$UNIX2003 + 188
    2 libSystem.B.dylib 0x9895937f usleep$UNIX2003 + 61
    3 com.apple.AppKit 0x936fa1ed -[NSUIHeartBeat _heartBeatThread:] + 2039
    4 com.apple.Foundation 0x9235e8d8 -[NSThread main] + 45
    5 com.apple.Foundation 0x9235e888 _NSThread__main_ + 1499
    6 libSystem.B.dylib 0x9892cfbd pthreadstart + 345
    7 libSystem.B.dylib 0x9892ce42 thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
    eax: 0x00000000 ebx: 0x98a09969 ecx: 0xbfffdb6c edx: 0x98960732
    edi: 0x03539bd0 esi: 0x1de4d850 ebp: 0xbfffdb88 esp: 0xbfffdb6c
    ss: 0x0000001f efl: 0x00000282 eip: 0x98960732 cs: 0x00000007
    ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
    cr2: 0x01e5c000
    Binary Images:
    0x1000 - 0x104afe3 com.apple.logic.pro 8.0.2 (1502.22) <19BC08AB-9FBE-4C66-9085-D8BF80C8F084> /Applications/Logic Pro.app/Contents/MacOS/Logic Pro
    0x17c1000 - 0x17decc7 com.apple.XSKey 1.0.0 (52.4) /Applications/Logic Pro.app/Contents/Frameworks/XSKey.framework/Versions/A/XSKey
    0x17ed000 - 0x1803e6f com.apple.XAudioUnits 1.0.0 (91.7) /Applications/Logic Pro.app/Contents/Frameworks/XAudioUnits.framework/Versions/A/XAudioUnits
    0x1812000 - 0x183dff7 +MusicAudioDataServices ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/MusicAudioDataServices.framework/Versions/A/MusicAu dioDataServices
    0x1852000 - 0x18f0291 com.apple.eloop 3.1.0 (100.4) /Applications/Logic Pro.app/Contents/Frameworks/ELoop.framework/Versions/A/ELoop
    0x198e000 - 0x19fb23f com.apple.LogicLoopBrowser 7.2 (117.4) /Applications/Logic Pro.app/Contents/Frameworks/LogicLoopBrowser.framework/Versions/A/LogicLoopBrow ser
    0x1a2b000 - 0x1ae0fe7 libcrypto.0.9.7.dylib ??? (???) <4917E4F2-817F-5AC4-3FBE-54BC96360448> /usr/lib/libcrypto.0.9.7.dylib
    0x1b26000 - 0x1b31fec +libaafintp.dylib ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/libaafintp.dylib
    0x1b40000 - 0x1b92fdf +libaafpgapi.dylib ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/libaafpgapi.dylib
    0x1bc5000 - 0x1dc9fe7 +libcom-api.dylib ??? (???) /Applications/Logic Pro.app/Contents/Frameworks/libcom-api.dylib
    0x20eb000 - 0x229efeb com.apple.prokit 5.0.1 (906) <B5BA53AD-9CB2-8C6B-09D7-A71FEC4C2FEE> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x235d000 - 0x23e4f56 com.apple.ecore 1.1.0 (291.7) /Applications/Logic Pro.app/Contents/Frameworks/ECore.framework/Versions/A/ECore
    0x2441000 - 0x248dfff com.apple.audio.midi.CoreMIDI 1.7 (42) <670CB7F9-AA00-86F3-6623-E1335F7AEA83> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x24b2000 - 0x2530fff com.apple.DotMacKit 21 (3.0.1L) /Applications/Logic Pro.app/Contents/Frameworks/DotMacKit.framework/Versions/A/DotMacKit
    0x258d000 - 0x25a6ff7 com.apple.EHardwareSupport 1.0.0 (163.5) /Applications/Logic Pro.app/Contents/Frameworks/EHardwareSupport.framework/Versions/A/EHardwareSupp ort
    0x25b1000 - 0x25ccfff com.apple.LogicFileBrowser 1.0.0 (126.7) /Applications/Logic Pro.app/Contents/Frameworks/LogicFileBrowser.framework/Versions/A/LogicFileBrow ser
    0x25de000 - 0x25e0ff7 com.apple.XLogicImages 1.0.0 (117.4) /Applications/Logic Pro.app/Contents/Frameworks/XLogicImages.framework/Versions/A/XLogicImages
    0x25e5000 - 0x260efef com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <C5992CBA-0496-9681-A7CA-A932F2BC1CB9> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x261f000 - 0x262eff7 com.apple.AERegistration 1.2 (72) /Applications/Logic Pro.app/Contents/Frameworks/AERegistration.framework/Versions/A/AERegistration
    0x2640000 - 0x2647ff3 com.apple.AEProfiling 1.2 (18) /Applications/Logic Pro.app/Contents/Frameworks/AEProfiling.framework/Versions/A/AEProfiling
    0x264f000 - 0x2e324b7 com.apple.CoreGraphics 1.536.12 (???) <263EB5FC-DEAD-7C5B-C486-EC86C173F952> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x2ef9000 - 0x3218fe7 com.apple.CoreServices.CarbonCore 861.2 (861.2) <A9077470-3786-09F2-E0C7-F082B7F97838> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x37bd000 - 0x37ebff7 com.apple.prokit.SnowLeopardPanels 5.0.1 (906) <200EE10C-484D-A71C-ADFF-4DCC8411C31D> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/SnowLeo pardPanels.bundle/Contents/MacOS/SnowLeopardPanels
    0x1c0b8000 - 0x1c0c5ff7 com.apple.iokit.IOHIDLib 1.6.1 (1.6.1) <6402BAEB-0141-9AD9-54D0-E49203DAF1EC> /System/Library/Extensions/IOHIDFamily.kext/Contents/PlugIns/IOHIDLib.plugin/Co ntents/MacOS/IOHIDLib
    0x1c0d8000 - 0x1c0dcff3 com.apple.audio.AudioIPCPlugIn 1.1.2 (1.1.2) <C36F9194-6DB6-0AA8-4839-71191EEBAC65> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x1c0e1000 - 0x1c0e7ffb com.apple.audio.AppleHDAHALPlugIn 1.7.9 (1.7.9a4) <A686EC36-C3D5-131F-46D2-F174F5477C77> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x1c278000 - 0x1c2cefd6 com.apple.DVCPROHDAudio 1.3 (1.3) /Library/Audio/Plug-Ins/HAL/DVCPROHDAudio.plugin/Contents/MacOS/DVCPROHDAudio
    0x1c31e000 - 0x1c326ff7 com.apple.proapps.mrcheckpro 1.4 (202) /Applications/Logic Pro.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MRCheckPro
    0x1c36d000 - 0x1c370fff com.apple.LiveType.component 2.1.3 (2.1.3) /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0x1c376000 - 0x1c3dbfde com.apple.LiveType.framework 2.1.3 (2.1.3) /System/Library/PrivateFrameworks/LiveType.framework/Versions/A/LiveType
    0x1c3fb000 - 0x1c450fdf +com.DivXInc.DivXDecoder 6.8.3.5 (6.8.3.5) /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x1c47e000 - 0x1c481ff3 +com.divx.divxtoolkit 1.0 (1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0x1c486000 - 0x1c4d0fec com.apple.DVCPROHDMuxer 1.3 (1.3) /Library/QuickTime/DVCPROHDMuxer.component/Contents/MacOS/DVCPROHDMuxer
    0x1c777000 - 0x1c793ff7 GLRendererFloat ??? (???) <8FF7B576-512C-C2F8-4C0C-967FB3D9EEA2> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x1c7d1000 - 0x1c7d3ff7 com.apple.gal_common 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/common.res/Contents/MacOS/common
    0x1c7da000 - 0x1c7dcff7 com.apple.gal_ebp 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/ebp.res/Contents/MacOS/ebp
    0x1ca00000 - 0x1ca02fff com.apple.gal_egt 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/egt.res/Contents/MacOS/egt
    0x1d4a1000 - 0x1d612ff7 GLEngine ??? (???) <D336658A-F6DB-6D61-9CA6-04299E7D5420> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x1d643000 - 0x1da49fef libclh.dylib ??? (???) <3ACD0D90-B1E9-59DA-729E-7E97092F9A24> /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/libclh.dyl ib
    0x1ddb6000 - 0x1ddb9ff7 com.apple.gal_mutapdel 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/mutapdel.res/Contents/MacOS/mutapdel
    0x1e6bd000 - 0x1e6c3ff7 com.apple.gal_anvil 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/anvil.res/Contents/MacOS/anvil
    0x1e7bc000 - 0x1e7c5fff com.apple.gal_efx 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/efx.res/Contents/MacOS/efx
    0x1e9e2000 - 0x1e9e901f com.apple.gal_efx2 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/efx2.res/Contents/MacOS/efx2
    0x1ebdb000 - 0x1ebdeff7 com.apple.gal_emx 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/emx.res/Contents/MacOS/emx
    0x1eca8000 - 0x1ecaaff7 com.apple.gal_es1 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/es1.res/Contents/MacOS/es1
    0x1ed0d000 - 0x1ed10ff7 com.apple.gal_es2 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/es2.res/Contents/MacOS/es2
    0x1edab000 - 0x1edaeff7 com.apple.gal_esp 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/esp.res/Contents/MacOS/esp
    0x1ee2b000 - 0x1ee2dff7 com.apple.gal_esu 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/esu.res/Contents/MacOS/esu
    0x1ee80000 - 0x1ee83ff7 com.apple.gal_evb3 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/evb3.res/Contents/MacOS/evb3
    0x1ef13000 - 0x1ef15ff7 com.apple.gal_evd6 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/evd6.res/Contents/MacOS/evd6
    0x1ef7d000 - 0x1ef80fff com.apple.gal_evoc 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/evoc.res/Contents/MacOS/evoc
    0x1f073000 - 0x1f075ff7 com.apple.gal_evp88 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/evp88.res/Contents/MacOS/evp88
    0x1f1c6000 - 0x1f1c9ff7 com.apple.gal_exs24 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/exs24.res/Contents/MacOS/exs24
    0x1f241000 - 0x1f247fff com.apple.gal_revolver 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/revolver.res/Contents/MacOS/revolver
    0x1f41e000 - 0x1f421fff com.apple.gal_sphere 1.0 (149.4) /Applications/Logic Pro.app/Contents/Resources/sphere.res/Contents/MacOS/sphere
    0x2e285000 - 0x2e4a8fe7 com.apple.audio.codecs.Components 2.0 (2.0) <064E9181-38CC-C2D3-070D-4D162D2903E8> /System/Library/Components/AudioCodecs.component/Contents/MacOS/AudioCodecs
    0x8f611000 - 0x8fa52fe7 com.apple.GeForce8xxxGLDriver 1.6.6 (6.0.6) <205911D0-3CE3-D53C-289B-319A4E4BA153> /System/Library/Extensions/GeForce8xxxGLDriver.bundle/Contents/MacOS/GeForce8xx xGLDriver
    0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <211AF0DD-42D9-79C8-BB6A-1F4BEEF4B4AB> /usr/lib/dyld
    0x9002e000 - 0x90030ff7 libRadiance.dylib ??? (???) <462903E2-2E77-FAE5-4ED6-829AAB1980A4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x90031000 - 0x9010bff3 com.apple.DesktopServices 1.5.3 (1.5.3) <DA02AC94-7B0C-BD75-2305-C46A307A5FB0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x9010c000 - 0x9017bff7 libvMisc.dylib ??? (???) <59243A8C-2B98-3E71-8032-884D4853E79F> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9017c000 - 0x901b1ff7 libGLImage.dylib ??? (???) <A6007BF7-BF3C-96DC-C435-849C6B88C58A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x901b2000 - 0x901b8fff com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x90202000 - 0x9020cffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <EC0E69C8-A121-70E8-43CF-E6FC4C7779EC> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x9020d000 - 0x902bafe7 libobjc.A.dylib ??? (???) <DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1> /usr/lib/libobjc.A.dylib
    0x902c8000 - 0x9033ffe3 com.apple.backup.framework 1.2 (1.2) <411D14B1-0E2D-25FF-F329-CE92C70DDEC3> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x90340000 - 0x90389fe7 libTIFF.dylib ??? (???) <5864AE5B-EAEB-F8B6-18FB-3D27B7895A4C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x9038a000 - 0x90393ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90394000 - 0x90430fe7 com.apple.ApplicationServices.ATS 4.1 (???) <EA26375D-8276-9671-645D-D28CAEC95292> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x90431000 - 0x9055dfe3 com.apple.audio.toolbox.AudioToolbox 1.6.1 (1.6.1) <C226DF5C-35B0-98B8-95ED-FE5FE24E62C8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x9055e000 - 0x90561ff7 libCoreVMClient.dylib ??? (???) <A89D7A78-8FB0-2BDF-30DB-A35E04A6186B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x90562000 - 0x90563ff7 com.apple.audio.units.AudioUnit 1.6.1 (1.6.1) <3A08510C-07F7-1A09-D6ED-1A488203ACCC> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90564000 - 0x9057fff7 libPng.dylib ??? (???) <3F8682CD-C05B-607D-96E7-767646C77DB8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x90580000 - 0x90582ff7 com.apple.securityhi 4.0 (36638) <962C66FB-5BE9-634E-0810-036CB340C059> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x90583000 - 0x90597ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x9059e000 - 0x90694ff7 libGLProgrammability.dylib ??? (???) <82D03736-D30C-C013-BBB1-20ED9687D47F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x90695000 - 0x90698fe7 libmathCommon.A.dylib ??? (???) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x90ec4000 - 0x90ed1ff7 libbz2.1.0.dylib ??? (???) <495732E1-2AC4-44FC-E633-4CBCC503B924> /usr/lib/libbz2.1.0.dylib
    0x90ed2000 - 0x90edfff7 com.apple.opengl 1.6.5 (1.6.5) <0AE8B897-8A80-2C14-D6FC-DC21AC423234> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x90ee0000 - 0x90fbdff7 com.apple.vImage 4.0 (4.0) <64597E4B-F144-DBB3-F428-0EC3D9A1219E> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x910b3000 - 0x910f7fe7 com.apple.Metadata 10.6.2 (507.4) <DBCBAE7D-7B34-7806-C0B9-1E6E6D45562F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x910f8000 - 0x91105ff7 com.apple.NetFS 3.2.1 (3.2.1) <5E61A00B-FA16-9D99-A064-47BDC5BC9A2B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x91106000 - 0x91368ff7 com.apple.security 6.0 (36910) <32B8FA26-CD73-4C45-C15A-EF8406D51FCC> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x91370000 - 0x917a5ff7 libLAPACK.dylib ??? (???) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x917a6000 - 0x917b2ff7 libkxld.dylib ??? (???) <3D2C5BA3-6A8D-C861-B346-0E19942D9AF1> /usr/lib/system/libkxld.dylib
    0x917b3000 - 0x9181dfe7 libstdc++.6.dylib ??? (???) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x9181e000 - 0x9185bff7 com.apple.SystemConfiguration 1.10.1 (1.10.1) <BA676C76-6AAD-F630-626D-B9248535294D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9185c000 - 0x918acff7 com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x918ad000 - 0x91a88ff3 libType1Scaler.dylib ??? (???) <F9FEA41E-F079-87B8-04A9-7FF3B2931B79> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libType1Scaler.dylib
    0x91a89000 - 0x91b26fe3 com.apple.LaunchServices 362 (362) <8BE1C1A1-BF71-CE07-F3FB-6057D47AF461> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91b27000 - 0x91c55fe7 com.apple.CoreData 102.1 (250) <F33FF4A1-D7F9-4F6D-3153-E5F2588479EB> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x91c56000 - 0x91c56ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x91d0a000 - 0x92003fef com.apple.QuickTime 7.6.3 (1591.3) <803CC5FD-2369-83B5-795D-A8963620EFAC> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x92080000 - 0x92081ff7 com.apple.TrustEvaluationAgent 1.1 (1) <6C04C4C5-667E-2EBE-EB96-5B67BD4B2185> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x92082000 - 0x922adff3 com.apple.QuartzComposer 4.1 (156.10) <24293329-50D7-D12F-51B3-57976A4E52B1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x922ae000 - 0x92346fe7 edu.mit.Kerberos 6.5.9 (6.5.9) <73EC847F-FF44-D542-2AD5-97F6C8D48F0B> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x92347000 - 0x92347ff7 com.apple.Accelerate 1.5 (Accelerate 1.5) <F642E7A0-3720-FA19-0190-E6DBD9EF2D9B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x92348000 - 0x925b8ffb com.apple.Foundation 6.6.1 (751.14) <CD815A50-BB33-5AA1-DD73-A5B07D394DDA> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x925b9000 - 0x93547ff7 com.apple.QuickTimeComponents.component 7.6.3 (1591.3) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x93548000 - 0x93e26ff7 com.apple.AppKit 6.6.3 (1038.25) <72A9AA47-8DCB-DB07-64F5-F837E98C62D8> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x93e27000 - 0x93f29fef com.apple.MeshKitIO 1.0 (49.0) <E4436373-BF5D-9644-F8B7-B72762BEC08B> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x94041000 - 0x9411cff7 com.apple.DiscRecording 5.0.3 (5030.4.2) <CC86EBA6-5E48-32C0-77AE-81479DFF6D4A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9411d000 - 0x9419dfeb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x9419e000 - 0x9419eff7 com.apple.Accelerate.vecLib 3.5 (vecLib 3.5) <3E039E14-2A15-56CC-0074-EE59F9FBB913> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x941a7000 - 0x94260fe7 libsqlite3.dylib ??? (???) <16CEF8E8-8C9A-94CD-EF5D-05477844C005> /usr/lib/libsqlite3.dylib
    0x945f0000 - 0x94640fe7 libGLU.dylib ??? (???) <659ADCA2-10EC-59BD-1B0A-4928A965F1D1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x94641000 - 0x946c3ffb SecurityFoundation ??? (???) <29C27E0E-B2B3-BF6B-B1F8-5783B8B01535> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x946c4000 - 0x947e8ff7 com.apple.CoreAUC 5.03.2 (5.03.2) <38C77DF1-6F98-4ABF-BE8F-ADA70E9C622D> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x947e9000 - 0x947fbff7 com.apple.MultitouchSupport.framework 204.9 (204.9) <B639F02B-33CC-150C-AE8C-1007EA7648F9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x947fc000 - 0x9480dff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x9480e000 - 0x9484dff7 com.apple.ImageCaptureCore 1.0 (1.0) <D8767350-A10D-B6B5-3A8D-05888A7758ED> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x9485e000 - 0x94869ff7 libCSync.A.dylib ??? (???) <9292E6E3-70C1-1DD7-4213-1044F0FA8381> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x948ac000 - 0x948c8fe3 com.apple.openscripting 1.3.1 (???) <DA16DE48-59F4-C94B-EBE3-7FAF772211A2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x948c9000 - 0x9495afe7 com.apple.print.framework.PrintCore 6.1 (312.3) <6D4322AF-703C-CC19-77B4-53E6D3BB18D4> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x95144000 - 0x951b8fef com.apple.CoreSymbolication 2.0 (23) <8A04EA5F-83F8-5E15-B2E0-8A727C9C4E8B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x951b9000 - 0x951cdfe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x952ad000 - 0x956c3ff7 libBLAS.dylib ??? (???) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x956fe000 - 0x958e0fff com.apple.imageKit 2.0.1 (1.0) <3CD99122-4DC8-00CE-4BD7-E3E1E1C71C30> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x958e1000 - 0x95c04fef com.apple.HIToolbox 1.6.2 (???) <E02640B9-7BC3-A4B4-6202-9E4127DDFDD6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x95c05000 - 0x95c2dff7 libxslt.1.dylib ??? (???) <769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF> /usr/lib/libxslt.1.dylib
    0x95c2e000 - 0x95c65ff7 com.apple.CoreMedia 0.420.18 (420.18) <43747711-B334-B0C7-4971-15FA586DAFBF> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x95c79000 - 0x95c83fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x95c84000 - 0x95cc4ff3 com.apple.securityinterface 4.0.1 (37214) <BBC88C96-8827-91DC-0CF6-7CB639183395> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x95d0c000 - 0x95d19ff7 com.apple.AppleFSCompression 1.0 (1.0) <DEF0B7B0-993B-F088-8F73-4318C3CA1F64> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x95d52000 - 0x95dc0ff7 com.apple.QuickLookUIFramework 2.1 (327.3) <2F51D9CB-F827-E0AF-F201-5F4244C0D02A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x95dc1000 - 0x95e70ff3 com.apple.ColorSync 4.6.2 (4.6.2) <F3F097AC-FDB7-3357-C64F-E28BECF4C15F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x95e71000 - 0x961d8ff7 com.apple.QuartzCore 1.6.1 (227.8) <8B90AB08-46A4-1C5C-4E71-C6AB652477B9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x961d9000 - 0x9620eff7 libcups.2.dylib ??? (???) <BE4E095C-EECA-017E-11AA-C65F4D2B15C8> /usr/lib/libcups.2.dylib
    0x9620f000 - 0x9624afe7 com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x9624b000 - 0x962a5fe7 com.apple.CorePDF 1.1 (1.1) <8ED0FB5F-D498-D012-DF09-DE5378D40D52> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x962a6000 - 0x96316ff3 com.apple.AppleVAFramework 4.7.5 (4.7.5) <464A915D-E670-FA22-7799-454259D42B82> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x96317000 - 0x96325fe7 libz.1.dylib ??? (???) <7B7A02AB-DA99-6180-880E-D28E4F9AA8EB> /usr/lib/libz.1.dylib
    0x96326000 - 0x9637cff7 com.apple.MeshKitRuntime 1.0 (49.0) <BCB920E3-C567-3F37-D404-F518A256859E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x96445000 - 0x96449ff7 libGFXShared.dylib ??? (???) <79F4F60E-0A6D-CE9C-282E-FA85825449E3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9644a000 - 0x965ccfe7 libicucore.A.dylib ??? (???) <2B0182F3-F459-B452-CC34-46FE73ADE348> /usr/lib/libicucore.A.dylib
    0x965cd000 - 0x96625fe7 com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x96626000 - 0x96826feb com.apple.AddressBook.framework 5.0.1 (864) <878FE5D9-6C49-000F-D5D1-DF8054BFC0F0> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x96827000 - 0x968dafff libFontParser.dylib ??? (???) <FAD5E96D-CF93-CC86-6B30-A6594B930772> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x968e7000 - 0x968e7ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x96927000 - 0x96949fef com.apple.DirectoryService.Framework 3.6 (621.1) <3ED4949F-9604-C109-6586-5CE5F421182B> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x9694a000 - 0x9694eff7 IOSurface ??? (???) <C11D3FF3-EB51-A07D-EF24-9C2004115724> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x9694f000 - 0x96b0bfef com.apple.ImageIO.framework 3.0.1 (3.0.1) <598CF4F9-7542-E1A7-26D2-584933497A2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x96b3a000 - 0x96c0bfe3 ColorSyncDeprecated.dylib ??? (???) <1CEB1F35-EF10-A63D-AD9E-D7BD391D4719> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.f ramework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x96c0c000 - 0x96c36ff7 com.apple.shortcut 1.1 (1.1) <B0514FA9-7CAE-AD94-93CA-7B2A2C5F7B8A> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
    0x96c37000 - 0x96c3dff7 com.apple.DisplayServicesFW 2.2 (2.2) <72C790A9-F4D2-DA92-015B-4CAF478FC0C2> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x96c3e000 - 0x96c4eff7 com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x96c4f000 - 0x96c4fff7 com.apple.CoreServices 44 (44) <AC35D112-5FB9-9C8C-6189-5F5945072375> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x96c71000 - 0x96c91fe7 libresolv.9.dylib ??? (???) <A48921CB-3FA7-3071-AF9C-2D86FB493A3A> /usr/lib/libresolv.9.dylib
    0x96c92000 - 0x96d9fff7 com.apple.MediaToolbox 0.420.18 (420.18) <31935D52-1F8D-4AB2-CCA5-4CF615CBCE24> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x96da0000 - 0x96da0ff7 com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x96df3000 - 0x96e2dffb libFontRegistry.dylib ??? (???) <72342297-E8D6-B071-A752-014134129282> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x96f88000 - 0x96f89ff7 com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x96f8a000 - 0x96fceff3 com.apple.coreui 2 (113) <D0FA9B36-3708-D5BF-0CC3-6CC1909BC8E6> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x96fcf000 - 0x97033ffb com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x97034000 - 0x970dbfe7 com.apple.CFNetwork 454.5 (454.5) <A7E78E62-0C59-CE57-73D2-C4E60527781C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x970dc000 - 0x97136ff7 com.apple.framework.IOKit 2.0 (???) <1BE07087-27D5-0E62-F06B-007C2BED4073> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x97137000 - 0x9716fff7 com.apple.LDAPFramework 2.0 (120.1) <681A0B2E-BCB2-D2BA-3D02-A4989E9C7686> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x97170000 - 0x97218ffb com.apple.QD 3.33 (???) <196CDBA6-5B87-2767-DD57-082D71B0A5C7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x97219000 - 0x97279fe7 com.apple.CoreText 3.1.0 (???) <79FD1B5C-2F93-4C5D-B07B-4DD9088E67DE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x9727a000 - 0x9748cfff com.apple.RawCamera.bundle 2.2.1 (477) <10937A0D-0856-1B69-AE27-43BC15B7DD21> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9748d000 - 0x974b3fff com.apple.DictionaryServices 1.1.1 (1.1.1) <02709230-9B37-C743-6E27-3FCFD18211F8> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x974b4000 - 0x97962fe7 com.apple.VideoToolbox 0.420.18 (420.18) <CB16BB7D-FBE2-A2AD-490A-18479A8321BA> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x97981000 - 0x97ac0fe3 com.apple.QTKit 7.6.3 (1591.3) <18F25C19-F0B8-5907-D6D6-65EC53DF0D3B> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x97ac1000 - 0x97ac1ff7 com.apple.Carbon 150 (152) <608A04AB-F35D-D2EB-6629-16B88FB32074> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x97ba7000 - 0x97bd7ff7 com.apple.MeshKit 1.0 (49.0) <435718C1-ED40-6BCC-F0D8-67FA05CFFF1E> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x97c1f000 - 0x97c29ff7 com.apple.HelpData 2.0.4 (34) <9128FFEB-0F6C-B273-FCF4-D87A20227345> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
    0x97d32000 - 0x97d51fe3 libexpat.1.dylib ??? (???) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
    0x97d5d000 - 0x97d5dff7 com.apple.vecLib 3.5 (vecLib 3.5) <17BEEF92-DF30-CD52-FD65-0B7B43B93617> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x97d5e000 - 0x97d9fff7 libRIP.A.dylib ??? (???) <9F0ECE75-1F03-60E4-E29C-136A27C13F2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x97e07000 - 0x97e3dfff libtidy.A.dylib ??? (???) <DDFAB560-3883-A6A2-7BDD-D91730982B48> /usr/lib/libtidy.A.dylib
    0x97e3e000 - 0x97e84ff7 libauto.dylib ??? (???) <85670A64-3B67-8162-D441-D8E0BE15CA94> /usr/lib/libauto.dylib
    0x97e85000 - 0x97f33ff3 com.apple.ink.framework 1.3.1 (105) <CA3FBDC3-4BBA-7BD9-0777-A7B0751292CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x97f34000 - 0x97fadff7 com.apple.PDFKit 2.5 (2.5) <58603BDB-337F-FBE3-EB11-7C31CF261995> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x97fae000 - 0x97fd2ff7 libJPEG.dylib ??? (???) <649E1974-A527-AC0B-B3F4-B4DC30484070> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x97fd3000 - 0x97fd3ff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x97fd4000 - 0x97fdeff7 libGL.dylib ??? (???) <76A207FE-889A-CF1B-AF9A-795EEE5A463E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x97fdf000 - 0x97fefff7 libsasl2.2.dylib ??? (???) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x98031000 - 0x98038ff7 com.apple.agl 3.0.12 (AGL-3.0.12) <6BF89127-C18C-27A9-F94A-981836A822FE> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x98039000 - 0x98089ff7 com.apple.framework.familycontrols 2.0 (2.0) <E6CAB425-3E40-65A3-0C23-150C26E9CBBF> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x9808a000 - 0x980d7feb com.apple.DirectoryService.PasswordServerFramework 6.0 (6.0) <BF66BA5D-BBC8-78A5-DBE2-F9DE3DD1D775> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x98134000 - 0x98177ff7 com.apple.NavigationServices 3.5.3 (181) <28CDD978-030E-7D4A-5334-874A8EBE6C29> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x98178000 - 0x98279fe7 libxml2.2.dylib ??? (???) <B4C5CD68-405D-0F1B-59CA-5193D463D0EF> /usr/lib/libxml2.2.dylib
    0x9827a000 - 0x9827dffb com.apple.help 1.3.1 (41) <67F1F424-3983-7A2A-EC21-867BE838E90B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x9827e000 - 0x983f5fef com.apple.CoreFoundation 6.6.1 (550.13) <AE9FC6F7-F0B2-DE58-759E-7DB89C021A46> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x983f6000 - 0x983fbff7 com.apple.OpenDirectory 10.6 (10.6) <92582807-E8F3-3DD9-EB42-4195CFB754A1> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x983fc000 - 0x9844dff7 com.apple.HIServices 1.8.0 (???) <B8EC13DB-A81A-91BF-8C82-66E840C64C91> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x9844e000 - 0x9848afff com.apple.CoreMediaIOServices 124.0 (850) <5F9B1AA3-8BB3-4E8C-2A31-F8FD5EC3F28A> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x9864d000 - 0x98686fe7 com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x98687000 - 0x986baff7 com.apple.AE 496.1 (496.1) <1AC75AE2-AF94-2458-0B94-C3BB0115BA4B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x986bb000 - 0x986dbfe7 com.apple.opencl 12 (12) <2DB56F60-577B-6724-5708-7B082F62CC0F> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x986dc000 - 0x986e0ff7 libGIF.dylib ??? (???) <83FB0DCC-355F-A930-E570-0BD95086CC59> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x986e1000 - 0x986e4ff7 libCGXType.A.dylib ??? (???) <483FCF1C-066B-D210-7355-ABC48CA9DB2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x986f5000 - 0x987bffef com.apple.CoreServices.OSServices 352 (352) <D9F21CA4-EED0-705F-8F3C-F1322D114B52> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x987c0000 - 0x988b2ff7 libcrypto.0.9.8.dylib ??? (???) <792B8722-3091-5E9F-E25F-67499CFE0599> /usr/lib/libcrypto.0.9.8.dylib
    0x988b3000 - 0x988cbff7 com.apple.CFOpenDirectory 10.6 (10.6) <1537FB4F-C112-5D12-1E5D-3B1002A4038F> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x988ff000 - 0x98aa3feb libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    0x98aa4000 - 0x98ac2ff7 com.apple.CoreVideo 1.6.0 (43.1) <1FB01BE0-B013-AE86-A063-481BB547D2F5> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x98ac3000 - 0x98b01ff7 com.apple.QuickLookFramework 2.1 (327.3) <BAF90576-16DF-13E6-9756-31537076E843> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x98b02000 - 0x98bb1fe3 com.apple.QuickTimeImporters.component 7.6.3 (1591.3) <2E2381EB-5E5E-B714-C65D-FCE349E77094> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x98ec9000 - 0x98edefff com.apple.ImageCapture 6.0 (6.0) <3F31833A-38A9-444E-02B7-17619CA6F2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x98edf000 - 0x98ee1fe7 com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x98ee2000 - 0x98f53ff7 com.apple.iLifeMediaBrowser 2.1.3 (346.0.3) <C862CAE1-1906-CD45-7D66-F8798483BAA5> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x98f54000 - 0x98f96fe7 libvDSP.dylib ??? (???) <8F8FFFB3-81E3-2969-5688-D5B0979182E6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x98f9f000 - 0x98fd0ff3 libTrueTypeScaler.dylib ??? (???) <6C8916A2-8F85-98E0-AAD5-0020C39C0FC9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libTrueTypeScaler.dylib
    0x98fd1000 - 0x99112ff7 com.apple.syncservices 5.1 (578) <88BAF2E9-3A67-EEAB-2EBF-4F7D1D28B39E> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x99113000 - 0x9913aff7 com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x9913b000 - 0x9916fff7 libssl.0.9.8.dylib ??? (???) <F3402001-EC8D-58E5-4A23-02A979C9E857> /usr/lib/libssl.0.9.8.dylib
    0x991df000 - 0x99259fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) <1F97B48A-327B-89CC-7C01-3865179716E0> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9929b000 - 0x992a2fff com.apple.print.framework.Print 6.0 (237) <7A06B15C-B835-096E-7D96-C2FE8F0D21E1> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x99326000 - 0x994c3fef com.apple.JavaScriptCore 6531.21 (6531.21.9) <C3642BB4-3D06-B371-B4CD-0DF5DA646673> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <D45B91B2-2B4C-AAC0-8096-1FC48B7E9672> /usr/lib/libSystem.B.dylib
    Model: iMac9,1, BootROM IM91.008D.B08, 2 processors, Intel Core 2 Duo, 2.66 GHz, 4 GB, SMC 1.45f0
    Graphics: NVIDIA GeForce 9400, NVIDIA GeForce 9400, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairportwireless_card_type_airportextreme (0x14E4, 0x8E), Broadcom BCM43xx 1.0 (5.10.91.19)
    Bluetooth: Version 2.2.4f3, 2 service, 1 devices, 1 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: WDC WD6400AAKS-40H2B0, 596.17 GB
    Serial ATA Device: HL-DT-ST DVDRW GA11N
    USB Device: Built-in iSight, 0x05ac (Apple Inc.), 0x8502, 0x24400000
    USB Device: IR Receiver, 0x05ac (Apple Inc.), 0x8242, 0x04500000
    USB Device: Composite Device, 0x062a (MosArt Semiconductor Corp.), 0x04100000
    USB Device: KeyRig 49, 0x0763 (M-Audio), 0x019b, 0x06200000
    USB Device: BRCM2046 Hub, 0x0a5c (Broadcom Corp.), 0x4500, 0x06100000
    USB Device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0x8215, 0x06110000
    FireWire Device: iO Firewire, Alesis, Up to 400 Mb/sec

Maybe you are looking for

  • I have a disabled iphone 4 and when i try restoring it, it says i need a update and restore it and its been downloading the update for 6 hours

    i bought a iphone from my freind and its disabled and i have tried to restore it but when i do i tells me i need a update, and when i do this it tells me i need to wait 6 hours for the update and i just need to restore the iphone. i need help

  • Flash Intros on an iWeb site

    I purchased a flash intro template off of templatemonster.com. I edited the flash intro in a trial version of Adobe Flash CS3. After I edited the template so that it had the wording I wanted I then did not know what to do to actually make it my flash

  • Bright white spot in ipad 3

    I am seeing a bright white spot on my ipad3 screen, it is very much visible in white pages, but not so much in black. Looks like a hardware problem. I purchased my ipad3 on day it was launched, and using it for almost 6 months now. Is it still covere

  • Cannot view content text and elements in Dreamweaver

    Hi, I am not an expert in Dreamweaver, still learning. Would anyone tell me why when I open up the template in Dreamweaver's design view I cannot see the content text and other elements to edit or view? However, all those are still viewable in browse

  • COPY command with Transparent Gateway

    We have tried to use copy command to copy the data from AS/400 database (tns name as AS400) to Oracle database (Data2) in NT thru Transparent Gateway. The following works using INSERT statement:- INSERT INTO EMP select * from scott.emp@as400 But when