Anyone having or had a problem with kernel_task running uploads in back ground and can't figure out what its doing

My iMac is running kernel_task and using a lot of upload bandwidth. I talked to isp this morning he said that I was topping out on the upload side while download was normal. He also said that it started about 3 weeks ago but I've been looking and trying to remember what I did as far as installing or changing setting and I can't figure it out, also using a magicjack on computer but tried without it and still the same and its hard to use the phone when other party only gets every other 4 or 5 words. HELP PLEASE!! driving me crazy.

You have something that is uploading data from your network, so you may have a runaway application doing this. If you quit all your running applications does the problem still exist? If so then you may have a corrupted system process.
Open Activity Monitor in the Utilities folder.  Select All Processes from the Processes dropdown menu.  Click twice on the CPU% column header to display in descending order.  If you find a process using a large amount of CPU time (>=70,) then select the process and click on the Quit icon in the toolbar.  Click on the Force Quit button to kill the process.  See if that helps.  Be sure to note the name of the runaway process so you can track down the cause of the problem.
Create a new user account with admin status, then log out of your account and log into the new account. Does the problem still exist?
Also, try basic repairs:
Repair the Hard Drive and Permissions - Lion/Mountain Lion
Boot to the Recovery HD:
Restart the computer and after the chime press and hold down the COMMAND and R keys until the menu screen appears. Alternatively, restart the computer and after the chime press and hold down the OPTION key until the boot manager screen appears. Select the Recovery HD and click on the downward pointing arrow button.
Repair
When the recovery menu appears select Disk Utility. After DU loads select your hard drive entry (mfgr.'s ID and drive size) from the the left side list.  In the DU status area you will see an entry for the S.M.A.R.T. status of the hard drive.  If it does not say "Verified" then the hard drive is failing or failed. (SMART status is not reported on external Firewire or USB drives.) If the drive is "Verified" then select your OS X volume from the list on the left (sub-entry below the drive entry,) click on the First Aid tab, then click on the Repair Disk button. If DU reports any errors that have been fixed, then re-run Repair Disk until no errors are reported. If no errors are reported then click on the Repair Permissions button. When the process is completed, then quit DU and return to the main menu. Select Restart from the Apple menu.

Similar Messages

  • I can't figure out what im doing wrong with my File I/O program lol

    I'm new to the java language and was wondering if anybody could help me with the program i an writing. I don't quite understand file I/O but I've given it my best and I'm stuck. I'm supposed to write a program that will read in a file of student academic credit data and create a list of students on academic warning. The list of students on warning will be written to a file. Each line of the input file will contain the
    student name (a single String with no spaces), the number of semester hours earned (an integer), the total quality points earned (a double). The program should compute the GPA (grade point or quality point average) for each student (the total quality points divided by the number of semester hours) then write the student information to the output file if that student should be put on academic warning. A student will be on warning if he/she has a GPA less than 1.5 for students with fewer than 30 semester hours credit, 1.75 for students with fewer than 60 semester hours credit, and 2.0 for all other students. The instructions are :
    1. Set up a Scanner object scan from the input file and a PrintWriter outFile to the output file inside the try
    clause (see the comments in the program). Note that you’ll have to create the PrintWriter from a FileWriter,
    but you can still do it in a single statement.
    2. Inside the while loop add code to read the input file—get the name, the number of credit hours, and the
    number of quality points. Compute the GPA, determine if the student is on academic warning, and if so
    write the name, credit hours, and GPA (separated by spaces) to the output file.
    3. After the loop close the PrintWriter and Scanner objects in a finally block.
    4. Think about the exceptions that could be thrown by this program:
    • A FileNotFoundException if the input file does not exist
    • A InputMismatchException if it can’t read an int or double when it tries to – this indicates an error in the
    input file format
    • An IOException if something else goes wrong with the input or output stream
    Add a catch for each of these situations, and in each case give as specific a message as you can. The
    program will terminate if any of these exceptions is thrown, but at least you can supply the user with useful
    information.
    5. Test the program. Test data is in the file students.txt. Be sure to test each of the exceptions as well.
    My source code is:
    // Warning.java
    // Reads student data from a text file and writes data to another text file.
    import java.util.*;
    import java.io.*;
    public class Warning
    // Reads student data (name, semester hours, quality points) from a
    // text file, computes the GPA, then writes data to another file
    // if the student is placed on academic warning.
    public static void main (String[] args)
         int creditHrs; // number of semester hours earned
         double qualityPts; // number of quality points earned
         double gpa; // grade point (quality point) average
         Scanner scan=null;
         PrintWriter outFile=null;
         String name, inputName = "students.txt";
         String outputName = "warning.txt";
         try
              // Set up Scanner to input file
              scan=new Scanner(new FileInputStream(inputName));
              // Set up the output file stream
              outFile = new PrintWriter(new FileWriter(outputName));
              // Print a header to the output file
              outFile.println ();
              outFile.println ("Students on Academic Warning");
              outFile.println ();
              // Process the input file, one token at a time
              while (scan.hasNext())
                   // Get the credit hours and quality points and
                   // determine if the student is on warning. If so,
                   // write the student data to the output file.
                   name=scan.next();
                   creditHrs=scan.nextInt();
                   qualityPts=scan.nextDouble();
                   gpa=qualityPts/creditHrs;
                   if ((gpa < 1.5 && creditHrs < 30) || (gpa < 1.75 && creditHrs < 60) || (gpa < 2.0 && creditHrs >= 60))
                        outFile.print(name + " ");
                        outFile.print(creditHrs + " ");
                        outFile.print(qualityPts + " ");
                        outFile.print(gpa);
              //Add a catch for each of the specified exceptions, and in each case
              //give as specific a message as you can
    catch (FileNotFoundException e)
    System.out.println("The file " + inputName + " was not found.");
    catch (IOException e)
    System.out.println("The I/O operation failed and " + outputName + " could not be created.");
    catch (InputMismatchException e)
    System.out.println("The input information was not of the right type.");
              //Close both files in a finally block
    finally
         scan.close();
         outFile.close();
    The txt file is:
    Smith 27 83.7
    Jones 21 28.35
    Walker 96 182.4
    Doe 60 150
    Wood 100 400
    Street 33 57.4
    Taylor 83 190
    Davis 110 198
    Smart 75 292.5
    Bird 84 168
    Summers 52 83.2
    The program will run and then terminate without creating warning.txt. How can I get it to create the warning .txt file? Any help that you could give would be greatly appreciated.

    Alright, here is my code reposted:
    // Warning.java
    // Reads student data from a text file and writes data to another text file.
    import java.util.;
    import java.io.;
    public class Warning
    // // Reads student data (name, semester hours, quality points) from a
    // text file, computes the GPA, then writes data to another file
    // if the student is placed on academic warning.
    public static void main (String[] args)
    int creditHrs; // number of semester hours earned
    double qualityPts; // number of quality points earned
    double gpa; // grade point (quality point) average
    Scanner scan=null;
    PrintWriter outFile=null;
    String name, inputName = "students.txt";
    String outputName = "warning.txt";
    try
    // Set up Scanner to input file
    scan=new Scanner(new FileInputStream(inputName));
    // Set up the output file stream
    outFile = new PrintWriter(new FileWriter(outputName));
    // Print a header to the output file
    outFile.println ();
    outFile.println ("Students on Academic Warning");
    outFile.println ();
    // Process the input file, one token at a time
    while (scan.hasNext())
    // Get the credit hours and quality points and
    // determine if the student is on warning. If so,
    // write the student data to the output file.
    name=scan.next();
    creditHrs=scan.nextInt();
    qualityPts=scan.nextDouble();
    gpa=qualityPts/creditHrs;
    if ((gpa < 1.5 && creditHrs < 30) || (gpa < 1.75 && creditHrs < 60) || (gpa < 2.0 && creditHrs >= 60))
    outFile.print(name " ");
    outFile.print(creditHrs " ");
    outFile.print(qualityPts " ");
    outFile.print(gpa);
    //Add a catch for each of the specified exceptions, and in each case
    //give as specific a message as you can
    catch (FileNotFoundException e)
    System.out.println("The file " inputName " was not found.");
    catch (IOException e)
    System.out.println("The I/O operation failed and " outputName + " could not be created.");
    catch (InputMismatchException e)
    System.out.println("The input information was not of the right type.");

  • Reader opens in a highly magnified window, the toolbar is huge! Causes problems in the Print dialogue box, too. I can't figure out what I've done to make this happen, or how to undo it. Windows 8.1RT, MS Surface Pro3. Have re-installed too.

    FIGURED IT OUT MYSELF!! It's when the Surface Pro is connected to a monitor, and the screen resolution has altered. Disconnecting the second screen puts everyting back to how it should be. Phew.

    FIGURED IT OUT MYSELF!! It's when the Surface Pro is connected to a monitor, and the screen resolution has altered. Disconnecting the second screen puts everyting back to how it should be. Phew.

  • I uninstalled Firefox once, reinstalled it and it ran. I had a problem so I did it again. Now it will not run and I get an error message saying that firefox is running and you can only run one at a time. I can't figure out what is running.

    Because of a problem, I uninstalled Firefox once, reinstalled it and it ran. I had a problem so I uninstalled/reinstalled it again. Now it will not run. I get an error message saying that firefox is running and you can only run one at a time. I have uninstalled multiple times and can't figure out what is running. The is only one Firefox installed and it is not open. What does this mean and how do I fix it?

    If you use ZoneAlarm Extreme Security then try to disable Virtualization.
    *http://kb.mozillazine.org/Browser_will_not_start_up#XULRunner_error_after_an_update
    See also:
    *[[/questions/880050]]

  • Has anyone had a problem with fcp x not playing back a project since installing 10.0.9 update?

    Has anyone had a problem with fcp x not playing back a project since installing 10.0.9 update?

    Not here;  updated three systems without issues.
    Can you provide more details on your system specs, the projects you're referring to, and what kind of behavior you're encountering?
    Russ

  • I am using Adobe Suite CS4 and have had no problems with it until today. InDesign, Photoshop and Illustrator keep crashing!! I've uninstalled and reinstalled to no avail. I've also cleared the cache. Help!

    I am using Adobe Suite CS4 and have had no problems with it until today. InDesign, Photoshop and Illustrator keep crashing!! I've uninstalled and reinstalled to no avail. I've also cleared the cache. Help!

    Ok, thanks for your help. I believe I pasted all the info from your answer. Since Photoshop and inDesign are crashing as well, will you need that too?
    May  8 16:04:41 iMac com.apple.launchd.peruser.501[126] ([0x0-0x4d04d].com.adobe.illustrator[493]): Job appears to have crashed: Segmentation fault: 11
    May  8 16:04:42 iMac ReportCrash[496]: Saved crash report for Adobe Illustrator[493] version 367 (14.0.0) to /Users//Library/Logs/DiagnosticReports/Adobe Illustrator_2014-05-08-160442_-iMac.crash
    May  8 16:04:42 -iMac ReportCrash[496]: Removing excessive log: file://localhost/Users/xxxxxx/Library/Logs/DiagnosticReports/Adobe%20Illustrato r_2014-05-06-152657_-iMac.crash
    Process:         Adobe Illustrator [273]
    Path:            /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    Identifier:      com.adobe.illustrator
    Version:         367 (14.0.0)
    Code Type:       X86 (Native)
    Parent Process:  launchd [131]
    Date/Time:       2014-05-06 15:29:44.038 -0700
    OS Version:      Mac OS X 10.7.5 (11G63b)
    Report Version:  9
    Interval Since Last Report:          353 sec
    Crashes Since Last Report:           6
    Per-App Interval Since Last Report:  11182846 sec
    Per-App Crashes Since Last Report:   7
    Anonymous UUID:                     
    Crashed Thread:  0  Dispatch queue: com.apple.main-thread
    Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes: KERN_INVALID_ADDRESS at 0x00000000ffffff5a
    VM Regions Near 0xffffff5a:
    --> shared memory          00000000ffff0000-00000000ffff2000 [    8K] r-x/r-x SM=SHM 
    Application Specific Information:
    objc[273]: garbage collection is OFF
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0   AdobePDFL                               0x024104cd ASrealloc + 737
    1   AdobePDFL                               0x0236f588 CosDocEnumEOFs + 27326
    2   AdobePDFL                               0x0236d907 CosDocEnumEOFs + 20029
    3   AdobePDFL                               0x0236fd46 CosDocEnumEOFs + 29308
    4   AdobePDFL                               0x0227d782 ASTextIsEmpty + 1146
    5   AdobePDFL                               0x0212779f PDFontPSFlushIncrGlyphList + 65853
    6   AdobePDFL                               0x02127966 PDFontPSFlushIncrGlyphList + 66308
    7   AdobePDFL                               0x02129f93 PDFontPSFlushIncrGlyphList + 76081
    8   AdobePDFL                               0x0212cae6 PDFontPSFlushIncrGlyphList + 87172
    9   AdobePDFL                               0x02111b26 PDFLPrintDoc + 6322
    10  AdobePDFL                               0x021dccac PDSetHostEncoding + 2412
    11  AdobePDFL                               0x021dce02 PDSetHostEncoding + 2754
    12  AdobePDFL                               0x02114eba PDFLInitFriends + 2122
    13  AdobePDFL                               0x021149c8 PDFLInitFriends + 856
    14  com.adobe.illustrator.plugins.PDF Suite          0x16884096 PluginMain + 163654
    15  com.adobe.illustrator.plugins.PDF Suite          0x16883b61 PluginMain + 162321
    16  com.adobe.illustrator.plugins.PDF Suite          0x168840f2 PluginMain + 163746
    17  com.adobe.illustrator.plugins.PDF Suite          0x16862872 PluginMain + 26402
    18  com.adobe.illustrator.plugins.PDF Suite          0x16862c7b PluginMain + 27435
    19  com.adobe.illustrator.plugins.PDF Suite          0x1685c1f3 PluginMain + 163
    20  com.adobe.illustrator                   0x006a93ff 0x1000 + 6980607
    21  com.adobe.illustrator                   0x006a89c6 0x1000 + 6977990
    22  com.adobe.illustrator                   0x00586d75 0x1000 + 5791093
    23  com.adobe.illustrator                   0x00586e2d 0x1000 + 5791277
    24  com.adobe.illustrator                   0x0052f513 0x1000 + 5432595
    25  com.adobe.illustrator                   0x00539777 0x1000 + 5474167
    26  com.adobe.illustrator                   0x0053d599 0x1000 + 5490073
    27  com.adobe.illustrator                   0x00515187 0x1000 + 5325191
    28  com.adobe.illustrator                   0x00b0517a AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 524022
    29  com.adobe.illustrator                   0x00a181df AWS_CUI_GetVersionComments(OpaqueWindowPtr*, adobe::q::QDocument&, adobe::q::QString&, adobe::q::QAttributeList&, adobe::q::QDocument*, adobe::q::QProject*, long) + 43387
    30  com.adobe.illustrator                   0x0004210a 0x1000 + 266506
    31  com.adobe.illustrator                   0x0053c893 0x1000 + 5486739
    32  com.adobe.illustrator                   0x0053a574 0x1000 + 5477748
    33  com.adobe.illustrator                   0x00b03d77 AWS_CUI_RevertAlert(OpaqueWindowPtr*, adobe::aws::gen::String<unsigned short>&, adobe::aws::gen::String<unsigned short>&) + 518899
    34  com.adobe.illustrator.plugins.PDF Format          0x10122118 0x1010f000 + 78104
    35  com.adobe.coretech.adm                  0x0dd83d85 0xdd7b000 + 36229
    36  com.adobe.coretech.adm                  0x0dd8c62f 0xdd7b000 + 71215
    37  com.adobe.coretech.adm                  0x0dd8d7fb 0xdd7b000 + 75771
    38  com.adobe.coretech.adm                  0x0ddd5871 0xdd7b000 + 370801
    39  com.adobe.coretech.adm                  0x0dd93c53 0xdd7b000 + 101459
    40  com.adobe.illustrator.plugins.PDF Format          0x101200bd 0x1010f000 + 69821
    41  com.adobe.illustrator.plugins.PDF Format          0x1011a56a 0x1010f000 + 46442
    42  com.adobe.illustrator.plugins.PDF Format          0x101442e7 PluginMain + 2927
    43  com.adobe.illustrator.plugins.PDF Format          0x1014391e PluginMain + 422
    44  com.adobe.illustrator                   0x006a93ff 0x1000 + 6980607
    45  com.adobe.illustrator                   0x006a89c6 0x1000 + 6977990
    46  com.adobe.illustrator                   0x00586d75 0x1000 + 5791093
    47  com.adobe.illustrator                   0x0047021d 0x1000 + 4649501
    48  com.adobe.illustrator                   0x00473190 0x1000 + 4661648
    49  com.adobe.illustrator                   0x0027b1dc 0x1000 + 2597340
    50  com.adobe.illustrator                   0x0027bb3b 0x1000 + 2599739
    51  com.adobe.illustrator                   0x0027bf0d 0x1000 + 2600717
    52  com.adobe.illustrator                   0x000a2ad9 0x1000 + 662233
    53  com.adobe.illustrator                   0x000a24ea 0x1000 + 660714
    54  com.adobe.illustrator                   0x000a263a 0x1000 + 661050
    55  com.apple.AE                            0x91fb8e0b InvokeAEEventHandlerUPP + 29
    56  com.adobe.illustrator.plugins.Scripting Support          0x0e3794e6 0xe359000 + 132326
    57  com.adobe.illustrator.plugins.Scripting Support          0x0e3f4dcb PluginMain + 605
    58  com.apple.AE                            0x91fa3045 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 202
    59  com.apple.AE                            0x91f8cb67 _ZL25dispatchEventAndSendReplyPK6AEDescPS_ + 43
    60  com.apple.AE                            0x91f8ca54 aeProcessAppleEvent + 253
    61  com.apple.HIToolbox                     0x93410a86 AEProcessAppleEvent + 103
    62  com.apple.HIToolbox                     0x9359ead1 AEProcessEvent + 162
    63  com.apple.HIToolbox                     0x9349752f HIStdAppHandler::HandleEvent(OpaqueEventHandlerCallRef*, TCarbonEvent&) + 181
    64  com.apple.HIToolbox                     0x934984ce TEventHandler::EventHandler(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*) + 58
    65  com.apple.HIToolbox                     0x9358bc0c _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    66  com.apple.HIToolbox                     0x93407313 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    67  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    68  com.apple.HIToolbox                     0x934065a8 SendEventToEventTargetWithOptions + 75
    69  com.apple.HIToolbox                     0x9341c1c6 _ZL29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRef Pv + 3152
    70  com.apple.HIToolbox                     0x934077ce _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 2813
    71  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    72  com.apple.HIToolbox                     0x9341b571 SendEventToEventTarget + 76
    73  com.adobe.illustrator                   0x00080d3e 0x1000 + 523582
    74  com.apple.HIToolbox                     0x9358bc0c _InvokeEventHandlerUPP(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*, long (*)(OpaqueEventHandlerCallRef*, OpaqueEventRef*, void*)) + 36
    75  com.apple.HIToolbox                     0x93407313 _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 1602
    76  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    77  com.apple.HIToolbox                     0x934065a8 SendEventToEventTargetWithOptions + 75
    78  com.apple.HIToolbox                     0x9341c1c6 _ZL29ToolboxEventDispatcherHandlerP25OpaqueEventHandlerCallRefP14OpaqueEventRef Pv + 3152
    79  com.apple.HIToolbox                     0x934077ce _ZL23DispatchEventToHandlersP14EventTargetRecP14OpaqueEventRefP14HandlerCallRec + 2813
    80  com.apple.HIToolbox                     0x93406790 _ZL30SendEventToEventTargetInternalP14OpaqueEventRefP20OpaqueEventTargetRefP14H andlerCallRec + 482
    81  com.apple.HIToolbox                     0x9341b571 SendEventToEventTarget + 76
    82  com.apple.HIToolbox                     0x9358ba58 ToolboxEventDispatcher + 82
    83  com.apple.HIToolbox                     0x9358bb87 RunApplicationEventLoop + 236
    84  com.adobe.illustrator                   0x00080f83 0x1000 + 524163
    85  com.adobe.illustrator                   0x000d84ab 0x1000 + 881835
    86  com.adobe.illustrator                   0x000a2cd2 0x1000 + 662738
    87  com.adobe.illustrator                   0x00003672 0x1000 + 9842
    88  com.adobe.illustrator                   0x00003599 0x1000 + 9625
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x95f0a90a kevent + 10
    1   libdispatch.dylib                       0x96fb6e04 _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x96fb5853 _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x95f0a02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x95542ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x955446fe start_wqthread + 30
    Thread 3:
    0   libsystem_kernel.dylib                  0x95f0a02e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x95542ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x955446fe start_wqthread + 30
    Thread 4:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.adobe.amt.services                  0x047c9552 AMTConditionLock::LockWhenCondition(int) + 46
    4   com.adobe.amt.services                  0x047c4995 _AMTThreadedPCDService::PCDThreadWorker(_AMTThreadedPCDService*) + 115
    5   com.adobe.amt.services                  0x047c95b0 AMTThread::Worker(void*) + 20
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 5:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x95544f7b pthread_cond_timedwait_relative_np + 47
    3   com.apple.CoreServices.CarbonCore          0x9ad0f3a7 TSWaitOnConditionTimedRelative + 178
    4   com.apple.CoreServices.CarbonCore          0x9ad0f11d TSWaitOnSemaphoreCommon + 490
    5   com.apple.CoreServices.CarbonCore          0x9ad0ef2e TSWaitOnSemaphoreRelative + 24
    6   com.apple.CoreServices.CarbonCore          0x9ad84398 TimerThread + 292
    7   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    8   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x954f542c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9ad9de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ad0f37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9ad7167f MPWaitOnQueue + 200
    6   AdobeACE                                0x0130a38d 0x12d9000 + 201613
    7   AdobeACE                                0x01309d85 0x12d9000 + 200069
    8   com.apple.CoreServices.CarbonCore          0x9ad725e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 7:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x954f542c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9ad9de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ad0f37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9ad7167f MPWaitOnQueue + 200
    6   AdobeACE                                0x0130a38d 0x12d9000 + 201613
    7   AdobeACE                                0x01309d85 0x12d9000 + 200069
    8   com.apple.CoreServices.CarbonCore          0x9ad725e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 8:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e21 _pthread_cond_wait + 827
    2   libsystem_c.dylib                       0x954f542c pthread_cond_wait$UNIX2003 + 71
    3   com.apple.CoreServices.CarbonCore          0x9ad9de62 TSWaitOnCondition + 124
    4   com.apple.CoreServices.CarbonCore          0x9ad0f37d TSWaitOnConditionTimedRelative + 136
    5   com.apple.CoreServices.CarbonCore          0x9ad7167f MPWaitOnQueue + 200
    6   AdobeACE                                0x0130a38d 0x12d9000 + 201613
    7   AdobeACE                                0x01309d85 0x12d9000 + 200069
    8   com.apple.CoreServices.CarbonCore          0x9ad725e0 PrivateMPEntryPoint + 68
    9   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    10  libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 9:
    0   libsystem_kernel.dylib                  0x95f07c22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x95f071f6 mach_msg + 70
    2   com.macromedia.Flash Player.authplaylib          0x1390763e ExternalPlayer_Initialize + 1865604
    3   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    4   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 10:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 11:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 12:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 13:
    0   libsystem_kernel.dylib                  0x95f0983e __psynch_cvwait + 10
    1   libsystem_c.dylib                       0x95544e78 _pthread_cond_wait + 914
    2   libsystem_c.dylib                       0x954ec82a pthread_cond_wait + 48
    3   com.macromedia.Flash Player.authplaylib          0x13733ba6 0x1344c000 + 3046310
    4   com.macromedia.Flash Player.authplaylib          0x13755f81 ExternalPlayer_Initialize + 90311
    5   com.macromedia.Flash Player.authplaylib          0x13733f98 0x1344c000 + 3047320
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 14:
    0   libsystem_kernel.dylib                  0x95f07d36 mach_wait_until + 10
    1   libsystem_c.dylib                       0x954ee439 nanosleep + 388
    2   com.adobe.illustrator.plugins.Scripting Support          0x0e46489d PluginMain + 458031
    3   com.adobe.illustrator.plugins.Scripting Support          0x0e4648fd PluginMain + 458127
    4   com.adobe.illustrator.plugins.Scripting Support          0x0e468402 PluginMain + 473236
    5   com.adobe.illustrator.plugins.Scripting Support          0x0e464bbf PluginMain + 458833
    6   libsystem_c.dylib                       0x95540ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x955446de thread_start + 34
    Thread 0 crashed with X86 Thread State (32-bit):
      eax: 0xffffff4a  ebx: 0x0236f46a  ecx: 0x0000000f  edx: 0xbfff75ae
      edi: 0xffffff4a  esi: 0x00000642  ebp: 0xbfff7558  esp: 0xbfff7540
       ss: 0x00000023  efl: 0x00010282  eip: 0x024104cd   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000000   gs: 0x0000000f
      cr2: 0xffffff5a
    Logical CPU: 0
    Binary Images:
        0x1000 -   0xe8eff3 +com.adobe.illustrator (367 - 14.0.0) <F586A10F-F480-4783-A20B-C006B6321F47> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/MacOS/Adobe Illustrator
    0x1190000 -  0x11a0fff  com.apple.carbonframeworktemplate (1.0 - 1.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/Alcid.framework/Versions/A/Alcid
    0x11a7000 -  0x11c2ff9 +AdobePDFSettings (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/Adobe PDFSettings
    0x11dc000 -  0x122cfff +com.adobe.illustrator.aiport (AIPort version 1.0 - 1.0) <F625B836-9616-46B7-B681-F9AC11D0DA71> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AIPort.framework/Versions/A/AIPort
    0x12c5000 -  0x12c6027 +SPBasic (??? - ???) <B1DC5A08-15C4-49F9-9DF1-6A94E0AD3448> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/SPBasic.framework/Versions/A/SPBasic
    0x12ca000 -  0x12d0ff7 +com.adobe.coretech.adobesplashkit (AdobeSplashKit version 1.0 - 1.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeSplashKit.framework/Versions/A/AdobeSp lashKit
    0x12d9000 -  0x13e6fff +AdobeACE (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x1404000 -  0x191bfef +AdobeAGM (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x1a94000 -  0x1ad4fef +AdobeARE (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
    0x1ade000 -  0x1b02ff6 +AdobeAXE8SharedExpat (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/A dobeAXE8SharedExpat
    0x1b15000 -  0x1b2ffff +AdobeBIB (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x1b3a000 -  0x1b5bff7 +AdobeBIBUtils (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIB Utils
    0x1b68000 -  0x1e04fef +AdobeCoolType (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoo lType
    0x1e8f000 -  0x1f5dfff +AdobeExtendScript (3.7.0 - compatibility 3.7.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/Adob eExtendScript
    0x1fd4000 -  0x20bcfdf +AdobePDFPort (??? - ???) <F54A25D1-5E7A-472E-83D1-10D187434C85> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFP ort
    0x2101000 -  0x26f9fdf +AdobePDFL (??? - ???) <8EC2ABBA-52D2-4230-B327-A6827FB2D33A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
    0x283d000 -  0x28defd7 +AdobeScCore (3.7.0 - compatibility 3.7.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCor e
    0x293a000 -  0x29e8fd7 +AdobeSVGExport (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGExport.framework/Versions/A/AdobeSV GExport
    0x2a1a000 -  0x2cc3fe2 +AdobeSVGRE (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeSVGRE.framework/Versions/A/AdobeSVGRE
    0x2dad000 -  0x2e0dfc7 +AdobeXMP (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x2e1c000 -  0x2ef1fdd +FileInfo (??? - ???) <F0932F89-FC98-4BA9-B4F2-C58D0E71D3C1> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x2f22000 -  0x2fa4fd7 +AdobeXMPFiles (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMP Files
    0x2fbb000 -  0x308a23b +libicui18n.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUInternationalization.framework/Versions/ 3.6/libicui18n.dylib.36.0
    0x3133000 -  0x3207db7 +libicuuc.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc. dylib.36.0
    0x3268000 -  0x3c1857f +libicudata.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.d ylib.36.0
    0x3c1b000 -  0x3fe5fef +AdobeMPS (??? - ???) <277E01A3-CAC3-4FA9-A591-4BC0A5BC125A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x4074000 -  0x422aff4 +com.adobe.amtlib (amtlib 2.0.1.10077 - 2.0.1.10077) <CB2EC3BF-6771-4DAB-BF29-6775FB6F9608> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x4261000 -  0x42ee2cb +libicucnv.dylib.36.0 (36.0.0 - compatibility 36.0.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicuc nv.dylib.36.0
    0x431b000 -  0x46f501f +com.adobe.linguistic.LinguisticManager (4.0.0 - 7863) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeL inguistic
    0x47a9000 -  0x484afc3 +com.adobe.amt.services (AMTServices 2.0.1.10077 [BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09] - 2 . 0) <31E82904-C3C2-424E-A1AE-A5EFADBB19B8> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/amtservices.framework/Versions/A/amtservice s
    0x4928000 -  0x4e26fc3 +AdobeOwlCanvas (??? - ???) <DC1EE447-FCDB-43C8-B6D2-A5454291C85D> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeOwlCanvas.framework/Versions/A/AdobeOw lCanvas
    0x4f6f000 -  0x4ffffc3 +WRServices (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x5181000 -  0x5185ffc +com.adobe.AdobeCrashReporter (2.5 - 3.0.20080806) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/Ado beCrashReporter
    0x518b000 -  0x51a7fd7 +com.adobe.LogTransport (1.0 - 1.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/LogTransport.framework/Versions/A/LogTransp ort
    0x51b2000 -  0x51e1ff7 +com.adobe.headlights.LogSessionFramework (??? - 2.0.0.06112008) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x5209000 -  0x521affb +LogTransport2 (??? - ???) <835B7B84-5A67-370B-AB39-8E448AA81FA0> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/LogTransport2.framework/Versions/A/LogTrans port2
    0x5224000 -  0x522afff +com.adobe.pip (??? - 1.0.0.220) <2CA89939-DFA7-4686-8536-8A1F1107CAF1> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePIP.framework/Versions/A/AdobePIP
    0x5230000 -  0x525bfff  com.apple.GSS (2.2 - 2.0) <1CB56119-09C5-38FD-8FDC-064E3CC5068B> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x5271000 -  0x546bfcf +AdobeOwl (??? - ???) <F209A9B2-9606-4182-93D8-84B349CFBE48> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x54e6000 -  0x5523fff  com.apple.vmutils (4.2.1 - 107) <43B3BFA5-8362-3EBD-B44B-32DCE9885082> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
    0x553d000 -  0x55eaff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x6794000 -  0x67dbfc7 +com.adobe.adobe_caps (adobe_caps 2.0.99.0 - 2.0.99.0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
    0x67eb000 -  0x67ebfff  libmx.A.dylib (2026.0.0 - compatibility 1.0.0) <859B5BCC-B5D9-370F-8B6C-1E2B242D5DCD> /usr/lib/libmx.A.dylib
    0x7fa5000 -  0x7fb2ff7 +com.adobe.asneu.framework (asneu version 1.6.2f01 - 1.6.2) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
    0xbbe9000 -  0xbbfbfff  libTraditionalChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <F7D2A96C-D03F-3C0B-83FC-1016BB787B59> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0xcdf4000 -  0xce02ffb  libSimplifiedChineseConverter.dylib (54.0.0 - compatibility 1.0.0) <4378B89F-0BDA-3072-9C67-DE1A371DD816> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0xce1d000 -  0xce1effc  ATSHI.dylib (??? - ???) <0B0F21B6-C254-34AE-8128-F3FBC80C68E6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0xce42000 -  0xce42fff +com.adobe.illustrator.plugins.PlugInRes (Localizer version 14.0.0 - 14.0.0) <CFE61490-698E-4FAE-988C-C238AC6CAAF8> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Resources/en_US/PluginRes.aip/Contents/MacOS/PlugInRes
    0xcf1b000 -  0xcf6afe6 +com.adobe.illustrator.plugins.Photoshop Adapter (Photoshop Adapter version 14.0.0 - 14.0.0) <897C80A3-5E5D-4156-8C80-38FE67F5F275> /Applications/Adobe Illustrator CS4/*/Photoshop Adapter
    0xcf91000 -  0xcf92fff +com.adobe.illustrator.plugins.ASLib (ASLib version 14.0.0 - 14.0.0) <F08F7B7D-86A2-462E-AB7B-B706FEE4B955> /Applications/Adobe Illustrator CS4/*/ASLib
    0xd0e4000 -  0xd0ebfff +com.adobe.illustrator.plugins.Action (Action version 14.0.0 - 14.0.0) <C884784D-9646-47C7-917D-2F6B65521B57> /Applications/Adobe Illustrator CS4/*/Action
    0xd0ef000 -  0xd0f8fff +com.adobe.illustrator.plugins.FrameworkServer (Framework Server version 14.0.0 - 14.0.0) <04B2DA5B-B84C-487C-A70E-76163D14D08F> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/FrameworkServer.aip/Contents/MacOS/FrameworkS erver
    0xd2d3000 -  0xd2ecfcb +com.adobe.illustrator.plugins.AssetMgmt (Asset Management version 14.0.0 - 14.0.0) <27CE4290-30DD-477C-9DD4-D46D6022D8D5> /Applications/Adobe Illustrator CS4/*/AssetMgmt
    0xd2f5000 -  0xd326fe3 +com.adobe.amt.registration (AMTRegistration 2.0.1.10077 [BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09] - 2 . 0) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/registration.framework/Versions/A/registrat ion
    0xdd7b000 -  0xde4efef +com.adobe.coretech.adm (3.10x04 - 3.1) <369EAA04-C054-40EB-AC03-92CE99C7260C> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/AdobeADM.bundle/Contents/MacOS/AdobeADM
    0xe0cf000 -  0xe0d5ff7 +com.adobe.illustrator.plugins.ArtConverters ( ArtConverters version 14.0.0 - 14.0.0) <0EA7F2D8-904D-4AFC-A177-8569F3E2286A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ArtConverters.aip/Contents/MacOS/ArtConverter s
    0xe0d9000 -  0xe102fff +com.adobe.illustrator.plugins.BRSPencilTool ( Pencil Tool version 14.0.0 - 14.0.0) <EF43DD3A-A797-450D-9FF7-4EFD246811A5> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/BRSPencilTool.aip/Contents/MacOS/BRSPencilToo l
    0xe108000 -  0xe117fd3 +com.adobe.illustrator.plugins.Flatten Transparency ( Flatten Transparency version 14.0.0 - 14.0.0) <66929E97-D63A-46F2-9ADC-F8C10995DFC3> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/Flatten Transparency.aip/Contents/MacOS/Flatten Transparency
    0xe11e000 -  0xe146fcb +com.adobe.illustrator.plugins.FOConversionSuite (FOConversionSuite version 14.0.0 - 14.0.0) <D2E6328E-B072-4F58-A8F4-191C1E7A3111> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/FOConversionSuite.aip/Contents/MacOS/FOConver sionSuite
    0xe156000 -  0xe16bfef +com.adobe.illustrator.plugins.Rasterize (Rasterize version 14.0.0 - 14.0.0) <20A55512-33F0-4669-BE49-F3ED9E2C1CC5> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/Rasterize.aip/Contents/MacOS/Rasterize
    0xe16f000 -  0xe1a3fc3 +com.adobe.illustrator.plugins.BrushManager (Brush Manager version 14.0.0 - 14.0.0) <45B1E4C5-0AEC-4C31-BF6E-ECC0888F9386> /Applications/Adobe Illustrator CS4/*/BrushManager
    0xe1ac000 -  0xe25afc8 +com.adobe.illustrator.plugins.ColorHarmony (ColorHarmony version 14.0.0 - 14.0.0) <11C2EC2C-29D3-462D-B3A2-771D85D66917> /Applications/Adobe Illustrator CS4/*/ColorHarmony
    0xe278000 -  0xe28dff0 +com.adobe.illustrator.plugins.ControlPalette (ControlPalette version 14.0.0 - 14.0.0) <65ADF72A-2398-43F7-9B05-52D7D592BA0E> /Applications/Adobe Illustrator CS4/*/ControlPalette
    0xe299000 -  0xe2c4ff0 +com.adobe.illustrator.plugins.KinsokuDlg ( KinsokuDlg version 14.0.0 - 14.0.0) <0B0B227F-AA5B-46FB-A6B6-60AE2BFAD347> /Applications/Adobe Illustrator CS4/*/KinsokuDlg
    0xe2d5000 -  0xe34dfdb +com.adobe.illustrator.plugins.PaintStyle (Paint Style Palettes version 14.0.0 - 14.0.0) <FDFCF271-25E0-46B9-812C-EFB4E49B61A8> /Applications/Adobe Illustrator CS4/*/PaintStyle
    0xe359000 -  0xe607fe7 +com.adobe.illustrator.plugins.Scripting Support (Scripting Support version 14.0.0 - 14.0.0) <00ED474E-DA84-421D-A0BA-AC17357B1FED> /Applications/Adobe Illustrator CS4/*/Scripting Support
    0xe8c0000 -  0xe8c3ffb +com.divx.divxtoolkit (1.0 - 1.0) /Library/Frameworks/DivX Toolkit.framework/Versions/A/DivX Toolkit
    0xe9cd000 -  0xea48fde +com.adobe.illustrator.plugins.SwatchLibraries (Swatch Libraries version 14.0.0 - 14.0.0) <CB45F4C6-5333-417D-8997-C124973041FE> /Applications/Adobe Illustrator CS4/*/SwatchLibraries
    0xea59000 -  0xea87068 +com.adobe.illustrator.plugins.SymbolPalette (Symbol Palette version 14.0.0 - 14.0.0) <DD7DBC72-EF5E-4F52-A102-794BF21F2498> /Applications/Adobe Illustrator CS4/*/SymbolPalette
    0xea90000 -  0xea94feb +com.adobe.illustrator.plugins.ToolSelector (Tool Selector version 14.0.0 - 14.0.0) <72429655-649D-4EFF-A0AF-DE2BE54FFDC6> /Applications/Adobe Illustrator CS4/*/ToolSelector
    0xea98000 -  0xeab1fef +com.adobe.illustrator.plugins.Workspaces (Workspaces version 14.0.0 - 14.0.0) <E065EBE1-AEF1-47B8-9933-EEB543767C5C> /Applications/Adobe Illustrator CS4/*/Workspaces
    0xeab8000 -  0xeacb04f +com.adobe.illustrator.plugins.Mojikumi ( MojiKumiUI version 14.0.0 - 14.0.0) <E32A6710-064A-4731-8844-E63F5DC4094F> /Applications/Adobe Illustrator CS4/*/Mojikumi
    0xead2000 -  0xead5fff +com.adobe.illustrator.plugins.GeometryS ( Geometry Suite version 14.0.0 - 14.0.0) <B30D9BE4-9735-4704-AD8A-467E7C25B9A9> /Applications/Adobe Illustrator CS4/*/GeometryS
    0xead9000 -  0xeb00fe8 +com.adobe.illustrator.plugins.slicingAttributes (Slicing version 14.0.0 - 14.0.0) <3A3FCCB7-D888-4949-94FB-74EA1892F2DE> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/sliceAttributes.aip/Contents/MacOS/slicingAtt ributes
    0xeb08000 -  0xeb0dfef +com.adobe.illustrator.plugins.ShapeS (Shape Construction Suite version 14.0.0 - 14.0.0) <A8E06D3D-22EB-4391-A488-39435E80F204> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ShapeS.aip/Contents/MacOS/ShapeS
    0xeb11000 -  0xeb3dfff +com.adobe.illustrator.plugins.PathfinderS (Pathfinder Suite version 14.0.0 - 14.0.0) <D0D9CCD1-0AEC-4C46-9AA3-F7F97ACCDEF1> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/PathFinderS.aip/Contents/MacOS/PathfinderS
    0xeb46000 -  0xeb4dff3 +com.adobe.illustrator.plugins.ExpandS (Expand Suite version 14.0.0 - 14.0.0) <29196393-E41C-43EA-8C0C-6260FD7F61FC> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ExpandS.aip/Contents/MacOS/ExpandS
    0xeb51000 -  0xeb61fff +com.adobe.illustrator.plugins.DocInfo (Document Info version 14.0.0 - 14.0.0) <4314802B-CE2E-4AF5-9460-5809DEFF7360> /Applications/Adobe Illustrator CS4/*/DocInfo
    0xeb68000 -  0xeba0fef +com.adobe.illustrator.plugins.Snap (Snap version 14.0.0 - 14.0.0) <29FC35B5-A5D5-4F0C-B721-49E267315B13> /Applications/Adobe Illustrator CS4/*/Snap
    0xebb0000 -  0xebc0ff2 +com.adobe.illustrator.plugins.DropShadow (Drop Shadow version 14.0.0 - 14.0.0) <50DC2482-540D-4817-8D0E-158E626298DA> /Applications/Adobe Illustrator CS4/*/DropShadow
    0xebc6000 -  0xebcdfc0 +com.adobe.illustrator.plugins.ADMTP (Tool Palette version 14.0.0 - 14.0.0) <7E1766B5-2D51-4E83-B515-6F5149B134B2> /Applications/Adobe Illustrator CS4/*/ADMTP
    0xebd1000 -  0xebe0ff3 +com.adobe.illustrator.plugins.Segment Tools (Segment Tools version 14.0.0 - 14.0.0) <5ADD1377-AC2A-43E7-A418-FA83F4E7DF2F> /Applications/Adobe Illustrator CS4/*/Segment Tools
    0xebe5000 -  0xec02fda +com.adobe.illustrator.plugins.ScatterBrushTool (Adobe Scatter Brush Tool version 14.0.0 - 14.0.0) <8BEBD742-F42F-49C5-A3F0-FA1C5285A7DA> /Applications/Adobe Illustrator CS4/*/ScatterBrushTool
    0xec09000 -  0xec0dfef +com.adobe.illustrator.plugins.GlobalAdjust (Reshape Tool version 14.0.0 - 14.0.0) <D6B5A699-E443-4D3A-87AA-FC7D8E2CB319> /Applications/Adobe Illustrator CS4/*/GlobalAdjust
    0xec11000 -  0xec30fcb +com.adobe.illustrator.plugins.ParticlePaint (Symbolism version 14.0.0 - 14.0.0) <4A4D97AA-0B5C-4311-83FE-288839029DA7> /Applications/Adobe Illustrator CS4/*/ParticlePaint
    0xec39000 -  0xec42fe7 +com.adobe.illustrator.plugins.Magic Wand (Magic Wand version 14.0.0 - 14.0.0) <93E02FBC-89CC-4486-B643-7F7B01E3C149> /Applications/Adobe Illustrator CS4/*/Magic Wand
    0xec46000 -  0xec5dff3 +com.adobe.illustrator.plugins.Liquify (Liquify version 14.0.0 - 14.0.0) <C16C9B41-5869-4A14-A5B7-8AC978B5FDFD> /Applications/Adobe Illustrator CS4/*/Liquify
    0xec61000 -  0xec68feb +com.adobe.illustrator.plugins.Lasso (Lasso version 14.0.0 - 14.0.0) <7C893464-927E-4EFC-B6FB-2F3E10F9A199> /Applications/Adobe Illustrator CS4/*/Lasso
    0xec6d000 -  0xec70fef +com.adobe.illustrator.plugins.KnifeTool (Knife Tool version 14.0.0 - 14.0.0) <79C5F1A2-6CF0-4A1D-9B50-7BE467DD80A6> /Applications/Adobe Illustrator CS4/*/KnifeTool
    0xec74000 -  0xeca8fdf +com.adobe.illustrator.plugins.EraserTool (EraserTool version 14.0.0 - 14.0.0) <1744EECA-69F1-4C93-AA06-B89075F3EEBE> /Applications/Adobe Illustrator CS4/*/EraserTool
    0xecb0000 -  0xecd8fec +com.adobe.illustrator.plugins.CalligBrushTool (Calligraphic Brush Tool version 14.0.0 - 14.0.0) <FA25241B-421C-49D6-BE9D-8BC1430E9828> /Applications/Adobe Illustrator CS4/*/CalligBrushTool
    0xecdf000 -  0xecf2ff7 +com.adobe.illustrator.plugins.BoundingBox (BoundingBox version 14.0.0 - 14.0.0) <D05C0C30-D456-4E98-9BC4-92C2294FB49F> /Applications/Adobe Illustrator CS4/*/BoundingBox
    0xecf6000 -  0xed21fd6 +com.adobe.illustrator.plugins.ArtBrushTool (Art Brush Tool version 14.0.0 - 14.0.0) <89FE2B11-D5DD-4DEA-966C-E1A85FB4CBAC> /Applications/Adobe Illustrator CS4/*/ArtBrushTool
    0xed28000 -  0xed87fcf +com.adobe.illustrator.plugins.PhotoshopImport (Photoshop Import version 14.0.0 - 14.0.0) <861DD58E-6EA7-4715-B877-5C75B596C85A> /Applications/Adobe Illustrator CS4/*/PhotoshopImport
    0xed9e000 -  0xfad0fff +com.adobe.psl (AdobePSL 11.0.0.1724 - 11.0.0.1724) <6BE27A60-E0F9-4483-8E57-2A7A5227D878> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
    0xfe04000 -  0xfe05ff1  com.apple.textencoding.unicode (2.4 - 2.4) <4E55D4B9-4E67-3FC9-9407-3E99D1D50F15> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0xfe0a000 -  0xfe36fff +com.adobe.illustrator.plugins.ExpressView Support (OS Express Views version 14.0.0 - 14.0.0) <4D362918-5276-46B4-9825-5CAE899E9EE5> /Applications/Adobe Illustrator CS4/*/ExpressView Support
    0xfe41000 -  0xfe8aff4 +com.adobe.illustrator.plugins.MPSParser (MPSParser version 14.0.0 - 14.0.0) <67607461-914F-440E-8624-381CC2A0079E> /Applications/Adobe Illustrator CS4/*/MPSParser
    0xfea0000 -  0xfed0fcc +com.adobe.illustrator.plugins.MPSExport (MPSExport version 14.0.0 - 14.0.0) <DD69AB2F-78AB-4225-9DCE-2141648F6E1E> /Applications/Adobe Illustrator CS4/*/MPSExport
    0xfee0000 -  0xfee1fff +com.adobe.illustrator.plugins.MPSCommon (MPSCommon version 14.0.0 - 14.0.0) <4CBB7829-A13E-41B3-9273-2223506DE716> /Applications/Adobe Illustrator CS4/*/MPSCommon
    0xfee5000 -  0xff03ff4 +com.adobe.illustrator.plugins.Scribble (Scribble version 14.0.0 - 14.0.0) <66F69AF3-2A26-4B2A-88E8-64568F71EA80> /Applications/Adobe Illustrator CS4/*/Scribble
    0xff0a000 -  0xff16ff3 +com.adobe.illustrator.plugins.Pathfinder (Pathfinder Plugin version 14.0.0 - 14.0.0) <7288F843-177B-43CE-9876-AB66A84A2F69> /Applications/Adobe Illustrator CS4/*/Pathfinder
    0xff1a000 -  0xff2ffc4 +com.adobe.illustrator.plugins.WelcomeScreen (WelcomeScreenn version 14.0.0 - 14.0.0) <780173AB-6EAA-4EF6-9D79-99CE78F0BF06> /Applications/Adobe Illustrator CS4/*/WelcomeScreen
    0xff35000 -  0xff48fd7 +com.adobe.illustrator.plugins.TransparencyPalette (Transparency Palette version 14.0.0 - 14.0.0) <2FC5A6F7-E157-4BE3-9490-657B1198825D> /Applications/Adobe Illustrator CS4/*/TransparencyPalette
    0xff4c000 -  0xff5dff6 +com.adobe.illustrator.plugins.SeparationPreview (Separation Preview version 14.0.0 - 14.0.0) <F0B42349-86B6-489E-A1ED-62DAB50BB12F> /Applications/Adobe Illustrator CS4/*/SeparationPreview
    0xff64000 -  0xff69fff +com.adobe.illustrator.plugins.PathSuite (PathConstruction Suite version 14.0.0 - 14.0.0) <667209A1-821D-468E-B3F5-67ADCC0A5B59> /Applications/Adobe Illustrator CS4/*/PathSuite
    0xff6d000 -  0xff93fdf +com.adobe.illustrator.plugins.LiveBlends (Live Blends version 14.0.0 - 14.0.0) <5949CA4F-0265-4001-827A-FDF67CE6E1C4> /Applications/Adobe Illustrator CS4/*/LiveBlends
    0xff98000 -  0xffc6fcf +com.adobe.illustrator.plugins.Layers (Layers Palette version 14.0.0 - 14.0.0) <F13985B8-7110-4AC4-A93B-30A650274B81> /Applications/Adobe Illustrator CS4/*/Layers
    0xffce000 -  0xffe4fef +com.adobe.illustrator.plugins.KBSCPlugin (Keyboard Shortcuts version 14.0.0 - 14.0.0) <8BA6912E-AC74-4FCE-97FF-02BF2F81958D> /Applications/Adobe Illustrator CS4/*/KBSCPlugin
    0xffeb000 -  0xffecfff +com.adobe.illustrator.plugins.FlattenS (Flatten Suite version 14.0.0 - 14.0.0) <34B0A010-1099-474C-9B2B-4D923FB10287> /Applications/Adobe Illustrator CS4/*/FlattenS
    0xfff0000 -  0xfff6feb +com.adobe.illustrator.plugins.FileClipboardPref (FileClipboardPref version 14.0.0 - 14.0.0) <A968F7DC-F8B2-46A3-8C78-1D129B37588E> /Applications/Adobe Illustrator CS4/*/FileClipboardPref
    0xfffa000 - 0x10056fd2 +com.adobe.illustrator.plugins.ArtStyle (Art Style version 14.0.0 - 14.0.0) <DAA8C2E9-65A7-40ED-B8D5-FF78F297EDA6> /Applications/Adobe Illustrator CS4/*/ArtStyle
    0x10062000 - 0x10071ff3 +com.adobe.illustrator.plugins.AppBarControlsPlugin (NewPlugin version 14.0.0 - 14.0.0) <C50066DB-5E97-4C95-AECB-BD0A1BBD2769> /Applications/Adobe Illustrator CS4/*/AppBarControlsPlugin
    0x10077000 - 0x100a7ffb +com.adobe.illustrator.plugins.AltGlyphPal (AdobeAltGlyphPalette version 14.0.0 - 14.0.0) <FC1467B2-2A62-408E-A38D-A1F8EC209A52> /Applications/Adobe Illustrator CS4/*/AltGlyphPal
    0x100b8000 - 0x100c9ff6 +com.adobe.illustrator.plugins.Align (AdobeAlignObjects version 14.0.0 - 14.0.0) <1E8046C8-EAE8-445B-83F3-B2AF0F4D3452> /Applications/Adobe Illustrator CS4/*/Align
    0x100ce000 - 0x10105fff +com.adobe.illustrator.plugins.ActionPalette ( Action Palette version 14.0.0 - 14.0.0) <49FF537C-26F4-450A-B7DE-59859F5A6DC0> /Applications/Adobe Illustrator CS4/*/ActionPalette
    0x1010f000 - 0x101a4fc1 +com.adobe.illustrator.plugins.PDF Format (PDF Format version 14.0.0 - 14.0.0) <C88425A7-C3DA-493B-AC3E-48AB988A3CD4> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/PDF Format.aip/Contents/MacOS/PDF Format
    0x101c2000 - 0x10211ff3 +FilterPort (??? - ???) <7CF9F9BD-8C11-4F4C-A56F-D02923DA26C4> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/FilterPort.framework/Versions/A/FilterPort
    0x102b0000 - 0x102f3fef +ADMEveParserCarbon (??? - ???) <E2B97059-2ECE-46E3-B0FA-E99EA7035CEC> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/ADMEveParserCarbon.bundle/Contents/MacOS/ADME veParserCarbon
    0x1030d000 - 0x10315feb +com.adobe.illustrator.plugins.TextWrapDlg (TextWrapDlg version 14.0.0 - 14.0.0) <98A0EA55-C4D8-4204-9573-61592D2660A1> /Applications/Adobe Illustrator CS4/*/TextWrapDlg
    0x10319000 - 0x10326fff +com.adobe.illustrator.plugins.Advanced Select (Advanced Select version 14.0.0 - 14.0.0) <C0673233-D6ED-4333-B8DC-1EDB6B9436B0> /Applications/Adobe Illustrator CS4/*/Advanced Select
    0x1033b000 - 0x1033ffff +com.adobe.illustrator.plugins.TypeCase (Change Case version 14.0.0 - 14.0.0) <7DF88FF2-4C03-499F-A390-0C4D9C17B27D> /Applications/Adobe Illustrator CS4/*/TypeCase
    0x1344c000 - 0x13aeefef +com.macromedia.Flash Player.authplaylib (10.0.2.31 - 1.0.1d333) <E0851D48-16C9-4BDC-B3A7-7BAC9E7638F5> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeOwl.framework/Resources/AuthPlayLib.bu ndle/Contents/MacOS/AuthPlayLib
    0x13c37000 - 0x13c63ff3  com.apple.audio.CoreAudioKit (1.6.3 - 1.6.3) <7D47B1D3-4410-3524-BC47-FCDF49E48DB5> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0x14d0c000 - 0x14d64fff +com.DivXInc.DivXDecoder (6.8.4.3 - 6.8.4) <26A406B3-E4BC-C6FF-8F28-A99FFEB5CF2D> /Library/QuickTime/DivX Decoder.component/Contents/MacOS/DivX Decoder
    0x15c2e000 - 0x15c8aff2 +AdobeUpdater (??? - ???) <064CFAA4-1CAF-46E3-BEBF-04948641C927> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeUpdater.framework/Versions/A/AdobeUpda ter
    0x15f00000 - 0x16382fe3 +AdobeLM_libFNP.dylib (??? - ???) <02E9AC76-9CC6-4974-AF05-48E737C2CC20> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/amtlib.framework/Versions/A/AdobeLM_libFNP. dylib
    0x16600000 - 0x16707fcf +com.adobe.versioncue (??? - 4.0.1.095) /Library/Application Support/Adobe/*/VersionCue.framework/VersionCue
    0x16853000 - 0x168aefe7 +com.adobe.illustrator.plugins.PDF Suite (PDF Suite version 14.0.0 - 14.0.0) <586E2428-342D-4C78-89F0-56A0FD10246A> /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Required/Plug-ins/PDF Suite.aip/Contents/MacOS/PDF Suite
    0x40000000 - 0x400ae030 +AdobeJP2K (??? - ???) /Applications/Adobe Illustrator CS4/Adobe Illustrator.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x8fe8e000 - 0x8fec0aa7  dyld (195.6 - ???) <3A866A34-4CDD-35A4-B26E-F145B05F3644> /usr/lib/dyld
    0x90005000 - 0x90021ff5  com.apple.GenerationalStorage (1.0 - 126.1) <E622F823-7D98-3D13-9C3D-7EA482567394> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x9007e000 - 0x9014effb  com.apple.ImageIO.framework (3.1.2 - 588) <1AA18570-B5F8-3B1E-9D0A-0EDD866E5131> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x90151000 - 0x9016efff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <2870320A-28DA-3B44-9D82-D56E0036F6BB> /usr/lib/libresolv.9.dylib
    0x9016f000 - 0x9019eff7  libsystem_info.dylib (??? - ???) <37640811-445B-3BB7-9934-A7C99848250D> /usr/lib/system/libsystem_info.dylib
    0x9019f000 - 0x90200ffb  com.apple.audio.CoreAudio (4.0.3 - 4.0.3) <7A14BE52-6789-3CE3-9AE9-B733F4903EB1> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x90210000 - 0x90210fff  com.apple.audio.units.AudioUnit (1.7.3 - 1.7.3) <2E71E880-25D1-3210-8D26-21EC47ED810C> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x90238000 - 0x902a7fff  com.apple.Heimdal (2.2 - 2.0) <8ACC5067-441D-31C2-ACBD-4527C1AD73EF> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x902a8000 - 0x902b1ff3  com.apple.CommonAuth (2.2 - 2.0) <6F207851-084B-3354-A1B2-63065BC584F6> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x90587000 - 0x90c13ff5  com.apple.CoreAUC (6.16.12 - 6.16.12) <9D51400F-B827-3BA7-87F5-954A1CDDAEA9> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x90c14000 - 0x90c1afff  libGFXShared.dylib (??? - ???) <9C9834EB-B794-38C8-9B90-31D8CB234F86> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x90c1b000 - 0x90c1bfff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <22997C20-BEB7-301D-86C5-5BFB3B06D212> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x90c1c000 - 0x90c39ff3  com.apple.openscripting (1.3.3 - ???) <0579A4CB-FD6F-3D7F-A17B-AC0F2CF11FC7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x90c3a000 - 0x90c48ff7  libxar-nossl.dylib (??? - ???) <5BF4DA8E-C319-354A-967E-A0C725DC8BA3> /usr/lib/libxar-nossl.dylib
    0x90e4d000 - 0x90e51ff3  libsystem_network.dylib (??? - ???) <62EBADDA-FC72-3275-AAB3-5EDD949FEFAF> /usr/lib/system/libsystem_network.dylib
    0x90ea5000 - 0x90eadfff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <28D5D8B5-14E8-3DA1-9085-B9BC96835ACF> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x90ef0000 - 0x90ef3ff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <16DCE20A-9790-369A-94C1-B7954B418C77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x90ef4000 - 0x90f81ff7  com.apple.CoreText (220.22.0 - ???) <EA7210A7-DECC-3F76-8A66-D4E41859B3C6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90f82000 - 0x91a17ff6  com.apple.AppKit (6.7.5 - 1138.51) <B9D3DCA0-9765-354E-9730-75A45A97DDFD> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x91a18000 - 0x91a80fff  libc++.1.dylib (28.4.0 - compatibility 1.0.0) <B24814AB-CA77-3B9D-8FAB-58C9B4FD3A16> /usr/lib/libc++.1.dylib
    0x91c89000 - 0x91c94ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <D6E17FD4-ECA0-3EEE-BFC5-F6A42A21AB5D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x91c95000 - 0x91cbaff9  libJPEG.dylib (??? - ???) <0E0B7B77-582B-3D85-9CCA-ACFBCF196C98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x91cbb000 - 0x91d5ffff  com.apple.QD (3.40.1 - ???) <B5650C5E-AB41-3758-84A1-5A97EDCD8EFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x91d60000 - 0x91dfcfff  com.apple.ink.framework (10.7.5 - 113) <05CAFB64-D3B8-3973-87EA-CB8BBE580F6B> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x91f45000 - 0x91f47ff9  com.apple.securityhi (4.0 - 1) <39157216-5E43-392A-AE3F-716726D8C8BF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x91f48000 - 0x91f49ff7  libsystem_sandbox.dylib (??? - ???) <036370E2-9D3E-38B8-B3A5-9056C57E780E> /usr/lib/system/libsystem_sandbox.dylib
    0x91f81000 - 0x91f81fff  libOpenScriptingUtil.dylib (??? - ???) <E4C22B65-9493-31D5-9D46-19BD70975587> /usr/lib/libOpenScriptingUtil.dylib
    0x91f82000 - 0x91f83ff7  libquarantine.dylib (36.7.0 - compatibility 1.0.0) <46980EC2-149D-3CF7-B29A-401FB89C275D> /usr/lib/system/libquarantine.dylib
    0x91f84000 - 0x91f88ffd  IOSurface (??? - ???) <EDDBEE65-1EB8-33A7-9972-E361A3508234> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x91f89000 - 0x91fbfff7  com.apple.AE (527.7 - 527.7) <7BAFBF18-3997-3656-9823-FD3B455056A4> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9232f000 - 0x92344ff7  com.apple.ImageCapture (7.1.0 - 7.1.0) <E5FCA336-7E47-343E-A82D-CCCA5BCD5929> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x92345000 - 0x923ccfff  com.apple.print.framework.PrintCore (7.1 - 366.3) <EEC03CAB-7F79-3931-87FE-4DF0B767BF47> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x923cd000 - 0x9245afe7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <F2A8BBA3-6431-3CED-8CD3-0953410B6F96> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x9245d000 - 0x924c1fff  com.apple.framework.IOKit (2.0 - ???) <94827954-5906-36C4-819B-24CDAFD85C72> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x924c2000 - 0x924e4ff8  com.apple.PerformanceAnalysis (1.11 - 11) <453463FF-7C42-3526-8C96-A9971EE07154> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x924e5000 - 0x9250fff1  com.apple.CoreServicesInternal (113.20 - 113.20) <13FA1378-67CB-3579-BF83-D11E9425799F> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x9256d000 - 0x92765ff7  com.apple.CoreData (104.1 - 358.14) <C1730963-F75D-3338-B65F-D50235538B28> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x92766000 - 0x9276eff3  liblaunch.dylib (392.39.0 - compatibility 1.0.0) <9E6135FF-C2B1-3BC9-A160-B32D71BFA77C> /usr/lib/system/liblaunch.dylib
    0x927a3000 - 0x927b1fff  com.apple.opengl (1.8.1 - 1.8.1) <766AFB12-A2CB-3A55-B662-FC9FFCAE0008> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x927b2000 - 0x927b6fff  libGIF.dylib (??? - ???) <2ADFED97-2228-343D-9A53-207CBFDE7984> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x927b7000 - 0x927ccfff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <92AADDB0-BADF-3B00-8941-B8390EDC931B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x927cd000 - 0x927cdff0  com.apple.ApplicationServices (41 - 41) <C48EF6B2-ABF9-35BD-A07A-A38EC0008294> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x927ce000 - 0x927e1ff8  com.apple.MultitouchSupport.framework (231.4 - 231.4) <083F7787-4C3B-31DA-B5BB-1993D9A9723D> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x92b0f000 - 0x92b13ffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <56256537-6538-3522-BCB6-2C79DA6AC8CD> /usr/lib/system/libcache.dylib
    0x92e5b000 - 0x92e5dffb  libRadiance.dylib (??? - ???) <4721057E-5A1F-3083-911B-200ED1CE7678> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x92e5e000 - 0x92e68ff2  com.apple.audio.SoundManager (3.9.4.1 - 3.9.4.1) <2A089CE8-9760-3F0F-B77D-29A78940EA17> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x92ee8000 - 0x92ee9ff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <2F4B35B2-706C-3383-AA86-DABA409FAE45> /usr/lib/system/libunc.dylib
    0x92eea000 - 0x92eeafff  com.apple.vecLib (3.7 - vecLib 3.7) <8CC

  • I am having same problem with apple tv need 4.4 version and can not find solution this a brand new product out of box yesterday why would it not already have updated version. I am getting frustrated that I can not get this mirroring icon to work. I

    I am having same problem with apple tv need 4.4 version and can not find solution this a brand new product out of box yesterday why would it not already have updated version. I am getting frustrated that I can not get this mirroring icon to work. I have tried all suggestions in this thread and nothing works. I also hooked up to laptop through iTunes with micro USB nothing!!!

    The new appletv software came out 2 or 3 days ago, how would Apple get it on the device in the box in a store?
    Why don't ou update the appletv software?

  • The updated iPhoto program is cumbersome.  I am trying to create a Christmas card and can't figure out how to get the fold of the card on the left and not on the top of the card.  I had no trouble with this for the past two years.  Can someone help?

    The updated iPhoto program is cumbersome.  I am trying to create a Christmas card and can't figure out how to get the fold of the card on the left and not on the top of the card.  I had no trouble with this for the past two years.  Can someone help?

    Click on the Layout button lower right and choose a Vertical lyout from the dropdown

  • I can't download any apps, it keeps telling me "There is a billing problem with a previous purchanse"!  I've checked all my account info and can't figure out the prob??

    I can't download any apps, it keeps telling me "There is a billing problem with a previous purchanse"!  I've checked all my account info and can't figure out the prob??

    Contact Itunes support and ask them

  • Trouble with calculating fields. Can't select (check) fields. Also can't figure out what's wrong with a division field (percent) that I created. Keep getting the pop up that format of the field doesn't allow blah blah blah... Help!

    Trouble with calculating fields. Can't select (check) fields. Also can't figure out what's wrong with a division field (percent) that I created. Keep getting the pop up that format of the field doesn't allow blah blah blah... Help!

    1. Use the mouse to select the field and then press the space bar.
    2. A null string is the same as zero. What is the result for division by zero?

  • I just got a fc7 yamaha expression pedal and can't figure out how to configure it with mainstage or logic.

    I just got a fc7 yamaha expression pedal and can't figure out how to configure it with mainstage or logic.  I'm using a Gio pedal.

    Hi
    You will need to map the "Expression Pedal" to the Waa pedal. There are several ways you could do it, here's one:
    In Layout Mode, add a Pedal Screen control, and Assign it to the in-coming MIDI from the GiO.
    In Edit mode, select the Screen Control, and click the "Map Parameter" button. While this is active click on the Wah pedal in the PedalBoard plugin. Turn off 'Map Parameter".
    CCT

  • Ipod classic says when trying to sync, Problems with this drive. Scan the drive and fix it ...what do i have to do?

    When trying to sync my ipod classic I get an error message " owners IPO (I)...Problems with this drive..Scan the drive and fix it now.....How am i supposed to scan the drive and fix it?

    Hi chiefdon,
    If you are having syncing and possibly disk issues with your iPod classic, you may find the steps outlined in the following Troubleshooting Assistant helpful:
    Apple Support: iPod classic Troubleshooting Assistant
    http://www.apple.com/support/ipod/five_rs/classic/
    Regards,
    - Brenden

  • I can't figure out what's wrong with this code

    First i want this program to allow me to enter a number with the EasyReader class and depending on the number entered it will show that specific line of this peom:
    One two buckle your shoe
    Three four shut the door
    Five six pick up sticks
    Seven eight lay them straight
    Nine ten this is the end.
    The error message i got was an illegal start of expression. I can't figure out why it is giving me this error because i have if (n = 1) || (n = 2) statements. My code is:
    public class PoemSeventeen
    public static void main(String[] args)
    EasyReader console = new EasyReader();
    System.out.println("Enter a number for the poem (0 to quit): ");
    int n = console.readInt();
    if (n = 1) || (n = 2)
    System.out.println("One, two, buckle your shoe");
    else if (n = 3) || (n = 4)
    System.out.println("Three, four, shut the door");
    else if (n = 5) || (n = 6)
    System.out.println("Five, six, pick up sticks");
    else if (n = 7) || (n = 8)
    System.out.println("Seven, eight, lay them straight");
    else if (n = 9) || (n = 10)
    System.out.println("Nine, ten, this is the end");
    else if (n = 0)
    System.out.println("You may exit now");
    else
    System.out.println("Put in a number between 0 and 10");
    I messed around with a few other thing because i had some weird errors before but now i have narrowed it down to just this 1 error.
    The EasyReader class code:
    // package com.skylit.io;
    import java.io.*;
    * @author Gary Litvin
    * @version 1.2, 5/30/02
    * Written as part of
    * <i>Java Methods: An Introduction to Object-Oriented Programming</i>
    * (Skylight Publishing 2001, ISBN 0-9654853-7-4)
    * and
    * <i>Java Methods AB: Data Structures</i>
    * (Skylight Publishing 2003, ISBN 0-9654853-1-5)
    * EasyReader provides simple methods for reading the console and
    * for opening and reading text files. All exceptions are handled
    * inside the class and are hidden from the user.
    * <xmp>
    * Example:
    * =======
    * EasyReader console = new EasyReader();
    * System.out.print("Enter input file name: ");
    * String fileName = console.readLine();
    * EasyReader inFile = new EasyReader(fileName);
    * if (inFile.bad())
    * System.err.println("Can't open " + fileName);
    * System.exit(1);
    * String firstLine = inFile.readLine();
    * if (!inFile.eof()) // or: if (firstLine != null)
    * System.out.println("The first line is : " + firstLine);
    * System.out.print("Enter the maximum number of integers to read: ");
    * int maxCount = console.readInt();
    * int k, count = 0;
    * while (count < maxCount && !inFile.eof())
    * k = inFile.readInt();
    * if (!inFile.eof())
    * // process or store this number
    * count++;
    * inFile.close(); // optional
    * System.out.println(count + " numbers read");
    * </xmp>
    public class EasyReader
    protected String myFileName;
    protected BufferedReader myInFile;
    protected int myErrorFlags = 0;
    protected static final int OPENERROR = 0x0001;
    protected static final int CLOSEERROR = 0x0002;
    protected static final int READERROR = 0x0004;
    protected static final int EOF = 0x0100;
    * Constructor. Prepares console (System.in) for reading
    public EasyReader()
    myFileName = null;
    myErrorFlags = 0;
    myInFile = new BufferedReader(
    new InputStreamReader(System.in), 128);
    * Constructor. opens a file for reading
    * @param fileName the name or pathname of the file
    public EasyReader(String fileName)
    myFileName = fileName;
    myErrorFlags = 0;
    try
    myInFile = new BufferedReader(new FileReader(fileName), 1024);
    catch (FileNotFoundException e)
    myErrorFlags |= OPENERROR;
    myFileName = null;
    * Closes the file
    public void close()
    if (myFileName == null)
    return;
    try
    myInFile.close();
    catch (IOException e)
    System.err.println("Error closing " + myFileName + "\n");
    myErrorFlags |= CLOSEERROR;
    * Checks the status of the file
    * @return true if en error occurred opening or reading the file,
    * false otherwise
    public boolean bad()
    return myErrorFlags != 0;
    * Checks the EOF status of the file
    * @return true if EOF was encountered in the previous read
    * operation, false otherwise
    public boolean eof()
    return (myErrorFlags & EOF) != 0;
    private boolean ready() throws IOException
    return myFileName == null || myInFile.ready();
    * Reads the next character from a file (any character including
    * a space or a newline character).
    * @return character read or <code>null</code> character
    * (Unicode 0) if trying to read beyond the EOF
    public char readChar()
    char ch = '\u0000';
    try
    if (ready())
    ch = (char)myInFile.read();
    catch (IOException e)
    if (myFileName != null)
    System.err.println("Error reading " + myFileName + "\n");
    myErrorFlags |= READERROR;
    if (ch == '\u0000')
    myErrorFlags |= EOF;
    return ch;
    * Reads from the current position in the file up to and including
    * the next newline character. The newline character is thrown away
    * @return the read string (excluding the newline character) or
    * null if trying to read beyond the EOF
    public String readLine()
    String s = null;
    try
    s = myInFile.readLine();
    catch (IOException e)
    if (myFileName != null)
    System.err.println("Error reading " + myFileName + "\n");
    myErrorFlags |= READERROR;
    if (s == null)
    myErrorFlags |= EOF;
    return s;
    * Skips whitespace and reads the next word (a string of consecutive
    * non-whitespace characters (up to but excluding the next space,
    * newline, etc.)
    * @return the read string or null if trying to read beyond the EOF
    public String readWord()
    StringBuffer buffer = new StringBuffer(128);
    char ch = ' ';
    int count = 0;
    String s = null;
    try
    while (ready() && Character.isWhitespace(ch))
    ch = (char)myInFile.read();
    while (ready() && !Character.isWhitespace(ch))
    count++;
    buffer.append(ch);
    myInFile.mark(1);
    ch = (char)myInFile.read();
    if (count > 0)
    myInFile.reset();
    s = buffer.toString();
    else
    myErrorFlags |= EOF;
    catch (IOException e)
    if (myFileName != null)
    System.err.println("Error reading " + myFileName + "\n");
    myErrorFlags |= READERROR;
    return s;
    * Reads the next integer (without validating its format)
    * @return the integer read or 0 if trying to read beyond the EOF
    public int readInt()
    String s = readWord();
    if (s != null)
    return Integer.parseInt(s);
    else
    return 0;
    * Reads the next double (without validating its format)
    * @return the number read or 0 if trying to read beyond the EOF
    public double readDouble()
    String s = readWord();
    if (s != null)
    return Double.parseDouble(s);
    // in Java 1, use: return Double.valueOf(s).doubleValue();
    else
    return 0.0;
    Can anybody please tell me what's wrong with this code? Thanks

    String[] message = {
        "One, two, buckle your shoe",
        "One, two, buckle your shoe",
        "Three, four, shut the door",
        "Three, four, shut the door",
        "Five, six, pick up sticks",
        "Five, six, pick up sticks",
        "Seven, eight, lay them straight",
        "Seven, eight, lay them straight",
        "Nine, ten, this is the end",
        "Nine, ten, this is the end"
    if(n>0)
        System.out.println(message[n]);
    else
        System.exit(0);

  • Can't figure out what is wrong with recovery DVDs

    Last year, right after turning my laptop ON, I've created 4 DVDs as such: http://i56.tinypic.com/6i79rn.jpg
    Recovery DVD Disk 1
    Recovery DVD Disk 2
    Recovery DVD Disk 3
    Windows Recovery Environment 64-bit
    My Laptop is Qosmio F60-14R, with Windows 7 Home Premium.
    Now all I want to do is format my laptop and re-install windows 7 Home premium using those 4 DVDs. However I can't figure out why I cannot re-install or get the laptop back to the factory state.
    This have wasted 8 hours straight of my time and frustrated me by great deal. Can you kindly tell me what I have to do? I am lost!

    Here is what I have done so far:
    I inserted 'Windows Recovery Environment (64-bit)' DVD and booted the laptop from it.
    First thing that loads up is a window with two options:
    - Toshiba Recovery Wizard
    - System Recovery Options
    Taking Toshiba Recovery Wizard as choice, clicking Next.
    It asks me: "Please set 1st Recovery Media and press Next to Continue.
    So, I insert Recovery DVD 1 and then click Next. However it ejects the disc drive (seems Recovery DVD 1 is not the correct Disk!).
    So I repeat the same process with Recovery DVD 2 and Recovery DVD 3 and again the Disk Drive ejects the Disks.... As a desperation attempt I even put the Windows Recovery Environment Disk inside but that as well get ejected.
    Okay, so the Toshiba Recovery Wizard is not the right choice 'it seems'.
    So, I restart the laptop and inserted 'Windows Recovery Environment (64-bit)' DVD and booted the laptop from it.
    First thing that loads up is a window with two options: (First choice failed, now trying second choice)
    - --Toshiba Recovery Wizard--
    - System Recovery Options
    So, choosing System Recovery Options this time and clicking Next. I Choose US as Keyboard, then click Next. A small window appears which gives me two further options:
    - Use Recovery tools that can help fix problems starting Windows. Select an Operating System to repair.
    - Restore your computer using a system image that you created earlier.
    So, I already tried the first choice and it takes me to another window with several recovery tools. One of the tools is System Image Recovery but when I click it, it gives a Warning messagebox that says:
    Windows cannot find a system image on this computer. etc.
    But when I insert every disk, still the warning messagebox shows up as if all the four recovery DVDs are irrelevant.
    So, it seems the first choice doesn't lead me anywhere. So, remains the second choice:
    - Restore your computer using a system image that you created earlier.
    Turns out it is exactly the same 'System Image Recovery' from first option mentioned few lines earlier. So, there you have it, checkmate.
    Please guide.

  • How can I figure out what my password is and keep it unlocked?  Every time I do a system update, it requires the password and sends me into cyber trouble with the remember my keychain access, requiring it every time I log in.  A real hassle to be avoided

    How can I find out what my password on the computer is?  I had to change it due to my teenagers helping themselves, and now every time there is a system update, I have to have the password, which I cannot remember or find.  It then wants it every time I log in and pops up Key Chain Access as well.  Very annoying.  I do not have the disc to reload it and fear I would loose everything on my computer as there is also trouble with the back up system.  Too many issues and not enough solutions.  Many thanks in advance!

    I do not have the disc to reload
    Why not?  You need your system dvds to troubleshoot & to reset/change passwords in view of your current OS listed in your  profile. 
    You can get replacement System Install & Restore CD/DVDs from Apple's Customer Support - in the US, (800) 767-2775 - for a nominal S&H fee. You'll need to have the model and/or serial number of your Mac available.
    If you're not in the US, you may need to go through the regional Apple Store that serves your location to find the contact number. Here's a list of links to all of those - http://store.apple.com/Catalog/US/Images/intlstoreroutingpage.html Another resource:  International Support Phone #s.
    ===============
    I have to have the password, which I cannot remember or find.
    When selecting passwords, make sure it's one that you will NEVER forget AND no one else can figure out. 
    Old school--- > Print it out & keep in a safe place.  A place that ONLY you know about AND never forget.
    New school---> Get a password manager utility.  Highly recommend 1Password which is shareware.  Do a Google search for free password managers.

Maybe you are looking for