Going thru code multiple times.

I have 50 years experience a procedural programmer & about 3 years as an OO programmer using Java so my Java Code is not what I would like it to be.
A menu Class named Menu invokes a class named Jobs which in turn Invokes a class named KeyPhrases.
The KeyPhrases class tests which buttons are pressed to decide what to do. For some reason this logic is gone thru the number of times the class Jobs is selected from the class Menu.
Menu code
( Class.forName(sceenButtonClassNames[buttonNumber]).newInstance()).startup( args);Jobs Code
public class Jobs
     public String startup( Args theArgs)
        if (ujPresent)
             jobs.clear();
        else
             uj = new Jobs(true);
     ujPresent = true;
         uj.c400_processExistingJob();
    private void        c400_processExistingJob()
          KeyPhrases.main(job, null,null, DSNPrefix, "Change");
    }KeyPhrases
public class KeyPhrases extends JPanel implements ActionListener, PersonalDataConstants, FileAndClassNames
public void actionPerformed(ActionEvent e)
     Object source = e.getSource();
     String paramString =  e.paramString();
     if (b300_NewTransation(paramString))     
          b200_WriteTransation(paramString);
          b400_ProcessButtons(source);
private void b400_ProcessButtons(Object theSource)
     Object source = theSource;
     if (source == buttonAdd)
    else if (source == buttonDelete)
   else if (source == buttonDone)
    }the b400_.... code is what is gone thru multiple times depending upon the number of times Jobs is chosen from Menu
Feel free to insult my knowledge of Java but please leave some suggestions.

Here is my first attempt at the SSCCE.
1. All the code is in a package named menu.
2. The code consists of;
a. An Interface named DontKnow.
b. A class named MenuButton.
c. A class named Menu containing a main method. This class also contains 13 subclasses which Menu transfers to.
d. These subclasses may have to be standalone classes to get a real test.
3. To stop the test click the red button ( This was written on a Mac.)
package menu;
import java.awt.Dimension;
import java.awt.GridLayout;
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import javax.swing.JDialog;
import javax.swing.JLabel;
import javax.swing.JPanel;
public class Menu  extends JPanel implements ActionListener
    private static final long serialVersionUID = 1L;
    static JDialog jDialog = null;
    static int frameHeight = 650;
    static int frameWidth = 550;
    static int numOfButtons;
    static MenuButton[] buttons;
    static JLabel[] buttonLabel;
    static String[] buttonNames =
       {"Input/Update Job To Apply For",
          "Construct Resume",     
          "The List of Resumes Constructed",
          "Update Personal Data"         ,
          "Update Education Data"      ,
          "Update Work History"          ,
          "Update Professional Profile",
          "Update Skills"                       ,
          "Update PARs"                ,
          "Update References"                  ,
          "Update Verbs",
          "Update 'Ignore Key Phrase' List",
          "Restore, Initialize",
         "Exit Program"
        final String [] sceenButtonClassNames =
             "menu.Jobs",
             "menu.Controller"  ,
             "menu.ResumeList"        ,
             "menu.PersonalData",
             "menu.EducationData",
             "menu.WorkHistory" ,
             "menu.PersonalProfile",
             "menu.Skills"      ,
             "menu.PARs",
             "menu.References"  ,
             "menu.Words",
             "menu.Words"              ,
             "menu.BackupEtc",
     public Menu()
         numOfButtons  = buttonNames.length;
         buttons = new MenuButton[numOfButtons];
        buttonLabel = new JLabel[numOfButtons];
        int verticalGap = 8;
        int horizontalGap = 1;
        JPanel menuPanel = new JPanel();
        menuPanel.setPreferredSize(new Dimension(frameWidth - 10,frameHeight - 50));
        menuPanel.setLayout(new GridLayout(0,1,horizontalGap,verticalGap));
     int[] indexes = {0,1,2,3,4,5,6,7,8,9,10,11,12};
         for (final int buttonNumber : indexes )
              buttons[buttonNumber] = new MenuButton(  )
                private static final long serialVersionUID = 1L;
             public void run() 
               try
                   ((DontKnow) Class.forName(sceenButtonClassNames[buttonNumber]).newInstance()).startup( );
               } catch (Exception e)
                    e.printStackTrace();
                     jDialog.setMinimumSize(new Dimension(frameWidth, frameHeight));
              buttons[buttonNumber].setText(buttonNames[buttonNumber]);
              buttons[buttonNumber].addActionListener(this);
              buttonLabel[buttonNumber] = new JLabel(buttonNames[buttonNumber]);
              menuPanel.add(buttons[buttonNumber]);
       add(menuPanel);             
        public final void actionPerformed(ActionEvent e)
             Object source = e.getSource();
             MenuButton menuButton =  (MenuButton)source;
             if (source instanceof MenuButton)
                 (menuButton).run();
     public static void main(String[] args)
          System.out.println("Starting Menu");
         jDialog  = new JDialog(jDialog, ", Testing of Menu");
        jDialog.setResizable(true);
        jDialog.setModal(true);
        jDialog.setContentPane(new Menu());
        jDialog.setDefaultCloseOperation(JDialog.DISPOSE_ON_CLOSE);
        jDialog.setLocation(500, 50);  // Position of box on screen
        jDialog.setSize( frameWidth, frameHeight);
        jDialog.setVisible(true);
final class Jobs  implements DontKnow
     public String startup()
          System.out.println("**Jobs**");
          return "";
final class Controller implements DontKnow
     public String startup()
          System.out.println("Controller");
          return "";
final class ResumeList implements DontKnow
     public String startup()
          System.out.println("ResumeList");
          return "";
final class PersonalData implements DontKnow
     public String startup()
          System.out.println("PersonalData");
          return "";
final class EducationData implements DontKnow
     public String startup()
          System.out.println("EducationData");
          return "";
final class WorkHistory implements DontKnow
     public String startup()
          System.out.println("WorkHistory");
          return "";
final class PersonalProfile implements DontKnow
     public String startup()
          System.out.println("PersonalProfile");
          return "";
final class Skills implements DontKnow
     public String startup()
          System.out.println("Skills");
          return "";
final class PARs implements DontKnow
     public String startup()
          System.out.println("PARs");
          return "";
final class References implements DontKnow
     public String startup()
          System.out.println("References");
          return "";
final class Words implements DontKnow
     public String startup()
          System.out.println("Jobs");
          return "";
final class BackupEtc implements DontKnow
     public String startup()
          System.out.println("BackupEtc");
          return "";
}Thank you very much.

Similar Messages

  • Running the same code multiple times with different paramters automatica​lly

    Hi guys,
    I want to run the same code multiple times with different paramters automatically. Actually, I am doing some sample scans which takes around 2 hours n then I have to be there to change the paramters and run it again. Mostly I do use folowing paramters only
    X_Intial, X_Final, X-StepSize
    Y_Intial, Y_Final, Y-StepSize
       Thanks,
    Dushyant

    All you have to di is put all of the parameters for each run into a cluster array. Surround your main program with a for loop and wire the cluster array through the for loop. A for loop will autoindex an input array so inside the for loop you just have to unbundle the cluster to get the parameters for each run.
    Message Edited by Dennis Knutson on 07-13-2006 07:50 AM
    Attachments:
    Cluster Array.JPG ‏9 KB

  • Just bought a new iphone4 and was loading os6 and now it won't turn on. the apple glows like it is starting up, then the screen goes black and then repeats the same process over and over. i have tried to reboot multiple times now

    just bought a new iphone4 and was loading os6 and now it won't turn on. the apple glows like it is starting up, then the screen goes black and then repeats the same process over and over. i have tried to reboot multiple times now

    I am assuming the phone was working prior to you installing IOS 6? Did you use itunes to install IOS 6 or just run from the phone?
    When I tried to do the Over The Air update to IOS6 on my iPhone 4, it errored out and I had to connect it to iTunes and select "Restore" from the summary screen after iTunes finds the phone is connected. If this works for you, it will go through a couple of reboots that take a few minutes to complete. It should then give you the option to start with a fresh new phone or to use one of your previous backups to load your contacts and other information, provided you have backed up the phone previously.
    I hope this helps you my friend!

  • I have an iPod Classic 160GB and now it will not sync.  I have restored to factory settings multiple times.  It freezes during sync, gives -50 error code and says video is not supported on iPod.  Please help.

    I have an iPod Classic 160GB and now it will not sync.  I have restored to factory settings multiple times.  It freezes during sync, gives -50 error code and says video is not supported on iPod.  Please help.

    This is the iPod touch forum. I requested the moderators to move your post to the iPod classic forum.

  • HT202157 I just updated software for my Apple TV device; I am trying to set up internet access via Wi-fi; I keep getting the message my internet password is incorrect even though I know the code is right and have tried it multiple times. Any suggestions?

    I just updated my software for Apple TV; I keep getting the message that my password is incorrect, I know the code is correct and I have tried it multiple times. Apple TV worked fine before the upgrade. Any suggestions?

    Then contact iTunes:
    Apple - Support - iTunes - Contact Us

  • My ipod touch wont turn back on. i turned it off because it was being slow and laggy and when i try to turn it back on the apple icon flashes the the screen goes blank again. i tried resetting it and turning it off and on multiple times but nothing works

    my ipod touch was being laggy and slow so i turned it off and now it wont turn back on. i have tried charging it resetting it and turning it off and on all multiple times but nothing seems to work. the apple icon shows but after a few seconds the screen goes dark again. there are no sounds or flashes just the apple icon then nothing. help please?

    Try here:
    iOS: Not responding or does not turn on

  • Unable to download using Vista; FF goes to run or save; I've selected both; download goes thru "downloading" and then disappears; can't find anywhere; have tried this many, many times on two identical computer setups.

    Have tried many times to download both Firefox and Thunderbird on two 2-year old, rarely used, identical computers, both using Vista. (I downloaded both successfully on an old computer using XP.) The program goes thru the downloading process; alternately I've told it to "run", "save", "save to desktop", "save to my documents folder on desktop." It disappears when through downloading. I've checked in these folders plus temporary folder as found through "tools/internet options. I've tried to find these downloads by using "run" and using every word I can think of to help find them (temporary folder/or User/my name/firefox 3.6.9.ext and others. Get the message can't be found. Any help sincerely appreciated. Thank you. Jim

    A: Why won't AirPort Utility find my Netgear Router?
    AirPort Utility works only with an Apple router, as does the utility for a Netgear work only with a Netgear router.
    B: Why won't AirPort utility find my AirPort Express?
    Any of 3-4 common reasons. We'll have to work on troubleshooting that.
    C: Why, on the two occasions the AP Utility did find the APE, did it not give me the option anywhere to set it up as an EXTENDER to the current network?
    Apple designed the wireless "extend" feature on their routers to only work with other Apple routers.
    D: Is there any other way to add the APE to my network as desired without using AP Utility?
    No
    Not sure how you want to proceed at this point. It might be possible to use the AirPort Express to extend the Netgear network if you connect it using a permanent, wired Ethernet cable connection back to the Netgear router.
    If you cannot run the Ethernet cable, your best bet by far is to use another Netgear extender or repeater, which would likely be compatible with your Netgear router.

  • Same UD code is appearing multiple times at qa32?

    Hi all,
    Same UD (yb02) code is appearing multiple times (around 7 times) in qa32, kindly suggest me how that can be decreased to only one
    regards,
    Sanjana

    Dear same issue was raised by you recently and closed when you resolved so please check the link.
    multiple ud code appearing for single purpose?
    if your any requirement changes please do let us know.
    Cheers
    KK

  • IMac goes to sleep/hibernate multiple times per day after installing Maverick OS. I have to shutdown and power back on.

    iMac goes to sleep/hibernate multiple times per day after installing Maverick OS. Moving the mouse or hitting the spcaebar will not wake the pc. 
    I have to shutdown and power back on. My iMac was purchased in January 2011 and no longer in warrenty.  The energy saver 'sleep' and 'display' settings are set at 10 minutes. When I changed to 'never' the machine got very hot and I changed the settings back.  I have checks by: Put hard disk to sleep when possible and wake for network access.  Any help would be greatly appreciated. 

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

  • After restoring my ipod touch multiple times it still goes to the connect to itunes screen, freezes then goes to a white screen

    Ok so i have restored my iPod touch multiple times the restore is "successful" my iPod touch 2g goes to the connect to iTunes screen then it just freezes. After about one minute it goes to a white screen until it dies. Any ideas?

    If it does it after restoring to factory defaults/new iPod then yo have a hardware problem and an appointment at the Genius Bar of an Apple store is in order.

  • Amount comes multiple times against document number

    Hi,
    I have a query in my report that where the A/c Document numbers have the multiple line items, it goes in loop..means it print the value multiple times like: -
    5500004344...............4500
    5500004345...............5000
    5500004345...............5100
    5500004345...............5200
    5500004346...............5100
    It is taking the 5500004345 value 5100, in the 5500004346 document number.(saw in debugging time)..
    But when it have the single document number, it is showing the correct value...
    please check my code:----
    REPORT  zak_mat_pur_rudrapur_new NO STANDARD PAGE HEADING LINE-SIZE 125  .
    TABLES : mseg, ekpo, mkpf, rseg, bkpf, bseg, lfa1.
    TYPE-POOLS : slis.
    DATA : BEGIN OF itab OCCURS 0,
           belnr LIKE bkpf-belnr,
           gjahr LIKE bkpf-gjahr,
           budat LIKE bkpf-budat,
           awkey LIKE bkpf-awkey,
           belnr1(10) TYPE c,                             " LIKE rseg-belnr,
           gjahr1 LIKE rseg-gjahr,
           ebeln LIKE rseg-ebeln,
           ebelp LIKE rseg-ebelp,
           wrbtr LIKE rseg-wrbtr,
           menge LIKE rseg-menge,
           bstme LIKE rseg-bstme,
           lfbnr LIKE rseg-lfbnr,
           ebeln1 LIKE ekpo-ebeln,
           ebelp1 LIKE ekpo-ebelp,
           txz01 LIKE ekpo-txz01,
           mblnr LIKE mseg-mblnr,
           lifnr LIKE mseg-lifnr,
           lfbnr1 LIKE mseg-lfbnr,
           rate TYPE p DECIMALS 2,
           name1(40) TYPE c , " like lfa1-lifnr,
           dmbtr LIKE bseg-dmbtr,
           dmbtr1 LIKE bseg-dmbtr,
           sum TYPE p DECIMALS 2,
           sum1 TYPE p DECIMALS 2,
           rate1 TYPE p DECIMALS 2,
           lfpos LIKE rseg-lfpos,
           END OF itab.
    DATA : BEGIN OF itab2 OCCURS 0,
           belnr LIKE bkpf-belnr,
           gjahr LIKE bkpf-gjahr,
           budat LIKE bkpf-budat,
           awkey LIKE bkpf-awkey,
           belnr1(10) TYPE c,                             " LIKE rseg-belnr,
           gjahr1 LIKE rseg-gjahr,
           ebeln LIKE rseg-ebeln,
           ebelp LIKE rseg-ebelp,
           wrbtr LIKE rseg-wrbtr,
           menge LIKE rseg-menge,
           bstme LIKE rseg-bstme,
           lfbnr LIKE rseg-lfbnr,
           ebeln1 LIKE ekpo-ebeln,
           ebelp1 LIKE ekpo-ebelp,
           txz01 LIKE ekpo-txz01,
           mblnr LIKE mseg-mblnr,
           lifnr LIKE mseg-lifnr,
           lfbnr1 LIKE mseg-lfbnr,
           rate TYPE p DECIMALS 2,
           name1(40) TYPE c , " like lfa1-lifnr,
           dmbtr LIKE bseg-dmbtr,
           dmbtr1 LIKE bseg-dmbtr,
           sum TYPE p DECIMALS 2,
           sum1 TYPE p DECIMALS 2,
           rate1 TYPE p DECIMALS 2,
           lfpos LIKE rseg-lfpos,
           END OF itab2.
    DATA : w_container TYPE scrfname VALUE 'CL_GRID',
           w_cprog TYPE lvc_s_layo,
           g_repid LIKE sy-repid,
           w_save TYPE c,
           w_exit TYPE c,
           cl_grid TYPE REF TO cl_gui_alv_grid,
           cl_custom_container TYPE REF TO cl_gui_custom_container,
           it_fld_catalog TYPE slis_t_fieldcat_alv,
           wa_fld_catalog TYPE slis_t_fieldcat_alv WITH HEADER LINE ,
           layout TYPE slis_layout_alv,
           col_pos  LIKE sy-cucol ,
           alvfc TYPE slis_t_fieldcat_alv.
    SELECTION-SCREEN : BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    SELECT-OPTIONS   : belnr FOR bkpf-belnr.
    *SELECT-OPTIONS   : gjahr FOR bkpf-gjahr OBLIGATORY.
    PARAMETERS       : gjahr LIKE bkpf-gjahr OBLIGATORY.
    *SELECT-OPTIONS   : budat FOR bkpf-budat.
    SELECTION-SCREEN : END OF BLOCK b1.
    PERFORM fill_catalog1 USING:
    'LIFNR'    'ITAB2'    'Vendor',
    'NAME1'    'ITAB2'    'Name1',
    'BELNR'    'ITAB2'    'MIRO Doc. No.' ,
    'BUDAT'    'ITAB2'    'Posting Date',
    'GJAHR'    'ITAB2'    'Year',
    'BELNR1'   'ITAB2'    'A/c Doc. No.',
    'LFBNR'    'ITAB2'    'Ref. Document(103)',
    'MBLNR'    'ITAB2'    'Material Doc.(105)',
    'EBELN'    'ITAB2'    'PO Number',
    'EBELP'    'ITAB2'    'Line Item',
    'TXZ01'    'ITAB2'    'Material Text',
    'MENGE'    'ITAB2'    'Quantity',
    'BSTME'    'ITAB2'    'Unit',
    *'RATE'     'ITAB2'    'Rate',
    'RATE1'    'ITAB2'    'RATE1',
    'WRBTR'    'ITAB2'    'Amount',
    'DMBTR'    'ITAB2'    'Variance A',
    'DMBTR1'   'ITAB2'    'Variance B',
    'SUM'      'ITAB2'    'Total Amt.',
    'SUM1'      'ITAB2'    'Total Amt.1'.
    SELECT belnr gjahr budat awkey INTO CORRESPONDING FIELDS OF TABLE itab FROM bkpf WHERE belnr IN belnr AND gjahr = gjahr.
    IF sy-subrc <> 0.
      MESSAGE 'DATA NOT FOUND.' TYPE 'I'(001).
    ENDIF.
    SORT itab BY belnr.
    LOOP AT itab.
      SPLIT itab-awkey AT space INTO: itab-belnr1 itab-gjahr1.
      SELECT belnr gjahr ebeln ebelp wrbtr menge bstme lfbnr lfpos FROM rseg INTO (itab2-belnr1, itab2-gjahr1, itab2-ebeln,
                        itab2-ebelp, itab2-wrbtr, itab2-menge, itab2-bstme, itab2-lfbnr, itab2-lfpos) WHERE belnr = itab-belnr1 AND gjahr = itab-gjahr .
        itab2-belnr = itab-belnr.
        itab2-gjahr = itab-gjahr.
        itab2-budat = itab-budat.
        itab2-awkey = itab-awkey.
        SELECT SINGLE ebeln ebelp txz01 FROM ekpo INTO (itab2-ebeln1, itab2-ebelp1, itab2-txz01) WHERE ebeln = itab2-ebeln AND ebelp = itab2-ebelp.
        SELECT SINGLE mblnr lifnr FROM mseg INTO (itab2-mblnr, itab2-lifnr) WHERE lfbnr = itab2-lfbnr AND bwart EQ '105'.
        SELECT SINGLE name1 FROM lfa1 INTO itab2-name1 WHERE lifnr = itab2-lifnr .
        SELECT SINGLE dmbtr FROM bseg INTO itab2-dmbtr WHERE belnr = itab2-belnr AND gjahr = itab2-gjahr AND buzid = 'S' AND ebelp = itab2-ebelp.
        itab2-rate = itab2-wrbtr / itab2-menge.
        itab2-sum = itab2-wrbtr + itab2-dmbtr + itab2-dmbtr1.
        itab2-rate1 = itab2-sum / itab2-menge.
    *itab2-sum1 = itab2-wrbtr + itab2-dmbtr1.
        APPEND itab2.
      ENDSELECT.
    ENDLOOP.
    DATA : cnt TYPE i value 1.
    LOOP AT itab2.
    cnt = cnt + 1.
      SELECT dmbtr FROM bseg INTO itab2-dmbtr1 WHERE belnr = itab2-belnr AND gjahr = itab2-gjahr AND buzid = 'T' AND mwart = 'V'.
        MODIFY itab2 INDEX cnt TRANSPORTING dmbtr1.
        cnt = cnt + 1.
      ENDSELECT.
    ENDLOOP.
    layout-zebra = 'X' .
    layout-colwidth_optimize(1) = 'X'.
    CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
      EXPORTING
        i_callback_program = 'ZAK_MAT_PUR_RUDRAPUR_NEW'
        is_layout          = layout
        it_fieldcat        = it_fld_catalog
        i_default          = 'X'
        i_save             = 'A'
      TABLES
        t_outtab           = itab2
      EXCEPTIONS
        program_error      = 1
        OTHERS             = 2.
    IF sy-subrc <> 0.
      MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
              WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    *&      Form  FILL_CATALOG1
          text
         -->P_FIELDNAME  text
         -->P_REF_TABLE  text
         -->P_SCRTEXT    text
    FORM fill_catalog1  USING   p_fieldname TYPE any
                                p_ref_table TYPE any
                                p_scrtext   TYPE any.
      CLEAR : wa_fld_catalog.
      wa_fld_catalog-fieldname  = p_fieldname.
      wa_fld_catalog-tabname    = p_ref_table.
      wa_fld_catalog-seltext_s  = p_scrtext.
      wa_fld_catalog-seltext_m  = p_scrtext.
      wa_fld_catalog-seltext_l  = p_scrtext.
    wa_fld_catalog-do_sum     = 'X'.
      wa_fld_catalog-outputlen = 15.
      wa_fld_catalog-no_zero   = 'X'.
      APPEND wa_fld_catalog TO it_fld_catalog.
    ENDFORM.                    " fill_catalog1
    please help me....

    Thanks for reply....
    But same problem is still here...
    I copied ur code:----
    LOOP AT itab.
      CLEAR itab2.                                              "INSERT STATEMENT
    SPLIT ITAB-AWKEY AT SPACE INTO: ITAB-BELNR1 ITAB-GJAHR1. "DELETE STATEMENT
      itab-belnr1 = itab-awkey+0(10).                           "INSERT STATEMENT
      itab-gjahr1 = itab-awkey+10(4).                           "INSERT STATEMENT
      SELECT belnr gjahr ebeln ebelp wrbtr menge bstme lfbnr lfpos
        FROM rseg INTO (itab2-belnr1, itab2-gjahr1, itab2-ebeln, itab2-ebelp, itab2-wrbtr, itab2-menge, itab2-bstme, itab2-lfbnr, itab2-lfpos)
       WHERE belnr = itab-belnr1
         AND gjahr = itab-gjahr .
        itab2-belnr = itab-belnr.
        itab2-gjahr = itab-gjahr.
        itab2-budat = itab-budat.
        itab2-awkey = itab-awkey.
        SELECT SINGLE ebeln ebelp txz01 FROM ekpo INTO (itab2-ebeln1, itab2-ebelp1, itab2-txz01)WHERE ebeln = itab2-ebeln AND ebelp = itab2-ebelp.
        SELECT SINGLE mblnr lifnr FROM mseg INTO (itab2-mblnr, itab2-lifnr)WHERE lfbnr = itab2-lfbnr AND bwart EQ '105'.
        SELECT SINGLE name1 FROM lfa1 INTO itab2-name1 WHERE lifnr = itab2-lifnr .
        SELECT SINGLE dmbtr FROM bseg INTO itab2-dmbtr WHERE belnr = itab2-belnr AND gjahr = itab2-gjahr AND buzid = 'S' AND ebeln = itab2-ebeln AND ebelp = itab2-ebelp.
        itab2-rate = itab2-wrbtr / itab2-menge.
        itab2-sum = itab2-wrbtr + itab2-dmbtr + itab2-dmbtr1.
        itab2-rate1 = itab2-sum / itab2-menge.
    *itab2-sum1 = itab2-wrbtr + itab2-dmbtr1.
        APPEND itab2.
        CLEAR itab2. "INSERT STATMENT.
      ENDSELECT.
    ENDLOOP.
    Not working....plz suggest...

  • Custom tag library called multiple times

    Hi ppl ,
    I have a custom tag library which i use to populate some menu components. When i do call my custom tag library though , it is called multiple times, use case is as follows.
    I have menu tabs and menu bars which thanks to Mr.Brenden is working splendidly as so:-
    <af:menuTabs>
    <af:forEach var="menuTab" items="#{bindings.menu.vwUserMenuTabRenderer.rangeSet}">
    <af:commandMenuItem text="#{menuTab.MenuLabel}"
    shortDesc="#{menuTab.MenuHint}"
    rendered="true"
    immediate="true"
    selected="#{sessionScope.selectedMenuId == menuTab.MenuId }"
    onclick="fnSetSelectedValue('#{menuTab.MenuId}')" >
    </af:commandMenuItem>
    </af:forEach>
    </af:menuTabs>
    <af:menuBar>
    <af:forEach var="menuBar" items="#{bindings.menu.vwUserMenuBarRenderer.rangeSet}">
    <af:commandMenuItem onclick="return clickreturnvalue()"
    onmouseover="dropdownmenu(this, event,#{menuBar.MenuId}, '150px')"
    onmouseout="delayhidemenu()"
    text="#{menuBar.MenuLabel}"
    action="#{menuBar.MenuUri}"
    rendered="#{menuBar.ParentId == sessionScope.selectedMenuId}"
    immediate="true" />
    </af:forEach>
    </af:menuBar>
    </afc:cache>
    now all of this code is within a subview , and just directly below the subview tag , i have the call to my custom tag library:-
    <myCustomTagLib:menuCascade />
    only issue now is that assuming i have in all 7 menu bar components, the doStartTag is called 7 times. the relevant code within my custom tag class is as follows :-
    public int doStartTag() throws JspException {
    return (EVAL_BODY_INCLUDE);
    public int doEndTag() throws JspException {
    try {
    declareVariables();
    return EVAL_PAGE;
    }catch (Exception ioe) {
    throw new JspException(ioe.getMessage());
    and within my declareVariables method i do an out of the jscript ( out.print(jscript.toString()); ) which is a simple string generated based on certain conditions...
    now it seems to be working fine on the front end , but when i view the source of the page, i notice that the declaration is called multiple times, and this happens because the doStartTag method is called multiple times, i haven't even nested the call to the custom tag within the menu components , any clue as to whats going wrong ?
    Cheers
    K

    Hi,
    if you add the following print statement
    System.out.println("rendering "+FacesContext.getCurrentInstance().getViewRoot().getViewId());
    Then the output in my case is
    07/04/24 08:14:04 rendering /BrowsePage.jsp
    07/04/24 08:14:05 rendering /otn_logo_small.gif
    The image comes from the file system, which means it is rendered by the JSF lifecycle. If you reference the image with a URL then the lifecycle doesn't render the image but only refrences it.
    To avoid your prepare render code to be executed multiple times, just check for jsp and jspx file extensions, which will guarantee that your code only executes for JSF pages, not for loaded files.
    The reason why this happens is because the JSF filter is set to /faces , which means all files that are loaded through that path
    Frank

  • A Cocoa window which is used multiple times (for instances of a class)

    Hi everyone,
    I develop with newest xCode using Obj-C, Java and Cocoa.
    It works perfectly to create a window and connect it to some code: I just design it, and connect it to a class which has been instantiated previously.
    What I need now is a window, which is used multiple times. Means that I create a class where the window should be connected to, from which I create multiple instances.
    I've seen that it works to create a class in Obj-C and just generate the window by code: it works to generate multiple windows. But how would I be able to design a window with InterfaeBuilder for a class which is not yetinstantiated? A class for which I create the instances while my app is running?
    Thanks a lot for your answers!
    -Lucas

    Like PeeJay says, a custom window controller seems the way to go. Try creating a subclass of NSWindowController, with header something like this:
    #import <Cocoa/Cocoa.h>
    @interface MyWindowController : NSWindowController
    IBOutlet NSTextField *infoField;
    -(void)setInfoText:(NSString *)str;
    @end
    The implementation of the setInfoText would be something like:
    -(void)setInfoText:(NSString *)str{
    [infoField setStringValue:str];
    Create a nib file with your window in interface builder. Drop the header file for your custom window controller into the interface builder window. Set the custom class of the nib's File's Owner to MyWindowController. You can then hook up the window and infoField outlets from File's Owner to your window.
    In the body of your code where you open a new info window, add something like:
    MyWindowController *windowController=[[MyWindowController alloc] initWithWindowNibName:@"nameOfWindowNibFile"];
    [windowController setInfoText:@"Whatever"];
    [windowController showWindow:self];
    If you are going to have an undetermined amount of these custom window, it might be a good idea to store the window controller instances in a mutable array, rather than retaining instance variables for each one.
    Jim

  • CFSchedule firing multiple times

    Hi Everyone,
    i still have not found a solution to this. if anyone has any
    other suggestions please let me know.
    Also i would like to report this as a bug, what is the proper
    procedure for reporting this?
    thanks to all
    Tim
    Original- Hi All,
    i have had issues since upgrading from 6 to 7 with
    cfschedule. sometimes it runs fine, other times it will run the
    same task multiple times in a row, other times it will wait an hour
    then run the same task again.
    This may not sound like a big deal, but the tasks send out
    several thousands of emails. talk about spam!!
    I have been screamed at on a weekly basis to make this stop.
    Now since the the DST change, the tasks that were scheduled
    at 3pm run at 3pm and again at 4pm!!
    Please someone help!!!!!!!!!!!!!!!!!!!!!
    Thanks in advance.
    Tim

    Hi BK,
    in my task is setup to run every 15 with a start date of a
    few days ago and no end date or time.
    it calls a file on the same server via its dsn name.
    The file it calls is this:
    [code]
    <cfset testtext = "Testing st #now()#">
    <cfset testSTname = "d:\st_test_" &
    #DateFormat(now(),"yyyymmdd")#&""&#TimeFormat(now(),"HHmmss")#
    &".txt">
    <!--- <cffile action="write" file="#testSTname#"
    output="#testtext#" nameconflict="makeunique"> --->
    <cfmail to="[email protected]" from="[email protected]"
    subject="st timer test">
    #Dateformat(now(),"mm/dd/yyyy")#
    #TimeFormat(now(),"hh:mm:ss:l")#
    </cfmail>
    [/code]
    If you notice i commented out the file write. something was
    puzzling about it, it would write fine for an hour then once in
    awhile write multiples (by comparing the date created on the file
    in windows.
    I then found the calls in my IIS log file, every single call
    was done twice at exactly the same time.
    (edited for security)
    [code]
    2007-07-30 22:15:06 x.x.x.x GET /tools/test_ts.cfm - 80 -
    x.x.x.x CFSCHEDULE 200 0 0
    2007-07-30 22:15:06 x.x.x.x GET /tools/test_ts.cfm - 80 -
    x.x.x.x CFSCHEDULE 200 0 0
    2007-07-30 22:30:06 x.x.x.x GET /tools/test_ts.cfm - 80 -
    x.x.x.x CFSCHEDULE 200 0 0
    2007-07-30 22:30:06 x.x.x.x GET /tools/test_ts.cfm - 80 -
    x.x.x.x CFSCHEDULE 200 0 0
    2007-07-30 22:45:08 x.x.x.x GET /tools/test_ts.cfm - 80 -
    x.x.x.x CFSCHEDULE 200 0 0
    2007-07-30 22:45:08 x.x.x.x GET /tools/test_ts.cfm - 80 -
    x.x.x.x CFSCHEDULE 200 0 0
    [/code]
    So i decieded to make it send an email, this way there is a
    queue so to speak for the messages to be written, i think this is
    why i saw speratic multiples with cffile.
    Email 1 contents: {ts '2007-07-31 01:30:00'} 01:30:00:769
    Email 2 contents: {ts '2007-07-31 01:30:00'} 01:30:00:909
    So far, i am only getting 2 copies for every fire of the
    task, but i have seen in other tasks that email, up to 6 copies.
    i can see this in IIS Logs, the test cfm file being called at
    least twice per task for long periods, then other tasks will fire
    and i only see a single call to the test cfm file. but its next
    execution time is duplicated if there is no other tasks running
    during the same time period
    I have dug through all the logs for each task, so far all of
    the task that have no end date fire multiple times.
    I can see the results (files written, db records inserted,
    emails sent, IIS log files).
    all show duplicates during same creation time Except the
    scheduler.log it only shows each of those tasks firing once.
    I can only assume that the scheduler log is being updated
    correctly which leads me to belive that this log entry is done some
    time before the scheduler payload execution or the scheduler code
    dosnt log multiple triggers on its actions.
    So i am going to set the End date for this test task to see
    if the duplicates stop.
    more to come
    Tim

  • Yosemite Mail crashes multiple times a day

    Has anyone else been running into Yosemite Mail app crashing often, like multiple times a day? It leaves crash dumps you can get to via Console app. Most dump filenames end with cpu_resource.diag, some with just .crash or .hang.
    I just installed Yosemite a few days ago clean on new disk and then used migration assistant from a Mountain Lion system. I'm on a Mac Pro 2008 with 16GB ram. Also happening, but to a lessor degree on my wife's Mail app under Yosemite on a Mac Pro 2010 with 32GB ram. Both are latest 10.10.2. This didn't happen in Mountain Lion. Have not added nor deleted any mail accounts since moving to Yosemite.
    I've rebuilt the Envelope Index files in <user>/Library/Mail/V2/MailData a couple times already but does not help.
    The cpu_resource.diag dumps look like Python is going deep into some recursion and then the system is killing off Mail. Luckily in all the crashes, Mail has already saved the email i was working on almost to the last word.
    It has crashed when i was editing an email and it has crashed when i was using another app and all the Mail app windows just disappeared.
    I just turned on send stats and data to Apple and developers hoping the repeated crashes will get seen at apple.
    Anyone solve this? Any clues are most appreciated. 
    Peace,
    Dan

    Hi Linc,
    I've seen your name before on support threads that have helped. Thanks.
    I've been a unix systems engineer since late 70s, just so you can tailor your responses or not to be concerned if you have something very technical for me to do. Also a iOS developer, network, software and hardware engineer.
    Here are few lines from Console:
    SASL(-1): generic failure: GSSAPI Error:  Miscellaneous failure (see text (Matching credential (krbtgt/MAIL.HOSTNAME.COM@WELLKNOWN:COM.APPLE.LKDC) not found (negative cache))
    3/9/15 3:55:53.708 PM Mail[33379]: GSSAPI Error:  Miscellaneous failure (see text (Matching credential (krbtgt/MAIL.HOSTNAME.COM@WELLKNOWN:COM.APPLE.LKDC) not found (negative cache))
    3/9/15 3:55:53.710 PM Mail[33379]: Failed to start the SASL connection
    SASL(-1): generic failure: GSSAPI Error:  Miscellaneous failure (see text (Matching credential (krbtgt/MAIL.HOSTNAME.COM@WELLKNOWN:COM.APPLE.LKDC) not found (negative cache))
    3/9/15 3:55:53.724 PM Mail[33379]: GSSAPI Error:  Miscellaneous failure (see text (Matching credential (krbtgt/MAIL.HOSTNAME.COM@WELLKNOWN:COM.APPLE.LKDC) not found (negative cache))
    3/9/15 3:55:53.724 PM Mail[33379]: Failed to start the SASL connection
    SASL(-1): generic failure: GSSAPI Error:  Miscellaneous failure (see text (Matching credential (krbtgt/MAIL.HOSTNAME.COM@WELLKNOWN:COM.APPLE.LKDC) not found (negative cache))
    3/9/15 3:56:13.836 PM com.apple.xpc.launchd[1]: (com.apple.mail.40076[33379]) Service exited due to signal: Segmentation fault: 11
    3/9/15 3:56:14.167 PM ReportCrash[297]: Saved crash report for Mail[33379] version 8.2 (2070.6) to /Users/username/Library/Logs/DiagnosticReports/Mail_2015-03-09-155614_Computer. crash
    Things to know.
    There were hundreds of pairs of the lines "GSSAPI Error:" followed by "Failed to start the SASL connection" before above extract which were identical except of course for the time log entry part.
    Personal info changed to protect the innocent or whatever.
    MAIL.HOSTNAME.COM is anonymized from my own Mac OS X Server Mavericks on local network that is dual homed DNS setup.
    Below is the entire crash log that is referenced in last line of console grab above. Looks like a bug in the JS JIT compiler maybe? But that wouldn't jib with the log entries that are about SSL errors. Now that i see the SSL errors and it is to my server, i might try a reboot of my Mavericks server. But i will wait until i hear back since perhaps there is something else to try on Mac OS X Server to see if fixes this problem. Most likely not though, since there are a bunch of "hang" and "resource" crash logs too, all in the system area; crash logs in my user lib area are all "crash" type and looking at a few have different failures.
    No more human text below dashed line below.
    Peace,
    Dan
    Process:               Mail [33379]
    Path:                  /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:            com.apple.mail
    Version:               8.2 (2070.6)
    Build Info:            Mail-2070006000000000~1
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Mail [33379]
    User ID:               501
    Date/Time:             2015-03-09 15:56:01.773 -0400
    OS Version:            Mac OS X 10.10.2 (14C109)
    Report Version:        11
    Anonymous UUID:        (removed as suggested)
    Time Awake Since Boot: 590000 seconds
    Crashed Thread:        24  com.apple.appkit-heartbeat
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x00001878d469bec0
    VM Regions Near 0x1878d469bec0:
        mapped file            0000000127fbc000-00000001286ed000 [ 7364K] rw-/rwx SM=COW  /private/var/folders/*/*.csstore
    -->
        JS JIT generated code  000025488a200000-000025488a201000 [    4K] ---/rwx SM=NUL 
    Application Specific Information:
    objc_msgSend() selector name: enumerateObjectsUsingBlock:
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   com.apple.Foundation           0x00007fff927e943e probeGC + 297
    1   com.apple.Foundation           0x00007fff927e971d -[NSConcreteMapTable objectForKey:] + 42
    2   com.apple.Foundation           0x00007fff9282369f -[NSISEngine pivotToMakeBodyVar:newHeadOfRowWithHead:andDropRow:] + 224
    3   com.apple.Foundation           0x00007fff9282e408 -[NSISEngine removeConstraintWithMarker:] + 526
    4   com.apple.Foundation           0x00007fff92813dbb -[NSLayoutConstraint _removeFromEngine:] + 229
    5   com.apple.AppKit               0x00007fff851e3c1f -[NSView(NSConstraintBasedLayout) _layoutEngine_willRemoveLayoutConstraint:] + 43
    6   com.apple.AppKit               0x00007fff85a8018f -[NSView(NSConstraintBasedLayout) nsli_removeConstraint:] + 253
    7   com.apple.AppKit               0x00007fff851e3f79 __53-[NSView(NSConstraintBasedLayout) removeConstraints:]_block_invoke + 188
    8   com.apple.Foundation           0x00007fff9282123e -[NSISEngine withBehaviors:performModifications:] + 155
    9   com.apple.AppKit               0x00007fff851a613a -[NSView(NSConstraintBasedLayout) _withAutomaticEngineOptimizationDisabled:] + 70
    10  com.apple.AppKit               0x00007fff851a4bee -[NSView(NSConstraintBasedLayout) removeConstraints:] + 289
    11  com.apple.AppKit               0x00007fff85ac651c -[NSStackViewContainer _refreshStackConstraints] + 69
    12  com.apple.AppKit               0x00007fff85ac7999 __44-[NSStackViewContainer removeView:animated:]_block_invoke + 56
    13  com.apple.AppKit               0x00007fff85ac752b -[NSStackViewContainer removeView:animated:] + 904
    14  com.apple.mail                 0x000000010dedb2ab 0x10de9a000 + 266923
    15  com.apple.mail                 0x000000010dedb127 0x10de9a000 + 266535
    16  com.apple.mail                 0x000000010dedb009 0x10de9a000 + 266249
    17  com.apple.mail                 0x000000010dedb0ff 0x10de9a000 + 266495
    18  com.apple.Foundation           0x00007fff92834cdc __NSThreadPerformPerform + 293
    19  com.apple.CoreFoundation       0x00007fff8a066681 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    20  com.apple.CoreFoundation       0x00007fff8a05880d __CFRunLoopDoSources0 + 269
    21  com.apple.CoreFoundation       0x00007fff8a057e3f __CFRunLoopRun + 927
    22  com.apple.CoreFoundation       0x00007fff8a057858 CFRunLoopRunSpecific + 296
    23  com.apple.HIToolbox           0x00007fff918b9aef RunCurrentEventLoopInMode + 235
    24  com.apple.HIToolbox           0x00007fff918b986a ReceiveNextEventCommon + 431
    25  com.apple.HIToolbox           0x00007fff918b96ab _BlockUntilNextEventMatchingListInModeWithFilter + 71
    26  com.apple.AppKit               0x00007fff8518ff81 _DPSNextEvent + 964
    27  com.apple.AppKit               0x00007fff8518f730 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 194
    28  com.apple.AppKit               0x00007fff85183593 -[NSApplication run] + 594
    29  com.apple.AppKit               0x00007fff8516ea14 NSApplicationMain + 1832
    30  libdyld.dylib                 0x00007fff837b15c9 start + 1
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib         0x00007fff85e95232 kevent64 + 10
    1   libdispatch.dylib             0x00007fff8c560a6a _dispatch_mgr_thread + 52
    Thread 2:: com.apple.NSURLConnectionLoader
    0   libsystem_kernel.dylib         0x00007fff85e8f4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85e8e64f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8a058b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8a057ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8a057858 CFRunLoopRunSpecific + 296
    5   com.apple.CFNetwork           0x00007fff8dcbfc80 +[NSURLConnection(Loader) _resourceLoadLoop:] + 434
    6   com.apple.Foundation           0x00007fff9283790a __NSThread__main__ + 1345
    7   libsystem_pthread.dylib       0x00007fff850a4268 _pthread_body + 131
    8   libsystem_pthread.dylib       0x00007fff850a41e5 _pthread_start + 176
    9   libsystem_pthread.dylib       0x00007fff850a241d thread_start + 13
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib         0x00007fff85e943fa __select + 10
    1   libsystem_pthread.dylib       0x00007fff850a4268 _pthread_body + 131
    2   libsystem_pthread.dylib       0x00007fff850a41e5 _pthread_start + 176
    3   libsystem_pthread.dylib       0x00007fff850a241d thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib         0x00007fff85e8f4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85e8e64f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8a058b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8a057ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8a057858 CFRunLoopRunSpecific + 296
    5   com.apple.AppKit               0x00007fff852f333b _NSEventThread + 137
    6   libsystem_pthread.dylib       0x00007fff850a4268 _pthread_body + 131
    7   libsystem_pthread.dylib       0x00007fff850a41e5 _pthread_start + 176
    8   libsystem_pthread.dylib       0x00007fff850a241d thread_start + 13
    Thread 5:: com.apple.CoreAnimation.render-server
    0   libsystem_kernel.dylib         0x00007fff85e8f4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85e8e64f mach_msg + 55
    2   com.apple.QuartzCore           0x00007fff91bfaabb CA::Render::Server::server_thread(void*) + 198
    3   com.apple.QuartzCore           0x00007fff91bfa9ee thread_fun + 25
    4   libsystem_pthread.dylib       0x00007fff850a4268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff850a41e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff850a241d thread_start + 13
    Thread 6:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff85e94136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8cef6c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8d458984 JSC::BlockAllocator::blockFreeingThreadMain() + 228
    3   com.apple.JavaScriptCore       0x00007fff8d44e14f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib       0x00007fff850a4268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff850a41e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff850a241d thread_start + 13
    Thread 7:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff85e94136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8cef6c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8d458f1b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff8d458d78 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8d44e14f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff850a4268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff850a41e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff850a241d thread_start + 13
    Thread 8:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff85e94136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8cef6c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8d458f1b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff8d458d78 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8d44e14f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff850a4268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff850a41e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff850a241d thread_start + 13
    Thread 9:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff85e94136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8cef6c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8d458f1b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff8d458d78 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8d44e14f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff850a4268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff850a41e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff850a241d thread_start + 13
    Thread 10:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff85e94136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8cef6c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8d458f1b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff8d458d78 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8d44e14f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff850a4268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff850a41e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff850a241d thread_start + 13
    Thread 11:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff85e94136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8cef6c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8d458f1b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff8d458d78 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8d44e14f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff850a4268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff850a41e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff850a241d thread_start + 13
    Thread 12:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff85e94136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8cef6c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8d458f1b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff8d458d78 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8d44e14f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff850a4268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff850a41e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff850a241d thread_start + 13
    Thread 13:: JavaScriptCore::BlockFree
    0   libsystem_kernel.dylib         0x00007fff85e94136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8cef6c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8d458984 JSC::BlockAllocator::blockFreeingThreadMain() + 228
    3   com.apple.JavaScriptCore       0x00007fff8d44e14f ***::wtfThreadEntryPoint(void*) + 15
    4   libsystem_pthread.dylib       0x00007fff850a4268 _pthread_body + 131
    5   libsystem_pthread.dylib       0x00007fff850a41e5 _pthread_start + 176
    6   libsystem_pthread.dylib       0x00007fff850a241d thread_start + 13
    Thread 14:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff85e94136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8cef6c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8d458f1b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff8d458d78 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8d44e14f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff850a4268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff850a41e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff850a241d thread_start + 13
    Thread 15:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff85e94136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8cef6c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8d458f1b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff8d458d78 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8d44e14f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff850a4268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff850a41e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff850a241d thread_start + 13
    Thread 16:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff85e94136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8cef6c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8d458f1b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff8d458d78 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8d44e14f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff850a4268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff850a41e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff850a241d thread_start + 13
    Thread 17:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff85e94136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8cef6c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8d458f1b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff8d458d78 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8d44e14f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff850a4268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff850a41e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff850a241d thread_start + 13
    Thread 18:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff85e94136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8cef6c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8d458f1b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff8d458d78 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8d44e14f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff850a4268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff850a41e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff850a241d thread_start + 13
    Thread 19:: JavaScriptCore::Marking
    0   libsystem_kernel.dylib         0x00007fff85e94136 __psynch_cvwait + 10
    1   libc++.1.dylib                 0x00007fff8cef6c95 std::__1::condition_variable::wait(std::__1::unique_lock<std::__1::mutex>&) + 47
    2   com.apple.JavaScriptCore       0x00007fff8d458f1b JSC::GCThread::waitForNextPhase() + 171
    3   com.apple.JavaScriptCore       0x00007fff8d458d78 JSC::GCThread::gcThreadMain() + 88
    4   com.apple.JavaScriptCore       0x00007fff8d44e14f ***::wtfThreadEntryPoint(void*) + 15
    5   libsystem_pthread.dylib       0x00007fff850a4268 _pthread_body + 131
    6   libsystem_pthread.dylib       0x00007fff850a41e5 _pthread_start + 176
    7   libsystem_pthread.dylib       0x00007fff850a241d thread_start + 13
    Thread 20:: -[MFIMAPAccount _fetchUnreadCountsCheckForNewMessages:]  Dispatch queue: NSOperationQueue 0x6200002545b0 :: NSOperation 0x61800105b2d0 (QOS: UTILITY)
    0   libobjc.A.dylib               0x00007fff8b04eecd id2data(objc_object*, usage) + 13
    1   libobjc.A.dylib               0x00007fff8b04f217 objc_sync_exit + 21
    2   com.apple.Mail.framework       0x00007fff8e130e60 -[MFMessageStore(ReleaseHack) retainCount] + 78
    3   com.apple.Mail.framework       0x00007fff8e130ed8 -[MFMessageStore(ReleaseHack) release] + 89
    4   libobjc.A.dylib               0x00007fff8b04ce8f (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 575
    5   com.apple.Mail.framework       0x00007fff8e130f9e -[MFMessageStore(ReleaseHack) release] + 287
    6   libobjc.A.dylib               0x00007fff8b04ce8f (anonymous namespace)::AutoreleasePoolPage::pop(void*) + 575
    7   com.apple.MailCore             0x00007fff85d6b375 -[_MCInvocationOperation main] + 434
    8   com.apple.Foundation           0x00007fff927d732c -[__NSOperationInternal _start:] + 653
    9   com.apple.Foundation           0x00007fff927d6f33 __NSOQSchedule_f + 184
    10  libdispatch.dylib             0x00007fff8c55dc13 _dispatch_client_callout + 8
    11  libdispatch.dylib             0x00007fff8c561365 _dispatch_queue_drain + 1100
    12  libdispatch.dylib             0x00007fff8c562ecc _dispatch_queue_invoke + 202
    13  libdispatch.dylib             0x00007fff8c5606b7 _dispatch_root_queue_drain + 463
    14  libdispatch.dylib             0x00007fff8c56efe4 _dispatch_worker_thread3 + 91
    15  libsystem_pthread.dylib       0x00007fff850a4637 _pthread_wqthread + 729
    16  libsystem_pthread.dylib       0x00007fff850a240d start_wqthread + 13
    Thread 21:
    0   libsystem_kernel.dylib         0x00007fff85e9494a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff850a240d start_wqthread + 13
    Thread 22:
    0   libsystem_kernel.dylib         0x00007fff85e9494a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff850a240d start_wqthread + 13
    Thread 23:
    0   libsystem_kernel.dylib         0x00007fff85e9494a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff850a240d start_wqthread + 13
    Thread 24 Crashed:: com.apple.appkit-heartbeat
    0   libobjc.A.dylib               0x00007fff8b0460dd objc_msgSend + 29
    1   com.apple.AppKit               0x00007fff852cd7c1 -[NSView(NSPrivateLayerSupport) shouldSetFontSmoothingBackgroundColor] + 430
    2   com.apple.AppKit               0x00007fff852cd6e1 -[NSView(NSPrivateLayerSupport) shouldSetFontSmoothingBackgroundColor] + 206
    3   com.apple.AppKit               0x00007fff852c152b -[NSView(NSInternal) _setupFontSmoothingForLayerDrawingIntoContext:previousColor:previousFlag:] + 87
    4   com.apple.AppKit               0x00007fff852c05af -[NSView(NSInternal) _recursive:displayRectIgnoringOpacity:inGraphicsContext:CGContext:topView:shoul dChangeFontReferenceColor:] + 1016
    5   com.apple.AppKit               0x00007fff852c00a8 __46-[NSView(NSLayerKitGlue) drawLayer:inContext:]_block_invoke + 218
    6   com.apple.AppKit               0x00007fff852bfe41 -[NSView(NSLayerKitGlue) _drawViewBackingLayer:inContext:drawingHandler:] + 2407
    7   com.apple.AppKit               0x00007fff852bf4c3 -[NSView(NSLayerKitGlue) drawLayer:inContext:] + 108
    8   com.apple.QuartzCore           0x00007fff91be8e93 CABackingStoreUpdate_ + 3306
    9   com.apple.QuartzCore           0x00007fff91be81a3 ___ZN2CA5Layer8display_Ev_block_invoke + 59
    10  com.apple.QuartzCore           0x00007fff91be815f x_blame_allocations + 81
    11  com.apple.QuartzCore           0x00007fff91be7c5c CA::Layer::display_() + 1546
    12  com.apple.AppKit               0x00007fff852bf39f _NSBackingLayerDisplay + 617
    13  com.apple.AppKit               0x00007fff852952b9 -[_NSViewBackingLayer display] + 834
    14  com.apple.QuartzCore           0x00007fff91be7381 CA::Layer::display_if_needed(CA::Transaction*) + 603
    15  com.apple.QuartzCore           0x00007fff91be6abd CA::Layer::layout_and_display_if_needed(CA::Transaction*) + 35
    16  com.apple.QuartzCore           0x00007fff91be624e CA::Context::commit_transaction(CA::Transaction*) + 242
    17  com.apple.QuartzCore           0x00007fff91be5ea4 CA::Transaction::commit() + 390
    18  com.apple.AppKit               0x00007fff853a0695 -[NSUIHeartBeat _heartBeatThread:] + 2170
    19  com.apple.Foundation           0x00007fff9283790a __NSThread__main__ + 1345
    20  libsystem_pthread.dylib       0x00007fff850a4268 _pthread_body + 131
    21  libsystem_pthread.dylib       0x00007fff850a41e5 _pthread_start + 176
    22  libsystem_pthread.dylib       0x00007fff850a241d thread_start + 13
    Thread 25:
    0   libsystem_kernel.dylib         0x00007fff85e9494a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff850a240d start_wqthread + 13
    Thread 26:
    0   libsystem_kernel.dylib         0x00007fff85e9494a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff850a240d start_wqthread + 13
    Thread 27:
    0   libsystem_kernel.dylib         0x00007fff85e9494a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff850a240d start_wqthread + 13
    Thread 28:
    0   libsystem_kernel.dylib         0x00007fff85e9494a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff850a240d start_wqthread + 13
    Thread 29:: Dispatch queue: NSOperationQueue 0x6300004c69e0 :: NSOperation 0x628000891b20 (QOS: UTILITY)
    0   libsystem_kernel.dylib         0x00007fff85e8f4de mach_msg_trap + 10
    1   libsystem_kernel.dylib         0x00007fff85e8e64f mach_msg + 55
    2   com.apple.CoreFoundation       0x00007fff8a058b34 __CFRunLoopServiceMachPort + 212
    3   com.apple.CoreFoundation       0x00007fff8a057ffb __CFRunLoopRun + 1371
    4   com.apple.CoreFoundation       0x00007fff8a057858 CFRunLoopRunSpecific + 296
    5   com.apple.Foundation           0x00007fff92839849 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 278
    6   com.apple.MailCore             0x00007fff85dde2f1 -[MCSocket readBytes:maxLength:error:] + 947
    7   com.apple.MailCore             0x00007fff85d4e26f -[MCConnection _readBytesFromSocketIntoBuffer:amount:requireAllBytes:error:] + 119
    8   com.apple.MailCore             0x00007fff85d4db16 -[MCConnection _fillBuffer:] + 367
    9   com.apple.MailCore             0x00007fff85d4d77b -[MCConnection _readLineIntoData:error:] + 194
    10  com.apple.IMAP                 0x00007fff8e23e7cf -[IMAPConnection _readLineIntoData:error:] + 54
    11  com.apple.IMAP                 0x00007fff8e248407 -[IMAPConnection(MFPrivate) _readDataWithRemainingByteCount:intoData:error:] + 148
    12  com.apple.IMAP                 0x00007fff8e28555e +[IMAPResponse newIMAPResponseWithConnection:error:] + 101
    13  com.apple.IMAP                 0x00007fff8e23e8f8 -[IMAPConnection _copyNextServerResponse:] + 39
    14  com.apple.IMAP                 0x00007fff8e23ea23 -[IMAPConnection _copyNextTaggedOrContinuationResponseForCommand:exists:receivedExists:] + 205
    15  com.apple.IMAP                 0x00007fff8e243664 -[IMAPConnection executeIdle:] + 224
    16  com.apple.IMAP                 0x00007fff8e23d656 -[IMAPConnection prepareAndExecuteOperation:outWrongState:] + 1213
    17  com.apple.IMAP                 0x00007fff8e256d22 -[IMAPGateway _allowClientOperationThrough:] + 1101
    18  com.apple.IMAP                 0x00007fff8e256869 -[IMAPGateway allowClientOperationThrough:] + 460
    19  com.apple.IMAP                 0x00007fff8e231a6a -[IMAPClientOperation main] + 69
    20  com.apple.Foundation           0x00007fff927d732c -[__NSOperationInternal _start:] + 653
    21  com.apple.Foundation           0x00007fff927d6f33 __NSOQSchedule_f + 184
    22  libdispatch.dylib             0x00007fff8c55dc13 _dispatch_client_callout + 8
    23  libdispatch.dylib             0x00007fff8c561365 _dispatch_queue_drain + 1100
    24  libdispatch.dylib             0x00007fff8c562ecc _dispatch_queue_invoke + 202
    25  libdispatch.dylib             0x00007fff8c5606b7 _dispatch_root_queue_drain + 463
    26  libdispatch.dylib             0x00007fff8c56efe4 _dispatch_worker_thread3 + 91
    27  libsystem_pthread.dylib       0x00007fff850a4637 _pthread_wqthread + 729
    28  libsystem_pthread.dylib       0x00007fff850a240d start_wqthread + 13
    Thread 30:
    0   libsystem_kernel.dylib         0x00007fff85e9494a __workq_kernreturn + 10
    1   libsystem_pthread.dylib       0x00007fff850a240d start_wqthread + 13
    Thread 24 crashed with X86 Thread State (64-bit):
      rax: 0x000000011d1a1bc0  rbx: 0x000061000025c140  rcx: 0x0000000000000004  rdx: 0x000000011d1a1b60
      rdi: 0x000061000025c140  rsi: 0x00007fff85af2a67  rbp: 0x000000011d1a1bb0  rsp: 0x000000011d1a1b58
       r8: 0x0000000000000fff   r9: 0x000061000025c140  r10: 0x00007fff85af2a67  r11: 0x00001878d469bea8
      r12: 0x0000000000000088  r13: 0x00007fff8b0460c0  r14: 0x000000011d1a1bc0  r15: 0x00006000001b9a60
      rip: 0x00007fff8b0460dd  rfl: 0x0000000000010202  cr2: 0x00001878d469bec0
    Logical CPU:     7
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
           0x10de9a000 -        0x10e230fff  com.apple.mail (8.2 - 2070.6) <18054312-F56A-353E-83F8-DFF9794495DE> /Applications/Mail.app/Contents/MacOS/Mail
           0x10e56b000 -        0x10e56cfff  com.apple.AddressBook.LocalSourceBundle (9.0 - 1563) <DD762837-D59A-3603-84A1-86FB30043334> /System/Library/Address Book Plug-Ins/LocalSource.sourcebundle/Contents/MacOS/LocalSource
           0x10e57d000 -        0x10e581ff7  com.apple.DirectoryServicesSource (9.0 - 1563) <05E74164-B969-385E-A5DB-162055C6C90F> /System/Library/Address Book Plug-Ins/DirectoryServices.sourcebundle/Contents/MacOS/DirectoryServices
           0x10e588000 -        0x10e58afff  com.apple.addressbook.POIPlugin (9.0 - 1563) <319B0E57-ACD3-387C-BB49-813B8EC94314> /System/Library/Address Book Plug-Ins/POIPlugin.sourcebundle/Contents/MacOS/POIPlugin
           0x10fc1f000 -        0x10fc44fff +com.c-command.spamsieve.mailplugin (1.8.1 - 1.8.1) <E1783D92-C5F0-3574-985F-D36E9762E938> /Users/USER/Library/Mail/*/SpamSieve
           0x1105c4000 -        0x1105cefff  com.apple.DirectoryServer (10.10 - 59) <61A473DD-D803-3C6A-BA6F-E8BB5CE5AED7> /System/Library/PrivateFrameworks/DirectoryServer.framework/Versions/A/Director yServer
           0x1105e2000 -        0x1105e4fff  apop.so (183) <45C50E60-97D1-3FE0-93F5-145F489AAF50> /usr/lib/sasl2/apop.so
           0x1105e9000 -        0x1105eafff  atoken.so (183) <0F3DB480-6B1A-3AD6-B3E4-CEAB75436788> /usr/lib/sasl2/atoken.so
           0x110be3000 -        0x110be5fff  libanonymous.2.so (193) <3CBC6ECD-E78C-3A19-BEF9-628B49C85047> /usr/lib/sasl2/libanonymous.2.so
           0x111415000 -        0x111415ff5 +cl_kernels (???) <515B9D34-223C-42D1-ADED-78E5F1FA4490> cl_kernels
           0x111d38000 -        0x111fe0ff7  com.apple.RawCamera.bundle (6.03 - 777) <127AB12C-190F-31BC-A0D9-A127004F7017> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
           0x112abc000 -        0x112ba2fef  unorm8_bgra.dylib (2.4.5) <9423FFD4-6EF3-31BF-9DE9-6D55BA76D59E> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_bgra.dylib
           0x112c79000 -        0x112c79fff +cl_kernels (???) <52163313-3FF5-4D34-8282-8AD18F630615> cl_kernels
           0x114229000 -        0x11422afff  libArabicConverter.dylib (64) <133109C2-4334-37DD-B3A8-AFD70DF992C6> /System/Library/CoreServices/Encodings/libArabicConverter.dylib
           0x11424e000 -        0x114251fff  libLatinSuppConverter.dylib (64) <5B5E0D68-25C8-3364-A8D0-C76513E217E4> /System/Library/CoreServices/Encodings/libLatinSuppConverter.dylib
           0x114578000 -        0x1145c6fff  com.apple.AddressBook.CardDAVPlugin (10.9 - 451) <572F0C80-B344-3C44-8EB7-DF0BD0CCE739> /System/Library/Address Book Plug-Ins/CardDAVPlugin.sourcebundle/Contents/MacOS/CardDAVPlugin
           0x114c96000 -        0x114c9efff  com.apple.SyncedDefaults (2.0 - 212.1) <8F2203CF-68A9-3E21-87B2-77D6BD15DCA3> /System/Library/PrivateFrameworks/SyncedDefaults.framework/SyncedDefaults
           0x114e8b000 -        0x114e8bffe +cl_kernels (???) <4712BF8C-CE33-456E-BF37-FC508521D39D> cl_kernels
           0x114ec6000 -        0x114ec6fff +cl_kernels (???) <52163313-3FF5-4D34-8282-8AD18F630615> cl_kernels
           0x115022000 -        0x115027ff7  libgermantok.dylib (17) <47EF3D93-B111-3218-AF60-E33F506D57E8> /usr/lib/libgermantok.dylib
           0x1150e0000 -        0x1150e4fff  com.apple.audio.AppleHDAHALPlugIn (269.25 - 269.25) <D7562B22-F5ED-3FD6-894E-4F4876DE14FF> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x115772000 -        0x115783ffb  dhx.so (183) <4BE28005-1AE3-3D6D-875F-9AD9F69E79F1> /usr/lib/sasl2/dhx.so
           0x115830000 -        0x115839fff  digestmd5WebDAV.so (183) <A0405C97-15BE-31CA-9CD2-D258F4B30C37> /usr/lib/sasl2/digestmd5WebDAV.so
           0x11585d000 -        0x11585fff7  libcrammd5.2.so (193) <2B573E51-8264-36FD-AABA-0599FCC776AD> /usr/lib/sasl2/libcrammd5.2.so
           0x115868000 -        0x115871fff  libdigestmd5.2.so (193) <85C0F6CC-7333-3394-AD8D-4E7BD3712C52> /usr/lib/sasl2/libdigestmd5.2.so
           0x115882000 -        0x115887fff  libgssapiv2.2.0.18.so (193) <46C161D0-74D2-38FB-934B-6EE044961C53> /usr/lib/sasl2/libgssapiv2.2.0.18.so
           0x11589d000 -        0x1158a2fff  libntlm.so (193) <B257700E-17B1-3DE7-A764-BC7786564B5C> /usr/lib/sasl2/libntlm.so
           0x1158ae000 -        0x1158b0fff  libplain.2.so (193) <1E8EFAF4-1D23-3530-A04F-5AFBCCBC40F9> /usr/lib/sasl2/libplain.2.so
           0x1158b9000 -        0x1158bbfff  login.so (193) <DF41E250-01D0-31F4-8A80-9B6EE6B7C0D1> /usr/lib/sasl2/login.so
           0x1158bf000 -        0x1158c2ff7  mschapv2.so (183) <F758C957-FB59-3E55-8798-44016F79E520> /usr/lib/sasl2/mschapv2.so
           0x1158d1000 -        0x1158f2ffb  com.apple.DirectoryService.PasswordServerFramework (10.10 - 44) <13610720-24EC-39D5-93FE-9AAA707D5B15> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
           0x115924000 -        0x11592ffff  com.apple.AccountPolicy (1.0 - 1) <F19FD833-7A5B-383B-82F4-644D3FDB267A> /System/Library/PrivateFrameworks/AccountPolicy.framework/Versions/A/AccountPol icy
           0x115944000 -        0x115950ff7  com.apple.directoryserver.CFDirectoryServer (10.10 - 59) <05D571A8-5741-3307-ACAC-F4314495B6EF> /System/Library/PrivateFrameworks/DirectoryServer.framework/Frameworks/CFDirect oryServer.framework/Versions/A/CFDirectoryServer
           0x115962000 -        0x115968fff  com.apple.HeimODAdmin (4.0 - 2.0) <2BEFF88F-BCC9-3969-8173-DFC6FB1F3715> /System/Library/PrivateFrameworks/HeimODAdmin.framework/Versions/A/HeimODAdmin
           0x115971000 -        0x115972fff  com.apple.CFAccountPolicy (1.0 - 1) <6D51C633-51BE-3D8B-A337-610652E3E066> /System/Library/PrivateFrameworks/AccountPolicy.framework/Frameworks/CFAccountP olicy.framework/Versions/A/CFAccountPolicy
           0x115977000 -        0x115978fff  plain-clienttoken.so (183) <12B2FD79-5F8D-31E5-9A53-B5E3D03F9D36> /usr/lib/sasl2/plain-clienttoken.so
           0x11597c000 -        0x11597efff  pwauxprop.so (419) <5F54667E-8C54-3445-9D1D-7C8A423DDE7C> /usr/lib/sasl2/pwauxprop.so
           0x115982000 -        0x115984fff  shadow_auxprop.so (183) <4E05B744-F0DB-314A-886C-172E7864B5F7> /usr/lib/sasl2/shadow_auxprop.so
           0x115989000 -        0x11598cfff  smb_ntlmv2.so (183) <231397CF-F819-30D6-9238-A111137F97A2> /usr/lib/sasl2/smb_ntlmv2.so
           0x115bea000 -        0x115bebff7  MetadataLib.dylib (6.3) <675821DC-7D3C-352B-A2D3-B6D3704650E9> /System/Library/CoreServices/RawCamera.bundle/Contents/Resources/MetadataLib.dy lib
           0x115d9d000 -        0x115d9efff  com.apple.heimdalodpac (10.10 - 205) <3BFA6B1E-76CE-3A05-9D38-6AA1BA9CD2A2> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/heimdalodpac.bundle/Co ntents/MacOS/heimdalodpac
           0x115dc7000 -        0x115dc9fff  com.apple.KerberosHelper.LKDCLocate (4.0 - 1.0) <6276FDFA-EB44-374C-9BFC-2AB5F68F2145> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/LKDCLocate.bundle/Cont ents/MacOS/LKDCLocate
           0x115dcd000 -        0x115dceffb  com.apple.kerberos.reachability (4.0 - 2.0) <3424BD75-20AC-33D0-A207-63E599D45C9E> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/Reachability.bundle/Co ntents/MacOS/Reachability
           0x115dd2000 -        0x115dd3fff  com.apple.kerberos.sckerberosconfig (4.0 - 1) <24E8F4C8-E94B-3FD5-A80B-0E3DC16A5B25> /System/Library/KerberosPlugins/KerberosFrameworkPlugins/SCKerberosConfig.bundl e/Contents/MacOS/SCKerberosConfig
           0x115e12000 -        0x115e12ffe +cl_kernels (???) <4712BF8C-CE33-456E-BF37-FC508521D39D> cl_kernels
           0x116677000 -        0x116677ff7 +cl_kernels (???) <B4ED46EE-A6E3-459F-A4D0-D1615BA2B4AF> cl_kernels
           0x1166f6000 -        0x1166fcfff +com.prosofteng.soundbunny.plugin (1.0.2 - 898) <56D7D0F7-AE08-3DB2-9A09-ED49D224FDFE> /Library/Audio/Plug-Ins/HAL/SoundBunny.plugin/Contents/MacOS/SoundBunny
           0x116971000 -        0x116a51ff7  unorm8_rgba.dylib (2.4.5) <2720A91C-F32D-378D-9154-E12A5E214341> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/u norm8_rgba.dylib
           0x1172a2000 -        0x1172a3fff  ATSHI.dylib (375) <E88C3D19-2934-37E4-8467-56BF2B83D08A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
           0x11795b000 -        0x11798afff  com.apple.LookupFramework (1.1 - 148.1) <BAEA00A5-69A8-3B9A-9A7B-3349DEFE2BAB> /System/Library/PrivateFrameworks/Lookup.framework/Lookup
           0x11812e000 -        0x118132ff3  libFontRegistryUI.dylib (134) <9C55337C-4D65-34C8-9BB9-90399B420A6F> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
           0x11922f000 -        0x119234fff  com.apple.google.iaplugin (2.1 - 210) <03748DA1-BBC0-3170-9D66-9EEFDCC8046D> /System/Library/InternetAccounts/Google.iaplugin/Contents/MacOS/Google
           0x1197cb000 -        0x1197e4fff  com.apple.mail.WebPlugIn (8.2 - 2070.6) <BD5B8A39-6629-3A65-BFB3-4F8867B9589D> /Applications/Mail.app/Contents/PlugIns/MailWebPlugIn.webplugin/Contents/MacOS/ MailWebPlugIn
           0x11c65f000 -        0x11c879fff  com.apple.audio.units.Components (1.12 - 1.12) <95245456-EE5C-3D29-8E18-5E02E74A2683> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
        0x7fff689d8000 -     0x7fff68a0e837  dyld (353.2.1) <65DCCB06-339C-3E25-9702-600A28291D0E> /usr/lib/dyld
        0x7fff83191000 -     0x7fff831c1ff3  com.apple.CoreAVCHD (5.7.5 - 5750.4.1) <3E51287C-E97D-3886-BE88-8F6872400876> /System/Library/PrivateFrameworks/CoreAVCHD.framework/Versions/A/CoreAVCHD
        0x7fff831c2000 -     0x7fff831c9fff  com.apple.network.statistics.framework (1.2 - 1) <61B311D1-7F15-35B3-80D4-99B8BE90ACD9> /System/Library/PrivateFrameworks/NetworkStatistics.framework/Versions/A/Networ kStatistics
        0x7fff831ca000 -     0x7fff83268fff  com.apple.Metadata (10.7.0 - 917.1) <46BE997C-B1F4-3BED-9332-FAC87297C87A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
        0x7fff83269000 -     0x7fff83308df7  com.apple.AppleJPEG (1.0 - 1) <9BB3D7DF-630A-3E1C-A124-12D6C4D0DE70> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
        0x7fff83309000 -     0x7fff83446fff  com.apple.ImageIO.framework (3.3.0 - 1232) <D7AF3CD2-FAB2-3798-9C26-914886852DCD> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
        0x7fff83447000 -     0x7fff83452fff  com.apple.AppSandbox (4.0 - 238.10.1) <4C171026-DC9A-3CEE-AB42-110859674F61> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
        0x7fff83453000 -     0x7fff8346cfff  com.apple.openscripting (1.4 - 162) <80DFF366-B950-3F79-903F-99DA0FFDB570> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
        0x7fff8346d000 -     0x7fff8346fff7  libquarantine.dylib (76) <DC041627-2D92-361C-BABF-A869A5C72293> /usr/lib/system/libquarantine.dylib
        0x7fff83470000 -     0x7fff83476ff7  com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
        0x7fff83477000 -     0x7fff83491ff7  com.apple.Kerberos (3.0 - 1) <7760E0C2-A222-3709-B2A6-B692D900CEB1> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
        0x7fff83492000 -     0x7fff834aefff  com.apple.GenerationalStorage (2.0 - 209.11) <9FF8DD11-25FB-3047-A5BF-9415339B3EEC> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
        0x7fff834af000 -     0x7fff834bafff  com.apple.CommerceCore (1.0 - 376.6.2) <3FD9A3A6-C12F-31E0-B90E-5E325B595750> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
        0x7fff834f8000 -     0x7fff834ffff7  com.apple.phonenumbers (1.1.1 - 105) <AE39B6FE-05AB-3181-BB2A-4D50A8B392F2> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
        0x7fff83500000 -     0x7fff83546ff7  libauto.dylib (186) <A260789B-D4D8-316A-9490-254767B8A5F1> /usr/lib/libauto.dylib
        0x7fff83547000 -     0x7fff8354ffff  com.apple.xpcobjects (103 - 103) <A202ACEF-7A3D-303E-BB07-29FF49DE279D> /System/Library/PrivateFrameworks/XPCObjects.framework/Versions/A/XPCObjects
        0x7fff83550000 -     0x7fff837adff7  com.apple.CalendarPersistence (8.0 - 320.2) <7519DCD9-01BA-3866-BF00-CFC8FF812F46> /System/Library/PrivateFrameworks/CalendarPersistence.framework/Versions/A/Cale ndarPersistence
        0x7fff837ae000 -     0x7fff837b1ff7  libdyld.dylib (353.2.1) <4E33E416-F1D8-3598-B8CC-6863E2ECD0E6> /usr/lib/system/libdyld.dylib
        0x7fff837b2000 -     0x7fff83824ff7  com.apple.framework.IOKit (2.0.2 - 1050.10.8) <FDFB1FBE-6A0E-3D63-828C-CD53500FCB0F> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
        0x7fff83825000 -     0x7fff8384aff7  libJPEG.dylib (1232) <09466709-4742-3418-A0AC-116EF9714E2D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
        0x7fff8391e000 -     0x7fff83920ff7  com.apple.diagnosticlogcollection (10.0 - 1000) <30EAFD80-B9E6-38EA-B85A-9D3550B15545> /System/Library/PrivateFrameworks/DiagnosticLogCollection.framework/Versions/A/ DiagnosticLogCollection
        0x7fff83921000 -     0x7fff83948ff7  com.apple.shortcut (2.13 - 2.13) <0BA7C57A-C2FC-3DFC-83B2-CE6C33770B52> /System/Library/PrivateFrameworks/Shortcut.framework/Versions/A/Shortcut
        0x7fff83949000 -     0x7fff83e35ff7  com.apple.MediaToolbox (1.0 - 1562.107) <F0888EAC-FB6D-35C5-B2FB-AC9A72FE4650> /System/Library/Frameworks/MediaToolbox.framework/Versions/A/MediaToolbox
        0x7fff83e36000 -     0x7fff83e5efff  libxpc.dylib (559.10.3) <876216DC-D5D3-381E-8AF9-49AE464E5107> /usr/lib/system/libxpc.dylib
        0x7fff83e5f000 -     0x7fff83ebbfff  com.apple.QuickLookFramework (5.0 - 675.13) <70196DC4-E71B-37E8-AA15-B7FD21EC1012> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
        0x7fff83ebc000 -     0x7fff83ed6ff3  com.apple.Ubiquity (1.3 - 313) <DF56A657-CC6E-3BE2-86A0-71F07127724C> /System/Library/PrivateFrameworks/Ubiquity.framework/Versions/A/Ubiquity
        0x7fff83ed7000 -     0x7fff84042ff7  com.apple.audio.toolbox.AudioToolbox (1.12 - 1.12) <5C6DBEB4-F2EA-3262-B9FC-AFB89404C1DA> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
        0x7fff84043000 -     0x7fff84046fff  com.apple.xpc.ServiceManagement (1.0 - 1) <5EFD45BF-B0CD-39F2-8232-6BA33E63E5D4> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
        0x7fff84049000 -     0x7fff840a3ff7  com.apple.LanguageModeling (1.0 - 1) <ACA93FE0-A0E3-333E-AE3C-8EB7DE5F362F> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/Languag eModeling
        0x7fff840a4000 -     0x7fff840f1ff3  com.apple.CoreMediaIO (601.0 - 4749) <ED45B200-08A1-3E72-8DE9-9901C94A7BCA> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
        0x7fff840f2000 -     0x7fff84155ff7  com.apple.WhitePagesFramework (10.7.0 - 141.0) <CA610402-24C3-32D9-99AB-326E231D4178> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
        0x7fff84187000 -     0x7fff84194ff7  libxar.1.dylib (254) <CE10EFED-3066-3749-838A-6A15AC0DBCB6> /usr/lib/libxar.1.dylib
        0x7fff84412000 -     0x7fff84424ff7  com.apple.CoreDuetDaemonProtocol (1.0 - 1) <CE9FABB4-1C5D-3F9B-9BB8-5CC50C3E5E31> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/Versions/A/C oreDuetDaemonProtocol
        0x7fff84425000 -     0x7fff8446ffff  com.apple.DiskManagement (7.1 - 847.1) <DC68FBAD-CAC1-30EA-B979-FFED401ADA21> /System/Library/PrivateFrameworks/DiskManagement.framework/Versions/A/DiskManag ement
        0x7fff8449c000 -     0x7fff844e9fff  com.apple.ImageCaptureCore (6.0 - 6.0) <C2DED299-7E2B-3501-9FD6-74892A7484B3> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
        0x7fff84ec5000 -     0x7fff84f00fff  com.apple.AOSAccounts (1.3.1 - 1.8.21) <A64757D0-C67D-3336-BE06-55A103E92071> /System/Library/PrivateFrameworks/AOSAccounts.framework/Versions/A/AOSAccounts
        0x7fff84f01000 -     0x7fff84f0cfdb  com.apple.AppleFSCompression (68.1.1 - 1.0) <F30E8CA3-50B3-3B44-90A0-803C5C308BFE> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
        0x7fff84f0d000 -     0x7fff84f81ff3  com.apple.securityfoundation (6.0 - 55126) <DEC91795-7754-334A-8CDA-B429F41B922D> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
        0x7fff84f82000 -     0x7fff85099fe7  libvDSP.dylib (516) <DFEDB210-49D1-3803-88A2-C61DB6A45C3D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
        0x7fff8509a000 -     0x7fff8509efff  com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
        0x7fff850a1000 -     0x7fff850aafff  libsystem_pthread.dylib (105.10.1) <3103AA7F-3BAE-3673-9649-47FFD7E15C97> /usr/lib/system/libsystem_pthread.dylib
        0x7fff850ab000 -     0x7fff850c4fff  com.apple.ContactsUI (9.0 - 1563) <75C944A2-8407-341F-8B37-42D7BD47CEBE> /System/Library/PrivateFrameworks/ContactsUI.framework/Versions/A/ContactsUI
        0x7fff850c5000 -     0x7fff8516bff7  com.apple.PDFKit (3.1 - 3.1) <D2D019DD-5DCA-3C0D-B9B7-0F919A6CD1DD> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
        0x7fff8516c000 -     0x7fff85cb6ff7  com.apple.AppKit (6.9 - 1344.72) <44EF7DEB-3072-3515-9F34-2857D557E828> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
        0x7fff85cb7000 -     0x7fff85cb8ffb  libremovefile.dylib (35) <3485B5F4-6CE8-3C62-8DFD-8736ED6E8531> /usr/lib/system/libremovefile.dylib
        0x7fff85cb9000 -     0x7fff85cf4fff  com.apple.Symbolication (1.4 - 56045) <D64571B1-4483-3FE2-BD67-A91360F79727> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
        0x7fff85cf5000 -     0x7fff85d25fff  libsystem_m.dylib (3086.1) <1E12AB45-6D96-36D0-A226-F24D9FB0D9D6> /usr/lib/system/libsystem_m.dylib
        0x7fff85d33000 -     0x7fff85e12ff7  com.apple.MailCore (8.2 - 2070.6) <CBDC7BD9-6803-3A9D-87ED-E5EA7AD34399> /System/Library/PrivateFrameworks/MailCore.framework/Versions/A/MailCore
        0x7fff85e13000 -     0x7fff85e17fff  com.apple.LoginUICore (3.0 - 3.0) <035C8626-9E66-3E3F-9976-BA4BCD9646F3> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/Lo ginUICore.framework/Versions/A/LoginUICore
        0x7fff85e18000 -     0x7fff85e1afff  com.apple.SecCodeWrapper (4.0 - 238.10.1) <8DAF71DB-C99A-3B72-A639-2C8CBEA84B93> /System/Library/PrivateFrameworks/SecCodeWrapper.framework/Versions/A/SecCodeWr apper
        0x7fff85e1b000 -     0x7fff85e55ffb  com.apple.DebugSymbols (115 - 115) <6F03761D-7C3A-3C80-8031-AA1C1AD7C706> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
        0x7fff85e56000 -     0x7fff85e56fff  com.apple.AOSMigrate (1.0 - 1) <6893B495-188D-3F88-81E7-8FAFDD53323D> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
        0x7fff85e71000 -     0x7fff85e7dff7  com.apple.HelpData (2.1.4 - 90) <471200E4-1D51-3D8C-A956-A52F8EB7B552> /System/Library/PrivateFrameworks/HelpData.framework/Versions/A/HelpData
        0x7fff85e7e000 -     0x7fff85e9bfff  libsystem_kernel.dylib (2782.10.72) <97CD7ACD-EA0C-3434-BEFC-FCD013D6BB73> /usr/lib/system/libsystem_kernel.dylib
        0x7fff85e9c000 -     0x7fff85ec7fff  com.apple.DictionaryServices (1.2 - 229) <6789EC43-CADA-394D-8FE8-FC3A2DD136B9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
        0x7fff85ec8000 -     0x7fff85fa8fff  com.apple.QuickLookUIFramework (5.0 - 675.13) <A4B5E57E-F363-3C63-8861-4DCEAC3FB23B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
        0x7fff85fbc000 -     0x7fff860affff  com.apple.MapKit (1.0 - 1464.4.21.1) <DF2A21A5-4128-388C-9BDA-E55DAD02103B> /System/Library/Frameworks/MapKit.framework/Versions/A/MapKit
        0x7fff860b0000 -     0x7fff860b1fff  com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
        0x7fff860b2000 -     0x7fff86381ff3  com.apple.CoreImage (10.0.33) <6E3DDA29-718B-3BDB-BFAF-F8C201BF93A4> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
        0x7fff86382000 -     0x7fff8638afff  libsystem_platform.dylib (63) <64E34079-D712-3D66-9CE2-418624A5C040> /usr/lib/system/libsystem_platform.dylib
        0x7fff8638b000 -     0x7fff864bdff7  com.apple.MediaControlSender (2.0 - 215.15) <454420EB-E6FE-3074-8D58-67471E1D61E5> /System/Library/PrivateFrameworks/MediaControlSender.framework/Versions/A/Media ControlSender
        0x7fff864be000 -     0x7fff864e2fff  com.apple.speech.LatentSemanticMappingFramework (2.11.6 - 2.11.6) <5AB4EF58-829E-382D-9E4E-BCD2085C47CC> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
        0x7fff864e3000 -     0x7fff864f4ff7  libz.1.dylib (55) <88C7C7DE-04B8-316F-8B74-ACD9F3DE1AA1> /usr/lib/libz.1.dylib
        0x7fff864f5000 -     0x7fff8651bff7  com.apple.ChunkingLibrary (2.1 - 163.1) <3514F2A4-38BD-3849-9286-B3B991057742> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/Chunking Library
        0x7fff8651c000 -     0x7fff8651cfff  libOpenScriptingUtil.dylib (162) <EFD79173-A9DA-3AE6-BE15-3948938204A6> /usr/lib/libOpenScriptingUtil.dylib
        0x7fff8651d000 -     0x7fff86601fff  libcrypto.0.9.8.dylib (52.10.1) <2A2924DE-63FB-37F6-B102-84D69240675B> /usr/lib/libcrypto.0.9.8.dylib
        0x7fff86602000 -     0x7fff86634ff3  com.apple.frameworks.CoreDaemon (1.3 - 1.3) <C6DB0A

Maybe you are looking for

  • I have the first iPad and just bought a mini. How do I get my old info to my new iPad. Also I would like to clear all info on old one to give to someone.

    Had first iPad. Just bought mini. How do I transfer info to new one and erase it on old one so I can give it to someone

  • PDF TO HTML

    I would like to know if it's possible with PHP [Not necessary PHP , but also like RUBY on Rail or python if it is] to convert a pdf file to an html file. What exactly i want 1) On Web server I put my pdf file in a dictionry 2) Using PHP (Or any open

  • Relinking project files on imovie 9.0.9

    I have some projects i want to go back to and re-edit (which wasn't expected before). As it wasn't expected, i deleted the event that contained the original video files and now i have the yellow triangle with '!' on all of my projects. there is a pag

  • Web Query -- Page cannot be displayed

    Hi, What parameter controls the time out of a web report. I have a query which takes around 16 mins to pull up results when I run it thru RSRT and BEx. When the query is run on the web exactly after 13 mins page cannot be displayed screen comes up..

  • ABAP proxy code

    Hi, i need to write a report program to trigger client proxy input parameters for the report company code and based on company code FM extract information which is defined in tables option. how do i map the proxy table to FM table. below mentioed are