PO History Changes Query

Dears,
I'm working on a query that help me to retrieve all changes that happened on a specific PO, but I couldn't find these tables.
Can you help guys.
Thanks
Ahmed

You can see the query that is being used by the Search page by looking at the View Object (PosRevisionHistoryVO.xml) specified in the PosRevHistoryAM.xml file. As was previously mentioned, these include the po_headers_archive_all table but changes are also held in the po_lines_archive_all, po_line_locations_archive_all and po_distributions_archive_all tables.
From VO:
SELECT
POH.COMMENTS,
POH.REVISED_DATE,
POH.REVISION_NUM,
POH.AGENT_ID,
POH.BILL_TO_LOCATION_ID,
POH.PO_HEADER_ID,
POH.SHIP_TO_LOCATION_ID,
POH.VENDOR_CONTACT_ID,
POH.VENDOR_ID,
POH.VENDOR_SITE_ID,
NVL(POH.CLOSED_CODE, 'OPEN') CLOSED_CODE,
POH.CURRENCY_CODE,
POH.TYPE_LOOKUP_CODE,
POH.SEGMENT1 PO_NUM,
POH.SEGMENT1 PONUM_RELNUM,
FNM.MESSAGE_TEXT TYPE_NAME,
NULL BUYER_NAME,
V.VENDOR_NAME, VS.VENDOR_SITE_CODE, NULL LOCATION_CODE,
NULL AUTHORIZATION_STATUS, NULL DOCUMENT_STATE,
TO_NUMBER(NULL) RELEASE_NUM, NULL RELEASE_TYPE,
TO_NUMBER(NULL) PO_RELEASE_ID,
NULL TOTAL,
POH.ORG_ID, HOU.NAME,POH.CREATION_DATE,
POH.GLOBAL_AGREEMENT_FLAG,
null LAST_SIGN_TYPE,
PDTL.security_level_code,
PDTL.access_level_code
FROM PO_VENDORS V, PO_VENDOR_SITES_ALL VS,
PO_HEADERS_ARCHIVE_ALL POH,
HR_ALL_ORGANIZATION_UNITS_TL HOU,
FND_NEW_MESSAGES FNM,
PO_DOCUMENT_TYPES_ALL_B PDTL     
WHERE
V.VENDOR_ID = POH.VENDOR_ID AND
VS.VENDOR_SITE_ID = POH.VENDOR_SITE_ID AND
POH.TYPE_LOOKUP_CODE IN ('STANDARD', 'BLANKET','PLANNED','CONTRACT') AND
POH.LATEST_EXTERNAL_FLAG = 'Y' AND
HOU.ORGANIZATION_ID (+)= POH.ORG_ID AND
HOU.LANGUAGE (+)= USERENV('LANG')
AND FNM.LANGUAGE_CODE = USERENV('LANG') AND
FNM.APPLICATION_ID = 177 AND
FNM.MESSAGE_NAME = DECODE(POH.TYPE_LOOKUP_CODE,'BLANKET',
     DECODE(POH.GLOBAL_AGREEMENT_FLAG,'Y','POS_POTYPE_GBLA','POS_POTYPE_BLKT'),
     'CONTRACT','POS_POTYPE_CNTR',
     'STANDARD','POS_POTYPE_STD',
     'PLANNED','POS_POTYPE_PLND')
AND PDTL.ORG_ID=POH.ORG_ID
AND PDTL.document_subtype = POH.type_lookup_code
AND PDTL.document_type_code in ('PO','PA')
UNION ALL
SELECT
POH.COMMENTS,
POR.REVISED_DATE,
POR.REVISION_NUM,
POR.AGENT_ID,
POH.BILL_TO_LOCATION_ID,
POR.PO_HEADER_ID,
POH.SHIP_TO_LOCATION_ID,
POH.VENDOR_CONTACT_ID,
POH.VENDOR_ID,
POH.VENDOR_SITE_ID,
NVL(POR.CLOSED_CODE, 'OPEN') CLOSED_CODE,
POH.CURRENCY_CODE,
POH.TYPE_LOOKUP_CODE,
POH.SEGMENT1 PO_NUM,
POH.SEGMENT1||'-'||POR.RELEASE_NUM PONUM_RELNUM,
FNM.MESSAGE_TEXT TYPE_NAME,
NULL BUYER_NAME,
V.VENDOR_NAME,
VS.VENDOR_SITE_CODE,
NULL LOCATION_CODE,
NULL AUTHORIZATION_STATUS,
NULL DOCUMENT_STATE,
POR.RELEASE_NUM,
POR.RELEASE_TYPE,
POR.PO_RELEASE_ID,
NULL TOTAL,
POR.ORG_ID,
HOU.NAME,POR.CREATION_DATE,
null GLOBAL_AGREEMENT_FLAG,
null LAST_SIGN_TYPE,
PDTL.security_level_code,
PDTL.access_level_code
FROM PO_VENDORS V,PO_VENDOR_SITES_ALL VS,
PO_RELEASES_ARCHIVE_ALL POR,PO_HEADERS_ARCHIVE_ALL POH,
HR_ALL_ORGANIZATION_UNITS_TL HOU,
FND_NEW_MESSAGES FNM,
PO_DOCUMENT_TYPES_ALL_B PDTL
WHERE POH.PO_HEADER_ID = POR.PO_HEADER_ID AND
V.VENDOR_ID = POH.VENDOR_ID AND
VS.VENDOR_SITE_ID = POH.VENDOR_SITE_ID AND
POH.TYPE_LOOKUP_CODE IN ( 'BLANKET', 'PLANNED') AND
POR.LATEST_EXTERNAL_FLAG = 'Y' AND
POH.LATEST_EXTERNAL_FLAG = 'Y' AND
HOU.ORGANIZATION_ID (+)= POR.ORG_ID AND
HOU.LANGUAGE (+)= USERENV('LANG') AND
FNM.LANGUAGE_CODE = USERENV('LANG') AND
FNM.APPLICATION_ID = 177 AND
FNM.MESSAGE_NAME = DECODE(POR.RELEASE_TYPE,'BLANKET','POS_POTYPE_BLKTR','SCHEDULED','POS_POTYPE_PLNDR')
AND PDTL.ORG_ID=POH.ORG_ID
AND PDTL.document_subtype = POH.type_lookup_code
AND PDTL.document_type_code ='RELEASE'
Thanks,
Nic

Similar Messages

  • Problems in creation of workbook using Change query local view.

    Hi Experts,
    I have created a Multiprovider by using union of two infocubes and created a Query based on Multiprovider.  I want to restrict one infocube in Change Query local view for creating new workbooks.  In Query global view we drag and drop the Infocube under Filters, but in the Query local view Filter panel is in disable mode. (My requirement is to create the workbooks using change query local view only)
    How can I restrict the one Infocube values in the workbooks by using Change query local view? 
    Thanks in advance.
    Venkat.

    Hi Venkat Prasad
    As you told that the query is on multi provider and the view is not allowing to declare/define filter value
    Just drag the infoprovider info object avilable under packet dimension to rows and right click on it restrict by selecting the name of the info provider when u right click it will show you the option of restrict once u click on it,it will takes to u a pop up where you can able to see the name of info providers and you specify according to it and finally in the display of results if you dont want to to display the info provider name then just right click on the 0infoprovider object under rows go to properties then choose hide option under display.
    Hope its clear a little..!
    Thanks
    K M R
    **Assigning points is the only way of saying thanks in SDN***
    >
    venkata prasad wrote:
    > Hi K M R,
    >
    > Thanks for ur quick response.  Most of the Infoobjects are common for both infocubes. I didn't understand this sentense "retrict the value with the infoprovider which values you are trying to view".
    > Please explian elaborately how to restrict the values speicfic to infoprovider under rows.

  • Change Query for SnapShot in Outlook Express Addon

    Expert,
    I am using SAP 8.8 PL15 and using Outlook Add-On.
    we are using SnapShot for our report also but we need report in specific format,
    can we change query so that report will change and we have our own report format
    Thanks
    Nilesh Shah

    Hi Nilesh Shah,
    You can try under test environment. Then you will know.
    Thanks,
    Gordon

  • Using "Restrict by app" in change query causes issues with Search Results

    Hello!
    I am hoping some experienced SP admin can help me out. I am having issues with the relevance ranking for my search results web part.
    I created a Wiki (OOTB) within a site collection and on the home page of the Wiki I was looking to apply a Search Box and Search Results web part for easy searching. I wanted to ensure the search results were restricted to the scope of the pages within the
    wiki. I did the following after adding the 2 web parts:
    Entered edit mode for the page
    Started to edit the Search Results web part
    Under Properties for Search Results clicked on "Change Query"
    Navigated to BASICS and clicked "Switch to Quick Mode"
    For Select Query, picked "Wiki (System)" option
    For Restrict by app, picked "Specify a URL" and input the wiki URL "http://webapp.com/sites/sitecollection/wiki"
    Click OK
    The web part has 6 automatic results when I hit the page. These are the only 6 pages in my wiki. When I search a word or title of a page, they are not ranked in order or relevance. The ordering is static to what was being shown before the search, but the
    keywords I'm searching are bold. With out the taking the steps above, I can easily search these pages and have them ranked appropriately so I'm not too sure what I'm doing wrong. 
    Other Details
    The pages have been crawled and can be searched from anywhere else in SP.
    I am only a site collection admin for this specific site collection.
    I other than the steps above, I have not made any changes or customization to the search web parts; they are both out of the box SP.
    The SP Farm admin we unable to pin point what the root cause is either.

    Hi Mikael,
    Sorry for the wait, I was unable to post pictures, which i felt would better describe my issue.
    Could you output the query template you are ending up with?
    If you can tell me how to accomplish this, then I can provide it. Please keep in mind that I am only a site collection admin.
    Also, is the ranking/sorting for your webpart set to ranking?
    When looking at the web part settings, I didn't see an option to modify the ranking. Unfortunately, some sites in my intranet are down now so I can't even double check. Once it's back up, I will verify this as well.
    And how do you know they are ranked incorrectly?
    I wanted to display an image showing what I meant by this. As the wiki is down, I'll do my best with words. When I visit the wiki home page, I already have the search and search results web parts there. Without searching anything, the search results
    web part displays 6 pages that are available in the wiki. When I search, I expect to see the most relevant result at the top. similar to the following: 
    *Search result from another section of the intranet site.*
    What I receive instead is the same list of wiki pages, in the same order. The most relevant result
    is not moved to the top like in the image above, but I can see that the word "rush" is highlighted in bold. I hope this helps.
    If you need more of a description, please let me know.
    Thank you

  • Change query dynamically in DB Adapter

    Hi,
    Please answer these questions.
    1. How to change query dynamically in DB Adapter?
    2. I have 2 db adapters, if i got error in 1 db adapter then how to rollback?
    Regards,
    kpr

    Hi,
    <div class="jive-quote">How to change query dynamically in DB Adapter?</div>
    Unfortunately there is no way to pass the query dynamically in DB Adapter. The reasoning behind that is that the DB adapter configuration wizard creates multiple assist files for each operation including the xsd which can not be created for any query dynamically.
    <div class="jive-quote">I have 2 db adapters, if i got error in 1 db adapter then how to rollback?</div>
    Either use XA datasources or throw a rollback fault in the catch block.
    Regards,
    Neeraj Sehgal

  • Database tool for routing table history changes

    Dear Community, I'm looking for a freeware tool to hold history changes in routing tables for small to medium network running BGP, OSPF and MPLS VPN routing tables via VRFs. This tool need a way to compare the database in order to know if these are the same during the time.
    Is there a way to do this in Cisco Works?
    Thanks in advances for your recommendations.

    Julius,
    There are no industry recommended open source DB tools.
    Normally it depends upon the developer preferences that how he/she wants to see the tool usability.
    I can suggest you to go through the below link:
    http://sourceforge.net/search/?type_of_search=soft&words=SQL+Tools
    You can find many open source SQL tools, which you have to test and select one among them.
    I can suggest you to use:
    1) TOra
    2) Easy SQL
    3) SQuirrel
    "Choose a Tool which is easy to use and efficient, Dont worry about Look n Feel"
    Best of Luck

  • Change query using abap

    hi all,
    i find a situation when i need to change many queries to include a common variable of a characteristic. is it possible to create a program to change query? are there any function modules for this?
    thanks.

    Hi,
    You can run or get an URL for query with ABAP Function modules. but for creation, it may not possible.
    As this is a different tool.
    Regards,
    Ravi Kanth

  • View of Date track history change field summary

    Hi experts,
    In Oracle HRMS, we have the function "Date Track History" in People/assignment. In the summary window of Date Track history, we have column which is named "Change Field Summary". For reporting purpose, I am looking for the view/function/package/... which can show type of data.
    For example:
    - If I give certain assignment number/assignment id, view/function can return "Birth Date, Full Name, Known As" in "Change Field Summary".
    Thanks in advance.
    Hieu
    Edited by: user122479 on Jan 26, 2013 10:43 PM

    Hi Vigneswar,
    Thanks for reponse.
    The view PER_ASSIGNMENT_HISTORY_VIEW shows data changes in columns, it is similiar with HRFV_PERSON_ASSIGNMENT_HISTORY view. However It does not show us which columns were changed like in "Date track history change field summary" window. I don't have access to Unix server, so that I can't do the trace stuff.
    Thanks and Regards,
    Hieu
    Edited by: user122479 on Jan 29, 2013 10:50 AM

  • De-Activating the 'Change Query' option from the Bex Menu

    Hi,
    I want to deactivate the button 'Change Query' in BEx Excel. I have the restricted the user for not to change the query through PFCG. When the user selects this option, a error message 'You do not auth. for change' is displaying but he can view the query and also the formulas which are written in the query.
    I want to avoid the user to see the formula and details in the query.
    Can anyone help in deactivating this option from the menu.
    Thanks
    Ramesh Ganji

    hi,
    check if helps
    Bex Analyzer Toolbar in Excel
    Disable or remove "Business Explorer" in the menu bar

  • Changing Query Component's criteria items at runtime

    Hi All,
    As per my requirement i am changing query component's criteria items on some user input.
    So initially there were 9 components on query panel form and after user input it will become 7. I programatically used to set this two component's UI Hint as setVisible(false).
    Its working fine but if user input some value in to be removed 2 components it throws an null pointer exception.
    I understood the problem which is:-
    On query form if user input any value it used to persist. for same framework used to store this user entered value somewhere and after refresh it apply this value to the relevant components.
    Since two of the component are missing after refresh. it throws a null pointer exception as it tried to call setValue() method on removed component which is not there.
    After refresh the query panel form is rendered as per defined by QueryDescriptor object.
    Is there any way we can update this QueryDescriptor object with the changes...????

    Hi Simran,
    Yes, it is possible with the help of store procedure. In SQL Server there is a IF-Else Conditional block, which you can use inside store procedure. Create a SP with 2 additional parameter something like FlagReadAgain and KeyField. Pass the flag always as True or False. For the Key field pass the record key which you want to read again if you are passing the Flag as True else pass it as 0 or whatever.
    In the procedure check if the value of flag is True -> If yes, Read the entry with key name specified in where part.
    In the else part put the query which you are using for the normal flow.
    IF (FlagReadAgain) = TRUE
    BEGIN
       SELECT EmpName, EmpAddress
       FROM Employee
       WHERE EmpID = 'E001'
    END
    ELSE
       BEGIN
         SELECT EmpName, EmpAddress
         FROM Employee
         WHERE Status = 'N'
       END
    You may also use the approach which Srini mentioned. Create an application to restore any value to intial stage so that it can be picked up by XI when it poll again.
    Choose any approach which you like.
    Regards,
    Jitender Chauhan

  • Can I repair Pictures/iPhoto Library/Database/History/Changes/.....plist

    Tech tool pro is giving me a list of four playlists with unrepairable errors. Should I delete them, try to find them somewhere in my Time Machine backup or just ignore them? I have listed them below. Everything seems to work but I have nearly 20 000 pictures.
    Close tag on line 50787 does not match open tag integer:
    /Volumes/Untitled/Users/myname/Pictures/iPhoto Library/Database/History/Changes/0000000002.plist
    Encountered unexpected character d on line 906:
    /Volumes/Untitled/Users/myname/Pictures/iPhoto Library/Database/History/Changes/0000000003.plist
    Encountered unexpected character d on line 23777:
    /Volumes/Untitled/Users/myname/Pictures/iPhoto Library/Database/History/Changes/0000000004.plist
    Found non-key inside <dict> at line 195087:
    /Volumes/Untitled/Users/myname/Pictures/iPhoto Library/Database/History/Changes/0000000006.plist
    Using version  9.4.2

    Hi Terence,
    If you could please help me.
    Thanks.
    Bidhan.
    Process:         iPhoto [1332]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         9.4.2 (9.4.2)
    Build Info:      iPhotoProject-710042000000000~1
    Code Type:       X86 (Native)
    Parent Process:  launchd [198]
    User ID:         501
    Date/Time:       2012-12-27 15:34:59.449 +0530
    OS Version:      Mac OS X 10.8.2 (12C60)
    Report Version:  10
    Interval Since Last Report:          54712 sec
    Crashes Since Last Report:           14
    Per-App Interval Since Last Report:  7162 sec
    Per-App Crashes Since Last Report:   13
    Anonymous UUID:                      9C0087D9-04E5-50E9-22E9-7DDA1C8551B6
    Crashed Thread:  18  Import thread 0
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000c49
    VM Regions Near 0xc49:
    --> __PAGEZERO             0000000000000000-0000000000001000 [    4K] ---/--- SM=NUL  /Applications/iPhoto.app/Contents/MacOS/iPhoto
        VM_ALLOCATE            0000000000001000-000000000003a000 [  228K] ---/--- SM=NUL 
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x92f9c7d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x92f9bcb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x93107599 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x9310cf7f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x9310c63a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x9310c4ab CFRunLoopRunInMode + 123
    6   com.apple.HIToolbox                     0x9813b15a RunCurrentEventLoopInMode + 242
    7   com.apple.HIToolbox                     0x9813aec9 ReceiveNextEventCommon + 374
    8   com.apple.HIToolbox                     0x9813ad44 BlockUntilNextEventMatchingListInMode + 88
    9   com.apple.AppKit                        0x9081fa3a _DPSNextEvent + 724
    10  com.apple.AppKit                        0x9081f26c -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    11  com.apple.AppKit                        0x908156cc -[NSApplication run] + 855
    12  com.apple.AppKit                        0x907b86f6 NSApplicationMain + 1053
    13  com.apple.iPhoto                        0x00049c99 0x3a000 + 64665
    14  com.apple.iPhoto                        0x000492e5 0x3a000 + 62181
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x92f9ec02 __select_nocancel + 10
    1   libdispatch.dylib                       0x97962a08 _dispatch_mgr_invoke + 376
    2   libdispatch.dylib                       0x979627a9 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98af8512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x960953c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x960951ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9609a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01fe2e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01fe1efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    11  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 3:
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98af8512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x960953c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x960951ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9609a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01fe2e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01fe1efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    11  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98af8512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x960953c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x960951ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9609a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01fe2e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01fe1efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    11  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98af8512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x960953c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x960951ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9609a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01fe2e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01fe1efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    11  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98af8512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x960953c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x960951ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9609a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01fe2e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01fe1efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    11  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98af8512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x960953c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x960951ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9609a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01fe2e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01fe1efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    11  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98af8512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x960953c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x960951ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9609a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x01fe2e12 -[XTMsgQueue waitForMessage] + 47
    7   com.apple.proxtcore                     0x01fe1efa -[XTThread run:] + 412
    8   com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    9   com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    10  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    11  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x92f9f0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x98af604c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98af5e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98addcca start_wqthread + 30
    Thread 10:
    0   libsystem_kernel.dylib                  0x92f9f0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x98af604c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98af5e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98addcca start_wqthread + 30
    Thread 11:
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98af8512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x960953c6 -[NSCondition waitUntilDate:] + 404
    4   com.apple.Foundation                    0x960951ed -[NSConditionLock lockWhenCondition:beforeDate:] + 282
    5   com.apple.Foundation                    0x9609a740 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.RedRock                       0x0262f48f -[RKAsyncImageRenderer _backgroundRenderThread:] + 173
    7   libobjc.A.dylib                         0x923c8586 -[NSObject performSelector:] + 62
    8   com.apple.proxtcore                     0x01febdf9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    9   libobjc.A.dylib                         0x923c85d3 -[NSObject performSelector:withObject:] + 70
    10  com.apple.proxtcore                     0x01fe422c -[XTSubscription postMessage:] + 191
    11  com.apple.proxtcore                     0x01fe3aef -[XTDistributor distributeMessage:] + 681
    12  com.apple.proxtcore                     0x01fe3313 -[XTThread handleMessage:] + 515
    13  com.apple.proxtcore                     0x01fe1f10 -[XTThread run:] + 434
    14  com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    15  com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    16  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    17  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 12:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib                  0x92f9c7d2 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x92f9bcb0 mach_msg + 68
    2   com.apple.CoreFoundation                0x93107599 __CFRunLoopServiceMachPort + 185
    3   com.apple.CoreFoundation                0x9310cf7f __CFRunLoopRun + 1247
    4   com.apple.CoreFoundation                0x9310c63a CFRunLoopRunSpecific + 378
    5   com.apple.CoreFoundation                0x9310c4ab CFRunLoopRunInMode + 123
    6   com.apple.Foundation                    0x9600313a +[NSURLConnection(Loader) _resourceLoadLoop:] + 395
    7   com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    8   com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    9   libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    10  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 13:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib                  0x92f9ebe6 __select + 10
    1   com.apple.CoreFoundation                0x93150c00 __CFSocketManager + 1632
    2   libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    3   libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x92f9f0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x98af604c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98af5e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98addcca start_wqthread + 30
    Thread 15:
    0   libsystem_kernel.dylib                  0x92f9f0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x98af604c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98af5e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98addcca start_wqthread + 30
    Thread 16:
    0   libsystem_kernel.dylib                  0x92f9f0ee __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x98af604c _pthread_workq_return + 45
    2   libsystem_c.dylib                       0x98af5e19 _pthread_wqthread + 448
    3   libsystem_c.dylib                       0x98addcca start_wqthread + 30
    Thread 17:
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8220 _pthread_cond_wait + 833
    2   libsystem_c.dylib                       0x98b7e0a1 pthread_cond_wait$UNIX2003 + 71
    3   com.apple.Foundation                    0x96065734 -[NSCondition wait] + 274
    4   com.apple.iPhoto                        0x0008ba64 0x3a000 + 334436
    5   com.apple.iPhoto                        0x0008b672 0x3a000 + 333426
    6   com.apple.CoreFoundation                0x93162d6d __invoking___ + 29
    7   com.apple.CoreFoundation                0x93162ca7 -[NSInvocation invoke] + 279
    8   com.apple.RedRock                       0x0264b85b -[RKInvoker _invokeTarget:] + 33
    9   com.apple.RedRock                       0x0265c5f4 -[RKInvoker _invokeTargetWithPool:] + 68
    10  libobjc.A.dylib                         0x923c85d3 -[NSObject performSelector:withObject:] + 70
    11  com.apple.proxtcore                     0x01febdf9 -[XTThreadSendOnlyDetached _detachedMessageHandler:] + 167
    12  libobjc.A.dylib                         0x923c85d3 -[NSObject performSelector:withObject:] + 70
    13  com.apple.proxtcore                     0x01fe422c -[XTSubscription postMessage:] + 191
    14  com.apple.proxtcore                     0x01fe3aef -[XTDistributor distributeMessage:] + 681
    15  com.apple.proxtcore                     0x01fe3313 -[XTThread handleMessage:] + 515
    16  com.apple.proxtcore                     0x01fe1f10 -[XTThread run:] + 434
    17  com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    18  com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    19  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    20  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 18 Crashed:: Import thread 0
    0   com.apple.QuickTimeComponents.component          0x91d4a129 0x91640000 + 7381289
    1   com.apple.QuickTimeComponents.component          0x91d4ccbd 0x91640000 + 7392445
    2   com.apple.QuickTimeComponents.component          0x91d34e52 0x91640000 + 7294546
    3   com.apple.CoreServices.CarbonCore          0x92963adb callComponentStorage_44 + 25
    4   com.apple.CoreServices.CarbonCore          0x92954abf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    5   com.apple.CoreServices.CarbonCore          0x92954aff CallComponentFunctionWithStorageProcInfo + 30
    6   com.apple.QuickTimeComponents.component          0x91d3360d JPEG_DComponentDispatch + 77
    7   com.apple.CoreServices.CarbonCore          0x928ceaee CallComponent + 151
    8   com.apple.CoreServices.CarbonCore          0x928ceb48 CallComponentDispatch + 29
    9   com.apple.QuickTimeComponents.component          0x921d1c21 0x91640000 + 12131361
    10  com.apple.QuickTimeComponents.component          0x91d2f51b 0x91640000 + 7271707
    11  com.apple.QuickTimeComponents.component          0x91d30aef 0x91640000 + 7277295
    12  com.apple.QuickTimeComponents.component          0x91d31ea8 0x91640000 + 7282344
    13  com.apple.CoreServices.CarbonCore          0x92963adb callComponentStorage_44 + 25
    14  com.apple.CoreServices.CarbonCore          0x92954abf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    15  com.apple.CoreServices.CarbonCore          0x92954aff CallComponentFunctionWithStorageProcInfo + 30
    16  com.apple.QuickTimeComponents.component          0x91d2e187 Base_CDComponentDispatch + 81
    17  com.apple.CoreServices.CarbonCore          0x928ceaee CallComponent + 151
    18  com.apple.CoreServices.CarbonCore          0x928ceb65 DelegateComponentCall + 24
    19  com.apple.QuickTimeComponents.component          0x91d33625 JPEG_DComponentDispatch + 101
    20  com.apple.CoreServices.CarbonCore          0x928ceaee CallComponent + 151
    21  com.apple.CoreServices.CarbonCore          0x928ceb48 CallComponentDispatch + 29
    22  com.apple.QuickTime                     0x98f31f4d ImageCodecBandDecompress + 43
    23  com.apple.QuickTime                     0x98f25b05 DoBandedDecompress + 17336
    24  com.apple.QuickTime                     0x98f216e0 ICMAction + 1286
    25  com.apple.QuickTime                     0x98f20fd0 ICMDeviceLoop + 3924
    26  com.apple.QuickTime                     0x98f270a0 DecompressSequenceFrameWhen + 803
    27  com.apple.QuickTime                     0x98f26d74 DecompressSequenceFrameS + 61
    28  com.apple.QuickTimeImporters.component          0x900b97ad importGraphicDrawInternal + 1834
    29  com.apple.QuickTimeImporters.component          0x900b31ea importGraphicDrawOrDecide + 1782
    30  com.apple.CoreServices.CarbonCore          0x92954abf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    31  com.apple.CoreServices.CarbonCore          0x92954aff CallComponentFunctionWithStorageProcInfo + 30
    32  com.apple.QuickTimeImporters.component          0x900b1d31 ImportGraphicComponentDispatch + 81
    33  com.apple.CoreServices.CarbonCore          0x928ceaee CallComponent + 151
    34  com.apple.CoreServices.CarbonCore          0x928ceb65 DelegateComponentCall + 24
    35  com.apple.QuickTimeImporters.component          0x90050768 ImportJFIFComponentDispatch + 98
    36  com.apple.CoreServices.CarbonCore          0x928ceaee CallComponent + 151
    37  com.apple.CoreServices.CarbonCore          0x928ceb48 CallComponentDispatch + 29
    38  com.apple.QuickTimeComponents.component          0x921d2b61 0x91640000 + 12135265
    39  com.apple.QuickTimeComponents.component          0x91f0fbe0 0x91640000 + 9239520
    40  com.apple.CoreServices.CarbonCore          0x9296391f callComponentStorage_444 + 32
    41  com.apple.CoreServices.CarbonCore          0x92954abf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    42  com.apple.CoreServices.CarbonCore          0x92954aff CallComponentFunctionWithStorageProcInfo + 30
    43  com.apple.QuickTimeComponents.component          0x91f0eb92 ExportBaseComponentDispatch + 81
    44  com.apple.CoreServices.CarbonCore          0x928ceaee CallComponent + 151
    45  com.apple.CoreServices.CarbonCore          0x928ceb65 DelegateComponentCall + 24
    46  com.apple.QuickTimeComponents.component          0x91f133e2 ExportJFIFComponentDispatch + 98
    47  com.apple.CoreServices.CarbonCore          0x928ceaee CallComponent + 151
    48  com.apple.CoreServices.CarbonCore          0x928ceb48 CallComponentDispatch + 29
    49  com.apple.QuickTimeComponents.component          0x921d3825 0x91640000 + 12138533
    50  com.apple.QuickTimeComponents.component          0x91f0f125 0x91640000 + 9236773
    51  com.apple.CoreServices.CarbonCore          0x92963adb callComponentStorage_44 + 25
    52  com.apple.CoreServices.CarbonCore          0x92954abf CallComponentFunctionCommonWithStorage(char**, ComponentParameters*, long (*)(), unsigned long) + 45
    53  com.apple.CoreServices.CarbonCore          0x92954aff CallComponentFunctionWithStorageProcInfo + 30
    54  com.apple.QuickTimeComponents.component          0x91f0eb92 ExportBaseComponentDispatch + 81
    55  com.apple.CoreServices.CarbonCore          0x928ceaee CallComponent + 151
    56  com.apple.CoreServices.CarbonCore          0x928ceb65 DelegateComponentCall + 24
    57  com.apple.QuickTimeComponents.component          0x91f133e2 ExportJFIFComponentDispatch + 98
    58  com.apple.CoreServices.CarbonCore          0x928ceaee CallComponent + 151
    59  com.apple.CoreServices.CarbonCore          0x928ceb48 CallComponentDispatch + 29
    60  com.apple.QuickTime                     0x991128b7 GraphicsExportDoExport + 43
    61  com.apple.iPhoto                        0x0015e5b9 0x3a000 + 1197497
    62  com.apple.iPhoto                        0x0015e0e1 0x3a000 + 1196257
    63  com.apple.iPhoto                        0x00159212 0x3a000 + 1176082
    64  com.apple.iPhoto                        0x00157ead 0x3a000 + 1171117
    65  libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    66  libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 19:: CVDisplayLink
    0   libsystem_kernel.dylib                  0x92f9e8e2 __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x98af8289 _pthread_cond_wait + 938
    2   libsystem_c.dylib                       0x98af8512 pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreVideo                     0x9a55cfe9 CVDisplayLink::waitUntil(unsigned long long) + 297
    4   com.apple.CoreVideo                     0x9a55c078 CVDisplayLink::runIOThread() + 658
    5   com.apple.CoreVideo                     0x9a55bdce startIOThread(void*) + 160
    6   libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    7   libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 20:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x92f9ec72 __semwait_signal + 10
    1   libsystem_c.dylib                       0x98b7da61 nanosleep$UNIX2003 + 189
    2   libsystem_c.dylib                       0x98b7d92a usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x90a04d4d -[NSUIHeartBeat _heartBeatThread:] + 879
    4   com.apple.Foundation                    0x960671d8 -[NSThread main] + 45
    5   com.apple.Foundation                    0x9606715b __NSThread__main__ + 1396
    6   libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    7   libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 21:
    0   libsystem_c.dylib                       0x98adf5e0 strlen + 16
    1   libsystem_c.dylib                       0x98af4167 pthread_setname_np + 33
    2   com.apple.QuickTimeComponents.component          0x91d4d4fc 0x91640000 + 7394556
    3   libsystem_c.dylib                       0x98af3557 _pthread_start + 344
    4   libsystem_c.dylib                       0x98addcee thread_start + 34
    Thread 18 crashed with X86 Thread State (32-bit):
      eax: 0x00000001  ebx: 0x7fadc0c0  ecx: 0x7fad0000  edx: 0x000000c0
      edi: 0xb0101a78  esi: 0x7fadf440  ebp: 0xb0101a98  esp: 0xb0101a40
       ss: 0x00000023  efl: 0x00010246  eip: 0x91d4a129   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x00000c49
    Logical CPU: 0
    Binary Images:
       0x3a000 -   0xd26feb  com.apple.iPhoto (9.4.2 - 9.4.2) <3AC6405B-33E2-3184-9F20-4C9CC5256A3A> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xeb8000 -   0xf92ffc  org.python.python (2.6.7 - 2.6.7) <AEF0F842-12A1-3139-9187-6B33EBE4100F> /System/Library/Frameworks/Python.framework/Versions/2.6/Python
      0xfdd000 -   0xfe5fff  com.apple.PhotoFoundation (1.0 - 10.17) <228E0350-AA23-372E-8D42-5285DEF45C2D> /Applications/iPhoto.app/Contents/Frameworks/PhotoFoundation.framework/Versions /A/PhotoFoundation
    0x1055000 -  0x1231ffb  com.apple.geode (1.5.3 - 270.7) <F09009D2-846B-3190-965A-D6600D682573> /Applications/iPhoto.app/Contents/Frameworks/Geode.framework/Versions/A/Geode
    0x12c2000 -  0x12c7ff7  com.apple.iLifePhotoStreamConfiguration (3.4 - 2.5) <65A74F18-5020-31EC-B7E9-EBC14E2D9CA1> /Applications/iPhoto.app/Contents/Frameworks/iLifePhotoStreamConfiguration.fram ework/Versions/A/iLifePhotoStreamConfiguration
    0x12d1000 -  0x1300ff7  com.apple.iLifeAssetManagement (2.7 - 40.34) <2B65BA8A-2C25-360D-B50E-0A9EECA1CE57> /Applications/iPhoto.app/Contents/Frameworks/iLifeAssetManagement.framework/Ver sions/A/iLifeAssetManagement
    0x1322000 -  0x1349ff3  com.apple.iPhoto.Tessera (1.1 - 70.18) <F190FD9B-9CC9-3D4D-9744-113F7CA36097> /Applications/iPhoto.app/Contents/Frameworks/Tessera.framework/Versions/A/Tesse ra
    0x135e000 -  0x1382ffb  com.apple.iPhoto.Tellus (1.3 - 70.18) <768463A7-60B4-3D50-B36B-D6E5AFA43DC9> /Applications/iPhoto.app/Contents/Frameworks/Tellus.framework/Versions/A/Tellus
    0x139a000 -  0x13a5fff  com.apple.iphoto.AccountConfigurationPlugin (1.2 - 1.2) <86E53BF3-BCAD-36F9-999B-013E359EF079> /Applications/iPhoto.app/Contents/Frameworks/AccountConfigurationPlugin.framewo rk/Versions/A/AccountConfigurationPlugin
    0x13b2000 -  0x13c7ffb  com.apple.iLifeFaceRecognition (1.0 - 30.11) <4A781CBF-9764-3531-91E0-94C5B4DFCFDF> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/iLifeFaceRecognition
    0x13d4000 -  0x13fdff3  com.apple.DiscRecordingUI (7.0 - 7000.2.4) <F5A4CCC3-E5E2-3451-96FD-40BA328605B6> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x1416000 -  0x1418fff  com.apple.ExceptionHandling (1.5 - 10) <435C80BD-F463-360B-86CA-5E001CACD421> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x141e000 -  0x1429ff7  com.apple.UpgradeChecker (9.2 - 9.2) <D34CC218-8200-34D7-816C-B747EE4BF5F7> /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x1432000 -  0x14b1ff7  com.apple.iLifeMediaBrowser (2.7.2 - 546) <824E7748-CA28-3105-B5C3-27E9D8C6D465> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x14f6000 -  0x1614ff3  com.apple.WebKit (8536 - 8536.26.14) <C98F734D-D579-3F89-9A58-9EE890B1748E> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x16c8000 -  0x16ddff7  com.apple.iChat.InstantMessage (7.0.1 - 3305) <2EB77610-6036-3CCD-9A93-51F7D6DE6EB2> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x16ee000 -  0x1a87ff3  com.apple.iLifeSlideshow (3.1 - 1151.4) <36D94EEC-7C08-31C9-BE91-612EBCE8E528> /Applications/iPhoto.app/Contents/Frameworks/iLifeSlideshow.framework/Versions/ A/iLifeSlideshow
    0x1b82000 -  0x1e13ff3  com.apple.iLifePageLayout (1.3 - 200.9) <067ACE80-5B73-39EE-850B-E392F6573AAC> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/iLifePageLayout
    0x1eec000 -  0x1f83ff7  com.apple.MobileMe (13 - 1.0.4) <5E6C6DEC-1F48-358F-8117-40FAAEB8AFAD> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x1fde000 -  0x2046ff3  com.apple.proxtcore (1.4.1 - 250.56) <BBADA727-FB78-32AF-8D45-4498F68343A7> /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x208b000 -  0x2189ff7  com.apple.iLifeSQLAccess (1.7.1 - 60.5) <845C6292-8EC2-3B4A-8E2E-8D98986148C2> /Applications/iPhoto.app/Contents/Frameworks/iLifeSQLAccess.framework/Versions/ A/iLifeSQLAccess
    0x21d1000 -  0x21fcffb  com.apple.ProUtils (1.1 - 200.36) <DD23930A-A4CD-36B5-A3CB-0C4D61A2E4A6> /Applications/iPhoto.app/Contents/Frameworks/ProUtils.framework/Versions/A/ProU tils
    0x2214000 -  0x227ffff  com.apple.iLifeKit (1.3.1 - 156.11) <61CDA3C7-7EEA-38B7-8458-E91BD8BF214A> /Applications/iPhoto.app/Contents/Frameworks/iLifeKit.framework/Versions/A/iLif eKit
    0x22c3000 -  0x24f4ff3  com.apple.prokit (7.3.1 - 1943) <4F8BB1EA-FA77-3B98-8889-8045F3F23A38> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
    0x260c000 -  0x2b38ffb  com.apple.RedRock (1.9.4 - 310.33) <548258F5-3AE9-3AD4-B986-A9674D131164> /Applications/iPhoto.app/Contents/Frameworks/RedRock.framework/Versions/A/RedRo ck
    0x2d36000 -  0x2d59ffb  com.apple.AOSAccounts (1.1.2 - 1.1.94) <B0C709CB-DB8D-37D3-A58C-542703F4856B> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
    0x2d72000 -  0x2d72fff  com.apple.SafariServices.framework (8536 - 8536.26.17) <7AC5C0A5-0A71-33DD-A5C2-72545BEE3D3C> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariSer vices
    0x2d78000 -  0x2d7fff7  com.apple.AOSNotification (1.7.0 - 636.2) <F68F735D-0B5C-3F27-9E39-FB296CF82958> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0x2d8a000 -  0x2d8affc  com.apple.SafariDAVNotifier (1.1.1 - 1) <4173B9EB-A1C5-31BD-955B-E9D3CAB862C4> /System/Library/PrivateFrameworks/BookmarkDAV.framework/Versions/A/Frameworks/S afariDAVNotifier.framework/Versions/A/SafariDAVNotifier
    0x2d90000 -  0x2ffffff  com.apple.CalendarStore (6.0 - 1245) <F1909196-2119-3516-952D-32E756BCC04D> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0x3105000 -  0x3161fff  com.apple.corelocation (1.0 - 1239.39) <8159C021-DE49-332F-859E-00D7544EB568> /System/Library/Frameworks/CoreLocation.framework/Versions/A/CoreLocation
    0x3191000 -  0x31c3ff3  com.apple.GeoServices (1.0 - 1) <2E4033FA-18BD-3E73-B00E-CBFEE0ACCB6A> /System/Library/PrivateFrameworks/GeoServices.framework/Versions/A/GeoServices
    0x31d7000 -  0x31e0fff  com.apple.ProtocolBuffer (2 - 104) <BFA598AA-2E77-3578-B079-2C89796811B3> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolB uffer
    0x31ea000 -  0x31f2ff3  com.apple.AppSandbox (2.0 - 1) <5C586FB0-9EBB-3F14-A63F-497C7A034359> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x31fc000 -  0x3240ff3  com.apple.CalDAV (6.0 - 112.5) <DF589033-DBDE-3162-A17D-401B39897767> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
    0x3272000 -  0x327bff3  com.apple.CalendarAgentLink (1.0 - 37) <2D0AFE12-0235-3B60-B786-0EC07AC9F52C> /System/Library/PrivateFrameworks/CalendarAgentLink.framework/Versions/A/Calend arAgentLink
    0x328b000 -  0x329cfff  com.apple.CalendarFoundation (1.0 - 29) <D8714276-78B5-35A5-8C34-694E51AD9EB6> /System/Library/PrivateFrameworks/CalendarFoundation.framework/Versions/A/Calen darFoundation
    0x32ae000 -  0x3310fff  com.apple.coredav (1.0.1 - 179.6) <80D3EE71-AA9C-3954-B262-6BB8FCB293BC> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
    0x334a000 -  0x334aff7 +cl_kernels (???) <A8FAE489-C7F7-4AD0-9489-10AAEDF03135> cl_kernels
    0x334c000 -  0x3399ffb  com.apple.ExchangeWebServices (3.0 - 157) <29FBE8CC-2EC5-3209-B2CB-DD32E3E2ECC7> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0x33ee000 -  0x343cfff  com.apple.iCalendar (6.0 - 126.5) <C30CAF95-3D02-3E2E-8855-51DCDF8DB219> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0x3468000 -  0x3475ffb  com.apple.KerberosHelper (4.0 - 1.0) <6CB4B091-3415-301A-87B2-D9D374D0FC17> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0x3480000 -  0x35ccfff  com.apple.syncservices (7.0 - 713) <442C8E15-8870-3D65-98EC-82C0E2580EC0> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0x3648000 -  0x36b5ffb  com.apple.WhitePagesFramework (10.7.0 - 141.0) <6879CD26-8E35-315B-897C-D52B6EB741F6> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0x36e3000 -  0x370aff3  libsandbox.1.dylib (220) <D05340F5-32E0-31C7-9D26-28804F4723D6> /usr/lib/libsandbox.1.dylib
    0x3711000 -  0x3724ff3  com.apple.AppContainer (2.0 - 1) <799C8E8B-F983-3A3D-91CF-A2C9B5B7D007> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContaine r
    0x3736000 -  0x373afff  com.apple.SecCodeWrapper (2.0 - 1) <EBB54594-C7F3-37FA-9759-09BD098ED688> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
    0x3741000 -  0x3742ffd +cl_kernels (???) <B0D711C8-51E7-4B05-8433-87449EB0D699> cl_kernels
    0x3744000 -  0x3748ffe  libMatch.1.dylib (17) <29090908-32A9-3087-B197-00128F5954CD> /usr/lib/libMatch.1.dylib
    0x374f000 -  0x3751ffb  com.apple.LibraryRepair (1.0 - 1) <73246564-BF68-3833-B9A3-3CDA607BA706> /System/Library/PrivateFrameworks/LibraryRepair.framework/Versions/A/LibraryRep air
    0x375b000 -  0x37b5fff  com.apple.proapps.MIO (1.0.6 - 512) <DFB10D40-23B3-3666-9F1F-161BE25AB59D> /Applications/iPhoto.app/Contents/Frameworks/MIO.framework/Versions/A/MIO
    0x37cf000 -  0x445eff3  com.apple.WebCore (8536 - 8536.26.14) <82E97E6B-3F31-39A7-B41F-CD308E6EF238> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0x4be0000 -  0x4be1fff +eOkaoCom.dylib (1) <2DE16B47-23E7-73DB-1297-C928E40DFC31> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoCom.dylib
    0x4be5000 -  0x4c0aff2 +eOkaoPt.dylib (1) <831D49D0-43A0-21A0-2662-2207E3BE0FF6> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoPt.dylib
    0x4c11000 -  0x4c45fe7 +eOkaoDt.dylib (1) <5693A28E-8C94-0F5F-150E-3B17CF753F64> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoDt.dylib
    0x4c4b000 -  0x4db2fff +eOkaoFr.dylib (1) <E355FB47-C5EF-50CF-621A-9B17A50E2850> /Applications/iPhoto.app/Contents/Frameworks/iLifeFaceRecognition.framework/Ver sions/A/Resources/eOkaoFr.dylib
    0x4db9000 -  0x4e15fff  com.apple.NyxAudioAnalysis (12.4 - 12.4) <DC8444CC-FAAB-3DCA-A644-8712001A5F2E> /Library/Frameworks/NyxAudioAnalysis.framework/Versions/A/NyxAudioAnalysis
    0x4e2f000 -  0x4f49ff3  com.apple.avfoundation (2.0 - 361.25) <0CB46B4A-8330-3BD8-B081-71314C6687A5> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x4fe9000 -  0x5021ff3  com.apple.CoreMediaIOServicesPrivate (52.0 - 3311.1) <1F651752-FD09-3CF5-BCCC-5C1366DDFACD> /System/Library/PrivateFrameworks/CoreMediaIOServicesPrivate.framework/Versions /A/CoreMediaIOServicesPrivate
    0x503f000 -  0x5066ff7  com.apple.CoreMediaPrivate (20.0 - 20.0) <D963392A-4B4C-3B81-A873-E1C06C6829E6> /System/Library/PrivateFrameworks/CoreMediaPrivate.framework/Versions/A/CoreMed iaPrivate
    0x507c000 -  0x50adff3  com.apple.FWAVCPrivate (52.47 - 47) <14C9A9D3-4065-3395-A8BC-C0535162017E> /System/Library/PrivateFrameworks/FWAVCPrivate.framework/Versions/A/FWAVCPrivat e
    0x50c5000 -  0x510dffb  com.apple.CoreMediaIOServices (171.0 - 3244) <9563BB38-F23A-3FC6-855D-05487E700465> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x5131000 -  0x51d0fff  com.apple.imcore (8.0 - 900) <2052F6C8-BDD3-339B-B0E2-6A3E282010A4> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
    0x51f8000 -  0x524cff7  com.apple.imfoundation (8.0 - 900) <7A1506BB-DDAD-3DB7-8557-19AB1B519FB0> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundatio n
    0x5279000 -  0x5281ff7  com.apple.marco (8.0 - 900) <C2AE3F46-EFC9-349E-8D24-DF686C9BE2E7> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x528a000 -  0x52b1ff7  com.apple.ExpressCheckout (1.0 - 1.0) <ACE460FA-35FB-3C0E-9BA8-937F560F0847> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/ExpressCheckout.framework/Versions/A/ExpressCheckout
    0x52cc000 -  0x52faffb  com.apple.iLifeImageAnalysis (3.0 - 3) <C3A267E3-176C-3708-9099-E9F33400A1D5> /Applications/iPhoto.app/Contents/Frameworks/iLifePageLayout.framework/Versions /A/Frameworks/iLifeImageAnalysis.framework/Versions/A/iLifeImageAnalysis
    0x674d000 -  0x680dfff +net.sourceforge.webcam-osx.common (0.9.2 - 0.9.2) /Library/QuickTime/macam.component/Contents/MacOS/macam
    0xcfaf000 -  0xcfbcff3  com.apple.Librarian (1.1 - 1) <88A55A5E-40FF-3234-8394-2317120B79AB> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0xcfca000 -  0xcfcbffd +com.1passwd.InputManager (2.9.21 - 7517) <0EE4D847-85F5-1C14-CE38-8BF6B0553055> /Library/InputManagers/*/1PasswdIM.bundle/Contents/MacOS/1PasswdIM
    0xd909000 -  0xd90efff +com.eltima.FolxIM (1.7) <E6F86D93-24F9-BFC5-6993-D1DE35425271> /Library/InputManagers/*/FolxIM.bundle/Contents/MacOS/FolxIM
    0xdaf2000 -  0xdaf2ffd +cl_kernels (???) <57D50CCD-0E39-473E-AC5B-534A3E4A3D4C> cl_kernels
    0x12923000 - 0x12aafff8  GLEngine (8.6.1) <2660B1D4-5783-3BED-8C05-F5A4C5A29715> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x12ae6000 - 0x12c37ff7  libGLProgrammability.dylib (8.6.1) <E134D5DE-5A89-338A-A938-C7D80F272C9E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x12c65000 - 0x12c71ffb  libGPUSupport.dylib (8.6.1) <FB98F9CE-31D0-321C-90FE-87D30294921B> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/lib GPUSupport.dylib
    0x12c78000 - 0x12ca4ffa  GLRendererFloat (8.6.1) <D0348D87-ADBD-302B-95D0-FB3100C219BA> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x12cad000 - 0x12cb5ffc  libcldcpuengine.dylib (2.1.19) <E5429AB3-FE28-3C0C-8942-686BB4191A9E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengin e.dylib
    0x12cbc000 - 0x12cbefff  libCoreFSCache.dylib (24.4) <A089ED2E-0156-3937-BE32-5BED76DF4066> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache .dylib
    0x12cd2000 - 0x12cd3ffe  com.apple.AddressBook.LocalSourceBundle (2.1 - 1167) <341A7E90-613E-3306-919F-8F49EE350831> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
    0x13161000 - 0x131f3ff7  unorm8_bgra.dylib (2.1.19) <A2C66114-F581-3D86-9BC9-9994156640AF> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
    0x15297000 - 0x1529affe  com.apple.DirectoryServicesSource (2.1 - 1167) <2A3AD43B-950C-32AD-A578-3271EAD55E3E> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
    0x15313000 - 0x153d1ff3  ColorSyncDeprecated.dylib (400) <35E3054C-5DF1-30D4-A368-C4FDB0992373> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x156ff000 - 0x15741fff  com.apple.facetimeservices (8.0 - 900) <CB59547A-C7DE-3F20-8A1F-724AF15F664E> /System/Library/PrivateFrameworks/FTServices.framework/Versions/A/FTServices
    0x157b0000 - 0x157f1ff7  com.apple.ShareKit (1.0 - 119.8) <BA4F3619-1629-389A-AB2F-E32BD85C010F> /System/Library/PrivateFrameworks/ShareKit.framework/Versions/A/ShareKit
    0x1582f000 - 0x15836fff  com.apple.iPhoto.RSSPublisher (1.1 - 1.1) <C13A2FCB-178C-3CA9-AB1C-44B4C76D26BD> /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0x1583d000 - 0x15842ffe  com.apple.iphoto.accountconfig.Email (9.2 - 9.2) <50B32E94-2383-3409-A2AE-8367DE6CD6EF> /Applications/iPhoto.app/Contents/PlugIns/Email.accountconfigplugin/Contents/Ma cOS/Email
    0x15862000 - 0x15889ffb  com.apple.iPhoto.FacebookPublisher (1.2 - 1.2) <17607BF1-A294-33E6-B454-49F815BA72C1> /Applications/iPhoto.app/Contents/PlugIns/FacebookPublisher.publisher/Contents/ MacOS/FacebookPublisher
    0x15895000 - 0x158b4ffb  com.apple.iPhoto.FlickrPublisher (1.2 - 1.2) <BEFEC249-367D-30EA-B2C3-DC0AA41A8FED> /Applications/iPhoto.app/Contents/PlugIns/FlickrPublisher.publisher/Contents/Ma cOS/FlickrPublisher
    0x158be000 - 0x158f4ffb  com.apple.iPhoto.MobileMePublisher (1.2 - 1.2) <76739425-BFF0-37D0-86CA-DB64C8579E2E> /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0x15903000 - 0x15917ff7  com.apple.iPhoto.SharedPhotoStreamPublisher (1.0 - 1.0) <9157DF4E-949A-3E72-B219-D2AC6D613769> /Applications/iPhoto.app/Contents/PlugIns/SharedPhotoStreamPublisher.publisher/ Contents/MacOS/SharedPhotoStreamPublisher
    0x15922000 - 0x15925fff  com.apple.iphoto.accountconfig.Facebook (1.2 - 1.2) <A69EF05F-5213-3D42-B6C5-97D4C8C5E7A7> /Applications/iPhoto.app/Contents/PlugIns/Facebook.accountconfigplugin/Contents /MacOS/Facebook
    0x1592b000 - 0x1592efff  com.apple.iphoto.accountconfig.Flickr (1.1 - 1) <4002CDBC-05C4-3DEF-ADE3-9917FB7050E9> /Applications/iPhoto.app/Contents/PlugIns/Flickr.accountconfigplugin/Contents/M acOS/Flickr
    0x15934000 - 0x15939ff8  com.apple.iphoto.accountconfig.MobileMe (1.1 - 1) <433656FC-3D8F-3088-BCF3-C6765E788E20> /Applications/iPhoto.app/Contents/PlugIns/MobileMe.accountconfigplugin/Contents /MacOS/MobileMe
    0x15a06000 - 0x15a07ffd  com.apple.textencoding.unicode (2.5 - 2.5) <4E2ABBEB-1F0D-3C06-BA0C-C3CEDDF17BD2> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x15e00000 - 0x15e04ff7  com.apple.AppleMPEG2Codec (1.0.2 - 220.1) <08137D06-718F-30B1-8BF3-9498BEAFA5C6> /Library/QuickTime/AppleMPEG2Codec.component/Contents/MacOS/AppleMPEG2Codec
    0x17cbb000 - 0x17cbbfff  com.apple.iLMBAppDefPlugin (2.7.2 - 339) <70319805-38A9-3043-ADAF-A8E3460C2E7F> /Library/Application Support/iLifeMediaBrowser/*/iLMBAppDefPlugin
    0x17cc0000 - 0x17cc1fff  com.apple.iLMBFolderPlugin (2.7.2 - 339) <A492DD96-B17A-3581-8F02-BB46C385D5B9> /Library/Application Support/iLifeMediaBrowser/*/iLMBFolderPlugin
    0x17cc6000 - 0x17cc9fff  com.apple.iLMBGarageBandPlugin (2.7.2 - 339) <78FF504C-F636-3C8D-8AAA-BACF4D5B7D9B> /Library/Application Support/iLifeMediaBrowser/*/iLMBGarageBandPlugin
    0x17ccf000 - 0x17cd7ffe  com.apple.iLMBiTunesPlugin (2.7.2 - 339) <50409BA5-9D15-3D95-BBC5-36C6EA6EC85B> /Library/Application Support/iLifeMediaBrowser/*/iLMBiTunesPlugin
    0x17cde000 - 0x17d8dffb  com.apple.iTunesAccess (11.0.1 - 11.0.1) <6E9ECDC0-2344-36A0-BFCB-554E88F8F177> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x180d9000 - 0x180e6ffb +net.telestream.license (1.0.7.2-GC - 1.0.7.2-GC) <3B3ADB81-79F3-6371-31FE-66EF8D8E3100> /Library/Frameworks/TSLicense.framework/Versions/A/TSLicense
    0x180ef000 - 0x180f6ffc  com.apple.AppleGVAHW.component (1.1 - 1) <402A3FA9-6028-3639-989F-E9FCA85D04CF> /System/Library/QuickTime/AppleGVAHW.component/Contents/MacOS/AppleGVAHW
    0x180fd000 - 0x18115ff2  com.apple.applepixletvideo (1.2.31 - 1.2d31) <B5622D90-ADF3-3DB2-B64B-5F4AF7C274E3> /System/Library/QuickTime/ApplePixletVideo.component/Contents/MacOS/ApplePixlet Video
    0x19252000 - 0x19444fe2 +net.telestream.wmv.import (2.3.5.4 - 2.3.5.4) <7DAE8093-C4E1-4719-A095-5FC766307082> /Library/QuickTime/Flip4Mac WMV Import.component/Contents/MacOS/Flip4Mac WMV Import
    0x19479000 - 0x19524fff  libcrypto.0.9.7.dylib (106) <041B3399-5033-3395-9A71-6693F3A33D94> /usr/lib/libcrypto.0.9.7.dylib
    0x19568000 - 0x19729ff2 +net.telestream.wmv.advanced (2.3.5.4 - 2.3.5.4) <33F5D738-1D6C-7F92-CEC2-07BDE4D151A1> /Library/QuickTime/Flip4Mac WMV Advanced.component/Contents/MacOS/Flip4Mac WMV Advanced
    0x1976d000 - 0x197d5feb  com.apple.AppleProResDecoder (3.0.2 - 5718) <4442CBCE-7163-3E6A-8511-A52E9F6D8AFC> /System/Library/QuickTime/AppleProResDecoder.component/Contents/MacOS/AppleProR esDecoder
    0x19806000 - 0x1984ffff  com.apple.AppleVAH264HW.component (3.0 - 3.0) <3048BA40-0E8E-357A-8F9D-27D2FD322036> /System/Library/QuickTime/AppleVAH264HW.component/Contents/MacOS/AppleVAH264HW
    0x19913000 - 0x19a5dff7  com.apple.AppleGVAFramework (4.0.27 - 4.0.27) <A821DD12-2544-3EAB-8439-4D17BCEB8460> /System/Library/PrivateFrameworks/AppleGVA.framework/Versions/A/AppleGVA
    0x19a79000 - 0x19ab3fff  com.apple.QuickTimeFireWireDV.component (7.7.1 - 2599.13) <5FB303B9-3672-39AA-8CD6-E323CC0E41A8> /System/Library/QuickTime/QuickTimeFireWireDV.component/Contents/MacOS/QuickTim eFireWireDV
    0x19abf000 - 0x19ae0fff  com.apple.AppleIntermediateCodec (2.0.1 - 5718) <6A70694B-21C7-381B-8DE3-CD6490C70A77> /Library/QuickTime/AppleIntermediateCodec.component/Contents/MacOS/AppleInterme diateCodec
    0x8ed4a000 - 0x8f58bffb  com.apple.GeForceGLDriver (8.0.61 - 8.0.0) <36946D7B-4FF7-34CC-B6FE-D6F48406A60F> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe39000 - 0x8fe6be57  dyld (210.2.3) <23516BE4-29BE-350C-91C9-F36E7999F0F1> /usr/lib/dyld
    0x90007000 - 0x9000aff7  com.apple.TCC (1.0 - 1) <437D76CD-6437-3B55-BE2C-A53508858256> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x9000b000 - 0x90016fff  libcommonCrypto.dylib (60026) <A6C6EDB8-7E69-3827-81F3-9A74D0935461> /usr/lib/system/libcommonCrypto.dylib
    0x90017000 - 0x90020ffd  com.apple.audio.SoundManager (4.0 - 4.0) <ABC5FE40-B222-36EB-9905-5C8C4BFD8C87> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x90021000 - 0x90131ff3  com.apple.QuickTimeImporters.component (7.7.1 - 2599.13) <410311C4-34FF-38F0-8EE0-3093AEEC1A82> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0x90132000 - 0x901dcfff  com.apple.LaunchServices (539.7 - 539.7) <AF33EBD3-BC0B-30B5-B7DA-5CCCF12D7EDD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x901dd000 - 0x9040dfff  com.apple.QuartzComposer (5.1 - 284) <4E8682B7-EBAE-3C40-ABDB-8705EC7952BD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x9040e000 - 0x90415fff  libsystem_dnssd.dylib (379.32.1) <6A505284-2382-3F27-B96F-15FFDACF004E> /usr/lib/system/libsystem_dnssd.dylib
    0x90416000 - 0x9041dff3  com.apple.NetFS (5.0 - 4.0) <1F7041F2-4E97-368C-8F5D-24153D81BBDB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9041e000 - 0x9041efff  com.apple.vecLib (3.8 - vecLib 3.8) <83160DD1-5614-3E34-80EB-97041016EF1F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x9041f000 - 0x90421fff  libdyld.dylib (210.2.3) <05D6FF2A-F09B-309D-95F7-7AF10259C707> /usr/lib/system/libdyld.dylib
    0x90422000 - 0x90447ffb  com.apple.framework.familycontrols (4.1 - 410) <5A8504E7-D95D-3101-8E20-38EADE8DEAE1> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x90448000 - 0x90471ff7  libRIP.A.dylib (324.6) <7976E6A2-A489-33F5-A727-7634DDE3B761> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x90472000 - 0x90526fff  com.apple.coreui (2.0 - 181.1) <C15ABF35-B7F5-34ED-A461-386DAF65D96B> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x90527000 - 0x9054bfff  com.apple.PerformanceAnalysis (1.16 - 16) <18DE0F9F-1264-394D-AC56-6B2A1771DFBE> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x9054c000 - 0x9054cffd  com.apple.audio.units.AudioUnit (1.8 - 1.8) <4C13DEA2-1EB0-3D06-901A-DB93184C06F0> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x9054d000 - 0x905affff  libc++.1.dylib (65.1) <C0CFF9FF-5D52-3EAE-B921-6AE1DA00A135> /usr/lib/libc++.1.dylib
    0x905b0000 - 0x906bbff7  libJP2.dylib (845) <D409C913-6FA4-3D60-BFE0-B9FC6A02FEE0> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x906bc000 - 0x91278ffb  com.apple.AppKit (6.8 - 1187.34) <06EDB1D1-3B8A-3699-8E3A-D8F50A27AB7C> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91279000 - 0x91330ff3  com.apple.QuickTimeMPEG4.component (7.7.1 - 2599.13) <1B5BA13C-4AB7-333E-9A14-A95EC9E55049> /System/Library/QuickTime/QuickTimeMPEG4.component/Contents/MacOS/QuickTimeMPEG 4
    0x91331000 - 0x9144fff7  com.apple.MediaControlSender (1.4.5 - 145.3) <E0931EE7-4ACA-3538-9658-B9B2AC1E6A80> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
    0x91476000 - 0x9147efff  com.apple.DiskArbitration (2.5.1 - 2.5.1) <25A7232F-9B6A-3746-A3A8-12479D086B1E> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9147f000 - 0x9147ffff  libSystem.B.dylib (169.3) <81C58EAB-0E76-3EAB-BDFD-C5A6FE95536F> /usr/lib/libSystem.B.dylib
    0x91480000 - 0x914b3ff3  com.apple.GSS (3.0 - 2.0) <B1D719C1-B000-3BE3-B747-329D608585DD> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x914b4000 - 0x914befff  libsystem_notify.dylib (98.5) <7EEE9475-18F8-3099-B0ED-23A3E528ABE0> /usr/lib/system/libsystem_notify.dylib
    0x914bf000 - 0x91504ff5  com.apple.opencl (2.1.20 - 2.1.20) <41C4AE6E-67B6-33E2-A9B6-BF6F01580B16> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x91505000 - 0x9155efff  com.apple.AE (645.3 - 645.3) <6745659F-006D-3F25-94D6-DF944E9A01FD> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9155f000 - 0x915f9fff  com.apple.CoreSymbolication (3.0 - 87) <6A27BBE5-6EF0-3D5D-A485-2145826B9796> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x915fa000 - 0x91611fff  com.apple.GenerationalStorage (1.1 - 132.2) <93694E0D-35D3-3633-976E-F354CBD92F54> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x91612000 - 0x91634fff  libc++abi.dylib (24.4) <06479DA4-BC23-34B6-BAFC-A885814261D0> /usr/lib/libc++abi.dylib
    0x91635000 - 0x9163fffe  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9732BA61-D6F6-3644-82DA-FF0D6FEEFC69> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
    0x91640000 - 0x92378ff7  com.apple.QuickTimeComponents.component (7.7.1 - 2599.13) <85C70D1B-D074-3891-BF8D-9BA81D2C224B> /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x923aa000 - 0x924b7057  libobjc.A.dylib (532.2) <FA455371-7395-3D58-A89B-D1520612D1BC> /usr/lib/libobjc.A.dylib
    0x924b8000 - 0x9258efff  com.apple.DiscRecording (7.0 - 7000.2.4) <C14E99B9-DEFA-3812-89E5-464653B729F4> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9258f000 - 0x925cffff  com.apple.MediaKit (13 - 659) <37B8C1E3-B67D-3FE6-8A14-7FFD9F31C556> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x925d5000 - 0x925d7fff  com.apple.securityhi (4.0 - 55002) <62E3AE75-61CB-341E-B2A0-CFC985A2BF7F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x925d8000 - 0x925edfff  com.apple.speech.synthesis.framework (4.1.12 - 4.1.12) <DE68CEB5-4959-3652-83B8-D2B00D3B932D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x925ee000 - 0x9262fff7  libcups.2.dylib (327) <F46F8703-FEAE-3442-87CB-45C8BF98BEE5> /usr/lib/libcups.2.dylib
    0x92630000 - 0x9276bff7  libBLAS.dylib (1073.4) <FF74A

  • Aperture Library.aplibrary/Database/History/Changes/

    Hello everyone, i've recently had some trouble with corrupted Aperture library. This has all been fixed now however in the process of trying to fix things up I stumbled accross Aperture Library.aplibrary/Database/History/Changes/ folder - I've been trying to clear some space from my HDD and notice that this folder is enourmous. Almost as large as the preview, master or thumbnail folders.
    It measures over 40gb which accounts for over 20 per cent of my library size. What excectly does this folder do (Aperture Library.aplibrary/Database/History/Changes). There a hundreds of plist files measuring several 100mb each.
    I know I can safely delete things like preview and thumbnail and rebuilt the database however have been hestitant to touch this folder as I don't know what it does. Can someone shed some light on the purpose of this folder. Google searches have just come up with threads about disk warrior reporting the folder as having errors but doesn't say what the folder does. Can I delete to save space? I'm concerned this folder contains the changes made to masters meaning i can't revered changes in the versions.

    Just as a test I took one of my libraries that I do this sort of thing to and removed the Changes folder and ran Aperture on the library. Aperture worked fine. The library behaved just as expected.
    I've never paid much attention to this folder before and it's not clear just what 'changes' they are referring to but I wouldn;t get to worked up about it. Just make sure you have good working backups (as you should have anyway) and remember the next time you run DiskWarrior you'll probably see these errors.
    regards

  • Changed query, hopw to surpress msg in workbook?

    hi,
    changed a query(info objects few removed and few added), so after attaching the changes query to workbook...
    after refreshing evrytime it is showing a msg box with title
    "bex application msgs for query"
    and warings like "waring query changed, characterstic _xyz-" no longer exist" is coming.
    is there any method to surpass this msg box?/
    what to do not to get this?

    Hi,
    If you are getting the Warnign messages after refreshing the Query , then go to that particular work book,Menu>Bex Analyzer>Supress Warning messages.
    Save the work book.
    It will avoid the Warning messages that were displayed by the Query.
    Assign points if it helps............

  • Can developer change query from one package to other, or only basis guy....

    can developer change query from one package to other, or only basis guy....will do that?

    In the development system, a developer normally has authorizations to do that. 
    Mathew.

  • Change Query Global Definition Menu

    Hi All,
                 I seem to be having trouble entering the 'change query - global definition' menu.  The error message is as follows:
    "This component was edited with a more recent version of the Editor.You also have to use the more recent version to Edit Further.Further processing not possible.Update your front End."I am working in BW3.5.
                          Is this issue  related to any configuration problem?Please help me on this.
    Thanks in advance,
    Drisya

    Hi
           If u migrate the query of the 3.5 version to 7.0 version u ca only do the edition for that query in 7.0 only,u cannot edit that one in 3.5,but only u can open

Maybe you are looking for

  • How to pass another attribute with the attributes in the select

    i have multi select that will be generated from the database but how do a pass a parameter associated on of the selected item other then the one selected: for instance if I wanted to pass the capital of the state as hidden if a select any of these se

  • Attach document in mail

    Hi, it appears I can't attach a document in outlook mail. Is there a solution?

  • Quick confirmation on E- Recruitment requisition page

    Hi All, When we enter the Position in the 'Organization data tab' of 'requisition' the values of Org unit and job get defaulted and then we save the page. As a result are we saving the Infotype 5125 or 5126 or it is some other infotype? Please confir

  • Video playing on HTML page without player?

    I have seen a few examples (none of which I have a link for) of flash video that plays on a HTML page that is not confined to a flash player. So the video of a person is shot against a green screen and the background is later keyed out and the the vi

  • Problem with KF

    Hello , can anybody help , as i want the value of kf(keyfigure) to be whole value i.e (round Figures) as i have 10.23 for the kf but i want it to be 10.So can anybody help me in this matter. Thanks PP