Premier Pro Queue - Multi-Core Processing

I am sure you all have thought about this but it would be nice if you take advantage of the multi-core processing of the Mac in order to run more than one Queue item at the same time.
Currently, each item in the queue has to wait but since we got multi-core systems like my Mac Pro with Dual Quad Core it would be nice to be encoding multiple projects at the same time.  Or is this because it's software encoding and not hardware restriction?
I did notice in Preferences there is a Enable Parallel Encoding.  Is this not multi-core processing?
Thanks,
Kenneth

Think of it this way: Intel has already announced that they are sunsetting the C2D line of processors, so purchasing something that is about ready to get phased out doesn't make much sense to me as it will quickly become outdated (some could argue that it already is outdated with the number of quadcore and higher procs coming out).
If anything, purchase one of the quad-core models to get more out of it down the line. More and more software is becoming multi-core aware, so even while an app you use now doesn't support it, it may eventually.

Similar Messages

  • Multi core processing??

    Hi, I've heard that multi core processors such as those in the new iMac and in the Mac Pro are only any good if the software knows how to use them properly. I am wanting to use Apples Logic Studio software, would I be better off with say a 3.06G core 2 duo, or a 2.66G i5?? For Logic only, I couldnt care about games or anything else.

    Think of it this way: Intel has already announced that they are sunsetting the C2D line of processors, so purchasing something that is about ready to get phased out doesn't make much sense to me as it will quickly become outdated (some could argue that it already is outdated with the number of quadcore and higher procs coming out).
    If anything, purchase one of the quad-core models to get more out of it down the line. More and more software is becoming multi-core aware, so even while an app you use now doesn't support it, it may eventually.

  • CS6 Premier Pro - Create Multi-Camera Source greyed out

    CS6 on Mac OSX 10.9
    I have been following the Adobe tutorial about how to do Multi-Camera editing. Following all the steps. Somehow what my Premiere offers me is not the same the guy does in the tutorial:
    1) Put all the video & audio files in a bin in the Project tab. Tutorial says: right click the bin and you get contextual menu that offers "Create Multi-Camera Source". Nope - not getting that.
    2) Selecting ALL files in that bin gives me the "Create Multi-Camera Source" option; but only if there isn't .wav or aif audio file in the list. The tutorial implies that audio files DO work.
    3) When I finally found the set of video files that gave me the "Create Multi-Camera Source" option I got a dialog that was considerably smaller than the one in the tutorial. While the tutorial shows options for Timecode syncing and syncing via audio I only see Synchronize Point. To synchronize using audio would have been most useful.
    It must be something I am doing wrong or something incorrect with my source files (mp4 at the same format and audio). But what?
    Thanks
    Peter

    You can see a good tutorial on the entire process here - http://tv.adobe.com/watch/learn-premiere-pro-cc/multicamera-workflows-with-premiere-pro/
    The help page also gives step by step - Adobe Premiere Pro Help | Multi-camera editing workflow.  I was talking about step 4. Create a multi-camera target sequence.

  • Logic Pro on Multi-Core Processors?

    Hi, I've heard that multi core processors such as those in the new iMac and in the Mac Pro are only any good if the software knows how to use them properly. So, does Logic know how to use the multi cores of the iMac and Mac Pro properly?
    Ultimately I want to know if I would be better off with say a 3.06G core 2 duo, or a 2.66G i5?? For Logic only, I couldnt care about games or anything else.

    I can't address the theoretical on this thread; I can only say that I've had no problem setting my buffer at the lowest setting possible on my 8-core to record musicians live in my studio, and I have no problems. As I monitor my 8 cores, I can see none of the cores working particularly harder than others, and I've yet to hit the red with any of them. I don't monitor on my 2.4 GHz dual core laptop at the lowest buffer settings, because it does have problems with lower buffer settings.
    I disable some plug-ins that introduce latency by when I'm tracking live musicians; the pitch correction & the ad-limiter are the main examples for me; then I bring them in during mix.
    There might be something about how I record; but I have for the last couple of years changed to simply monitoring through Logic with software monitoring, and set the latency to 32 samples and never changed it. I work with professional studio musicians, and nobody's had a problem with the monitoring; and I haven't had any trouble tracking... never knew that I was supposed to. On some tracks with a lot of virtual instruments, I'll often go ahead and freeze tracks before tracking overdubs, but that's been more about hung notes or a sudden burst of musical debris as the buffer catches up and spits 2 measures worth of notes out at once.
    In the most recent project I did recording over 70 songs and 24-5 minute soundtracks, the final step in most of the recordings was recording 3 layers of 5 vocalists (each on their own mic & track) with EQ & compression plugins on every vocal channel strip. That was on top of typically 12 to 20 tracks of live & virtual instruments (some mono & stereo), while feeding control room mix & a dual mono cue mix.
    Again, I'm not disputing the theory here; I just know I can do this with my 8-core and it doesn't break a sweat; my dual core does. I didn't know I wasn't supposed to be able to do it; I just did it and it works.

  • HOST Failed errors with multi-core processing in Compressor

    I used Digital Rebellion's Pref Mgr to trash all prefs; then Compressor Repair to fix them.  Rebooted.  Stopped Qmaster.  Reset services.  Established 5 instances ( I have 8 core Xeon 2.8ghz Mac Pro ).  Restarted Qmaster sharing.  Opened FCP file, sent to Compressor.  Selected DVD settings.  Chose cluster I set up in Qmaster.  Submitted. Instant "HOST Failed" error messages on the five instances that appeared in Batch Monitor.
    Help.  Tired.  Frustrated.  ******.

    If you really are running 10.6.2, I'd start by running all software updates.
    See what happens if you export a 5 minute section of your movie, export that as a master file and bring that movie into a new Compressor job,
    Post a screen shot of the Computer Sharing settings window to see whether anyone can spot something amiss.
    Russ

  • Limitations LabVIEW in Multi Core Processing.....

    What are the limitations of LabVIEW when running on a dual or quad processor system? 
    Recent literature shows that LabVIEW has a distinct advantage in running on a multicore system.  That is, assuming that the VI is written such that the threads can run concurrently.  So, what if two VIs share a functional global or a standard global?  And how about shared variables?  Do these have any effect on the ability of LabVIEW to run the threads on separate processors?
    Any other limitations?
    Thanks.

    The main limitation (that has bitten me the most often) is that functions that use the ui thread (property nodes and many call library nodes being to two most common), can block each other slowing down the system (but since LabVIEW is multithreaded this problem exists in a single core system but is less pronounced since it can't lead a to a core not doing work). But if you avoid property nodes where possible (especially in daq loops) and use defer panel updates if your changing a large amount you should be fine. You can set call library nodes to be reentrant to avoid running them in the ui thread (but be extremely careful to either add your own locking mechanism, or be absolutely sure that the call is really reentrant, very bad things can happen if your not careful with reentrant dll calls).
    Note: I don't think DAQmx property nodes are run in the UI Thread but I'm not certain of that.
    The one other "limitation" that comes to mind is that some race conditions (that are from improper code), may show up (or have an increased chance of showing up) in a multicore system.
     A functional global can only be used by one thread at a time. So if two threads try to use the same functional global at the same time, the first to try will run and the second will wait (perhaps running other sections of code while waiting, note: this is what makes function globals safe) until the first is finished. Global variable reads will only see completely written variables (if that's you concern). But if you have more than one writer you could likely have race conditions (this will probably affect a single core system as well, and you should try to replace them with a functional global in that case). Shared variables are about the same as global but with some extra logic (and overhead) that can be used for handling various race conditions (guaranteeing one writer or adding buffering for readers), and they support communication between separate systems (the main reason to use them). Remember (in general) if things don't share a data dependency than they can run con currently.
    Note: If you have have a lot of cores (4+) you may want to adjust the the system in threadconfig.vi
    Matt W

  • Running Cloud Premier Pro ina 12 Core Mac Pro with  OS 10.8.4. Installed a GeForce GTX 680 for Mac.

    I don't see the Cuda option inthe Project Settings render field . Are there drivers I am supposed to download so that I can use this card for rendering. The exiting ATI 5770 card was removed  and the system sees the GTX 680 card

    You will get better answers in the Premiere forum.
    Mylenium

  • Hung Threads with multi thread processing

    We use TopLink v10.1.3.5
    One of our applications uses multi-core processing and when multiple threads try to access lazily loaded 1-m relationships at the same time, the threads just hang forever. There are no errors but the thread dump says it’s waiting on a condition.
    We do not use cache Synchronization.
    The 1-m relationship is privately owned, uses Batch reading and Indirection.
    The problem occurs intermittently and we cannot reproduce it at will.
    Found this discussion, but since we are on 10.3.5, I think we should already have the patch?
    Hung Threads (Toplink 10.1.3)
    Can anyone please provide any help on this.
    Thanks for the help.
    Thread dump -
    at java/lang/Object.wait(Native Method)
    at java/lang/Object.wait(Object.java:167(Compiled Code))
    at oracle/toplink/internal/helper/ConcurrencyManager.acquire(ConcurrencyManager.java:76(Compiled Code))
    at oracle/toplink/internal/identitymaps/CacheKey.acquire(CacheKey.java:85(Compiled Code))
    at oracle/toplink/internal/identitymaps/IdentityMap.acquireLock(IdentityMap.java:85(Compiled Code))
    at oracle/toplink/internal/identitymaps/IdentityMapManager.acquireLock(IdentityMapManager.java:101(Compiled Code))
    at oracle/toplink/internal/sessions/IdentityMapAccessor.acquireLock(IdentityMapAccessor.java:68(Compiled Code))
    at oracle/toplink/internal/sessions/IdentityMapAccessor.acquireLock(IdentityMapAccessor.java:58(Compiled Code))
    at oracle/toplink/internal/descriptors/ObjectBuilder.buildObject(ObjectBuilder.java:502(Compiled Code))
    at oracle/toplink/internal/descriptors/ObjectBuilder.buildObject(ObjectBuilder.java:382(Compiled Code))
    at oracle/toplink/mappings/OneToOneMapping.valueFromRow(OneToOneMapping.java:1020(Compiled Code))
    at oracle/toplink/mappings/DatabaseMapping.readFromRowIntoObject(DatabaseMapping.java:1045(Compiled Code))
    at oracle/toplink/internal/descriptors/ObjectBuilder.buildAttributesIntoObject(ObjectBuilder.java:245(Compiled Code))
    at oracle/toplink/internal/descriptors/ObjectBuilder.buildObject(ObjectBuilder.java:564(Compiled Code))
    at oracle/toplink/internal/descriptors/ObjectBuilder.buildObject(ObjectBuilder.java:382(Compiled Code))
    at oracle/toplink/internal/descriptors/ObjectBuilder.buildObjectsInto(ObjectBuilder.java:678(Compiled Code))
    at oracle/toplink/internal/queryframework/DatabaseQueryMechanism.buildObjectsFromRows(DatabaseQueryMechanism.java:142(Compiled Code))
    at oracle/toplink/queryframework/ReadAllQuery.executeObjectLevelReadQuery(ReadAllQuery.java:483(Compiled Code))
    at oracle/toplink/queryframework/ObjectLevelReadQuery.executeDatabaseQuery(ObjectLevelReadQuery.java:813(Compiled Code))
    at oracle/toplink/queryframework/DatabaseQuery.execute(DatabaseQuery.java:620(Compiled Code))
    at oracle/toplink/queryframework/ObjectLevelReadQuery.execute(ObjectLevelReadQuery.java:781(Compiled Code))
    at oracle/toplink/queryframework/ReadAllQuery.execute(ReadAllQuery.java:451(Compiled Code))
    at oracle/toplink/publicinterface/Session.internalExecuteQuery(Session.java:2089(Compiled Code))
    at oracle/toplink/publicinterface/Session.executeQuery(Session.java:993(Compiled Code))
    at oracle/toplink/internal/indirection/QueryBasedValueHolder.instantiate(QueryBasedValueHolder.java:62(Compiled Code))
    at oracle/toplink/internal/indirection/QueryBasedValueHolder.instantiate(QueryBasedValueHolder.java:55(Compiled Code))
    at oracle/toplink/internal/indirection/DatabaseValueHolder.getValue(DatabaseValueHolder.java:61(Compiled Code))
    at oracle/toplink/indirection/IndirectList.buildDelegate(IndirectList.java:202(Compiled Code))
    at oracle/toplink/indirection/IndirectList.getDelegate(IndirectList.java:359(Compiled Code))
    at oracle/toplink/indirection/IndirectList.size(IndirectList.java:703(Compiled Code))

    All I can tell from the stack shown is that you are triggering indirection on a collection to an object that has an eagerly fetched 1:1 mapping to an object that is locked in the cache.  The thread is waiting on the lock owner to finish building the object before it can be returned.
    To tell what is going wrong, you will need to look at the complete thread dump to see what other threads might be building the object with its cache key locked.  For instance, a long running query might make it appear the system is hung when it is just a bottleneck in the application.  If you can, you should also try to call session.getIdentityMapAccessor().printIdentityMapLocks(); at the time of the problem as it will print off information on the locks such as the object involved and which threads hold them.  As for patches; 10.1.3 is an older stream but I am unaware of fixes that are not included in 10.1.3.5 that might resolve this - you should go through support to be sure.
    Best Regards,
    Chris

  • Why quality loss between after efects and premier pro 2

    premier pro 2
    ok my process is :- import avi into after efects / add efects and adjust brightness / when happy with picture export from after efects as avi  / import the avi after efects made into premier pro2 / adjust nothing and export from premier as an avi ,,,,,,,,,,
    now what i want to know is why is there a masive difference between the avi after efects made and the avi premier made the colour and brightness are totaly different which is not what i was expecting besause i made NO adjustments in premier  ????
    also being sort of new to video production .........  what is the best way to set up my pc monitor screen to give me the most realistic picture so that when i make adjustments to light / colour with adobe the exported media is going to look the way i want it to look ....... in my usual field (sound production) this is done by using good quality monitor speakers and listening at a flat eq 
    thanks for any help

    ok
    i just got my hands on a well looked after SONY PVM 14M2E CRT monitor for £ 175 [ and am very new to its connections]
    The only connections that look the same on the monitor and my pc are the "s video" [round socket with a few pins in it ]
    i got a lead pluged them in and ,,,,mmmm,,,  nothing the monitor said "it had no sync"  and i was'nt realy sure how the grafics
    card on my pc was ment to deal with this ,,,,,,,,, does any one know ,, am i missing a bit of hardwear here.......
    or should i be able to get my pc desktop on to my sony monitor  ,,, ????

  • My Premier Pro freeze up when I use multi cam edit

    Hi everyone,
    I am using Mac Book Pro 2.3G i7 4 core, 16G RAM, NVIDIA GeForce GT 750M 2048 MB, OSX10.9.5, with Premier Pro 7.2.2. When I use multi cam feature to edit,  screen have delay, and when I have more than 3 cam or if I press the buttons too fast, sometimes the program freeze up.
    I am editing RAW footage from my Canon C100 AVCHD, 24f.
    Questions:
    1/ is there any setting on program that can improve the situation?
    2/ if it is a hardware resouce issue, what Mac Pro I have to buy? I am thinking 32G RAM and 512G SSD, but a bit confused on the 4, 6, 8 core and clock speed. Should I get higher clock or more core? Or should I get basic CPU but upgrade the video card with more video RAM?
    Any user with similar experience please give me some insight.

    You're question is very general, more info please -
    What version of Premiere?
    Which Project Preset are you using?
    What clip format are you Importing?
    Computer specs?

  • I go through the process of burning a DVD from a Premier Pro Project and at the end of the process I get an encoding error and the dvd does not start burning.  How do I fix this?

    I go through the process of burning a DVD from a Premier Pro Project and at the end of the process I get an encoding error and the dvd does not start burning.  How do I fix this?

    adam@honestmusky wrote:
    Yes I am using encore.  I used to have no problem doing this, but I had to get a new computer and now something isn't working right.
    How about some DETAILS?
    -Premiere Pro Video Editing Information FAQ http://forums.adobe.com/message/4200840
    Also describe the EXACT steps you take to go from Premiere Pro to Encore

  • Dual Processor Multi Core Parrell Processing Question

    Hey Guys
    I'm looking for a little clarification on an issue with parrell
    processing in LabView. If I have a Dual Processor machine with two 4 core CPU's
    will be able to access all 8 cores in the LabView environment. I'm presuming it
    can use any cores the operating system can see?   
    Thanks for the help,
    Tom
    Solved!
    Go to Solution.

    Norbert B wrote:
    it is the job of the OS that applications can use all cores if necessarry. So for the application itself, it should make no difference if the system (in hardware) is MultiCPU, MultiCore or even simply HyperThread.....
    Norbert 
    Its true, but I would like to add my 5 cents here.
    Lets say, if you have single loop like
    while (true){
    //do something
    then OS will get no chance to run it in multiple threads. So, you will get max 12,5% CPU load at 8 cores PC or 50% max on dual core PC.
    I have dual core PC right now, and lets check it:
    So, as we can see - 50% CPU load reached (one core loaded more, but its another story).
    Well, if we will use two while loops, then we will get 100 % load:
    Of course, if you will need to load all 8 cores, then you should have 8 parallel loops.
    Compare BD above with the following:
    We have two Array minmax functions, and they independend, but we have 50% only.
    Well, you can get also 100% CPU utulization withing single while loop. In th example below you have two SubVI, which called in the same loop:
    We have here 100 %. Important, that these VIs should be reenterant!
    See what happened if they not reeenterant:
    Now a little bit about Vision. Behing of most of the Vision SubVIs are DLL calls. Some Vision functions already optimized for multicore execution. For example, convolution:
    On the BD above we have single loop with one SubVI, but both cores are used (because convolute itself already optimized for multi core).
    Remember, that not all Vision functions optimized yet. For, example, LowPass still single-threaded (compare this BD with BD above):
    Sure, we can utilize multi cores - just perform parallel execution (you have to split image to two parts, then join together and so on):
    Remember, that SubVIs should be reeentrant, and all DLL calls should be thred safe (not in UI thread). Also good idea to turn off debugging in such experiments for eliminate additional CPU load.
    Another point about 8 cores. As far as I know, LabVIEW (and LabVIEW-based application) will support only 4 cores within one execution system by default (at least prior to LabVIEW 2009). If you need to utulize all 8 cores, then you should add some lines into LabVIEW.ini. Refer to the following thread where you can found more details:
    Interpolate 1d slow on 8 core machine
    Hope all written above was correct. 
    Thank for reading and best regards,
    Andrey.
    Message Edited by Andrey Dmitriev on 11-27-2009 02:50 PM

  • Will CS6 masterclass Premier Pro ever be updated to process XAVC from PWX-X180

    I currently want to process XAVC from a Sony PWX-X180 sony camera. I know folks have written that the Premier Proc CC will do it, but
    after spending all that money on the Master Collection, I was wondering when my version of Premier pro will be able to do it...
    Thanks,

    CS6 was last updated about 3 years ago, and is no longer updated... all new features are in the Cloud version

  • I have just purchased Premier Pro - I have been waiting to down load it but it says it is still processing my order? how long does this take?

    I have just purchased Premier Pro - I have been waiting to down load it but it says it is still processing my order? how long does this take?

    Hi There,
    We have checked the details for your account, your subscription is activated.
    Kindly download the product using the below mentioned link.
    Creative Cloud Help | Install, update, or uninstall apps
        2. If you face any trouble kindly check.
    Troubleshoot Creative Cloud download and install issues
    Error downloading and installing Creative Cloud application
    Thanks,
    Atul Saini

  • App to Download / Open Premier Pro CC

    When downloading Premier Pro CC, I am prompted for an applcation to open it with and the only application I can think of to use is Adobe Application Manager. When I do select this it immediatley crashes. Note that I recently upgrade to v10.9 Mavericks and I do not know if that is causing the crash....many thanks. Any input greatly appreciated.
    Crash Dump below if it helps:
    Process:    
    PDApp [651]
    Path:       
    /Applications/Utilities/Adobe Application Manager/*/Adobe Application Manager.app/Contents/MacOS/PDApp
    Identifier: 
    com.adobe.PDApp
    Version:    
    6.2.112.0 (6.2.112.0)
    Code Type:  
    X86 (Native)
    Parent Process:  launchd [187]
    Responsible:
    PDApp [651]
    User ID:    
    501
    Date/Time:  
    2013-11-21 08:13:15.751 -0500
    OS Version: 
    Mac OS X 10.9 (13A603)
    Report Version:  11
    Anonymous UUID:  78358F02-7DF3-87DA-B308-287E4124EB1A
    Crashed Thread:  3  Dispatch queue: NSOperationQueue 0x132f80
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
    VM Regions Near 0:
    --> __PAGEZERO        
    0000000000000000-0000000000001000 [
    4K] ---/--- SM=NUL  /Applications/Utilities/Adobe Application Manager/*/Adobe Application Manager.app/Contents/MacOS/PDApp
    __TEXT            
    0000000000001000-0000000000040000 [  252K] r-x/rwx SM=COW  /Applications/Utilities/Adobe Application Manager/*/Adobe Application Manager.app/Contents/MacOS/PDApp
    Application Specific Information:
    objc_msgSend() selector name: release
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib   
    0x99979f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x9997916c mach_msg + 68
    2   com.apple.CoreFoundation 
    0x992dcf69 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation 
    0x992dc541 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation 
    0x992dbd5a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation 
    0x992dbbbb CFRunLoopRunInMode + 123
    6   com.apple.HIToolbox      
    0x914bfe2d RunCurrentEventLoopInMode + 259
    7   com.apple.HIToolbox      
    0x914bfbb2 ReceiveNextEventCommon + 526
    8   com.apple.HIToolbox      
    0x914bf98d _BlockUntilNextEventMatchingListInModeWithFilter + 92
    9   com.apple.AppKit         
    0x94eea5a9 _DPSNextEvent + 1602
    10  com.apple.AppKit         
    0x94ee9ad0 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 119
    11  com.apple.AppKit         
    0x94edc35c -[NSApplication run] + 727
    12  com.apple.AppKit         
    0x94ec51f8 NSApplicationMain + 1165
    13  com.adobe.PDApp          
    0x00007ad4 0x1000 + 27348
    14  com.adobe.PDApp          
    0x00004075 0x1000 + 12405
    15  com.adobe.PDApp          
    0x00003fa4 0x1000 + 12196
    Thread 1:
    0   libsystem_kernel.dylib   
    0x9997f046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x96c3fdcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib  
    0x96c43cce start_wqthread + 30
    Thread 2:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib   
    0x9997f992 kevent64 + 10
    1   libdispatch.dylib        
    0x9afbb8bd _dispatch_mgr_invoke + 238
    2   libdispatch.dylib        
    0x9afbb556 _dispatch_mgr_thread + 52
    Thread 3 Crashed:: Dispatch queue: NSOperationQueue 0x132f80
    0   libobjc.A.dylib          
    0x947a84ab objc_msgSend + 27
    1   libobjc.A.dylib          
    0x947aa497 (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 527
    2   com.apple.CoreFoundation 
    0x992a0cdf _CFAutoreleasePoolPop + 47
    3   com.apple.Foundation     
    0x95bc2c1f -[NSAutoreleasePool release] + 125
    4   CCMNative.dylib          
    0x0b5ec7cc HttpCommunicator::getCookies() + 716
    5   CCMNative.dylib          
    0x0b5ec986 HttpCommunicator::sendRequest(std::string, NSString*, bool, bool, NSMutableArray*, bool) + 408
    6   CCMNative.dylib          
    0x0b5ee271 HttpCommunicator::getRemoteFileSize(unsigned long long&) + 485
    7   CCMNative.dylib          
    0x0b5d3301 DownloadGlobalData::retrieveRemoteFileSize() + 471
    8   CCMNative.dylib          
    0x0b5dd757 FileDownloadManager::getFileSize(unsigned long long&, bool&) + 51
    9   CCMNative.dylib          
    0x0b5e4c1d DLEFileDownloadHandle::getFileSize(unsigned long long&, bool&) + 39
    10  CCMNative.dylib          
    0x0b439baa ProductSession::prepareNewDownload(std::string&, bool) + 1276
    11  CCMNative.dylib          
    0x0b43a422 ProductSession::isDownloadWorkCompleted(std::string&) + 54
    12  CCMNative.dylib          
    0x0b440e65 ProductSession::shouldDownloadAAM(OSXMLParser*) + 731
    13  CCMNative.dylib          
    0x0b4419f5 ProductSession::processAction(OSXMLParser*) + 417
    14  CCMNative.dylib          
    0x0b42dcd8 PerformSessionJob(MessageObject const&) + 432
    15  CCMNative.dylib          
    0x0b40cc9c Applet::executeMethodWithMessage(MessageObject&) + 228
    16  CCMNative.dylib          
    0x0b42418a processMessage + 184
    17  com.adobe.PDApp          
    0x00010c7e 0x1000 + 64638
    18  com.adobe.PDApp          
    0x0000439b 0x1000 + 13211
    19  com.adobe.PDApp          
    0x0000e339 0x1000 + 54073
    20  com.apple.CoreFoundation 
    0x992a1f5d __invoking___ + 29
    21  com.apple.CoreFoundation 
    0x992a1e2b -[NSInvocation invoke] + 315
    22  com.apple.Foundation     
    0x95c5f197 -[NSInvocationOperation main] + 217
    23  com.apple.Foundation     
    0x95ba9fec -[__NSOperationInternal _start:] + 702
    24  com.apple.Foundation     
    0x95ba9d21 -[NSOperation start] + 71
    25  com.apple.Foundation     
    0x95ba9c48 __NSOQSchedule_f + 50
    26  libdispatch.dylib        
    0x9afbde21 _dispatch_async_redirect_invoke + 158
    27  libdispatch.dylib        
    0x9afb93a6 _dispatch_client_callout + 50
    28  libdispatch.dylib        
    0x9afbb467 _dispatch_root_queue_drain + 257
    29  libdispatch.dylib        
    0x9afbc732 _dispatch_worker_thread2 + 39
    30  libsystem_pthread.dylib  
    0x96c3fdab _pthread_wqthread + 336
    31  libsystem_pthread.dylib  
    0x96c43cce start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib   
    0x9997f046 __workq_kernreturn + 10
    1   libsystem_pthread.dylib  
    0x96c3fdcf _pthread_wqthread + 372
    2   libsystem_pthread.dylib  
    0x96c43cce start_wqthread + 30
    Thread 5:
    0   libsystem_kernel.dylib   
    0x9997e7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x96c40d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib  
    0x96c42bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.ape.engine     
    0x05d6104f APXGetHostAPI + 2633743
    4   com.adobe.ape.engine     
    0x05af262f APXGetHostAPI + 83439
    5   com.adobe.ape.engine     
    0x05d6113e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine     
    0x05d611a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine     
    0x05d612c6 APXGetHostAPI + 2634374
    8   libsystem_pthread.dylib  
    0x96c3e5fb _pthread_body + 144
    9   libsystem_pthread.dylib  
    0x96c3e485 _pthread_start + 130
    10  libsystem_pthread.dylib  
    0x96c43cf2 thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib   
    0x9997e7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x96c40d1d _pthread_cond_wait + 728
    2   libsystem_pthread.dylib  
    0x96c42bd9 pthread_cond_wait$UNIX2003 + 71
    3   com.adobe.ape.engine     
    0x05d6104f APXGetHostAPI + 2633743
    4   com.adobe.ape.engine     
    0x05af262f APXGetHostAPI + 83439
    5   com.adobe.ape.engine     
    0x05d6113e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine     
    0x05d611a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine     
    0x05d612c6 APXGetHostAPI + 2634374
    8   libsystem_pthread.dylib  
    0x96c3e5fb _pthread_body + 144
    9   libsystem_pthread.dylib  
    0x96c3e485 _pthread_start + 130
    10  libsystem_pthread.dylib  
    0x96c43cf2 thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib   
    0x9997e7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x96c40d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib  
    0x96c41042 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.ape.engine     
    0x05d61017 APXGetHostAPI + 2633687
    4   com.adobe.ape.engine     
    0x05d7a20e APXGetHostAPI + 2736590
    5   com.adobe.ape.engine     
    0x05d6113e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine     
    0x05d611a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine     
    0x05d612c6 APXGetHostAPI + 2634374
    8   libsystem_pthread.dylib  
    0x96c3e5fb _pthread_body + 144
    9   libsystem_pthread.dylib  
    0x96c3e485 _pthread_start + 130
    10  libsystem_pthread.dylib  
    0x96c43cf2 thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib   
    0x9997e7ca __psynch_cvwait + 10
    1   libsystem_pthread.dylib  
    0x96c40d8a _pthread_cond_wait + 837
    2   libsystem_pthread.dylib  
    0x96c41042 pthread_cond_timedwait_relative_np + 47
    3   com.adobe.ape.engine     
    0x05d61017 APXGetHostAPI + 2633687
    4   com.adobe.ape.engine     
    0x05eef0c8 APXGetHostAPI + 4264072
    5   com.adobe.ape.engine     
    0x05d6113e APXGetHostAPI + 2633982
    6   com.adobe.ape.engine     
    0x05d611a7 APXGetHostAPI + 2634087
    7   com.adobe.ape.engine     
    0x05d612c6 APXGetHostAPI + 2634374
    8   libsystem_pthread.dylib  
    0x96c3e5fb _pthread_body + 144
    9   libsystem_pthread.dylib  
    0x96c3e485 _pthread_start + 130
    10  libsystem_pthread.dylib  
    0x96c43cf2 thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib   
    0x99979f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x9997916c mach_msg + 68
    2   com.apple.CoreFoundation 
    0x992dcf69 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation 
    0x992dc541 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation 
    0x992dbd5a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation 
    0x992dbbbb CFRunLoopRunInMode + 123
    6   com.apple.AppKit         
    0x95093f18 _NSEventThread + 283
    7   libsystem_pthread.dylib  
    0x96c3e5fb _pthread_body + 144
    8   libsystem_pthread.dylib  
    0x96c3e485 _pthread_start + 130
    9   libsystem_pthread.dylib  
    0x96c43cf2 thread_start + 34
    Thread 10:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib   
    0x99979f7a mach_msg_trap + 10
    1   libsystem_kernel.dylib   
    0x9997916c mach_msg + 68
    2   com.apple.CoreFoundation 
    0x992dcf69 __CFRunLoopServiceMachPort + 169
    3   com.apple.CoreFoundation 
    0x992dc541 __CFRunLoopRun + 1393
    4   com.apple.CoreFoundation 
    0x992dbd5a CFRunLoopRunSpecific + 394
    5   com.apple.CoreFoundation 
    0x992dbbbb CFRunLoopRunInMode + 123
    6   com.apple.Foundation     
    0x95c0f0b5 +[NSURLConnection(Loader) _resourceLoadLoop:] + 381
    7   com.apple.Foundation     
    0x95c0ef2e -[NSThread main] + 45
    8   com.apple.Foundation     
    0x95c0ee86 __NSThread__main__ + 1426
    9   libsystem_pthread.dylib  
    0x96c3e5fb _pthread_body + 144
    10  libsystem_pthread.dylib  
    0x96c3e485 _pthread_start + 130
    11  libsystem_pthread.dylib  
    0x96c43cf2 thread_start + 34
    Thread 3 crashed with X86 Thread State (32-bit):
      eax: 0x001a8d00  ebx: 0x95bc2bb0  ecx: 0x947c4167  edx: 0x008e8a00
      edi: 0x00000000  esi: 0x0108f000  ebp: 0xb0114358  esp: 0xb0114104
       ss: 0x00000023  efl: 0x00010206  eip: 0x947a84ab   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x00000000
    Logical CPU:
    0
    Error Code: 
    0x00000004
    Trap Number:
    14
    Binary Images:
    0x1000 -
    0x3ffe3 +com.adobe.PDApp (6.2.112.0 - 6.2.112.0) <8D7B660F-E376-56A8-08E3-C808F17872F6> /Applications/Utilities/Adobe Application Manager/*/Adobe Application Manager.app/Contents/MacOS/PDApp
       0x48000 -
    0x4fffb +com.adobe.ape.shim (3.3.8.19346 - 3.3.8.19346) <B711CAA7-29D6-D5CF-CE1B-A611896C8D87> /Applications/Utilities/Adobe Application Manager/*/Adobe Application Manager.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
      0x383000 -   0x3d7fe7 +com.adobe.ape (3.3.8.19346 - 3.3.8.19346) <0B80F7A7-EC10-A7C7-5E6E-787953553C55> /Applications/Utilities/Adobe Application Manager/*/Adobe Application Manager.app/Contents/Frameworks/adbeapecore.framework/adbeapecore
      0x600000 -   0x6f6ff3 +AdobePIM.dylib (6.2.112.0 [BuildVersion: 1.0; BuildDate: Tue Jul 31 2012 13:15:01 ] - 6.2.112.0 [BuildVersion: 1.0; BuildDate: Tue Jul 31 2012 13:15:01 ]) <7E9D9196-2A82-C25B-1DDF-4312E706A4BA> /Applications/Utilities/Adobe Application Manager/*/AdobePIM.dylib
      0x70f000 -   0x78cffa  com.apple.xquery (1.3.1 - 30) <A9C347CC-0C9F-395F-BB32-1EE803C28FDC> /System/Library/PrivateFrameworks/XQuery.framework/XQuery
      0x7c0000 -   0x7e5ff9  com.apple.framework.familycontrols (4.1 - 410) <A33A97EE-C735-38BA-9B49-5D78DAA3DEDA> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
    0x3182000 -  0x318dffa  com.apple.CommerceCore (1.0 - 42) <E59717F2-6770-3DBC-8510-F7AA61E60F57> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
    0x5aa9000 -  0x69f1fcb +com.adobe.ape.engine (3.3.8.19346 - 3.3.8.19346) <FB642021-E854-27B0-9C15-E3567B4F56B9> /Applications/Utilities/Adobe Application Manager/*/Adobe Application Manager.app/Contents/Frameworks/adbeapecore.framework/Libraries/adbeapeengine.bundle/Cont ents/MacOS/adbeapeengine
    0x6f11000 -  0x6f15ffd  com.apple.audio.AppleHDAHALPlugIn (2.5.2 - 2.5.2fc2) <54606A67-AF50-3884-B8D9-426F653B5B79> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0x74a4000 -  0x7554fff  ColorSyncDeprecated.dylib (426) <F54DBFF3-3165-3D15-8AE4-37B603502A5F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x9d5a000 -  0x9d68fff  libSimplifiedChineseConverter.dylib (61) <6E42E198-9C8D-3F0F-9660-6D9975C2461E> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x9d6c000 -  0x9d7effd  libTraditionalChineseConverter.dylib (61) <EFC81138-0455-321B-A93A-F4E9C4A3EB31> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0xb400000 -  0xb6b2ff3 +CCMNative.dylib (7.0.0.34 [BuildVersion: 1.0; BuildDate: Wed Aug 08 2012 23:21:27 ] - 7.0.0.34 [BuildVersion: 1.0; BuildDate: Wed Aug 08 2012 23:21:27 ]) <BC821C96-C2F4-67C2-D3BB-B62EEA05DC4A> /Applications/Utilities/Adobe Application Manager/*/CCMNative.dylib
    0x8feab000 - 0x8fedd417  dyld (239.3) <4B280BB1-55F8-313F-86A6-8ADD644ED69E> /usr/lib/dyld
    0x90008000 - 0x9005dff7  com.apple.audio.CoreAudio (4.2.0 - 4.2.0) <0F1C111F-1E64-33BB-A69F-14643B3037D5> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x9005e000 - 0x9020aff1  com.apple.QuartzCore (1.8 - 332.0) <07F9B77F-35A2-3D21-99FA-CD3FCE5B9C7B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9020b000 - 0x9020ffff  com.apple.CommonPanels (1.2.6 - 96) <E7CA63C6-CEE9-3F0A-93A7-C12C653FFB80> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x90210000 - 0x9023eff3  com.apple.DebugSymbols (106 - 106) <FC70F4C9-B2A6-352F-9563-6C085E9DDDB8> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
    0x90541000 - 0x9054bfff  com.apple.bsd.ServiceManagement (2.0 - 2.0) <B84F3916-236A-347B-9C1F-3DE571496737> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
    0x9054f000 - 0x90597fff  com.apple.PerformanceAnalysis (1.47 - 47) <16935C0F-7F9F-316E-9D46-11973DE0904A> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x90980000 - 0x909abff5  com.apple.ChunkingLibrary (2.0 - 155.1) <50BBBBF8-F30B-39EA-A512-11A47F429F2C> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
    0x909ac000 - 0x909d7ff7  libpcap.A.dylib (42) <66FBEAD3-FE91-3A89-8706-FB95229068AC> /usr/lib/libpcap.A.dylib
    0x909d8000 - 0x90a36ffd  com.apple.AE (665.5 - 665.5) <54F2F247-160C-3A22-A6E3-5D49655A67AB> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
    0x90a38000 - 0x90a3bffa  libCGXType.A.dylib (599.7) <2738FF52-4B47-31AD-B7E5-412F6AFACC2A> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90a3c000 - 0x90ab1ff1  com.apple.ApplicationServices.ATS (360 - 363.1) <5C9BC698-0CC1-3F6A-9F9D-BCC3A9C3D6DC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
    0x90ab2000 - 0x90abbfff  libsystem_notify.dylib (121) <623269F5-1518-3035-A916-8AF83C972154> /usr/lib/system/libsystem_notify.dylib
    0x90abc000 - 0x90b7fff1  com.apple.CoreText (352.0 - 367.15) <746AD442-F7B4-3273-A36D-C7103D26F727> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x90b80000 - 0x90b85ff7  com.apple.print.framework.Print (9.0 - 260) <A6C465F6-C5D1-353A-9F33-19B9CEDBBC2A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x90b86000 - 0x90bfcff3  com.apple.securityfoundation (6.0 - 55122) <25149798-A37E-316F-84AB-93029EAF33D8> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x90bfd000 - 0x90c05fff  libsystem_dnssd.dylib (522.1.11) <1C015806-B971-34F9-B162-3DF7897351D0> /usr/lib/system/libsystem_dnssd.dylib
    0x90c30000 - 0x90c58fff  libsystem_info.dylib (449.1.3) <BB68E8CC-422F-3121-8C86-D0F766FB696D> /usr/lib/system/libsystem_info.dylib
    0x90c59000 - 0x90d44ff4  com.apple.DiskImagesFramework (10.9 - 371.1) <FC13BD5A-0FB7-35D5-A8DF-0510CFA996FE> /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
    0x90d45000 - 0x90d49ffe  libCoreVMClient.dylib (58.1) <0EB8FFD7-AFED-3A63-810E-29629831D43D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x90d4a000 - 0x90d53fff  com.apple.DiskArbitration (2.6 - 2.6) <6379523D-3196-370C-AE4A-8EA586E36909> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90d54000 - 0x90d59ff6  libcompiler_rt.dylib (35) <9924DF2E-D80B-3A21-920D-544A4597203F> /usr/lib/system/libcompiler_rt.dylib
    0x90d5a000 - 0x90e06ffb  libvMisc.dylib (423.32) <43873EFF-FB43-3301-BEE8-F2C3A046D7A6> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
    0x90e07000 - 0x90f05fff  libJP2.dylib (1038) <EE0B9985-625D-39E6-B425-03FB75BA2594> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x90f06000 - 0x90f1ffff  com.apple.Kerberos (3.0 - 1) <91F17EB2-C70C-359C-B09D-96B52D2A9C9F> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x90f20000 - 0x90f6cff7  libcups.2.dylib (372) <9A2BE8DC-37E4-3019-B665-1036FE7868EA> /usr/lib/libcups.2.dylib
    0x90f6d000 - 0x90f6effc  com.apple.TrustEvaluationAgent (2.0 - 25) <064B485D-56E0-3DD7-BBE2-E08A5BFFF8B3> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x90f6f000 - 0x90f96fff  com.apple.CoreVideo (1.8 - 117.2) <A53FDD90-F200-3F7C-8A8E-5DE36D3DFBB0> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x90f97000 - 0x90fbcff7  com.apple.quartzfilters (1.8.0 - 1.7.0) <FCF52905-85B1-375C-B0AA-B8251B614D2D> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework /Versions/A/QuartzFilters
    0x91072000 - 0x91437ff6  libLAPACK.dylib (1094.5) <E6286E68-3501-31AC-813E-75B3B3968011> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x91438000 - 0x9147afff  libGLU.dylib (9.0.83) <0D9BFE5A-435E-3C66-AF96-D3567B8FC87B> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x9147b000 - 0x9147cfff  libDiagnosticMessagesClient.dylib (100) <B936B1D4-90BB-395D-8EA9-E1237608E7D0> /usr/lib/libDiagnosticMessagesClient.dylib
    0x91494000 - 0x91809ff9  com.apple.HIToolbox (2.1 - 695) <74E2DE33-E48E-3206-BD78-AFB988235A83> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
    0x9180a000 - 0x9183bffd  com.apple.GSS (4.0 - 2.0) <6BA01155-4DAD-30EE-B480-D224650EA010> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x9183c000 - 0x91849ff7  com.apple.AppleFSCompression (56 - 1.0) <0C44B3E4-C4A7-3A65-9C1A-334CA3E35BDB> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
    0x9184a000 - 0x9184effa  libcache.dylib (62) <9730D7F2-D226-3F30-8D26-BF598CB781F6> /usr/lib/system/libcache.dylib
    0x9184f000 - 0x91dbcfff  com.apple.QuartzComposer (5.1 - 316) <4FC30662-E3CC-3AE5-88CE-7B271B59EFF0> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer
    0x91dbd000 - 0x91dc0ff9  com.apple.TCC (1.0 - 1) <A5FCF7AA-3F56-3A19-9DF1-661F1F02F79D> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x91dc1000 - 0x91e36ffb  com.apple.framework.IOKit (2.0.1 - 907.1.13) <86D72735-9DFB-35C8-83F7-CE0DCF17D354> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x921be000 - 0x921efff4  com.apple.securityinterface (9.0 - 55047) <0D5ED2B8-C973-3C91-BA45-22501A043263> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInterface
    0x921f0000 - 0x92246ff6  com.apple.ScalableUserInterface (1.0 - 1) <2C81641B-FA30-32FF-8B3E-3CB9BF53B2D9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableUserInterfa ce.framework/Versions/A/ScalableUserInterface
    0x92247000 - 0x924c3ff7  com.apple.QuickTime (7.7.3 - 2826) <D9F2857B-5668-3828-B85E-0F897462C8D8> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x924e5000 - 0x924eeffa  com.apple.CommonAuth (4.0 - 2.0) <6CB82D57-3C55-39E5-9036-8047DF3E6F57> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x924ef000 - 0x924efffd  com.apple.audio.units.AudioUnit (1.9 - 1.9) <8A37963C-DF6F-3DFF-94E9-407DC5DFEDA9> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x924f9000 - 0x9283fffb  com.apple.MediaToolbox (1.0 - 1273.29) <60F62850-70EC-38E8-9C7F-81204CF9C382> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
    0x92840000 - 0x9286afff  libxslt.1.dylib (13) <249D54AB-1D82-38FE-ABEC-0D575450C73B> /usr/lib/libxslt.1.dylib
    0x9286b000 - 0x92895ff7  libsandbox.1.dylib (278.10) <28813216-B652-3E4D-B0D5-BE49B385C6EC> /usr/lib/libsandbox.1.dylib
    0x92896000 - 0x928c2ff7  com.apple.DictionaryServices (1.2 - 208) <33873336-BECD-3F62-A315-C45F24C1818C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
    0x928c3000 - 0x928c3ffd  libOpenScriptingUtil.dylib (157) <4D06E8ED-D312-34EA-A448-DFF45ADC3CE5> /usr/lib/libOpenScriptingUtil.dylib
    0x928c4000 - 0x928dcff7  libsystem_malloc.dylib (23.1.10) <69F485C9-B3E7-3E36-A06C-D7DFD29D22E1> /usr/lib/system/libsystem_malloc.dylib
    0x928dd000 - 0x9292dff7  libcorecrypto.dylib (161.1) <135FD99E-2211-3DF4-825C-C9F816107F0C> /usr/lib/system/libcorecrypto.dylib
    0x9292e000 - 0x9292efff  com.apple.Carbon (154 - 157) <6E680560-FD53-3C00-BDF7-7AFA28747DC8> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x9292f000 - 0x929a2fff  com.apple.SearchKit (1.4.0 - 1.4.0) <6F607AB6-7553-37BA-BEC5-98FD7C27FAD7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x929a3000 - 0x92af9ff0  libBLAS.dylib (1094.5) <74310C2F-4FDB-3995-A01A-5AFB83010A43> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x92afa000 - 0x92b64ff7  com.apple.framework.CoreWiFi (2.0 - 200.21.1) <13EE6C12-B981-3132-864A-D493B91AE37E> /System/Library/Frameworks/CoreWiFi.framework/Versions/A/CoreWiFi
    0x92b65000 - 0x92b68ff3  com.apple.AppleSystemInfo (3.0 - 3.0) <99A923AE-121B-307D-AC1C-968976FBA225> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo
    0x92b69000 - 0x92ba8ff7  com.apple.bom (12.0 - 192) <50F9D23C-9C9A-38BF-B4E2-66D93BE2A174> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x92ba9000 - 0x92d1bffb  com.apple.audio.toolbox.AudioToolbox (1.9 - 1.9) <E5FFD35D-18CF-333C-BECE-39F8E47BE707> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x92d1c000 - 0x92d27ff6  com.apple.NetAuth (5.0 - 5.0) <3B2E9615-EE12-38FC-BDCF-09529FF9464B> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x93081000 - 0x93528fe7  com.apple.CoreAUC (6.22.08 - 6.22.08) <3F9E2986-8FF9-3339-A0C8-DC1186C4A5EC> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x93529000 - 0x93635fff  com.apple.ImageIO.framework (3.3.0 - 1038) <0B4A6607-9FBC-3A6C-984A-0542DE8385FB> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x93636000 - 0x93651ff6  libPng.dylib (1038) <F39168D4-ABEB-3C2D-A763-B9D3E1EF43BC> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x93652000 - 0x93653fff  libremovefile.dylib (33) <ED35EA79-EB06-3B84-A6D4-B1A9D6B8648D> /usr/lib/system/libremovefile.dylib
    0x936bb000 - 0x93710fff  libc++.1.dylib (120) <10C0A136-64F9-3CC2-9420-013247032120> /usr/lib/libc++.1.dylib
    0x93711000 - 0x93715ffc  com.apple.IOSurface (91 - 91) <DECEEB72-3C7E-3C21-9237-E5AD293F8B09> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x945b0000 - 0x945e6fff  com.apple.IconServices (25 - 25.17) <A4B5242B-765E-3D58-B066-BBEDB5947AAD> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x945e7000 - 0x9462dfff  libcurl.4.dylib (78) <EC84399F-5EA8-321B-B122-99730CC557C8> /usr/lib/libcurl.4.dylib
    0x9462e000 - 0x9463aff7  com.apple.OpenDirectory (10.9 - 173.1.1) <2AA24814-2DC6-3E28-B71B-186B686F0F19> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x9463b000 - 0x94727ff7  libxml2.2.dylib (26) <32040145-6FD6-3AD2-B98B-39F73BF9AC47> /usr/lib/libxml2.2.dylib
    0x94728000 - 0x94732ff3  com.apple.DisplayServicesFW (2.8 - 360.8.14) <B14B15EC-41BA-37F6-B696-8BBA0E325C0C> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices
    0x94733000 - 0x94734ffd  libunc.dylib (28) <22A126A1-DCFB-3BE5-A66B-C973F0A5D839> /usr/lib/system/libunc.dylib
    0x947a4000 - 0x9494c4af  libobjc.A.dylib (551.1) <31CBE178-E972-30D1-ADC6-4B8345CAE326> /usr/lib/libobjc.A.dylib
    0x9494d000 - 0x94abdfff  com.apple.QTKit (7.7.3 - 2826) <C6C84EA7-E9C6-3891-B76F-C497C4A2ED65> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x94abe000 - 0x94acaffc  libbz2.1.0.dylib (29) <3CEF1E92-BA42-3F8A-8E8D-9E1F7658E5C7> /usr/lib/libbz2.1.0.dylib
    0x94acb000 - 0x94aceffb  libutil.dylib (34) <B496031E-E763-3DEB-84D2-85C0F3DF2012> /usr/lib/libutil.dylib
    0x94acf000 - 0x94ae1fff  libsystem_asl.dylib (217.1.4) <51EB17C9-9F5B-39F3-B6CD-8EF238B05B89> /usr/lib/system/libsystem_asl.dylib
    0x94ae2000 - 0x94ae4fff  libsystem_configuration.dylib (596.12) <1C31C3F6-568D-3854-AE03-A5DA2F39297E> /usr/lib/system/libsystem_configuration.dylib
    0x94ae5000 - 0x94b39fff  com.apple.AppleVAFramework (5.0.27 - 5.0.27) <95A1E1CF-FC3E-3203-8683-34823CD70B6B> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x94c77000 - 0x94c82fff  libcsfde.dylib (380) <C9E61AFB-1A9D-324B-9827-06B182CDD7B0> /usr/lib/libcsfde.dylib
    0x94d2f000 - 0x94d6cff7  libauto.dylib (185.5) <CD008E66-4A0C-35F5-8D72-80D76A716A03> /usr/lib/libauto.dylib
    0x94d6d000 - 0x94d85fff  com.apple.CFOpenDirectory (10.9 - 173.1.1) <630A5CCF-8FC3-379D-B0BD-41DCE1F0B624> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
    0x94e27000 - 0x94e2affe  com.apple.LoginUICore (3.0 - 3.0) <6FE961A4-3C17-3004-B50B-FD78FDC28350> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore. framework/Versions/A/LoginUICore
    0x94e2b000 - 0x94e94fff  com.apple.datadetectorscore (5.0 - 354.0) <0C6C812D-3E7A-31A4-BFDE-CD3316AA35B6> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor e
    0x94e9e000 - 0x94ebdff9  com.apple.framework.Apple80211 (9.0 - 900.47) <68E399FF-AB98-378D-94AC-D0869A72344F> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
    0x94ebe000 - 0x94ec2ffc  libpam.2.dylib (20) <50623D44-795F-3E28-AA85-23E0E7E2AE0E> /usr/lib/libpam.2.dylib
    0x94ec3000 - 0x95adeff3  com.apple.AppKit (6.9 - 1265) <AE258D94-0272-394F-BBB7-9B5C165A4A78> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95adf000 - 0x95ae5ff7  com.apple.AOSNotification (1.7.0 - 760.3) <63F7E7F8-6FA3-38D3-9907-CDF360CA9354> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotification
    0x95ae6000 - 0x95b44ff7  com.apple.CoreUtils (1.9 - 190.4) <9E43FF7D-7FCD-3032-9EF9-BCF6D09E73C3> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x95b45000 - 0x95ba1ffa  com.apple.print.framework.PrintCore (9.0 - 428) <3E248391-2669-328B-B84F-8763FE8E92BB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore
    0x95ba2000 - 0x95ecdff6  com.apple.Foundation (6.9 - 1056) <C8AE9C03-3460-354A-A8B6-EF4955BE600D> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x95eff000 - 0x9602cff9  com.apple.avfoundation (2.0 - 651.12) <1AB88210-F2E6-3318-ACB2-41ED5AE6A0EF> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x9602d000 - 0x96039ffe  libkxld.dylib (2422.1.72) <F9B35FA5-C936-3286-A055-2B0780A674AC> /usr/lib/system/libkxld.dylib
    0x9603a000 - 0x9603afff  com.apple.Accelerate (1.9 - Accelerate 1.9) <C85070A7-D942-3CFA-981F-5864480788C8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x9604c000 - 0x96140fff  libFontParser.dylib (111.1) <D8F9B2A4-41A6-3407-8D80-13A841F97BE5> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
    0x96141000 - 0x96165fff  libxpc.dylib (300.1.17) <252BC88F-A5CA-3E67-AEDB-3D7B9F4537E2> /usr/lib/system/libxpc.dylib
    0x96166000 - 0x96168fff  libquarantine.dylib (71) <EE3B510E-1AEC-3171-8A1A-D6A5A42CF35C> /usr/lib/system/libquarantine.dylib
    0x96169000 - 0x9658efe3  com.apple.VideoToolbox (1.0 - 1273.29) <200BFEED-8948-3266-A2C4-1DC6A695EC58> /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox
    0x9658f000 - 0x96593ffa  libGIF.dylib (1038) <5CEB4EDF-B0B6-33A6-BDDE-8C0D3226FA72> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x96594000 - 0x96886ff8  com.apple.CoreImage (9.0.54) <D7BC3E53-EF5B-3A14-8808-8D45EE505B48> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage.framework /Versions/A/CoreImage
    0x96887000 - 0x968d6fff  com.apple.opencl (2.3.57 - 2.3.57) <93385E1C-00D9-31BE-9652-7F3C09484B3E> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x968d7000 - 0x968defff  libMatch.1.dylib (19) <3B3680FC-2AC9-37CC-B262-5ACE2CF8939A> /usr/lib/libMatch.1.dylib
    0x968df000 - 0x9695fff7  com.apple.CoreServices.OSServices (600.4 - 600.4) <1227DF22-E2DA-3764-A1CA-10CC0CEBE377> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x96960000 - 0x96960fff  com.apple.ApplicationServices (48 - 48) <7967F6FA-2984-3CC3-AD9A-7B9AEC562A2A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x96961000 - 0x96974fff  com.apple.ImageCapture (9.0 - 9.0) <63D5C96F-1893-3F35-ADFB-EE451AFD87E6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture
    0x96975000 - 0x96977fff  com.apple.SecCodeWrapper (3.0 - 1) <29ECC157-F444-31FE-99CC-A9289FF3AC8D> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper
    0x96978000 - 0x9697effb  libunwind.dylib (35.3) <099D1A6F-A1F0-3D05-BF1C-0A7BB32D39C2> /usr/lib/system/libunwind.dylib
    0x96980000 - 0x969b8fff  com.apple.LDAPFramework (2.4.28 - 194.5) <0C42A932-15E8-3CD1-AC35-1DF7D41B25A2> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x969b9000 - 0x96c3cff7  com.apple.RawCamera.bundle (5.01 - 718) <6CBC1883-D81D-3053-94CA-2AB4A460EE38> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x96c3d000 - 0x96c44ffb  libsystem_pthread.dylib (53.1.4) <8B1B7B84-1B5D-32A8-AC0D-1E689E5C8A4C> /usr/lib/system/libsystem_pthread.dylib
    0x96ca8000 - 0x96d98ffb  libiconv.2.dylib (41) <848FEBA7-2E3E-3ECB-BD59-007F32468787> /usr/lib/libiconv.2.dylib
    0x96dcc000 - 0x96ddaff3  com.apple.opengl (9.0.83 - 9.0.83) <16CFFD50-217E-3E18-88AF-7F2AD980628B> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x96e0b000 - 0x96e12ffe  com.apple.agl (3.2.3 - AGL-3.2.3) <E26A1D2C-596E-31F0-8E70-FC381874F8DA> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96e72000 - 0x96e7cff7  com.apple.DirectoryService.Framework (10.9 - 173.1.1) <D6735614-EF4B-389F-BF99-7D8416A504BA> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x96ebd000 - 0x96ecbff7  com.apple.Sharing (132.2 - 132.2) <87DBFC7A-9689-3B8E-AD16-5A9DFF9DE625> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
    0x96ecc000 - 0x96f01ffd  libssl.0.9.8.dylib (50) <F3BEA2DF-DB84-37F0-B4C7-97C0A4DF19C9> /usr/lib/libssl.0.9.8.dylib
    0x96f02000 - 0x96f3aff7  com.apple.MediaKit (15 - 709) <82E0F8C0-313C-379C-9994-4D21587D0C0C> /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
    0x96f8a000 - 0x96f8cff2  com.apple.EFILogin (2.0 - 2) <BC558029-74C0-3A69-B376-8F4CBF8C338F> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x96f8d000 - 0x96f8dfff  libodfde.dylib (20) <98FC02AE-C596-3ED5-80D1-C502FF6115ED> /usr/lib/libodfde.dylib
    0x96f8e000 - 0x96fe3ff7  com.apple.QuickLookFramework (5.0 - 622.3) <3C6ADC02-2C67-361B-B042-47DDCC0EDA5F> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x96fe4000 - 0x972cefd2  com.apple.vImage (7.0 - 7.0) <256972F0-3DBC-3CE1-9EE8-B48243868729> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
    0x972cf000 - 0x972d3fff  libheimdal-asn1.dylib (323.12) <9EA2A221-301B-3B9A-BBF2-38134145B5A8> /usr/lib/libheimdal-asn1.dylib
    0x972d4000 - 0x9735dfff  com.apple.CoreSymbolication (3.0 - 141) <178DDF5C-B6DA-39BD-84F5-FD3FA7E93BF8> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x9735e000 - 0x97444ff7  com.apple.coreui (2.1 - 231) <1C1AE894-C5C2-3F1C-BF29-B152ECD9BD88> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x97459000 - 0x974b2ffa  libTIFF.dylib (1038) <691DAAFD-D72B-3BE9-AE5C-84AF86BE66CD> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x974b3000 - 0x974ceff5  com.apple.openscripting (1.4 - 157) <5C161A52-8D2F-3D56-A988-05727BED7A59> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
    0x974cf000 - 0x974fefff  com.apple.framework.SystemAdministration (1.0 - 1.0) <05E81260-7DC7-3546-B45D-15B3E5DF056D> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdminis tration
    0x974ff000 - 0x97530ffa  libsystem_m.dylib (3047.16) <28E614E8-7802-3E84-960A-AD4721EF10F7> /usr/lib/system/libsystem_m.dylib
    0x97531000 - 0x9753cffb  libcommonCrypto.dylib (60049) <F8E60C43-22EE-3E0B-9546-3365056901F1> /usr/lib/system/libcommonCrypto.dylib
    0x9753d000 - 0x97592ff3  com.apple.ImageCaptureCore (5.0 - 5.0) <69A007AE-4654-3C79-9AF6-5EC8F173F225> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x97593000 - 0x975aaff4  com.apple.CoreMediaAuthoring (2.2 - 947) <BF917B77-0935-3F56-A2B9-E62A58A713B8> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing
    0x975ab000 - 0x975adffb  libRadiance.dylib (1038) <F0D3F13B-5628-3DF9-8B86-A4D914567B25> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x975ae000 - 0x975bbfff  com.apple.Librarian (1.2 - 1) <F85681E3-3398-327B-829B-1D8078C38C22> /System/Library/PrivateFrameworks/Librarian.framework/Versions/A/Librarian
    0x975ca000 - 0x97608ff7  com.apple.NavigationServices (3.8 - 215) <A093AAF0-248E-313E-BA82-01F69E269895> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
    0x97609000 - 0x9762cff7  libc++abi.dylib (48) <5367BE5A-D475-3FB4-972D-E1DC999A709A> /usr/lib/libc++abi.dylib
    0x9762d000 - 0x97696fff  com.apple.SystemConfiguration (1.13 - 1.13) <542075CD-9085-3F30-B84B-DD0277D6A40E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
    0x97697000 - 0x97a8fff3  com.apple.CoreGraphics (1.600.0 - 599.7) <DB004990-F06F-3768-AE4C-191B3C748EFC> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
    0x97a90000 - 0x97ec4ff7  com.apple.vision.FaceCore (3.0.0 - 3.0.0) <5B12F3E9-84F6-3183-B85D-FD19EF800ADB> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x97ec5000 - 0x97ec7fff  com.apple.securityhi (9.0 - 55005) <51765C73-80D1-33E3-9589-3E88380CE007> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x97ec8000 - 0x97f5fff7  com.apple.ink.framework (10.9 - 207) <EF00BCCB-B270-3F3D-9424-EF5F4BC23E25> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x97f60000 - 0x97f63fff  libdyld.dylib (239.3) <729B32AC-EEE2-3739-8CE3-F90838D51906> /usr/lib/system/libdyld.dylib
    0x97f64000 - 0x97f6cfff  liblaunch.dylib (842.1.4) <3798500D-4436-3AEB-B273-7F2428C33A4A> /usr/lib/system/liblaunch.dylib
    0x97f6d000 - 0x98048ff7  com.apple.LaunchServices (572.23 - 572.23) <7E52FB5C-9ECF-3CB9-BF18-6652B8D8CDE0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x98049000 - 0x9804cff7  com.apple.help (1.3.3 - 46) <AB6292FA-D3BC-3D56-B3A5-2BE630A503E7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x9804d000 - 0x9804dfff  com.apple.CoreServices (59 - 59) <06747539-5035-3307-8645-9BC4E7F89023> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x9804e000 - 0x98094ff7  libFontRegistry.dylib (127) <A0930DB2-A6C6-3C6E-B4A2-119E0D76FD7D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x98095000 - 0x980a4fff  libGL.dylib (9.0.83) <E76D1F2A-D98B-3464-AD0B-FC1EBBADF027> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x980a5000 - 0x980b3fff  libxar.1.dylib (202) <B73748D4-F830-3C71-98B3-7A3ABF5136FD> /usr/lib/libxar.1.dylib
    0x989db000 - 0x98a77fff  com.apple.QD (3.50 - 298) <F73FD4D4-17A4-37D6-AC06-7CA5A8BA1212> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x99266000 - 0x99468ff7  com.apple.CoreFoundation (6.9 - 855.11) <50F70E07-043A-3A2F-87EF-A36BA6C5C9D9> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x99469000 - 0x99536ff7  com.apple.backup.framework (1.5 - 1.5) <E33257DD-A751-3230-89B7-B4B79F70A8FB> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x99537000 - 0x9953fff7  libCGCMS.A.dylib (599.7) <A7404924-9A2B-3324-A934-BD08953E7098> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
    0x99540000 - 0x9954bfff  com.apple.CrashReporterSupport (10.9 - 538) <7A5FF845-433C-33E3-99B5-F6AA5B825734> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support
    0x9954c000 - 0x99565fff  libAVFAudio.dylib (32.2) <C4CBDFDF-8F77-3872-B7DE-D2D7982084BA> /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib
    0x99571000 - 0x99603ffe  libsystem_c.dylib (997.1.1) <D06FD754-8CE3-3EB7-BE05-2EF939BBE05F> /usr/lib/system/libsystem_c.dylib
    0x99604000 - 0x9960cfff  libcopyfile.dylib (103) <1B1484BD-08B6-3BA9-94CA-A7C24B610EB3> /usr/lib/system/libcopyfile.dylib
    0x9960d000 - 0x9963dff7  com.apple.CoreServicesInternal (184.8 - 184.8) <88528205-9452-3EEC-BB27-DAAA7EC81E04> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI nternal
    0x9963e000 - 0x9966eff3  libtidy.A.dylib (15.12) <3DBE95FE-8FA7-3584-9202-E37B54B3B064> /usr/lib/libtidy.A.dylib
    0x9966f000 - 0x996c2ff3  com.apple.CoreMediaIO (401.0 - 4544) <867D01AF-3326-39CB-A136-48AFE4BE9802> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x996c3000 - 0x996c7ff7  libmacho.dylib (845) <D8E93E59-1F80-3413-B9CF-78B848F6E873> /usr/lib/system/libmacho.dylib
    0x996c8000 - 0x997abff7  libcrypto.0.9.8.dylib (50) <B367D3A3-FC1F-326C-92EC-CAD81666524D> /usr/lib/libcrypto.0.9.8.dylib
    0x997ac000 - 0x997c8ff9  com.apple.Ubiquity (1.3 - 289) <1CEDC83D-7282-3B4D-8CF7-4FE045012391> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
    0x997c9000 - 0x997cafff  liblangid.dylib (117) <F18F76C6-7E4B-34AD-AE81-C1C031BF2F7D> /usr/lib/liblangid.dylib
    0x997d3000 - 0x99872ff7  libCoreStorage.dylib (380) <55467C87-E1A3-3057-B428-9BCEFD39E36D> /usr/lib/libCoreStorage.dylib
    0x99873000 - 0x99911ff7  com.apple.PDFKit (2.9 - 2.9) <0792168D-320D-33EF-AE24-6CDCB8C1990A> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x99912000 - 0x99924fff  libbsm.0.dylib (33) <1BE92DB5-0D2F-3BB5-BCC6-8A71EF2A3450> /usr/lib/libbsm.0.dylib
    0x99925000 - 0x9992afff  com.apple.MediaAccessibility (1.0 - 43) <1CC2B661-146A-3FF3-B843-508F611F7B4B> /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility
    0x9992b000 - 0x99953ff7  libRIP.A.dylib (599.7) <461297C0-DDA9-3613-8F27-D7F1AC57208F> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x99954000 - 0x99959ff3  libsystem_platform.dylib (24.1.4) <875321B9-34EF-3FCC-880C-633FA05223F5> /usr/lib/system/libsystem_platform.dylib
    0x9995a000 - 0x99964ff7  com.apple.speech.synthesis.framework (4.6.2 - 4.6.2) <16E20DCD-89F4-3C8E-9DBA-EED359807038> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
    0x99967000 - 0x99984ff4  libsystem_kernel.dylib (2422.1.72) <C5641F6C-E271-380A-A656-AE4C04345602> /usr/lib/system/libsystem_kernel.dylib
    0x99985000 - 0x999d3ff9  com.apple.HIServices (1.22 - 466) <30636237-408A-3552-90C1-1279348DF7CB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
    0x999d4000 - 0x99cfaffb  com.apple.JavaScriptCore (9537 - 9537.65) <402E2B2F-AA3F-33E6-BD7D-46B1E9314311> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x99d06000 - 0x9a007ff7  com.apple.CoreServices.CarbonCore (1077.13 - 1077.13) <C514A490-8689-3665-AD82-863B5FF8D6AE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
    0x9a008000 - 0x9a03affb  com.apple.CoreAVCHD (5.7.0 - 5700.4.3) <30CF0E7B-3511-318F-AC31-06C29EDC111E> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
    0x9a03b000 - 0x9a03bfff  libkeymgr.dylib (28) <1B097DEA-011E-3B1C-86D5-6C7FAD5C765A> /usr/lib/system/libkeymgr.dylib
    0x9a03c000 - 0x9a043ff7  com.apple.XPCService (2.0 - 1) <94783930-9E46-394F-B1B2-9CA57CBA2D25> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x9a044000 - 0x9a05eff7  com.apple.GenerationalStorage (2.0 - 160.2) <8755F7F1-2402-387C-A32A-2270E7D680C8> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt orage
    0x9a05f000 - 0x9a2c3fff  com.apple.CoreData (107 - 481) <F699EC21-57D9-3AE6-A17B-C1D1092780BD> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x9a2c4000 - 0x9a426ff3  com.apple.CFNetwork (673.0.3 - 673.0.3) <5E0E9AE8-073B-3F2B-B0C7-A0129DE787F6> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x9a427000 - 0x9a4eeff7  com.apple.DiscRecording (8.0 - 8000.4.6) <84A7EC09-3BBD-3E04-A88C-6D3B724448FF> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x9a4ef000 - 0x9a556ffc  com.apple.framework.CoreWLAN (4.0 - 400.45.1) <8DADD7D2-AB98-34ED-8D6F-335338502CBE> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
    0x9a559000 - 0x9a560ff2  com.apple.NetFS (6.0 - 4.0) <915AA303-C02B-3B0C-8208-D8AAA4350DB4> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x9a568000 - 0x9a7d5ff6  com.apple.security (7.0 - 55471) <5FCF76B2-92C6-3404-87D3-91B3F6E203AA> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x9a7d6000 - 0x9a8e8ffc  libsqlite3.dylib (158) <B3DB0FED-FE4C-314D-8329-CF7708C8AAF4> /usr/lib/libsqlite3.dylib
    0x9a8e9000 - 0x9a94aff7  com.apple.Symbolication (1.4 - 129) <E5948C08-6ADF-3D86-9134-6AE49CF1DA0F> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
    0x9a94b000 - 0x9a9dcfff  com.apple.ColorSync (4.9.0 - 4.9.0) <8366AE10-0396-3100-B87A-A176E8ECE7B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
    0x9a9dd000 - 0x9a9deffa  libsystem_sandbox.dylib (278.10) <F3C9C427-AF9F-3CE0-95FF-DC9ACA0B5760> /usr/lib/system/libsystem_sandbox.dylib
    0x9a9df000 - 0x9ac5dff7  com.apple.imageKit (2.5 - 770) <C2FE06B8-DB32-392F-9280-5C1CB148D174> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit
    0x9ac5e000 - 0x9ac67fff  com.apple.audio.SoundManager (4.1 - 4.1) <68B7CEB7-AF09-3E24-8548-6ABF065B5186> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
    0x9ac6f000 - 0x9ac7dff7  libz.1.dylib (53) <858B4D9F-D87E-3D81-B07A-DF9632BD185F> /usr/lib/libz.1.dylib
    0x9ac7e000 - 0x9ac80ffe  libCVMSPluginSupport.dylib (9.0.83) <BD30BDD1-DD5B-3F31-A09B-C274EA93CD7C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib
    0x9ac81000 - 0x9ad06ffc  com.apple.CorePDF (4.0 - 4) <73557F2A-B0EF-3128-90FE-8EDD7824CE73> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x9ad5d000 - 0x9ad88ff7  libsystem_network.dylib (241.3) <71EBA489-386D-3608-ADE6-CB50EBD1AB1B> /usr/lib/system/libsystem_network.dylib
    0x9ad89000 - 0x9ada6ffb  libresolv.9.dylib (54) <3EC12A7F-6BA1-3976-9F1F-6A4B76303028> /usr/lib/libresolv.9.dylib
    0x9adbb000 - 0x9adf8ffb  libGLImage.dylib (9.0.83) <FA15FEB5-54E4-313B-8E78-A2D2E6C88FE1> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
    0x9ae94000 - 0x9af2cff7  com.apple.Metadata (10.7.0 - 800.12) <0AE4CD6B-FDFC-31ED-9F2C-FE870155CAF9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x9af2d000 - 0x9af42ff3  com.apple.AppContainer (3.0 - 1) <B53ED2AD-9B19-316F-B7B9-80A3A94AC1D3> /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer
    0x9af66000 - 0x9afb7ffb  com.apple.CoreMedia (1.0 - 1273.29) <BE08E6C7-5E6F-3B54-9C17-751CFCBD823D> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x9afb8000 - 0x9afd0ffd  libdispatch.dylib (339.1.9) <6249BAE5-044F-3A7A-9CCC-03FF7E6B405B> /usr/lib/system/libdispatch.dylib
    0x9b92c000 - 0x9b936ff2  com.apple.AppSandbox (3.0 - 1) <085C3B38-C7D8-3A62-AFC6-CEE27F93DFD1> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x9b937000 - 0x9ba6eff3  com.apple.desktopservices (1.8 - 1.8) <4D853961-F911-3FE2-A7DF-3130EA1D8CEB> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x9ba6f000 - 0x9ba83ff9  com.apple.MultitouchSupport.framework (245.13 - 245.13) <6860A0D0-3654-3B02-B2E9-C4D2637167B8> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
    0x9baeb000 - 0x9baf4fff  com.apple.speech.recognition.framework (4.2.4 - 4.2.4) <CF8E5706-F744-3139-8A51-D52BF055D19F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
    0x9baf5000 - 0x9baf6fff  libSystem.B.dylib (1197.1.1) <C58F0CC9-C1FD-3024-9358-D3359A6BBCAD> /usr/lib/libSystem.B.dylib
    0x9baf7000 - 0x9baf7fff  com.apple.quartzframework (1.5 - 1.5) <5BB3FDD4-4727-3D1B-9582-C96F36DA1542> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x9baf8000 - 0x9bb34ff4  com.apple.RemoteViewServices (2.0 - 94) <BEEE6ADF-7DA3-3D68-BCB0-9863BE1A1F46> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi ces
    0x9bb35000 - 0x9bb35fff  com.apple.Accelerate.vecLib (3.9 - vecLib 3.9) <DDAC0B59-F886-3AB1-98E8-C71FFF161CD4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x9bb36000 - 0x9bb89fff  com.apple.htmlrendering (77 - 1.1.4) <408FA30F-4FE9-3162-9FFD-677E8569C1EA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework /Versions/A/HTMLRendering
    0x9bb8a000 - 0x9bc97fe4  com.apple.MediaControlSender (1.9 - 190.4) <DF0B5A99-046A-38C1-B68E-241CB2E622BC> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/MediaControlSen der
    0x9bc98000 - 0x9bca8ff5  com.apple.LangAnalysis (1.7.0 - 1.7.0) <71DE7754-0A47-3F35-B1BF-B1FE7E1311E0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
    0x9bca9000 - 0x9bcb1ffe  libGFXShared.dylib (9.0.83) <35644AAA-B1E7-367C-90C0-378024F8A46A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
    0x9bcb2000 - 0x9bcb3fff  libsystem_blocks.dylib (63) <2AC67D5E-ECD4-3644-A53C-9684F9B7AA33> /usr/lib/system/libsystem_blocks.dylib
    0x9bcb4000 - 0x9bcc4ff7  libsasl2.2.dylib (170) <CA1C07F6-8E17-315E-AE49-AB696DDE6707> /usr/lib/libsasl2.2.dylib
    0x9bcc5000 - 0x9bd16ff1  libstdc++.6.dylib (60) <354F284B-2343-3810-9CA2-E28038824F6E> /usr/lib/libstdc++.6.dylib
    0x9bd17000 - 0x9bde7fef  libvDSP.dylib (423.32) <E2FA7230-A001-3F6B-9ACF-6998C51AD7DC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
    0x9bef1000 - 0x9bf5cff9  com.apple.Heimdal (4.0 - 2.0) <E3091095-A893-3089-8DA1-8705B3BE5BF9> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x9bf5d000 - 0x9c123ffb  libicucore.A.dylib (511.25) <44DDE9A4-578E-3D23-A41A-D8795D000A18> /usr/lib/libicucore.A.dylib
    0x9c12

    You will have to find some help from Apple (or someone here familiar with upgrading might happen along) to guide you thru the process of upgradiung your system if it is possible, but the bottom line is that you cannot install the CC software on a 10.6 system.

Maybe you are looking for

  • Question about moving itunes to an external hard drive

    I have all of my music files already stored on an external HD. But for some reason when i moved it all only the music got moved. in other words in the old drive I still have the following files: -itunes library genius -itunes library extras -itunes l

  • Calculating discounts on total PO and not excluding unplanned cost

    Hi friends, when User does MIRO they enter unplanned frieght cost in the gl account tab. Lets say P.O. is 500 freight is 100 total miro document will be $ 600 . Now when we pay to the vendor it calculates discount on the total amount[600] and not exc

  • Activating Contribute on a new PC

    Hi. Any help appreciated. I have an old version of Contribute that was loaded, and working fine, on my previous laptop before it died. I'd previously transferred Contribute onto the laptop from my old PC. Have attempted to reinstall on the new laptop

  • Hide zero rows

    Hi all, Need to hide all rows from 114 to say 500 where there the sum is zero in column D. Note any blank rows should remain unhidden. Thanks,  - Mike

  • Button fills canvas

    I've been using this software for sometime, since macromedia had it in fact. I never used to have any problems with quickly putting together a layout for my webdesigns. Now for some reason when I try to create a button, every so often the button seem