Arrays to stacks

does anyone know how I can get some numbers from an array into a stack
thanks
henry

A stack is a queue data structure. You access it using the last in first out principle (LIFO) with two methods often called push and pop. You can easily implement a stack using an array like this
int[] stack = new int[10];
int index = 0;
public void push(int e) {
   stack[index++] = e;
public int pop() {
   return stack[--index];
}This is a very rudimentary version to show the principle. You'll have to complement it with checks against overflow/underflow. There are also often additional convinience method available, for example isEmpty/isFull.

Similar Messages

  • Creating array w/Stacks

    I have the following source which loads 10 elements and then unloads the array. I want it to modify the class which loads one element with 10 animal names and another array with 10 insect names.
    The class should then display the contents of each element of the array as it is 'popped' off the stack. Can someone please help me on modifying the following code:
    // This class defines an integer stack that can hold 10 values.
    class Stack {
    int stck[] = new int[10];
    int tos;
    // Initialize top-of-stack
    Stack() {
    tos = -1;
    // Push an item onto the stack
    void push(int item) {
    if(tos==9)
    System.out.println("Stack is full.");
    else
    stck[++tos] = item;
    // Pop an item from the stack
    int pop() {
    if(tos < 0) {
    System.out.println("Stack underflow.");
    return 0;
    else
    return stck[tos--];
    class TestStack {
    public static void main(String args[]) {
    Stack carNames = new Stack();
    Stack stateNames = new Stack();
    // push some numbers onto the stack
    for(int i=0; i<10; i++) carNames.push(i);
    for(int i=0; i<10; i++) stateNames.push(i);
    // pop those numbers off the stack
    System.out.println("Stack in carNames:");
    for(int i=0; i<10; i++)
    System.out.println(carNames.pop());
    System.out.println("Stack in stateNames:");
    for(int i=0; i<10; i++)
    System.out.println(stateNames.pop());
    TIA,
    Mark
    null

    I have the following source which loads 10 elements and then unloads the array. I want it to modify the class which loads one element with 10 animal names and another array with 10 insect names.
    The class should then display the contents of each element of the array as it is 'popped' off the stack. Can someone please help me on modifying the following code:
    // This class defines an integer stack that can hold 10 values.
    class Stack {
    int stck[] = new int[10];
    int tos;
    // Initialize top-of-stack
    Stack() {
    tos = -1;
    // Push an item onto the stack
    void push(int item) {
    if(tos==9)
    System.out.println("Stack is full.");
    else
    stck[++tos] = item;
    // Pop an item from the stack
    int pop() {
    if(tos < 0) {
    System.out.println("Stack underflow.");
    return 0;
    else
    return stck[tos--];
    class TestStack {
    public static void main(String args[]) {
    Stack carNames = new Stack();
    Stack stateNames = new Stack();
    // push some numbers onto the stack
    for(int i=0; i<10; i++) carNames.push(i);
    for(int i=0; i<10; i++) stateNames.push(i);
    // pop those numbers off the stack
    System.out.println("Stack in carNames:");
    for(int i=0; i<10; i++)
    System.out.println(carNames.pop());
    System.out.println("Stack in stateNames:");
    for(int i=0; i<10; i++)
    System.out.println(stateNames.pop());
    TIA,
    Mark
    null

  • Help with array program!!

    hi friends
    i am a new comer to java and I have been studying Arrays recently. I came across this program on the internet ( thanks to Peter Williams)
    package DataStructures;
    import java.util.NoSuchElementException;
    * An array implementation of a stack
    * @author Peter Williams
    public class StackArray implements Stack {
    private int top; // for storing next item
    public StackArray() {
    stack = new Object[1];
    top = 0;
    public boolean isEmpty() {
    return top == 0;
    public void push(Object item) {
    if (top == stack.length) {
    // expand the stack
    Object[] newStack = new Object[2*stack.length];
    System.arraycopy(stack, 0, newStack, 0, stack.length);
    stack = newStack;
    stack[top++] = item;
    public Object pop() {
    if (top == 0) {
    throw new NoSuchElementException();
    } else {
    return stack[--top];
    interface Stack {
    * Indicates the status of the stack.
    * @return <code>true</code> if the stack is empty.
    public boolean isEmpty();
    * Pushes an item onto the stack.
    * @param <code>item</code> the Object to be pushed.
    public void push(Object item);
    * Pops an item off the stack.
    * @return the item most recently pushed onto the stack
    * @exception NoSuchElementException if the stack is empty.
    public Object pop();
    class StackDemo {
    public static void main(String[] args) {
         Stack s = new StackArray();
         // Stack s = new StackList();
         for (int i = 0; i < 8; i++) {
         s.push(new Integer(i));
         while (!s.isEmpty ()) {
         System.out.println(s.pop());
    what baffles me is as below:
    there is an 'if' construct in the push method, which talks about if(top == stack.length)
    I fail to understand how top can at any time be equal to stack.length.
    Could you help me understand this program?
    a thousand apologies and thanks in advance

    figurativelly speaking:
    if you take an array and put it standing on your tesk, so that start of array points to floor, and end of array points to roof, then you can start filling that array as stack.
    if you put books into stack, then you push (put) them on top of the stack, so the first book ever but into stack is adiacent to array element with index zero (0) and then second book in stack would be adiacent to array element that has index one (1) and so on.
    if you have array of size 5, then fift book in stack would be adiacent to array element with index four (4)
    after pushing that Object to stack, the top variable will get incremented (top++ in code) and be equal to size of array.
    however, if you would like to push another Object to stack, then it would fall over the end of the array, so longer array is needed...

  • Multi-threaded stack

    Hello,
    Fisrt of all, I am sorry that I post such a noobish question which, I am confident, has been resolved in a number of times, but I was unable to Google the answer.
    Here's the problem:
    I have a array-based stack implementation that takes ints.
    The Push method adds the value to the next empty "slot", or waits (wait() method) if the stack is full.
    The Pop method removes the last value, or waits if the stack is empty.
    Both methods calls notifyAll() in the end - so adding value would wake up "poppers" and removing value would wake up "pushers".
    Now I have this stack and 3 pushers and 3 poppers, each running in its own thread. The stack capacity is limited (10 in my case). Each pusher will push 100 random values. The problem is that pushers will push theirs 100 values and end, but when this happens and all values are popped, poppers would wait indefinetly for more values (so theirs threads would never die).
    The problem I am stuck with is when I enter the Pop() method, I am bound to return a value, but if no more values are going to occur, I dont know what to return - and I dont want to throw an exception.
    TY for answer

    1) It should not. It is an universal stack that should not care what is going on anywhere else.
    2) The first answer renders this question irrelevant.
    I am enclosing the source:
    class Popper extends Thread
         private Stack stack;
         private String name;
         Popper(Stack stack, String name) {
              this.stack = stack;
              this.name = name;
         public void run() {
              while(true){
                   int value = stack.pop();
                   System.out.println(name + " popped " + value);
                   stack.printout();
    class Pusher extends Thread
         private java.util.Random generator;
         private Stack stack;
         private String name;
         public Pusher(Stack stack, String name) {
              this.stack = stack;
              this.name = name;
              generator = new java.util.Random();
         public void run() {
              for (int i = 0; i < 10; i++) {
                   int rand = generator.nextInt(20);
                   stack.push(rand);
                   System.out.println(name + " pushed " + rand);
                   stack.printout();
    class Stack
         private boolean full;
         private boolean empty = true;
         private int[] stack;
         private int currentIndex;
         public Stack(int capacity) {
              stack = new int[capacity];
         public synchronized void push(int value){
              while (full){
                   try {
                        wait();
                   } catch (InterruptedException e) {e.printStackTrace();}
              stack[currentIndex++] = value;
              empty = false;
              if(currentIndex >= stack.length) full = true;
              notifyAll();
         public synchronized int pop (){
              while(empty){
                   try {
                        wait();
                   } catch (InterruptedException e) {e.printStackTrace();}
              int value = stack[--currentIndex];
              stack[currentIndex] = 0;
              full = false;
              if(currentIndex == 0) empty = true;
              notifyAll();
              return value;
         public void printout(){
              StringBuilder builder = new StringBuilder();
              for(int i = 0; i < stack.length; i++){
                   builder.append(stack[i] + ", ");
              System.out.println(builder.toString());
    class Start
         public static void main(String[] args) {
              Stack stack = new Stack(10);
              Pusher pusher = new Pusher(stack, "Pusher 1");
              Pusher pusher2 = new Pusher(stack, "Pusher 2");
              Pusher pusher3 = new Pusher(stack, "Pusher 3");
              Popper popper = new Popper(stack, "Popper 1");
              Popper popper2 = new Popper(stack, "Popper 2");
              Popper popper3 = new Popper(stack, "Popper 3");
              pusher.start();
              pusher2.start();
              pusher3.start();
              popper.start();
              popper2.start();
              popper3.start();
    }Try to run the code for urself. At the end, the three poppers will be waiting in the pop() method indefinetly, so the program will never terminate. I want to chage this code so that the program will terminate when no more pushes will occur and the stack is empty.
    Edited by: Shagrat on Mar 3, 2010 11:47 AM

  • Arrays, arrays !!! Manipulating

    Hello all,
    Just a thing I don't understand :
    I use a VI that returns arrays (1D and 2D).
    I use it in a For Loop, so I get all the arrays when the loop exits.
    1D arrays are stacked in a 2D array and 2D arrays in a 3D array.
    How can I extract my 1D and 2D arrays in another VI ?
    Bruno Colombet
    Neurophysiologie et Neuropsychologie
    INSERM E9926
    Faculté de Médecine
    27 Bd Jean Moulin
    133385 Marseille cedex 05

    You can use Index array function, if you want to extract a
    1D array from a 2D array, wire the 2D array to the input
    and if for example, you need the first row of that 2D
    array, wire a 0 to the index first value, add another index
    value and disable indexing by right-clicking on it. In the
    output, you'll get the first row of your 2D array, as a 1D
    array. In case you need to extract columns, use the first
    index empty and disabled, and wire the position you want in
    the second. In a 3D array is the same but with 3 dimensions.
    Hope this helps, if not, ask again.
    Best Regards
    Gorka Larrea
    [email protected]
    * Sent from AltaVista http://www.altavista.com Where you can also find related Web Pages, Images, Audios, Videos, News, and Shopping. Smart is Beautiful

  • Motion 4 crashes on start after Lion upgrade

    Just upgraded from SL to the new Lion, upgraded FCS2 to FCS3 on my MBP 15 (relativley new, i7) and can't get Motion to start, it keeps
    crashing at the same Thread;
    Crashed Thread:  7  com.apple.CFSocket.private
    (All other FCS 3 start ok after the upgrade except Motion)
    I have seen many other issues with FCS apps and Lion reported on other forums, and I am wondering if anybody has an insight into resolving this.
    BTW; FCS 3 (including Motion 4) runs ok on my other Mac Pro core 8 with SL OSX.

    Thanks for the reply, verified disk and permmissions, repaired permissions.
    First I get this window;
    I hit Restore Windows, and then I get the crash log posted below, thanks for any advise;
    Process:         Motion [218]
    Path:            /Applications/Motion.app/Contents/MacOS/Motion
    Identifier:      com.apple.motion
    Version:         4.0.3 (729)
    Build Info:      Motion-7290000~62
    Code Type:       X86 (Native)
    Parent Process:  launchd [142]
    Date/Time:       2011-08-13 20:33:15.586 -0700
    OS Version:      Mac OS X 10.7 (11A511)
    Report Version:  9
    Interval Since Last Report:          37876 sec
    Crashes Since Last Report:           4
    Per-App Interval Since Last Report:  30 sec
    Per-App Crashes Since Last Report:   3
    Anonymous UUID:                      61A18AC5-A997-40AF-BFC3-255BF167716F
    Crashed Thread:  5  com.apple.CFSocket.private
    Exception Type:  EXC_BREAKPOINT (SIGTRAP)
    Exception Codes: 0x0000000000000002, 0x0000000000000000
    Application Specific Information:
    *** Terminating app due to uncaught exception 'NSRangeException', reason: '*** -[__NSArrayM removeObjectAtIndex:]: index 0 beyond bounds for empty array'
    *** Call stack at first throw:
              0   CoreFoundation                      0x90680e77 __raiseError + 231
              1   libobjc.A.dylib                     0x9b082149 objc_exception_throw + 155
              2   CoreFoundation                      0x9056fa1a -[__NSArrayM removeObjectAtIndex:] + 346
              3   Boris Continuum Express             0x0f1c0549 -[NSMutableArray(BCEMarkupParserArrayAdditions) setObject:atIndex:] + 55
              4   CoreFoundation                      0x905871d2 CFArraySetValueAtIndex + 130
              5   CoreFoundation                      0x905c5de0 __CFSocketManager + 2576
              6   libsystem_c.dylib                   0x985a1ed9 _pthread_start + 335
              7   libsystem_c.dylib                   0x985a56de thread_start + 34
    objc[218]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib                  0x9a05ec22 mach_msg_trap + 10
    1   libsystem_kernel.dylib                  0x9a05e1f6 mach_msg + 70
    2   libFontRegistry.dylib                   0x90995c30 XTSendCopyLocalizedNameForFonts + 338
    3   libFontRegistry.dylib                   0x909994d2 TGlobalFontRegistryImp::CopyLocalizedNameForFonts(__CFString const*, __CFArray const*, __CFArray const*, TFontQueryOptions const&) const + 424
    4   libFontRegistry.dylib                   0x9099ec0e TGlobalFontRegistry::CopyLocalizedNameForFonts(__CFString const*, __CFArray const*, __CFArray const*, TFontQueryOptions const&) const + 48
    5   libFontRegistry.dylib                   0x909ad395 XTCopyLocalizedNameForFonts + 282
    6   com.apple.CoreText                      0x909f26e6 TXTypeRegistry::CopyLocalizedNameForFonts(__CFString const*, __CFArray const*, __CFArray const*, unsigned int, unsigned int) const + 48
    7   com.apple.CoreText                      0x909f23ee TBaseFont::CopyLocalizedName(__CFString const*, __CFString const**) const + 206
    8   com.apple.CoreText                      0x909f22d1 TBaseFont::CopyAttribute(unsigned long, __CFString const**) const + 73
    9   com.apple.CoreText                      0x909f2279 TDescriptor::CopyAttribute(__CFString const*, __CFString const**) const + 65
    10  com.apple.CoreText                      0x909f2221 CTFontDescriptorCopyLocalizedAttribute + 56
    11  com.apple.AppKit                        0x9576f5d3 __NSLocalizedNameForFamilyAndFace + 1019
    12  com.apple.AppKit                        0x9576f1c7 -[NSFontManager localizedNameForFamily:face:] + 20
    13  com.apple.motion.TextFramework          0x0edc7e0c TXFontManager::enumerateSystemFonts() + 1004
    14  com.apple.motion.TextFramework          0x0edc83e8 TXFontManager::initFonts() + 24
    15  com.apple.motion.TextFramework          0x0edc6ce0 TXFontManager::TXFontManager() + 224
    16  com.apple.motion.TextFramework          0x0edc6dd6 TXFontManager::getInstance() + 70
    17  com.apple.motion.Text                   0x0ed283b5 0xed27000 + 5045
    18  com.apple.ozone.framework               0x0081ffd2 OZApplication::FinishInitializingPlugins() + 66
    19  com.apple.ozone.framework               0x00844520 -[OZApplicationController applicationDidFinishLaunching:] + 448
    20  com.apple.Foundation                    0x9001c51d __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 49
    21  com.apple.CoreFoundation                0x905c1843 ___CFXNotificationPost_block_invoke_1 + 275
    22  com.apple.CoreFoundation                0x9058c658 _CFXNotificationPost + 2776
    23  com.apple.Foundation                    0x9000770a -[NSNotificationCenter postNotificationName:object:userInfo:] + 92
    24  com.apple.AppKit                        0x955424cc -[NSApplication _postDidFinishNotification] + 259
    25  com.apple.AppKit                        0x955421c2 -[NSApplication _sendFinishLaunchingNotification] + 84
    26  com.apple.AppKit                        0x95540da4 -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 277
    27  com.apple.AppKit                        0x95540aba -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 377
    28  com.apple.CoreFoundation                0x905d9db8 -[NSObject performSelector:withObject:withObject:] + 72
    29  com.apple.Foundation                    0x900417e6 __-[NSAppleEventManager setEventHandler:andSelector:forEventClass:andEventID:]_block_invoke_1 + 121
    30  com.apple.Foundation                    0x90040599 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 476
    31  com.apple.Foundation                    0x9004036d _NSAppleEventManagerGenericHandler + 234
    32  com.apple.AE                            0x95113f1d aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned long, unsigned char*) + 202
    33  com.apple.AE                            0x950fda4b _ZL25dispatchEventAndSendReplyPK6AEDescPS_ + 43
    34  com.apple.AE                            0x950fd938 aeProcessAppleEvent + 253
    35  com.apple.HIToolbox                     0x96329f72 AEProcessAppleEvent + 103
    36  com.apple.AppKit                        0x9553db5b _DPSNextEvent + 1301
    37  com.apple.AppKit                        0x9553d159 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 113
    38  com.apple.AppKit                        0x955394cb -[NSApplication run] + 904
    39  com.apple.prokit                        0x001bef35 NSProApplicationMain + 439
    40  com.apple.motion                        0x000055de 0x1000 + 17886
    41  com.apple.motion                        0x00002746 0x1000 + 5958
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib                  0x9a06190a kevent + 10
    1   libdispatch.dylib                       0x968ecccc _dispatch_mgr_invoke + 969
    2   libdispatch.dylib                       0x968eb71b _dispatch_mgr_thread + 53
    Thread 2:
    0   libsystem_kernel.dylib                  0x9a06102e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x985a3ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x985a56fe start_wqthread + 30
    Thread 3:: com.apple.appkit-heartbeat
    0   libsystem_kernel.dylib                  0x9a060bb2 __semwait_signal + 10
    1   libsystem_c.dylib                       0x985567b9 nanosleep$UNIX2003 + 187
    2   libsystem_c.dylib                       0x98556558 usleep$UNIX2003 + 60
    3   com.apple.AppKit                        0x95783f84 -[NSUIHeartBeat _heartBeatThread:] + 2399
    4   com.apple.Foundation                    0x900645ed -[NSThread main] + 45
    5   com.apple.Foundation                    0x9006459d __NSThread__main__ + 1582
    6   libsystem_c.dylib                       0x985a1ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x985a56de thread_start + 34
    Thread 4:
    0   libsystem_kernel.dylib                  0x9a06102e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x985a3ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x985a56fe start_wqthread + 30
    Thread 5 Crashed:: com.apple.CFSocket.private
    0   com.apple.CoreFoundation                0x90680d67 ___TERMINATING_DUE_TO_UNCAUGHT_EXCEPTION___ + 7
    1   libobjc.A.dylib                         0x9b082149 objc_exception_throw + 155
    2   com.apple.CoreFoundation                0x9056fa1a -[__NSArrayM removeObjectAtIndex:] + 346
    3   com.apple.Boris_Continuum_Express          0x0f1c0549 -[NSMutableArray(BCEMarkupParserArrayAdditions) setObject:atIndex:] + 55
    4   com.apple.CoreFoundation                0x905871d2 CFArraySetValueAtIndex + 130
    5   com.apple.CoreFoundation                0x905c5de0 __CFSocketManager + 2576
    6   libsystem_c.dylib                       0x985a1ed9 _pthread_start + 335
    7   libsystem_c.dylib                       0x985a56de thread_start + 34
    Thread 6:
    0   libsystem_kernel.dylib                  0x9a06102e __workq_kernreturn + 10
    1   libsystem_c.dylib                       0x985a3ccf _pthread_wqthread + 773
    2   libsystem_c.dylib                       0x985a56fe start_wqthread + 30
    Thread 5 crashed with X86 Thread State (32-bit):
      eax: 0x00000001  ebx: 0x0f1c0500  ecx: 0x00000001  edx: 0x00000000
      edi: 0x02683ff0  esi: 0x9b0820bf  ebp: 0xb010b238  esp: 0xb010b230
       ss: 0x00000023  efl: 0x00000286  eip: 0x90680d67   cs: 0x0000001b
       ds: 0x00000023   es: 0x00000023   fs: 0x00000023   gs: 0x0000000f
      cr2: 0x0b465000
    Logical CPU: 2
    Binary Images:
        0x1000 -    0x3ffe7  com.apple.motion (4.0.3 - 729) <5343B1F6-DD6F-9A9F-F263-D3F523A3E4CF> /Applications/Motion.app/Contents/MacOS/Motion
      0x143000 -   0x179ffa  com.apple.proinspector.framework (4.0.2 - 761) <F27F2F3B-ADAD-523A-63F3-1566C8151CC5> /Library/Application Support/ProApps/*/ProInspector.framework/Versions/A/ProInspector
      0x19c000 -   0x3c1ff7  com.apple.prokit (7.1 - 1507) <12A56F84-663D-395D-A1AE-1F4D128764CA> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/ProKit
      0x4cc000 -   0x4dbfff  com.apple.AERegistration (1.2 - 77) <5D18C47F-6F9E-0C4C-8875-24A14A97186D> /Applications/Motion.app/Contents/Frameworks/AERegistration.framework/Versions/ A/AERegistration
      0x4ef000 -   0x4fbfff  com.apple.PluginManager (1.7.3 - 34) <13CD3A05-A00C-4FA7-AD61-2A706A67E390> /Library/Frameworks/PluginManager.framework/Versions/B/PluginManager
      0x508000 -   0x521fff  com.apple.promath.framework (4.0.2 - 729) <E53A4C23-4FB1-B79F-AF75-94D760971337> /Library/Application Support/ProApps/*/ProMath.framework/Versions/A/ProMath
      0x52b000 -   0x532fff  com.apple.AEProfiling (1.2 - 22) <43A46C32-8E13-82DD-8AF1-2A40690BF810> /Applications/Motion.app/Contents/Frameworks/AEProfiling.framework/Versions/A/A EProfiling
      0x53c000 -   0x6a4ff2  com.apple.ProMedia (4.0.2 - 729) <07F6C2C0-ACFD-27D8-D887-74E47F0196F9> /Library/Application Support/ProApps/*/ProMedia.framework/Versions/A/ProMedia
      0x715000 -   0xff6fe2  com.apple.ozone.framework (4.0.3 - 729) <DE284932-95B3-FBCA-27EA-3534283284CE> /Library/Application Support/ProApps/*/Ozone.framework/Versions/A/Ozone
    0x1498000 -  0x1502ff2  com.apple.ProGraphics (4.0.3 - 729) <B5D87DAB-5DEE-A323-7615-D865F68C7994> /Library/Application Support/ProApps/*/ProGraphics.framework/Versions/A/ProGraphics
    0x161f000 -  0x17a3fe2  com.apple.Lithium (4.0.2 - 729) <228EB85A-BDBC-55EE-9AC6-E4990DB34DFF> /Library/Application Support/ProApps/*/Lithium.framework/Versions/A/Lithium
    0x182a000 -  0x18f8ff3  com.apple.prochannel.framework (4.0.2 - 763) <721D6E76-2081-097D-4C2E-22C6162B8DDB> /Library/Application Support/ProApps/*/ProChannel.framework/Versions/A/ProChannel
    0x1997000 -  0x1a34ff8  com.apple.procore.framework (4.0.2 - 757) <D3146F1E-F86D-F2A2-509B-E3F9640CBE40> /Library/Application Support/ProApps/*/ProCore.framework/Versions/A/ProCore
    0x1a74000 -  0x1a92fef  com.apple.XSKey (1.0.0 - 52) <71B94F53-15DB-9012-91F2-211F7C2CD790> /Library/Frameworks/XSKey.framework/Versions/A/XSKey
    0x1aa1000 -  0x1aaaff7  com.apple.finalcutstudio.prometadatasupport (0.6 - 1.0) <C4AF1557-3CC8-3BB7-C017-55D66B0873C1> /Library/Frameworks/ProMetadataSupport.framework/Versions/A/ProMetadataSupport
    0x1ab2000 -  0x1b80fe7  org.python.python (2.5.5 - 2.5) <616CB8BB-642A-32FC-A405-19C166C8C24D> /System/Library/Frameworks/Python.framework/Versions/2.5/Python
    0x1bc0000 -  0x1c24fe2  com.apple.LiveType.framework (2.1.4 - 2.1.4) <C9D29156-2471-2A9D-3657-EF06204229C6> /Library/Application Support/ProApps/*/LiveType.framework/Versions/A/LiveType
    0x1c44000 -  0x1c45ff7  com.apple.Helium (3.0.3 - 359) <1B909921-EE16-B317-3670-B0C63C70F01B> /Library/Application Support/ProApps/*/Helium.framework/Versions/A/Helium
    0x1c4a000 -  0x1c4afff  com.apple.iokit.dvcomponentglue (2.0.7 - 2.0.7) <1CFA5944-AB33-3A41-B4D2-4A624A514C0D> /System/Library/Frameworks/DVComponentGlue.framework/Versions/A/DVComponentGlue
    0x1c4e000 -  0x1c9affb  com.apple.audio.midi.CoreMIDI (1.8 - 42) <CBD34EBC-0FFD-34B4-B55A-BE1F61EF4BD8> /System/Library/Frameworks/CoreMIDI.framework/Versions/A/CoreMIDI
    0x1cbd000 -  0x1cceff7  com.apple.fxplugframework (1.2.3 - 1.2.3) <033FEA79-E666-D319-5BD5-25A9A4331190> /Library/Frameworks/FxPlug.framework/Versions/A/FxPlug
    0x1ce1000 -  0x1cfefff  libedit.2.dylib (3.0.0 - compatibility 2.0.0) <8B3A70E4-0C02-3AE8-8B59-7BE2334383AC> /usr/lib/libedit.2.dylib
    0x1d0b000 -  0x1d1cfff  com.apple.RetimingMath (4.0.2 - 729) <2ED17500-06D7-08B5-441F-AFE5DDDE71AD> /Library/Application Support/ProApps/*/RetimingMath.framework/Versions/A/RetimingMath
    0x1d31000 -  0x1d32fff  com.apple.FxHeliumImage (4.0.0 - 1.0) <62A25655-AB02-73F7-FE2B-21823D2D4BA4> /Library/Application Support/ProApps/*/FxHeliumImage.framework/Versions/A/FxHeliumImage
    0x1d38000 -  0x1e8afec  com.apple.Helium.HeliumRender (2.0.3 - 359) <93D90702-A8F2-B483-818A-6C5E85D7000F> /Library/Application Support/ProApps/*/Helium.framework/Versions/A/Frameworks/HeliumRender.framework /Versions/A/HeliumRender
    0x1ee3000 -  0x1f90ff7  libcrypto.0.9.7.dylib (0.9.7 - compatibility 0.9.7) <7B6DB792-C9E5-3772-8734-8D0052757B8C> /usr/lib/libcrypto.0.9.7.dylib
    0x2773000 -  0x27a0ff8  GLRendererFloat (??? - ???) <BBFAA220-4A07-3CDC-9A93-DF6A2220AE01> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GL RendererFloat
    0x4400000 -  0x456dff0  GLEngine (??? - ???) <3C6D5F72-9CDA-37E2-B085-7F38C99FE8C5> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x45a1000 -  0x4698ffb  libGLProgrammability.dylib (??? - ???) <560A7F12-1AA6-35E1-A922-309016BF6D3C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0xa1bb000 -  0xac99ffb  com.apple.driver.AppleIntelHDGraphicsGLDriver (7.2.9 - 7.0.2) <CAA291D4-5A96-320C-87FD-CC92B12889EE> /System/Library/Extensions/AppleIntelHDGraphicsGLDriver.bundle/Contents/MacOS/A ppleIntelHDGraphicsGLDriver
    0xb42f000 -  0xb430ffc  ATSHI.dylib (??? - ???) <B244624E-E09E-34B2-A185-EB30AF08A95D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/ATSHI.dylib
    0xb435000 -  0xb439ffb  libFontRegistryUI.dylib (??? - ???) <E986346C-8132-33B6-8525-AA2A3233F99C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistryUI.dylib
    0xb49e000 -  0xb4a0ff3  com.apple.LiveType.component (2.1.4 - 2.1.4) <D60E2537-3B47-EA99-0077-6CE394378D07> /Library/QuickTime/LiveType.component/Contents/MacOS/LiveType
    0xb4a6000 -  0xb4ecffb  com.apple.motion.component (1.0 - 729) <494487C6-EA30-43DD-39E4-BED23C5A5B1C> /Library/QuickTime/Motion.component/Contents/MacOS/Motion
    0xb4f2000 -  0xb4f4ff7  Motion (729.0.0 - compatibility 1.0.0) <051B60E9-B39F-EBB2-5B96-F088D147E78C> /Library/Frameworks/Motion.framework/Versions/A/Motion
    0xe560000 -  0xe6f7ff8  com.apple.motion.Behaviors (4.0.2 - 729) <052F3433-97BD-1C55-C23D-AD92143C71F8> /Library/Application Support/ProApps/*/Behaviors
    0xe796000 -  0xe799ff4 +net.kineme.ImageParticlePatch (0.1 - 20090214) <BC85D92C-1354-321D-0E3B-80B5A4083E5B> /Library/Graphics/Quartz Composer Patches/ImageParticlePatch.plugin/Contents/MacOS/ImageParticlePatch
    0xe79e000 -  0xe7a0ffd +net.kineme.StructureTools (0.1 - 20080606) <91F0A736-0AB0-A444-EED9-E5792A36783B> /Library/Graphics/Quartz Composer Patches/StructureTools.plugin/Contents/MacOS/StructureTools
    0xe7a6000 -  0xe7a8fff  com.apple.podcastproducer.ImageDiffer (1.3 - 244) <059EB7E6-A95B-333A-A3F6-38B074B514B6> /System/Library/Graphics/Quartz Composer Patches/ImageDifferPatch.plugin/Contents/MacOS/ImageDifferPatch
    0xeab8000 -  0xeb03ff4  com.apple.Bloodhound (4.0.2 - 729) <CE0040BB-8A9C-CD3A-3CEC-C6951C544257> /Library/Application Support/ProApps/*/Bloodhound.framework/Versions/A/Bloodhound
    0xeb2e000 -  0xeccbff8  com.apple.motion.Particles (4.0.2 - 729) <049BF10B-9B06-52CF-E500-79AE1AB90ED4> /Library/Application Support/ProApps/*/Particles
    0xed27000 -  0xed39fff  com.apple.motion.Text (4.0.2 - 729) <21A95797-1AC2-730A-8063-57A923D7F70A> /Library/Application Support/ProApps/*/Text
    0xed46000 -  0xf0faff2  com.apple.motion.TextFramework (4.0.2 - 729) <C1CDFC29-ED05-8FA7-7DC3-28D20388E055> /Library/Application Support/ProApps/*/TextFramework.framework/Versions/A/TextFramework
    0xf1b7000 -  0xf1f3fe7  com.apple.Boris_Continuum_Express (1.0 - 1) <05D6B739-7405-C56E-DD10-903E66C63B50> /Library/Plug-Ins/*/Boris Continuum Express
    0xf210000 -  0xf229fff +com.noiseindustries.Units (??? - 1.2) <81D86238-F591-D390-8065-7235A2C9AFF7> /Library/Graphics/Image Units/Noise Industries Units.plugin/Contents/MacOS/Noise Industries Units
    0xf239000 -  0xf25efff  com.apple.QuartzComposer.ExtraPatches (4.0 - 232) <9806CBC5-99A9-3CD3-89D5-FC0720612C6B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/Resources/ExtraPatches.plugin/Contents/MacOS/ExtraPatches
    0xf26e000 -  0xf297fff  com.apple.audio.OpenAL (1.5 - 1.5) <92514BE7-A29F-3332-B750-8396BE3A2B59> /System/Library/Frameworks/OpenAL.framework/Versions/A/OpenAL
    0xf2a6000 -  0xf2bafff +net.kineme.GLTools (1.1 - 20081020) <50E9648C-26DE-D5C6-AA06-7D2C14E749C7> /Library/Graphics/Quartz Composer Patches/GLTools.plugin/Contents/MacOS/GLTools
    0xf2c9000 -  0xf2ceffb  com.apple.fxmetaplug.ImageUnit (1.2.2 - 1.2.2) <874EE8A7-B644-32C8-D8E2-1E4EA379C31B> /Library/Application Support/ProApps/*/ImageUnit
    0xf500000 -  0xf533ff4  com.apple.prokit.LionPanels (7.1 - 1507) <5A09CB8B-44D5-3E94-8260-873F828BC9F2> /System/Library/PrivateFrameworks/ProKit.framework/Versions/A/Resources/LionPan els.bundle/Contents/MacOS/LionPanels
    0x10000000 - 0x10060fef  com.apple.proapps.AudioMixEngine (2.0 - 68) <C07502D6-A1C3-84DE-B526-770FB42A8CD1> /Applications/Motion.app/Contents/Frameworks/AudioMixEngine.framework/Versions/ A/AudioMixEngine
    0x1042c000 - 0x104a8fff  com.apple.speech.SpeechDictionary (4.0.57 - 4.0.57) <85BCF308-EDCE-32A5-8838-634B04BD73F2> /System/Library/PrivateFrameworks/SpeechDictionary.framework/Versions/A/SpeechD ictionary
    0x104d8000 - 0x104dcffb  com.apple.audio.AudioIPCPlugIn (1.2.0 - 1.2.0) <8A4CC918-D47D-3F33-8420-0698071A5944> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
    0x104e1000 - 0x104e7ffb  com.apple.audio.AppleHDAHALPlugIn (2.1.1 - 2.1.1f11) <8CA3DFAA-56F6-37B1-9C93-16C5C3A0A00F> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
    0x104ec000 - 0x104f4ff7  com.apple.proapps.mrcheckpro (1.4 - 398) <400C6D0F-2AC3-F06D-E20C-741BA3D9A558> /Applications/Motion.app/Contents/Resources/MRCheckPro.bundle/Contents/MacOS/MR CheckPro
    0x10800000 - 0x108a8fff  com.apple.speech.synthesis.MacinTalkSynthesizer (4.0.74 - 4.0.74) <016F2819-6F25-3F99-86CE-7EF06861CE16> /System/Library/Speech/Synthesizers/MacinTalk.SpeechSynthesizer/Contents/MacOS/ MacinTalk
    0x70000000 - 0x70140ffb  com.apple.audio.units.Components (1.7 - 1.7) <749EDF0F-BFBD-37A7-845E-3048BAF35D89> /System/Library/Components/CoreAudio.component/Contents/MacOS/CoreAudio
    0x8f0c4000 - 0x8f7d8ffb  com.apple.GeForceGLDriver (7.2.9 - 7.0.2) <ABB8D7C1-D17F-3B73-896F-DC1550D039D7> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDrive r
    0x8fe76000 - 0x8fea89c7  dyld (195.5 - ???) <134323A7-49DC-3A9D-ACFD-32FAD0FD6BA2> /usr/lib/dyld
    0x90005000 - 0x90308ff7  com.apple.Foundation (6.7 - 833.1) <94BFFEDD-0676-368D-B4C6-8784E1DA4306> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x90309000 - 0x90314ff4  com.apple.CrashReporterSupport (10.7 - 343) <BB59A426-7D2B-33DC-BCCB-AE5520AFED5E> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x90315000 - 0x90315fff  com.apple.Cocoa (6.6 - ???) <650273EF-1ABC-334E-B745-B75AF028F9F4> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
    0x90316000 - 0x9035fff7  libGLU.dylib (??? - ???) <3524C956-C8B2-3E8B-805D-9E25E5481A58> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x903ab000 - 0x903b3ff5  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <A1BFC320-616A-30AA-A41E-29D7904FC4C7> /usr/lib/system/libcopyfile.dylib
    0x903b4000 - 0x903bcffb  com.apple.DisplayServicesFW (2.5.0 - 302.1.2) <AD856B0D-3602-3C37-8B64-C6BB53A6F248> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x90417000 - 0x90481ff3  com.apple.CoreSymbolication (2.1 - 66) <B11C9057-1611-36A5-81F6-2C97A7047321> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0x90484000 - 0x90497ff9  com.apple.MultitouchSupport.framework (220.62 - 220.62) <5BD8730D-43A4-3040-9EA3-0BDA52A392A9> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x90498000 - 0x904fcfff  com.apple.framework.IOKit (2.0 - ???) <B5888D02-8C36-3404-A37E-7457D950D629> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x904fd000 - 0x9053bfff  com.apple.NavigationServices (3.6 - 192) <CB7AE807-9292-3EBA-A5F5-D7DCEE28A5B7> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x9053c000 - 0x90712fef  com.apple.CoreFoundation (6.7 - 635) <4EE0D62E-5342-3A9F-A740-DA1D5AEBB1B0> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x90713000 - 0x90719ffb  com.apple.print.framework.Print (7.0 - 247) <1140BB03-0720-308F-8D92-F71B347D63D6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x9071a000 - 0x9075bff7  com.apple.CoreMedia (1.0 - 705.35) <8A487271-FBEA-357A-8887-27BAA355314C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x90770000 - 0x9084dff3  com.apple.backup.framework (1.3 - 1.3) <7FA7E2E6-9E99-3F1B-B276-5216D0883DFD> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x9084e000 - 0x90859ff3  libCSync.A.dylib (600.0.0 - compatibility 64.0.0) <11726E50-E6FC-3AB0-8750-DDDCCF2B8534> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0x9085a000 - 0x90879fff  com.apple.RemoteViewServices (1.0 - 1) <D9810485-6A62-3758-96F5-48950AF250F1> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
    0x9087c000 - 0x90887ffe  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <4A7FCD28-9C09-3120-980A-BDF6EDFAAC62> /usr/lib/libbz2.1.0.dylib
    0x90888000 - 0x908abfff  com.apple.CoreVideo (1.7 - 70.0) <0CBE6F3B-34C7-3C6B-9BB1-826F9905ECC1> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x908e3000 - 0x90961fff  com.apple.iLifeMediaBrowser (2.6.0 - 502) <DEBD07F5-53B8-3AAB-95FC-57CD3AA4AF8C> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x90973000 - 0x90977ffd  IOSurface (??? - ???) <97E875C2-9F1A-3FBA-B80C-594892A02621> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x90978000 - 0x90980ff3  libunwind.dylib (30.0.0 - compatibility 1.0.0) <E8DA8CEC-12D6-3C8D-B2E2-5D567C8F3CB5> /usr/lib/system/libunwind.dylib
    0x90981000 - 0x909d1fff  libFontRegistry.dylib (??? - ???) <BC35B8F5-7CCA-3A04-A278-FA3306B2C4F8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
    0x909d2000 - 0x90a5eff7  com.apple.CoreText (4.0.0 - ???) <2ADB0C1E-FE27-371C-8EC3-69D5CFEA2BE7> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x90a6b000 - 0x90a72ffd  com.apple.NetFS (4.0 - 4.0) <D0D59145-D211-3E7C-9062-35A2833FA99B> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x90a73000 - 0x90a93fff  com.apple.framework.internetaccounts (1.0 - 1) <81784495-964C-3814-A3AC-24C15A033C6E> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
    0x90a94000 - 0x90b2bff3  com.apple.securityfoundation (5.0 - 55005) <F5A98CC2-11C6-34F3-8F72-75B642627630> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x90b2c000 - 0x90b54ff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <FCAC685A-724F-3FE7-8416-146108DF75FB> /usr/lib/libxslt.1.dylib
    0x90b58000 - 0x90b86fe7  libSystem.B.dylib (159.0.0 - compatibility 1.0.0) <FA9B75F7-B989-3DD3-97FD-373EB95C5BA8> /usr/lib/libSystem.B.dylib
    0x90d87000 - 0x91030ff7  com.apple.AddressBook.framework (6.0 - 1043) <54E6D4A0-2799-386D-B53A-9582393E5E5E> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x91031000 - 0x9104efff  libresolv.9.dylib (46.0.0 - compatibility 1.0.0) <95AE43ED-6C52-3B39-89B6-54C81C62F1FF> /usr/lib/libresolv.9.dylib
    0x9104f000 - 0x913abfff  com.apple.MediaToolbox (1.0 - 705.35) <425BD613-CB66-3BE1-8DDC-1B59561A1F5F> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x913ac000 - 0x913acff2  com.apple.CoreServices (53 - 53) <C513E133-B0E0-3C35-A7CB-DBC35A7EF571> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x913ae000 - 0x913afff7  libsystem_sandbox.dylib (??? - ???) <BC0A04E9-4F28-3BC8-AA7B-63C3451E9212> /usr/lib/system/libsystem_sandbox.dylib
    0x913b0000 - 0x91805fff  FaceCoreLight (1.4.2 - compatibility 1.0.0) <53AC5DCE-D04B-3DC3-808D-AA1CAD4D0924> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
    0x9184a000 - 0x9184afff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <CB952B04-595A-332B-992B-7671815750FD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x9184b000 - 0x9185bfff  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <D6F728DA-990A-32A3-86FA-4A3F4D88E309> /usr/lib/libsasl2.2.dylib
    0x91864000 - 0x91864fff  com.apple.Accelerate (1.7 - Accelerate 1.7) <881C1C85-2DEC-38DE-BC97-7804BC907282> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x91865000 - 0x91892ff7  com.apple.securityinterface (5.0 - 55004) <93C0285A-A266-3F21-82C9-434CBD3FA712> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x91893000 - 0x91896ff7  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <69357047-7BE0-3360-A36D-000F55E39336> /usr/lib/system/libmathCommon.A.dylib
    0x9189b000 - 0x918f3fff  com.apple.HIServices (1.9 - ???) <058E00E0-F1B4-395F-813E-C49C0C5F3BA9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x918f4000 - 0x918f4fff  com.apple.audio.units.AudioUnit (1.7 - 1.7) <75E38B34-1DE2-337A-A09F-0F7E91C02ABB> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x918f5000 - 0x919ecff3  com.apple.PubSub (1.0.5 - 65.28) <711EF95C-BE58-34A0-AF80-B7EAD17218E7> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0x919ed000 - 0x91da5ffb  com.apple.SceneKit (2.0 - 124) <D1B359EA-7637-31D0-800E-8E816B1F4475> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
    0x91da6000 - 0x91daaff3  libsystem_network.dylib (??? - ???) <E1455F3E-549B-3D50-A38B-17B394F3C7F6> /usr/lib/system/libsystem_network.dylib
    0x91dab000 - 0x9205cff7  com.apple.security (7.0 - 55010) <28168576-1B8C-3FE8-9356-DE79390A480A> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x92137000 - 0x9213cffd  libGFXShared.dylib (??? - ???) <7C55BE22-CDB5-3192-B7F0-96EA754A20AC> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x9213d000 - 0x92530ff7  com.apple.VideoToolbox (1.0 - 705.35) <B0D04F08-D3EB-370A-A56F-8AF01116B0D0> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x9283d000 - 0x92867ff0  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <5CAA1478-97E0-31EA-8F50-BF09D665DD84> /usr/lib/libpcre.0.dylib
    0x92868000 - 0x9286cffa  libcache.dylib (47.0.0 - compatibility 1.0.0) <98A82BC5-0DD9-3212-9CAE-35A77278EEB6> /usr/lib/system/libcache.dylib
    0x93290000 - 0x93291ff0  libunc.dylib (24.0.0 - compatibility 1.0.0) <BCD277D0-4271-3E96-A4A2-85669DBEE2E2> /usr/lib/system/libunc.dylib
    0x932a3000 - 0x93318fff  com.apple.Metadata (10.7.0 - 627.9) <1EF7D615-3DF4-3F5D-88CE-6BDFA120FE32> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x93319000 - 0x9331bff9  com.apple.securityhi (4.0 - 1) <BD367302-73C3-32F4-8080-E389AE89E434> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x93348000 - 0x9335dfff  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
    0x9335e000 - 0x93369fff  libkxld.dylib (??? - ???) <088640F2-429D-3368-AEDA-3C308C4EB80C> /usr/lib/system/libkxld.dylib
    0x93378000 - 0x93405fe7  libvMisc.dylib (325.3.0 - compatibility 1.0.0) <A44ADE1B-AB2C-3585-8C9D-D85B526E66C0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x93406000 - 0x93455ffb  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <51981B76-9A78-39D7-8709-7686BD2057C8> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x93456000 - 0x9367fffb  com.apple.QuartzComposer (5.0 - 232) <B25A191A-B96D-3BB0-B7D5-FDE4A97DFD06> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x93680000 - 0x9369dff3  com.apple.openscripting (1.3.3 - ???) <31A51238-0CA1-38C7-9F0E-8A6676EE3241> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x93863000 - 0x9386cff3  com.apple.CommonAuth (2.1 - 2.0) <94EA2555-212C-3704-8307-FCEE5D6D32C5> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
    0x938a2000 - 0x93d7eff6  libBLAS.dylib (??? - ???) <327C1517-2B63-3D8C-8D8E-CB4EBA2A9C36> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x93d8f000 - 0x93e77fff  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <ED3F5E83-8C76-3D46-B2FF-0D5BDF8970C5> /usr/lib/libxml2.2.dylib
    0x93e78000 - 0x93e81fff  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <FEB5330E-AD5D-37A0-8AB2-0820F311A2C8> /usr/lib/libc++abi.dylib
    0x93e90000 - 0x93f50fff  com.apple.CoreServices.OSServices (478.25 - 478.25) <13EB75E5-98E5-3C3D-A2D7-CD6CB292C227> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x93f51000 - 0x940a3ffb  com.apple.audio.toolbox.AudioToolbox (1.7 - 1.7) <5767C518-343D-36DB-8D59-C72986161AEC> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x940b8000 - 0x9413ffff  com.apple.print.framework.PrintCore (7.0 - 366) <D037D344-7463-3620-AE8F-8D0D3EA5CE8E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0x94140000 - 0x9417cffa  libGLImage.dylib (??? - ???) <7A150184-E3F7-3773-917A-A5E24B9241FA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x9417d000 - 0x941dfffb  com.apple.datadetectorscore (3.0 - 179.3) <18117942-9D6F-3283-B8B0-03C7550CA2EB> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x94217000 - 0x94270ff3  com.apple.coreui (0.3 - 162) <BD3FBC84-234A-38E0-AA29-DE0424D3FD16> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x94271000 - 0x942ecffb  com.apple.ApplicationServices.ATS (5.0 - ???) <8DF22F1E-7600-3ADA-BFC1-F6FA79914171> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x942ed000 - 0x9444effb  com.apple.QuartzCore (1.7 - 269.0) <221FF6A0-9C2C-3977-BC2A-A84C392BA49B> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x9444f000 - 0x94454ffb  com.apple.phonenumbers (1.0 - 47) <84484814-C9BE-33E7-A3DF-4DD0E970B902> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
    0x94455000 - 0x944b1ff3  com.apple.Symbolication (1.2 - 83.1) <E651A2F1-CC13-3DDD-9B0A-09180014966B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0x944b2000 - 0x944b3ff7  libquarantine.dylib (36.0.0 - compatibility 1.0.0) <70782AEC-8933-3EB4-91CA-E44C0E768C90> /usr/lib/system/libquarantine.dylib
    0x94823000 - 0x949bcff7  com.apple.CoreData (103 - 358.4) <EB07F3A5-6301-3DA4-96FC-F8381D148C69> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x949bd000 - 0x95038ff9  com.apple.CoreAUC (6.11.03 - 6.11.03) <E8553EC9-6A7E-339E-B346-A5853649D3A0> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x95039000 - 0x95087ff3  com.apple.ImageCaptureCore (3.0 - 3.0) <16B80ABD-DCDA-34AA-A539-F36A4D39CB03> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x950db000 - 0x950f5fff  com.apple.Kerberos (1.0 - 1) <25E5A286-876D-3A8E-A12F-52D184559E8C> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x950f6000 - 0x950f9ffb  com.apple.help (1.3.2 - 42) <DDCEBA10-5CDE-3ED2-A52F-5CD5A0632CA2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x950fa000 - 0x95130ff7  com.apple.AE (527.6 - 527.6) <77999151-94E3-37CD-A49E-7A9F9084F886> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x95131000 - 0x95533ff6  libLAPACK.dylib (??? - ???) <00BE0221-8564-3F87-9F6B-8A910CF2F141> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x95534000 - 0x95fb9ffe  com.apple.AppKit (6.7 - 1138) <1CEDE402-32DD-3C10-B3B3-8C3DDBE8335D> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x95fba000 - 0x95fd6ff5  com.apple.GenerationalStorage (1.0 - 124) <0BC29510-6C26-3445-88B7-21502CAFF372> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
    0x95fd7000 - 0x95ff0ffb  com.apple.frameworks.preferencepanes (15.0 - 15.0) <2DFCA1EB-E90F-305A-823B-D73D0104951B> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
    0x96060000 - 0x96063fff  com.apple.AppleSystemInfo (1.0 - 1) <D2F60873-ECB1-30A8-A02E-E772F969116E> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
    0x96064000 - 0x96068fff  com.apple.CommonPanels (1.2.5 - 94) <3A988595-DE53-34ED-9367-C9A737E2AF38> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x96069000 - 0x9606eff7  libmacho.dylib (800.0.0 - compatibility 1.0.0) <56A34E97-518E-307E-8218-C5D43A33EE34> /usr/lib/system/libmacho.dylib
    0x96187000 - 0x9618aff7  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <7F6C14CC-0169-3F1B-B89C-372F67F1F3B5> /usr/lib/system/libcompiler_rt.dylib
    0x9618b000 - 0x9618cfff  com.apple.TrustEvaluationAgent (2.0 - 1) <EABDA7EE-A98F-35B8-9E3E-7075BA651C68> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x9618d000 - 0x9627dff1  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <9E5F86A3-8405-3774-9E0C-3A074273C96D> /usr/lib/libiconv.2.dylib
    0x9627e000 - 0x962c1ffd  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <4BA1F5F1-F0A2-3FEB-BB62-F514DCBB3725> /usr/lib/system/libcommonCrypto.dylib
    0x962c2000 - 0x962caff3  liblaunch.dylib (392.18.0 - compatibility 1.0.0) <CD470A1E-0147-3CB1-B44D-0B61F9061826> /usr/lib/system/liblaunch.dylib
    0x962cb000 - 0x96301fff  com.apple.DebugSymbols (2.1 - 85) <0F996A4A-16A7-3C90-8037-0E2958D1FB16> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0x96305000 - 0x9630fff0  com.apple.DirectoryService.Framework (10.7 - 144) <8F1D20D2-300A-3CC8-BDD0-C79CE0B2BA3A> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x96310000 - 0x96317fff  com.apple.agl (3.1.4 - AGL-3.1.4) <CCCE2A89-026B-3185-ABEA-68D268353164> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x96318000 - 0x96657ff3  com.apple.HIToolbox (1.7 - ???) <A9583F07-218D-35CD-B29C-C65E6D008836> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x966fb000 - 0x96824ff9  com.apple.CFNetwork (520.0.13 - 520.0.13) <B21DE9ED-1D99-39C0-9E24-77D2A48FBFEF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x96825000 - 0x96826fff  libDiagnosticMessagesClient.dylib (??? - ???) <DB3889C2-2FC2-3087-A2A2-4C319455E35C> /usr/lib/libDiagnosticMessagesClient.dylib
    0x96827000 - 0x9682affc  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <6FFDBD60-5EC6-3EFA-996B-EE030443C16C> /usr/lib/libpam.2.dylib
    0x96837000 - 0x96897ffb  com.apple.audio.CoreAudio (4.0.0 - 4.0.0) <6026C895-3DC6-3785-A7BB-2F2B9E292D95> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x96898000 - 0x968e9ff3  com.apple.CoreMediaIO (201.0 - 3148) <C37D84D8-69B2-3375-B988-4EEB2B1A3DF4> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
    0x968ea000 - 0x968f8fff  libdispatch.dylib (187.5.0 - compatibility 1.0.0) <1883C8E2-D180-3EA0-8BEF-325F2FEDACD1> /usr/lib/system/libdispatch.dylib
    0x968f9000 - 0x968f9fff  libdnsinfo.dylib (395.6.0 - compatibility 1.0.0) <959E5139-EB23-3529-8881-2BCB5724D1A9> /usr/lib/system/libdnsinfo.dylib
    0x968fa000 - 0x96935fff  com.apple.bom (11.0 - 183) <39257FE6-8B23-39B6-9528-57184104A98F> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0x969ba000 - 0x969c7fff  libGL.dylib (??? - ???) <C1C549FC-FF7F-3012-9DF5-5255217B4AEA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x969c8000 - 0x969f3fff  com.apple.GSS (2.1 - 2.0) <129F4AB0-41AC-3713-A7BC-921769B0E12D> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
    0x969f4000 - 0x96c65ffb  com.apple.CoreImage (7.77 - 1.0.1) <DF1D9EB7-5879-3EA2-8CF5-80004DAC18BC> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
    0x96c66000 - 0x96cb6ff4  libTIFF.dylib (??? - ???) <25796A90-ABD2-3A3A-800C-1056D343A71F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x97a56000 - 0x97a6dff8  com.apple.CoreMediaAuthoring (2.0 - 889) <49B55753-BD7E-3889-BA60-15294DA49CB7> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
    0x97a6e000 - 0x97b79ffb  com.apple.DesktopServices (1.6.0 - 1.6.0) <66E2BD3A-958A-3F46-8DA0-C0F2358013B0> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x97b7a000 - 0x97ba8ffb  com.apple.DictionaryServices (1.2 - 158) <C614930F-520D-3F77-AD0D-0E16FBCB98CE> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x97ba9000 - 0x97ca1ff7  libFontParser.dylib (??? - ???) <C428D41A-8635-3423-A2F0-8BA9819F212B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x97ca2000 - 0x97d0aff3  com.apple.ISSupport (1.9.8 - 56) <963339C2-020F-337E-AFB9-176090F818EC> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0x97d0b000 - 0x97d16ffb  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <17C11291-5B27-3BE2-8614-7A806745EE8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x97d17000 - 0x97d1efff  libnotify.dylib (80.0.0 - compatibility 1.0.0) <B3B3875D-311D-31A7-A09F-D1BC56795E00> /usr/lib/system/libnotify.dylib
    0x97e02000 - 0x97e02ff0  com.apple.ApplicationServices (41 - 41) <BED33E1D-C95C-3654-9A3A-0CB3607F9F10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x97e50000 - 0x97edaffb  com.apple.SearchKit (1.4.0 - 1.4.0) <C8567435-9CD1-35EE-AE05-304D28858C42> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x97edb000 - 0x984d7fe3  libclh.dylib (4.0.3 - 4.0.3) <E7124DCC-4245-3BDE-867B-93932ECA4BA5> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x984de000 - 0x9851eff7  libauto.dylib (??? - ???) <36E7FE7F-27DF-3301-80AA-DD61FBF722F4> /usr/lib/libauto.dylib
    0x98545000 - 0x98610fff  libsystem_c.dylib (763.11.0 - compatibility 1.0.0) <44AA09FD-3A8F-3DCF-AD98-BC9071CA7376> /usr/lib/system/libsystem_c.dylib
    0x98679000 - 0x9867aff5  libremovefile.dylib (21.0.0 - compatibility 1.0.0) <9A1E12B7-F822-3544-8E1D-A6DC81E1F2E6> /usr/lib/system/libremovefile.dylib
    0x9867b000 - 0x98693ff7  libexpat.1.dylib (7.2.0 - compatibility 7.0.0) <C7003CC0-28CA-3E04-9B9E-0A15138ED726> /usr/lib/libexpat.1.dylib
    0x98694000 - 0x98698fff  libGIF.dylib (??? - ???) <F6094267-AB0E-38FC-8201-510AA4BDC974> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x98699000 - 0x98734ff3  com.apple.ink.framework (1.3.2 - 110) <9F6F37F9-999E-30C5-93D0-E48D4B5E20CD> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x9874f000 - 0x9875fff7  libCRFSuite.dylib (??? - ???) <CE616EF3-756A-355A-95AD-3472A876BEB9> /usr/lib/libCRFSuite.dylib
    0x98760000 - 0x98786ffb  com.apple.quartzfilters (1.7.0 - 1.7.0) <9C8F1F3D-D570-3F5C-9B31-5B5B82161CDE> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x98787000 - 0x98787fff  com.apple.Carbon (153 - 153) <6FF98F0F-2CDE-3888-A304-4ED447D24CE3> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
    0x98805000 - 0x98a23ff7  com.apple.imageKit (2.1 - 1.0) <0B16E64D-597C-3ECE-8076-7991AF7D6820> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x98a24000 - 0x98a2fffc  com.apple.NetAuth (1.0 - 3.0) <C07853C0-AF32-3633-9CEF-2480860C12C5> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
    0x98a31000 - 0x98a61ff7  libsystem_info.dylib (??? - ???) <C385F5A9-458A-3B49-9CC7-EA81DC5F9141> /usr/lib/system/libsystem_info.dylib
    0x98bd1000 - 0x98debff7  com.apple.JavaScriptCore (7534 - 7534.48) <430C2E37-5E97-3C16-9BC9-D8478F7A6CF6> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x98dec000 - 0x98e0effe  com.apple.framework.familycontrols (3.0 - 300) <AE51B604-D32D-32F7-AEDC-B1C4EB7191C6> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x98e0f000 - 0x98e4bfff  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <8CB51735-ABE4-37AD-9019-845BB768955F> /usr/lib/libcups.2.dylib
    0x98eca000 - 0x98edfff7  com.apple.ImageCapture (7.0 - 7.0) <116BC0CA-428E-396F-85DF-52793034D2A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x98ee0000 - 0x98f47fff  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <3AFF3CE8-14AE-300F-8F63-8B7FB9D4DA96> /usr/lib/libc++.1.dylib
    0x98f48000 - 0x98f4bff9  libCGXType.A.dylib (600.0.0 - compatibility 64.0.0) <B9344DE6-B84D-352C-95AD-EF73A68B8A10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x98f4c000 - 0x98f4cfff  com.apple.vecLib (3.7 - vecLib 3.7) <A01CD788-26FB-320F-8617-5A7DF0F9031E> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x98f4d000 - 0x98f8bfff  libRIP.A.dylib (600.0.0 - compatibility 64.0.0) <0AE59D4F-FFA7-3539-8B86-AD8993894AA0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x98f8c000 - 0x98f9cfff  com.apple.LangAnalysis (1.7.0 - 1.7.0) <6D6F0C9D-2EEA-3578-AF3D-E2A09BCECAF3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x98f9d000 - 0x98f9dfff  com.apple.quartzframework (1.5 - 1.5) <EF66BF08-620E-3D11-87D4-35D0B0CD1F6D> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x98ff5000 - 0x9900bffe  libxpc.dylib (77.16.0 - compatibility 1.0.0) <2EAF3E13-19FA-3EF2-88D6-64ACBC3A6ADB> /usr/lib/system/libxpc.dylib
    0x9900c000 - 0x9900eff7  libdyld.dylib (195.5.0 - compatibility 1.0.0) <637660EA-8D12-3B79-B644-041FEADC9C33> /usr/lib/system/libdyld.dylib
    0x9900f000 - 0x99013ff7  com.apple.OpenDirectory (10.7 - 144) <A117580D-FD86-381E-82FD-B1A040045031> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x99014000 - 0x9903cff0  com.apple.CoreServicesInternal (113.7 - 113.7) <F5724FAC-8BB8-3F0F-B8BC-36F2CA75A23D> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/Cor eServicesInternal
    0x9903d000 - 0x99113ff3  com.apple.avfoundation (2.0 - 180.23) <428C1F5D-B786-3392-ADF4-43572D1722DE> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
    0x99114000 - 0x99115fff  liblangid.dylib (??? - ???) <C8C204E9-1785-3785-BBD7-22D59493B98B> /usr/lib/liblangid.dylib
    0x99116000 - 0x99184fff  com.apple.Heimdal (2.1 - 2.0) <5BA5BFA4-0B05-3B00-AF06-C3D0D60F36BC> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x99820000 - 0x998e0ff3  com.apple.ColorSync (4.7.0 - 4.7.0) <50767823-56BA-373D-BC5A-37B17B659838> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x99a0c000 - 0x99a5cff9  com.apple.QuickLookFramework (3.0 - 489.1) <46E053F5-E7CC-3358-93AF-635837E4ECCA> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x99a5d000 - 0x99ac2ff7  libvDSP.dylib (325.3.0 - compatibility 1.0.0) <1C4B66EB-3186-31BE-B93F-878E49334C49> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x99ac3000 - 0x99ad1fff  com.apple.opengl (1.7.4 - 1.7.4) <C6DE3D3A-CC1F-3F55-B8DD-2637FA40058F> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x99ad2000 - 0x99b2fffb  com.apple.htmlrendering (76 - 1.1.4) <743C2943-40BC-36FB-A45C-3421A394F081> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x99be7000 - 0x99bf5fff  libz.1.dylib (1.2.5 - compatibility 1.0.0) <E73A4025-835C-3F73-9853-B08606E892DB> /usr/lib/libz.1.dylib
    0x99bf6000 - 0x99c00ff2  com.apple.audio.SoundManager (3.9.4 - 3.9.4) <D23C4761-6492-3974-B4D2-495082B8B7A6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x99c01000 - 0x99c07ffd  com.apple.CommerceCore (1.0 - 17) <71641C17-1CA7-3AC9-974E-AAC9EB641035> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x99c08000 - 0x99c3bfef  libtidy.A.dylib (??? - ???) <E962D8EC-6B9D-35B7-B586-F07D92302ADD> /usr/lib/libtidy.A.dylib
    0x99c3c000 - 0x99c44fff  com.apple.DiskArbitration (2.4 - 2.4) <E574D5E7-7297-33B5-8B91-1E6346D5F917> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x99c45000 - 0x99c45ffe  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <7F0E8EE2-9E8F-366F-9988-E2F119DB9A82> /usr/lib/system/libkeymgr.dylib
    0x99c46000 - 0x99cdaff7  com.apple.LaunchServices (480.19 - 480.19) <A68C0688-4ED1-35F1-BF44-F5B1917084A0> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x99d5c000 - 0x99d75fff  libPng.dylib (??? - ???) <2C47E152-240A-36A7-87A8-3856EDFF2FE8> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x99dba000 - 0x99dbbfff  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <B04592B1-0924-3422-82FF-976B339DF567> /usr/lib/system/libsystem_blocks.dylib
    0x99dbc000 - 0x99f70ff3  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <6270318A-CA9A-376C-AD6D-64A9B4B4A26E> /usr/lib/libicucore.A.dylib
    0x99f71000 - 0x9a047ff6  com.apple.QuickLookUIFramework (3.0 - 489.1) <DC6303F6-F343-37C5-AE54-F5FD606FE78C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x9a048000 - 0x9a066ff7  libsystem_kernel.dylib (1699.22.73 - compatibility 1.0.0) <D32C2E9C-8184-3FAF-8694-99FC619FC71B> /usr/lib/system/libsystem_kernel.dylib
    0x9a067000 - 0x9a06affd  libCoreVMClient.dylib (??? - ???) <1438A7D5-A622-3623-A49F-45F881B1D947> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x9a06b000 - 0x9a06dffb  libRadiance.dylib (??? - ???) <5112B7CE-BAAF-3E98-94E4-676BCB92867F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x9a0de000 - 0x9a3defff  com.apple.CoreServices.CarbonCore (960.13 - 960.13) <E098AC3A-E795-3C28-BA92-EED51C461A6F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9a4df000 - 0x9a501ff1  com.apple.PerformanceAnalysis (1.10 - 10) <45B10D4C-9B3B-37A6-982D-687A6F9EEA28> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
    0x9a502000 - 0x9a622fec  com.apple.vImage (5.0 - 5.0) <173F6343-07EE-39F7-A159-DD3837E473DE> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x9a705000 - 0x9a713ff7  com.apple.AppleFSCompression (37 - 1.0) <5D91F412-7B04-335D-8E1A-AFD463859EA2> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0x9a714000 - 0x9a748ff8  libssl.0.9.8.dylib (0.9.8 - compatibility 0.9.8) <240A755A-8B80-354C-A5BF-42D7B5A68409> /usr/lib/libssl.0.9.8.dylib
    0x9a749000 - 0x9a79aff9  com.apple.ScalableUserInterface (1.0 - 1) <C3FA7E40-0213-3ABC-A006-2CB00B6A7EAB> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
    0x9aace000 - 0x9ab46ff2  com.apple.CorePDF (3.0 - 3.0) <A0EC8F60-A622-347E-979A-F71939C45E5F> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x9ab47000 - 0x9abebfff  com.apple.QD (3.12 - ???) <68CBE425-43BA-3E6D-8668-A4A67396E20D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x9ac60000 - 0x9ac67ff5  libsystem_dnssd.dylib (??? - ???) <B3217FA8-A7D6-3C90-ABFC-2E54AEF33547> /usr/lib/system/libsystem_dnssd.dylib
    0x9ac68000 - 0x9b06efff  com.apple.RawCamera.bundle (3.7.2 - 573) <79B5B169-0884-3530-B59B-B4B0A72AC5CE> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x9b06f000 - 0x9b145a5b  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <A0EDB351-4B9D-3AA2-9D1A-0C22204FCCD3> /usr/lib/libobjc.A.dylib
    0x9b146000 - 0x9b16bff9  libJPEG.dylib (??? - ???) <5872B388-D6CC-3DD4-A2F3-8BB464E83D14> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x9b16c000 - 0x9b180ff7  com.apple.CFOpenDirectory (10.7 - 144) <665CDF77-F0C9-3AFF-8CF8-64257268B7DD> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x9b181000 - 0x9b1b2ff7  libncurses.5.4.dylib (5.4.0 - compatibility 5.4.0) <F443C643-8CA3-3471-A858-C9085E66146C> /usr/lib/libncurses.5.4.dylib
    0x9b1b3000 - 0x9b1fafff  com.apple.SystemConfiguration (1.11 - 1.11) <A7769080-2A4F-36AF-9484-08A936690307> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x9b226000 - 0x9b227ffd  libCVMSPluginSupport.dylib (??? - ???) <8057030D-B290-3A8B-9828-3A1BD123B124> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
    0x9b234000 - 0x9b2b0ff3  com.apple.PDFKit (2.6 - 2.6) <484AB8A4-E967-3B2F-BEFE-4B74F72B65A2> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x9b2b1000 - 0x9b2daffe  com.apple.opencl (1.50.62 - 1.50.62) <52059AB5-8E0D-356E-98AA-71A4777CBE57> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x9b2db000 - 0x9b3eaff7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <01987A45-9270-30FD-8A67-5E53DB637909> /usr/lib/libsqlite3.dylib
    0x9b461000 - 0x9b497ff4  com.apple.LDAPFramework (3.0 - 120.1) <EA92FCA5-7A7E-328F-8C7F-4250FCC45879> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x9b4a4000 - 0x9bb0965b  com.apple.CoreGraphics (1.600.0 - ???) <DD3B7ADA-0F19-371E-BB87-F3C08464134A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x9bb0a000 - 0x9bbd9ffb  com.apple.ImageIO.framework (3.1.0 - 3.1.0) <A482C10A-C474-39DC-AB3C-EADBCF3A433B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x9be1b000 - 0x9be2cfff  libbsm.0.dylib (??? - ???) <54ACF696-87C6-3652-808A-17BE7275C230> /usr/lib/libbsm.0.dylib
    0x9bf74000 - 0x9c057ff7  libcrypto.0.9.8.dylib (0.9.8 - compatibility 0.9.8) <6E631200-1E22-37B9-85D1-EC40520891AB> /usr/lib/libcrypto.0.9.8.dylib
    0x9c058000 - 0x9c169ff7  libJP2.dylib (??? - ???) <E938C201-C508-3E3D-B9A9-81FE52349E1B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
    0x9c215000 - 0x9c49afe3  com.apple.QuickTime (7.7.1 - 2246) <56DF434A-D929-350C-86D5-684089D0EDFB> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
    0x9c49b000 - 0x9c5fdfff  com.apple.QTKit (7.7.1 - 2246) <3BFE9BE6-4DDD-3D21-9695-0ECE773128E6> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x9c5fe000 - 0x9c660ff3  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <266CE9B3-526A-3C41-BA58-7AE66A3B15FD> /usr/lib/libstdc++.6.dylib
    0x9c669000 - 0x9c66affd  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <45AC1CB9-2A81-3FEA-9BA4-E9BBA2582A28> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    External Modification Summary:
      Calls made by other processes targeting this process:
        task_for_pid: 3
        thread_create: 0
        thread_set_state: 0
      Calls made by this process:
        task_for_pid: 0
        thread_create: 0
        thread_set_state: 0
      Calls made by all processes on this machine:
        task_for_pid: 265
        thread_create: 0
        thread_set_state: 0
    VM Region Summary:
    ReadOnly portion of Libraries: Total=244.1M resident=133.4M(55%) swapped_out_or_unallocated=110.7M(45%)
    Writable regions: Total=113.1M written=10.7M(10%) resident=18.1M(16%) swapped_out=0K(0%) unallocated=95.0M(84%)
    REGION TYPE                      VIRTUAL
    ===========                      =======
    ATS (font support)                 32.0M
    CG backing stores                   472K
    CG image                              4K
    CG raster data                      132K
    CG shared images                   1224K
    CoreGraphics                          8K
    CoreServices                       3108K
    IOKit                               400K
    MALLOC                             48.3M
    MALLOC guard page                    32

  • Help with JTree's opaque methods

    I have been looking through the methods provided for JTree in Netbeans GUIBuilder and I do not see accessor methods for actions like insertion, retrieval, deletion and replacement. I am looking for something like this.
    JTree.insert('object', JTree.getSelectedNode());
    JTree.getSelectedNode().getObject();
    JTree.deleteNode(JTree.getSelected());
    JTree. supplantObject(‘object’, JTree.getSelectedNode());
    JTree.insert('object', JTree.getSelectedNode()) should accept to inputs; the object you wish to insert and the location you wish to insert it. JTree.getSelectedNode() would be an accessor method returning the selected node. The insert would have to find the next available element in the LinkedList, array, hashtable, stack, (or whatever it uses) and inserts the object.
    JTree.getSelectedNode().getObject(); I assume that if I have “apple” selected in the JTree, “apple” will be returned.
    JTree.deleteNode(JTree.getSelected()); deleting the node wipes out all its children as well.
    JTree. supplantObject(‘object’, JTree.getSelectedNode()); overwrites the object in the selected with a new object.
    These seem like the more obvious accessor methods and I am astonished to find them missing or named something inconsistent with java standards.
    So I guess my question is, what are the equivalent method names for the aforementioned methods?
    BM

    Take a look at [http://java.sun.com/j2se/1.5.0/docs/api/javax/swing/tree/DefaultMutableTreeNode.html|http://java.sun.com/j2se/1.5.0/docs/api/javax/swing/tree/DefaultMutableTreeNode.html] which has most of the methods that you are interested in. A JTree has a single root node, which by default is of this type.

  • BUG: Oracle Java Compiler bug with anonymous inner classes in constructor

    The following code compiles and runs just fine using 1.4.2_07, 1.5.0_07 and 1.6.0_beta2 when compiling and running from the command-line.
    It does not run when compiling from JDeveloper 10.1.3.36.73 (which uses the ojc.jar).
    When compiled from JDeveloper, the JRE (both the embedded one or the external 1.5.0_07 one) reports the following error:
    java.lang.VerifyError: (class: com/ids/arithmeticexpr/Scanner, method: <init> signature: (Ljava/io/Reader;)V) Expecting to find object/array on
    stack
    Here's the code:
    /** lexical analyzer for arithmetic expressions.
    Fixes the lookahead problem for TT_EOL.
    public class Scanner extends StreamTokenizer
    /** kludge: pushes an anonymous Reader which inserts
    a space after each newline.
    public Scanner( Reader r )
    super( new FilterReader( new BufferedReader( r ) )
    protected boolean addSpace; // kludge to add space after \n
    public int read() throws IOException
    int ch = addSpace ? ' ' : in.read();
    addSpace = ch == '\n';
    return ch;
    public static void main( String[] args )
    Scanner scanner = new Scanner( new StringReader("1+2") ); // !!!
    Removing the (implicit) reference to 'this' in the call to super() by passing an instance of a static inner class 'Kludge' instead of the anonymous subclass of FilterReader fixes the error. The code will then run even when compiled with ojc. There seems to be a bug in ojc concerning references to the partially constructed object (a bug which which is not present in the reference compilers.)
    -- Sebastian

    Thanks Sebastian, I filed a bug for OJC, and I'll look at the Javac bug. Either way, OJC should either give an error or create correct code.
    Keimpe Bronkhorst
    JDev Team

  • How to find the class name, the location from where it invoked a method

    Hi,
    I have a class A. The caller calls A.someMethod(), whenever this method is invoked, I want to find out the caller info, which class invoked this method, from where this class was loaded (may be the jar file name). Any help will be appreciated.
    Thanks.

    However since version 1.4 there is an easier way to extract that information from the Throwable:
    java.lang.Throwable
    public StackTraceElement[] getStackTrace()
    Provides programmatic access to the stack trace information printed by printStackTrace(). Returns an array of stack trace elements, each representing one stack frame.

  • Web Services client problem

    Hi All,
    I have been unsuccessfully trying since 5 days to do something very trivial. I want to create a web service out of POJO whose methods return an array of complex objects.
       I could successfully write the web service with method signature returning a string, int, a complex object (For ex: a POJO object named ISSUE with ID and Description variables).
    However I am not able to call method with a return type of array of complex object types (For ex: Issue[] i.e. Array of issue objects as described above). I have tried standalone and deployable proxy methods to test the web service. 
    Web Service Code
    ================
    public Issue[]  returnComplexArray() {
    Issue iss[]=new Issue[2];
    for (int i=0; i<iss.length; i++){
    iss<i>.setIssueDescription(" comp description "+i);
    return iss;
    Client code
    ===========
    System.out.println(" -
    return complex array");
    System.out.println(doc.returnComplexArray());
    System.out.println(" end complex obj array");
    Error stack Trace
    javax.xml.rpc.soap.SOAPFaultException: java.lang.NullPointerException
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.buildFaultException(MimeHttpBinding.java:657)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.processRpcFault(MimeHttpBinding.java:691)
         at com.sap.engine.services.webservices.jaxrpc.wsdl2java.soapbinding.MimeHttpBinding.call(MimeHttpBinding.java:1306)
         at com.kla.testingrpc.Config1BindingStub.returnComplexArray(Config1BindingStub.java:189)
         at TestSuiteRPCToRPC.main(TestSuiteRPCToRPC.java:79)
    It appears to me that the call is never going to server. It fails at client only. I don't understand the problem.
    I have observed other problems too.
    A method with Integer object as parameter would get mapped as int object when using RPC style soap binding.
    I get the same error as described above for methods returned a complex object with ArrayList or another array as member variable.
    Any pointers would be greatly appreciated.
    mY ENVIRONMENT
    =============
    WAS 6.40 sp16
    NWDS 2.0.15
    Regards
    Pallayya Batchu

    Dear sujesh,
    System.out.println(doc.returnComplexArray()); is the line where it shows null pointer exception.  "doc" is not null. This is the client call.
    There are other method calls (For ex:
    doc.returnComplexObject() would return me a complex object) which are successful on this object.  Hope this clears your doubt.
    I belive that the issue I am facing is something to do with framework rather than my code.
    Regards
    Pallayya batchu

  • Parsing XML but got errors

    So I am attempting to Parse a RSS feed using TFHpple parser. Here is the code in question:
    // AriesView.m
    // Horoscopes
    // Created by DJB on 9/2/10.
    // Copyright 2010 _MyCompanyName_. All rights reserved.
    #import "AriesView.h"
    @implementation AriesView
    // Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
    - (void)viewDidLoad {
    [super viewDidLoad];
    NSString *data = [NSString stringWithContentsOfURL:[NSURL URLWithString: @"feed://www.findyourfate.com/rss/dailyhoroscope-feed.asp?sign=Aries"] encoding:NSUTF8StringEncoding error:NULL];
    NSData *htmlData = [data dataUsingEncoding:NSUTF8StringEncoding];
    TFHpple *xpathParser = [[TFHpple alloc] initWithHTMLData:htmlData];
    NSArray *elements = [xpathParser search:@"/item/description"];
    NSLog( @"%@", elements);
    TFHppleElement *element = [elements objectAtIndex:0];
    NSString *paragraph = [element content];
    NSLog(@"%@", paragraph);
    summary.text = paragraph;
    [xpathParser release];
    [htmlData release];
    When I run the program and click on the button that bring me to this view, the app crashes. When looking at the Debug log, this is what it says:
    [Session started at 2010-09-04 14:16:32 -0400.]
    2010-09-04 14:16:38.758 Horoscopes[19390:207] Unable to parse.
    2010-09-04 14:16:38.760 Horoscopes[19390:207] (
    2010-09-04 14:16:38.762 Horoscopes[19390:207] * Terminating app due to uncaught exception 'NSRangeException', reason: '* -[NSMutableArray objectAtIndex:]: index 0 beyond bounds for empty array'
    * Call stack at first throw:
    0 CoreFoundation 0x024bf919 __exceptionPreprocess + 185
    1 libobjc.A.dylib 0x0260d5de objcexceptionthrow + 47
    2 CoreFoundation 0x024b5465 -[__NSArrayM objectAtIndex:] + 261
    3 Horoscopes 0x000029ba -[AriesView viewDidLoad] + 333
    4 UIKit 0x0048bc26 -[UIViewController view] + 179
    5 UIKit 0x0048d43f -[UIViewController viewControllerForRotation] + 36
    6 UIKit 0x00489682 -[UIViewController _visibleView] + 90
    7 UIKit 0x0074affd -[UIClientRotationContext initWithClient:toOrientation:duration:andWindow:] + 269
    8 UIKit 0x0040a0a0 -[UIWindow _setRotatableClient:toOrientation:duration:force:] + 921
    9 UIKit 0x00677543 -[UIWindowController transition:fromViewController:toViewController:target:didEndSelector:] + 768
    10 UIKit 0x0048f769 -[UIViewController presentModalViewController:withTransition:] + 2937
    11 Horoscopes 0x00002219 -[HoroscopesViewController next:] + 139
    12 UIKit 0x003e3e14 -[UIApplication sendAction:to:from:forEvent:] + 119
    13 UIKit 0x0046d6c8 -[UIControl sendAction:to:forEvent:] + 67
    14 UIKit 0x0046fb4a -[UIControl(Internal) _sendActionsForEvents:withEvent:] + 527
    15 UIKit 0x0046e6f7 -[UIControl touchesEnded:withEvent:] + 458
    16 UIKit 0x004072ff -[UIWindow _sendTouchesForEvent:] + 567
    17 UIKit 0x003e91ec -[UIApplication sendEvent:] + 447
    18 UIKit 0x003edac4 _UIApplicationHandleEvent + 7495
    19 GraphicsServices 0x02c01afa PurpleEventCallback + 1578
    20 CoreFoundation 0x024a0dc4 _CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION_ + 52
    21 CoreFoundation 0x02401737 __CFRunLoopDoSource1 + 215
    22 CoreFoundation 0x023fe9c3 __CFRunLoopRun + 979
    23 CoreFoundation 0x023fe280 CFRunLoopRunSpecific + 208
    24 CoreFoundation 0x023fe1a1 CFRunLoopRunInMode + 97
    25 GraphicsServices 0x02c002c8 GSEventRunModal + 217
    26 GraphicsServices 0x02c0038d GSEventRun + 115
    27 UIKit 0x003f1b58 UIApplicationMain + 1160
    28 Horoscopes 0x00001f44 main + 102
    29 Horoscopes 0x00001ed5 start + 53
    terminate called after throwing an instance of 'NSException'
    What am I doing wrong? How can I fix the problem?

    I changed my code around and got the information that I wanted parsed. Now, however, when I run the app, and click on a button that I made to reload the data, the app crashes. I have also placed two NSLogs that show that they both receive the data that I want. My problem now, is that even though paragraph has the correct data in it, it won't output the data into the UILabel *summary. Any ideas?
    -(IBAction)reloadInfo:(id)sender {
    if (sender == reload) {
    NSString *data = [NSString stringWithContentsOfURL:[NSURL URLWithString: @"http://www.astrology-enterprises.com/show_HOROSCOPES.asp?SIGN=ARIES&VIEW=0"] encoding:NSUTF8StringEncoding error:NULL];
    NSData *htmlData = [data dataUsingEncoding:NSUTF8StringEncoding];
    TFHpple *xpathParser = [[TFHpple alloc] initWithHTMLData:htmlData];
    NSArray *elements = [xpathParser search:@"//html//body//span"];
    NSLog(@"%@", elements);
    TFHppleElement *element = [elements objectAtIndex:0];
    NSString *paragraph = [element content];
    NSLog(@"%@", paragraph);
    summary.text = paragraph;
    [xpathParser release];
    [htmlData release];

  • Google search in combolist?

    hi all,
    I'm using 10.2 on windows.
    my question is:
    how i make a search like google website?
    so when i write one letter in combo list the results will added to list that carry the first letter i entered. and when i write the second letter the results contain my two letters and so on.
    the results came from a specific column in specific table.
    and when delete the letters and write a new letter the results come with new letters.
    thank you
    regards

    hi Francois,
    sorry for late
    this is the java console
    Loading http://<client-IP>:8889/forms/java/frmall_jinit.jar from JAR cache
    Loading http://<client-IP>:8889/forms/java/ComboBoxCompletion.jar from JAR cache
    proxyHost=null
    proxyPort=0
    connectMode=HTTP, native
    forms version 10.1.2.0
    UI_PARENT:16
    LOCATION:java.awt.Point[x=55,y=16]
    OUTERSIZE:java.awt.Point[x=176,y=24]
    FOREGROUND:java.awt.Color[r=0,g=0,b=0]
    BGPATTERN:null BACKGROUND:java.awt.Color[r=225,g=225,b=225]
    FONT:java.awt.Font[family=dialog,name=Dialog,style=plain,size=12]
    LANGUAGE_DIRECTION:oracle.forms.properties.LanguageDirection@257f1b
    VALIDKEYS:8
    DEFAULTKEYS:2
    CLASSNAME:oracle.forms.fd.ComboBoxCompletion
    VISIBLE:true INIT:Ester,Jordi,Jordina,Jorge,Sergi
    java.lang.VerifyError: (class: oracle/forms/fd/CBAutoCompletion$4, method: <init> signature: (Loracle/forms/fd/CBAutoCompletion;Ljavax/swing/JComboBox;)V) Expecting to find object/array on stack      
    at oracle.forms.fd.CBAutoCompletion.<init>(CBAutoCompletion.java:36)      
    at oracle.forms.fd.ComboBoxCompletion.setProperty(ComboBoxCompletion.java:128)      
    at oracle.forms.handler.ComponentItem.setCustomProperty(Unknown Source)
    at oracle.forms.handler.ComponentItem.onUpdate(Unknown Source)      
    at oracle.forms.handler.JavaContainer.onUpdate(Unknown Source)      
    at oracle.forms.handler.UICommon.onUpdate(Unknown Source)      
    at oracle.forms.engine.Runform.onUpdateHandler(Unknown Source)      
    at oracle.forms.engine.Runform.processMessage(Unknown Source)      
    at oracle.forms.engine.Runform.processSet(Unknown Source)      
    at oracle.forms.engine.Runform.onMessageReal(Unknown Source)      
    at oracle.forms.engine.Runform.onMessage(Unknown Source)      
    at oracle.forms.engine.Runform.sendInitialMessage(Unknown Source)      
    at oracle.forms.engine.Runform.startRunform(Unknown Source)      
    at oracle.forms.engine.Main.createRunform(Unknown Source)      
    at oracle.forms.engine.Main.start(Unknown Source)      
    at sun.applet.AppletPanel.run(Unknown Source)      
    at java.lang.Thread.run(Unknown Source)
    so what i do?
    regards

  • Running average of images

    Anyone know how to do a running average of images? I could convert images to 2-D arrays and stack in a 3-D array. I can't think of a way to add the images once in the 3-D array without a loop that would slow execution speed to a crawl.

    This example demonstrates how to use a running average to remove transients from captured images.
    1. Set up an acquisition and create a storage buffer, a working buffer for the current image, and a repository for the running average. The running average is a 16-bit buffer to allow for up to 256 8-bit images to be averaged together.
    2. Create an array of buffers to hold each of the images being averaged. This array works as a shift register to subtact the oldest image (step 4) and add the newest image (step 6)
    3. The calculation determines which index of the array to access. This index is then indexed for use in this iteration of the loop.
    4. For each iteration, first subtract the oldest image from the repository. You cannot subtract images that have not been stored, so subtracting occurs on the second iteration of the loop.
    5. The newly acquired image is converted to a 16-bit image and stored in the current index of the array.
    6. Add the current index to the repository and display the image. 16-bit images are dynamically ranged when displayed so that the image displayed is the average of all images added to the repository. Steps 4, 5, and 6 repeat, subtracting the oldest image and adding the newest image to create a running average.
    7. 16-bit images are signed. This step subtracts 2^15 from the repository the first time through the loop and allows access to the entire 16-bits of resolution.
    8. This step scales the histograms so that the histogram for 16-bit (average) and 8-bit (current) images cover the same range.
    9. Dispose of the buffers and WindDraw windows.
    10. This loop calculates the frames per second being handled. Notice the use of notifiers to end this while loop when the main loop ends.
    NOTE: You must have IMAQ Vision installed to run this example. The maximum number of buffers used should be no greater than 255 for 8 bit images.
    Attachments:
    IMAQ_Running_Averaging.vi ‏161 KB

  • Implementing evetns in my own classes

    I am currently developing a class that I want to enable with events so that consumers of my class can get feedback of class activity.
    So consumers should be able to add listeners (containing callback methods) to instances of the class. Although my current class is GUI related (I am writing my own tablemodel) my issue is not limited to GUI development I think (therefore posted here and not in Swing forum).
    So far I am a little familiar with Listener and Adapter classes but now the point:
    Do I have to implement my own addBlaBlaListener and removeBlaBlaListener methods implementing my own methods to handle the list of current listeners (e.g. choosing the appropriate array, list, stack or whatever classes to store the references) or is there some ready-made-classes from the libraries that should/can be used?

    tjacobs01 wrote:
    Why do you need to create UI-style events?I am building my own Table model as the simple table model is too basic for my common needs. In that table model I need to provide events being fired when table cells change.
    I highly recommend using the Observable/Observer pattern where possible. Otherwise, see an example for custom events in my InfoFetcher.FetcherListener interface
    http://forums.sun.com/thread.jspa?threadID=759854&tstart=62264
    I heard/read about the Observer and Observerable but when I searched for event handling I always found the methods I am currently trying. That's the only reason why I use that here - because this is what I found how others recommend to do it. If there is a better option - I am open and flexible - yet (in a year when everything was implemented probably not ;-) ).

  • Bytecode problem

    Hi all,
    I have following piecse of byte code which is not running:
    0 bipush 0
    2 anewarray #4 <java/lang/Object>
    5 astore 1
    7 sipush 1
    10 aload_0
    11 aload 1
    13 invokestatic #30 <com/test/AClass.aMethod>
    16 pop
    17 return
    The source declaration of the called method aMethod is:
    public static Object aMethod(int a, Object b, Object[] c)
    The constructor you see the byte code here:
    public SuperCrazyClass()
    When i try to execute the Constructor i get following error printed in console:
    Exception in thread "main" java.lang.VerifyError: (class: SuperCrazyClass, method: <init> signature: ()V) Expecting to find object/array on stack
    As you know <init> is the internal name of all constructors, together with the signature you can see that error must be located inside the bytecode snippet above. That byte code snippet is generate by custom binary instrumentation framework i wrote and it works for a lot of different methods but in that case, and i really don't know what is wrong with it, it doesn't.
    Any idea what I'm doing wrong ?
    Regards,
    bgnahm
    PS: I previously posted also in the Hotspot Forum, but i think this question fits better here...sorry for that

    bgnahm wrote:
    PS: I previously posted also in the Hotspot Forum, but i think this question fits better here...sorry for thatNo, the other forum is at least more related to the class format. I'm locking this thread. People who are reading this can still answer the original thread at:
    [http://forums.sun.com/thread.jspa?threadID=5443852]
    Kaj

Maybe you are looking for

  • Why is there a huge white space to the right of the board when I play Lexulous on Facebook?

    I play Lexulous (a form of Scrabble) on Facebook. For months now, whenever I play the game, there is a huge white space to the right of the board, like a whole other window. Only with this app. I tried another browser, same thing, and it also does it

  • Getting XML info with ABAP mapping

    Hi everyone. I'm near to finish my abap mapping demo. The problem is that i don't know how i can retrieve the values of a kind of node. I would like to retrieve this data into a internal table. I've done the output XML. How can i get that values from

  • Special character printing in xml reports

    Hello, When i am trying to print euro symbol in xml report, i am getting some '?' symbol instead of euro symbol. Need your suggestion here what extra tags we need to use for the same. I have designed rtf file and inserted euro symbol using word doc.

  • Must photos be in a specific resolution in order to transfer successfully

    Is there a resolution requirement/suggestion for photos to transfer to an ipod touch? Any photos I try to xfer via iTunes Synch won't transfer to my new iPod Touch (2nd gen v3.0) if they are over 2.5 MB. Perhaps there is a recomended resolution the o

  • Gl detemination in VKOA

    Hi We detemine the Gl accounts to be posted for a invoice in sales document based on settings in VKOA.Is there any user exit avialable such that instead of picking the assigned Gl it can be substituted by a different GL in a soecific case.