FIX Statement problem

In this calc:
FIX("Actual","Polling",@LEVMBRS ("Measure", 0),"26Apr11":"02Jan12")
DATACOPY "R0003152" TO "R9003152";
ENDFIX     
When I try to substitute the ancestors of the date range     from "26Apr11":"02Jan12" to @RELATIVE("P05 FY2012":"P13 FY2012",0), which are equivalent
I am getting an error. Error is : 1200414 Error parsing formula for [FIX STATEMENT] (line 14): number of dimensions [1] does not match number of gen/level [9] in function [@DIM]     .
I can't figure this one out. Anyone see why this is happenng here?

In my Time dimension the hierarchy goes from days ie. 24June11 at level 0 up to Periods (months essentially) P1, P2...
When I copy data from one Org. member to another I need to do it by Period and would prefer to do using Periods, but at the lowest level which is days. I was only looking for a function I could use to identify the lowest level (days) in this dimension by using the Periods members. So, I need to copy data from x member to y member for P2 to P4 for example which would be whatever days that equates to in those periods. I just need a function to bring back the days in those periods for a specified range...like a @LEVMBRS("P2":"P4", 0) but this function does not work in this case.

Similar Messages

  • I recently purchase an ipad2.  I also have a mac laptop.  Now, when I facetime call using my iphone to my ipad2 or mac, it states busy.  how can i fix this problem?  I have the same apple id e mail for both ipad2 and mac.  it might be getting confuse now.

    I recently purchase an ipad2.  I also have a mac laptop.  Now, when I facetime call using my iphone to my ipad2 or mac, it states busy.  how can i fix this problem?  I have the same apple id e mail for both ipad2 and mac.  it might be getting confuse now.  I want to be able to face time also using my ipad2 to my laptop especially if one of the members of the family is traveling.  Thanks.

    thanks.  your answer was correct, clearer.  I have another question, maybe you can answer.  I just purchase my ipad2 2 days ago.  yesterday, there was a sound.  today there is no sound.  there is a sound only in movies and you tube and music.  but no sound on all apps and keyboards.  I look it up and seems like ther are few that have this problem.  I called walmart coz I bought it there and they told me that they have not heard that before but if I can't fix it, just return it and exchange it with anew one since I have 14 days to do that.  I tried rebooting it and still won't work.  Should I just restore it?

  • Problem with FIX-Statement in Business Rule

    Hello,
    ich have a business rule with two nested FIX-Statements.
    I calculate depending on the month in the runtime-prompt a forecast for this month. After that i fix on that month an clear some specific accounts. But some of these accounts still have data.
    they are in the cleardata section and they are children of FiBuKonten from the first fix. When i leave out the @CHILDREN("FiBuKonten") in the first fix the accounts are cleared as excepted, but i need that fix because not all accounts are part of this forecast.
    I changed everything to work as a calc-script and the same problem appears, on dev and prod database.
    Why are some accounts cleared while others not ? Really misterious!
    Here is the rule
    FIX([TEBIT_RTP_Year],[TEBIT_RTP_Version],"IFRS operativ",[TEBIT_RTP_Entity],"Daten brutto","Daten_brutto_P_M",@CHILDREN("FiBuKonten"))
    [TEBIT_RTP_Period](
    IF(@ISMBR("Jan"))
    Actual_kum = Budget_kum;
    ELSEIF(@ISMBR("Feb"))
    Actual_kum = Budget_kum;
    ELSEIF(@ISMBR("Apr"))
    Actual_kum = @ROUND(("1HR"->Dec - Actual_kum->Mar)/9 + Actual_kum->Mar,2);
    ELSEIF(@ISMBR("May"))
    Actual_kum = @ROUND(("1HR"->Dec - Actual_kum->Apr)/8 + Actual_kum->Apr,2);
    ELSEIF(@ISMBR("Jul"))
    Actual_kum = @ROUND(("2HR"->Dec - Actual_kum->Jun)/6 + Actual_kum->Jun,2);
    ELSEIF(@ISMBR("Aug"))
    Actual_kum = @ROUND(("2HR"->Dec - Actual_kum->Jul)/5 + Actual_kum->Jul,2);
    ELSEIF(@ISMBR("Oct"))
    Actual_kum = @ROUND(("3HR"->Dec - Actual_kum->Sep)/3 + Actual_kum->Sep,2);
    ELSEIF(@ISMBR("Nov"))
    Actual_kum = @ROUND(("3HR"->Dec - Actual_kum->Oct)/2 + Actual_kum->Oct,2);
    ENDIF;)
    FIX([TEBIT_RTP_Period])
         CLEARDATA "41000000";
         CLEARDATA "41100000";
         CLEARDATA "41200000";
         CLEARDATA "41990000";
         CLEARDATA "41000900";
         CLEARDATA "41096000";
         CLEARDATA "41196000";
         CLEARDATA "41296000";
         CLEARDATA "41940000";
         CLEARDATA "42000000";
         CLEARDATA "42100000";
         CLEARDATA "42200000";
         CLEARDATA "42099000";
         CLEARDATA "42199000";
         CLEARDATA "42299000";
         CLEARDATA "42990000";
         CLEARDATA "41918000";
         CLEARDATA "41100900";
         CLEARDATA "42091000";
         CLEARDATA "42918000";
         CLEARDATA "54000000";
         CLEARDATA "54009000";
         CLEARDATA "54009900";
         CLEARDATA "54009600";
         CLEARDATA "54130200";
         CLEARDATA "93541175";
         CLEARDATA "54001000";
         CLEARDATA "54001900";
         CLEARDATA "54014000";
         CLEARDATA "54019000";
         CLEARDATA "54021000";
         CLEARDATA "54021900";
    ENDFIX
    ENDFIX
    Thx for your help.
    Greets
    Kevin

    Does it make a difference when a dimension has dynamic calc members and i dont fix on that dimension to fix on the Level 0 members of that dimension ? The result should be the same in my eyes.
    SGF is dense. I found out that everytime i the fix includes that first member M_124100 the error occoured.
    I changed the rule in the form that i split the FIX Statement. And now it works without the error and with all data cleared. Even when i don`t reorder the dimension SGF.
    Again thanks for your help.
    Greets
    Kevin
    FIX([TEBIT_RTP_Year],[TEBIT_RTP_Version],"IFRS operativ",[TEBIT_RTP_Entity],"Daten brutto","Daten_brutto_P_M")
    FIX(@CHILDREN("FiBuKonten"))
    [TEBIT_RTP_Period](
    IF(@ISMBR("Jan"))
    Actual_kum = Budget_kum;
    ELSEIF(@ISMBR("Feb"))
    Actual_kum = Budget_kum;
    ELSEIF(@ISMBR("Apr"))
    Actual_kum = @ROUND(("1HR"->Dec - Actual_kum->Mar)/9 + Actual_kum->Mar,2);
    ELSEIF(@ISMBR("May"))
    Actual_kum = @ROUND(("1HR"->Dec - Actual_kum->Apr)/8 + Actual_kum->Apr,2);
    ELSEIF(@ISMBR("Jul"))
    Actual_kum = @ROUND(("2HR"->Dec - Actual_kum->Jun)/6 + Actual_kum->Jun,2);
    ELSEIF(@ISMBR("Aug"))
    Actual_kum = @ROUND(("2HR"->Dec - Actual_kum->Jul)/5 + Actual_kum->Jul,2);
    ELSEIF(@ISMBR("Oct"))
    Actual_kum = @ROUND(("3HR"->Dec - Actual_kum->Sep)/3 + Actual_kum->Sep,2);
    ELSEIF(@ISMBR("Nov"))
    Actual_kum = @ROUND(("3HR"->Dec - Actual_kum->Oct)/2 + Actual_kum->Oct,2);
    ENDIF;)
    ENDFIX
    FIX([TEBIT_RTP_Period])
    CLEARDATA "41000000";
    CLEARDATA "41100000";
    CLEARDATA "41200000";
    CLEARDATA "41990000";
    CLEARDATA "41000900";
    CLEARDATA "41096000";
    CLEARDATA "41196000";
    CLEARDATA "41296000";
    CLEARDATA "41940000";
    CLEARDATA "42000000";
    CLEARDATA "42100000";
    CLEARDATA "42200000";
    CLEARDATA "42099000";
    CLEARDATA "42199000";
    CLEARDATA "42299000";
    CLEARDATA "42990000";
    CLEARDATA "41918000";
    CLEARDATA "41100900";
    CLEARDATA "42091000";
    CLEARDATA "42918000";
    CLEARDATA "54000000";
    CLEARDATA "54009000";
    CLEARDATA "54009900";
    CLEARDATA "54009600";
    CLEARDATA "54130200";
    CLEARDATA "93541175";
    CLEARDATA "54001000";
    CLEARDATA "54001900";
    CLEARDATA "54014000";
    CLEARDATA "54019000";
    CLEARDATA "54021000";
    CLEARDATA "54021900";
    ENDFIX
    ENDFIX

  • HT4623 I am unable to switch on my IPad as it states that 'iPad is disabled'.  How do i fix this problem when I have no access to the iPad?  Any help or advice will be gratefully received.

    I am unable to switch on my IPad as it states that 'iPad is disabled'.  How do I fix this problem when I have no access to the iPad?  Any help or advice will be gratefully received.

    Forgotten Passcode or device disabled after entering wrong passcode

  • I cannot create a new business catalyst site with Dreamweaver CC 2014. The error message states that Dreamweaver cannot connect with server, try again later. How can I fix this problem?

    I cannot create a new Business Catalyst site with Dreamweaver CC 2014 (Mac). The error message states that Dreamweaver cannot connect with server, try again later. In addition, I am also unable to load remotely a previously created Business Catalyst site as it says there is something wrong with my username or password. However when I put my password in and press test connection, it says it has connected successfully. What is going wrong and how can I fix this problem?
    Thanks

    Hi Ozy08,
    Can you try the solutions mentioned in Re: Can't Login to Business Catalyst within Dreamweaver CS6?
    If you still have problems, and you have a purchased version of DW CC, send me your Adobe ID, location, and contact details over a private message. Click my picture and use the message option.
    Thanks,
    Preran

  • My JOTFORMS ARE NOT LOADING IN FIREFOX. They do in Safari. Please fix this problem. And NO NO NO I will not be upgrading my Firefox Version because it will n

    My Jot forms are not being read in Firefox and I am getting an error message in all cases on my websites. They work fine in Safari, etc. on my MAC. And please don't ask me about versions. Your Firefox is the problem as usual. PLEASE FIX ASAP. IT IS URGENT.

    Hello,
    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information. <br>
    '''Note''': ''This will cause you to lose any Extensions and some Preferences.''
    *Open websites will not be saved in Firefox versions lower than 25.
    To Reset Firefox do the following:
    '''For Firefox versions previous to 29.0:'''
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox"[[Image:Button reset]] button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!
    Thank you.

  • My iphoto keeps crashing I have reloaded it from time machine, reloaded the system, reloaded the program and cannot seem to fix the problem. Any thoughts?

    iphoto keeps crashing on opening for no reason. 
    This is what it keeps saying. Anyone with any ideas?
    Process:         iPhoto [283]
    Path:            /Applications/iPhoto.app/Contents/MacOS/iPhoto
    Identifier:      com.apple.iPhoto
    Version:         8.1.2 (8.1.2)
    Build Info:      iPhotoProject-4240000~8
    Code Type:       X86 (Native)
    Parent Process:  launchd [95]
    Date/Time:       2013-11-16 18:21:24.205 -0500
    OS Version:      Mac OS X 10.6.8 (10K549)
    Report Version:  6
    Interval Since Last Report:          17724 sec
    Crashes Since Last Report:           10
    Per-App Interval Since Last Report:  210 sec
    Per-App Crashes Since Last Report:   10
    Anonymous UUID:                      8BE82445-7472-4D15-A8AF-D8A8F41BCE4C
    Exception Type:  EXC_BAD_ACCESS (SIGBUS)
    Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000024
    Crashed Thread:  11
    Thread 0:  Dispatch queue: com.apple.main-thread
    0   libSystem.B.dylib                       0x02bb2afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x02bb3267 mach_msg + 68
    2   com.apple.CoreFoundation                0x00f1a30f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x00f193f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x00f19221 CFRunLoopRunInMode + 97
    5   com.apple.HIToolbox                     0x048ace04 RunCurrentEventLoopInMode + 392
    6   com.apple.HIToolbox                     0x048acbb9 ReceiveNextEventCommon + 354
    7   com.apple.HIToolbox                     0x048aca3e BlockUntilNextEventMatchingListInMode + 81
    8   com.apple.AppKit                        0x02ee7595 _DPSNextEvent + 847
    9   com.apple.AppKit                        0x02ee6dd6 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 156
    10  com.apple.AppKit                        0x02ea91f3 -[NSApplication run] + 821
    11  com.apple.AppKit                        0x02ea1289 NSApplicationMain + 574
    12  com.apple.iPhoto                        0x00124b80 0x1000 + 1194880
    13  com.apple.iPhoto                        0x00003172 0x1000 + 8562
    Thread 1:  Dispatch queue: com.apple.libdispatch-manager
    0   libSystem.B.dylib                       0x02bd9382 kevent + 10
    1   libSystem.B.dylib                       0x02bd9a9c _dispatch_mgr_invoke + 215
    2   libSystem.B.dylib                       0x02bd8f59 _dispatch_queue_invoke + 163
    3   libSystem.B.dylib                       0x02bd8cfe _dispatch_worker_thread2 + 240
    4   libSystem.B.dylib                       0x02bd8781 _pthread_wqthread + 390
    5   libSystem.B.dylib                       0x02bd85c6 start_wqthread + 30
    Thread 2:
    0   libSystem.B.dylib                       0x02bb2b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x02be06e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x02c0f5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x03c7095c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x03c29451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x03c29334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0297e201 -[XTMsgQueue waitForMessage] + 49
    7   com.apple.proxtcore                     0x0296c363 -[XTThread run:] + 387
    8   com.apple.Foundation                    0x03c34564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x03c34514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x02be0259 _pthread_start + 345
    11  libSystem.B.dylib                       0x02be00de thread_start + 34
    Thread 3:
    0   libSystem.B.dylib                       0x02bb2b5a semaphore_timedwait_signal_trap + 10
    1   libSystem.B.dylib                       0x02be06e1 _pthread_cond_wait + 1066
    2   libSystem.B.dylib                       0x02c0f5a8 pthread_cond_timedwait_relative_np + 47
    3   com.apple.Foundation                    0x03c7095c -[NSCondition waitUntilDate:] + 453
    4   com.apple.Foundation                    0x03c29451 -[NSConditionLock lockWhenCondition:beforeDate:] + 279
    5   com.apple.Foundation                    0x03c29334 -[NSConditionLock lockWhenCondition:] + 69
    6   com.apple.proxtcore                     0x0297e201 -[XTMsgQueue waitForMessage] + 49
    7   com.apple.proxtcore                     0x0296c363 -[XTThread run:] + 387
    8   com.apple.Foundation                    0x03c34564 -[NSThread main] + 45
    9   com.apple.Foundation                    0x03c34514 __NSThread__main__ + 1499
    10  libSystem.B.dylib                       0x02be0259 _pthread_start + 345
    11  libSystem.B.dylib                       0x02be00de thread_start + 34
    Thread 4:
    0   libSystem.B.dylib                       0x02bb2afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x02bb3267 mach_msg + 68
    2   com.apple.CoreFoundation                0x00f1a30f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x00f193f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x00f19221 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x03c6e227 -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 279
    6   com.apple.proxtcore                     0x0296d8a5 -[XTRunLoopThread run:] + 421
    7   com.apple.Foundation                    0x03c34564 -[NSThread main] + 45
    8   com.apple.Foundation                    0x03c34514 __NSThread__main__ + 1499
    9   libSystem.B.dylib                       0x02be0259 _pthread_start + 345
    10  libSystem.B.dylib                       0x02be00de thread_start + 34
    Thread 5:
    0   libSystem.B.dylib                       0x02be0aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x02be075e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x02be23f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.iPhoto                        0x00506841 0x1000 + 5265473
    4   com.apple.Foundation                    0x03c34564 -[NSThread main] + 45
    5   com.apple.Foundation                    0x03c34514 __NSThread__main__ + 1499
    6   libSystem.B.dylib                       0x02be0259 _pthread_start + 345
    7   libSystem.B.dylib                       0x02be00de thread_start + 34
    Thread 6:  com.apple.CFSocket.private
    0   libSystem.B.dylib                       0x02bd1ac6 select$DARWIN_EXTSN + 10
    1   com.apple.CoreFoundation                0x00f59c83 __CFSocketManager + 1091
    2   libSystem.B.dylib                       0x02be0259 _pthread_start + 345
    3   libSystem.B.dylib                       0x02be00de thread_start + 34
    Thread 7:
    0   libSystem.B.dylib                       0x02bb2afa mach_msg_trap + 10
    1   libSystem.B.dylib                       0x02bb3267 mach_msg + 68
    2   com.apple.CoreFoundation                0x00f1a30f __CFRunLoopRun + 2079
    3   com.apple.CoreFoundation                0x00f193f4 CFRunLoopRunSpecific + 452
    4   com.apple.CoreFoundation                0x00f19221 CFRunLoopRunInMode + 97
    5   com.apple.Foundation                    0x03c6d2c4 +[NSURLConnection(NSURLConnectionReallyInternal) _resourceLoadLoop:] + 329
    6   com.apple.Foundation                    0x03c34564 -[NSThread main] + 45
    7   com.apple.Foundation                    0x03c34514 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x02be0259 _pthread_start + 345
    9   libSystem.B.dylib                       0x02be00de thread_start + 34
    Thread 8:
    0   libSystem.B.dylib                       0x02bd8412 __workq_kernreturn + 10
    1   libSystem.B.dylib                       0x02bd89a8 _pthread_wqthread + 941
    2   libSystem.B.dylib                       0x02bd85c6 start_wqthread + 30
    Thread 9:
    0   libSystem.B.dylib                       0x02be0aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x02be075e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x02be23f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.Foundation                    0x03c5c753 -[NSCondition wait] + 316
    4   com.apple.iPhoto                        0x0051242a 0x1000 + 5313578
    5   com.apple.iPhoto                        0x00511c48 0x1000 + 5311560
    6   com.apple.Foundation                    0x03c34564 -[NSThread main] + 45
    7   com.apple.Foundation                    0x03c34514 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x02be0259 _pthread_start + 345
    9   libSystem.B.dylib                       0x02be00de thread_start + 34
    Thread 10:
    0   libSystem.B.dylib                       0x02be0aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x02be075e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x02be23f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.Foundation                    0x03c5c753 -[NSCondition wait] + 316
    4   com.apple.iPhoto                        0x0051242a 0x1000 + 5313578
    5   com.apple.iPhoto                        0x00511c48 0x1000 + 5311560
    6   com.apple.Foundation                    0x03c34564 -[NSThread main] + 45
    7   com.apple.Foundation                    0x03c34514 __NSThread__main__ + 1499
    8   libSystem.B.dylib                       0x02be0259 _pthread_start + 345
    9   libSystem.B.dylib                       0x02be00de thread_start + 34
    Thread 11 Crashed:
    0   com.apple.iPhoto                        0x00301d92 0x1000 + 3149202
    1   com.apple.Foundation                    0x03c2fe7c _decodeObjectBinary + 2902
    2   com.apple.Foundation                    0x03c30c88 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1438
    3   com.apple.Foundation                    0x03c312f5 -[NSArray(NSArray) initWithCoder:] + 586
    4   com.apple.Foundation                    0x03c2fe7c _decodeObjectBinary + 2902
    5   com.apple.Foundation                    0x03c30c88 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1438
    6   com.apple.Foundation                    0x03c4c26d -[NSDictionary(NSDictionary) initWithCoder:] + 900
    7   com.apple.Foundation                    0x03c2fe7c _decodeObjectBinary + 2902
    8   com.apple.Foundation                    0x03c30c88 -[NSKeyedUnarchiver _decodeArrayOfObjectsForKey:] + 1438
    9   com.apple.Foundation                    0x03c312f5 -[NSArray(NSArray) initWithCoder:] + 586
    10  com.apple.Foundation                    0x03c2fe7c _decodeObjectBinary + 2902
    11  com.apple.Foundation                    0x03c2f174 _decodeObject + 180
    12  com.apple.iPhoto                        0x00304936 0x1000 + 3160374
    13  com.apple.iPhoto                        0x0030520a 0x1000 + 3162634
    14  com.apple.iPhoto                        0x00064bf7 0x1000 + 408567
    15  com.apple.iPhoto                        0x002196a6 0x1000 + 2197158
    16  com.apple.Foundation                    0x03c34564 -[NSThread main] + 45
    17  com.apple.Foundation                    0x03c34514 __NSThread__main__ + 1499
    18  libSystem.B.dylib                       0x02be0259 _pthread_start + 345
    19  libSystem.B.dylib                       0x02be00de thread_start + 34
    Thread 12:
    0   libSystem.B.dylib                       0x02be0aa2 __semwait_signal + 10
    1   libSystem.B.dylib                       0x02be075e _pthread_cond_wait + 1191
    2   libSystem.B.dylib                       0x02be23f8 pthread_cond_wait$UNIX2003 + 73
    3   com.apple.iPhoto                        0x00506841 0x1000 + 5265473
    4   com.apple.Foundation                    0x03c34564 -[NSThread main] + 45
    5   com.apple.Foundation                    0x03c34514 __NSThread__main__ + 1499
    6   libSystem.B.dylib                       0x02be0259 _pthread_start + 345
    7   libSystem.B.dylib                       0x02be00de thread_start + 34
    Thread 11 crashed with X86 Thread State (32-bit):
      eax: 0x00000001  ebx: 0x00000000  ecx: 0x2b72f140  edx: 0x00000001
      edi: 0x00000000  esi: 0x000e31ff  ebp: 0xb04a9348  esp: 0xb04a92a0
       ss: 0x0000001f  efl: 0x00010282  eip: 0x00301d92   cs: 0x00000017
       ds: 0x0000001f   es: 0x0000001f   fs: 0x0000001f   gs: 0x00000037
      cr2: 0x00000024
    Binary Images:
        0x1000 -   0x9fbfee  com.apple.iPhoto 8.1.2 (8.1.2) <436E886C-E26D-2C7D-9745-252829318EFE> /Applications/iPhoto.app/Contents/MacOS/iPhoto
      0xb31000 -   0xb31ff7  com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
      0xb34000 -   0xe2efef  com.apple.QuickTime 7.6.6 (1783) <1EC8DC5E-12E3-1DB8-1F7D-44C6EF193C58> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
      0xeda000 -   0xedaff7  com.apple.Carbon 150 (152) <8F767518-AD3C-5CA0-7613-674CD2B509C4> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
      0xedd000 -  0x1058fe7  com.apple.CoreFoundation 6.6.5 (550.43) <10B8470A-88B7-FC74-1C2F-E5CBD966C051> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x1150000 -  0x1150ff7  com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0x1158000 -  0x1166ff7  com.apple.opengl 1.6.13 (1.6.13) <025A905D-C1A3-B24A-1585-37C328D77148> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x116e000 -  0x11cbff7  com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x11eb000 -  0x12c8fe3  com.apple.DiscRecording 5.0.9 (5090.4.2) <92C85A16-5C80-9F35-13BE-2B312956AA9A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
    0x1319000 -  0x1356ff7  com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x1373000 -  0x1381fe7  libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
    0x1386000 -  0x1386ff7  com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x1389000 -  0x1389ff7  com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
    0x1391000 -  0x15f7ff7  com.apple.security 6.1.2 (55002) <64A20CEB-E614-D35F-7B9F-246BCB25BA23> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x16d4000 -  0x16fffff  com.apple.DiscRecordingUI 5.0.9 (5090.4.2) <3E6CC284-2F1B-9EDB-0B56-872F962669A2> /System/Library/Frameworks/DiscRecordingUI.framework/Versions/A/DiscRecordingUI
    0x1717000 -  0x1719fe7  com.apple.ExceptionHandling 1.5 (10) <21F37A49-E63B-121E-D406-1BBC94BEC762> /System/Library/Frameworks/ExceptionHandling.framework/Versions/A/ExceptionHand ling
    0x171f000 -  0x17d4fe7  libcrypto.0.9.7.dylib 0.9.7 (compatibility 0.9.7) <AACC86C0-86B4-B1A7-003F-2A0AF68973A2> /usr/lib/libcrypto.0.9.7.dylib
    0x181a000 -  0x1a21feb  com.apple.AddressBook.framework 5.0.4 (883) <E26855A0-8CEF-8C81-F963-A2BF9E47F5C8> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x1af4000 -  0x1c76fe7  libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <D5980817-6D19-9636-51C3-E82BAE26776B> /usr/lib/libicucore.A.dylib
    0x1cd8000 -  0x1ce2fff  com.apple.UpgradeChecker 1.0 (1.1) /Applications/iPhoto.app/Contents/Frameworks/UpgradeChecker.framework/Versions/ A/UpgradeChecker
    0x1cec000 -  0x1d69ff7  com.apple.iLifeMediaBrowser 2.5.5 (468.2.2) <459C8983-EAC4-7067-3355-5299D111D339> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
    0x1da8000 -  0x1e44ffc  com.apple.MobileMe 8 (1.0) <47DF6C20-78C5-1AA2-1D64-274EAE522D93> /Applications/iPhoto.app/Contents/Frameworks/MobileMe.framework/Versions/A/Mobi leMe
    0x1ea6000 -  0x1fb5fe7  com.apple.WebKit 6533.21 (6533.21.1) <87AFEE12-270F-2D84-1B93-81DF1DA47A7F> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
    0x2051000 -  0x2194fef  com.apple.QTKit 7.7 (1783) <0C6814E2-98C2-74F4-770F-BA355CA86F0F> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
    0x224b000 -  0x2544fe7  com.apple.MessageFramework 4.5 (1084) <DF6AC752-F789-3BC3-5E69-0FEB1A8B4340> /System/Library/Frameworks/Message.framework/Versions/B/Message
    0x2663000 -  0x269dff7  libcups.2.dylib 2.8.0 (compatibility 2.0.0) <6875335E-0993-0D77-4E80-41763A8477CF> /usr/lib/libcups.2.dylib
    0x26aa000 -  0x26bfff7  com.apple.iChat.InstantMessage 5.0.5 (747) <4E1D077E-3733-5565-ADB9-C9B2C3EC89BE> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
    0x26cc000 -  0x2785fe7  libsqlite3.0.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.0.dylib
    0x2793000 -  0x2793fff +eOkaoCom.dylib ??? (???) <17ADB0F4-BF83-0B0B-5293-F843F1724644> /Applications/iPhoto.app/Contents/MacOS/eOkaoCom.dylib
    0x2797000 -  0x27cafe7 +eOkaoDt.dylib ??? (???) <673BD0C5-FAC4-ABB7-B55E-FD8A75E4759D> /Applications/iPhoto.app/Contents/MacOS/eOkaoDt.dylib
    0x27d0000 -  0x2936fff +eOkaoFr.dylib ??? (???) <684982FE-55E4-174D-9CF3-DA4319BD57F9> /Applications/iPhoto.app/Contents/MacOS/eOkaoFr.dylib
    0x293a000 -  0x295eff2 +eOkaoPt.dylib ??? (???) <E2ED8DE8-7A2D-8309-3CB5-2E87F135A8A8> /Applications/iPhoto.app/Contents/MacOS/eOkaoPt.dylib
    0x2965000 -  0x29acff7  com.apple.proxtcore 1.0.0 (1.0.0) /Applications/iPhoto.app/Contents/Frameworks/ProXTCore.framework/Versions/A/Pro XTCore
    0x29f0000 -  0x29f0ff8  com.apple.iLifeSlideshow 1.1 (452) <65FE31A8-C4C3-2069-9B2C-CB00BB168CFE> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/iLifeSlid eshow
    0x29f4000 -  0x29fdff7  com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x2a07000 -  0x2a87fef  com.apple.NetServices.NetServices 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Frameworks/NetServices.framework/ Versions/A/NetServices
    0x2ae9000 -  0x2ae9ff7  com.apple.AppleAppSupport 1.5 (1.5) <9FD82212-62A9-A388-940B-2343D69889C3> /System/Library/PrivateFrameworks/AppleAppSupport.framework/Versions/A/AppleApp Support
    0x2aed000 -  0x2b57fe7  libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
    0x2bb2000 -  0x2d59ff7  libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    0x2ddb000 -  0x2ddbff7  com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
    0x2dde000 -  0x2e8bfe7  libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
    0x2e9f000 -  0x3782ff7  com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x3c1e000 -  0x3e8ffef  com.apple.Foundation 6.6.7 (751.62) <5C995C7F-2EA9-50DC-9F2A-30237CDB31B1> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x3f9d000 -  0x3fbcff7  com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
    0x3fd3000 -  0x433eff7  com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
    0x440e000 -  0x453cfe7  com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x45a0000 -  0x46ddfe7  com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <2D31CC6F-32CC-72FF-34EC-AB40CEE496A7> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
    0x474d000 -  0x474eff7  com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <838E1760-F7D9-3239-B3A8-20E25EFD1379> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
    0x4753000 -  0x482dfff  com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
    0x4878000 -  0x4b9cfef  com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
    0x4cdc000 -  0x4ce6ffb  com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
    0x4cef000 -  0x4d35ff7  libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
    0x4d42000 -  0x4e43fe7  libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <C75F921C-F027-6372-A0A1-EDB8A6234331> /usr/lib/libxml2.2.dylib
    0x4e67000 -  0x4eabff3  com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
    0x4eca000 -  0x4f44fff  com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
    0x4f76000 -  0x4f76ff7  liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
    0x4f7a000 -  0x4f8cff7  com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
    0x4f99000 -  0x5788557  com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
    0x5850000 -  0x5a12feb  com.apple.ImageIO.framework 3.0.4 (3.0.4) <027F55DF-7E4E-2310-1536-3F470CB8847B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
    0x5a71000 -  0x5ad2fe7  com.apple.CoreText 151.10 (???) <5C2DEFBE-D54B-4DC7-D456-9ED02880BE98> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
    0x5b0a000 -  0x5ba5fe7  com.apple.ApplicationServices.ATS 275.16 (???) <873C8B8A-B563-50F7-7628-524EE9E8DF0F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
    0x5bcc000 -  0x5c88fff  com.apple.ColorSync 4.6.6 (4.6.6) <7CD8B191-039A-02C3-EA5E-4194EC59995B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
    0x5cbf000 -  0x5d12ff7  com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
    0x5d3d000 -  0x5d4eff7  com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
    0x5d5b000 -  0x5e03ffb  com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
    0x5e30000 -  0x5e44ffb  com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
    0x5e52000 -  0x5e66fe7  libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
    0x5e6f000 -  0x5e72fe7  libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
    0x5e75000 -  0x5e81ff7  libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
    0x5e85000 -  0x61a5ff3  com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x621b000 -  0x62c7fe7  com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x632c000 -  0x6370fe7  com.apple.Metadata 10.6.3 (507.15) <460BEF23-B89F-6F4C-4940-45556C0671B5> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x6397000 -  0x6462fef  com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x64c1000 -  0x6541feb  com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x6575000 -  0x65a8ff7  com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x65c0000 -  0x665dfe3  com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x669c000 -  0x66c2ffb  com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x66d8000 -  0x66e5ff7  com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x66ee000 -  0x6716ff7  libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <315D97C2-4E1F-A95F-A759-4A3FA5639E75> /usr/lib/libxslt.1.dylib
    0x6721000 -  0x676afe7  libTIFF.dylib ??? (???) <579DC328-567D-A74C-4BCE-1D1C729E3F6D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
    0x6775000 -  0x6779ff7  libGIF.dylib ??? (???) <2123645B-AC89-C4E2-8757-85834CAE3DD2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
    0x677e000 -  0x6799ff7  libPng.dylib ??? (???) <25DF2360-BFD3-0165-51AC-0BDAF7899DEC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
    0x67a1000 -  0x67a3ff7  libRadiance.dylib ??? (???) <5920EB69-8D7F-5EFD-70AD-590FCB5C9E6C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
    0x67a7000 -  0x67cbff7  libJPEG.dylib ??? (???) <EA97DEC5-6E16-B51C-BF55-F6E8D23526AD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
    0x67d2000 -  0x68b2fe7  com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
    0x68c0000 -  0x68c0ff7  com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
    0x68c3000 -  0x6905ff7  libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
    0x690e000 -  0x697dff7  libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
    0x6986000 -  0x6d9cff7  libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
    0x6dde000 -  0x7213ff7  libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
    0x7399000 -  0x749bfe7  libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
    0x74ef000 -  0x74f0ff7  com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
    0x74f4000 -  0x75acfeb  libFontParser.dylib ??? (???) <D57D3834-9395-FD58-092A-49B3708E8C89> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
    0x763c000 -  0x765cfe7  libresolv.9.dylib 41.0.0 (compatibility 1.0.0) <BF7FF2F6-5FD3-D78F-77BC-9E2CB2A5E309> /usr/lib/libresolv.9.dylib
    0x7666000 -  0x7670fe7  com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.f ramework/Versions/A/CarbonSound
    0x7678000 -  0x76c8ff7  com.apple.framework.familycontrols 2.0.2 (2020) <596ADD85-79F5-A613-537B-F83B6E19013C> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
    0x76e0000 -  0x778eff3  com.apple.ink.framework 1.3.3 (107) <233A981E-A2F9-56FB-8BDE-C2DEC3F20784> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
    0x77b8000 -  0x77e9ff7  libGLImage.dylib ??? (???) <0EE86397-A867-0BBA-E5B1-B800E43FC5CF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
    0x77f1000 -  0x7812fe7  com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
    0x781b000 -  0x781fff7  IOSurface ??? (???) <89D859B7-A26A-A5AB-8401-FC1E01AC7A60> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
    0x7827000 -  0x786aff7  libGLU.dylib ??? (???) <FB26DD53-03F4-A7D7-8804-EBC5B3B37FA3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7878000 -  0x7883ff7  libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
    0x7892000 -  0x799eff7  libGLProgrammability.dylib ??? (???) <04D7E5C3-B0C3-054B-DF49-3B333DCDEE22> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgramma bility.dylib
    0x79bd000 -  0x79c0ff7  libCoreVMClient.dylib ??? (???) <F58BDFC1-7408-53C8-0B08-48BA2F25CA43> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
    0x79c5000 -  0x79c9ff7  libGFXShared.dylib ??? (???) <801B2C2C-1692-475A-BAD6-99F85B6E7C25> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
    0x79ce000 -  0x7a50ffb  SecurityFoundation ??? (???) <C4506287-1AE2-5380-675D-95B0291AA425> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
    0x7a87000 -  0x7a8cff7  com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7a94000 -  0x7a9afe7  com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
    0x7aa1000 -  0x7ab9ff7  com.apple.CFOpenDirectory 10.6 (10.6) <D1CF5881-0AF7-D164-4156-9E9067B7FA37> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
    0x7aca000 -  0x7b17feb  com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <00A1A83B-0E7D-D0F4-A643-8C5675C2BB21> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordS erver
    0x7b33000 -  0x7b55fef  com.apple.DirectoryService.Framework 3.6 (621.12) <A4A47C88-138C-A237-88A5-877E5CAB4494> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x7b5f000 -  0x7b6fff7  libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
    0x7b76000 -  0x7bb9ff7  com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationSer vices.framework/Versions/A/NavigationServices
    0x7be2000 -  0x7be4ff7  com.apple.securityhi 4.0 (36638) <6118C361-61E7-B34E-93DB-1B88108F8F18> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
    0x7be9000 -  0x7beffff  com.apple.CommonPanels 1.2.4 (91) <2438AF5D-067B-B9FD-1248-2C9987F360BA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
    0x7bf7000 -  0x7bfaffb  com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
    0x7bff000 -  0x7c63ffb  com.apple.htmlrendering 72 (1.1.4) <4D451A35-FAB6-1288-71F6-F24A4B6E2371> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HTMLRendering .framework/Versions/A/HTMLRendering
    0x7c85000 -  0x7c9afff  com.apple.ImageCapture 6.1 (6.1) <B909459A-EAC9-A7C8-F2A9-CD757CDB59E8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
    0x7cb0000 -  0x7cccfe3  com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
    0x7cdc000 -  0x7d14ff7  com.apple.LDAPFramework 2.0 (120.1) <131ED804-DD88-D84F-13F8-D48E0012B96F> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7d1f000 -  0x7d2fff7  com.apple.DSObjCWrappers.Framework 10.6 (134) <81A0B409-3906-A98F-CA9B-A49E75007495> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x7d3a000 -  0x7db1ff3  com.apple.backup.framework 1.2.2 (1.2.2) <D65F2FCA-15EB-C200-A08F-7DC4089DA6A2> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
    0x7dca000 -  0x7e0aff3  com.apple.securityinterface 4.0.1 (40418) <FED0C1B5-469E-ADFF-308E-C10B6A68AE45> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
    0x7e2b000 -  0x7e36ff7  com.apple.CrashReporterSupport 10.6.7 (258) <8F3E7415-1FFF-0C20-2EAB-6A23B9728728> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
    0x7e42000 -  0x7e7cfe7  libssl.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <C62A7753-99A2-6782-92E7-6628A6190A90> /usr/lib/libssl.0.9.8.dylib
    0x7e8e000 -  0x7e8eff7  com.apple.quartzframework 1.5 (1.5) <CEB78F00-C5B2-3B3F-BF70-DD6D578719C0> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
    0x7e91000 -  0x8073fff  com.apple.imageKit 2.0.3 (1.0) <6E557757-26F7-7941-8AE7-046EC1871F50> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
    0x8145000 -  0x8183ff7  com.apple.QuickLookFramework 2.3 (327.6) <66955C29-0C99-D02C-DB18-4952AFB4E886> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
    0x81a6000 -  0x81e3ff7  com.apple.CoreMedia 0.484.52 (484.52) <62B0C876-A931-372F-8947-7CBA0379F427> /System/Library/PrivateFrameworks/CoreMedia.framework/Versions/A/CoreMedia
    0x81fe000 -  0x832bffb  com.apple.MediaToolbox 0.484.52 (484.52) <C9035045-D1B4-1B1F-7354-B00D1094D804> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
    0x838f000 -  0x884aff7  com.apple.VideoToolbox 0.484.52 (484.52) <F7CF9485-A932-1305-9AA6-3F7AC38B8B15> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
    0x88f3000 -  0x893affb  com.apple.CoreMediaIOServices 140.0 (1496) <DA152F1C-8EF4-4F5E-6D60-82B1DC72EF47> /System/Library/PrivateFrameworks/CoreMediaIOServices.framework/Versions/A/Core MediaIOServices
    0x895b000 -  0x89d6fff  com.apple.AppleVAFramework 4.10.26 (4.10.26) <B293EC46-9F71-F448-F0E7-2960DC6DAEF7> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
    0x89e0000 -  0x8c0bff3  com.apple.QuartzComposer 4.2 ({156.30}) <2C88F8C3-7181-6B1D-B278-E0EE3F33A2AF> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
    0x8cec000 -  0x8d65ff7  com.apple.PDFKit 2.5.1 (2.5.1) <A068BF37-03E0-A231-2791-561C60C3ED2B> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
    0x8d9b000 -  0x8dc2ff7  com.apple.quartzfilters 1.6.0 (1.6.0) <879A3B93-87A6-88FE-305D-DF1EAED04756> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
    0x8de0000 -  0x8e4eff7  com.apple.QuickLookUIFramework 2.3 (327.6) <74706A08-5399-24FE-00B2-4A702A6B83C1> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
    0x8e8a000 -  0x8ebaff7  com.apple.MeshKit 1.1 (49.2) <5A74D1A4-4B97-FE39-4F4D-E0B80F0ADD87> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/MeshKit
    0x8ed9000 -  0x90d7ff3  com.apple.JavaScriptCore 6533.20 (6533.20.20) <011E271D-4CA4-FFB0-2EDD-13C31C239899> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
    0x9132000 -  0x9188ff7  com.apple.MeshKitRuntime 1.1 (49.2) <CB9F38B1-E107-EA62-EDFF-02EE79F6D1A5> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itRuntime.framework/Versions/A/MeshKitRuntime
    0x91b8000 -  0x92bafef  com.apple.MeshKitIO 1.1 (49.2) <D0401AC5-1F92-2BBB-EBAB-58EDD3BA61B9> /System/Library/PrivateFrameworks/MeshKit.framework/Versions/A/Frameworks/MeshK itIO.framework/Versions/A/MeshKitIO
    0x9321000 -  0x9379fe7  com.apple.datadetectorscore 2.0 (80.7) <A40AA74A-9D13-2A6C-5440-B50905923251> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
    0x93a2000 -  0x93fcfe7  com.apple.CorePDF 1.4 (1.4) <78A1DDE1-1609-223C-A532-D282DC5E0CD0> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
    0x942b000 -  0x9433ff7  com.apple.DisplayServicesFW 2.3.3 (289) <828084B0-9197-14DD-F66A-D634250A212E> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
    0x943d000 -  0x9482ff7  com.apple.ImageCaptureCore 1.1 (1.1) <F54F284F-0B81-0AFA-CE47-FF797A6E05B0> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
    0x94a5000 -  0x94a6ff7  com.apple.MonitorPanelFramework 1.3.0 (1.3.0) <0EC4EEFF-477E-908E-6F21-ED2C973846A4> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
    0x94ab000 -  0x9efeff7  com.apple.WebCore 6533.21 (6533.21.1) <04C66A67-4CF2-5F4B-4EA3-00E67B0F9411> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
    0xa3ff000 -  0xa438fe7  com.apple.bom 10.0 (164) <CC61CCD7-F76C-45DD-6666-C0E0D07C7343> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
    0xa447000 -  0xa623fe7  com.apple.CalendarStore 4.0.4 (997.7) <F0077132-B7E4-A612-7D76-46EB1DE9C80E> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
    0xa6e9000 -  0xa729fe7  com.apple.DAVKit 4.0.3 (732.2) <EF9AA2D1-718F-40BE-4DB7-E62A767801AF> /System/Library/PrivateFrameworks/DAVKit.framework/Versions/A/DAVKit
    0xa74a000 -  0xa797ff7  com.apple.ExchangeWebServices 1.3 (61) <B3705083-4186-5A27-6003-58E7264CAA3E> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
    0xa7e7000 -  0xa856ff7  com.apple.ISSupport 1.9.7 (55) <77905553-740D-90E8-6B2E-ABF5B3D40CBF> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
    0xa88d000 -  0xa894ff7  com.apple.KerberosHelper 2.1 (1.0) <E29B37C3-467E-ACCB-3C72-FA3CC5C4030D> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
    0xa89a000 -  0xa8c0fe3  com.apple.speech.LatentSemanticMappingFramework 2.7.2 (2.7.2) <5986E77D-F10B-D037-5584-B73B1B352918> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
    0xa8d1000 -  0xa9cdff3  com.apple.PubSub 1.0.5 (65.21) <A8B3269D-A704-7A6A-F56A-2A07F119DC62> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
    0xaa2b000 -  0xaa38ff7  com.apple.AppleFSCompression 24.4 (1.0) <09E7FA6D-4BE8-5CA6-732F-D70EDF0E3910> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
    0xaa40000 -  0xaa4dfe7  libbz2.1.0.dylib 1.0.5 (compatibility 1.0.0) <828CCEAB-F193-90F1-F48C-54E3C88B29BC> /usr/lib/libbz2.1.0.dylib
    0xaa52000 -  0xab94ff7  com.apple.syncservices 5.2 (578.3) <17A876CF-DAB1-1A88-6811-64AF8BFDE508> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
    0xac0b000 -  0xac79ff7  com.apple.WhitePagesFramework 10.6.0 (140.0) <132A7CF8-D073-0F35-E9A4-777E5EBAC1EE> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
    0xaca6000 -  0xaceefff  com.apple.iCalendar 1.0.3 (54) <65B75654-CBFE-BDE7-E914-84683881B408> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
    0xad1a000 -  0xad25ff7  com.apple.NSServerNotificationCenter 3.0 (3.0) <0803C7DC-A7C5-03D5-4C84-4D4097542BE0> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
    0xad2f000 -  0xad4cfe7  com.apple.DotMacSyncManager 2.0.3 (446.9) <CFC4888B-BDAE-C977-804B-76ABFA8B489F> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
    0xad60000 -  0xad72ff7  com.apple.syncservices.syncservicesui 5.2 (578.3) <2E6EA5E4-EAEE-EF00-A565-0F9513AF9E27> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
    0xad7d000 -  0xad82ff7  com.apple.AOSNotification 1.2.0 (124) <3CDBCEB8-1078-7152-10CE-001B772AF04F> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
    0xad89000 -  0xadd9ff7  com.apple.Symbolication 1.1 (67) <E0C94D8B-4F12-49E6-BAA5-3B00441A047B> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
    0xadfb000 -  0xae36fe7  com.apple.DebugSymbols 1.1 (70) <05013716-CFCF-801E-5535-D0643869BDCD> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
    0xae4d000 -  0xaec1fef  com.apple.CoreSymbolication 2.0 (23) <8A04EA5F-83F8-5E15-B2E0-8A727C9C4E8B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
    0xaf00000 -  0xaf07ff7  com.apple.aps.framework 1.2 (1.2) <79AFAF6A-319E-C55D-92D8-69284EC663E5> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
    0xaf10000 -  0xaf46fff  libtidy.A.dylib ??? (???) <0FD72C68-4803-4C5B-3A63-05D7394BFD71> /usr/lib/libtidy.A.dylib
    0xaf53000 -  0xaf5aff7  com.apple.iChat.IMUtils 5.0.5 (747) <165000D5-219A-DFAE-68C6-25F6ED12A00B> /System/Library/Frameworks/IMCore.framework/Frameworks/IMUtils.framework/Versio ns/A/IMUtils
    0xaf62000 -  0xaf80ff7  com.apple.iChat.IMFoundation 5.0.5 (747) <4F6827AF-F713-A8F8-92E8-C9EC59D92416> /System/Library/Frameworks/IMCore.framework/Frameworks/IMFoundation.framework/V ersions/A/IMFoundation
    0xaf9b000 -  0xafdbfe7  com.apple.IMCore 5.0.5 (747) <625F3A2B-3E43-2BD2-99C0-58E1C1765F65> /System/Library/Frameworks/IMCore.framework/Versions/A/IMCore
    0xafee000 -  0xb016fff  com.apple.iLifeSlideshowCore 1.1 (134) <6B3AA83C-6198-9C49-7AFB-619E5DC2C756> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowCore.framework/Versions/A/iLifeSlideshowCore
    0xb030000 -  0xb140fe3  com.apple.iLifeSlideshowProducer 1.1 (382) <BBC8AFE4-95A6-4993-C10C-FF8AAC006928> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowProducer.framework/Versions/A/iLifeSlideshowProducer
    0xb1b3000 -  0xb2bcff3  com.apple.iLifeSlideshowRenderer 1.1 (375) <F8723883-3C5C-734F-CD08-709E4079B2C5> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowRenderer.framework/Versions/A/iLifeSlideshowRenderer
    0xb330000 -  0xb33bfff  com.apple.iLifeSlideshowExporter 1.1 (159) <A378AE26-9698-2327-CDAA-D2AF255DE5BE> /System/Library/PrivateFrameworks/iLifeSlideshow.framework/Versions/A/Framework s/iLifeSlideshowExporter.framework/Versions/A/iLifeSlideshowExporter
    0xb344000 -  0xb36dfe3  com.apple.audio.CoreAudioKit 1.6.1 (1.6.1) <7FFBD485-5251-776A-CC44-4470DD84112B> /System/Library/Frameworks/CoreAudioKit.framework/Versions/A/CoreAudioKit
    0xb37e000 -  0xb386fe7  com.apple.NetServices.BDControl 1.0.5 (1.0.5) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDControl.framework/Ve rsions/A/BDControl
    0xb392000 -  0xb395fff  com.apple.NetServices.BDRuleEngine 1.0.2 (1.0.2) /Applications/iPhoto.app/Contents/NetServices/Frameworks/BDRuleEngine.framework /Versions/A/BDRuleEngine
    0xb6c5000 -  0xb775fe3  com.apple.QuickTimeImporters.component 7.6.6 (1783) <E0BF3843-1044-F371-AB6F-423C5E9E417B> /System/Library/QuickTime/QuickTimeImporters.component/Contents/MacOS/QuickTime Importers
    0xc288000 -  0xc293ff7  libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCSync.A.dylib
    0xc29c000 -  0xc2a3ff7  com.apple.agl 3.0.12 (AGL-3.0.12) <A5FF7623-9F55-0364-AD9B-42CF13C677C1> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0xc2e9000 -  0xc2ecff7  libCGXType.A.dylib 545.0.0 (compatibility 64.0.0) <4D766435-EB76-C384-0127-1D20ACD74076> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0xc2fc000 -  0xc337feb  libFontRegistry.dylib ??? (???) <AD45365E-A3EA-62B8-A288-1E13DBA22B1B> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libFontRegistry.dylib
    0xc40b000 -  0xc40ffff  com.apple.iPhoto.RSSPublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/RSSPublisher.publisher/Contents/MacOS /RSSPublisher
    0xc690000 -  0xc6c3fff  libTrueTypeScaler.dylib ??? (???) <0F04DAC3-829A-FA1B-E9D0-1E9505713C5C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libTrueTypeScaler.dylib
    0xc6cf000 -  0xc710ff7  libRIP.A.dylib 545.0.0 (compatibility 64.0.0) <80998F66-0AD7-AD12-B9AF-3E8D2CE6DE05> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0xc7e3000 -  0xc7e9ff7  libCGXCoreImage.A.dylib 545.0.0 (compatibility 64.0.0) <6EE825E7-CBA5-2AD2-0336-244D45A1A834> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/Resources/libCGXCoreImage.A.dylib
    0x1dd5b000 - 0x1ecadff7  com.apple.QuickTimeComponents.component 7.6.6 (1783) /System/Library/QuickTime/QuickTimeComponents.component/Contents/MacOS/QuickTim eComponents
    0x1ef9c000 - 0x1f617ff7  com.apple.CoreAUC 6.11.03 (6.11.03) <42B31B0F-18F9-29D2-A67C-7B81A47F6D67> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
    0x1fc5c000 - 0x1fc8dff7  com.apple.iPhoto.MobileMePublisher 1.0 (1.0) /Applications/iPhoto.app/Contents/PlugIns/MobileMePublisher.publisher/Contents/ MacOS/MobileMePublisher
    0x1fcd4000 - 0x1fcd5ff7  com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x1fcf5000 - 0x1fcf6ff7  com.apple.iLMBAppDefPlugin 2.5.5 (252.2.5) <23D52DA9-0F87-6EAA-990E-2864C4B6D6AA> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAppDefPlugin.ilmbplugin/Contents/MacOS/i LMBAppDefPlugin
    0x20000000 - 0x20098fe7  edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
    0x23033000 - 0x23484fef  com.apple.RawCamera.bundle 3.7.1 (570) <AF94D180-5E0F-10DF-0CB2-FD8EDB110FA2> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x23c4e000 - 0x23e2cfe3  libType1Scaler.dylib ??? (???) <97A2DBFA-C50B-266C-E63A-D6644F3B737C> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ATS.framewo rk/Resources/libType1Scaler.dylib
    0x2444a000 - 0x24455fff  com.apple.BookService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/BookService.NetService/Co ntents/MacOS/BookService
    0x2445f000 - 0x24469fff  com.apple.CalendarsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CalendarsService.NetServi ce/Contents/MacOS/CalendarsService
    0x24473000 - 0x2447dfff  com.apple.CardsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/CardsService.NetService/C ontents/MacOS/CardsService
    0x24487000 - 0x24492fff  com.apple.PrintsService 8.0 (8.0) /Applications/iPhoto.app/Contents/NetServices/Bundles/PrintsService.NetService/ Contents/MacOS/PrintsService
    0x2449c000 - 0x244a4ff7  com.apple.iLMBAperturePlugin 2.5.5 (252.2.5) <BF2A071D-6F1C-03BA-DD1B-74F93CE9D7B0> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperturePlugin.ilmbplugin/Contents/MacOS /iLMBAperturePlugin
    0x244ab000 - 0x244b5ff7  com.apple.iLMBFinalCutPlugin 2.5.5 (252.2.5) <B089F264-64BE-07DE-E250-D5C63C351222> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFinalCutPlugin.ilmbplugin/Contents/MacOS /iLMBFinalCutPlugin
    0x244bb000 - 0x244bdff7  com.apple.iLMBFolderPlugin 2.5.5 (252.2.5) <0896FA5E-8453-B2F6-8E87-F5F2FA382395> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBFolderPlugin.ilmbplugin/Contents/MacOS/i LMBFolderPlugin
    0x244c2000 - 0x244c6ff7  com.apple.iLMBGarageBandPlugin 2.5.5 (252.2.5) <E10E678C-831C-7A6B-1A56-775CD81DA98E> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBGarageBandPlugin.ilmbplugin/Contents/Mac OS/iLMBGarageBandPlugin
    0x244cc000 - 0x244d8ff7  com.apple.iLMBiMoviePlugin 2.5.5 (252.2.5) <313540B0-C7D2-5EB4-C688-0FCB9FFD5E81> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiMoviePlugin.ilmbplugin/Contents/MacOS/i LMBiMoviePlugin
    0x244df000 - 0x244f3ffb  com.apple.iLMBiPhoto8Plugin 2.5.5 (252.2.5) <0016975B-CA8E-76EA-3BF7-BAD4C8834814> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto8Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto8Plugin
    0x25ca6000 - 0x25cafff7  com.apple.iLMBiPhotoPlugin 2.5.5 (252.2.5) <D6F8A353-CDC4-A9B8-383E-5D6F7FBAF593> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhotoPlugin.ilmbplugin/Contents/MacOS/i LMBiPhotoPlugin
    0x25cb6000 - 0x25cbeff7  com.apple.iLMBiTunesPlugin 2.5.5 (252.2.5) <4A54C561-8932-6E09-BDAE-C030D494E0DA> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiTunesPlugin.ilmbplugin/Contents/MacOS/i LMBiTunesPlugin
    0x25cc5000 - 0x25cc7ff7  com.apple.iLMBMoviesFolderPlugin 2.5.5 (252.2.5) <4A70635B-4CF4-8F65-BF6D-3B6F18838A23> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBMoviesFolderPlugin.ilmbplugin/Contents/M acOS/iLMBMoviesFolderPlugin
    0x25ccc000 - 0x25cceff7  com.apple.iLMBPhotoBoothPlugin 2.5.5 (252.2.5) <77BE4315-C665-3243-B857-64895276EFA1> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBPhotoBoothPlugin.ilmbplugin/Contents/Mac OS/iLMBPhotoBoothPlugin
    0x25e00000 - 0x25ed1fe3  ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <1C3E1CEF-6E88-4EAF-8A6E-4EC4C5642DDB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x25f0f000 - 0x25fbfffb  com.apple.iTunesAccess 11.1.3 (11.1.3) <0A281C6A-EF94-3200-8D6F-69108EFCE44E> /System/Library/PrivateFrameworks/iTunesAccess.framework/iTunesAccess
    0x26100000 - 0x26249fe7  com.apple.iLMBAperture31Plugin 2.5.5 (252.2.5) <2AA8E13C-4221-698B-F755-DB8103D191B9> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBAperture31Plugin.ilmbplugin/Contents/Mac OS/iLMBAperture31Plugin
    0x2628a000 - 0x263d6fe7  com.apple.iLMBiPhoto9Plugin 2.5.5 (252.2.5) <86E4AD5A-1233-9F42-B4BD-CECFFC4C4ACD> /Library/Application Support/iLifeMediaBrowser/Plug-Ins/iLMBiPhoto9Plugin.ilmbplugin/Contents/MacOS/ iLMBiPhoto9Plugin
    0x4beef000 - 0x4bef9ff7  com.apple.dotMacLegacy 3.2 (266) <6F2588BA-E801-1664-E60C-5BEC2AF924D0> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
    0x64b00000 - 0x64b07ff3  com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
    0x8fe00000 - 0x8fe4163b  dyld 132.1 (???) <4CDE4F04-0DD6-224E-ACE5-3C06E169A801> /usr/lib/dyld
    0xfa100000 - 0xfa192fe7  com.apple.print.framework.PrintCore 6.3 (312.7) <7410D1B2-655D-68DA-D4B9-2C65747B6817> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
    0xffff0000 - 0xffff1fff  libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
    Model: MacBookPro5,3, BootROM MBP53.00AC.B03, 2 processors, Intel Core 2 Duo, 2.8 GHz, 4 GB, SMC 1.48f2
    Graphics: NVIDIA GeForce 9600M GT, NVIDIA GeForce 9600M GT, PCIe, 512 MB
    Graphics: NVIDIA GeForce 9400M, NVIDIA GeForce 9400M, PCI, 256 MB
    Memory Module: global_name
    AirPort: spairport_wireless_card_type_airport_extreme (0x14E4, 0x8D), Broadcom BCM43xx 1.0 (5.10.131.42.4)
    Bluetooth: Version 2.4.5f3, 2 service, 19 devices, 0 incoming serial ports
    Network Service: AirPort, AirPort, en1
    Serial ATA Device: ST9500420ASG, 465.76 GB
    Serial ATA Device: MATSHITADVD-R   UJ-868
    USB Device: Built-in iSight, 0x05ac  (Apple Inc.), 0x8507, 0x24400000 / 2
    USB Device: Internal Memory Card Reader, 0x05ac  (Apple Inc.), 0x8403, 0x26500000 / 2
    USB Device: Apple Internal Keyboard / Trackpad, 0x05ac  (Apple Inc.), 0x0236, 0x04600000 / 3
    USB Device: IR Receiver, 0x05ac  (Apple Inc.), 0x8242, 0x04500000 / 2
    USB Device: BRCM2046 Hub, 0x0a5c  (Broadcom Corp.), 0x4500, 0x06100000 / 2
    USB Device: Bluetooth USB Host Controller, 0x05ac  (Apple Inc.), 0x8213, 0x06110000 / 5

    As a test launch iPhoto with the Option key held down and create a new, test library.  Import some photos and test to see if the same problem persists. Does it?
    If it doesn't the your library is damaged and needs to be fixed. Apply the two fixes below in order as needed:
    Fix #1
    Launch iPhoto with the Command+Option keys held down and rebuild the library.
    Select the options identified in the screenshot. 
    Fix #2
    Using iPhoto Library Manager  to Rebuild Your iPhoto Library
    Download IPhoto Library Manager 4 for OS XC 10.6.8 and iPhoto  8.1.2 and later  or iPhoto Library Manager 3 (for OS X 10.5.8 and iPhoto 7.1.5 and earlier) and launch.
    Click on the Add Library button, navigate to your Home/Pictures folder and select your iPhoto Library folder.
    Now that the library is listed in the left hand pane of iPLM, click on your library and go to the File ➙ Rebuild Library menu (iPLM 3) or Library ➙ Rebuild Library menu (iPLM 4) option.
    In the next  window name the new library and select the location you want it to be placed.
    Click on the Create button.
    Note: This creates a new library based on the LIbraryData.xml file in the library and will recover Events, Albums, keywords, titles and comments but not books, calendars or slideshows. The original library will be left untouched for further attempts at fixing the problem or in case the rebuilt library is not satisfactory.
    OT

  • Firefox is not allowing me to add new tabs. I'm pushing the plus sign next to my tab, and it is no longer adding new tabs. How do I fix this problem?

    When I open Firefox, I automatically have one tab. The plus sign button to add more tabs is next to the one tab, but it no longer adds tabs when I click on it. When I click on it, it doesn't do anything. How can I fix this problem so I can have multiple tabs? I downloaded the most current version of Firefox, and I'm still having the same problem. I've had this problem for a little over a week now.

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

  • How do I fix this problem with Faces on my iPhoto?

    Recently, I bought a new MacBook Pro (with Retina Display, Early 2015, 500 GB.) When I restored my information from a Time Machine backup, everything appeared to be perfect. However, when I actually started looking through iPhoto, my photos began incorrectly rotating themselves before my eyes.
    I tried just about everything to fix this. I went through all the processes of "repair permissions," "rebuild thumbnails," "repair database," and "rebuild database," and none of those fixed the problem. Worse, more continue to incorrectly rotate themselves before my eyes as I view them. Usually, the ones that rotate themselves are portraits, but occasionally landscape photos do the same.  Also, when I select "reveal in finder" for a photo that has rotated itself incorrectly, the "original file" is always correct, while the "modified file" is incorrect. I don't know why this "modified file" comes about because I am certainly not modifying it.
    Taking a suggestion from a user here in the Apple Support Community, I used iPhoto Library Manager to rebuild a new library from my original one. This appeared to work really well. Although many photos were rotated incorrectly, this appeared to be organic, and I wasn't noticing photos being incorrectly rotated as I looked through them. So, I set out to complete the long task of rotating all of my photos correctly in my new iPhoto library.
    However, I've encountered another problem (in the new library only.) iPhoto isn't recognizing when I change, add, or delete faces. If I do any of those three things, the information bar still recognizes the original state of faces (i.e. saying "2 unnamed faces" when I just named the faces or deleted the empty boxes.) This is annoying because it makes my library inconsistent, and I would at least like the option of using the feature.
    So, I now have two iPhoto libraries: my original one that keeps rotating photos incorrectly as I look through them and one that doesn't acknowledge changes made to faces.
    I would really appreciate any help in trying to fix either of my libraries. I hope to make one perfect soon and delete the other one to make more space, but I want to be completely satisfied with one before I delete the other.
    Thank you so much,
    Luke

    Personally, I would never use a debit card online, for security reasons.  If your card gets hacked its your money that is stolen.  At least with a credit card it is the card providers money that is stolen.
    Anyway,  I would delete the app and re-install.  If you paid for the app in the first place you will be able to re-install free of charge.  Also, the app should allow the in-app purchase to happen again as it should recognise that you have already purchased it previously.
    Finally, it might be that the 3G doesnt have as much ram as more recent models of iphone and you may have applications running in the background that are preventing the app to function with the in-app purchase unless you shut down any apps eating all you memory that are running in the background.  Shut-down these apps (and the simpson tap out app) by exiting to your home screen and double-tapping the home button to show what apps are running in the background.  press and hold any of the open apps until it starts shaking.  close all the apps down.  exit then re-launch the app.
    good luck.

  • When is Apple going to fix the problem with slow Time Machine backups with Mavericks?

    I have been with Apple tech support and they got my Time Machine working by doing a spotlight re-indexing and a safe boot.  This worked for about three days and I am back to very slow backups.  It is impossible for Time Machine to back up every hour when it takes six hours to do the back up.  I don't want to take hours to re-index with spotlight all the time.  I think taking six hours to do an incremental backup is a bit much.  I see that there are many people that have this trouble and it all started with an upgrade to Mavericks.  The question is when is Apple going to fix this problem of slow backups with Time Machine for Mavericks.  I have wasted more time than I care to.  I am think of going back to Windows.  I need good solid backups of my machine and Apple has taken it away with the new Mavericks. Oh, I am using the UBS 3.0 connection so the drive should not be the problem.  Also this has occurred in about the last five months, so I am not sure this problem was in the original Marvericks.

    Allen Thanks for your reply.  All I can say is several months ago Time Machine quit working in a reasonable manner.  Right now I have a Time Machine backup that has been running all night and still has three hours to go to backup 6 GB of data.  I am using a OWC 1.5 TB drive connected directly to my MacBook with a USB 3.0 connection.  In the resent past I have added Dropbox, GoogleDrive and a MAMP server on which I am using a program called Learning With Text from Sourceforge.  There have been a lot of questions on the forum about people having very slow Time Machine back ups, so it appears to be a general problem.  I should also state I am getting this very slow backup after doing the Spotlight re-indexing and the Safe Restart procedure that was told to me by apple support.  I have a 750 GB drive in my MacBook Pro which I am constantly trying to keep at a 5% level of free space.  This might be a problem also.  However, I am working on a lot of things and like to have a lot of things on my drive.  Also the heavily loaded drive has not be a problem in the past.  This slow backup business started about three months ago, so something has happen in a very short time period.  Now it seems even the procedure that Apple support gave me is not working.  Currently I am in China and it is difficult to interact with Apple support to solve this problem, but because I am in China having my computer backed up is critical. I have run the EtreCheck and am attaching the results below. I would appreciate any suggestions.  If necessary I will clear out more of my hard drive if that appears to be a solution.  The Time Machine drive was recently reformed so I only have a few backups on it.  I also don't run the Time Machine all the time as I don't want multi-hour backups running all the time.  I run it every few days.
    Here is the info from EtreCheck:
    Hardware Information:
              MacBook Pro (15-inch, Mid 2012)
              MacBook Pro - model: MacBookPro9,1
              1 2.6 GHz Intel Core i7 CPU: 4 cores
              8 GB RAM
    Video Information:
              Intel HD Graphics 4000 - VRAM: 1024 MB
              NVIDIA GeForce GT 650M - VRAM: 1024 MB
    System Software:
              OS X 10.9.2 (13C1021) - Uptime: 0 days 10:18:59
    Disk Information:
              APPLE HDD HTS727575A9E362 disk0 : (750.16 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 749.3 GB (54.06 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              HL-DT-ST DVDRW  GS31N 
    USB Information:
              VIA Labs, Inc.    USB3.0 Hub       
                        OWC Elite Pro mini C 1.5 TB
                                  EFI (disk1s1) <not mounted>: 209.7 MB
                                  NewMBP-TimeMachine-1.1 (disk1s2) /Volumes/NewMBP-TimeMachine-1.1: 1.5 TB (691.6 GB free)
              Apple Inc. FaceTime HD Camera (Built-in)
              Apple Inc. BRCM20702 Hub
                        Apple Inc. Bluetooth USB Host Controller
              Apple Computer, Inc. IR Receiver
              Apple Inc. Apple Internal Keyboard / Trackpad
              Logitech USB Receiver
    Thunderbolt Information:
              Apple Inc. thunderbolt_bus
    Gatekeeper:
              Mac App Store and identified developers
    Kernel Extensions:
              [not loaded] com.LaCie.ScsiType00 (1.2.2) Support
              [not loaded] com.lacie.driver.LaCie_RemoteComms (1.0.1) Support
              [not loaded] com.oxsemi.driver.OxsemiDeviceType00 (1.28.0) Support
              [not loaded] com.roxio.BluRaySupport (1.1.6) Support
              [not loaded] com.roxio.TDIXController (2.0) Support
              [not loaded] com.seagate.driver.PowSecDriverCore (5.0.1) Support
              [not loaded] com.seagate.driver.PowSecLeafDriver_10_4 (5.0.1) Support
              [not loaded] com.seagate.driver.PowSecLeafDriver_10_5 (5.0.1) Support
              [not loaded] com.seagate.driver.SeagateDriveIcons (5.0.1) Support
              [kext loaded] com.symantec.kext.SymAPComm (11.2.2f3) Support
              [not loaded] com.symantec.kext.confidentialData (1.4f5) Support
              [not loaded] com.symantec.kext.filesecurity (1.4.3f19) Support
              [kext loaded] com.symantec.kext.fw (1.0.3f5) Support
              [kext loaded] com.symantec.kext.internetSecurity (1.3.2f5) Support
              [kext loaded] com.symantec.kext.ips (1.3.1f7) Support
              [kext loaded] com.symantec.kext.pf (4.2.1f7) Support
              [not loaded] com.wacom.driver.HIDTablet (5.0.1) Support
    Startup Items:
              cma: Path: /Library/StartupItems/cma
              MySQLCOM: Path: /Library/StartupItems/MySQLCOM
              ParallelsDesktopTransporter: Path: /Library/StartupItems/ParallelsDesktopTransporter
              ParallelsTransporter: Path: /Library/StartupItems/ParallelsTransporter
              Tablet: Path: /Library/StartupItems/Tablet
    Launch Daemons:
              [loaded] com.adobe.fpsaud.plist Support
              [loaded] com.adobe.versioncueCS4.plist Support
              [loaded] com.barebones.authd.plist Support
              [not loaded] com.barebones.textwrangler.plist Support
              [loaded] com.bombich.ccc.plist Support
              [loaded] com.mcafee.virusscan.eupdate.plist Support
              [running] com.micromat.TechToolProDaemon.plist Support
              [loaded] com.oracle.java.Helper-Tool.plist Support
              [loaded] com.oracle.java.JavaUpdateHelper.plist Support
              [loaded] com.prosofteng.DriveGenius.locum.plist Support
              [running] com.symantec.avscandaemon.plist Support
              [running] com.symantec.deepsight-extractor.plist Support
              [running] com.symantec.diskMountNotify.plist Support
              [loaded] com.symantec.MissedTasks.plist Support
              [loaded] com.symantec.navapd.plist Support
              [running] com.symantec.navapdaemonsl.plist Support
              [loaded] com.symantec.Sched501-1.plist Support
              [loaded] com.symantec.Sched501-2.plist Support
              [loaded] com.symantec.Sched503-3.plist Support
              [loaded] com.symantec.Sched503-4.plist Support
              [running] com.symantec.sharedsettings.plist Support
              [running] com.symantec.symdaemon.plist Support
              [running] com.symantec.symSchedDaemon.plist Support
              [loaded] org.macosforge.xquartz.privileged_startx.plist Support
    Launch Agents:
              [loaded] com.adobe.CS4ServiceManager.plist Support
              [running] com.lacie.safemanager.daemon.plist Support
              [running] com.micromat.TechToolProAgent.plist Support
              [loaded] com.oracle.java.Java-Updater.plist Support
              [running] com.seagate.SeagateStorageGauge.plist Support
              [failed] com.sogou.SogouServices.plist Support
              [running] com.symantec.uiagent.application.plist Support
              [running] net.culater.SIMBL.Agent.plist Support
              [loaded] org.macosforge.xquartz.startx.plist Support
    User Launch Agents:
              [loaded] com.adobe.ARM.[...].plist Support
              [loaded] com.adobe.ARM.[...].plist Support
              [loaded] com.google.keystone.agent.plist Support
              [running] com.wondershare.mobilegodaemon.plist Support
    User Login Items:
              GeekTool
              SIMBL Agent
              QQ
              Safari
              Calendar
              Google Drive
              Dropbox
              Day One
              Dictionary
              SymSecondaryLaunch
    Internet Plug-ins:
              Flip4Mac WMV Plugin: Version: 2.2.1.11  Support
              FlashPlayer-10.6: Version: 13.0.0.182 - SDK 10.6 Support
              iPhotoPhotocast: Version: 7.0
              Flash Player: Version: 13.0.0.182 - SDK 10.6 Outdated! Update
              AdobePDFViewer: Version: 9.5.5 Support
              Default Browser: Version: 537 - SDK 10.9
              QuickTime Plugin: Version: 7.7.3
              OfficeLiveBrowserPlugin: Version: 12.3.6 Support
              RealPlayer Plugin: Version: (null) Support
              Silverlight: Version: 4.0.51204.0 Support
              JavaAppletPlugin: Version: Java 7 Update 55 Check version
    Safari Extensions:
              Video Converter: Version: 4.0.0
              AllMyTube: Version: 4.1.0.0
              Open in Internet Explorer: Version: 1.0
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 2.0 - SDK 10.9
              AppleAVBAudio: Version: 203.2 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User Internet Plug-ins:
              QQMail: Version: 1.0.2.0 - SDK 10.7 Support
              txftn: Version: 1.0.0.6 Support
    3rd Party Preference Panes:
              Adobe Version Cue CS4  Support
              Flash Player  Support
              GeekTool  Support
              Growl  Support
              Java  Support
              MacFUSE  Support
              MenuMeters  Support
              MySQL  Support
              Norton\nQuickMenu  Support
              Paragon NTFS for Mac ® OS X  Support
              Pen Tablet  Support
              Perian  Support
              TechTool Protection  Support
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 697.84 GB Disk used: 647.49 GB
              Destinations:
                        NewMBP-TimeMachine-1.1 [Local] (Last used)
                        Total size: 1 
                        Total number of backups: 11
                        Oldest backup: 2014-03-18 15:09:46 +0000
                        Last backup: 2014-04-29 23:24:28 +0000
                        Size of backup disk: Too small
                                  Backup size 1  < (Disk used 647.49 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                  47%          SymAVScanDaemon
                   7%          Finder
                   7%          WindowServer
                   2%          mds
                   1%          NortonAutoProtect
    Top Processes by Memory:
              385 MB          NortonAutoProtect
              262 MB          mds_stores
              180 MB          Safari
              139 MB          WindowServer
              115 MB          Finder
    Virtual Memory Information:
              1.15 GB          Free RAM
              2.87 GB          Active RAM
              1.83 GB          Inactive RAM
              1.05 GB          Wired RAM
              1.02 GB          Page-ins
              380 MB          Page-outs
    I hope you can see something that can be fixed.

  • Use of attributes in FIX statement w/ other mbrsets

    Hi all,I just discovered that in 6.1.4, using a FIX statement like:FIX (@ATTRIBUTE("Diet"), @LEVMBRS(Products, 0))will actually select all products, not just a subset that have the attribute "Diet" (where "Diet" is, of course, an attribute of products).Now you might think I'm ignorant, since it seems logical that the subset "Diet" might be overridden by the superset "Products". However the same problem happens if I use:FIX (@ATTRIBUTE("Diet"), @ATTRIBUTE("Discontinued"))This statement returns neither the intersection nor the union of those two subsets - I seem to get ALL products.What gives? Am I just a foolish country boy?-dan

    Does this select ALL of the products, or just the Level 0 products? The reason I ask is that the statement will not be combined using AND logic - only members of different dimensions will be combined using AND logic. Try the following:FIX (@LEVMBRS(Product, 0) AND @ATTRIBUTE(Diet))Now, if your attribute is at level 0 (I assume it is) and you want to select them, just use:FIX (@ATTRIBUTE(Diet))That will select all of the products that have a Diet attribute.Hope that helps.Regards,Jade-------------------------------Jade ColeSenior Business Intelligence ConsultantClarity [email protected]

  • My wifi is not working. It has no indication. I am living in Indonesia but I bought my iphone from apple online store. Can anyone help me how to fix my problem?

    My wifi is not working. It has no indication. I am living in Indonesia but I bought my iphone from apple online store. Can anyone help me how to fix my problem?

    The No Service means there is a problem with cellular service. You mention wifi in your title. Which is it you are having trouble with? What happens when you switch on and off as you state in your post? Are you saying that wifi does not connect while at home either?

  • FIX STATEMENT AND LARGE SPARSE DIMENSIONS

    Hello all,
    We have the following Essbase BSO db;
    Account (Dense) (285 Members) (Aggregating Dimension)
    Period (Dense) (65 Members) (Aggregating Dimension)
    D1 (Sparse) (3700 Members)
    (Aggregating Dimension)
    D2 (Sparse) (8900 Members)
    (Aggregating Dimension)
    D3 (Sparse) (15000 Members)
    (Aggregating Dimension)
    Version (Sparse) (3 Members) (NON-Aggregating Dimension)
    Scenario (Sparse) (5 Members) (NON-Aggregating Dimension)
    Year (Sparse) (3 Members) (NON-Aggregating Dimension)
    Currency (Sparse) (11 Members) (NON-Aggregating Dimension)
    D4 (Sparse) (20 Members) (NON-Aggregating Dimension)
    Block Size = ~150KM
    Index Cache = 4GB
    Data Cache = 8GB
    CPUs = 8
    MEMORY FREE = 26GB
    NOTE:
    We are executing the database with data loaded for "JUST" 10 BLOCKS,
    SO
    VERY VERY SMALL VOLUME OF DATA!!!
    We have come across a rather irritating and strange issue while executing
    the following calc;
    CASE 1: With LEVEL-0 OF RELEVANT
    SPARSE DIMENSIONS IN FIX STATEMENT
    //ESS_LOCALE English_UnitedStates.Latin1@Binary
    SET MSG ERROR;
    SET CACHE HIGH;
    SET UPDATECALC OFF;
    SET LOCKBLOCK HIGH;
    SET AGGMISSG OFF;
    SET CALCPARALLEL 4;
    SET CREATENONMISSINGBLK OFF;
    FIX(ACTUAL,"2013",@LEVMBRS(D1,0),@LEVMBRS(D2,0),@LEVMBRS(D3,0),@LEVMBRS(D4,0),
    @RELATIVE("EBITDA",0))
    DATACOPY ARS->CURRENCY_VERSION TO ARS->WORKING;
    DATACOPY CAD->CURRENCY_VERSION TO CAD->WORKING;
    DATACOPY CHF->CURRENCY_VERSION TO CHF->WORKING;
    DATACOPY COP->CURRENCY_VERSION TO COP->WORKING;
    DATACOPY EUR->CURRENCY_VERSION TO EUR->WORKING;
    DATACOPY GBP->CURRENCY_VERSION TO GBP->WORKING;
    DATACOPY MXN->CURRENCY_VERSION TO MXN->WORKING;
    DATACOPY CNY->CURRENCY_VERSION TO CNY->WORKING;
    ENDFIX
    $$$$$$NOTE1: The above FIX STATEMENT
    works just fine and executes in 1 sec as its just a DATACOPY. ESSENTIALLY I
    HAVE CREATED THE BLOCKS I WANT TO PERFORM THE BELOW SPARSE CALCULATION$$$$$$
    FIX(ACTUAL,"2013",@LEVMBRS(D1,0),@LEVMBRS(D2,0),@LEVMBRS(D3,0),@LEVMBRS(D4,0),
    @RELATIVE("EBITDA",0))
    ARS = ARS->CURRENCY_VERSION *
    "ARS_RATE"->"NO_CURRENCY"->"C_NONE"->"L_NONE"->"S_NONE"->"U_NONE"->WORKING;
    CAD = ARS->CURRENCY_VERSION *
    "CAD_RATE"->"NO_CURRENCY"->"C_NONE"->"L_NONE"->"S_NONE"->"U_NONE"->WORKING;
    CHF = ARS->CURRENCY_VERSION *
    "CHF_RATE"->"NO_CURRENCY"->"C_NONE"->"L_NONE"->"S_NONE"->"U_NONE"->WORKING;
    COP = ARS->CURRENCY_VERSION *
    "COP_RATE"->"NO_CURRENCY"->"C_NONE"->"L_NONE"->"S_NONE"->"U_NONE"->WORKING;
    EUR = ARS->CURRENCY_VERSION *
    "EUR_RATE"->"NO_CURRENCY"->"C_NONE"->"L_NONE"->"S_NONE"->"U_NONE"->WORKING;
    GBP = ARS->CURRENCY_VERSION *
    "COP_RATE"->"NO_CURRENCY"->"C_NONE"->"L_NONE"->"S_NONE"->"U_NONE"->WORKING;
    MXN = ARS->CURRENCY_VERSION *
    "MXN_RATE"->"NO_CURRENCY"->"C_NONE"->"L_NONE"->"S_NONE"->"U_NONE"->WORKING;
    CNY = ARS->CURRENCY_VERSION *
    "CNY_RATE"->"NO_CURRENCY"->"C_NONE"->"L_NONE"->"S_NONE"->"U_NONE"->WORKING;
    ENDFIX
    $$$$$$NOTE2: The above FIX STATEMENT
    is where we have a problem, THE CALC JUST HANGS AND DOES NOT CALCULATE$$$$$$
    CASE 2: With “specific” members of
    RELEVANT SPARSE DIMENSIONS IN FIX STATEMENT
    //ESS_LOCALE English_UnitedStates.Latin1@Binary
    SET MSG ERROR;
    SET CACHE HIGH;
    SET UPDATECALC OFF;
    SET LOCKBLOCK HIGH;
    SET AGGMISSG OFF;
    SET CALCPARALLEL 4;
    SET CREATENONMISSINGBLK OFF;
    FIX(ACTUAL,"2013",W1,"2251026",MORSCREJWHITE,MORSCREJWHITE_S,KG,TRADESALES)
    DATACOPY ARS->CURRENCY_VERSION TO ARS->WORKING;
    DATACOPY CAD->CURRENCY_VERSION TO CAD->WORKING;
    DATACOPY CHF->CURRENCY_VERSION TO CHF->WORKING;
    DATACOPY COP->CURRENCY_VERSION TO COP->WORKING;
    DATACOPY EUR->CURRENCY_VERSION TO EUR->WORKING;
    DATACOPY GBP->CURRENCY_VERSION TO GBP->WORKING;
    DATACOPY MXN->CURRENCY_VERSION TO MXN->WORKING;
    DATACOPY CNY->CURRENCY_VERSION TO CNY->WORKING;
    ENDFIX
    $$$$$$NOTE3: The above FIX STATEMENT
    works just fine and executes in 1 sec as its just a DATACOPY. ESSENTIALLY I
    HAVE CREATED THE BLOCKS I WANT TO PERFORM THE BELOW SPARSE CALCULATION$$$$$$
    FIX(ACTUAL,"2013","2251026",MORSCREJWHITE,MORSCREJWHITE_S,KG,WORKING)
    ARS = ARS->CURRENCY_VERSION *
    "ARS_RATE"->"NO_CURRENCY"->"C_NONE"->"L_NONE"->"S_NONE"->"U_NONE"->WORKING;
    CAD = CAD->CURRENCY_VERSION *
    "CAD_RATE"->"NO_CURRENCY"->"C_NONE"->"L_NONE"->"S_NONE"->"U_NONE"->WORKING;
    CHF = CHF->CURRENCY_VERSION *
    "CHF_RATE"->"NO_CURRENCY"->"C_NONE"->"L_NONE"->"S_NONE"->"U_NONE"->WORKING;
    COP = COP->CURRENCY_VERSION *
    "COP_RATE"->"NO_CURRENCY"->"C_NONE"->"L_NONE"->"S_NONE"->"U_NONE"->WORKING;
    EUR = EUR->CURRENCY_VERSION *
    "EUR_RATE"->"NO_CURRENCY"->"C_NONE"->"L_NONE"->"S_NONE"->"U_NONE"->WORKING;
    GBP = GBP->CURRENCY_VERSION *
    "GBP_RATE"->"NO_CURRENCY"->"C_NONE"->"L_NONE"->"S_NONE"->"U_NONE"->WORKING;
    MXN = MXN->CURRENCY_VERSION * "MXN_RATE"->"NO_CURRENCY"->"C_NONE"->"L_NONE"->"S_NONE"->"U_NONE"->WORKING;
    CNY = CNY->CURRENCY_VERSION *
    "CNY_RATE"->"NO_CURRENCY"->"C_NONE"->"L_NONE"->"S_NONE"->"U_NONE"->WORKING;
    ENDFIX
    $$$$$$NOTE4: The above FIX
    STATEMENT works just fine, as I am fixing on just ONE member from relevant
    dimensions in the FIX STATEMENT$$$$$$
    Please note the only difference between NOTE 2
    and NOTE 4 is the FIX statements. I.e., Fixing all required lev-0 members from
    required dimensions as opposed to Fixing on just single lev-0 members from
    required dimensions.
    Also please note that NOTE 1 FIX statement works
    just fine! So, there is no problem with the FIX statement itself but rather
    with the combination of Sparse Calculations and with Fixing all LEV-0 members
    from required dimension in the FIX. Probably because the Sparse dimensions are
    VERY LARGE.
    Could anyone shed some light on what might be wrong here?
    We are on Essbase standalone V11.1.2.
    Your inputs are very much appreciated!
    Thanks

    Hi,
    One minor thing I notice - your NOTE 2 problem script does not fix on your Working version, whereas the NOTE 4 script does.
    With your small number of blocks, this should not be the problem, but it's probably worth quickly testing and eliminating before delving deeper.
    Your script could be invoking member formulae from the Account dimension - does your outline validate ok..?
    I cannot tell from your NOTE 4 script which member relates to the Account dimension - is it 2251026?
    Whichever it is, it is worth expanding NOTE 4 script up to @RELATIVE("EBITDA",0)....
    - if it runs, you know the problem is with your sparse member selections (ie number of blocks being calculated).
    - If it doesn't run, then you know there is a problem in calculating one or more of the Accounts under EBITDA.  In which case, gradually narrow the range of Accounts to locate the Account or Accounts that trigger the issue.  Chances are there's a problem with the member formula

  • Attributes Issue in FIX Statement Calculation

    Hi All,
    I have issue with calculating FTE. I have a dimension call Employees and has an attributes (Full-Time / Part-Time). I'm trying to calculate FTE. Below is my code. It seems to be ignoring Attribute in the Fix Statement. when I run this calc script FTE for every employees is 0.5 since that's the last thing it does. If I comment out the second fix statement FTE for every employees is 1. I'm not sure why it's not it's ignoring my statement on the Attributes.
    FIX(@LEVMBRS("Time Periods",0),"FY11","WP","Working Version",@LEVMBRS("Measures",0),"USD",@LEVMBRS("Entities",0),@LEVMBRS("Sites",0),@LEVMBRS("Employees",0),@LEVMBRS("Job Codes",0),@LEVMBRS("Cost Centers",0),@LEVMBRS("SBU",0),@LEVMBRS("EE_Status",0),@ATTRIBUTE("Full-Time"))
    FTE(
    IF
    ("Base_Salary">0);
    "FTE"=1;
    ELSE
    "FTE"==#MISSING;
    ENDIF;
    ENDFIX;
    FIX(@LEVMBRS("Time Periods",0),"FY11","WP","Working Version",@LEVMBRS("Measures",0),"USD",@LEVMBRS("Entities",0),@LEVMBRS("Sites",0),@LEVMBRS("Employees",0),@LEVMBRS("Job Codes",0),@LEVMBRS("Cost Centers",0),@LEVMBRS("SBU",0),@LEVMBRS("EE_Status",0),@ATTRIBUTE("Part-Time"))
    FTE(
    IF
    ("Base_Salary">0);
    "FTE"=0.5;
    ELSE
    "FTE"==#MISSING;
    ENDIF;
    ENDFIX;
    Edited by: user8988798 on Mar 26, 2010 9:57 AM

    Having both @LEVMBRS("Employees",0) and @ATTRIBUTE("Full-Time") is your problem. You are saying give me all of the level zero members of employee and also give me the members that have Full time. Since attributes are tied to the base members you would just need @ATTRIBUTE("Full-Time") to get the full time employees

  • Error on boot: "STOP c0000135 unable to locate component csrsrv.dll not found reinstalling the application may fix the problem"

    I am running Windows Server 2003 R2 (I know it's old, I'm in the process of upgrading it now to 2012) on an old HP ProLiant server. It's worked for ages, but yesterday morning it booted up with the blue screen of death, saying:
    STOP c0000135 unable to locate component csrsrv.dll not found. Reinstalling the application may fix the problem.
    I have tried coping the file from C:\WINDOWS\ServicePackFiles\i386\csrsrv.dll to C:\WINDOWS\system32\ using a WS2003R2 recovery disk, but it still doesn't work. I'm not sure what to do now...
    I do have backups, but I'd prefer just to get this server back up and running so that I can continue to migration so that I can decommission it permanently and put it out to pasture...
    Any help and guidance is greatly appreciated.
    Thanks in advance!

    If copying the DLL does not help then I would recommend doing a system state restore from a backup.
    This posting is provided AS IS with no warranties or guarantees , and confers no rights.
    Ahmed MALEK
    My Website Link
    My Linkedin Profile
    My MVP Profile

Maybe you are looking for

  • How can I change the speed of a video clip?

    hi, I'm a new user of iMovie 08. I fail to find the function button that can make a video clip slow down or faster, such as change the speed to 60% of the normal speed,etc. I know iMovie 06 has this function,it's in video FX,duration,speed...but I ca

  • White light stays on during sleep mode.

    When my imac intel goes to sleep the white light blinks only for a short while and then stays on. Is this a problem? I have had this imac since Feb 06 and it just started doing this recently.

  • Snapshot too old errror

    Hi Team I have a string lets say by the name v_instr :='insert into temp values(:request_id,deptno)'; IF (l_record_count = 0) THEN -- For BV -- modified by skhairna on 12Jun2008, added order source CSCC+Ciber for Data validation qry_string:= 'select

  • Duplicate records in master data infoobject...how to delete it...pls help

    hi all, how to delete duplicate records in master data infoobject which has no requests because it is a direct update?

  • Why doesn't my backup drive appear in the Startup Disk selection window?

    I've been using SuperDuper! to backup my Mac HD to my internal Seagate drive. The Seagate is divided into Seagate1 and Seagate2. I backup to Seagate1. When I open the Startup Disk window from Preferences, only the Mac HD icon appears, highlighted, an