Doubts on handling threads

Hello, I use for the first time then threads implementation of a bit of geolocation in an app, and I'm having some trouble understanding. I read this:

http://supportforums.BlackBerry.com/T5/Java-development/Java-lang-RuntimeException-pushModalScreen-c...

and this:

http://www.BlackBerry.com/knowledgecenterpublic/livelink.exe/fetch/2000/348583/800332/800505/800256/...

And they are very clear and useful, but good that now I'm stuck with the TimerTask() function, I just understand that everything you try to run inside the timer, he ran into its own separate thread.

This is my code:

public class HomeScreen extends MainScreen {
    public HomeScreen() {
        listView = new VerticalFieldManager(NO_VERTICAL_SCROLL);
        mylist = new ObjectListField();
        Timer mytimer = new Timer();
        mytimer.scheduleAtFixedRate(new TimerTask(){

            public void run() {

                try{
                    System.out.println("HUEHUEHUE");
                    UiApplication.getUiApplication().invokeLater(new Runnable(){
                        public void run(){
                            mylist = new ObjectListField();
                            String[] labels = {"HUEHUEHUE","MORDEKAISER ES #1","GIBE ME MONEY PLEASE"};
                            mylist.set(labels);
                        }
                    }); 

                }catch (Exception e){
                    Dialog.alert(e.toString());
                }
            }}, 5000, 4000);
        listView.add(mylist);
        add(listView);
    }
}

What I don't understand is why the System.out.println works very well, and I can't seem to do the mylist.set ().

What I try to achieve with this code is to refresh the data within an ObjectListField that I get from a database, but for now, I have enough problems with the data generated in the extract.

Thanks in advance for the help.

OK, I finally solved my problem, now the code looks like this:

public class HomeScreen extends MainScreen {
    public HomeScreen() {
        listView = new VerticalFieldManager(NO_VERTICAL_SCROLL);
        mylist = new ObjectListField();
                listView.add(mylist);
        add(listView);
        Timer mytimer = new Timer();
        mytimer.scheduleAtFixedRate(new TimerTask(){

            public void run() {

                try{
                    System.out.println("HUEHUEHUE");
                    UiApplication.getUiApplication().invokeLater(new Runnable(){
                        public void run(){
                            listView.delete(mylist);
                            mylist = new ObjectListField();
                            String[] labels = {"HUEHUEHUE","MORDEKAISER ES #1","GIBE ME MONEY PLEASE"};
                            mylist.set(labels);
                            listView.add(mylist);
                        }
                    }); 

                }catch (Exception e){
                    Dialog.alert(e.toString());
                }
            }}, 5000, 4000);
    }
}

What missed me, is that when the TimerTask began, the main Thread has continued to work, and I thought it was be forever in the Timer Thread until I cancelled he or she has finished doing his things (that is why, as I did do something all x seconds I thought: it will never end-> how can I continue my main Thread running?).
Thanks to you all.

Tags: BlackBerry Developers

Similar Questions

  • What the handles, threads, and processes means or function, they are performing?

    My son will ask me a question and I could not answer (it is perhaps a good thing because I think he will try to enter and change something he doesn't know) so I thought that I felt I'd better try to find out. He and I are eager to know what the handles, son and process average or functions, they do. They are in the performance tab in Windows Task Manager.


    Thank you

    Hello

    A process handle is an integer value that identifies a Windows process. The Win32 API call a HANDFUL.

    When you start a program, this program runs as a "process". It's something that runs in its own protected area, with its own memory. Other processes cannot touch this memory.

    A few times, the program needs to do several things at once in a way of multitasking, similar to how the multitasking process. For example, a spreadsheet can recalculate the cells you enter data. He * could * start another process, but they can't (easily) share the memory, he would need to if recalculate cells!

    Must be a different sort of process that is not quite as separated. It is a "thread".

    Process: the number of applications that are running at some point in the computer.

    Hope this information helps.

  • Doubt exception handling

    Hi all

    I have an insert stmt as the below,
    BEGIN
    INSERT INTO THE PRM. TABLE
    (
    AB
    C
    D
    ) (VALUES
    11
    2
    3
    )
    EXCEPTION
    WHILE OTHERS THEN
    < something >
    END;

    If the table PRM. TABLE is a child and has a FK constraint with another table, it is goin to thro' an exception. I'm assuming that the exception would be handled by the EXCEPTION clause. But I get an error message saying "FK constraint...". »

    Why the exception section is not able to handle this? or am I wrong?

    Thanks in advance

    Hello

    WHAT OTHER exception catch all exceptions.

    Connected to Oracle Database 10g Express Edition Release 10.2.0.1.0
    Connected as hr
    
    SQL> select * from test1;
    
       AD_TEST
    ----------
             1
    
    SQL>
    SQL> BEGIN
      2     INSERT INTO test2
      3        (ad_test2,
      4         fk_test1_ad_test1)
      5     VALUES
      6        (1,
      7         2);
      8
      9     COMMIT;
     10  EXCEPTION
     11     WHEN OTHERS THEN
     12        DBMS_OUTPUT.put_line('when others exception');
     13  END;
     14  /
    
    when others exception
    
    PL/SQL procedure successfully completed
    
    SQL>
    

    For more information, see [10 of PL/SQL error handling | http://download.oracle.com/docs/cd/B19306_01/appdev.102/b14261/errors.htm#i7014]

    Kind regards

    Published by: Walter Fernández on January 9, 2009 23:32 - added more information...

  • Question on the Thread

    Hi all


    Had a doubt while implementing threads, so I thought to do it erased before that I make progress. I have a method from where the new thread is called, and in the next line, I return statement.

    Method() {}

    Thread call ();
    return the declaration;

    }

    What happens here? I want to say is that the parent process ends before the child process?

    Thank you
    Simi

    user11138361 wrote:
    I have exactly the same meaning

    int foo() {}
    Runnable r = new MyRunnable();
    Thread t = new Thread (r);
    t.Start ();
    Return 1;
    }

    My question was if the child process runs then how will end the process (Px) parent?

    There is no child process. You create a thread, not a process.

    This point aside, I do not understand your question. The current thread and the new thread are totally independent of each other. Why wait we can't finish while the other is still ongoing?

    Note also that the parent thread is NOT the same as this method foo(). The thread doesn't necessarily stop when the foo() method only. It can, however, and I don't know why you would think otherwise.

    EDIT: My guess is that what you're really confused about is, ' how can end when foo() method one of its 'no' (in other words, the new thread) is running? The answer is that all its steps are made, even if the other thread is still ongoing.

    stage of foo () of appeal t.start () is finished. This does not mean that the new thread has finished, however. The start() method says: "create a new, + independent + execution thread and turn it on." As soon as he does that, start() is done, and now the new thread is allowed to run (or run) regardless of the current thread.

    Imagine that I have a list of chores: taking out the trash. Washing dishes; Show empty. This list is the foo() method. You are a new Thread object. After I wash the dishes, I tell you ' go to the store and buy some apples, milk, eggs, chicken and bread. " Let you do your work, and as soon as I told what to do, I continue with my duties. We do our work independently from each other, and I can't finish the chore on my list without waiting for you to come back on the store.

    Edited by: jverd March 21, 2011 11:27

  • Everything my daughter Pat on Firefox, it displays only the numbers, why? yboard types only

    Its keyboard functions normally everywhere outside of Firefox, including other browsers. In the Firefox browser, each keystroke releases only the numbers.

    I'm glad that you have solved the problem after trying safe mode.

    I note the software GuardedID does not seem to be designed to work with Firefox, at least on Windows Vista, by this faq, it is slow: http://www.guardedid.com/support_faq.aspx#EBCDA

    And other FAQ, on the same web page, to mention going out of sync and producing numbers when you type.

    No doubt the other thread you found was: numbers of types only Firefox instead of letters

    I wonder if a better solution to prevent the strikes may have an including installed AV security suite.

  • Windows Error Reporting service stopped recording of events in the event log, and now when it spawns werfault.exe, the process consumes the CPU until he is killed.

    Windows error reporting service ceased to record events in the event viewer. The last successful entry was 26/03/2010. Since then whenever the service generates Werfault.exe to handle the error, the process seems stuck in a loop of consumer processor, but do nothing. It uses 99% of CPU (80% preferred), is not e/s and number of handles, thread, & working set do not develop.

    Three Windows updates were installed in shortly after the last successful log entry (automatic update is enabled):

    KB915597 def 1.79.702.0 & def 1.79.495.0 both for Windows Defender

    KB980182 for IE 7

    I think that my system is clean, at least Spyware Doctor think it is. I also did some tests Ad-Aware. Windows Defender analyzes every day without error.

    Has anyone else encountered this problem?

    Hi Wannknow,

    It's good information - and thanks for the thanks! You really only need to run an adware or virus (malware) program at the same time. What I would recommend is that you choose an adware program - either "Windows Defender" or "spyware doctor" and disable the other. This can be your root problem, so at this point I turn back on 'report of problems and solutions' and see if you experience the same problem:

    Again, here are the instructions:

    1. open Control Panel. (Press Ctrl-ESC and type 'control' is faster access method).

    2. click on "System and Maintenance" and then click "problem reports and solution."

    3. click on change settings in the left panel of the problem reports and Solutions window.

    4. Select Advanced settings.  In the "for my programs, problem report is: ' select 'off '. Click on CLOSE the

    Hope this helps,

    Steve <> Microsoft partner

  • My mistake - I rent my creative cloud; Difficulty this please

    Process: Adobe Flash CS6 [397]

    Path: / Applications/Adobe / * / Adobe Flash CS6.app/Contents/MacOS/Adobe Flash CS6

    ID: com.adobe.flash

    Version: 12.0.2.529 (12.0.2)

    Code type: X 86 (native)

    Parent process:? [1]

    Responsible for: Adobe Flash CS6 [397]

    User ID: 501

    Date/time: 2016-05-05 21:09:35.135-0600

    OS version: Mac OS X 10.11.4 (15E65)

    Report Version: 11

    Anonymous UUID: 7568365A-97CC-14E5-F889-A71B0B76CDAB

    Sleep/wake UUID: 17493D35-9FB0-4013-B67F-C1508536C8AD

    Time since started awake: 640 seconds

    Wake time: 420 seconds

    Integrity of system protection: enabled

    Crashed thread: 0 dispatch queue: com.apple.main - wire

    Exception type: EXC_CRASH (SIGABRT)

    Exception codes: 0 x 0000000000000000, 0 x 0000000000000000

    Note the exception: EXC_CORPSE_NOTIFY

    Request for clarification:

    termination with eception exception of type CAIOutOfMemoryFault: std::exception

    Abort() called

    Thread 0 crashed: Dispatch queue: com.apple.main - wire

    0 libsystem_kernel.dylib 0x9112d572 __pthread_kill + 10

    1 libsystem_pthread.dylib 0x969ae654 pthread_kill + 101

    2 libsystem_c.dylib 0x94f10c34 demolition + 156

    3 libc ++ abi.dylib 0x9d6949c9 abort_message + 169

    4 libc ++ abi.dylib 0x9d6b55cf default_terminate_handler() + 272

    5 libc ++ abi.dylib 0x9d6b2bed std::__terminate (void (*) ()) + 14

    6 libc ++ abi.dylib 0x9d6b2607 __cxa_throw + 122

    7 com.adobe.AILib 0x041c1fc4 operator new [] (unsigned long) + 116

    8 com.adobe.flash 0x008602ce SimpleStreamNS::ISimpleStream::~ISimpleStream() + 860

    com.Adobe.Flash 9 0 x 00860376 SimpleStreamNS::ISimpleStream::~ISimpleStream() + 1028

    10 com.adobe.flash 0x01194d8d boost::exception_detail:clone_impl < boost::exception_detail:bad_alloc_ >: rethrow() const + 95647

    11 com.adobe.flash 0x0119367f boost::exception_detail:clone_impl < boost::exception_detail:bad_alloc_ >: rethrow() const + 89745

    12 com.adobe.flash 0x011938d2 boost::exception_detail:clone_impl < boost::exception_detail:bad_alloc_ >: rethrow() const + 90340

    13 com.adobe.flash 0x00e0a2f2 SimpleStreamNS::OFilterStream:OutputData(char_const*) + 790

    14 com.adobe.flash 0x003159bd vc::BasicOperation::~BasicOperation() + 17105

    15 com.adobe.flash 0x00315f41 vc::BasicOperation::~BasicOperation() + 18517

    16 com.adobe.flash 0x00f968c7::~CMiniFrameWnd() + 863 CMiniFrameWnd

    17 com.adobe.flash 0x00fc5524::GetRuntimeClass() const + 9792 CPropertyPage

    18 com.adobe.flash 0x00f730a1 CButtonImplBase::~CButtonImplBase() + 8129

    19 com.adobe.flash 0x00fda8ba TextWithHeader < CListCtrlImpl::ColumnHeader >: SetText (unsigned short const *) + 17124

    20 com.adobe.flash 0x00fdbbde TextWithHeader < CListCtrlImpl::ColumnHeader >: SetText (unsigned short const *) + 22024

    21 com.adobe.flash 0x00fd7146 TextWithHeader < CListCtrlImpl::ColumnHeader >: SetText (unsigned short const *) + 2928

    22 com.adobe.flash 0x001fe321 CArray < CTimer *, CTimer * >: ~ CArray() + 11005

    23 com.adobe.flash 0x01173cfc CList < MMUI::DocumentFrame *, MMUI::DocumentFrame * >: RemoveAt(__POSITION*) + 3866

    com.Adobe.Flash 24 0x00fdbbde TextWithHeader < CListCtrlImpl::ColumnHeader >: SetText (unsigned short const *) + 22024

    25 com.adobe.flash 0x0030c231 CTemporaryMenu::~CTemporaryMenu() + 1117

    26 com.adobe.flash 0x00fd7146 TextWithHeader < CListCtrlImpl::ColumnHeader >: SetText (unsigned short const *) + 2928

    27 com.adobe.flash 0x001fe321 CArray < CTimer *, CTimer * >: ~ CArray() + 11005

    28 com.adobe.flash 0x004de03e CToolsCommandScope::GetAcceleratorsHandle() + 1742

    29 com.adobe.flash 0x0030c3fa CTemporaryMenu::~CTemporaryMenu() + 1574

    30 com.adobe.flash 0x00fe799e CRgn::~CRgn() + 5692

    31 com.adobe.flash 0x00fc4c33::GetRuntimeClass() const + 7503 CPropertyPage

    32 com.adobe.flash 0 01064838 cf_bad_change::~cf_bad_change() + 3550 x

    33 com.apple.HIToolbox 0x93c482ff _InvokeEventHandlerUPP (OpaqueEventHandlerCallRef *, OpaqueEventRef *, void *, long (*) (OpaqueEventHandlerCallRef *, OpaqueEventRef *, void *)) + 36

    34 com.apple.HIToolbox 0x93bf07b0 DispatchEventToHandlers (EventTargetRec *, OpaqueEventRef *, HandlerCallRec *) + 1832

    35 com.apple.HIToolbox 0x93bef9c4 SendEventToEventTargetInternal (OpaqueEventRef *, OpaqueEventTargetRef *, HandlerCallRec *) + 402

    36 com.apple.HIToolbox 0x93bef82a SendEventToEventTargetWithOptions + 40

    37 com.apple.HIToolbox 0x93c28c12 ToolboxEventDispatcherHandler (OpaqueEventHandlerCallRef *, OpaqueEventRef *, void *) + 1462

    38 com.apple.HIToolbox 0x93bf0bff DispatchEventToHandlers (EventTargetRec *, OpaqueEventRef *, HandlerCallRec *) + 2935

    39 com.apple.HIToolbox 0x93bef9c4 SendEventToEventTargetInternal (OpaqueEventRef *, OpaqueEventTargetRef *, HandlerCallRec *) + 402

    40 com.apple.HIToolbox 0x93c02b6d SendEventToEventTarget + 34

    41 com.apple.HIToolbox 0x93d9fc8e ToolboxEventDispatcher + 82

    42 com.apple.HIToolbox 0x93d9fb4f RunApplicationEventLoop + 240

    43 com.adobe.flash 0x00fcd77b CArray < MACFTYPES *, MACFTYPES * >: SetSize (int, int) + 5271

    44 com.adobe.flash 0x00fa619d CTimerImpl::~CTimerImpl() + 1293

    45 com.adobe.flash 0x00fa6380 CTimerImpl::~CTimerImpl() + 1776

    46 com.adobe.flash 0x0020f46d std::vector < symmetry *, std::allocator < symmetry * > >: vector (std::allocator < symmetry * > const &) + 6295

    Thread 1: dispatch queue: com.apple.libdispatch - Manager

    0 libsystem_kernel.dylib 0x9112e7fa kevent_qos + 10

    1 libdispatch.dylib 0x96af97ea _dispatch_mgr_invoke + 234

    2 libdispatch.dylib 0x96af93be _dispatch_mgr_thread + 52

    Thread 2:

    0 libsystem_kernel.dylib 0x9112d3ea __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x969ac538 _pthread_cond_wait + 757

    pthread_cond_wait 2 libsystem_pthread.dylib 0x969ae276 $UNIX2003 + 71

    3 com.apple.CoreServices.CarbonCore 0x9b577f9a TSWaitOnCondition + 131

    4 com.apple.CoreServices.CarbonCore 0x9b5781dc TSWaitOnConditionTimedRelative + 195

    5 com.apple.CoreServices.CarbonCore 0x9b54d4d8 MPWaitOnQueue + 199

    6 com.adobe.ACE 0x069b1a69 0 x 6972000 + 260713

    7 com.adobe.ACE 0x069b0d99 0 x 6972000 + 257433

    8 com.apple.CoreServices.CarbonCore 0x9b54d96c PrivateMPEntryPoint + 68

    libsystem_pthread.dylib 9 0x969ab780 _pthread_body + 138

    10 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    11 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    3 wire:

    0 libsystem_kernel.dylib 0x9112d3ea __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x969ac538 _pthread_cond_wait + 757

    pthread_cond_wait 2 libsystem_pthread.dylib 0x969ae276 $UNIX2003 + 71

    3 com.apple.CoreServices.CarbonCore 0x9b577f9a TSWaitOnCondition + 131

    4 com.apple.CoreServices.CarbonCore 0x9b5781dc TSWaitOnConditionTimedRelative + 195

    5 com.apple.CoreServices.CarbonCore 0x9b54d4d8 MPWaitOnQueue + 199

    6 com.adobe.ACE 0x069b1a69 0 x 6972000 + 260713

    7 com.adobe.ACE 0x069b0d99 0 x 6972000 + 257433

    8 com.apple.CoreServices.CarbonCore 0x9b54d96c PrivateMPEntryPoint + 68

    libsystem_pthread.dylib 9 0x969ab780 _pthread_body + 138

    10 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    11 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Thread 4:

    0 libsystem_kernel.dylib 0x9112d3ea __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x969ac538 _pthread_cond_wait + 757

    pthread_cond_wait 2 libsystem_pthread.dylib 0x969ae276 $UNIX2003 + 71

    3 com.apple.CoreServices.CarbonCore 0x9b577f9a TSWaitOnCondition + 131

    4 com.apple.CoreServices.CarbonCore 0x9b5781dc TSWaitOnConditionTimedRelative + 195

    5 com.apple.CoreServices.CarbonCore 0x9b54d4d8 MPWaitOnQueue + 199

    6 com.adobe.ACE 0x069b1a69 0 x 6972000 + 260713

    7 com.adobe.ACE 0x069b0d99 0 x 6972000 + 257433

    8 com.apple.CoreServices.CarbonCore 0x9b54d96c PrivateMPEntryPoint + 68

    libsystem_pthread.dylib 9 0x969ab780 _pthread_body + 138

    10 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    11 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Wire 5:

    0 libsystem_kernel.dylib 0x9112d3ea __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x969ac538 _pthread_cond_wait + 757

    pthread_cond_wait 2 libsystem_pthread.dylib 0x969ae276 $UNIX2003 + 71

    3 com.adobe.AFlame 0x0bb91439 Flame_Terminate + 1281926

    4 com.adobe.AFlame 0x0bbdb950 Flame_Terminate + 1586333

    5 com.adobe.AFlame 0x0bb8fa35 Flame_Terminate + 1275266

    6 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    7 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    8 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Line 6:

    0 libsystem_kernel.dylib 0x9112d646 __recvfrom + 10

    recv 1 0x94f309df $UNIX2003 + 55 libsystem_c.dylib

    2 ServiceManager - Launcher.dylib 0x1f5d4733 call + 47867

    3 ServiceManager - Launcher.dylib 0x1f5d3846 call + 44046

    4 ServiceManager - Launcher.dylib 0x1f5d2988 call + 40272

    5 ServiceManager - Launcher.dylib 0x1f5d2a0f call + 40407

    6 ServiceManager - Launcher.dylib 0x1f5cdbaf call + 20343

    7 ServiceManager - Launcher.dylib 0x1f5cdea7 call + 21103

    8 ServiceManager - Launcher.dylib 0x1f5ce685 call + 23117

    9 ServiceManager - Launcher.dylib 0x1f5ce8f9 call + 23745

    Call 10 ServiceManager - Launcher.dylib 0x1f5d12a0 + 34408

    11 ServiceManager - Launcher.dylib 0x1f5d13fd call + 34757

    12 ServiceManager - Launcher.dylib 0x1f5d1c91 call + 36953

    13 ServiceManager - Launcher.dylib 0x1f5d1db2 call + 37242

    14 ServiceManager - Launcher.dylib 0x1f5c4656 Login + 461

    15 ServiceManager - Launcher.dylib 0x1f5c809a Login + 15377

    16 ServiceManager - Launcher.dylib 0x1f5d2165 call + 38189

    17 ServiceManager - Launcher.dylib 0x1f5d42eb calling + 46771

    18 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    19 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    20 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Wire 7: Java: Exception Handler Thread

    0 libsystem_kernel.dylib 0x9112649a mach_msg_trap + 10

    1 libsystem_kernel.dylib 0 x 91125884 mach_msg + 68

    2 libsystem_kernel.dylib 0x911261ce mach_msg_server + 399

    3 libjvm.dylib 0x8958377a 0x8956d000 + 92026

    4 libjvm.dylib 89583603 0x8956d000 + 91651 0 x

    5 libjvm.dylib 0x8958208c 0x8956d000 + 86156

    6 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    7 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    8 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Thread 8: Java: worker Gang #0 (parallel Threads of GC)

    0 libsystem_kernel.dylib 0x9112649a mach_msg_trap + 10

    1 libsystem_kernel.dylib 0 x 91125884 mach_msg + 68

    2 libjvm.dylib 0x895827e6 0x8956d000 + 88038

    3 libjvm.dylib 0 x 89582722 0x8956d000 + 87842

    4 libjvm.dylib 0x895825e8 0x8956d000 + 87528

    5 libjvm.dylib 0x8958212d 0x8956d000 + 86317

    6 libjvm.dylib 0x89581fb7 0x8956d000 + 85943

    7 libjvm.dylib 0x89599a59 0x8956d000 + 182873

    8 libjvm.dylib 0 x 89599943 0x8956d000 + 182595

    libjvm.dylib 9 0x8956d000 + 86156 0x8958208c

    10 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    11 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    12 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Wire 9: Java: worker Gang #1 (parallel Threads of GC)

    0 libsystem_kernel.dylib 0x9112649a mach_msg_trap + 10

    1 libsystem_kernel.dylib 0 x 91125884 mach_msg + 68

    2 libjvm.dylib 0x895827e6 0x8956d000 + 88038

    3 libjvm.dylib 0 x 89582722 0x8956d000 + 87842

    4 libjvm.dylib 0x895825e8 0x8956d000 + 87528

    5 libjvm.dylib 0x8958212d 0x8956d000 + 86317

    6 libjvm.dylib 0x89581fb7 0x8956d000 + 85943

    7 libjvm.dylib 0x89599a59 0x8956d000 + 182873

    8 libjvm.dylib 0 x 89599943 0x8956d000 + 182595

    libjvm.dylib 9 0x8956d000 + 86156 0x8958208c

    10 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    11 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    12 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Thread 10: Java: worker Gang #2 (parallel Threads of GC)

    0 libsystem_kernel.dylib 0x9112649a mach_msg_trap + 10

    1 libsystem_kernel.dylib 0 x 91125884 mach_msg + 68

    2 libjvm.dylib 0x895827e6 0x8956d000 + 88038

    3 libjvm.dylib 0 x 89582722 0x8956d000 + 87842

    4 libjvm.dylib 0x895825e8 0x8956d000 + 87528

    5 libjvm.dylib 0x8958212d 0x8956d000 + 86317

    6 libjvm.dylib 0x89581fb7 0x8956d000 + 85943

    7 libjvm.dylib 0x89599a59 0x8956d000 + 182873

    8 libjvm.dylib 0 x 89599943 0x8956d000 + 182595

    libjvm.dylib 9 0x8956d000 + 86156 0x8958208c

    10 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    11 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    12 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Wire 11: Java: worker Gang #3 (parallel Threads of GC)

    0 libsystem_kernel.dylib 0x9112649a mach_msg_trap + 10

    1 libsystem_kernel.dylib 0 x 91125884 mach_msg + 68

    2 libjvm.dylib 0x895827e6 0x8956d000 + 88038

    3 libjvm.dylib 0 x 89582722 0x8956d000 + 87842

    4 libjvm.dylib 0x895825e8 0x8956d000 + 87528

    5 libjvm.dylib 0x8958212d 0x8956d000 + 86317

    6 libjvm.dylib 0x89581fb7 0x8956d000 + 85943

    7 libjvm.dylib 0x89599a59 0x8956d000 + 182873

    8 libjvm.dylib 0 x 89599943 0x8956d000 + 182595

    libjvm.dylib 9 0x8956d000 + 86156 0x8958208c

    10 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    11 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    12 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Wire 12: Java: concurrent Mark Sweep GC Thread

    0 libsystem_kernel.dylib 0x9112649a mach_msg_trap + 10

    1 libsystem_kernel.dylib 0 x 91125884 mach_msg + 68

    2 libjvm.dylib 0x895828b6 0x8956d000 + 88246

    3 libjvm.dylib 0x895a03ca 0x8956d000 + 209866

    4 libjvm.dylib 0 x 89582604 0x8956d000 + 87556

    5 libjvm.dylib 0x8958212d 0x8956d000 + 86317

    6 libjvm.dylib 0x89581fb7 0x8956d000 + 85943

    7 libjvm.dylib 0x896aced5 0x8956d000 + 1310421

    8 libjvm.dylib 0x896ace43 0x8956d000 + 1310275

    libjvm.dylib 9 0x895a01e5 0x8956d000 + 209381

    10 0x8958208c 0x8956d000 + 86156 libjvm.dylib

    11 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    12 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    13 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Line 13: Java: VM Thread

    0 libsystem_kernel.dylib 0x9112649a mach_msg_trap + 10

    1 libsystem_kernel.dylib 0 x 91125884 mach_msg + 68

    2 libjvm.dylib 0x895828b6 0x8956d000 + 88246

    3 libjvm.dylib 0x895a03ca 0x8956d000 + 209866

    4 libjvm.dylib 0 x 89582604 0x8956d000 + 87556

    5 libjvm.dylib 0x8958212d 0x8956d000 + 86317

    6 libjvm.dylib 0x89581fb7 0x8956d000 + 85943

    7 libjvm.dylib 0x8961b134 0x8956d000 + 713012

    8 libjvm.dylib 0x8961add3 0x8956d000 + 712147

    libjvm.dylib 9 0x8956d000 + 86156 0x8958208c

    10 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    11 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    12 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Thread 14: Java: reference Manager

    0 libsystem_kernel.dylib 0x9112649a mach_msg_trap + 10

    1 libsystem_kernel.dylib 0 x 91125884 mach_msg + 68

    2 libjvm.dylib 0x895827e6 0x8956d000 + 88038

    3 libjvm.dylib 0 x 89582722 0x8956d000 + 87842

    4 libjvm.dylib 0x8962a2a0 0x8956d000 + 774816

    5 libjvm.dylib 0x896297a2 0x8956d000 + 772002

    6 libjvm.dylib 0 x 89629491 JVM_MonitorWait + 211

    7 libjvmlinkage.dylib 0x12aa7dd5 JVM_MonitorWait + 69

    8   ???                                      0xd200b9d9 0 + 3523262937

    9   ???                                      0xd2003e31 0 + 3523231281

    10?                                    0xd2003e31 0 + 3523231281

    11?                                    0xd2001374 0 + 3523220340

    12 libjvm.dylib 0x8961c4a3 0x8956d000 + 717987

    13 libjvm.dylib 0x8961c215 0x8956d000 + 717333

    14 libjvm.dylib 0 x 89629139 0x8956d000 + 770361

    15 libjvm.dylib 0x89628fc1 0x8956d000 + 769985

    16 libjvm.dylib 0x89628f40 0x8956d000 + 769856

    17 libjvm.dylib 0x89628d8d 0x8956d000 + 769421

    18 libjvm.dylib 0x89628bc3 0x8956d000 + 768963

    19 libjvm.dylib 0x8958208c 0x8956d000 + 86156

    20 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    21 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    22 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Thread 15: Java: finalizer

    0 libsystem_kernel.dylib 0x9112649a mach_msg_trap + 10

    1 libsystem_kernel.dylib 0 x 91125884 mach_msg + 68

    2 libjvm.dylib 0x895827e6 0x8956d000 + 88038

    3 libjvm.dylib 0 x 89582722 0x8956d000 + 87842

    4 libjvm.dylib 0x8962a2a0 0x8956d000 + 774816

    5 libjvm.dylib 0x896297a2 0x8956d000 + 772002

    6 libjvm.dylib 0 x 89629491 JVM_MonitorWait + 211

    7 libjvmlinkage.dylib 0x12aa7dd5 JVM_MonitorWait + 69

    8   ???                                      0xd200b9d9 0 + 3523262937

    9   ???                                      0xd2003e31 0 + 3523231281

    10?                                    0xd2003f97 0 + 3523231639

    11?                                    0xd2003f97 0 + 3523231639

    12?                                    0xd2001374 0 + 3523220340

    13 libjvm.dylib 0x8961c4a3 0x8956d000 + 717987

    14 libjvm.dylib 0x8961c215 0x8956d000 + 717333

    15 libjvm.dylib 0 x 89629139 0x8956d000 + 770361

    16 libjvm.dylib 0x89628fc1 0x8956d000 + 769985

    17 libjvm.dylib 0x89628f40 0x8956d000 + 769856

    18 libjvm.dylib 0x89628d8d 0x8956d000 + 769421

    19 libjvm.dylib 0x89628bc3 0x8956d000 + 768963

    20 libjvm.dylib 0x8958208c 0x8956d000 + 86156

    21 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    22 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    23 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    16 wire: Java: Thread Locker (concurrent GC) of substitution

    0 libsystem_kernel.dylib 0x9112649a mach_msg_trap + 10

    1 libsystem_kernel.dylib 0 x 91125884 mach_msg + 68

    2 libjvm.dylib 0x895827e6 0x8956d000 + 88038

    3 libjvm.dylib 0 x 89582722 0x8956d000 + 87842

    4 libjvm.dylib 0x895825e8 0x8956d000 + 87528

    5 libjvm.dylib 0x8958212d 0x8956d000 + 86317

    6 libjvm.dylib 0x89581efa 0x8956d000 + 85754

    7 libjvm.dylib 0x8963a58c 0x8956d000 + 841100

    8 libjvm.dylib 0x8963a4d0 0x8956d000 + 840912

    libjvm.dylib 9 0x89628d8d 0x8956d000 + 769421

    10 libjvm.dylib 0x89628bc3 0x8956d000 + 768963

    11 libjvm.dylib 0x8958208c 0x8956d000 + 86156

    12 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    13 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    14 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Thread 17: Java: Signal splitter

    0 libsystem_kernel.dylib 0x911264d6 semaphore_wait_trap + 10

    1 libjvm.dylib 0x8963ae7a 0x8956d000 + 843386

    2 libjvm.dylib 0x8963a850 0x8956d000 + 841808

    3 libjvm.dylib 0x89628d8d 0x8956d000 + 769421

    4 libjvm.dylib 0x89628bc3 0x8956d000 + 768963

    5 libjvm.dylib 0x8958208c 0x8956d000 + 86156

    6 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    7 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    8 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Wire 18: Java: C1 CompilerThread0

    0 libsystem_kernel.dylib 0x9112649a mach_msg_trap + 10

    1 libsystem_kernel.dylib 0 x 91125884 mach_msg + 68

    2 libjvm.dylib 0x895827e6 0x8956d000 + 88038

    3 libjvm.dylib 0 x 89582722 0x8956d000 + 87842

    4 libjvm.dylib 0x895825e8 0x8956d000 + 87528

    5 libjvm.dylib 0x8958212d 0x8956d000 + 86317

    6 libjvm.dylib 0x89581efa 0x8956d000 + 85754

    7 libjvm.dylib 0x8964290e 0x8956d000 + 874766

    8 libjvm.dylib 0x8963c060 0x8956d000 + 847968

    libjvm.dylib 9 0x8963be0a 0x8956d000 + 847370

    10 libjvm.dylib 0x89628d8d 0x8956d000 + 769421

    11 libjvm.dylib 0x89628bc3 0x8956d000 + 768963

    12 libjvm.dylib 0x8958208c 0x8956d000 + 86156

    13 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    14 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    15 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Thread 19: Java: low memory detector

    0 libsystem_kernel.dylib 0x9112649a mach_msg_trap + 10

    1 libsystem_kernel.dylib 0 x 91125884 mach_msg + 68

    2 libjvm.dylib 0x895827e6 0x8956d000 + 88038

    3 libjvm.dylib 0 x 89582722 0x8956d000 + 87842

    4 libjvm.dylib 0x895825e8 0x8956d000 + 87528

    5 libjvm.dylib 0x8958212d 0x8956d000 + 86317

    6 libjvm.dylib 0x89581fb7 0x8956d000 + 85943

    7 libjvm.dylib 0x8963cda0 0x8956d000 + 851360

    8 libjvm.dylib 0x89628d8d 0x8956d000 + 769421

    libjvm.dylib 9 0x89628bc3 0x8956d000 + 768963

    10 0x8958208c 0x8956d000 + 86156 libjvm.dylib

    11 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    12 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    13 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Thread 20: Java: VM recurring task Thread

    0 libsystem_kernel.dylib 0x9112649a mach_msg_trap + 10

    1 libsystem_kernel.dylib 0 x 91125884 mach_msg + 68

    2 libjvm.dylib 0x895828b6 0x8956d000 + 88246

    3 libjvm.dylib 0x895a03ca 0x8956d000 + 209866

    4 libjvm.dylib 0x8963f951 0x8956d000 + 862545

    5 libjvm.dylib 0x8958208c 0x8956d000 + 86156

    6 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    7 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    8 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Thread 21: Java: FelixDispatchQueue

    0 libsystem_kernel.dylib 0x9112649a mach_msg_trap + 10

    1 libsystem_kernel.dylib 0 x 91125884 mach_msg + 68

    2 libjvm.dylib 0x895827e6 0x8956d000 + 88038

    3 libjvm.dylib 0 x 89582722 0x8956d000 + 87842

    4 libjvm.dylib 0x8962a2a0 0x8956d000 + 774816

    5 libjvm.dylib 0x896297a2 0x8956d000 + 772002

    6 libjvm.dylib 0 x 89629491 JVM_MonitorWait + 211

    7 libjvmlinkage.dylib 0x12aa7dd5 JVM_MonitorWait + 69

    8   ???                                      0xd200b9d9 0 + 3523262937

    9   ???                                      0xd2003e31 0 + 3523231281

    10?                                    0xd2003e31 0 + 3523231281

    11?                                    0xd2003e31 0 + 3523231281

    12?                                    0xd2003e31 0 + 3523231281

    13?                                    0xd200430d 0 + 3523232525

    14?                                    0xd2001374 0 + 3523220340

    15 libjvm.dylib 0x8961c4a3 0x8956d000 + 717987

    16 libjvm.dylib 0x8961c215 0x8956d000 + 717333

    17 libjvm.dylib 0 x 89629139 0x8956d000 + 770361

    18 libjvm.dylib 0x89628fc1 0x8956d000 + 769985

    19 libjvm.dylib 0x89628f40 0x8956d000 + 769856

    20 libjvm.dylib 0x89628d8d 0x8956d000 + 769421

    21 libjvm.dylib 0x89628bc3 0x8956d000 + 768963

    22 libjvm.dylib 0x8958208c 0x8956d000 + 86156

    23 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    24 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    25 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Thread 22: Java: FelixStartLevel

    0 libsystem_kernel.dylib 0x9112649a mach_msg_trap + 10

    1 libsystem_kernel.dylib 0 x 91125884 mach_msg + 68

    2 libjvm.dylib 0x895827e6 0x8956d000 + 88038

    3 libjvm.dylib 0 x 89582722 0x8956d000 + 87842

    4 libjvm.dylib 0x8962a2a0 0x8956d000 + 774816

    5 libjvm.dylib 0x896297a2 0x8956d000 + 772002

    6 libjvm.dylib 0 x 89629491 JVM_MonitorWait + 211

    7 libjvmlinkage.dylib 0x12aa7dd5 JVM_MonitorWait + 69

    8   ???                                      0xd200b9d9 0 + 3523262937

    9   ???                                      0xd2003e31 0 + 3523231281

    10?                                    0xd2003e31 0 + 3523231281

    11?                                    0xd200430d 0 + 3523232525

    12?                                    0xd2001374 0 + 3523220340

    13 libjvm.dylib 0x8961c4a3 0x8956d000 + 717987

    14 libjvm.dylib 0x8961c215 0x8956d000 + 717333

    15 libjvm.dylib 0 x 89629139 0x8956d000 + 770361

    16 libjvm.dylib 0x89628fc1 0x8956d000 + 769985

    17 libjvm.dylib 0x89628f40 0x8956d000 + 769856

    18 libjvm.dylib 0x89628d8d 0x8956d000 + 769421

    19 libjvm.dylib 0x89628bc3 0x8956d000 + 768963

    20 libjvm.dylib 0x8958208c 0x8956d000 + 86156

    21 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    22 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    23 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Thread 23: Java: FelixPackageAdmin

    0 libsystem_kernel.dylib 0x9112649a mach_msg_trap + 10

    1 libsystem_kernel.dylib 0 x 91125884 mach_msg + 68

    2 libjvm.dylib 0x895827e6 0x8956d000 + 88038

    3 libjvm.dylib 0 x 89582722 0x8956d000 + 87842

    4 libjvm.dylib 0x8962a2a0 0x8956d000 + 774816

    5 libjvm.dylib 0x896297a2 0x8956d000 + 772002

    6 libjvm.dylib 0 x 89629491 JVM_MonitorWait + 211

    7 libjvmlinkage.dylib 0x12aa7dd5 JVM_MonitorWait + 69

    8   ???                                      0xd200b9d9 0 + 3523262937

    9   ???                                      0xd2003e31 0 + 3523231281

    10?                                    0xd2003e31 0 + 3523231281

    11?                                    0xd200430d 0 + 3523232525

    12?                                    0xd2001374 0 + 3523220340

    13 libjvm.dylib 0x8961c4a3 0x8956d000 + 717987

    14 libjvm.dylib 0x8961c215 0x8956d000 + 717333

    15 libjvm.dylib 0 x 89629139 0x8956d000 + 770361

    16 libjvm.dylib 0x89628fc1 0x8956d000 + 769985

    17 libjvm.dylib 0x89628f40 0x8956d000 + 769856

    18 libjvm.dylib 0x89628d8d 0x8956d000 + 769421

    19 libjvm.dylib 0x89628bc3 0x8956d000 + 768963

    20 libjvm.dylib 0x8958208c 0x8956d000 + 86156

    21 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    22 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    23 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Line 24: Java: Code Model Worker

    0 libsystem_kernel.dylib 0x9112649a mach_msg_trap + 10

    1 libsystem_kernel.dylib 0 x 91125884 mach_msg + 68

    2 libjvm.dylib 0x895827e6 0x8956d000 + 88038

    3 libjvm.dylib 0x89828fa9 0x8956d000 + 2867113

    4 libjvm.dylib 0x8986a0c2 0x8956d000 + 3133634

    5   ???                                      0xd200b9d9 0 + 3523262937

    6   ???                                      0xd2003e31 0 + 3523231281

    7   ???                                      0xd2003e31 0 + 3523231281

    8   ???                                      0xd200430d 0 + 3523232525

    9   ???                                      0xd2004473 0 + 3523232883

    10?                                    0xd2003f97 0 + 3523231639

    11?                                    0xd200430d 0 + 3523232525

    12?                                    0xd2001374 0 + 3523220340

    13 libjvm.dylib 0x8961c4a3 0x8956d000 + 717987

    14 libjvm.dylib 0x8961c215 0x8956d000 + 717333

    15 libjvm.dylib 0 x 89629139 0x8956d000 + 770361

    16 libjvm.dylib 0x89628fc1 0x8956d000 + 769985

    17 libjvm.dylib 0x89628f40 0x8956d000 + 769856

    18 libjvm.dylib 0x89628d8d 0x8956d000 + 769421

    19 libjvm.dylib 0x89628bc3 0x8956d000 + 768963

    20 libjvm.dylib 0x8958208c 0x8956d000 + 86156

    21 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    22 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    23 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Line 25: Java: Code Model Worker

    0 libsystem_kernel.dylib 0x9112649a mach_msg_trap + 10

    1 libsystem_kernel.dylib 0 x 91125884 mach_msg + 68

    2 libjvm.dylib 0x895827e6 0x8956d000 + 88038

    3 libjvm.dylib 0x89828fa9 0x8956d000 + 2867113

    4 libjvm.dylib 0x8986a0c2 0x8956d000 + 3133634

    5   ???                                      0xd200b9d9 0 + 3523262937

    6   ???                                      0xd2003e31 0 + 3523231281

    7   ???                                      0xd2003e31 0 + 3523231281

    8   ???                                      0xd200430d 0 + 3523232525

    9   ???                                      0xd2004473 0 + 3523232883

    10?                                    0xd2003f97 0 + 3523231639

    11?                                    0xd200430d 0 + 3523232525

    12?                                    0xd2001374 0 + 3523220340

    13 libjvm.dylib 0x8961c4a3 0x8956d000 + 717987

    14 libjvm.dylib 0x8961c215 0x8956d000 + 717333

    15 libjvm.dylib 0 x 89629139 0x8956d000 + 770361

    16 libjvm.dylib 0x89628fc1 0x8956d000 + 769985

    17 libjvm.dylib 0x89628f40 0x8956d000 + 769856

    18 libjvm.dylib 0x89628d8d 0x8956d000 + 769421

    19 libjvm.dylib 0x89628bc3 0x8956d000 + 768963

    20 libjvm.dylib 0x8958208c 0x8956d000 + 86156

    21 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    22 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    23 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Line 26:

    0 libsystem_kernel.dylib 0x9112d7ce __semwait_signal + 10

    1 libsystem_c.dylib 0x94f308cd $UNIX2003 + 218 nanosleep

    2 com.adobe.flash.flbridge 0x6cc8093b ScObjects::Thread:sleep(unsigned_int) + 59

    3 com.adobe.flash.flbridge 0x6cc7c799 ScObjects::BridgeTalkThread::run() + 185

    4 com.adobe.flash.flbridge 0x6cc80ca8 ScObjects::Thread:go(void*) + 168

    5 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    6 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    7 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Thread 27: Java: Thread-4

    0 libsystem_kernel.dylib 0x9112649a mach_msg_trap + 10

    1 libsystem_kernel.dylib 0 x 91125884 mach_msg + 68

    2 libjvm.dylib 0x895828b6 0x8956d000 + 88246

    3 libjvm.dylib 0x896b7d05 0x8956d000 + 1355013

    4 libjvm.dylib 0x896bb23a JVM_Sleep + 254

    5 libjvmlinkage.dylib 0x12aa89c8 JVM_Sleep + 72

    6   ???                                      0xd200b9d9 0 + 3523262937

    7   ???                                      0xd2003e31 0 + 3523231281

    8   ???                                      0xd200430d 0 + 3523232525

    9   ???                                      0xd2001374 0 + 3523220340

    10 libjvm.dylib 0x8961c4a3 0x8956d000 + 717987

    11 libjvm.dylib 0x8961c215 0x8956d000 + 717333

    12 libjvm.dylib 0 x 89629139 0x8956d000 + 770361

    13 libjvm.dylib 0x89628fc1 0x8956d000 + 769985

    14 libjvm.dylib 0x89628f40 0x8956d000 + 769856

    15 libjvm.dylib 0x89628d8d 0x8956d000 + 769421

    16 libjvm.dylib 0x89628bc3 0x8956d000 + 768963

    17 libjvm.dylib 0x8958208c 0x8956d000 + 86156

    18 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    19 libsystem_pthread.dylib 0x969ab6f6 _pthread_start + 155

    20 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Line 28:

    0 libsystem_kernel.dylib 0x9112d3ea __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x969ac5a7 _pthread_cond_wait + 868

    2 libsystem_pthread.dylib 0x969ac23e pthread_cond_wait + 48

    3 com.macromedia.Flash Player.authplaylib 0x1604611f 0x15bf6000 + 4522271

    4 com.macromedia.Flash Player.authplaylib 0x15c1025f 0x15bf6000 + 107103

    5 com.macromedia.Flash Player.authplaylib 0x1604620c 0x15bf6000 + 4522508

    6 com.macromedia.Flash Player.authplaylib 0 x 16046250 0x15bf6000 + 4522576

    7 com.macromedia.Flash Player.authplaylib 0 x 16046376 0x15bf6000 + 4522870

    8 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    libsystem_pthread.dylib 9 0x969ab6f6 _pthread_start + 155

    10 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Line 29:

    0 libsystem_kernel.dylib 0x9112d3ea __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x969ac5a7 _pthread_cond_wait + 868

    2 libsystem_pthread.dylib 0x969ac23e pthread_cond_wait + 48

    3 com.macromedia.Flash Player.authplaylib 0x1604611f 0x15bf6000 + 4522271

    4 com.macromedia.Flash Player.authplaylib 0x15c1025f 0x15bf6000 + 107103

    5 com.macromedia.Flash Player.authplaylib 0x1604620c 0x15bf6000 + 4522508

    6 com.macromedia.Flash Player.authplaylib 0 x 16046250 0x15bf6000 + 4522576

    7 com.macromedia.Flash Player.authplaylib 0 x 16046376 0x15bf6000 + 4522870

    8 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    libsystem_pthread.dylib 9 0x969ab6f6 _pthread_start + 155

    10 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Line 30:

    0 libsystem_kernel.dylib 0x9112d3ea __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x969ac5a7 _pthread_cond_wait + 868

    2 libsystem_pthread.dylib 0x969ac23e pthread_cond_wait + 48

    3 com.macromedia.Flash Player.authplaylib 0x1604611f 0x15bf6000 + 4522271

    4 com.macromedia.Flash Player.authplaylib 0x15c1025f 0x15bf6000 + 107103

    5 com.macromedia.Flash Player.authplaylib 0x1604620c 0x15bf6000 + 4522508

    6 com.macromedia.Flash Player.authplaylib 0 x 16046250 0x15bf6000 + 4522576

    7 com.macromedia.Flash Player.authplaylib 0 x 16046376 0x15bf6000 + 4522870

    8 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    libsystem_pthread.dylib 9 0x969ab6f6 _pthread_start + 155

    10 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Line 31:

    0 libsystem_kernel.dylib 0x9112d3ea __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x969ac5a7 _pthread_cond_wait + 868

    2 libsystem_pthread.dylib 0x969ac23e pthread_cond_wait + 48

    3 com.macromedia.Flash Player.authplaylib 0x1604611f 0x15bf6000 + 4522271

    4 com.macromedia.Flash Player.authplaylib 0x15c1025f 0x15bf6000 + 107103

    5 com.macromedia.Flash Player.authplaylib 0x1604620c 0x15bf6000 + 4522508

    6 com.macromedia.Flash Player.authplaylib 0 x 16046250 0x15bf6000 + 4522576

    7 com.macromedia.Flash Player.authplaylib 0 x 16046376 0x15bf6000 + 4522870

    8 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    libsystem_pthread.dylib 9 0x969ab6f6 _pthread_start + 155

    10 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Line 32:

    0 libsystem_kernel.dylib 0x9112d3ea __psynch_cvwait + 10

    1 libsystem_pthread.dylib 0x969ac5a7 _pthread_cond_wait + 868

    2 libsystem_pthread.dylib 0x969ad8b1 pthread_cond_timedwait_relative_np + 47

    3 com.macromedia.Flash Player.authplaylib 0x160460e7 0x15bf6000 + 4522215

    4 com.macromedia.Flash Player.authplaylib 0x15dd69de 0x15bf6000 + 1968606

    5 com.macromedia.Flash Player.authplaylib 0x1604620c 0x15bf6000 + 4522508

    6 com.macromedia.Flash Player.authplaylib 0 x 16046250 0x15bf6000 + 4522576

    7 com.macromedia.Flash Player.authplaylib 0 x 16046376 0x15bf6000 + 4522870

    8 libsystem_pthread.dylib 0x969ab780 _pthread_body + 138

    libsystem_pthread.dylib 9 0x969ab6f6 _pthread_start + 155

    10 libsystem_pthread.dylib 0x969a8f7a thread_start + 34

    Line 33:

    0 libsystem_kernel.dylib 0x9112dd5e __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x969ab34b _pthread_wqthread + 1289

    2 libsystem_pthread.dylib 0x969a8f56 start_wqthread + 34

    Line 34:

    0 libsystem_kernel.dylib 0x9112dd5e __workq_kernreturn + 10

    1 libsystem_pthread.dylib 0x969ab34b _pthread_wqthread + 1289

    2 libsystem_pthread.dylib 0x969a8f56 start_wqthread + 34

    Line 35:

    Thread 0 crashed with X 86 Thread State (32-bit):

    EAX: 0 x 00000000 ebx: 0xa33db6b0 ecx: 0xbfffe30c edx: 0x00000000

    EDI: 0xa3662000 esi: 0 x 00000006 ebp: 0xbfffe328 esp: 0xbfffe30c

    SS: 0 x 00000023 efl: 0 x 00000206 eip: 0x9112d572 cs: 0x0000000b

    DS: 0 x 00000023 are: 0 x 00000023 fs: 0 x 00000000 gs: 0x0000000f

    CR2: 0xa33d9a10

    Logical CPU: 0

    Error code: 0 x 00080148

    Trap number: 132

    Binary images:

    0x1000 - 0x1b82fff + com.adobe.flash (12.0.2.529 - 12.0.2) < 05566898-067F-CC57-6272-EF851BBF7BDD >/applications/Adobe / * / Adobe Flash CS6.app/Contents/MacOS/Adobe Flash CS6

    0x272b000 - 0x28bffff + com.adobe.PlugPlug (3.0.0.383 - 3.0.0.383) < 2205B6E1-7C9E-1892-EC68-C1B326C727A8 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug

    0 x 2967000 - 0x2a4ffe3 + com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.7.101.18636 - 3.7.101.18636) < 2540764B-C2F2-61D7-EFBA-6663171FD19A >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore

    0x2ae0000 - 0x2b7efe3 + libicucnv.40.0.dylib (40) < D11DC46F-D58E-B17C-9356-46F593D5A7CF >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/ICUConverter.framework/Versions/4.0/libicucnv.40.0.dylib

    0x2ba0000 - 0x2cd5fe7 + libicui18n.40.0.dylib (40) < 8BE3FE71-0CE6-2B93-B5F2-B4F0DD274B91 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/ICUInternationalization.framework/Versions/4.0/libicui18n.40. 0 dylib

    0x2d49000 - 0x2e3afef + libicuuc.40.0.dylib (40) < 4CF7066A-6E82-FF80-93E6-6849149FBB98 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/ICUUnicode.framework/Versions/4.0/libicuuc.40.0.dylib

    0x2e77000 - 0x3bbcff7 + libicudata.40.0.dylib (40) < 015E6351-4F42-00C1-2096-BEE385B275B1 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/ICUData.framework/Versions/4.0/libicudata.40.0.dylib

    0x3bcf000 - 0x3bdaff7 + libChar16.dylib (1) < 5E278E11-8234-CB11-AAC9-090FBD037DB7 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/MacOS/libChar16.dylib

    0x3be3000 - 0x3c05fff + libCoreTypes.dylib (1) < 5799BD8C-B334-518F-3F6F-EAA503B43831 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/MacOS/libCoreTypes.dylib

    0x3c1d000 - 0x3e4bfff com.apple.carbonframeworktemplate (1.0 - 1.0) < 9F3FE9F2-8834-4654-C0D0-F4F356E6A906 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/Xerces.framework/Versions/A/Xerces

    0 x 4102000 - 0x4106ffd com.apple.JavaVM (15.0.1 - 15.0.1) < 789E2697-AC4F-31EE-ACA5-918550517D4E > /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM

    0x410e000 - 0x5778fff + com.adobe.AILib (AILib version 16.0.0 - 16.0.0.646) < 317A871E-E0A5-8C5E-B60F-7448ADEBEDBD >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Versions/A/AILib

    0x67f1000 - 0x684cfff + com.adobe.aiport (aiport version 16.0.0 - 16.0.0.646) < 59612576-B2F2-BF25-B09D-6120A3B1462C >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AIPort.framework/Versions/A/aiport

    0x688c000 - 0x68ecfff + com.adobe.filterport (filterport version 16.0.0 - 16.0.0.646) < AF193FFA-F555-2379-81B3-7DA07698E466 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/FilterPort.framework/Versions/A/filterport

    0 x 6937000 - 0x6937ffb + com.adobe.SPBasic (SPBasic version 16.0.0 - 16.0.0.646) < 936C3F3E-8DDD-50EC-D247-C1F242633914 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic

    0x693c000 - 0x6958ff9 + AdobePDFSettings (1) / applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings

    0 x 6972000 - 0x6aeeff3 + com.adobe.ACE (AdobeACE 2.19.18.19822 - 2.19.18.19822) < 2EC89B0E-6B51-4F7F-314A-FB6E18BFC36D >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE

    0x6afd000 - 0x7098fef + com.adobe.AGM (AdobeAGM 4.26.20.19822 - 4.26.20.19822) < F394945E-943B-B99F-9B45-07E96C293C05 >/Applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM

    0 x 7108000 - 0x7142fef + com.adobe.ARE (AdobeARE 1.5.02.19822 - 1.5.02.19822) < 2A3CBF43-F63E-B5B6-19EA-A2C392CA92F4 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE

    0 x 7148000 - 0x7163fff + com.adobe.BIB (AdobeBIB 1.2.02.19822 - 1.2.02.19822) < CD35337B-CA58-50D9-5AAE-74E720CCE415 >/Applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB

    0 x 7169000 - 0x718ffff + com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) < 606DA5E0-CCB3-90B2-3971-A48349DA046A >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils

    0 x 7195000 - 0x74bcffb + com.adobe.CoolType (AdobeCoolType 5.10.31.19822 - 5.10.31.19822) < A5344CC0-BD71-A071-A001-EDB3A28B9A8D >/Applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType

    0x74f4000 - 0x78effe7 + com.adobe.MPS (AdobeMPS 5.8.0.19673 - 5.8.0.19673) < D65ABA15-80D2-3F1C-2500-EEF873019149 >/Applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS

    0x794c000 - 0x7a50fef + com.adobe.PDFPort (AdobePDFPort 2.1.0.19734 - 2.1.0.19734) < 71232DFD-06FB-837B-8246-BD20F862B5E3 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort

    0x7a69000 - 0x8261ffb + com.adobe.PDFL (PROD_MAJOR. PROD_MINOR. PROD_STEP - 10.0.1.18562) < F24575DF-1B4D-B13E-1525-3C7F5CB88B3E >/Applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL

    0x82ec000 - 0x8314feb + com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.18636 - 3.7.101.18636) < C38ACBCE-04AA-DF40-FF79-29377F25CDAF >/Applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t

    0 x 8333000 - 0x835bff3 + com.adobe.AXE16SharedExpat (AdobeAXE16SharedExpat 3.7.101.18636 - 3.7.101.18636) < AD333DEF-C5AC-1F75-0486-DF86F89433CD >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobeAXE16SharedExpat.framework/Versions/A/AdobeAXE16SharedEx pat

    0x837a000 - 0x83d6fef + com.adobe.AdobeXMPCore (adobe XMP Core 5.3 - 11 c - 66.145661) < 123A0829-A85B-6E67-0E48-4F37B08E4C03 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP

    0x83df000 - 0x8457fe3 + com.adobe.FileInfo.framework (adobe XMP FileInfo 5. 3 0. 0-i 3 - 66.145433) < EF13921E-1CC6-2891-0EEC-D8D8C68D5D87 >/Applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo

    0 x 8466000 - 0x8645ffb + com.adobe.owl (AdobeOwl version 4.0.93 - 4.0.93) < D102FCD2-496D-5322-AEC0-7A5091CAA2CA >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl

    0 x 8672000 - 0x971eff3 + com.adobe.psl (AdobePSL 13.0.0.19655 - 13.0.0.19655) < 47A9AAEC-43CD-17C9-6E58-6312315FC15D >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL

    0 x 9897000 - 0x9ac1ffb + com.adobe.linguistic.LinguisticManager (6.0.0 - 17018) < DE928A0E-AE8F-4FB7-6B6C-C52E4FD366A1 >/Applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic

    0x9b33000 - 0x9b36ffb + com.adobe.AdobeCrashReporter (6.0 - 6.0.20120201) < 6CE1936E-6AC7-6900-769B-876CBB68B5BC >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter

    0x9b3e000 - 0x9f71ffb + com.adobe.dvaui.framework (5.0.0 - 5.0.0.0) < EAD7D965-79BB-EA89-AB42-692578840BA8 >/Applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui

    0xa3aa000 - 0xa55fff3 + com.adobe.dvacore.framework (5.0.0 - 5.0.0.0) < EDDA1DA8-726A-0F1E-8733-CF6A482F307C >/Applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore

    0xa6ad000 - 0xaac0fe7 + com.adobe.dvaadameve.framework (5.0.0 - 5.0.0.0) < E717BB78-EC59-A9C3-B02B-91A7D46DDBB3 >/Applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/dvaadameve.framework/Versions/A/dvaadameve

    0xb0d1000 - 0xb1b3ff3 + com.adobe.amtlib (amtlib 6.0.0.93 - 6.0.0.93) < 2218F05B-09B7-AE0E-5EF7-98FBA5DF9C86 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib

    0xb1c2000 - 0xb22fffb + com.adobe.headlights.LogSessionFramework (2.1.2.1652) < 82DA9279-45D2-AD40-C86C-F5A94B9DAAFF >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession

    0xb27e000 - 0xb2b2ff7 + com.adobe.pip (6.0.0.1654) < 21A87289-747E-A0BD-2692-F9E844932E26 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP

    0xb2be000 - 0xb3fefeb + com.winsoft.wrservices (WRServices 5.0.0-5.0.0) < 6D085279-1185-E7F0-B0D8-FBADBA062516 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices

    0xb470000 - 0xb478ff7 + com.adobe.boost_date_time.framework (5.0.0 - 5.0.0.0) < 6397AF50-419F-3030-C6D6-A28D34CF3412 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/boost_date_time.framework/Versions/A/boost_date_time

    0xb490000 - 0xb4a8ff3 + com.adobe.boost_filesystem.framework (5.0.0 - 5.0.0.0) < 8DC64C9A-155F-DE79-3521-8869C4A2661D >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/boost_filesystem.framework/Versions/A/boost_filesystem

    0xb4c9000 - 0xb573ffb + com.adobe.boost_regex.framework (5.0.0 - 5.0.0.0) < F143073E-6033-B137-7633-9601D846FC1A >/Applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/boost_regex.framework/Versions/A/boost_regex

    0xb5f8000 - 0xb603ff7 + com.adobe.boost_signals.framework (5.0.0 - 5.0.0.0) < 5F9FB957-8AC2-A2FD-1518-9F9D978B0C58 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/boost_signals.framework/Versions/A/boost_signals

    0xb617000 - 0xb619ff3 + com.adobe.boost_system.framework (5.0.0 - 5.0.0.0) < 5641DBC5-37C4-7349-4BB4-FC19F46EEFFC >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/boost_system.framework/Versions/A/boost_system

    0xb61f000 - 0xb62bff7 + com.adobe.boost_threads.framework (5.0.0 - 5.0.0.0) < 6F6A3465-894D-2E05-9FDE-16A15486E583 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/boost_threads.framework/Versions/A/boost_threads

    0xb647000 - 0xb7fafe3 + com.adobe.AFlamingo (AFlamingo 2.3.102.19287 - 2.3.102.19287) < A04AE11D-8128-3324-295F-504CBAD447E1 >/Applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/aflamingo.framework/Versions/A/aflamingo

    0xb816000 - 0xb81dffb + com.adobe.ape.shim (3.3.8.19346 - 3.3.8.19346) < B711CAA7-29D6-D5CF-CE1B-A611896C8D87 >/Applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape

    0xb825000 - 0xb8eefeb + FlashIK Framework (1.0) < A8AFFB46-F2F7-FBFF-CF77-6BC999E1D266 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/FlashIK.framework/Versions/A/FlashIK

    0xb977000 - 0xb9abff7 + com.adobe.pff.framework (1.0 - 1.0) < E053457E-4AA0-D931-14AF-37BFE91AA1E4 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/PFF.framework/Versions/A/PFF

    0xb9d4000 - 0xc377fef + com.adobe.AFlame (2.03.54.19287 in flames - 2.03.54.19287) < 21495560-EA23-BCA2-8E91-9F0C1EF440EB >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/aflame.framework/Versions/A/aflame

    0xc3eb000 - 0xc41afff + com.adobe.contextui.framework (5.0.0 - 5.0.0.0) < 109B01C7-7CB9-D3CA-2CBB-B8D4ADC7AE3E >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/contextui.framework/Versions/A/contextui

    0xc461000 - 0xc485fe7 + com.adobe.dvaunittesting.framework (5.0.0 - 5.0.0.0) < B32EF0E4-EBCF-6A17-56B2-FC5F2A969F45 >/Applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/dvaunittesting.framework/Versions/A/dvaunittesting

    0xc4bd000 - 0xc4dcfff + libtbb.dylib (0) < 6EA19434-60D6-505D-CB6F-5CA562A0F2A7 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/libtbb.dylib

    0xc4f3000 - 0xc4fbfef + libtbbmalloc.dylib (0) < 7A79ED70-A4AC-737A-2FAA-63B6FB29D4ED >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/libtbbmalloc.dylib

    0xc50a000 - 0xc5c5fef + com.adobe.AdobeXMPFiles (adobe XMP files 5.4 f 66.145661 - 49) < B8855D3A-C827-D9EB-040E-F808043458DA >/Applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMPFiles

    0xc5f4000 - 0xc5f8ffd JavaLaunching (1) < 06D517D5-3E19-302F-BA51-91847DADFDC7 > /System/Library/PrivateFrameworks/JavaLaunching.framework/Versions/A/JavaLaunching

    0xc5ff000 - 0xc61cfff com.apple.vmutils (4.2.1 - 108) < 6FBCB446-CB47-396D-A8F2-89D1DDA3A96C > /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils

    0xc62d000 - 0xc630ffb + com.adobe.dvaflashview.framework (5.0.0 - 5.0.0.0) < F06AF987-2A15-A8B9-11C9-2368422D061E >/Applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/dvaflashview.framework/Versions/A/dvaflashview

    0xc63f000 - 0xc711fff + com.adobe.dvaworkspace.framework (5.0.0 - 5.0.0.0) < 2B746397-82F4-3C89-28C1-1EC7EE317435 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/dvaworkspace.framework/Versions/A/dvaworkspace

    0xcf3c000 - 0xcf3efff com.apple.textencoding.unicode (3.0 - 3.0) < 58CFCF59-2189-3DEA-B4FA-242799022D93 > system/library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode encodings

    0x109e6000 - 0x109e7ff3 + com.macromedia.Flash.flastoragelib (9, 0-9, 0) < AB678254-543D-CC50-3CF8-EC0AA01D99D4 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/PlugIns/FLAStorageLib.bundle/Contents/MacOS/FLAStorageLib

    0x109ef000 - 0x109efffd + cl_kernels (?) < 04D98C92-DCD3-4C93-B083-B57D96835864 > cl_kernels

    0x12aa7000 - 0x12aaeffb + libjvmlinkage.dylib (1) < D9427B46-8FEB-3FA9-AC0C-3E0FA4824320 > /Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libjvmlinkage.dylib

    0x12ad1000 - 0x12ad8fff + libverify.dylib /Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libverify.dylib < 683BCE2E-6200-3734-A926-10129E43A284 > (1.0 - 1.0)

    0x12add000 - 0x12ae5fff JavaNativeFoundation (1) < 11520959-D4B8-3B51-9D15-76812176A476 > /System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFoundation.fr amework/Versions/A/JavaNativeFoundation

    0x12c00000 - 0x12c1dfff + libjava.jnilib (1) < FCA2018B-641E-32C8-8978-1935FF8F8544 > /Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libjava.jnilib

    0x12c30000 - 0x12c39fff com.apple.java.JavaRuntimeSupport (15.0.1 - 15.0.1) < 80E1C70B-6DC4-3B02-98C3-186402CA7CD7 > /System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaRuntimeSupport.fram ework/Versions/A/JavaRuntimeSupport

    0x12c47000 - 0x12c53fff + libzip.jnilib (1) < 788F148B-73D1-30C5-8310-DE41C9206221 > /Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Libraries/libzip.jnilib

    0x132f1000 - 0x13304ff7 + com.adobe.AdobeSFL (AdobeSFL 1.1.0.18561 - 1.1.0.18561) < 5A153C87-DD7A-CE28-2E93-7DC120D4244F >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobeSFL.framework/Versions/A/AdobeSFL

    0x1334c000 - 0x1334dffb ATSHI.dylib (394,3) < 7CEA1720-BB21-328F-88F1-BC8C4BFA7BCA > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib

    0x154da000 - 0x154e9fff libSimplifiedChineseConverter.dylib (68) < 814120AA-8E12-3746-B791-B7978E68437A > /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib

    0x154ee000 - 0x15500fff libTraditionalChineseConverter.dylib (68) < 279A9349-0AF1-3AE1-AA0E-B15E7E3A7430 > /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib

    0x15bf6000 - 0x165e8ff3 + com.macromedia.Flash Player.authplaylib (10.2.153.2 - 10.2.153.2) /Applications/Adobe/*/AuthPlayLib.bundle/Contents/MacOS/AuthPlayLib < 3CFE191B-E5E1-6C47-46DB-FE24C06872B7 >

    0x1688a000 - 0x1688efff com.apple.audio.AppleHDAHALPlugIn (274.7 - 274.7) < F92B5ECA-D3C3-3672-B968-5C0EE87BEAA3 > /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn

    0x16c22000 - 0x16c23ffb + com.adobe.illustrator.plugins.MPSCommon (MPSCommon version 16.0.0 - 16.0.0) < 7447C0C2-B3A9-8718-9E35-ED91601BA4C8 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Formats/MPSCommon.aip/Contents/MacOS/MPSCommon

    0x16c48000 - 0x16c49fff libCyrillicConverter.dylib (68) < DED9B6CD-8E65-38E1-96A2-B412A74A8E50 > /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib

    0x16e89000 - 0x16eddfe7 + com.adobe.ape (3.3.8.19346 - 3.3.8.19346) < 0B80F7A7-EC10-A7C7-5E6E-787953553C55 >/Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore

    0 x 17116000 - 0x17159ff3 + com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 6.0.0.24 - 6.0.0.24) < 4B40551F-5306-C836-02AD-109826BD580C >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/UpdaterNotifications.framework/Versions/A/UpdaterNotification s

    0x1869c000 - 0x186a0ff3 + com.adobe.illustrator.plugins.TrimMark (version of 16.0.0 crop marks - 16.0.0) < C399C9DE-C6A2-CB92-7C33-E123237E3FA0 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator filters/culture Marks.aip/Contents/MacOS/TrimMark

    0x1870f000 - 0x18711ff7 + com.adobe.illustrator.plugins.Punk (punk version 16.0.0 - 16.0.0) < 462B5780-8E13-2FE6-19D2-3293ADBDFB28 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/Punk.aip/Contents/MacOS/Punk

    0x1aaaa000 - 0x1aaadfff + com.adobe.illustrator.plugins.Distort (version distorting the free 16.0.0 - 16.0.0) < 54155939-7896-3929-3CC4-4981748672B5 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/Distort.aip/Contents/MacOS/Distort

    0x1b1fc000 - 0x1b1ffff3 + com.adobe.illustrator.plugins.ZigZag (version of zig Zag 16.0.0 - 16.0.0) < 82488F7E-050A-C5D6-9004-F36392C74165 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/ZigZag.aip/Contents/MacOS/ZigZag

    0x1f5bf000 - 0x1f5e6ffb + ServiceManager - Launcher.dylib (389) < 4EEAF886-0B48-9FF4-BE65-41E222123A50 >/Library/Application Support/Adobe/*/ServiceManager-Launcher.dylib

    0x1f5f0000 - 0x1f5f2ff7 + com.macromedia.Flash.FLfile (12.0.0.481 - 12.0.0) < 639D8AF3-69A7-4D91-5826-F54C86AB1BD1 > /Applications/Adobe/*/FLfile.bundle/Contents/MacOS/FLfile

    0x1f830000 - 0x1f833ffb + com.adobe.illustrator.plugins.Scribble (tweak version 16.0.0 - 16.0.0) < A57666A1-7C8A-AC24-B0A4-670FBA62D730 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/Tweak.aip/Contents/MacOS/Scribble

    0x1fe07000 - 0x1fe0afff + com.adobe.illustrator.plugins.Roughen (scratch version 16.0.0 - 16.0.0) < 657B954B-D623-CD12-6362-63CF69EE3434 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/Roughen.aip/Contents/MacOS/Roughen

    0x21ebb000 - 0x21ebfff7 + com.adobe.illustrator.plugins.GIF89aFormat (version in GIF89a Format 16.0.0 - 16.0.0) < 1FD90E95-F78E-4754-B6BC-3296F9B55E21 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Formats/GIF89a.aip/Contents/MacOS/GIF89aFormat

    0 x 22197000 - 0x2219aff3 + com.adobe.illustrator.plugins.Round (version of rounded corners 16.0.0 - 16.0.0) < 9C8C02B8-192E-7E19-24BB-45EAA1BAD1F9 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/Round.aip/Contents/MacOS/Round

    0x2291e000 - 0x22922fff + com.adobe.illustrator.plugins.TwirlTool (version of the twist 16.0.0 tool - 16.0.0) < E9A7502D-568F-A563-C182-63C8F4F9596D >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/TwirlTool.aip/Contents/MacOS/TwirlTool

    0 x 22988000 - 0x2298cfff + com.adobe.illustrator.plugins.AddArrow (AddArrow version 16.0.0 - 16.0.0) < 90A93B66-306D-7A41-C034-E22C7F1FCEBE >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/AddArrow.aip/Contents/MacOS/AddArrow

    0x233e9000 - 0x233f1ffb + com.adobe.illustrator.plugins.ArtConverters (ArtConverters version 16.0.0 - 16.0.0) < AE9F9046-92CE-C58C-D870-192786EBCF14 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Required/Plug-ins/ArtConverters.a ip/Contents/MacOS/ArtConverters

    0 x 24015000 - 0x2401fff7 + com.adobe.illustrator.plugins.FrameworkS (framework Server version 16.0.0 - 16.0.0) < 9FF0C879-1214-A152-FE7D-7C7ADA0B1247 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Required/Plug-ins/FrameworkServer .aip/Contents/MacOS/FrameworkS

    0x2402e000 - 0x24050fef + com.adobe.illustrator.plugins.Rasterize (pixelation version 16.0.0 - 16.0.0) < F48EF2D8-7AE2-40AF-C98C-2CD2F29D5571 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Required/Plug-ins/Rasterize.aip/C Contents/MacOS/pixelation

    0x24b24000 - 0x24b2cff3 + com.adobe.illustrator.plugins.ExpandS (extend Suite version 16.0.0 - 16.0.0) < 92BA79A1-8E9B-A0DA-8D6A-892B2CBE85A0 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Required/Plug-ins/ExpandS.aip/Con tents/MacOS/ExpandS

    0x24c07000 - 0x24c36fff + com.adobe.illustrator.plugins.BRSPencilTool (version of the pencil 16.0.0 tool - 16.0.0) < 485A2FB2-3781-B73A-EFA2-A5547562514B >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Required/Plug-ins/BRSPencilTool.a ip/Contents/MacOS/BRSPencilTool

    0 x 25448000 - 0x25451ff3 + com.adobe.illustrator.plugins.Transform (transform each version 16.0.0 - 16.0.0) < DBD634EB-A701-8547-5D0A-6801F0919CE6 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/Transform.aip/Contents/MacOS/Transform

    0x2724e000 - 0x27255fef + com.adobe.illustrator.plugins.ShapeEffect (version of effects of form 16.0.0 - 16.0.0) < 031E63CF-5F57-097B-F1B4-82AE092352D7 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/ShapeEffect.aip/Contents/MacOS/ShapeEffect

    0x274f2000 - 0x274f8ff3 + com.adobe.illustrator.plugins.PathSuite (PathConstruction Suite version 16.0.0 - 16.0.0) < CCAF072F-68D4-397A-30F7-7E524BF96BAA >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/PathSuite.aip/Contents/MacOS/PathSuite

    0x2765e000 - 0x27663fff + com.adobe.illustrator.plugins.OffsetPath (offset version 16.0.0 - 16.0.0) < 05FDA7EA-ECAB-ABE2-0927-F28679D6C756 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/OffsetPath.aip/Contents/MacOS/OffsetPath

    0x28e39000 - 0x28e43ff7 + com.adobe.illustrator.plugins.DiffusionRasterSuite (DiffusionRaster version 16.0.0 - 16.0.0) < DE74F7C7-4433-2622-AC52-43068883C209 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/DiffusionRaster.aip/Contents/MacOS/DiffusionRasterSuite

    0x28e93000 - 0x28eaafe7 + com.adobe.illustrator.plugins.BrushManager (Brush Manager version 16.0.0 - 16.0.0) < E4EBC030-7163-EF13-AECB-C91A3712D8E3 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/BrushManager.aip/Contents/MacOS/BrushManager

    0x293fa000 - 0x29408ffb + com.adobe.illustrator.plugins.DropShadow (version of the shadow 16.0.0 - 16.0.0) < 82C16B68-E6AE-A551-15FC-0CD6C06C25C1 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/DropShadow.aip/Contents/MacOS/DropShadow

    0x2dfda000 - 0x2dfe8ff7 + com.adobe.illustrator.plugins.Pathfinder (pathfinder Plugin version 16.0.0 - 16.0.0) < E963BD34-679E-42EA-260B-2D90A4603DE2 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/Pathfinder.aip/Contents/MacOS/Pathfinder

    0x2e85e000 - 0x2e86cfff + com.adobe.illustrator.plugins.Jpeg2000 (Jpeg2000 version 16.0.0 - 16.0.0) < 8DA4F8C2-7F0C-75E0-FA1B-EA38A23D48E6 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Formats/Jpeg2000.aip/Contents/MacOS/Jpeg2000

    0x2e944000 - 0x2e95dfff + com.adobe.illustrator.plugins.FOConversionSuite (FOConversionSuite version 16.0.0 - 16.0.0) < C018C094-985C-B495-3AD2-8051A944488B >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Required/Plug-ins/FOConversionSui te.aip/Contents/MacOS/FOConversionSuite

    0x2e982000 - 0x2e993fe7 + com.adobe.illustrator.plugins.StrokeOffset (StrokeOffset version 16.0.0 - 16.0.0) < 49ACF51F-7B6A-E587-FE4D-4F246570D9C2 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/StrokeOffset.aip/Contents/MacOS/StrokeOffset

    0x2e9c0000 - 0x2e9d6ff3 + com.adobe.illustrator.plugins.ScribbleFill (scribble version 16.0.0 - 16.0.0) < CF933C7F-D03D-206E-405F-50EEBBAED038 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/Scribble.aip/Contents/MacOS/ScribbleFill

    0x2f2b4000 - 0x2f2ccff3 + com.adobe.illustrator.plugins.FuzzyEffect (FuzzyEffect version 16.0.0 - 16.0.0) < 7919CDC4-0D12-A2B6-95C8-78A23798C273 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/FuzzyEffect.aip/Contents/MacOS/FuzzyEffect

    0 x 30483000 - 0x304baff3 + com.adobe.illustrator.plugins.PathfinderS (pathfinder Suite version 16.0.0 - 16.0.0) < 7BEEDC9F-E3FC-A89C-25A6-B9129001D587 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Required/Plug-ins/PathfinderS.aip/happy/MacOS/PathfinderS

    0 x 35802000 - 0x35845fe3 + com.adobe.illustrator.plugins.JPEGFormat (JPEGFormat version 16.0.0 - 16.0.0) < 4A072496-1CE9-0AE1-2308-A2F11FDEF781 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Formats/JPEGFormat.aip/Contents/MacOS/JPEGFormat

    0x36d37000 - 0x36d9effb + com.adobe.illustrator.plugins.PDFSuite (PDF Suite version 16.0.0 - 16.0.0) < C4B0DD88-8721-DA1C-605F-EEBF9CC6EE8F >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Required/Plug-ins/PDF Suite.aip/Contents/MacOS/PDFSuite

    0x3d507000 - 0x3d5b9fff ColorSyncDeprecated.dylib (470.3) < 30A2EDAA-C29A-3C2D-A1A2-D5E898743562 > System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib

    0x3ea21000 - 0x3ea8eff3 + com.adobe.illustrator.plugins.PhotoshopAdapter (adapter version 16.0.0 Photoshop - 16.0.0) < 5E46EDBD-8767-DC76-BF1A-0A6B9FC7CA32 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/PhotoshopAdapter.aip/Contents/MacOS/PhotoshopAdapter

    0x3ead9000 - 0x3eb22fe3 + com.adobe.illustrator.plugins.TIFFFileFormat (Format TIFF version 16.0.0 - 16.0.0) < 77AC2E02-6612-80C4-ADB4-216E2B42E7AB >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Formats/TIFF.aip/Contents/MacOS/TIFFFileFormat

    0x3f76e000 - 0x3f862fef + com.adobe.illustrator.plugins.BeautifulStrokes (beautiful features Suite version 16.0.0 - 16.0.0) < D9AE009C-002F-AD70-5384-DF91BF0DC982 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/BeautifulStrokes.aip/Contents/MacOS/BeautifulStrokes

    0x3ff00000 - 0x3ff55fff com.apple.CloudDocs /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs < 525C61AA-A979-3FD0-B576-336D5DDD04DD > (1.0 - 383.12)

    0x40000000 - 0x400c4fe3 + com.adobe.JP2K (2.0.0 - 2.0.0.18562) < FFA540EA-6CEB-F4D1-E0EF-A844A536D499 >/Applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K

    0x40ba9000 - 0x40c0aff7 + com.adobe.illustrator.plugins.Deform (envelope and Warp version 16.0.0 - 16.0.0) < E48E5EB5-5AB1-9384-CB46-4A63E5772291 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator filters/envelope and Warp.aip/Contents/MacOS/Deform

    0x40c45000 - 0x40c84fef + com.adobe.illustrator.plugins.MPSParser (MPSParser version 16.0.0 - 16.0.0) < 4321939E-68D0-698F-BACB-F2CE2D3F3665 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Formats/MPSParser.aip/Contents/MacOS/MPSParser

    0x458e7000 - 0x45946ff7 + com.adobe.illustrator.plugins.PSImport (Photoshop Import version 16.0.0 - 16.0.0) < 95149D9B-59C4-C0F1-D6BD-E6B64DAB3A8B >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Formats/PhotoshopImport.aip/Contents/MacOS/PSImport

    0 x 52103000 - 0x52187ff7 + multiprocessor support (?) < 5EE86312-CB82-9D3B-5907-301A4C5AC36F >/applications/Adobe / * / Support Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator filters/multiprocessor support.plugin/Contents/MacOS/MultiProcessor

    0x66dfe000 - 0x66e02fff libFontRegistryUI.dylib (155,1) < F1D4D339-8569-3666-A87C-92CEFE35A08D > /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framework/Resourc're / libFontRegistryUI.dylib

    0x6896d000 - 0x6897cfff + (1.0) com.yourcompany.PointGrid < 2CB987CD-6752-D333-7F4F-A6713A901947 > /Applications/Adobe/*/PointGrid.bundle/Contents/MacOS/PointGrid

    0x6a53a000 - 0x6a55cff7 + com.adobe.flash.cs6.airAndroid (12.0.0.0 - 12.0.0) < B0F6814C-0D4A-DB1A-843F-08C25ADFBF82 > /Applications/Adobe/*/Air_Android.bundle/Contents/MacOS/Air_Android

    0x6c87f000 - 0x6c8a9ff7 + com.adobe.flash.cs6.air (12.0.0.0 - 12.0.0) < 5D928258-091F-21EA-B69D-00EEA6B7838A > /Applications/Adobe/*/Air_Desktop_iOS.bundle/Contents/MacOS/Air_Desktop_iOS

    0x6cc5f000 - 0x6cca6fff + com.adobe.flash.flbridge (12.0.0.481 - 12.0.0) < 9301CA9F-DABA-0BB4-84D3-B9DAE690711D > /Applications/Adobe/*/FLBridge.bundle/Contents/MacOS/FLBridge

    0x6cf00000 - 0x6cf5dfef + (1.0) com.yourcompany.Brush < 2136D27E-974D-81F0-6078-492B233E16FC > /Applications/Adobe/*/Brush.bundle/Contents/MacOS/Brush

    0x6dc00000 - 0x6dc83ffb + (1.0) com.yourcompany.Collision < F0E00160-1946-C591-89EC-FBD99ACCC449 > /Applications/Adobe/*/Collision.bundle/Contents/MacOS/Collision

    0x6fa10000 - 0x6fb11fff + (1.0) com.yourcompany.Stroke < B1BDF135-128A-A5D9-3EC0-E0EBEC447500 > /Applications/Adobe/*/Stroke.bundle/Contents/MacOS/Stroke

    0 x 88800000 - 0x88872fef + com.adobe.adobe_caps (adobe_caps 6.0.29.0 - 6.0.29.0) < E4ADECD5-05B4-E78B-09D8-E45FD640E84D >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/adobe_caps.framework/adobe_caps

    0x8956d000 - 0x898d5fe6 + libjvm.dylib (1) < FD52FA39-2545-3053-AB1C-354995E08DDD > /Library/Java/JavaVirtualMachines/1.6.0.jdk/Contents/Home/bundle/Libraries/libjvm.dylib

    0x8fe7b000 - 0x8feaf67f dyld (360.21) < 872065EE-ED21-3B30-96A5-2CC56D735FB7 >/usr/lib/dyld

    0 x 90010000 - 0x90010fff (765.40.36) liblaunch.dylib < FB4759DB-7E36-388E-A398-E1582DD92A13 > /usr/lib/system/liblaunch.dylib

    0 x 90011000 - 0x90019fff com.apple.frameworks.CoreDaemon /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon < 2A4675CA-731F-37C6-ABE7-04BC93968B06 > (1.3 - 1.3)

    0x9001a000 - 0x9001dfff com.apple.AppleSystemInfo (3.1.5 - 3.1.5) < A4CCC266-F128-372F-BD6B-99DD7BD49AED > /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSystemInfo

    0x9001e000 - 0x90020fff com.apple.SafariServices.framework (11601 - 11601.5.17.1) /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices < B7C49DEF-00D0-3BFF-A90D-9526C3A23024 >

    0 x 90021000 - 0x901f4ff7 com.apple.ImageIO.framework (3.3.0 - 1444) < 91B351E2-A2E6-311F-A2A7-19C5EE0DB74D > /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO

    0x901f5000 - 0x90235ff3 com.apple.AppleJPEG (< 6F2A63D5-3DB3-3B70-A4A0-2B7D0014A948 > /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG 1.0 - 1.).

    0 x 90236000 - 0x90288ff3 com.apple.CoreMediaIO /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO < 0D2F3F8E-FF0C-33D3-B43C-B3A14A541F97 > (703, 0-4791)

    0 x 90289000 - 0x9037eff3 com.apple.CoreMedia (1.0 - 1731.15.202) /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia < FFB97556-C466-39F1-96A5-F01F763D8027 >

    0x9037f000 - 0x903bcff7 com.apple.DebugSymbols /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols < 367ECDBA-A978-32B1-99B0-7D63C6F36D78 > (132-132)

    0x903bd000 - 0x903f3ff7 com.apple.CoreVideo (1, 8-191, 3) < 26C95104-9FA6-32E7-A348-E5AF4AD59023 > /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo

    0 x 90417000 - 0x9041ffff com.apple.CoreServices.FSEvents (1223.10.1 - 1223.10.1) < BEB2E1B7-753C-3923-9AEB-6D9BC58818EE > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framewor k/Versions/A/FSEvents

    0 x 90420000 - 0x9042bfff com.apple.NetAuth /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth < 5BDBB960-B818-3B5A-9F0A-345DFB727F76 > (6.0 - 6.0)

    0x9042c000 - 0x9042efff libquarantine.dylib (80) < 4C34060C-9C6E-3804-ACF7-BDE3ADD900E9 > /usr/lib/system/libquarantine.dylib

    0x9042f000 - 0x91110ffb com.apple.AppKit /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit < 3B0BB517-8685-33EE-8C49-C7187FE4D509 > (6, 9 - 1404.46)

    0 x 91111000 - 0x91111fff libenergytrace.dylib (10.40.1) < 3B4CC4D9-7610-3FCD-9EBB-377359888979 > /usr/lib/libenergytrace.dylib

    0 x 91112000 - 0x91133ffb (3248.40.184) libsystem_kernel.dylib < DBEB1FFD-FB1A-3551-9542-24C7B480527D > /usr/lib/system/libsystem_kernel.dylib

    0 x 91134000 - 0x91147ff7 libsasl2.2.dylib (209) < CB3C5389-CF5B-3EE1-A9F8-979BF239553E > /usr/lib/libsasl2.2.dylib

    0 x 91148000 - 0x91148fff libsystem_blocks.dylib (65) < 30FA4604-2D0B-3318-B74E-176F0A7E9049 > /usr/lib/system/libsystem_blocks.dylib

    0 x 91149000 - 0x911fcff7 com.apple.Bluetooth (4.4.4 - 4.4.4f4) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth < E9765776-3E8A-302E-A63A-784085D7862D >

    0x911fd000 - 0x912e8feb libvMisc.dylib (563.5) < 28CDB3D7-BD26-3340-9DF5-30696EED5BE3 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib

    0 x 91307000 - 0x9136bff3 com.apple.QuickLookFramework /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook < 26313827-232E-329B-968F-289FAA11A239 > (5.0 - 696.7)

    0x9136c000 - 0x9136efff com.apple.securityhi (9.0 - 55006) < F84B72EF-E3A3-3832-B163-567322F2EC4F > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI

    0x9136f000 - 0x9136ffff com.apple.quartzframework /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz < BBF8B56D-9523-351C-B4D3-9EB73B1431AB > (1, 5-21)

    0 x 91370000 - 0x917a2ffb com.apple.vision.FaceCore (3.3.1 - 3.3.1) < 82AA6556-43A3-3EF5-BE6E-2653207F4619 > /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore

    0x917a3000 - 0x917f2fff libcurl.4.dylib (90) < DAEC313D-7B9A-36B2-9514-A9AB02A0459C > /usr/lib/libcurl.4.dylib

    0x917f3000 - 0x918f7fff libJP2.dylib (1444) < DCCDDCFE-74CE-3128-B7F4-116A0EE4F3F2 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib

    0x918f8000 - com.apple.DictionaryServices (1.2 - 250, 3) < D1F29A52-AFD5-3D8E-85D8-CA14E0217AA6 > 0x91929ff7 /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices

    0x9192a000 - 0x91933fff libcopyfile.dylib (127) < 367EF1CA-F84D-3A22-B423-70961D21C241 > /usr/lib/system/libcopyfile.dylib

    0 x 91934000 - 0x91a8dff7 libBLAS.dylib (1162.2) < 4EC4D123-53BC-394C-9F4D-EFF97B3972BE > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib

    0x91a8e000 - 0x91a91ff7 com.apple.help (1.3.3 - 46) < 61D6C3D7-73E3-3586-844D-18A1A8E549A8 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/aide

    0x91b3f000 - 0x91b3ffff com.apple.CoreServices /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices < DE156E5A-E69B-35DB-AF5B-EBAD9F3B3E68 > (728.9 - 728.9)

    0x91b40000 - 0x91b4dff7 libbz2.1.0.dylib (38) < 5AF36C82-D418-3B72-9358-4890779B6DC9 > /usr/lib/libbz2.1.0.dylib

    0x91b4e000 - 0x91b59ff7 (12.0.40.6) libGPUSupport.dylib < 1118371D-AC44-3ED1-A414-77362A03349F > /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport .dylib

    0x91b5a000 - 0x91b5bfff com.apple.TrustEvaluationAgent (2.0 - 25) < 7B6357BA-B41D-34A8-84D1-B30071C3FC34 > /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent

    0x91b5c000 - 0x91bddff3 com.apple.framework.IOKit (2.0.2 - 1179.40.20) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit < 511D6534-47DD-34D6-95D3-72B2BAC38BC4 >

    0x91bde000 - 0x91be0fff libsystem_coreservices.dylib (19.2) < 360AF758-E51B-3B37-A9CF-CA6958292A11 > /usr/lib/system/libsystem_coreservices.dylib

    0x91be1000 - 0x91c48fff (335.40.8) libcorecrypto.dylib < 9A6B2740-71F5-3E1B-B43A-8F74E6A0158A > /usr/lib/system/libcorecrypto.dylib

    0x91c49000 - 0x91cadfff (728, 8-728, 8) com.apple.CoreServices.OSServices < 246D3602-1679-30D8-90C6-9857A2016C7C > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices

    0x91cae000 - 0x91eccffb libicucore. A.dylib (551.51) < 832A7F80-21D6-3633-8DF0-F0C0F0D7D489 >/usr/lib/libicucore. A.dylib

    0x91ecd000 - 0x91f3bffb (583.40.20) libsystem_network.dylib < 720C5757-0052-3F0F-BABC-176457CD97E2 > /usr/lib/system/libsystem_network.dylib

    0x91f3c000 - 0x91f85ff7 (24, 4-24, 5) com.apple.coreservices.SharedFileList < 5A7E6F6F-3B96-3055-AD1C-F4AA5AEB9938 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.fr amework/Versions/A/SharedFileList

    0x91f89000 - 0x91fddffb com.apple.audio.CoreAudio (4.3.0 - 4.3.0) < 458BE4CE-7241-3871-99D5-3188D65585B2 > /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio

    0x91fde000 - 0x925c2ffb com.apple.JavaScriptCore (11601 - 11601.5.17) /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore < F1F630EE-BF5B-3FDB-9E42-599115070B7C >

    0x925c3000 - 0x925c8fff com.apple.TCC (< 6B24E609-F406-368A-B514-CB22706DA28F > /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC 1.0 - 1.).

    0x925c9000 - 0x928ccffb com.apple.WebKit (11601 - 11601.5.17.1) /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit < CC08E14F-B03F-363F-A6BD-DC1933E59397 >

    0x928cd000 - 0x928d1fff libcache.dylib (75) < 6C2EE04E-CDB4-3362-BB06-7BD9E358C280 > /usr/lib/system/libcache.dylib

    0x928d2000 - 0x92900ff7 (12.0.40.6) GLRendererFloat < C1FF7956-C373-3FE6-8C33-AF7DA4B982E1 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLRendererFloat.bundle/G LRendererFloat

    0 x 92901000 - 0x92905ffb libGIF.dylib (1444) < 7DC81810-463C-3726-960B-D22EDE803CE6 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib

    0 x 92906000 - 0x92949fff com.apple.Metal /System/Library/Frameworks/Metal.framework/Versions/A/Metal < 08BB3E64-E11C-3E85-BEEE-A8B8D75C126B > (56, 6-56, 6)

    0x9294a000 - 0x92950fff com.apple.speech.recognition.framework (5.1.1 - 5.1.1) < 942677DD-1E01-354D-AC8E-8C42E53BDA2E > work/Versions/A/SpeechRecognition /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame

    0 x 92951000 - 0x929c7ff3 com.apple.securityfoundation (6.0 - 55126) < FEF607AF-0369-337C-A3B8-433DFDD3D24C > /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation

    0x929c8000 - 0x929fbff7 com.apple.CoreAVCHD (5.8.0 - 5800.4.2) /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD < E6120D53-CA3D-3625-8680-AE73F23B49B9 >

    0x929fc000 - 0x92a00ffb com.apple.IOSurface (108.2.1 - 108.2.1) /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface < 7343BB78-0F9D-3F8E-8699-B0CBCFAFA297 >

    0x92a01000 - 0x92a03fff (12.0.40.6) libCVMSPluginSupport.dylib < FA779155-0940-3AEF-AAFB-BD63033DC41E > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dyl ib

    0x933f8000 - 0x933fffff libMatch.1.dylib (27) < 1976DDEF-721F-3021-B586-7FE9CDA59AC7 > /usr/lib/libMatch.1.dylib

    0 x 93400000 - 0x9341dff7 libCRFSuite.dylib (34) < 5872C4CE-812E-3ABC-B78A-216A9AFD386B > /usr/lib/libCRFSuite.dylib

    0x9341e000 - 0x93422fff com.apple.CommonPanels (1.2.6 - 96) < E4AAB53E-E89B-387A-B6CE-69F5CF442C49 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels

    0 x 93423000 - 0x93423fff com.apple.Accelerate (1.10 - 1.10 accelerate) < 3172ABD9-9647-3D33-A29D-41A454FDEED9 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate

    0 x 93534000 - 0x93534fff com.apple.ApplicationServices /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices < 254BB3C1-738A-3A40-92E4-F595ED0EC7EC > (48-48)

    0x939e7000 - 0x939e8fff libremovefile.dylib (41) < 51459E88-3A13-3C6F-A203-ADF3BBC2867B > /usr/lib/system/libremovefile.dylib

    0x939e9000 - 0x939e9fff libkeymgr.dylib (28) < 1706DAE1-9175-3BB4-A4BF-431FF71D282E > /usr/lib/system/libkeymgr.dylib

    0x939ea000 - 0x93b8dff7 (12.0.40.6) libGLProgrammability.dylib < 19BA9737-10D9-3CAB-BADB-B6113BA87FCA > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib

    0x93b8e000 - 0x93be7ff3 com.apple.AE (701-701) < 60406E1C-890C-3E94-B1F2-A8C2C2360054 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE

    0x93be8000 - 0x93fafff3 com.apple.HIToolbox (2.1.1 - 807.2) < 2FE7DD51-E259-3243-9AF6-836F4BD845E6 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox

    0x93fb0000 - 0x93fc9fff (323.40.3) libsystem_asl.dylib < 79D84D35-4854-3381-8993-5D1130C12199 > /usr/lib/system/libsystem_asl.dylib

    0x93fca000 - 0x93fd7ff7 com.apple.speech.synthesis.framework (5.4.12 - 5.4.12) < 94530CC8-FDD0-3C22-86C1-FB433A144779 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis

    0x93fd8000 - 0x94001fff libRIP.A.dylib (957) < 441577DB-310A-3A49-8EF5-F92A819A81B9 > /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib

    0 x 94002000 - 0x94005fff libCoreFSCache.dylib (119.5) < E5F0DD5A-E0C7-3BD9-B80C-E798F0D075AE > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib

    0 x 94006000 - 0x945ebff3 com.apple.MediaToolbox (1.0 - 1731.15.202) /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox < 611C0DFC-3784-30E9-9EF2-61842EE68BAA >

    0x945fe000 - 0x94603ff3 com.apple.print.framework.Print (10.0 - 266) < 8D7CBAF5-41B3-314C-A5D9-B610737C0602 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print

    0 x 94604000 - 0x94604fff (600.0.44.1) libmetal_timestamp.dylib < C175193D-CC96-3617-BD2F-74D3E64E97DB > /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib

    0 x 94605000 - 0x94644ffb libGLImage.dylib (12.0.40.6) < D83081D6-DB8B-3934-A4CD-B86765342006 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib

    0 x 94645000 - 0x947cafff com.apple.UIFoundation (1.0 - 436.1) < 33461882-66FC-3130-B397-9E65469CFDBD > /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation

    0x947cb000 - 0x947e2ffb com.apple.AppContainer (4.0 - 261.40.2) /System/Library/PrivateFrameworks/AppContainer.framework/Versions/A/AppContainer < 2962C7E0-D532-391E-8D5B-C69E07EDC15B >

    0x947e3000 - 0x948d3ffb com.apple.DiskImagesFramework (10.11.3 - 417.2) < B102ADBB-1BD0-3712-A982-A85052C02BA5 > /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages

    0x948d4000 - 0x94b87ffb com.apple.security (7.0 - 57337.40.85) /System/Library/Frameworks/Security.framework/Versions/A/Security < 7C0779C6-0C38-3A42-91B2-FDEF6EBB60B8 >

    0x94b88000 - 0x94e9afef com.apple.CoreAUC (214.0.0 - 214.0.0) /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC < 46D904AD-9480-3368-BE13-2D682D656DFA >

    0x94e9b000 - 0x94eb1ff3 (1162.2) libLinearAlgebra.dylib < CAA4BD99-9399-32D7-B2BD-88FB1F32E17C > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLinearAlgebra.dylib

    0x94eb2000 - 0x94f47ffb (1082.20.4) libsystem_c.dylib < 9E202BD3-E7B7-3443-8D78-C88353AFAA76 > /usr/lib/system/libsystem_c.dylib

    0x94f48000 - 0x94f5dff3 libCGInterfaces.dylib (317.9) < 781659B7-7013-3956-9E44-A6F60410391F > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/Libraries/libCGInterfaces.dylib

    0x94f5e000 - 0x94f78ff7 liblzma.5.dylib (10) < 7DDBF3FF-5EDC-31EA-8A2C-70C6BC754953 > /usr/lib/liblzma.5.dylib

    0x94f79000 - 0x954e9fff com.apple.QuartzComposer (5.1 - 334) < 79074194-1D82-38DE-8CC7-9137E5C101C5 > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzComposer.framewor k/Versions/A/QuartzComposer

    0x954ea000 - 0x9555dffb com.apple.ApplicationServices.ATS (377-394, 3) < F8A20398-834C-3796-9D24-AD8CD568FA1F > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS

    0x9555e000 - 0x95567fff (12.0.40.6) libGFXShared.dylib < AFD15847-D36B-3B38-A323-68D5716F9CF1 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib

    0 x 95568000 - 0x955ddfff com.apple.SearchKit (1.4.0 - 1.4.0) < 2F470D76-6C21-38A8-98A7-1DF5C4964F34 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit

    0x955de000 - 0x95606fff com.apple.IconServices (68, 1-68, 1) < 0B9F8C2C-9BE9-3379-A6B9-38781C040EA2 > /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices

    0 x 95607000 - 0x95616ff7 libxar.1.dylib (302) < B5FC05C6-3E06-3E92-A8E5-C7733D659F6F > /usr/lib/libxar.1.dylib

    0 x 95617000 - 0x95658ff7 libauto.dylib (186) < 3729B54F-12F2-3802-A465-72F441AAD99E > /usr/lib/libauto.dylib

    0 x 95659000 - 0x956b0ff7 com.apple.HIServices (1.22 - 549) < 39748912-42A0-3A36-9FA6-18B4245198FA > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices

    0 x 95761000 - 0x95766ff7 libmacho.dylib (875.1) < 7B7E1EE6-19D2-3ED5-A183-04EEB663C656 > /usr/lib/system/libmacho.dylib

    0x957bc000 - 0x95a76ffb com.apple.RawCamera.bundle /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera < 1891FEC4-80BE-3396-90DC-674C7E777D69 > (6.19 - 844)

    0x95a77000 - 0x95a7afff libCoreVMClient.dylib (119.5) < 7C05B2DF-54D6-358F-9742-A7C7AA7E3475 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib

    0x95a7b000 - 0x95a92ffb (83.40.5) libsystem_coretls.dylib < 01ABCCA9-477D-3373-A003-AF459F7FA534 > /usr/lib/system/libsystem_coretls.dylib

    0x95a93000 - 0x95b5cfff com.apple.DiscRecording (9.0.1 - 9010.4.3) /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording < 50D673A1-CB0B-39F2-AC47-552B9E82DF33 >

    0x95c06000 - 0x95c42fff com.apple.RemoteViewServices (2.0 - 101) < 4B5D2D7C-3F96-361E-A762-2E01CD8F357F > /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServi CES

    0x95c43000 - 0x95ee6fff libmecabra.dylib (696.5) < 44285D47-C616-3017-8297-ED5AEEB69982 > /usr/lib/libmecabra.dylib

    0x95ee7000 - 0x95f45ffb com.apple.ImageCaptureCore /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore < 4C35DCB4-D31D-3FF9-A18F-B7E4672C0319 > (7.0 to 7.0)

    0x95f8c000 - 0x9603bfff com.apple.PDFKit (3.1 - 3.1) < 93E5AC4D-1B4C-3CD2-AD62-FE0A3A870977 > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit

    0x9603c000 - 0x96090fff com.apple.Symbolication /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication < 38E5E6CC-3551-30C0-961C-C2CD3F339DFC > (1.4 - 58044)

    0 x 96091000 - 0x960b0fff com.apple.GenerationalStorage (2.0 - 239, 1) < CE3291C3-2988-37B7-A0B1-700E1596EF0F > /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalSt storm

    0x960b1000 - 0x9610cfff com.apple.print.framework.PrintCore /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore < 135292C1-7165-3BFC-A6A9-36651006BD35 > (11, 2 - 472.2). framework/Versions/A/PrintCore

    0x9610d000 - 0x96126ffb (67.40.1) libsystem_malloc.dylib < E15CC794-45EE-3999-9D87-6F76FAA6B8A9 > /usr/lib/system/libsystem_malloc.dylib

    0 x 96127000 - 0x96166fff com.apple.NavigationServices (3.8 - 220) < 7C6C832E-137C-3557-B179-FF369F1DF4C3 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices

    0 x 96167000 - 0x96171fff (150.40.1) libsystem_notify.dylib < 2289C342-4E02-3DE8-9160-A2A4E288B2DD > /usr/lib/system/libsystem_notify.dylib

    0 x 96172000 - 0x96175fff com.apple.xpc.ServiceManagement (< 1527E003-0BCD-35A2-8DD1-00A6F7AD0700 > /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement 1.0 - 1.).

    0 x 96176000 - 0x96276ff7 libFontParser.dylib (158,5) < 3C6A3220-EF25-324E-803C-FE7DB1B0341E > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib

    0 x 96277000 - 0x9629afff libJPEG.dylib (1444) < DD0CA210-0A4A-3257-881F-0861B41F99E7 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib

    0x9629b000 - 0x962acfff com.apple.ProtocolBuffer /System/Library/PrivateFrameworks/ProtocolBuffer.framework/Versions/A/ProtocolBuffer < 10154CF8-7198-388B-95B7-44EDE0569ADC > (1-243)

    0 x 96468000 - 0x967ebffb com.apple.Foundation (6, 1258-9) < 0DE0CE4F-602C-336E-8334-A9F98C274602 > /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation

    0x967ec000 - 0x96802fe7 libcompression.dylib (28) < B7A86671-648B-35B3-9A61-5B36D074689C > /usr/lib/libcompression.dylib

    0 x 96803000 - 0x96954fef com.apple.coreui (2.1 - 366.1) < BD01FCDB-014F-3F06-B0A3-95376F97CA46 > /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI

    0 x 96955000 - 0x9695effb com.apple.CommonAuth /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth < AB518D34-4101-30D8-82D6-58CA22EA0081 > (4.0 - 2.0)

    0 x 96993000 - 0x9699afff com.apple.agl (3.3.1 - AGL - 3.3.1) < 88C1F4A5-8009-3DED-BC36-3EE4DD68D5B4 > /System/Library/Frameworks/AGL.framework/Versions/A/AGL

    0x9699b000 - 0x969a7fff com.apple.CrashReporterSupport (10.11 - 717) < 4E24941F-86D7-3205-99E0-C08F6119F7AE > /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporter Support

    0x969a8000 - 0x969b0ffb (138.10.4) libsystem_pthread.dylib < 80F0637E-42BE-3C9D-A578-01F1017C73A2 > /usr/lib/system/libsystem_pthread.dylib

    0x969b1000 - 0x969d7ff7 com.apple.quartzfilters (1.10.0 - 1.10.0) < C742B6D3-6E5E-362A-86BD-0143A79D8225 > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters.framework/Versions/A/QuartzFilters

    0x969d8000 - 0x969daffb libsystem_secinit.dylib (20) < B71D9743-87EB-3A33-BFD4-2BE8768E7FEB > /usr/lib/system/libsystem_secinit.dylib

    0x969db000 - 0x96a46ff3 libAVFAudio.dylib (161,2) < 387EFEA3-0EFE-3AB9-99A2-D99480586F2E > /System/Library/Frameworks/AVFoundation.framework/Versions/A/Resources/libAVFAudio.dylib

    0x96a47000 - 0x96a60fff com.apple.Kerberos (< 808BA537-7654-3792-86ED-770350FE5261 > /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos 3.0 - 1).

    0x96ad5000 - 0x96ae3ff3 com.apple.opengl (12.0.40 - 12.0.40) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL < 45789AB6-C77F-3D62-B1F6-2A60FC2F7D70 >

    0x96ae4000 - 0x96af1fff com.apple.HelpData (2.1.4 - 90) < 79291724-5DDE-3F4E-B13C-800965E1FF89 > /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData

    0x96af2000 - 0x96b1cfff (501.40.12) libdispatch.dylib < A94D9217-881A-355A-8DDE-F89F0EBDEE35 > /usr/lib/system/libdispatch.dylib

    0 x 97422000 - 0x97422fff libunc.dylib (29) < 43DEACB2-96D0-3EDB-99E1-A6C84344D92B > /usr/lib/system/libunc.dylib

    0 x 97423000 - 0x97454fff com.apple.CoreServicesInternal (248, 2-248, 2) < 66F9B9AC-BFEE-310E-9A2B-D9D475484580 > /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesI internal

    0 x 97455000 - 0x97711fff com.apple.CoreData (120-641, 3) < ED7656DF-E81A-3667-8952-726167ECCD10 > /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData

    0 x 97712000 - 0x97715fff libpam.2.dylib (20) < A5D72430-8F29-3E9A-AE11-087ED0CB7506 > /usr/lib/libpam.2.dylib

    0 x 97716000 - 0x97801ff7 unorm8_bgra.dylib (2.7.3) < 5F467CC1-C96F-3CE0-8B7B-7194050312F0 > /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra .dylib

    0 x 97802000 - 0x97865fff com.apple.SystemConfiguration /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration < EADE38B8-4434-338F-9B72-44C73EB9BE8C > (1.14 - 1.14)

    0x9786d000 - 0x97873fff com.apple.ImageCapture (9, 0-9, 0) < 05B279ED-AE4C-3907-B4A8-197F8669954C > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture

    0x9792f000 - 0x979d0fff (10, 9-214) com.apple.ink.framework < E296CBCD-0290-375E-8E41-C0FA839AB184 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A / ink jet

    0x979d1000 - 0x979fbfff (477.40.5) libsystem_info.dylib < 525B7BF2-67C9-3463-AD87-3F74375F1739 > /usr/lib/system/libsystem_info.dylib

    0x979fc000 - 0x97a0fff7 libcmph.dylib (6) < 7FEE63DB-D02D-3E53-9A0C-2787A49D125C > /usr/lib/libcmph.dylib

    0x97a10000 - 0x97a1afff com.apple.DisplayServicesFW /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayServices < ABFC75FF-C760-3216-AA44-83A0538F2FE3 > (3.0 - 378)

    0x97a1b000 - 0x97b51fff com.apple.WebKitLegacy (11601 - 11601.5.17.1) /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/ < E79951E4-F40C-3A31-A73A-21E725956496 > Versions/A/WebKitLegacy

    0x97b54000 - 0x97b77ffb com.apple.framework.Apple80211 /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211 < 71DDBABB-231C-3DD4-8321-7F25108399D1 > (11, 0 - 1121.34)

    0x97b78000 - 0x97b7efff com.apple.IOAccelerator (205, 3 - 205.3) < 017B0CD4-13A0-3337-AB7F-E9B53B5D8B7D > /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator

    0x97b7f000 - 0x97e11fff (2: 6-932) com.apple.imageKit < FAE96FD9-05B1-39B7-BC7F-C2F70EA610DA > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.framework/Vers ions/A/ImageKit

    0x97e12000 - 0x97e26ff7 com.apple.CoreBluetooth (< D67C0359-3AE0-3ADA-B58C-DF28C814C7CD > /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth 1.0 - 1.).

    0x97e27000 - 0x97e34fff com.apple.OpenDirectory /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory < E139C2E6-6E9E-3913-84E5-19DDB136B6A2 > (10.11 - 194)

    0x97e35000 - 0x97ea5ff3 libType1Scaler.dylib (116.1) < C1F30F49-0B31-3B5E-8697-2CB39C0C6DDB > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libType1Scaler.dylib

    0x97ea6000 - 0x97f11ff7 com.apple.framework.CoreWiFi /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi < ADA07A97-6F91-3FF0-A234-7115D6A0C402 > (11, 0 - 1101.20)

    0x97f12000 - 0x97f15fff libScreenReader.dylib (426.42) < DA3EAE1F-0AB2-3E9E-B231-167E8A238326 > /usr/lib/libScreenReader.dylib

    0x97f16000 - 0x97f19ffb libutil.dylib (43) < 761D677E-9A8E-3385-BCFD-F2CB28A6A9B6 > /usr/lib/libutil.dylib

    0 x 98112000 - 0x9812eff7 com.apple.openscripting (1.7.1 - 169.1) < 03ACCF44-6538-395C-8D8C-C0B08CD22AB7 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting

    0x9812f000 - 0x98162ff7 com.apple.GSS /System/Library/Frameworks/GSS.framework/Versions/A/GSS < 6DBB5190-91A7-35F5-BF42-55BCF73E0B3A > (4.0 - 2.0)

    0 x 98163000 - 0x98165fff (802.40.13) libsystem_configuration.dylib < 131DDA09-9D39-325F-9006-83CCCB405A1A > /usr/lib/system/libsystem_configuration.dylib

    0 x 98166000 - 0x9816cfff com.apple.MediaAccessibility /System/Library/Frameworks/MediaAccessibility.framework/Versions/A/MediaAccessibility < F01373DF-72E3-3F24-B716-CC63E649177E > (1.0 - 79)

    0x9816d000 - 0x98178ff7 libChineseTokenizer.dylib (16) < AE3E240D-C4AC-39D0-882F-4F877B182779 > /usr/lib/libChineseTokenizer.dylib

    0 x 98179000 - 0x983f7fef com.apple.QuickTime (7.7.3 - 2943.3) /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime < F6B03FD1-7B3B-3533-87EC-540C947F93AF >

    0x983f8000 - 0x98571ff7 com.apple.audio.toolbox.AudioToolbox /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox < D989AB0C-90FE-3D12-AAE7-9DD0E935E7A1 > (1.13 - 1.13)

    0 x 98576000 - 0x985beff7 libFontRegistry.dylib (155,1) < 9213A732-C555-340D-9A40-4C71B11AC990 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib

    0x985bf000 - 0x98aedfdf com.apple.vImage (8.0 - 8, 0) < AAF2ED70-2A85-3670-A962-8F46C23CF21F > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage

    0x98aee000 - 0x98ba9fff com.apple.backup.framework (1.7.4 - 1.7.4) < 764601F4-6786-3D4B-B22F-07F00247AEF5 > /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup

    0x98baa000 - 0x98c3bfff com.apple.CoreSymbolication (3.1 - 58048.1) < 96291161-FDB8-3113-AC2F-C30C5DC373AE > /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n

    0x98c3c000 - 0x98c6aff7 (33.20.2) libarchive.2.dylib < FB7EA848-C053-3016-9317-BEB146619816 > /usr/lib/libarchive.2.dylib

    0x98c6b000 - 0x99064ff7 com.apple.CoreGraphics (1.600.0 - 957) < EC86D357-F860-3D6A-B934-B2F32428B85A > /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics

    0 x 99065000 - 0x990dfffb com.apple.Heimdal /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal < 92BBE308-5D72-335E-AE5C-B96F555BA5B6 > (4.0 - 2.0)

    0x990e0000 - 0x99137fff libcups.2.dylib (435.1) < B0485E0B-E991-3877-9D4F-1E501A427AD1 > /usr/lib/libcups.2.dylib

    0 x 99138000 - 0x9918eff7 libc ++.1.dylib (120,1) < 59501F15-E2C0-30D2-9B8C-7E784D47900E > /usr/lib/libc++.1.dylib

    0x9918f000 - 0x9927dfff (59.40.2) libcrypto.0.9.8.dylib < DCAFDE7E-59DF-3293-AAA1-5001BBB37C8A > /usr/lib/libcrypto.0.9.8.dylib

    0x9927e000 - 0x99284ff3 libsystem_platform.dylib (74.40.2) < D75F4900-3DEA-3197-AABC-278596C080CE > /usr/lib/system/libsystem_platform.dylib

    0x992c7000 - 0x9935bff3 com.apple.PerformanceAnalysis (lysis of /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna < 39352E8E-B2B4-344C-82AF-3440E95C21C4 > 1.0 - 1.).

    0x9935c000 - 0x99389fff (460.40.33) libsandbox.1.dylib < D496FF3C-A553-3455-9AD2-AC6900F3BD1C > /usr/lib/libsandbox.1.dylib

    0x9938a000 - 0x993a1ff7 libmarisa.dylib (4) < B64E6872-A3B1-3C96-9372-04F39BE2C2A8 > /usr/lib/libmarisa.dylib

    0x993a2000 - 0x993a9fff com.apple.XPCService (< 96A2DAAC-5385-3755-AEF4-85A22AC4FD94 > /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService 2.0 - 1).

    0x993aa000 - 0x993b3fff (385.40.36) libsystem_networkextension.dylib < 4FB5B398-25CE-306A-BBAE-D635F3713FDB > /usr/lib/system/libsystem_networkextension.dylib

    0x993b4000 - 0x993bdfff com.apple.icloud.FindMyDevice (< E3441829-BBAC-3791-897F-C826BDE8DA18 > /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice 1.0 - 1.).

    0x993be000 - 0x993caff7 (517.20.1) libcsfde.dylib < 3A38862E-FC2E-3D8B-B4FA-BA3C54AB919A > /usr/lib/libcsfde.dylib

    0x994e3000 - 0x994fbff7 (1162.2) libSparseBLAS.dylib < A5E0E0A7-7B7A-34F9-BBB2-FD601E15D783 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libSparseBLAS.dylib

    0x994fc000 - 0x995e2ff7 unorm8_rgba.dylib (2.7.3) < 0DCEA62F-BEDF-32B4-B3A3-38806DA0C368 > /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_rgba .dylib

    0x995e3000 - 0x995faff7 com.apple.CoreMediaAuthoring (2.2 - 953) < 8FFE0E4F-E04F-3E74-86FE-12274105D7C8 > /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreMediaAuthor ing

    0x995fd000 - 0x996f1ff7 libxml2.2.dylib (29.5) < 927DBF20-D95E-30D8-BC42-787784F056E5 > /usr/lib/libxml2.2.dylib

    0x996f2000 - 0x99703fff (201.10.3) libsystem_trace.dylib < 33287B50-C54E-3960-86A0-712181F43786 > /usr/lib/system/libsystem_trace.dylib

    0 x 99704000 - 0x9971ffff com.apple.CFOpenDirectory /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory < C302E49C-4015-32BE-B7F9-87C54959B22E > (10.11 - 194). framework/Versions/A/CFOpenDirectory

    0 x 99732000 - 0x99742ff7 com.apple.LangAnalysis (1.7.0 - 1.7.0) < ED219AAC-30C6-3E9C-9005-AF763F1A62CC > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis

    0 x 99743000 - 0x99744fff libSystem.B.dylib (1226.10.1) < 5AF2BAF9-D05B-3225-879A-41979537FDE3 > /usr/lib/libSystem.B.dylib

    0 x 99745000 - 0x99776ff3 libtidy. A.dylib (15,17) < 83FCEB02-B5DD-36A8-8A8B-1CC61DD7EFF8 >/usr/lib/libtidy. A.dylib

    0 x 99777000 - 0x99933fff com.apple.avfoundation (2.0 - 1046.9.11) /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation < 52B4C4AC-D165-30C4-904A-A5C943AC4F3C >

    0 x 99934000 - 0x99968fff libTrueTypeScaler.dylib (158,5) < AD549A57-755A-39BF-9AC4-0DE3722FB879 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib

    0 x 99969000 - 0x9998dfff com.apple.ProtectedCloudStorage (1.0-1) < 703617D0-1966-379F-8402-6F186B341127 > /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedClo udStorage

    0x9998e000 - 0x99996fff com.apple.NetFS /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS < 95A7A6DB-92AE-3D69-AE2E-A518C5258913 > (6.0 - 4.0)

    0x9a33d000 - 0x9a33fffb libCGXType.A.dylib (957) < CB1D066E-4B9A-379E-A2E1-DEE04008DE9F > /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib

    0x9a340000 - 0x9a431ff3 libiconv.2.dylib (44) < 4EB465C8-E736-3DBD-9F62-74B73B66A84B > /usr/lib/libiconv.2.dylib

    0x9a432000 - 0x9a6c0ff7 com.apple.CFNetwork (760.4.2 - 760.4.2) /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork < 0F05C132-57B3-31CC-81C2-C48367EE6EC0 >

    0x9a6c1000 - 0x9a6d1fff libGL.dylib (12.0.40.6) < C6CB9AE2-4B73-3398-BB2D-88BA72FC18A6 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib

    0x9a6d2000 - 0x9a6dcffb com.apple.audio.SoundManager (4.2 - 4.2) < 77418940-F003-3497-99C9-87D48917EFCB > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound

    0x9a6dd000 - 0x9a6e6fff com.apple.DiskArbitration /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration < F0C5B62E-C11D-36C5-934B-20780C469616 > (2.7 - 2.7)

    0x9a6e7000 - 0x9a897ffb (12.0.40.6) GLEngine < 8772D5C2-5C4E-38AA-B596-E1F1AB1D2A9F > /System/Library/Frameworks/OpenGL.framework/Versions/A/Resources/GLEngine.bundle/GLEngine

    0x9a898000 - 0x9a89bff3 (460.40.33) libsystem_sandbox.dylib < 6282AFD6-924C-371E-903A-778FCA2CF417 > /usr/lib/system/libsystem_sandbox.dylib

    0x9a89c000 - 0x9a90effb com.apple.framework.CoreWLAN /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN < 38771CFC-A5CD-3496-BFF1-696B88D2C975 > (11, 0 - 1101.20)

    0x9a91a000 - 0x9a91dfff libextension.dylib (78) < 91DD808E-AB53-3AFB-B7A5-4F3051285141 > /usr/lib/libextension.dylib

    0x9a91e000 - 0x9ab00fff com.apple.QuartzCore /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore < A638EE79-DF9B-340E-B0F2-0604223F6D80 > (1.11 - 410.14)

    0x9ab01000 - 0x9ac43fef libvDSP.dylib (563.5) < 1463C8CE-B11B-3B24-B456-F12CCEB1F693 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib

    0x9ac44000 - 0x9ac6efff libxslt.1.dylib (14.1) < 47450A2F-B4D1-3CA0-BA6F-E639BEF47830 > /usr/lib/libxslt.1.dylib

    0x9ac6f000 - 0x9ac97fff (765.40.36) libxpc.dylib < 061A109A-37F7-3261-81C5-C6B2EA312BC0 > /usr/lib/system/libxpc.dylib

    0x9ac98000 - 0x9aca0ff7 libcldcpuengine.dylib (2.7.3) < 9DA8B716-9DBA-3A59-AE19-F29121166AFE > /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib

    0x9aca1000 - 0x9aca5fff libheimdal - asn1.dylib (453.40.10) < 47D6EB82-186C-32C4-80D5-B3C09E126C0D > /usr/lib/libheimdal-asn1.dylib

    0x9aca6000 - 0x9aedfff7 libFosl_dynamic.dylib (16.24) < 928611BD-3E71-3B63-A349-804A7341AC6A > /usr/lib/libFosl_dynamic.dylib

    0x9aee0000 - 0x9aeeeff7 libz.1.dylib (61.20.1) < 34A8BA7F-AA56-322E-AC39-ADF8DDE53FF1 > /usr/lib/libz.1.dylib

    0x9aeef000 - 0x9af96fff com.apple.Metadata (10.7.0 - 972.29.1) < FD776861-490D-3B5A-9F74-175401120F6F > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/metadata

    0x9af97000 - 0x9b035fff com.apple.ColorSync (4.9.0 - 4.9.0) < CAACC374-A1D8-30B7-B0DC-B8E62078CB56 > System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync

    0x9b036000 - 0x9b092ff7 libTIFF.dylib (1444) < 5692ACF1-D524-3C14-91C3-58E7F19C1114 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib

    0x9b0e4000 - 0x9b0edff3 com.apple.AppleSRP (< 75BDCAE5-82C9-38AC-885D-741CF175A803 > /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP 5.0 - 1).

    0x9b0ee000 - 0x9b0f9fff com.apple.AppSandbox (4.0 - 261.40.2) /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox < D386BF4F-393C-38AE-9CB2-6A811D9E3E69 >

    0x9b0fa000 - 0x9b0fafff com.apple.Accelerate.vecLib (vecLib - 3.10 3.10) < 8478BFDC-E0E9-33CB-B782-E5225BAF8D93 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib

    0x9b0fb000 - 0x9b100ffb libcompiler_rt.dylib (62) < 827EBCF1-DDE3-3290-98AC-D194AF897099 > /usr/lib/system/libcompiler_rt.dylib

    0x9b101000 - 0x9b4bcfff com.apple.VideoToolbox (1.0 - 1731.15.202) /System/Library/Frameworks/VideoToolbox.framework/Versions/A/VideoToolbox < 4EE902F6-B40B-375D-9564-FAA4A788F19D >

    0x9b4bd000 - 0x9b7b8ff3 com.apple.CoreServices.CarbonCore (1136.2 - 1136.2) < 32914376-923F-3046-AD96-E5F56521E5AD > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore

    0x9b7b9000 - 0x9b819ff7 com.apple.AppleVAFramework (5.0.32 - 5.0.32) < ACE9BEE8-EEF3-3849-BD3F-20641598B9D5 > /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA

    0x9b81a000 - 0x9bcaefff com.apple.CoreFoundation /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation < F1736DB1-DD1F-3EC2-866C-39C7BA2181FD > (6: 9 - 1258.1)

    0x9bcaf000 - 0x9bdd5ff3 com.apple.CoreText /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText < DFA79764-7B23-3AC1-9332-D887F58AAE2C > (352.0 - 494.11)

    0x9bdd6000 - 0x9c1311eb libobjc. A.dylib (680) < 9B9B39CC-CC3A-3E91-AAE7-961E8A6E1804 >/usr/lib/libobjc. A.dylib

    0x9c132000 - 0x9c1dafff (517.20.1) libCoreStorage.dylib < 72BE7F79-DC35-30B7-AFD0-418EEE83B980 > /usr/lib/libCoreStorage.dylib

    0x9c1db000 - 0x9c350ff7 com.apple.QTKit (7.7.3 - 2943.3) /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit < 0FF9D94F-BF90-3510-B9DC-2B264996FEA6 >

    0x9c35d000 - 0x9c3e9ff3 com.apple.CorePDF /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF < 4B09DF58-C995-3211-8907-EB2F7909F1C1 > (4.0 - 4)

    0x9c3ea000 - 0x9c3eafff libOpenScriptingUtil.dylib (169,1) < 5D59F70A-DDED-3DA8-8345-1414922047CD > /usr/lib/libOpenScriptingUtil.dylib

    0x9c3eb000 - 0x9d4befff com.apple.WebCore (11601 - 11601.5.17) < 9C3A3401-618B-35B2-BE30-D998EFA7E270 > /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versi ons/A/WebCore

    0x9d4bf000 - 0x9d4c1fff com.apple.loginsupport (1.0-1) < 871D1582-0EEB-3223-8BA7-5B708B78A0BB > /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.fram ework/Versions/A/loginsupport

    0x9d4c2000 - 0x9d5e8ffb libsqlite3.dylib (216,4) < 72C3FD3D-27D8-3B2F-9472-AAAA2DFC1835 > /usr/lib/libsqlite3.dylib

    0x9d5e9000 - 0x9d638fff com.apple.opencl (2.7.0 - 2.7.0) < C2564274-C841-329C-BD12-3DDA9F28FC25 > /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL

    0x9d639000 - 0x9d68cfff libstdc ++.6.dylib (104.1) < 649EF23E-4FEF-34DA-88DB-A7D4536AD3DF > /usr/lib/libstdc++.6.dylib

    0x9d68d000 - 0x9d693fff libunwind.dylib (35.3) < E1C8C75D-2CAD-37FD-BE1A-6D21E951EDEE > /usr/lib/system/libunwind.dylib

    0x9d694000 - 0x9d6b7ff3 libc ++ abi.dylib (125) < 20843323-D228-3A86-9F23-8FDC64B40211 > /usr/lib/libc++abi.dylib

    0x9d6b8000 - 0x9d6deffb com.apple.MultitouchSupport.framework (304.10.2 - 304.10.2) t /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor < A24396CF-DF52-34DB-853A-4B9C001DCAF6 >

    0x9d70d000 - 0x9d70efff libDiagnosticMessagesClient.dylib (100) < 5F2F9A2C-1A83-3D4E-8F69-1D4FD0515794 > /usr/lib/libDiagnosticMessagesClient.dylib

    0x9d70f000 - 0x9d71aff3 (60075.40.2) libcommonCrypto.dylib < BFA900E8-ECF2-3795-84F8-5B21A23F4D99 > /usr/lib/system/libcommonCrypto.dylib

    0x9d71b000 - 0x9d744ffb com.apple.shortcut /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut < 74125D10-0F3A-3685-A7DE-8743130CD2A3 > (2.16 - 93)

    0x9d79c000 - 0x9d79cfff com.apple.Cocoa /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa < 5DE99658-0C2F-3DB0-8741-B9D36FCF04D8 > (6.11 - 22)

    0x9d79e000 - 0x9d7d8fff com.apple.LDAPFramework (2.4.28 - 194,5) < 329D7189-BE6F-33FB-93A2-0315098DBE6A > /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP

    0x9d7d9000 - 0x9d7e1ffb (625.40.20) libsystem_dnssd.dylib < 16C75AA6-5434-3AC7-80ED-FC3F3AA2ED0C > /usr/lib/system/libsystem_dnssd.dylib

    0x9d7e2000 - 0x9d825fff libGLU.dylib (12.0.40.6) < F6D11693-9859-3EB9-B112-B8F64E83BC22 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib

    0x9d826000 - 0x9d84cffb libPng.dylib (1444) < 444D83B6-0AB5-3100-B584-AD2AEB4571EC > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib

    0x9d84d000 - 0x9d84fffb libRadiance.dylib (1444) < BAF24308-5BED-3AA0-98A5-A9D8667643E9 > /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib

    0x9d850000 - 0x9d8fbff7 com.apple.LanguageModeling (< 8C93D8EF-52BF-3A62-892C-5913282CB926 > /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling 1.0 - 1.).

    0x9d8fc000 - 0x9d8fefff com.apple.SecCodeWrapper (4.0 - 261.40.2) /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWrapper < 1957FCB1-C569-370B-B035-D82343C73A62 >

    0x9d8ff000 - 0x9d954ff7 com.apple.htmlrendering (77 - 1.1.4) < 5EFC54AC-7FD8-3ADA-97A8-345DD71A9D85 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering

    0x9d955000 - 0x9db8dfff com.apple.CoreImage (11.4.0 - 366.4.19) /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage < B9350ED1-0D90-34C8-805E-0660484BAC22 >

    0x9e455000 - 0x9e468fff com.apple.Sharing (442.13.6 - 442.13.6) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing < 5CAF03BA-321D-3DF1-BA14-9D728A103454 >

    0x9e469000 - 0x9e47afff libbsm.0.dylib (34) < FA298D27-CA59-3106-A3F7-33F91576FA13 > /usr/lib/libbsm.0.dylib

    0x9e47b000 - 0x9e4aefe3 libsystem_m.dylib (3105) < 621EDD29-0EBA-36BF-AE7A-4DFE6329300E > /usr/lib/system/libsystem_m.dylib

    0x9e4af000 - 0x9e4bcfff com.apple.SpeechRecognitionCore (2.2.7 - 2.2.7) < 51F1211F-E879-3BB8-80DA-9B127D8D107D > /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecogn itionCore

    0x9e4bd000 - 0x9e5d6ff7 com.apple.desktopservices (1.10.3 - 1.10.3) < B4550A91-D0BE-3F91-9AFC-E950371D1EA2 > /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv

    0x9e5d7000 - 0x9e6d5fff (728, 8-728, 8) com.apple.LaunchServices < A70040B9-D5C9-372D-88D6-D4A3154AD7FF > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices

    0x9e6d6000 - 0x9e710fff com.apple.MediaKit (16-809) < 737F2EA6-8A73-3AAD-8D82-64A8A7E57578 > /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit

    0x9e711000 - 0x9e712fff liblangid.dylib (122) < 3432A383-168D-3522-8B32-BEABE733FC8F > /usr/lib/liblangid.dylib

    0x9e713000 - 0x9e7b3ffb com.apple.QD (3.12 - 302) < 4B99C015-A518-3C0E-9512-463E79B8F444 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD

    0x9e7bc000 - 0x9e7bfff7 libdyld.dylib (360.21) < DFFFFB55-2111-39DC-8BE5-FCFF79E766DE > /usr/lib/system/libdyld.dylib

    0x9e7c0000 - 0x9e7c0fff com.apple.Carbon /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon < 25DB41AD-B46F-3FC2-8FFB-325750777CC0 > (154 to 157)

    0x9e80d000 - 0x9e82bffb libresolv.9.dylib (60) < 5AF8F512-BACE-3BD7-8D21-E0AAEBF07FF9 > /usr/lib/libresolv.9.dylib

    0x9e82c000 - 0x9e89ffff com.apple.datadetectorscore (7.0 - 460) < C46B3426-1118-3E66-A966-98AD0B08E09F > e /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCor

    0x9e8a0000 - 0x9e8a0fff com.apple.audio.units.AudioUnit /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit < 987DDC00-B385-3A15-AC1D-1AAA50D6ECBB > (1.13 - 1.13)

    0x9e8a1000 - 0x9e8adff7 (3248.40.184) libkxld.dylib < 35247CA4-52EB-3B81-A27B-E3B5EDD4B6EA > /usr/lib/system/libkxld.dylib

    0x9e8ae000 - 0x9e9a4fff com.apple.QuickLookUIFramework (5.0 - 696.7) < 33B2BB97-1632-39D7-9DF0-CD0EE7F00625 > /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.framework/V ersions/A/QuickLookUI

    0x9e9a5000 - 0x9e9a7ff3 com.apple.EFILogin /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin < CB406C7B-EA04-3703-80C4-F21658D6CFBC > (2.0 - 2)

    0x9e9a8000 - 0x9ed82ff7 libLAPACK.dylib (1162.2) < 4910B9B9-91C5-3089-BA45-20EDD6D1FD70 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib

    0xb0000000 - 0xb001afe3 + com.adobe.ahclientframework (1.7.0.56 - 1.7.0.56) < 928D8FAD-DEE7-F1D0-FE17-FA7F4E4C1E48 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient

    0xba900000 - 0xba91cfff libJapaneseConverter.dylib (68) < D9F8453C-CDA2-3FBB-8B72-0C208118491C > /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib

    0xbab00000 - 0xbab22fff libKoreanConverter.dylib (68) < F7627C0D-5846-3863-963A-69ED85F26A40 > /System/Library/CoreServices/Encodings/libKoreanConverter.dylib

    0xcdc71000 - 0xce81fff3 + com.adobe.flash.createjs (1.1.0.0 - 1.1.0) < D9B1E8C1-68E2-3A8E-91BC-7B2807F535F9 > Users/USER/Library/Application Support/Adobe/*/FLCreateJS.bundle/Contents/MacOS/FLCreateJS

    0xe9e72000 - 0xe9edbfff + MMXCore (?) < 017D2F86-6D53-9D06-95B9-FF37A897DA36 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/mmxcore.plugin/Contents/MacOS/MMXCore

    0xebfd8000 - 0xec08dfe7 + com.adobe.illustrator.plugins.PDFFormat (version in Format PDF 16.0.0 - 16.0.0) < B8F5984B-B08B-F7F8-B9B7-B45F20BABDAF >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Required/Plug-ins/PDF Format.aip/Contents/MacOS/PDFFormat

    0xf0b61000 - 0xf0c57fe3 + com.adobe.Flash.Authoring.Importer.AICS3Importer.bundle (12.0.0.481 - 12.0.0) < D91C7C37-C022-A10C-6FCD-A0D9127E5BB1 > /Applications/Adobe/*/AICS3Importer.bundle/Contents/MacOS/AICS3Importer

    0xf0d18000 - 0xf0f90ff3 + com.adobe.illustrator.plugins.MXGFileFormat (MXGFileFormat version 16.0.0 - 16.0.0) < DF9A6973-27C4-F84E-9330-81B8B1B1A576 >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Formats/FXGFileFormat.aip/Contents/MacOS/MXGFileFormat

    0xf10bf000 - 0xf122fff7 + com.adobe.illustrator.plugins.3DLib (3D version 16.0.0 - 16.0.0) < 197F8800-06BB-D9B7-07E7-D79B69C4D23B >/applications/Adobe / * / Adobe Flash CS6.app/Contents/Frameworks/AILib.framework/Illustrator/Additional/Plug-ins/Illustrator Filters/3DLib.aip/Contents/MacOS/3DLib

    0xf132f000 - 0xf16e9ff7 com.apple.driver.AppleIntelHD3000GraphicsGLDriver (10.0.40 - 10.0.0) < 9A29D835-A2DE-34D2-A33B-CB83A00BED81 > /System/Library/Extensions/AppleIntelHD3000GraphicsGLDriver.bundle/Contents/MacOS/AppleIn telHD3000GraphicsGLDriver

    0xf2000000 - 0xf25f5fff + com.adobe.Flash.Authoring.Importer.PSDImporter.bundle (12.0.0.481 - 12.0.0) < B7E48EC5-C825-A923-D7A6-120858673E12 > /Applications/Adobe/*/PhotoshopReader.bundle/Contents/MacOS/PhotoshopReader

    Summary of the external change:

    Calls made by other processes for this process:

    task_for_pid: 6

    thread_create: 0

    thread_set_state: 0

    Calls made by this process:

    task_for_pid: 0

    thread_create: 0

    thread_set_state: 0

    Calls made by all processes on this machine:

    task_for_pid: 564

    thread_create: 0

    thread_set_state: 0

    Summary region VM:

    ReadOnly part of libraries: Total = 502.0 M resident = 0 K (0%) swapped_out_or_unallocated=502.0M(100%)

    Regions in writing: Total = 868. 3 m written = 0 K (0%) resident = 0 K (0%) swapped_out = 0 K (0%) unallocated=868.3M(100%)

    VIRTUAL REGION

    The NUMBER of DIMENSIONS of TYPE REGION (not melted)

    ===========                     =======  =======

    ATS (font support) 42.7 M 66

    ATS (font support) (reserved) 40K 11 address VM reserved (unallocated) space

    1. Accelerate.Framework 256K 3

    2048K 2 follow-up activity

    CG backup stores 17.0 M 17

    CG image 532 K 11

    CG shared images 848K 21

    CoreAnimation 28K 8

    CoreUI 1272 K 15 image data

    CoreUI image 192K 3 file

    Image of IO 8K 3

    Java 225.2 M 8

    9908 K 4 reserved (reserved) Java VM address space (not assigned)

    Kernel Alloc once 4 K 2

    MALLOC 479,2 M 153

    Flyleaf MALLOC 64 K 12

    Message from Mach 8K 2

    Tag memory 240 37.6 M 167

    Tag memory 242 12K 2

    249 156 K 3 memory tag

    OpenCL                               8K        2

    Corpse process Info 2048 K 2

    The stack of 34.5 M 37

    Battery guard 56.3 M 49

    VM_ALLOCATE 11.2 M 374

    __DATA 21.0 M 434

    2588 K 2 __GLSLBUILTINS

    __IMAGE 528K 2

    __IMPORT 32K 7

    __LINKEDIT 120,0 M 146

    __OBJC 4108 143 K

    __TEXT 382,0 400 M

    __UNICODE 552K 2

    mapped file 2.3 G 767

    16.3 shared memory M 9

    ===========                     =======  =======

    TOTAL 3.7 G 2854

    In TOTAL, less reserved VM space 3.7 G 2854

    Model: MacBookPro8, 1, MBP81.0047.B2C of BootROM, 2 processors, Intel Core i7, 2.7 GHz, 4 GB, MSC 1.68f99

    Graphics card: integrated Intel HD Graphics 3000, Intel HD Graphics 3000,

    Memory module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020

    Memory module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80CE, 0x4D34373142353737334448302D4348392020

    Airport: spairport_wireless_card_type_airport_extreme (0x14E4, 0xD6), Broadcom BCM43xx 1.0 (5.106.98.100.24)

    Bluetooth: Version 4.4.4f4 17685, 3 services, 18 aircraft, 1 incoming serial ports

    Serial ATA Device: TOSHIBA MK5065GSXF, 500,11 GB

    Serial ATA Device: OPTIARC DVD RW AD - 5970H

    USB device: USB 2.0 Bus

    USB device: FaceTime HD camera (built-in)

    USB device: Hub

    USB device: Apple keyboard / Trackpad

    USB device: Hub BRCM2070

    USB Device: USB Bluetooth host controller

    USB device: USB 2.0 Bus

    USB device: Hub

    USB Device: IR receiver

    Bus crush: MacBook Pro, Apple Inc., 22.1

    It looks not to the system requirements for Flash CS6 system requirements for Adobe animate CC

    As you note are you a client of creative cloud I recommend running the current version which is Adobe animate CC 2015. You can install it from the creative Cloud desktop application.

    HTML5, software of vector animation | Adobe CC animated (Flash Pro)

  • Always get horizontal lines on video during export to 720 x 480 AVI with "Deinterlace" turned on

    Professional Hello again fine,

    I use 6 first on a Windows 7 computer.

    I always get horizontal lines in my video during export to AVI 720 x 480, even with "Deinterlace" lit.

    I had a doubt on another thread and said robodog2 that it is interlaced with the lines of the file are not displayed when you use a selection of progressive export file...

    http://forums.Adobe.com/thread/852077

    So I found the box "Deinterlace" via "chronology of export > movie > settings > special treatment > Modify > deinterlace ', but if I have this box checked, I still have horizontal lines.

    Here are the screenshots of the same base video before importing them in at first for an effect reverse, and after I saved the resulting file 720 x 480 AVI... the final file appears with the same horizontal lines if yes or no deinterlacing is checked.

    Lines are more visible when viewing the video in Windows Media Player they appear in these screenshots below... the lines have in fact characteristics of edge in the public eye.  The lines look like an old used TV sometimes when the antenna was not getting good reception.  Also, I am saving successfully the "chronology of export > movie" path with different codecs (this is no longer a file generated from the preview, I was talking about in the previous thread on this)... so I'm sure all the parameters with this version and I get this result with three different codecs, with and without the "Deinterlace" checked... I had the same experience over and over yesterday evening while he was also working with another file.

    No one knows what is the cause?... Please see the pictures below

    Thank you

    digiday

    AVI file of front of record in first -own original 720 x 480, 30 frames per second

    720x480avi_CLEAN.jpg

    After the backup in the first 6

    Horizontal lines showing in this first 6, 720 x 480, 30 fps AVI file

    PremiereEXPORTED720x480avi_horizontalLINES.jpg

    Hi David,

    Yes, I finally solve this problem, based on a chance observation on another forum.  On another forum a guy once mentioned the setting ' NONE FRAME ' in the 'Record Options' in the dialog "Export movie" when I export my movie to an AVI file, as seen in my screen shot below.  Otherwise, I think that setting was failing to "FIRST FRAME ABOVE".

    For the most part, I was getting these terrible horizontal lines when I exported the graphic effects that I created with imported Photoshop layers in my film projects... in these kinds of exports that horizontal lines were much worse and more obvious that if I was just export a project with the actual video that I had imported in my project.

    But still, even with the imported video, as examples of images that I posted on this thread, even in this case I saw the horizontal lines.

    So one guy on another forum said something about "ANY FRAME" setting in my export dialog box.  It relates to something else about deinterlacing it is better for this problem as the "FIRST FRAME SUPERIOR" or "FIRST FRAME BELOW" settings.

    As can be seen in my screenshot below, which is the setting I talk, but I was using the old 6 first of 1999all about, and options in the new versions of first export dialog are different.  The guy on the other forum that mentions that setting, that eventually solved my problem, said that the adjustment did not differ in a newer version of first he used, but I found this setting in my dialog "Export movie" , and that solved the problem.

    It was so simple and I went by so many things to try to solve it, including my files running through other apps to try to pre empt the problem and none of it worked... He just turns out to be THAT simple adjustment "ANY FIELD" and that solved the whole problem.

    First 6 and some newer versions of first, seem to have other problems, such as the creation of an oblong shape, rotation image from a round graph-shaped eggs after importation and applying an effect of rotation, but otherwise, once I realized that the solution of horizontal lines, I did pretty well understand many things in this former first and I got pretty good results.

    Viel Glück!

  • Flash CS4 crashes once a new file is created. ???

    For context:


    I just installed Snow Leopard on my Macbook Pro (2007 model) and so all recently installed CS4 Design Premium student Ed.

    Here's what came as a result of the accident.

    Process: Adobe Flash CS4 [2255]

    Path: / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/MacOS/Adobe Flash CS4

    ID: com.adobe.flash - 10.0

    Version: 10.0.2.566 (10.0.2)

    Code type: X 86 (native)

    Parent process: launchd [77]

    Time: 2010-05-06 15:08:31.007-0400

    OS version: Mac OS X 10.6.3 (10D575)

    Report Version: 6

    Interval since last report: 862 sec

    Crashes since last report: 3

    Per-App interval since last report: sec 77

    Per-App crashes since last report: 3

    Anonymous UUID: D0474DA1-FD3C-4711-A3C4-151C40B36AF4

    Exception type: EXC_CRASH (SIGABRT)

    Exception codes: 0 x 0000000000000000, 0 x 0000000000000000

    Crashed thread: 0 dispatch queue: com.apple.main - wire

    Request for clarification:

    Abort() called

    Thread 0 crashed: dispatch queue: com.apple.main - wire

    0 libSystem.B.dylib + 10 __kill 0x910e2132

    1 libSystem.B.dylib 0x910e2124 kill$ UNIX2003 + 32

    2 libSystem.B.dylib 0x911748e5 stimulus + 26

    3 libSystem.B.dylib + 93 demolition 0x9118a99c

    4 libstdc ++.6.dylib 0x9494afda __gnu_cxx::__verbose_terminate_handler() + 433

    5 libstdc ++.6.dylib 0x9494917a __cxxabiv1::__terminate (void (*) ()) + 10

    6 libstdc ++.6.dylib 0x949491ba __cxxabiv1::__unexpected (void (*) ()) + 0

    7 libstdc ++.6.dylib 0x949492b8 __gxx_exception_cleanup (_Unwind_Reason_Code, _Unwind_Exception *) + 0

    10.0 - com.adobe.flash 8 0x0068256b 0x1000 + 6821227

    10.0 - com.adobe.flash 9 0x00cf93c4 0x1000 + 13599684

    com.Adobe.Flash - 10 10.0 0x007c6519 0x1000 + 8148249

    11 com.adobe.flash - 10, 0 0x007c696f 0x1000 + 8149359

    12 com.adobe.flash - 10, 0 0x007c6f32 0x1000 + 8150834

    13 com.adobe.flash - 10, 0 0x007c7031 0x1000 + 8151089

    14 com.adobe.flash - 10, 0 0x007c2e75 0x1000 + 8134261

    15 com.adobe.flash - 10, 0 0x007c33b8 0x1000 + 8135608

    16 com.apple.HIToolbox 0x992403ac IdleTimerVector + 62

    17 com.apple.CoreFoundation 0x949e176b __CFRunLoopRun + 8059

    18 com.apple.CoreFoundation 0x949df0f4 CFRunLoopRunSpecific + 452

    19 com.apple.CoreFoundation 0x949def21 CFRunLoopRunInMode + 97

    20 com.apple.HIToolbox 0x991ec0fc RunCurrentEventLoopInMode + 392

    21 com.apple.HIToolbox 0x991ebeb1 ReceiveNextEventCommon + 354

    22 com.apple.HIToolbox 0x993741d4 _AcquireNextEvent + 54

    23 com.apple.HIToolbox 0x99369f20 RunApplicationEventLoop + 228

    24 com.adobe.flash - 10, 0 0x00993fed 0x1000 + 10039277

    25 com.adobe.flash - 10, 0 0x0089ed33 0x1000 + 9035059

    com.Adobe.Flash 26-10, 0 0x0089edde 0x1000 + 9035230

    27 com.adobe.flash - 10, 0 0 x 00003742 0x1000 + 10050

    28 com.adobe.flash - 10, 0 00003669 0 x 0 x 1000 + 9833

    Thread 1: dispatch queue: com.apple.libdispatch - Manager

    0 libSystem.B.dylib 0x910a7b42 kevent + 10

    1 libSystem.B.dylib 0x910a825c _dispatch_mgr_invoke + 215

    2 libSystem.B.dylib 0x910a7719 _dispatch_queue_invoke + 163

    3 libSystem.B.dylib 0x910a74be _dispatch_worker_thread2 + 240

    4 libSystem.B.dylib 0x910a6f41 _pthread_wqthread + 390

    5 libSystem.B.dylib + 30 start_wqthread 0x910a6d86

    Thread 2:

    0 libSystem.B.dylib 0 91081342 semaphore_wait_signal_trap + 10 x

    1 libSystem.B.dylib + 1089 _pthread_cond_wait 0x910aeeb8

    2 libSystem.B.dylib 0x910f742f pthread_cond_wait + 48

    3 com.adobe.amt.services 0x1619c552 AMTConditionLock::LockWhenCondition (int.) + 46

    4 com.adobe.amt.services 0 16197995 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 115 x

    5 com.adobe.amt.services 0x1619c5b0 AMTThread::Worker(void*) + 20

    6 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    7 libSystem.B.dylib 0x910ae89e thread_start + 34

    3 wire:

    0 libSystem.B.dylib 0x910812fa mach_msg_trap + 10

    1 libSystem.B.dylib 0x91081a67 mach_msg + 68

    2... ple. CoreServices.CarbonCore 0x94299de8 TS_exception_listener_thread + 160

    3 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    4 libSystem.B.dylib 0x910ae89e thread_start + 34

    Thread 4:

    0 libSystem.B.dylib + 10 __semwait_signal 0x910af262

    1 libSystem.B.dylib 0x910aef1e _pthread_cond_wait + 1191

    2 libSystem.B.dylib 0x910b0bb8 pthread_cond_wait$ UNIX2003 + 73

    3... ple. CoreServices.CarbonCore + 126 TSWaitOnCondition 0x94206aee

    4... ple. CoreServices.CarbonCore + 202 TSWaitOnConditionTimedRelative 0x941f243d

    5... ple. CoreServices.CarbonCore 0x941ede0f MPWaitOnQueue + 250

    6 AdobeACE 0x04b9538d 0x4b64000 + 201613

    7 AdobeACE 0x04b94d85 0x4b64000 + 200069

    8... ple. CoreServices.CarbonCore 0x941d1eb6 PrivateMPEntryPoint + 68

    9 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    10 libSystem.B.dylib 0x910ae89e thread_start + 34

    Wire 5:

    0 libSystem.B.dylib + 5 syscall 0x910b3ff9

    1 com.apple.OpenTransport 0x18c64851 CarbonSelectThreadFunc + 257

    2 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    3 libSystem.B.dylib 0x910ae89e thread_start + 34

    Line 6:

    0 libSystem.B.dylib + 10 __semwait_signal 0x910af262

    1 libSystem.B.dylib 0x910aef1e _pthread_cond_wait + 1191

    2 libSystem.B.dylib 0x910b0bb8 pthread_cond_wait$ UNIX2003 + 73

    3 com.apple.OpenTransport 0x18c60d73 CarbonOperationThreadFunc + 203

    4 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    5 libSystem.B.dylib 0x910ae89e thread_start + 34

    Wire 7: Java: Exception Handler Thread

    0 libSystem.B.dylib 0x910812fa mach_msg_trap + 10

    1 libSystem.B.dylib 0x91081a67 mach_msg + 68

    2 libSystem.B.dylib 0x910ed048 mach_msg_server + 520

    3 libclient.dylib 0x1d9e2e25 JNI_CreateJavaVM_Impl + 61045

    4 libclient.dylib 0x1d9e2dca JNI_CreateJavaVM_Impl + 60954

    5 libclient.dylib 0x1d9e133b JNI_CreateJavaVM_Impl + 54155

    6 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    7 libSystem.B.dylib 0x910ae89e thread_start + 34

    Thread 8: Java: worker Gang #0 (parallel Threads of GC)

    0 libSystem.B.dylib 0x910812fa mach_msg_trap + 10

    1 libSystem.B.dylib 0x91081a67 mach_msg + 68

    2 libclient.dylib 0x1d9e1f23 JNI_CreateJavaVM_Impl + 57203

    3 libclient.dylib 0x1d9e1dab JNI_CreateJavaVM_Impl + 56827

    4 libclient.dylib 0x1d9e1928 JNI_CreateJavaVM_Impl + 55672

    5 libclient.dylib 0x1d9e1588 JNI_CreateJavaVM_Impl + 54744

    6 libclient.dylib 0x1d9f7931 jio_vsnprintf + 321

    7 libclient.dylib 0x1d9f786a jio_vsnprintf + 122

    8 libclient.dylib 0x1d9e133b JNI_CreateJavaVM_Impl + 54155

    9 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    10 libSystem.B.dylib 0x910ae89e thread_start + 34

    Wire 9: Java: worker Gang #1 (parallel Threads of GC)

    0 libSystem.B.dylib 0x910812fa mach_msg_trap + 10

    1 libSystem.B.dylib 0x91081a67 mach_msg + 68

    2 libclient.dylib 0x1d9e1f23 JNI_CreateJavaVM_Impl + 57203

    3 libclient.dylib 0x1d9e1dab JNI_CreateJavaVM_Impl + 56827

    4 libclient.dylib 0x1d9e1928 JNI_CreateJavaVM_Impl + 55672

    5 libclient.dylib 0x1d9e1588 JNI_CreateJavaVM_Impl + 54744

    6 libclient.dylib 0x1d9f7931 jio_vsnprintf + 321

    7 libclient.dylib 0x1d9f786a jio_vsnprintf + 122

    8 libclient.dylib 0x1d9e133b JNI_CreateJavaVM_Impl + 54155

    9 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    10 libSystem.B.dylib 0x910ae89e thread_start + 34

    Thread 10: Java: concurrent Mark Sweep GC Thread

    0 libSystem.B.dylib 0x910812fa mach_msg_trap + 10

    1 libSystem.B.dylib 0x91081a67 mach_msg + 68

    2 libclient.dylib 0x1d9e2037 JNI_CreateJavaVM_Impl + 57479

    3 libclient.dylib 0x1d9febb0 jio_vsnprintf + 29632

    4 libclient.dylib 0x1d9e19b7 JNI_CreateJavaVM_Impl + 55815

    5 libclient.dylib 0x1d9e1588 JNI_CreateJavaVM_Impl + 54744

    6 libclient.dylib 0x1dabbb8c JVM_Available + 29852

    7 libclient.dylib 0x1d9fe992 jio_vsnprintf + 29090

    8 libclient.dylib 0x1d9e133b JNI_CreateJavaVM_Impl + 54155

    9 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    10 libSystem.B.dylib 0x910ae89e thread_start + 34

    Wire 11: Java: VM Thread

    0 libSystem.B.dylib 0x910812fa mach_msg_trap + 10

    1 libSystem.B.dylib 0x91081a67 mach_msg + 68

    2 libclient.dylib 0x1d9e2037 JNI_CreateJavaVM_Impl + 57479

    3 libclient.dylib 0x1d9febb0 jio_vsnprintf + 29632

    4 libclient.dylib 0x1d9e19b7 JNI_CreateJavaVM_Impl + 55815

    5 libclient.dylib 0x1d9e1588 JNI_CreateJavaVM_Impl + 54744

    6 libclient.dylib 0x1da76f5b JVM_Lseek + 142763

    7 libclient.dylib 0x1da76c8a JVM_Lseek + 142042

    8 libclient.dylib 0x1d9e133b JNI_CreateJavaVM_Impl + 54155

    9 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    10 libSystem.B.dylib 0x910ae89e thread_start + 34

    Wire 12: Java: reference Manager

    0 libSystem.B.dylib 0x910812fa mach_msg_trap + 10

    1 libSystem.B.dylib 0x91081a67 mach_msg + 68

    2 libclient.dylib 0x1d9e1f23 JNI_CreateJavaVM_Impl + 57203

    3 libclient.dylib 0x1d9e1dab JNI_CreateJavaVM_Impl + 56827

    4 libclient.dylib 0x1da8bc95 JVM_MonitorWait + 5461

    5 libclient.dylib 0x1da8abfe JVM_MonitorWait + 1214

    6 libclient.dylib 0x1da8a87a JVM_MonitorWait + 314

    7   ???                           0x22bd5839 0 + 582834233

    8   ???                           0x22bcddb1 0 + 582802865

    9   ???                           0x22bcddb1 0 + 582802865

    10?                           0x22bcb2d3 0 + 582791891

    11 libclient.dylib 0x1da787d0 JVM_Lseek + 149024

    12 libclient.dylib 0x1da78576 JVM_Lseek + 148422

    13 libclient.dylib 0x1da8a11b JVM_InternString + 2123

    14 libclient.dylib 0x1da89f8a JVM_InternString + 1722

    15 libclient.dylib 0x1da89d74 JVM_InternString + 1188

    16 libclient.dylib 0x1da8980f JVM_StartThread + 2175

    17 libclient.dylib 0x1d9e133b JNI_CreateJavaVM_Impl + 54155

    18 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    19 libSystem.B.dylib 0x910ae89e thread_start + 34

    Line 13: Java: finalizer

    0 libSystem.B.dylib 0x910812fa mach_msg_trap + 10

    1 libSystem.B.dylib 0x91081a67 mach_msg + 68

    2 libclient.dylib 0x1d9e1f23 JNI_CreateJavaVM_Impl + 57203

    3 libclient.dylib 0x1d9e1dab JNI_CreateJavaVM_Impl + 56827

    4 libclient.dylib 0x1da8bc95 JVM_MonitorWait + 5461

    5 libclient.dylib 0x1da8abfe JVM_MonitorWait + 1214

    6 libclient.dylib 0x1da8a87a JVM_MonitorWait + 314

    7   ???                           0x22bd5839 0 + 582834233

    8   ???                           0x22bcddb1 0 + 582802865

    9   ???                           0x22bcdf17 0 + 582803223

    10?                           0x22bcdf17 0 + 582803223

    11?                           0x22bcb2d3 0 + 582791891

    12 libclient.dylib 0x1da787d0 JVM_Lseek + 149024

    13 libclient.dylib 0x1da78576 JVM_Lseek + 148422

    14 libclient.dylib 0x1da8a11b JVM_InternString + 2123

    15 libclient.dylib 0x1da89f8a JVM_InternString + 1722

    16 libclient.dylib 0x1da89d74 JVM_InternString + 1188

    17 libclient.dylib 0x1da8980f JVM_StartThread + 2175

    18 libclient.dylib 0x1d9e133b JNI_CreateJavaVM_Impl + 54155

    19 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    20 libSystem.B.dylib 0x910ae89e thread_start + 34

    Thread 14: Java: Thread Locker (CMS) of substitution

    0 libSystem.B.dylib 0x910812fa mach_msg_trap + 10

    1 libSystem.B.dylib 0x91081a67 mach_msg + 68

    2 libclient.dylib 0x1d9e1f23 JNI_CreateJavaVM_Impl + 57203

    3 libclient.dylib 0x1d9e1dab JNI_CreateJavaVM_Impl + 56827

    4 libclient.dylib 0x1d9e1928 JNI_CreateJavaVM_Impl + 55672

    5 libclient.dylib 0x1d9e14a9 JNI_CreateJavaVM_Impl + 54521

    6 libclient.dylib 0x1daa1097 JVM_IsPrimitiveClass + 7639

    7 libclient.dylib 0x1daa0c11 JVM_IsPrimitiveClass + 6481

    8 libclient.dylib 0x1da89d74 JVM_InternString + 1188

    9 libclient.dylib 0x1da8980f JVM_StartThread + 2175

    10 libclient.dylib 0x1d9e133b JNI_CreateJavaVM_Impl + 54155

    11 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    12 libSystem.B.dylib 0x910ae89e thread_start + 34

    Thread 15: Java: Signal splitter

    0 libSystem.B.dylib 0 91081336 semaphore_wait_trap + 10 x

    1 libclient.dylib 0x1daa1b5e JVM_IsPrimitiveClass + 10398

    2 libclient.dylib 0x1daa192e JVM_IsPrimitiveClass + 9838

    3 libclient.dylib 0x1da89d74 JVM_InternString + 1188

    4 libclient.dylib 0x1da8980f JVM_StartThread + 2175

    5 libclient.dylib 0x1d9e133b JNI_CreateJavaVM_Impl + 54155

    6 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    7 libSystem.B.dylib 0x910ae89e thread_start + 34

    16 wire: Java: CompilerThread0

    0 libSystem.B.dylib 0x910812fa mach_msg_trap + 10

    1 libSystem.B.dylib 0x91081a67 mach_msg + 68

    2 libclient.dylib 0x1d9e1f23 JNI_CreateJavaVM_Impl + 57203

    3 libclient.dylib 0x1d9e1dab JNI_CreateJavaVM_Impl + 56827

    4 libclient.dylib 0x1d9e1928 JNI_CreateJavaVM_Impl + 55672

    5 libclient.dylib 0x1d9e14a9 JNI_CreateJavaVM_Impl + 54521

    6 libclient.dylib 0x1daa2ec2 JVM_IsPrimitiveClass + 15362

    7 libclient.dylib 0x1daa2c9b JVM_IsPrimitiveClass + 14811

    8 libclient.dylib 0x1da89d74 JVM_InternString + 1188

    9 libclient.dylib 0x1da8980f JVM_StartThread + 2175

    10 libclient.dylib 0x1d9e133b JNI_CreateJavaVM_Impl + 54155

    11 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    12 libSystem.B.dylib 0x910ae89e thread_start + 34

    Thread 17: Java: low memory detector

    0 libSystem.B.dylib 0x910812fa mach_msg_trap + 10

    1 libSystem.B.dylib 0x91081a67 mach_msg + 68

    2 libclient.dylib 0x1d9e1f23 JNI_CreateJavaVM_Impl + 57203

    3 libclient.dylib 0x1d9e1dab JNI_CreateJavaVM_Impl + 56827

    4 libclient.dylib 0x1d9e1928 JNI_CreateJavaVM_Impl + 55672

    5 libclient.dylib 0x1d9e1588 JNI_CreateJavaVM_Impl + 54744

    6 libclient.dylib 0x1daa6e32 JVM_IsPrimitiveClass + 31602

    7 libclient.dylib 0x1da89d74 JVM_InternString + 1188

    8 libclient.dylib 0x1da8980f JVM_StartThread + 2175

    9 libclient.dylib 0x1d9e133b JNI_CreateJavaVM_Impl + 54155

    10 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    11 libSystem.B.dylib 0x910ae89e thread_start + 34

    Wire 18: Java: VM recurring task Thread

    0 libSystem.B.dylib 0x910812fa mach_msg_trap + 10

    1 libSystem.B.dylib 0x91081a67 mach_msg + 68

    2 libclient.dylib 0x1d9e2037 JNI_CreateJavaVM_Impl + 57479

    3 libclient.dylib 0x1daa810d JVM_IsPrimitiveClass + 36429

    4 libclient.dylib 0x1daa7cb3 JVM_IsPrimitiveClass + 35315

    5 libclient.dylib 0x1d9e133b JNI_CreateJavaVM_Impl + 54155

    6 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    7 libSystem.B.dylib 0x910ae89e thread_start + 34

    Line 19:

    0 libSystem.B.dylib + 10 __workq_kernreturn 0x910a6bd2

    1 libSystem.B.dylib 0x910a7168 _pthread_wqthread + 941

    2 libSystem.B.dylib + 30 start_wqthread 0x910a6d86

    Line 20:

    0 libSystem.B.dylib + 10 mach_wait_until 0x9108140e

    1 libSystem.B.dylib 0x911088d5 nanosleep + 345

    2 com.adobe.flash.flbridge 0x18e9b3e9 ScObjects::Thread:sleep(unsigned_int) + 143

    3 com.adobe.flash.flbridge 0x18e9b449 ScObjects::Thread:wait(unsigned_int) + 23

    4 com.adobe.flash.flbridge 0x18e8c20a ScObjects::BridgeTalkThread::run() + 332

    5 com.adobe.flash.flbridge 0x18e9b70b ScObjects::Thread:go(void*) + 239

    6 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    7 libSystem.B.dylib 0x910ae89e thread_start + 34

    Line 21:

    0 libSystem.B.dylib 0x910812fa mach_msg_trap + 10

    1 libSystem.B.dylib 0x91081a67 mach_msg + 68

    2... here. Flash Player.authplaylib 0x17b48d84 ExternalPlayer_Initialize + 2117252

    3 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    4 libSystem.B.dylib 0x910ae89e thread_start + 34

    Thread 22:

    0 libSystem.B.dylib 0 91081342 semaphore_wait_signal_trap + 10 x

    1 libSystem.B.dylib + 1089 _pthread_cond_wait 0x910aeeb8

    2 libSystem.B.dylib 0x910f742f pthread_cond_wait + 48

    3... here. Flash Player.authplaylib 0x1793727f 0 x 17633000 + 3162751

    4... here. Flash Player.authplaylib 0x1795b2ff ExternalPlayer_Initialize + 95231

    5... here. Flash Player.authplaylib 0x1793772f 0 x 17633000 + 3163951

    6 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    7 libSystem.B.dylib 0x910ae89e thread_start + 34

    Line 23:

    0 libSystem.B.dylib 0 91081342 semaphore_wait_signal_trap + 10 x

    1 libSystem.B.dylib + 1089 _pthread_cond_wait 0x910aeeb8

    2 libSystem.B.dylib 0x910f742f pthread_cond_wait + 48

    3... here. Flash Player.authplaylib 0x1793727f 0 x 17633000 + 3162751

    4... here. Flash Player.authplaylib 0x1795b2ff ExternalPlayer_Initialize + 95231

    5... here. Flash Player.authplaylib 0x1793772f 0 x 17633000 + 3163951

    6 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    7 libSystem.B.dylib 0x910ae89e thread_start + 34

    Line 24:

    0 libSystem.B.dylib 0x910a0286 select$ DARWIN_EXTSN + 10

    1 com.apple.CoreFoundation 0x94a1f82d __CFSocketManager + 1085

    2 libSystem.B.dylib 0x910aea19 _pthread_start + 345

    3 libSystem.B.dylib 0x910ae89e thread_start + 34

    Line 25:

    0 libSystem.B.dylib + 10 __workq_kernreturn 0x910a6bd2

    1 libSystem.B.dylib 0x910a7168 _pthread_wqthread + 941

    2 libSystem.B.dylib + 30 start_wqthread 0x910a6d86

    Thread 0 crashed with X 86 Thread State (32-bit):

    EAX: 0 x 00000000 ebx: 0x9118a94b ecx: 0xbfffeb3c edx: 0x910e2132

    EDI: 0xa00e0b10 esi: 0x0af1f8d0 ebp: 0xbfffeb58 esp: 0xbfffeb3c

    SS: 0x0000001f efl: 0 x 00000282 eip: 0x910e2132 cs: 0 x 00000007

    DS: 0x0000001f are: 0x0000001f fs: 0 x 00000000 gs: 0 x 00000037

    CR2: 0x911748cb

    Binary images:

    0x1000 - 0x123eff0 + com.adobe.flash - 10.0 10.0.2.566 (10.0.2) < A7C69920-4EEA-48D1-9C7E-9895FBF62001 > / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/MacOS/Adobe Flash CS4

    0 x 1728000 - 0x17fafe7 + AdobeAXEDOMCore? (???) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore

    0x18ae000 - 0x193b2cb + libicucnv.dylib.36.0 36.0.0 (compatibility 36.0.0) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicucnv.dylib.36.0

    0 x 1968000 - 0x1a3723b + libicui18n.dylib.36.0 36.0.0 (compatibility 36.0.0) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/ICUInternationalization.framework/Versions/3.6/libicui18n.dyl ib.36.0

    0x1ae0000 - 0x1bb4db7 + libicuuc.dylib.36.0 36.0.0 (compatibility 36.0.0) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc.dylib.36.0

    0x1c15000 - 0x25c557f + libicudata.dylib.36.0 36.0.0 (compatibility 36.0.0) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.dylib.36.0

    0x25c8000 - 0x25d7fc3 + libChar16.dylib? (???) < B97A174D-CCAC-40FD-A8D1-2A3891CC5CDD >/Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/MacOS/libChar16.dylib

    0x25e0000 - 0x25f8fc0 + libCoreTypes.dylib? (???) < 7EEBDBBF-181B-4706-8A5D-10266B36304F >/Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/MacOS/libCoreTypes.dylib

    0x261b000 - 0x262afef + ZLib.dylib? (???) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/frameworks/ZLib.dylib

    0x262f000 - 0x2843fef com.apple.carbonframeworktemplate 1.0 (1.0) < AC98929C-640F-4C7E-8737-9928CF7B8CD4 > / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/frameworks/Xerces.framework/Versions/A/Xerces

    0x2b8c000 - 0x2b93ff7 com.apple.JavaVM 13.1.0 (13.1.0) < 85A5D22A-796A-C693-D2DA-6D8136C6596D > /System/Library/Frameworks/JavaVM.framework/Versions/A/JavaVM

    0x2b9c000 - 0x3859fdf + 338 (14.0.0) com.adobe.illustrator < D8621BED-6312-45E6-89E1-F49896F3E87E > / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AILib.framework/Versions/A/AILib

    0 4952000 - 0x49a2fff + com.adobe.illustrator.aiport AIPort version 1.0 (1.0) x < 9B4C73DE-716B-4787-BB01-E1DDDC6DEA53 > / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AIPort.framework/Versions/A/AIPort

    0x4a3b000 - 0x4a8aff3 + FilterPort? (???) < 66918FA0-9135-4C31-81DA-D4B5F8FDB798 >/Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/FilterPort.framework/Versions/A/FilterPort

    0x4b29000 - 0x4b2a027 + SPBasic? (???) < 9121C50E-FA52-4FA2-B299-AF180C3A1316 >/Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic

    0x4b2e000 - 0x4b4aff9 + AdobePDFSettings? (???) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/AdobePDFSettings

    0x4b64000 - 0x4c71fff + AdobeACE? (???) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE

    0x4c8f000 - 0x5197fff + AdobeAGM? (???) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM

    0 x 5307000 - 0x5346ff7 + AdobeARE? (???) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE

    0 x 5350000 - 0x5369fff + AdobeBIB? (???) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB

    0 x 5373000 - 0x5394ff7 + AdobeBIBUtils? (???) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils

    0x53a1000 - 0x563dfef + AdobeCoolType? (???) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType

    0x56c8000 - 0x5a92fef + AdobeMPS? (???) < 4E366E06-A4EB-4717-9639-0443743F5104 >/Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS

    0x5b21000 - 0x5c09fdf + AdobePDFPort? (???) < F54A25D1-5E7A-472E-83D1-10D187434C85 >/Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFPort

    0x5c4e000 - 0x6246fdf + AdobePDFL? (???) < D2996BF8-17D2-4801-93F7-2F227538DCD8 >/Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL

    0x638a000 - 0x63aeff6 + AdobeAXE8SharedExpat? (???) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t

    0x63c1000 - 0x63e3fed + AdobeAXE16SharedExpat? (???) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobeAXE16SharedExpat.framework/Versions/A/AdobeAXE16SharedEx pat

    0x63fe000 - 0x645efc7 + AdobeXMP? (???) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP

    0x646d000 - 0x6542fdd + FileInfo? (???) < F0932F89-FC98-4BA9-B4F2-C58D0E71D3C1 >/Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo

    0 x 6573000 - 0x6586fff + com.adobe.AdobeSFL AdobeSFL 1.1 (1.1.0.12) < 6B1D574E-0F4A-4B80-82F6-7DF7AA9C50CD > / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobeSFL.framework/Versions/A/AdobeSFL

    0x658d000 - 0x6787fef + AdobeOwl? (???) < 466BD72B-E2A5-447A-9384-B6DC9AD3AE0C >/Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl

    0 x 6802000 - 0x7534fff + com.adobe.psl AdobePSL 11.0.0.1724 (11.0.0.1724) < 6BE27A60-E0F9-4483-8E57-2A7A5227D878 > / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL

    0 x 7868000 - 0x7c4201f + com.adobe.linguistic.LinguisticManager 4.0.0 (7863) / Applications/Adobe flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic

    0x7cf6000 - 0x7cfcfff + com.adobe.AdobeCrashReporter 2.5 (2.5.02272007) / applications/Adobe Flash CS4 / Adobe Flash CS4.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter

    0x7d03000 - 0x7d1ffd7 + com.adobe.LogTransport 1.0 (1.0) / applications/Adobe Flash CS4 / Adobe Flash CS4.app/Contents/Frameworks/LogTransport.framework/Versions/A/LogTransport

    0x7d2a000 - 0x7f72fc7 + dvaui? (???) < 6B82E781-8BA9-4287-89F1-339854AC1D32 >/Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/dvaui.framework/Versions/A/dvaui

    0x825c000 - 0x83bfff4 + dvacore? (???) < 98D9BE6F-6D5E-4070-AD40-332F83CAC417 >/Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/dvacore.framework/Versions/A/dvacore

    0 x 8559000 - 0x870fff4 + com.adobe.amtlib amtlib 2.0.1.10077 (2.0.1.10077) < CB2EC3BF-6771-4DAB-BF29-6775FB6F9608 > / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib

    0 x 8746000 - 0x8775ff7 + com.adobe.headlights.LogSessionFramework? (2.0.0.06112008) / applications/Adobe Flash CS4 / Adobe Flash CS4.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession

    0x879d000 - 0x87aeffb + LogTransport2? (???) < 835B7B84-5A67-370B-AB39-8E448AA81FA0 >/Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/LogTransport2.framework/Versions/A/LogTransport2

    0x87b8000 - 0x87befff + com.adobe.pip? (1.0.0.220) < 2CA89939-DFA7-4686-8536-8A1F1107CAF1 >/Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP

    0x87c4000 - 0x8854fc3 + WRServices? (???) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices

    0x89d6000 - 0x8a39027 + com.adobe.PlugPlug 1.0.0.71 (1.0.0.71) / applications/Adobe Flash CS4 / Adobe Flash CS4.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug

    0x8a9a000 - 0x8adaff7 com.apple.vmutils 4.2 (106) < 834EA6B0-C91B-4CF1-ED3C-229C26459578 > /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils

    0x8af3000 - 0x8ba8fe7 libcrypto.0.9.7.dylib 0.9.7 (0.9.7 compatibility) < 0B69B1F5-3440-B0BF-957F-E0ADD49F13CB > /usr/lib/libcrypto.0.9.7.dylib

    0x8cce000 - 0x8ccfff7 com.apple.textencoding.unicode 2.3 (2.3) < 78A61FD5-70EE-19EA-48D4-3481C640B70D > system/library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode encodings

    0x8fac000 - 0x8fb9ff7 + com.adobe.asneu.framework stand version 1.6.2 1.6.2f01 / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/asneu.framework/Versions/A/asneu

    0x8fc7000 - 0x8fc7ff7 libmx. A.dylib 315.0.0 (compatibility 1.0.0) < 01401BF8-3FC7-19CF-ACCE-0F292BFD2F25 >/usr/lib/libmx. A.dylib

    0xa559000 - 0xa5a0fc7 + com.adobe.adobe_caps adobe_caps 2.0.99.0 (2.0.99.0) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps

    0xa701000 - 0xa702ff7 ATSHI.dylib? (???) < 64A12449-AEBF-1AF9-9E15-3788C5E874FD > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib

    0xa707000 - 0xa72afe7 GLRendererFloat? (???) Oats /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl < 65E1E174-28E0-3FA9-E391-504891B69818 >

    0xa732000 - 0xa740fe7 libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) < 3EA9C723-8FFD-7A9D-A762-4172FFEBFF13 > /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib

    0xa744000 - 0xa756ff7 libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) < ED9276C0-67D4-E86F-3AA5-953C67E044CA > /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib

    0xa7ca000 - 0xa7edff7 + CSI - Launcher.dylib? (???) / Library/Application Support/Adobe/CS4ServiceManager/CSI-Launcher.dylib

    0x1617c000 - 0x1621dfc3 + com.adobe.amt.services AMTServices 2.0.1.10077 (BuildVersion: 53.352460;) Brand: Tuesday, July 29, 2008 16:31:09) (2 0) < 31E82904-C3C2-424E-A1AE-A5EFADBB19B8 > / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservices

    0 16828000 - 0x1699bfe7 GLEngine x? (???) < F0181B85-962E-508D-4912-056D87F8E96E > /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine

    0x169cd000 - 0x16c04fff com.apple.ATIRadeonX1000GLDriver 1.6.10 (6.1.0) < F96F39A1-0262-D4EC-D415-D930A0C9C59D > /System/Library/Extensions/ATIRadeonX1000GLDriver.bundle/Contents/MacOS/ATIRadeonX1000GLD River

    0x16e57000 - 0x16e80fe3 com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) < 7FFBD485-5251-776A-CC44-4470DD84112B > /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit

    0 x 17086000 - 0x17508fe3 + AdobeLM_libFNP.dylib? (???) < 02E9AC76-9CC6-4974-AF05-48E737C2CC20 >/Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/amtlib.framework/Versions/A/AdobeLM_libFNP.dylib

    0 x 17633000 - 0x17cdafef + com.macromedia.Flash Player.authplaylib 10.0.22.91 (1.0.1d333) < E1ED442D-0B91-D633-DA20-E6615B1D479B >/Applications/Adobe Flash CS4/Common/Configuration/AuthPlayLib.bundle/Contents/MacOS/AuthPlayLib

    0 x 18649000 - 0x1867afe3 + com.adobe.amt.registration AMTRegistration 2.0.1.10077 (BuildVersion: 53.352460;) Brand: Tuesday, July 29, 2008 16:31:09) (2 0) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/registration.framework/Versions/A/registration

    0x186b3000 - 0x1870fff2 + AdobeUpdater? (???) < 064CFAA4-1CAF-46E3-BEBF-04948641C927 >/Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobeUpdater.framework/Versions/A/AdobeUpdater

    0x18b34000 - 0x18b34fff + com.macromedia.Flash.flastoragelib 9.0 (9.0) < 4A09437D-BEFE-48C6-A7B5-5C094044AA9E > / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/PlugIns/FLAStorageLib.bundle/Contents/MacOS/FLAStorageLib

    0x18c5d000 - 0x18c78ff7 com.apple.OpenTransport 10.6.0 (10.6.0) < ECA6FEC6-5ECD-51BA-162F-CFC43899196A > /System/Library/PrivateFrameworks/OpenTransport.framework/OpenTransport

    0x18c89000 - 0x18ca102f + com.macromedia.Flash.FLAir 10.0.0 (10.0.0 d544) < 33151461-3D89-4331-936C-4737D11C97F1 > / Applications/Adobe Flash CS4/Common/Configuration/External Libraries/FLAir1_1.bundle/Contents/MacOS/FLAir1_1

    0x18cad000 - 0x18caffff + com.macromedia.Flash.FLfile 10.0.0.544 (10.0.0) < A983B337-B19A-4DC7-B46A-2AE8F683B3B8 > / Applications/Adobe Flash CS4/Common/Configuration/External Libraries/FLfile.bundle/Contents/MacOS/FLfile

    0x18d4c000 - 0x18d63fff + com.macromedia.Flash.FLAir 10.0.1 (10.0.1 d156) < 88E2D410-7BBD-46EC-BF99-21E2ED7BF9E9 > / Applications/Adobe Flash CS4/Common/Configuration/External Libraries/FLAir1_5.bundle/Contents/MacOS/FLAir1_5

    0x18e6b000 - 0x18eaffe3 + com.adobe.flash.flbridge 10.0.0.544 (10.0.0) < E556D6D9-DA9B-435F-93D5-D10A357EC120 > / Applications/Adobe Flash CS4/Common/Configuration/External Libraries/FLBridge.bundle/Contents/MacOS/FLBridge

    0 19189000 - 0x19191ff7 libverify.dylib 1.0 (1.0) x < 00630CF2-4857-03BA-019F-598D067BAB3D > /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries/libverify.dylib

    0x1943a000 - 0x19441ff7 JavaNativeFoundation? (???) < DA02AAD8-C8A7-4DE3-23F1-399CBDDA9BCC > /System/Library/Frameworks/JavaVM.framework/Versions/A/Frameworks/JavaNativeFoundation.fr amework/Versions/A/JavaNativeFoundation

    0x1955e000 - 0x19573ff7 + com.yourcompany.PointGrid? (1.0) / applications/Adobe Flash CS4 / Common / Configuration / External Libraries/PointGrid.bundle/Contents/MacOS/PointGrid

    0 19585000 - 0x195a2ff7 libjava.jnilib x? (???) < EDC6DF5F-2474-7A0A-5838-530F15AD66A2 > /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries/libjava.jnilib

    0x195b4000 - 0x195c0ff7 libzip.jnilib? (???) < BD87E225-CD7E-037B-D3D5-2CEFE4638D8E > /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries/libzip.jnilib

    0x19b01000 - 0x19b64feb + com.yourcompany.Brush? (1.0) / applications/Adobe Flash CS4 / Common / Configuration / External Libraries/Brush.bundle/Contents/MacOS/Brush

    0x1a600000 - 0x1a67cff7 + com.yourcompany.Collision? (1.0) / applications/Adobe Flash CS4 / Common / Configuration / External Libraries/Collision.bundle/Contents/MacOS/Collision

    0x1b000000 - 0x1b0cffcb com.apple.carbonbundletemplate 1.0 (1.0) / Applications/Adobe Flash CS4/Common/Configuration/External Libraries/FlashIK.bundle/Contents/MacOS/FlashIK

    0x1d9d3000 - 0x1ddc9fe7 libclient.dylib? (???) < B9399A72-13F0-8847-EF75-26D8E8EA5D1A > /System/Library/Frameworks/JavaVM.framework/Versions/1.6.0/Libraries/libclient.dylib

    0x40000000 - 0x400ae030 + AdobeJP2K? (???) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K

    0x8fe00000 - 0x8fe4162b dyld 132.1 (?) < 5C229EB2-F7CA-A638-41B6-5755DE940108 >/usr/lib/dyld

    0 90042000 - 0x9005dff7 libPng.dylib x? (???) < 929FE8EE-277D-F6EB-D672-E6F4CEBF1504 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib

    0x9005e000 - 0x9005eff7 com.apple.Cocoa 6.6 (?) < EA27B428-5904-B00B-397A-185588698BCC > /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa

    0x900a0000 - 0x900a5ff7 com.apple.OpenDirectory 10.6 (10.6) < 92582807-E8F3-3DD9-EB42-4195CFB754A1 > /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory

    0x900a6000 - 0x900b8ff7 com.apple.MultitouchSupport.framework 204.12.1 (204.12.1) < 6BB58E90-21FA-C491-F0E4-54B69CCDBBC0 > /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t

    0x9021a000 - 0x90221ff7 com.apple.agl 3.0.12 (AGL - 3.0.12) < 8B23BA89-770F-042B-26F9-3F3AA30A04FF > /System/Library/Frameworks/AGL.framework/Versions/A/AGL

    0x9022f000 - 0x90231ff7 com.apple.securityhi 4.0 (36638) < 10E75446-B0BA-3726-391E-A68356761C08 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI

    0 90232000 - 0x90263ff3 libTrueTypeScaler.dylib x? (???) < F6A32C01-CD82-54F6-218E-0406D40D1D9A > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libTrueTypeScaler.dylib

    0 x 90264000 - 0x902f6fe3 com.apple.print.framework.PrintCore 6.2 (312.5) < 7729B4D7-D661-D669-FA7E-510F93F685A6 > System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore. framework/Versions/A/PrintCore

    0 x 90308000 - 0x90af7537 com.apple.CoreGraphics 1.543.33 (?) < C57E2964-80AF-6346-6D3E-23AED9D26977 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics

    0x90af8000 - 0x90b39ff7 libRIP.A.dylib 543.33.0 (compatibility 64.0.0) < C6E50C7E-EBEE-32AF-FF07-8E325E21A838 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libRIP.A.dylib

    0x90d20000 - 0x90d8fff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) < 2FC2178F-FEF9-6E3F-3289-A6307B1A154C > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib

    0x90dbb000 - 0x9102bffb com.apple.Foundation 6.6.2 (751.21) < DA7A173A-4435-ECD6-F4AF-977D722FD2F7 > /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation

    0 x 91080000 - 0x91225feb libSystem.B.dylib 125.0.1 (compatibility 1.0.0) < 06A5336A-A6F6-4E62-F55F-4909A64631C2 > /usr/lib/libSystem.B.dylib

    0 x 91226000 - 0x9125bff7 libcups.2.dylib 2.8.0 (2.0.0 compatibility) < 458E819A-4E3F-333E-28CE-671281B318D3 > /usr/lib/libcups.2.dylib

    0 x 91264000 - 0x91b43ff7 com.apple.AppKit 6.6.5 (1038.29) < E76A05A6-27C6-DA02-0961-5C8EEDC5F0A7 > /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit

    0x91b44000 - 0x91b91feb com.apple.DirectoryService.PasswordServerFramework 6.0 (version 6.0) < 87BA2C52-8451-F0E5-DCDE-E0B9E4D40405 > /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer

    0x91bbd000 - 0x91bd1ffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) < 57DD5458-4F24-DA7D-0927-C3321A65D743 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis

    0x91bd2000 - 0x91bdfff7 com.apple.NetFS 3.2.1 (3.2.1) < 5E61A00B-FA16-9D99-A064-47BDC5BC9A2B > /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS

    0x91be0000 - 0x91bf1ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) < 7A3862F7-3730-8F6E-A5DE-8E2CCEA979EF > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis

    0x91c34000 - 0x91c5cff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) < 769EF4B2-C1AD-73D5-AAAD-1564DAEA77AF > /usr/lib/libxslt.1.dylib

    0x91c5d000 - 0x91c60fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) < 1622A54F-1A98-2CBE-B6A4-2122981A500E > /usr/lib/system/libmathCommon.A.dylib

    0x91c61000 - 0x91c62ff7 com.apple.audio.units.AudioUnit 1.6.3 (1.6.3) < 959DFFAE-A06B-7FF6-B713-B2076893EBBD > /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit

    0x91c63000 - 0x91c85fef com.apple.DirectoryService.Framework 3.6 (621.3) < 05FFDBDB-F16B-8AC0-DB42-986965FCBD95 > /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService

    0x91caa000 - 0x91cedff7 libGLU.dylib? (???) < CE02968E-930D-E63B-7B21-B87205F8B19A > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib

    0x91d0d000 - 0x92029fe7 com.apple.RawCamera.bundle 2.3.2 (516) < 9C1C6ED1-C392-6779-0D34-47E62EAF93BA > /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera

    0x9204c000 - 0x9204eff7 libRadiance.dylib? (???) < 9358E1EF-F802-B76E-8E23-2D0695787CFB > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib

    0x9204f000 - 0x920c9fef com.apple.audio.CoreAudio 3.2.2 (3.2.2) < 4EFE08C4-6F2B-D7F2-BD2B-3DFF26799B24 > /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio

    0 x 92213000 - 0x92213ff7 com.apple.vecLib 3.6 (3.6 vecLib) < 7362077A-890F-3AEF-A8AB-22247B10E106 > /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib

    0 x 92262000 - 0x9226cffb com.apple.speech.recognition.framework provision 3.11.1 (3.11.1) < EC0E69C8-A121-70E8-43CF-E6FC4C7779EC > work/Versions/A/SpeechRecognition /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame

    0x924e9000 - 0x92501ff7 com.apple.CFOpenDirectory 10.6 (10.6) < 1537FB4F-C112-5D12-1E5D-3B1002A4038F > System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory

    0 x 92502000 - 0x925b0ff3 com.apple.ink.framework 1.3.3 (107) < 57B54F6F-CE35-D546-C7EC-DBC5FDC79938 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A / ink jet

    0x925b1000 - 0x925e4ff7 com.apple.AE 496.4 (496,4) < 7F34EC47-8429-3077-8158-54F5EA908C66 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE

    0x925e5000 - 0x925e5ff7 com.apple.ApplicationServices 38 (38) < 8012B504-3D83-BFBB-DA65-065E061CFE03 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices

    0x9266b000 - 0x92aa0ff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) < 5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib

    0x92ad2000 - 0x92ad2ff7 com.apple.Carbon 150 (152) < 7C9B43FE-F6A1-3F7A-FE6E-2B607C602F14 > /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon

    0x92b95000 - 0x92bf6fe7 com.apple.CoreText 3.1.0 (?) < 1372DABE-F183-DD03-03C2-64B2464A4FD5 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f EPI/Versions/A/CoreText

    0x92bf7000 - 0x92cf8fe7 libxml2.2.dylib 10.3.0 (10.0.0 compatibility) < B4C5CD68-405D-0F1B-59CA-5193D463D0EF > /usr/lib/libxml2.2.dylib

    0x92cf9000 - 0x92d3dff3 com.apple.coreui 2 (114) < 29F8F1A4-1C96-6A0F-4CC2-9B85CF83209F > /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI

    0x92d3e000 - 0x92d48fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) < 5F494955-7290-2D91-DA94-44B590191771 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound

    0x92d49000 - 0x9357cfe7 com.apple.WebCore 6531.22 (6531.22.7) < 952A0D34-63F5-F7F7-D6E5-D0AD78002F89 > /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.framework/Versi ons/A/WebCore

    0x935b4000 - 0x935b5ff7 com.apple.TrustEvaluationAgent 1.1 (1) < FEB55E8C-38A4-CFE9-A737-945F39761B4C > /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent

    0x935b6000 - 0x935b9ffb com.apple.help 1.3.1 (41) < 67F1F424-3983-7A2A-EC21-867BE838E90B > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/aide

    0x935ba000 - 0x935f5feb libFontRegistry.dylib? (???) < F50A60E1-3757-D007-A20D-A5504C17334C > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib

    0x935f6000 - 0x93602ff7 libkxld.dylib? (???) < 13F26BB6-C2F7-9D74-933E-09AD8B509ECD > /usr/lib/system/libkxld.dylib

    0 x 93603000 - 0x93609fff com.apple.CommonPanels 1.2.4 (91) < 2438AF5D-067B-B9FD-1248-2C9987F360BA > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels

    0 x 93617000 - 0x9362cfff com.apple.ImageCapture 6.0 (version 6.0) < 3F31833A-38A9-444E-02B7-17619CA6F2A0 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/ Versions/A/ImageCapture

    0x9362d000 - 0x93638ff7 libGL.dylib? (???) < EAD85409-9036-831B-C378-E50780305DA6 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib

    0 93652000 - 0x93656ff7 libGFXShared.dylib x? (???) < 286F466C-2856-B579-B87F-4E9A35C80263 > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib

    0 x 93657000 - 0x936effe7 edu.mit.Kerberos 6.5.9 (6.5.9) < 73EC847F-FF44-D542-2AD5-97F6C8D48F0B > /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos

    0x9375d000 - 0x9378eff7 libGLImage.dylib? (???) < AF110892-B10A-5B61-F898-21FB2BCE63BF > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib

    0x9394a000 - 0x93958fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) < 82B2C254-6F8D-7BEA-4C18-038E90CAE19B > /usr/lib/libz.1.dylib

    0x93ae3000 - 0x93aecff7 com.apple.DiskArbitration 2.3 (2.3) < E9C40767-DA6A-6CCB-8B00-2D5706753000 > /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration

    0x93aed000 - 0x93b30ff7 com.apple.NavigationServices 3.5.4 (182) < 753B8906-06C0-3AE0-3D6A-8FF5AC18ED12 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices

    0x93b31000 - 0x93b31ff7 com.apple.CoreServices 44 (44) < AC35D112-5FB9-9C8C-6189-5F5945072375 > /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices

    0x93e59000 - 0x93f12fe7 libsqlite3.dylib 9.6.0 (compatibility version 9.0.0) < 16CEF8E8-8C9A-94CD-EF5D-05477844C005 > /usr/lib/libsqlite3.dylib

    0x9416d000 - 0x941aaff7 com.apple.SystemConfiguration 1.10.2 (1.10.2) < 830FED9E-3E24-004C-35D5-2C1273F79734 > /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration

    0x941ab000 - 0x944cbfeb com.apple.CoreServices.CarbonCore 861.6 (861.6) < D3D5D9F1-01ED-DCAD-6AA9-4ABE60C7A112 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore

    0 94507000 - 0x9451bfe7 libbsm.0.dylib x? (???) < 14CB053A-7C47-96DA-E415-0906BA1B78C9 > /usr/lib/libbsm.0.dylib

    0 94723000 - 0x948feff3 libType1Scaler.dylib x? (???) < 944F686E-9CC2-03F0-A139-8F322F0AC49F > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libType1Scaler.dylib

    0x948ff000 - 0x94969fe7 libstdc ++.6.dylib 7.9.0 (compatibility 7.0.0) < 411D87F4-B7E1-44EB-F201-F8B4F9227213 > /usr/lib/libstdc++.6.dylib

    0 94991000 - 0x94991ff7 liblangid.dylib x? (???) < B99607FC-5646-32C8-2C16-AFB5EA9097C2 > /usr/lib/liblangid.dylib

    0 x 94992000 - 0x949a2ff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) < C8744EA3-0AB7-CD03-E639-C4F2B910BE5D > /usr/lib/libsasl2.2.dylib

    0x949a3000 - 0x94b1cffb com.apple.CoreFoundation 6.6.1 (550.19) < 1E97FB1E-9E42-B8EB-E463-5C75315FDA31 > /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation

    0x94b1d000 - 0x94b41ff7 libJPEG.dylib? (???) < EDA86712-F49C-760C-BE55-9B899A4A5D1B > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib

    0x94b42000 - 0x94beffe7 libobjc. A.dylib 227.0.0 (compatibility 1.0.0) < DF8E4CFA-3719-3415-0BF1-E8C5E561C3B1 >/usr/lib/libobjc. A.dylib

    0x94bf0000 - 0x94c72ffb SecurityFoundation 36840.0.0 (compatibility 1.0.0) < 7DF69AD9-002E-EFE5-9A59-141DB14043F7 > /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation

    0x94c73000 - 0x94c8ffe3 com.apple.openscripting 1.3.1 (?) < DA16DE48-59F4-C94B-EBE3-7FAF772211A2 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting

    0x94c90000 - 0x94cb6fff com.apple.DictionaryServices 1.1.1 (1.1.1) < 02709230-9B37-C743-6E27-3FCFD18211F8 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices

    0x94cea000 - 0x94d33fe7 libTIFF.dylib? (???) < E45B169E-253E-E865-1501-97777D2702F2 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib

    0x94d8b000 - 0x94d8bff7 com.apple.Accelerate.vecLib 3.6 (3.6 vecLib) < 1DEC639C-173D-F808-DE0D-4070CC6F5BC7 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib

    0x94dbf000 - 0x94eb1ff7 libcrypto.0.9.8.dylib 0.9.8 (0.9.8 compatibility) < 7482933B-4AF6-ED55-AD72-4FBD1E134958 > /usr/lib/libcrypto.0.9.8.dylib

    0 x 95062000 - 0x9535bfef com.apple.QuickTime 7.6.6 (1729) < 4C99ED7D-5A4B-E41E-602D-2D01A99168CD > /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime

    0x9536d000 - 0x95529ff3 com.apple.ImageIO.framework 3.0.2 3.0.1 < CB39B067-58B8-70DB-3E40-160604664A6D > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO

    0x9552a000 - 0x95636ff7 libGLProgrammability.dylib? (???) /System/Library/frameworks/OpenGL.Framework/versions/A/libraries/libGLProgrammability.dyl < CA0A975B-2BEE-44E7-CFA6-8105CFE6FE00 > ib

    0x9571c000 - 0x9589efe7 libicucore. A.dylib 40.0.0 (compatibility 1.0.0) < 96A45E03-2B29-83EB-0FC6-2C932E398722 >/usr/lib/libicucore. A.dylib

    0x958b4000 - 0x958f6ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) < 3F0ED200-741B-4E27-B89F-634B131F5E9E > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib

    0x9599a000 - 0x959eaff7 com.apple.framework.familycontrols 2.0.1 (2010) < 50E74916-19A5-F2FC-AB57-76F2C8DDF0A7 > /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls

    0x959eb000 - 0x95b89feb com.apple.JavaScriptCore 6531.22 (6531.22.5) < 3FB9AF5B-17DD-D4C8-C7B1-4F79B404496E > /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore

    0x95b8a000 - 0x95b8dff7 libCoreVMClient.dylib? (???) < 98CB96B1-85FE-25AF-AB19-ED061912FC3E > /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib

    0x95b8e000 - 0x95cbcfe7 com.apple.CoreData 102.1 (251) < E6A457F0-A0A3-32CD-6C69-6286E7C0F063 > /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData

    0x95cfd000 - 0x95df1ff7 libiconv.2.dylib 7.0.0 (compatibility 7.0.0) < 9EC28185-D26F-533F-90C4-FBAA13A15947 > /usr/lib/libiconv.2.dylib

    0x95df2000 - 0x95ecdfe7 com.apple.DesktopServices 1.5.5 (1.5.5) < ECEDFDF2-C40E-8DF0-F8FC-249CCA762E62 > /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv

    0x95f03000 - 0x95fa0fe3 com.apple.LaunchServices 362.1 (362,1) < 885D8567-9E40-0105-20BC-42C7FF657583 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices

    0x95fa1000 - 0x95fe5fe7 com.apple.Metadata 10.6.3 (507,8) < 53BB360A-1813-170D-827F-C1863EF15537 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/metadata

    0x9602d000 - 0x9604bff7 com.apple.CoreVideo 1.6.1 (45.4) < E0DF044D-BF31-42CE-B690-FD1FCE07E64A > /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo

    0x9604c000 - 0x9611dfe3 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) < 0A608513-31AD-D533-8386-10245FD62057 > /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib

    0x970a9000 - 0x97186ff7 com.apple.vImage 4.0 (4.0) < 64597E4B-F144-DBB3-F428-0EC3D9A1219E > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage

    0 97187000 - 0x9723dfff libFontParser.dylib x? (???) < 5935E105-1E45-886C-6420-C1CCA886C375 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib

    0 x 97254000 - 0x9731efef com.apple.CoreServices.OSServices 357 (357) < 764872C3-AE30-7F54-494D-4BA3CE4F4DFB > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices

    0x9731f000 - 0x973c8ff7 com.apple.CFNetwork 454.9.4 (454.9.4) < 2F8B5BA5-099F-6CDA-F500-4CA188BBCDBC > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk, Versions, A, CFNetwork

    0 x 97509000 - 0x9754fff7 libauto.dylib? (???) < 85670A64-3B67-8162-D441-D8E0BE15CA94 > /usr/lib/libauto.dylib

    0x975fa000 - 0x97601ff3 com.apple.print.framework.Print 6.1 (237.1) < 97AB70B6-C653-212F-CFD3-E3816D0F5C22 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print

    0 x 97602000 - 0x9772efff com.apple.audio.toolbox.AudioToolbox 1.6.3 (1.6.3) < F0D7256E-0914-8E77-E37B-9720430422AB > /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox

    0x9772f000 - 0x9778aff7 com.apple.framework.IOKit 2.0 (?) < 69E4FE93-376C-565E-650F-04FAD213AA24 > /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit

    0x97a9b000 - 0x97affffb com.apple.htmlrendering 72 (1.1.4) < 4D451A35-FAB6-1288-71F6-F24A4B6E2371 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering.framework/Versions/A/HTMLRendering

    0x97b00000 - 0x97b04ff7 IOSurface? (???) < 4B825ADA-8DBE-6BA2-1AB3-307D2C3AFCA8 > /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface

    0x97b1e000 - 0x97d80ff3 com.apple.security 6.1.1 (37594) < 1AC07F75-7E27-9662-21DA-B05DFF047B26 > /System/Library/Frameworks/Security.framework/Versions/A/Security

    0x97ddc000 - 0x97de0ff7 libGIF.dylib? (???) < 03880BA1-7A86-0F2B-617A-C66B1D05DD70 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib

    0x97de7000 - 0x97deaff7 libCGXType.A.dylib 543.33.0 (compatibility 64.0.0) < 69BE578C-A364-A150-35E3-53EE00F56F05 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCGXType.A.dylib

    0x97deb000 - 0x97e93ffb com.apple.QD 3.35 (?) < B80B64BC-958B-DA9E-50F9-D7E8333CC5A2 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD

    0x97f2e000 - 0x98012ff7 com.apple.WebKit 6531.22 (6531.22.7) < 87C81D6F-77B1-C517-93E6-5DEF214326A7 > /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit

    0x984d1000 - 0x984d1ff7 com.apple.Accelerate 1.6 (speed up 1.6) < BC501C9F-7C20-961A-B135-0A457667D03C > /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate

    0x984d2000 - 0x98839ff7 com.apple.QuartzCore 1.6.1 (227.18) < 8A65F233-4C77-BA7C-5DDA-2423F5C1B7A1 > /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore

    0x9883a000 - 0x9885bfe7 com.apple.opencl 12.1 (12.1) < 1BCA4F60-E612-5C1B-EF50-A810D70CDF05 > /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL

    0x9885c000 - 0x98867ff7 libCSync.A.dylib 543.33.0 (compatibility 64.0.0) < F914F427-98EA-98BC-923D-47274A90D441 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib

    0x988c1000 - 0x98cd7ff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) < C4FB303A-DB4D-F9E8-181C-129585E59603 > /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib

    0 x 99106000 - 0x991b6ff3 com.apple.ColorSync 4.6.3 (4.6.3) < 68B6A1B9-86CF-0C5A-7D63-56ED4BB2EB5B > System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync

    0x991b7000 - 0x994dbfef com.apple.HIToolbox 1.6.2 (?) < F5F99E78-5377-DD54-6138-9FC84467F938 > /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox

    0x994dc000 - 0x994eaff7 com.apple.opengl 1.6.7 (1.6.7) < 3C529790-DEE9-AC27-A879-806E4C23323C > /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL

    0x994fe000 - 0x9951efe7 libresolv.9.dylib 40.0.0 (compatibility 1.0.0) < 03019DD7-993D-AC88-6636-179F92F315C4 > /usr/lib/libresolv.9.dylib

    0x9951f000 - 0x995baff7 com.apple.ApplicationServices.ATS 4.2 (?) < 3BEB7210-4C85-7309-B22D-695765526524 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS

    0x995bb000 - 0x9960cff7 com.apple.HIServices 1.8.0 (?) < 10C85B88-C6AF-91DB-2546-34661BA35AC5 > /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices

    0x9960d000 - 0x9968dfeb com.apple.SearchKit 1.3.0 (1.3.0) < 9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9 > /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit

    0xb0000000 - 0xb0006ff8 com.apple.carbonframeworktemplate 1.3 (1.3.12) / Applications/Adobe Flash CS4/Adobe Flash CS4.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient

    0xba300000 - 0xba301fe7 libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) < DA0246D7-1986-4B82-554D-0201739BEBBC > /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib

    0xba500000 - 0xba501ff7 libGreekConverter.dylib 49.0.0 (compatibility 1.0.0) < 786BE718-914D-F4BD-4ED1-D49DF0EA9E10 > /System/Library/CoreServices/Encodings/libGreekConverter.dylib

    0xba900000 - 0xba916ff7 libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) < ADC10502-0CA8-BCC0-20F3-83D3C5B1036F > /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib

    0xbab00000 - 0xbab21fe7 libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) < C5AE00EA-5623-61D9-9938-A5B204B51FC1 > /System/Library/CoreServices/Encodings/libKoreanConverter.dylib

    0xbb500000 - 0xbb500ff7 libThaiConverter.dylib 49.0.0 (compatibility 1.0.0) < 3C7BC5C9-AF2D-7171-6785-047FA7E4CB03 > /System/Library/CoreServices/Encodings/libThaiConverter.dylib

    0xFFFF0000 - 0xffff1fff libSystem.B.dylib? (???) < 06A5336A-A6F6-4E62-F55F-4909A64631C2 > /usr/lib/libSystem.B.dylib

    Model: MacBookPro2, 2, MBP22.00A5.B07 of BootROM, 2 processors, Intel Core 2 Duo 2.16 GHz, 2 GB, MSC 1.12f5

    Graphics card: ATI Radeon X 1600, ATY, RadeonX1600, PCIe, 128 MB

    Memory module: global_name

    Airport: AirPort Extreme, Atheros 5416: 2.0.19.10

    Bluetooth: Version 2.3.1f4, 2 service, 2 cameras, 1 incoming serial ports

    Network service: Airport, AirPort, en1

    Serial ATA Device: FUJITSU MHW2120BH, 111,79 GB

    Parallel ATA Device: MATSHITADVD-R UJ - 857D

    USB device: Built-in ISight, 0x05ac (Apple Inc.), 0 x 8501, 0xfd400000

    USB device: Receiver IR, 0x05ac (Apple Inc.), 0 x 8240, 0x5d200000

    USB device: Bluetooth USB Host Controller, 0x05ac (Apple Inc.), 0 x 8205, 0x7d100000

    USB device: Apple keyboard / Trackpad, 0x05ac (Apple Inc.), 0x021a, 0x1d200000

    Reinstall flash. I had the problem before, but without all the gibberish.

  • Query using the PARALLEL option, even with the NO_PARALLEL trick.

    Hello

    Please see the following excerpt from the TKprof output. Even if I am specifying explicitly referring NO_PARALLEL, oracle is use of PARALLELISM. I am trying to understand what could cause this strange behavior.


    Select * / * + NO_PARALLEL * / *.
    A.COL1,
    B.COL2,
    SUM (A.AMT),
    sum (a.Total)
    Of
    A,
    b
    WHERE
    A.B_ID = 20081031 AND
    A.SS_KEY = B.SS_KEY AND
    B.LOC_ZIP_KEY = A.LOC_ZIP_KEY AND
    B.ST = 'XX'
    GROUP BY
    CLO...

    -I've changed the names of columns etc...

    Rows Row Source operation
    ------- ---------------------------------------------------
    2281 PX COORDINATOR (cr = 9 pr = 0 pw = time 0 = 73780942 en)
    0 PX SEND QC (RANDOM): TQ10003 (cr = 0 pr = 0 pw = time 0 = 0 US)
    0 HASH GROUP BY (cr = 0 pr = 0 pw = time 0 = 0 US)
    0 PX RECEIVE (pr = 0 pw = time cr = 0 0 = 0 US)
    0 PX SEND HASH: TQ10002 (cr = 0 pr = 0 pw = time 0 = 0 US)
    JOIN hash 0 (pr = 0 pw = time cr = 0 0 = 0 US)
    0 PX RECEIVE (pr = 0 pw = time cr = 0 0 = 0 US)
    0 PX SEND BROADCAST: TQ10000 (cr = 0 pr = 0 pw = time 0 = 0 US)
    0 PX BLOCK ITERATOR (cr = 0 pr = 0 pw = time 0 = 0 US)
    0 A TABLE FULL ACCESS (cr = 0 pr = 0 pw = time 0 = 0 US)
    JOIN hash 0 (pr = 0 pw = time cr = 0 0 = 0 US)
    0 PX RECEIVE (pr = 0 pw = time cr = 0 0 = 0 US)
    0 PX SEND BROADCAST: TQ10001 (cr = 0 pr = 0 pw = time 0 = 0 US)
    0 PX BLOCK ITERATOR (cr = 0 pr = 0 pw = time 0 = 0 US)
    0 TABLE ACCESS FULL B (pr = 0 pw = time cr = 0 0 = 0 US)
    0 PX ITERATOR PARTITION BLOCK: 106 106 (cr = 0 pr = 0 pw = time 0 = 0 US)
    0 TABLE ACCESS FULL PARTITION C: 106 106 (cr = 0 pr = 0 pw = time 0 = 0 US)


    Elapsed time are waiting on the following events:
    Event waited on times max wait for the Total WHEREAS
    ---------------------------------------- Waited ---------- ------------
    row cache lock 40 0.00 0.02
    library cache lock 2 0.00 0.00
    cache library pin 2 0.00 0.00
    RDBMS ipc reply 4 0.00 0.00
    ENQ: PS - contention 385 0.25 0.00
    operating system startup 258 thread 0.16 27.36
    DFS lock handle 770 27,22 0.14

    Also, can you please help with what could be causing the two expected above - (start of OS and DFS locking handle thread) - apparently, those events on which oracle is spend 90% of the time.

    Any help or pointers to help would be appreciated.

    It's on Sun Solaris with RAC with 64 CPU each.

    You use the indicator a little bit.

    http://download.Oracle.com/docs/CD/B19306_01/server.102/b14200/sql_elements006.htm#SQLRF50805

    The NO_PARALLEL indicator replaces a PARALLEL parameter in the created or modified table DDL. For example:

    SELECT / * + NO_PARALLEL (hr_emp) * / last_name
    OF hr_emp of employees;

    Check Metalink Note 267330.1 .

  • Multi-threaded error handling method

    I have a multi-threaded application.  When an error occurs in one of the wires causing the failed system, all threads will raise an error and display an error dialog box.  I think on the withdrawal of the appeal to the error handler in the secondary threads and instead send the error for the main thread to the provision.  Is this a common model?  Is there a better way to do it?

    kc64 wrote:
    I have a multi-threaded application.  When an error occurs in one of the wires causing the failed system, all threads will raise an error and display an error dialog box.  I think on the withdrawal of the appeal to the error handler in the secondary threads and instead send the error for the main thread to the provision.  Which is a common model?  Is there a better way to do it?

    Not as common as it is MUST.

    We use a logger who passes all errors to a background process that connects to produce for examination later. This is the minimum. If a fatal errors then adjust us the design of the application respond accordingly when bad things happen.

  • "evaluations thread jdi" has encountered a problem. Queue of the async thread exception handling.

    I'm trying to debug a java application on the Blackberry Pearl, using Eclipse v3.4.1. After the break on a line of code, I chose a variable in the 'Variables' tab and the following message appeared:

    "evaluations thread jdi" has encountered a problem.

    Queue of the async thread exception handling. java.lang.NullPointerException.

    java.lang.NullPointerException

    What kind of message is this, she comes from - and knowledge where I even begin to determine why this is happening. Perhaps can someone point me in the right direction.

    Thank you

    Steve

    Object that you are trying in this instance is Null.

  • Question no doubt multi-threaded

    Greetings!

    Don't know what kind of problem I face, but still very interesting.

    I have a UiApplication who starts a thread to listen to incoming SMS and respond automatically. This same class implements PhoneListener as below:

    public class SMSSenderReceiver extends Thread implements PhoneListener {
    
        private static DatagramConnection _dc;
        private static int _callIdIncoming;
        private static int _callIdAnswered;
        public static String _phoneNumber;
    
        static {
        try {
            _dc = (DatagramConnection) Connector.open("sms://");
            } catch (IOException e) {
                System.out.println(e);
            }
        }
    
        public SMSSenderReceiver() {
            super();
            _callIdIncoming = -1;
            _callIdAnswered = -1;
            Phone.addPhoneListener(this);
        }
    
        public void run() {
            try {
                for (;;) {
                    Datagram d = _dc.newDatagram(_dc.getMaximumLength());
                    _dc.receive(d);
                    String address = d.getAddress();
                    if (address.startsWith("//")) {
                        address = address.substring(2);
                    }
                    String answer = getResponseByPhone(address);
                    if (answer != null) {
                        answer.getBytes();
                        Datagram returnpacket = _dc.newDatagram(_dc
                                .getMaximumLength());
                        returnpacket.setAddress(d.getAddress());
                        returnpacket.setData(answer.getBytes(), 0, answer.length());
                        _dc.send(returnpacket);
                    }
                }
            } catch (IOException ioe) {
                System.out.println(ioe);
                Phone.removePhoneListener(this);
            }
        }
    
        private static String getResponseByPhone(final String phone) {
            TextResponses tr = TextResponses.getInstance();
            MultiMap mm = tr.getResponses();
            Enumeration valuesEnum = mm.keys();
            while (valuesEnum.hasMoreElements()) {
                String element = valuesEnum.nextElement().toString();
                if (mm.containsValue(element, phone)) {
                    return element;
                } else {
                    continue;
                }
            }
            return null;
        }
    
        //  public void missedCallSMSSender(final String address) {
        //      try {
        //          if(_callIdAnswered != _callIdIncoming){
        //              //              if (address.startsWith("//")) {
        //              //                  address = address.substring(2);
        //              //              }
        //              String answer = this.getResponseByPhone(address);
        //              if (answer != null) {
        //                  answer.getBytes();
        //                  Datagram returnpacket = _dc.newDatagram(_dc
        //                          .getMaximumLength());
        //                  returnpacket.setAddress("//" + address);
        //                  returnpacket.setData(answer.getBytes(), 0, answer
        //                          .length());
        //                  _dc.send(returnpacket);
        //              }
        //              _callIdAnswered = _callIdIncoming = -1;
        //              //_phoneCallsHash.remove("" + _callIdIncoming);
        //          }
        //      } catch (Exception e) {
        //          System.out.println(e);
        //      }
        //  }
    
        public void callIncoming(final int callId) {
            if(_callIdIncoming != callId){
                UiApplication.getUiApplication().invokeLater(new Runnable(){
                    public void run() {
                        _callIdIncoming = callId;
                        PhoneCall phoneCall = Phone.getCall( callId );
                        _phoneNumber = null;
                        try {
                            _phoneNumber = phoneCall.getDisplayPhoneNumber();
    
                            String tempNumber = null;
                            for(int i = _phoneNumber.length() -1 ;i >= 0; --i) {
                                if(Character.isDigit(_phoneNumber.charAt(i))){
                                    tempNumber = _phoneNumber.charAt(i) + ((tempNumber == null) ? "" : tempNumber) ;
                                }
                            }
                            _phoneNumber = tempNumber;
    
                            System.out.println("**bleep** Phone Number: " + _phoneNumber);
                        } catch(NullPointerException npe) {
                            _phoneNumber = "0";
                            System.out.println("NULL!!!!" + npe);
                        }
                    }
                });
            }
        }
    
        public void callAnswered(int callId) {
            _callIdAnswered = callId;
        }
    
        public void callDisconnected(int callId) {
            UiApplication.getUiApplication().invokeLater(new Runnable(){
                public void run() {
                    //System.out.println("**bleep** Phone Number: " + _phoneNumber);
                    //SMSSenderReceiver.this.missedCallSMSSender(_phoneNumber);
                    String address = _phoneNumber;
                    if(_callIdAnswered != _callIdIncoming){
                        //                  if (address.startsWith("//")) {
                        //                      address = address.substring(2);
                        //                  }
                        String answer = getResponseByPhone(address);
                        if (answer != null) {
                            answer.getBytes();
                            try {
                                Datagram returnpacket = _dc.newDatagram(_dc.getMaximumLength());
                                returnpacket.setAddress("//" + address);
                                returnpacket.setData(answer.getBytes(), 0, answer
                                        .length());
                                _dc.send(returnpacket);
                            } catch(Exception e) {
                                System.out.println(e);
                            }
                        }
                        _callIdAnswered = _callIdIncoming = -1;
                    }
                }
            });
        }
    ...
    

    The goal is to send an SMS for each missed call. Thus, on incomingCall while I get caller Id and phone number assign them static variables. If the call is answered I catch the call id also. Once the call is disconnected I just check the id of appeal responded and id entering in case they differ from each other, I got a call from miss and I send a SMS.

    The problem is once the callDisconneted is called, I don't have the value of _phoneNumber. On incomingCall I could see the number, but not after all. Why? Seems to be a fundamental basis on the multi-thread.

    Anyone know what is happening?

    Thanks in advance!

    --

    This question probably has to do with the fact that the listener to call is actually coming in your code on the phone application thread. Each application gets a copy separate from the static context. As a result, you won't see the same data when you access this variable in your own application process.

    You can probably here either: (a) send yourself a form of global event listener call, then pick up the event in your own process, or (b) use the runtime store to keep the value so that the two processes can * see * it.

  • Satellite C850 - Win 10 Update aborted - SYSTEM THREAD EXCEPTION NOT HANDLED

    Hello

    It is with C850

    Whenever I try to do the upgrade, first it works very good. Everything is downloaded and the installation begins. At the end until he has achieved success, I become this appear. It restart Ant try again, but I got the same screen, it restarts and work on the recovery of win 7, afterthat I have win 7 recovered and can reuse my pc. But I used to win 10. Why is this happening?

    How can I solve this problem?

    I searched and tried to fix it, but did not find anything on this subject.

    The text is in German. The bing translation is:
    There was a problem on the pc. It must be restarted. some errors were collected, and then restart the computer to run.

    (20% complete)
    If you want more information, you can search for this error later online: SYSTEM_THREAD_EXCEPTION_NOT_HANDLED (ndis.sys)

    The ndis.sys file is mentioned in your message.

    NDIS Network Driver Interface Specification

    For upgrade problems could be caused by the software / driver installed on your laptop.
    I guess that the question could be related to driver WLan or LAN driver...

    Maybe you need to uninstall one of the drivers before you start the upgrade to win 10.

  • [ADF, JDev12.1.3] When you use create/restoreSavepoint... Restore operation is still useful? And other doubts...

    Hallo,

    Dario and Timo advised me (in this thread Re: [ADF, JDev12.1.3] Master w/playback af:form only af:tables detail: how to handle insert and edit through forms?) I make a request using the functions create/restoreSavpoint to this fragment in my application.

    The tables are read-only, and the user can insert and modify records by a form of popup.

    Each table has its own pop-up that I created using a btf executed as diaolog (*).

    Before I open the popup, I create the backup point.

    BindingContext bctx = BindingContext.getCurrent();  
    DCDataControl dcDataControl = bctx.getDefaultDataControl();  
    String sph = (String) dcDataControl.createSavepoint();  
    AdfFacesContext.getCurrentInstance().getPageFlowScope().put("AdfmSavePoint", sph); 
    

    When the popup is closed, I restore the backup point if the Cancel button was clicked...

    Object confirmOrCancel = returnEvent.getReturnValue();  
    if (((String) confirmOrCancel).equals("cancel")) {  
      String sph = (String) AdfFacesContext.getCurrentInstance().getPageFlowScope().get("AdfmSavePoint");  
      BindingContext bctx = BindingContext.getCurrent();  
      DCDataControl dcDataControl = bctx.getDefaultDataControl();  
      dcDataControl.restoreSavepoint(sph);  
    } 
    

    I have these doubts:

    1. the button "CANCEL ALL" (so far) AM restore operation is still meaningful (is always useful) when you use the check points? Or can I avoid using the restore of the AM operation, creating a backup point before you enter the fragment and restore it if the user clicks on "RESTORE ALL"?
    2. for all tables: before opening the popup insert/change the backup point is implemented pageFlowScope under the same key 'AdfmSavePoint '. Is it OK or would it be better to use a different key for each table (for example 'AdfmSavePointTable1', 'AdfmSavePointTable2',...)?
    3. If the pageFlowScope already contains a checkpoint under the "AdfmSavePoint" key... What does if I give the floor to new .put ("AdfmSavePoint", sph)? Can I be sure that the old value is overwritten?
    4. is this safe with nested savepoint? For example in my case I want to create a backup before the fragment in the image point is displayed (and restore if the user leaves the fragment by clicking "RESTORE ALL"), then within the fragment, as I said above, I would manage other points of record when inserting/editing tables.
    5. I noticed that clicking on the button "RESTORE ALL" when it relates to the AM-restore operation causes this strange thing: when before displaying the fragment I call SetCurrentRowWithKey on the master istance VO... If I click on "ROLLBACK ALL" posted master VO Records changes and 1 minutes of the main of the VO table is displayed. Why the master istance VO is not reimain in the folder I've previously selected by SetCurrentRowWithKey?
    6. With reference to the expression (*) above. The BTF 'dialogue' I created contains only the page jspx with shape and a return to activity. I also tried a) create (and restore) the backup point, b) to call createInsert inside the "dialog box" operation BTF (see images below), but the createInsert on retail VO istance called inside the 'dialogue' BTF seems not to reflect on the table as when I call createInsert by calling btf. I have to make some adjustments in the 'dialogue' of BTF?

    Thank you

    Federico

    Federico,

    (1) Yes, what should happen if a user add or edit vo1 and click ok in the dialog box but decided that ask to work must be restored?

    (2) as long as you don't have that a dialog box is open, it should work.

    (3) the flowrate range of page is a map. You can put the same key more than once. If the key already exists, the value is replaced.

    (4) in fact, I don't know, but the sounds of complicated design. I guess you can record more points, but only in the order of creation. It's as if you try to rebuild the framework. BTF yo it even for you, when worn right. Please go to ADF Architecture Square and read and watch it task flow of related things.

    (5) this behavior is as expected. A restore resets all the iterators so thagetto point at the top of he. http://www.Oracle.com/technetwork/Developer-Tools/ADF/learnmore/OCT2010-OTN-Harvest-183714.pdf 'keep the line after cancellation' shows how to handle this situation.

    (6) I suppose have you refresh the table iterator, once you close the dialog box for the new data. But that's only a guess because it depends on how the btf share control of data and the your involved.

    Timo

Maybe you are looking for

  • Re: DVD drive hardware error - what is gravity?

    Hello I have a Toshiba Satellite Pro A300-1PK, and even if I took good care of her, the DVD player seems to be broken.Move the head with the drive laser top correctly, but the DVD does not seem to turn. The DVD player is to be entirely changed, so pr

  • using slots chassis for general use cRIO

    Hello I have cRIO-9004 and cRIO-9103 Chassis, labview 2011... AFAIK, the cRIO chassis controls its slots if it present any module or not... If someone detect read EEPROM and so on... But how can I control the slots on the frame cRIO for my own genera

  • French speech recognition on Windows ITO?

    Hi all I developed a Windows 10 as a CEP application. This application uses speech recognition to the french language. Now, I would like to use this app with my raspberries FT2 and Windows ITO. But in fact, the speech recognition on Windows ITO only

  • Loop of reboot upgrade Vista to stage 3 of 3

    Hello. Problems after upgrade to Windows Vista (Ultimate). He stops at the step 3 of 3, 75%, then restarts over and over again. I tried to restart in integrated security mode and I tried to restart in the last known configuration that worked - nothin

  • 881 failure: The Application author does not match debug author token

    Hey guys, I'm a newbie at software development and don't know anything about the other languages except HTML and CSS so I decided to try the apps program to see how it works and if it's the right think for me. I received my 'key' for the playbook and