Remove zero in conversion file

Hi experts
Can you help me with a way to remove zero in conversion file, let me explain, I want to load transactional data from BW but I have a charateristic with 10 character but in BPC side my dimension have 8 character, technicaly in BW the file is like this:
BW
0012345678
BPC
12345678
How can I remove left zeros for the characteristic?
any input will be apreciated.
regards
Lucio Martinez!!

Hi Lucio,
I will present my scenario. I want to remove the leading Zeros from the Customer ID and while transferring the values in BPC, I want to prefix the value (after removing the zeros) with 'C_'. eg: 000012345 so I want to transfer that as 'C_12345'.
In transformation file, I had done the mapping as
ID=*str(C_)+ID
which works fine, if I dont have to remove the zeros. I added code in the Conversion file
EXTERNAL                      INTERNAL
                             js:PARSEINT(%external%)
But it is giving me an error message that validation has failed for transformation file and it is giving a message that:
Line 1 :Detected duplicate member ID 'NaN' .. Line 3560 :Detected duplicate member ID 'NaN'
Can you please help me out in this situation? Any suggestions how can I achieve this?
Your replies will be much appreciated.
Thanks,
Abhishek

Similar Messages

  • Windows samba share shows "zero KB" for file size....

    Upgraded, clean install, to leopard and now I see "Zero KB" for file size on my Windows Home Server samba shares. Before the upgrade all that info was displayed but afterwards that info is gone. The only changed on my network was upgrading to Leopard. My linux samba server still works perfectly with 10.5 but the windows samba shares are not. I can browse, mount and copy files to and from the windows samba shares but the file size info isn't displayed. The file size isn't even displayed when I "Get Info" on a file. Previously using 10.4 all was working perfectly and all info was displayed and or was available if I wanted it. Not sure if it is something to do with how Windows Home Server handles samba or if it is how Leopard handles windows samba shares. No settings were changed on my network from when I was running 10.4. The only change on my home network/hardware has been upgrading to Leopard! No other changes were made to any servers or computers that were previously working perfectly with 10.4. Other than this "Zero KB" issue all has gone quite smoothly.

    I removed the . (and moved the directory to match) but I still have the same issue.
    Here's the smbd.log after a rebooting and then restarting samba:
    [2010/05/04 07:25:41.262266, 0] smbd/server.c:500(smbd_open_one_socket)
    smbd_open_once_socket: open_socket_in: Address already in use
    [2010/05/04 07:25:41.266578, 0] smbd/server.c:500(smbd_open_one_socket)
    smbd_open_once_socket: open_socket_in: Address already in use
    [2010/05/04 07:26:01.041577, 1] smbd/server.c:267(remove_child_pid)
    Scheduled cleanup of brl and lock database after unclean shutdown
    [2010/05/04 07:26:21.051370, 1] smbd/server.c:240(cleanup_timeout_fn)
    Cleaning up brl and lock database after unclean shutdown
    [2010/05/04 07:26:45.716653, 1] smbd/server.c:267(remove_child_pid)
    Scheduled cleanup of brl and lock database after unclean shutdown
    [2010/05/04 07:36:46.016675, 0] smbd/server.c:500(smbd_open_one_socket)
    smbd_open_once_socket: open_socket_in: Address already in use
    [2010/05/04 07:36:46.017386, 0] smbd/server.c:500(smbd_open_one_socket)
    smbd_open_once_socket: open_socket_in: Address already in use
    And log.nmbd:
    [2010/05/04 07:25:41, 0] nmbd/nmbd.c:857(main)
    nmbd version 3.5.2 started.
    Copyright Andrew Tridgell and the Samba Team 1992-2010
    [2010/05/04 07:26:48.718046, 0] nmbd/nmbd.c:71(terminate)
    Got SIGTERM: going down...
    [2010/05/04 07:27:26, 0] nmbd/nmbd.c:857(main)
    nmbd version 3.5.2 started.
    Copyright Andrew Tridgell and the Samba Team 1992-2010
    [2010/05/04 07:27:26.544934, 0] nmbd/nmbd.c:696(open_sockets)
    [2010/05/04 07:36:46, 0] nmbd/nmbd.c:857(main)
    nmbd version 3.5.2 started.
    Copyright Andrew Tridgell and the Samba Team 1992-2010

  • Formula Field in Conversion File

    Hi,
    I have a scenario where I need to multiply the values of accounts of a particular entity (say entity External "9000", Internal "EntityA"). I have created a Conversion File as shown below
    External      Internal       Formula
    9000           EntityA       Value*0.371996
    Now when I upload the data file using this conversion file the data of 9000 directly goes into EntityA without the formula being applied. Why is that so? What is then the use of the Formula Column?
    Thanks,
    Prasanth.

    Hi Patrick,
    I did what you said. I added the following in the options section of the transformation file
    CONVERTAMOUNTWDIM=LEGALENTITY
    In the Conversion section I already had the reference to the conversion file as follows
    Legalentity=entityconversion.xls
    I add the second line
    Amount=entityconversion.xls
    When I process the transformation file with a datafile I get the following error messaga
    "Index was outside the bounds of the array"
    When I remove the line Amount=entityconversion.xls from the conversion section, the transformation file gets validated succesfully but the Formula value is not getting applied.
    Any idea what could be wrong?
    Thanks,
    Prasanth.

  • Removing zeros on the excel download

    I wanted to know how we can remove zeros from the kebtr at the excel download through ALV without converting it to a type c. for now I am converting it to type c and then validating it this way :
    if tb_main-kebet = 0.
        tb_main1-kebtr = space.
      endif.
    But because of this the formats are not ok and user insists that it should be a numberic field for him.
    Thank you very much.

    Hello Kris,
    I am able to see the data properly in XLS File.
    Use fieldcatlog no_zero = 'X'.
    Now run the transaction -> click on XL Icon ( if you do not get the data properly using navigation),now see the results here.
    you can save same xls file into local machine too.
    Thanks
    Seshu

  • Removing zeros at the begining

    hi,
    How to remove zeros at the begining of a variable value irrespective of the length of that number
    for example,
    data:var type int4.
    var = '0000012434'.
    var= '0003423365'
    var= '0436509843'.
    I want to remove all zeros at the beginning.
    the purpose is I am passing this to a function module which can not allow intial zeros.
    Please help me with code

    Hi,
    CONVERSION_EXIT_ALPHA_OUTPUT
    converts any number with zeroes right into a simple integer.
    Ex:
    '00001234'-->1234
    CONVERSION_EXIT_ALPHA_INPUT
    converts any number into a string fill with zeroes, with the number at the extreme right
    ALPHA conversion is used especially with account numbers. During conversion from the external to the internal format, the system checks to see if input in the INPUT field is purely numeric, that is, if this input consists only of numbers, possibly with spaces before and after them. If this is the case, then the number string is inserted right- justified in the display field OUTPUT and all spaces to the left of the value are filled with zeroes ('0'). If the input is not purely numeric, it is inserted in the display field from left to right and all extra spaces are filled with blanks.
    Example:
    (Input field and output field are both eight characters in length)
    '1234 ' --> '00001234'
    Regards,
    Omkaram.

  • [svn:fx-trunk] 11058: Removed three vestigial TLF files from the trunk.

    Revision: 11058
    Author:   [email protected]
    Date:     2009-10-21 13:39:51 -0700 (Wed, 21 Oct 2009)
    Log Message:
    Removed three vestigial TLF files from the trunk. They had been removed from TLF but I hadn't realized they were gone.
    QE notes: None
    Doc notes: SG, this should fix your ASDoc build problem
    Bugs: None
    Reviewer: None
    Tests run: ant checkintests
    Is noteworthy for integration: No
    Removed Paths:
        flex/sdk/trunk/frameworks/projects/textLayout/textLayout_conversion/src/flashx/textLayout /conversion/FXGExporter.as
        flex/sdk/trunk/frameworks/projects/textLayout/textLayout_conversion/src/flashx/textLayout /conversion/FXGImporter.as
        flex/sdk/trunk/frameworks/projects/textLayout/textLayout_edit/manifest.xml

    Camuzo, please go to the forum and just un-subscribe yourself.
    each of your emails is getting sent to everyone who does want to use this forum
    just sending messages is not going to do anything.
    GO to this url:
    http://forums.adobe.com/community/opensource/flexsdk
    and simply tell your account not to be emailed.
    But, please kindly stop just sending us all your messages.

  • In a Conversion file, Using Java Script - IF statement with Greater,Less definitions

    Hail to All Gurus,
    Well, I've been trying to make a conversion file by using if statement of Java script with < , > definitions. unfortunately i got "Evolution error" over and over again.
    Actually i want to convert all dates before 2009 as 2008.12. And the dates which is greater than 2009 will be converted as they are (e.g. 2009.01 or 2010.02 etc.).
    Code is:
    js:if(%external%.toString().substring(0,4)<"200900"){"2008.12"}else{%external%.toString().substring(0,4) + "." + %external%.toString().substring(4,6)}
    SAP EPM version 10.0 SP15 Patch 2
    Build 8586
    Thanks for your help in advance

    Sadi,
    You can write if Statement in transformation not conversion.
    Look at this docs,
    How to Import Master Data and Hierarchies into SAP BusinessObjects BPC 7.5 from SAP NetWeaver BW
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c02d0b47-3e54-2d10-0eb7-d722b633b72e?QuickLink=index&…
    Thanks

  • Mail will not open for me or rather if it does it hangs and then crashes. I have removed the envelope index file and allowed mail to rebuild and it still crashes! Any ideas would be greatly appreciated

    This has to be the most vexing problem I've ever experienced with Mail. I removed the envelope index file and allowed mail ro rebuild the index but I still get an immediate crash and the following message! I sure hope someone can help with this....
    Process:         Mail [27577]
    Path:            /Applications/Mail.app/Contents/MacOS/Mail
    Identifier:      com.apple.mail
    Version:         5.2 (1257)
    Build Info:      Mail-1257000000000000~1
    Code Type:       X86-64 (Native)
    Parent Process:  launchd [359]
    Date/Time:       2012-04-18 09:38:26.123 -0700
    OS Version:      Mac OS X 10.7.3 (11D50)
    Report Version:  9
    Interval Since Last Report:          231271 sec
    Crashes Since Last Report:           40
    Per-App Interval Since Last Report:  150068 sec
    Per-App Crashes Since Last Report:   12
    Anonymous UUID:                      D6DBE860-CD28-465A-85A9-282E7BD95725
    Crashed Thread:  8  com.apple.audio.IOThread.client
    Exception Type:  EXC_BAD_INSTRUCTION (SIGILL)
    Exception Codes: 0x0000000000000001, 0x0000000000000000
    Application Specific Information:
    objc[27577]: garbage collection is OFF
    Thread 0:: Dispatch queue: com.apple.main-thread
    0   libsystem_kernel.dylib            0x0000000109322ad2 __open + 10
    1   com.apple.CoreFoundation          0x000000010681ec12 _CFReadBytesFromFile + 146
    2   com.apple.CoreFoundation          0x000000010681e412 CFURLCreateDataAndPropertiesFromResource + 306
    3   com.apple.CoreFoundation          0x000000010683c530 CFBundleCopyLocalizedString + 512
    4   com.apple.Foundation              0x0000000106b66656 -[NSBundle localizedStringForKey:value:table:] + 72
    5   com.apple.mail                    0x00000001044c8fef 0x1044c3000 + 24559
    6   com.apple.mail                    0x00000001044c664a 0x1044c3000 + 13898
    7   com.apple.Foundation              0x0000000106b38d32 __-[NSNotificationCenter addObserver:selector:name:object:]_block_invoke_1 + 47
    8   com.apple.CoreFoundation          0x0000000106846aaa _CFXNotificationPost + 2634
    9   com.apple.Foundation              0x0000000106b24fe7 -[NSNotificationCenter postNotificationName:object:userInfo:] + 65
    10  com.apple.mail                    0x00000001044c4ac1 0x1044c3000 + 6849
    11  com.apple.AppKit                  0x000000010758760f -[NSApplication _postDidFinishNotification] + 212
    12  com.apple.AppKit                  0x0000000107587375 -[NSApplication _sendFinishLaunchingNotification] + 78
    13  com.apple.AppKit                  0x000000010758603c -[NSApplication(NSAppleEventHandling) _handleAEOpenEvent:] + 242
    14  com.apple.AppKit                  0x0000000107585d9d -[NSApplication(NSAppleEventHandling) _handleCoreEvent:withReplyEvent:] + 330
    15  com.apple.CoreFoundation          0x0000000106890591 -[NSObject performSelector:withObject:withObject:] + 65
    16  com.apple.Foundation              0x0000000106b5b7eb __-[NSAppleEventManager setEventHandler:andSelector:forEventClass:andEventID:]_block_invoke_1 + 101
    17  com.apple.Foundation              0x0000000106b5a772 -[NSAppleEventManager dispatchRawAppleEvent:withRawReply:handlerRefCon:] + 283
    18  com.apple.Foundation              0x0000000106b5a600 _NSAppleEventManagerGenericHandler + 105
    19  com.apple.AE                      0x000000010b354c25 aeDispatchAppleEvent(AEDesc const*, AEDesc*, unsigned int, unsigned char*) + 200
    20  com.apple.AE                      0x000000010b354b03 _ZL25dispatchEventAndSendReplyPK6AEDescPS_ + 38
    21  com.apple.AE                      0x000000010b3549f7 aeProcessAppleEvent + 250
    22  com.apple.HIToolbox               0x000000010d947af9 AEProcessAppleEvent + 102
    23  com.apple.AppKit                  0x00000001075831a9 _DPSNextEvent + 1247
    24  com.apple.AppKit                  0x0000000107582861 -[NSApplication nextEventMatchingMask:untilDate:inMode:dequeue:] + 135
    25  com.apple.AppKit                  0x000000010757f19d -[NSApplication run] + 470
    26  com.apple.AppKit                  0x00000001077fdb88 NSApplicationMain + 867
    27  com.apple.mail                    0x000000010459b014 0x1044c3000 + 884756
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0   libsystem_kernel.dylib            0x00000001093237e6 kevent + 10
    1   libdispatch.dylib                 0x00000001090fa5be _dispatch_mgr_invoke + 923
    2   libdispatch.dylib                 0x00000001090f914e _dispatch_mgr_thread + 54
    Thread 2:
    0   libsystem_kernel.dylib            0x0000000109323dae setxattr + 10
    1   com.apple.MessageFramework        0x0000000105759351 +[SqliteHandle newHandleIsWriter:] + 156
    2   com.apple.MessageFramework        0x0000000105758f6b +[Library _checkOutDBHandleForWriting:isPrivileged:] + 636
    3   com.apple.MessageFramework        0x0000000105757dd4 +[Library executeBlock:isWriter:useTransaction:isPrivileged:] + 494
    4   com.apple.MessageFramework        0x00000001058aeed5 +[Library addFeed:forMailbox:] + 125
    5   com.apple.MessageFramework        0x0000000105774c74 -[RSSLibraryStore setFeedURL:needsSave:] + 222
    6   com.apple.MessageFramework        0x00000001057739c2 -[RSSLibraryStore feedURL] + 232
    7   com.apple.MessageFramework        0x000000010577229f -[RSSAccount _validateRSSMailboxes:] + 312
    8   com.apple.Foundation              0x0000000106b7c74e -[NSThread main] + 68
    9   com.apple.Foundation              0x0000000106b7c6c6 __NSThread__main__ + 1575
    10  libsystem_c.dylib                 0x00000001091d88bf _pthread_start + 335
    11  libsystem_c.dylib                 0x00000001091dbb75 thread_start + 13
    Thread 3:: com.apple.CFSocket.private
    0   libsystem_kernel.dylib            0x0000000109322df2 __select + 10
    1   com.apple.CoreFoundation          0x000000010687bcdb __CFSocketManager + 1355
    2   libsystem_c.dylib                 0x00000001091d88bf _pthread_start + 335
    3   libsystem_c.dylib                 0x00000001091dbb75 thread_start + 13
    Thread 4:
    0   libsystem_kernel.dylib            0x0000000109323192 __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x00000001091da594 _pthread_wqthread + 758
    2   libsystem_c.dylib                 0x00000001091dbb85 start_wqthread + 13
    Thread 5:: -[LocalAccount _synchronizeMailboxListWithFileSystem]  Dispatch queue: com.apple.root.default-overcommit-priority
    0   libsystem_kernel.dylib            0x0000000109322ad2 __open + 10
    1   com.apple.Foundation              0x0000000106b30c59 _NSReadBytesFromFileWithExtendedAttributes + 210
    2   com.apple.Foundation              0x0000000106b30b7e _NSReadBytesFromFile + 47
    3   com.apple.Foundation              0x0000000106b30ad3 -[NSData(NSData) initWithContentsOfFile:] + 63
    4   com.apple.Foundation              0x0000000106b30a35 +[NSDictionary(NSDictionary) newWithContentsOf:immutable:] + 107
    5   com.apple.CoreFoundation          0x0000000106876a14 -[__NSPlaceholderDictionary initWithContentsOfFile:] + 100
    6   com.apple.MessageFramework        0x00000001057e3e8a -[MailAccount(Internal) _loadEntriesFromFileSystemPath:parent:] + 1317
    7   com.apple.MessageFramework        0x00000001057e35d0 -[MailAccount(Internal) _synchronizeMailboxListWithFileSystemBeforeImport:] + 389
    8   com.apple.CoreFoundation          0x000000010688ff4c __invoking___ + 140
    9   com.apple.CoreFoundation          0x000000010688fde4 -[NSInvocation invoke] + 132
    10  com.apple.MessageFramework        0x0000000105778408 -[MonitoredInvocation invoke] + 196
    11  com.apple.MessageFramework        0x0000000105754f19 -[ThrowingInvocationOperation main] + 33
    12  com.apple.MessageFramework        0x0000000105754ebf -[_MFInvocationOperation main] + 449
    13  com.apple.Foundation              0x0000000106b6a6d8 -[__NSOperationInternal start] + 705
    14  com.apple.Foundation              0x0000000106b7d936 ____NSOQSchedule_block_invoke_2 + 124
    15  libdispatch.dylib                 0x00000001090f88ba _dispatch_call_block_and_release + 18
    16  libdispatch.dylib                 0x00000001090f9799 _dispatch_worker_thread2 + 255
    17  libsystem_c.dylib                 0x00000001091da3da _pthread_wqthread + 316
    18  libsystem_c.dylib                 0x00000001091dbb85 start_wqthread + 13
    Thread 6:
    0   libsystem_kernel.dylib            0x0000000109323192 __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x00000001091da594 _pthread_wqthread + 758
    2   libsystem_c.dylib                 0x00000001091dbb85 start_wqthread + 13
    Thread 7:
    0   libsystem_kernel.dylib            0x000000010932167a mach_msg_trap + 10
    1   libsystem_kernel.dylib            0x0000000109320d71 mach_msg + 73
    2   com.apple.CoreFoundation          0x000000010682a6fc __CFRunLoopServiceMachPort + 188
    3   com.apple.CoreFoundation          0x0000000106832e64 __CFRunLoopRun + 1204
    4   com.apple.CoreFoundation          0x0000000106832676 CFRunLoopRunSpecific + 230
    5   com.apple.Foundation              0x0000000106b2df9f -[NSRunLoop(NSRunLoop) runMode:beforeDate:] + 267
    6   com.apple.Foundation              0x0000000106b2de8b -[NSRunLoop(NSRunLoop) run] + 62
    7   com.apple.MessageFramework        0x000000010577577d -[RSSInterchange _runManager] + 1345
    8   com.apple.Foundation              0x0000000106b7c74e -[NSThread main] + 68
    9   com.apple.Foundation              0x0000000106b7c6c6 __NSThread__main__ + 1575
    10  libsystem_c.dylib                 0x00000001091d88bf _pthread_start + 335
    11  libsystem_c.dylib                 0x00000001091dbb75 thread_start + 13
    Thread 8 Crashed:: com.apple.audio.IOThread.client
    0   com.apple.audio.toolbox.AudioToolbox    0x000000010d5eeef2 CABufferList::AllocateBuffersAndCopyFrom(unsigned int, CABufferList*, CABufferList*) + 0
    1   com.apple.audio.toolbox.AudioToolbox    0x000000010d5ebb8b BufferedAudioConverter::GetInputBytes(unsigned int, unsigned int&, CABufferList const*&) + 183
    2   com.apple.audio.toolbox.AudioToolbox    0x000000010d5eba9f CBRConverter::RenderOutput(CABufferList*, unsigned int, unsigned int&, AudioStreamPacketDescription*) + 185
    3   com.apple.audio.toolbox.AudioToolbox    0x000000010d5eb865 BufferedAudioConverter::FillBuffer(unsigned int&, AudioBufferList&, AudioStreamPacketDescription*) + 307
    4   com.apple.audio.toolbox.AudioToolbox    0x000000010d5eb995 AudioConverterChain::RenderOutput(CABufferList*, unsigned int, unsigned int&, AudioStreamPacketDescription*) + 105
    5   com.apple.audio.toolbox.AudioToolbox    0x000000010d5eb865 BufferedAudioConverter::FillBuffer(unsigned int&, AudioBufferList&, AudioStreamPacketDescription*) + 307
    6   com.apple.audio.toolbox.AudioToolbox    0x000000010d5eb5fd AudioConverterFillComplexBuffer + 237
    7   com.apple.AppKit                  0x0000000107aeaf89 AudioDataProducerCallback + 118
    8   com.apple.audio.units.Components    0x00000001178a5f6f AUConverterBase::RenderBus(unsigned int&, AudioTimeStamp const&, unsigned int, unsigned int) + 381
    9   com.apple.audio.units.Components    0x00000001178a5544 AUBase::DoRenderBus(unsigned int&, AudioTimeStamp const&, unsigned int, AUOutputElement*, unsigned int, AudioBufferList&) + 128
    10  com.apple.audio.units.Components    0x00000001178a29cd AUBase::DoRender(unsigned int&, AudioTimeStamp const&, unsigned int, unsigned int, AudioBufferList&) + 377
    11  com.apple.audio.units.Components    0x00000001178a9c13 AUHAL::AUIOProc(unsigned int, AudioTimeStamp const*, AudioBufferList const*, AudioTimeStamp const*, AudioBufferList*, AudioTimeStamp const*, void*) + 2087
    12  com.apple.audio.CoreAudio         0x000000010dde59fa HALC_ProxyIOContext::IOWorkLoop() + 2058
    13  com.apple.audio.CoreAudio         0x000000010dde5151 HALC_ProxyIOContext::IOThreadEntry(void*) + 73
    14  com.apple.audio.CoreAudio         0x000000010dde500c HALB_IOThread::Entry(void*) + 78
    15  libsystem_c.dylib                 0x00000001091d88bf _pthread_start + 335
    16  libsystem_c.dylib                 0x00000001091dbb75 thread_start + 13
    Thread 9:
    0   libsystem_kernel.dylib            0x0000000109323192 __workq_kernreturn + 10
    1   libsystem_c.dylib                 0x00000001091da594 _pthread_wqthread + 758
    2   libsystem_c.dylib                 0x00000001091dbb85 start_wqthread + 13
    Thread 8 crashed with X86 Thread State (64-bit):
      rax: 0x0000000000000000  rbx: 0x0000000000000800  rcx: 0x00007fd394055e80  rdx: 0x00007fd385dd3130
      rdi: 0x00007fd385dd3100  rsi: 0x0000000000000800  rbp: 0x0000000115a208d0  rsp: 0x0000000115a20888
       r8: 0x0000000000000001   r9: 0x00007fd385dd3160  r10: 0x0000000000000087  r11: 0x00007fd387a5c600
      r12: 0x00007fd3943eeb90  r13: 0x000000000000021c  r14: 0x00007fd3943eeab0  r15: 0x00007fd3943eeb98
      rip: 0x000000010d5eeef2  rfl: 0x0000000000010283  cr2: 0x000000010d5eeef2
    Logical CPU: 1
    Binary Images:
           0x1044c3000 -        0x104875fff  com.apple.mail (5.2 - 1257) <BB2A1DE3-1A70-353E-B418-2BAB1C0D4E51> /Applications/Mail.app/Contents/MacOS/Mail
           0x104971000 -        0x104971fff +GlimsLoaderMinimal.dylib (??? - ???) <951A7DBD-1ACB-0D85-E99B-871D1708BBF5> /Library/Frameworks/GlimsAdditions.framework/Library/GlimsLoaderMinimal.dylib
           0x104974000 -        0x104c97ff7  com.apple.AddressBook.framework (6.1 - 1083) <9C23C164-B9E1-3F80-83F4-C027AF282DE6> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
           0x104e8d000 -        0x104f78fff  com.apple.backup.framework (1.3.1 - 1.3.1) <C933E52C-5BA6-386D-9B6A-8F98D8142A6F> /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
           0x104ff0000 -        0x10521bff7  com.apple.CalendarStore (5.0.2 - 1166) <053C1171-5E43-353B-8D3C-678C4D4EC7D0> /System/Library/Frameworks/CalendarStore.framework/Versions/A/CalendarStore
           0x105351000 -        0x105353fff  apop.so (??? - ???) <B40CE86C-1757-3261-848C-F166F3D513EA> /usr/lib/sasl2/apop.so
           0x105357000 -        0x105357fff  com.apple.Carbon (153 - 153) <AF0F9910-E3C3-3922-AA92-A39000655E0F> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
           0x10535d000 -        0x10535dfff  com.apple.Cocoa (6.6 - ???) <7EC4D759-B2A6-3A99-AC75-809FED1500C6> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
           0x105361000 -        0x1053c7ff7  com.apple.coreui (1.2.1 - 165.3) <378C9221-ADE6-36D9-9944-F33AE6904E4F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
           0x105408000 -        0x105431fff  com.apple.datadetectors (3.2 - 172.5) <DCCD9903-0D01-3956-B4EB-F91CBF2C9414> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetect ors
           0x10544d000 -        0x10544ffff  libanonymous.2.so (??? - ???) <99136B94-8BE0-3563-9E2A-9C826971B6E9> /usr/lib/sasl2/libanonymous.2.so
           0x105453000 -        0x1054b4fff  com.apple.ExchangeWebServices (2.1 - 125) <63CEE24A-FF2B-3787-ABFB-B60E24A859CE> /System/Library/PrivateFrameworks/ExchangeWebServices.framework/Versions/A/Exch angeWebServices
           0x105548000 -        0x1055d6ff7  com.apple.iLifeMediaBrowser (2.6.2 - 502.2.12) <C9DB1BC7-67F3-3B7D-B508-27BA86715E15> /System/Library/PrivateFrameworks/iLifeMediaBrowser.framework/Versions/A/iLifeM ediaBrowser
           0x105637000 -        0x105639fff  login.so (??? - ???) <48CD069F-68F5-32C4-BFAC-AC0EFB7B9489> /usr/lib/sasl2/login.so
           0x10563d000 -        0x105655ff7  com.apple.iChat.InstantMessage (6.0 - 835) <69CD03BA-7F7A-33C5-9302-F28C029A1AEF> /System/Library/Frameworks/InstantMessage.framework/Versions/A/InstantMessage
           0x10566c000 -        0x105693fff  com.apple.framework.internetaccounts (1.2 - 3) <A3FFB4BD-77BE-388F-ADB1-9CA80A68B1F2> /System/Library/PrivateFrameworks/InternetAccounts.framework/Versions/A/Interne tAccounts
           0x1056b8000 -        0x105722ff7  com.apple.framework.IOKit (2.0 - ???) <EEEB42FD-E3E1-3A94-A771-B1993B694F17> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
           0x105752000 -        0x105aacff7  com.apple.MessageFramework (5.2 - 1257) <79752F7B-5663-3AB0-BE1F-013F605E39DB> /System/Library/Frameworks/Message.framework/Versions/B/Message
           0x105c67000 -        0x105c8eff7  com.apple.PerformanceAnalysis (1.10 - 10) <DD87C994-66D6-330A-BAF9-AB86BE125A62> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/Perf ormanceAnalysis
           0x105cab000 -        0x105e35ff7  com.apple.QTKit (7.7.1 - 2315) <BFC33B70-34F2-3940-A14A-3C51036589F0> /System/Library/Frameworks/QTKit.framework/Versions/A/QTKit
           0x105f3b000 -        0x105f3bfff  com.apple.quartzframework (1.5 - 1.5) <2C13AE76-C86B-3D48-A583-121689190F74> /System/Library/Frameworks/Quartz.framework/Versions/A/Quartz
           0x105f40000 -        0x106222fff  com.apple.security (7.0 - 55110) <252F9E04-FF8A-3EA7-A38E-51DD0653663C> /System/Library/Frameworks/Security.framework/Versions/A/Security
           0x10633f000 -        0x106374fff  com.apple.securityinterface (5.0 - 55007) <D46E73F4-D8E9-3F53-A083-B9D71ED74492> /System/Library/Frameworks/SecurityInterface.framework/Versions/A/SecurityInter face
           0x1063a6000 -        0x1063fdfff  com.apple.Suggestions (1.1 - 85.1) <DE511C42-D2F2-309C-80EE-53862245DE22> /System/Library/PrivateFrameworks/Suggestions.framework/Versions/A/Suggestions
           0x10643e000 -        0x1065c8ff7  com.apple.WebKit (7534.53 - 7534.53.11) <2969964C-2759-3407-9EBB-C1304A556755> /System/Library/Frameworks/WebKit.framework/Versions/A/WebKit
           0x1066b0000 -        0x1066ddfe7  libSystem.B.dylib (159.1.0 - compatibility 1.0.0) <7BEBB139-50BB-3112-947A-F4AA168F991C> /usr/lib/libSystem.B.dylib
           0x1066ee000 -        0x1067d2e5f  libobjc.A.dylib (228.0.0 - compatibility 1.0.0) <871E688B-CF57-3BC7-80D6-F6476DFF109B> /usr/lib/libobjc.A.dylib
           0x1067ea000 -        0x1067ecfff  libplain.2.so (??? - ???) <C98A873A-4373-3E3A-8257-D9BB5F857C85> /usr/lib/sasl2/libplain.2.so
           0x1067f1000 -        0x1067f1fff  com.apple.CoreServices (53 - 53) <043C8026-8EDD-3241-B090-F589E24062EF> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
           0x1067f4000 -        0x1067f6fff  smb_nt.so (??? - ???) <CA57451C-A407-365D-A953-185167177CE8> /usr/lib/sasl2/smb_nt.so
           0x1067fa000 -        0x1069cefff  com.apple.CoreFoundation (6.7.1 - 635.19) <57B77925-9065-38C9-A05B-02F4F9ED007C> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
           0x106b1c000 -        0x106b1cfff  com.apple.ApplicationServices (41 - 41) <89B6AD5B-5C75-3E83-8C2B-AA7F4C55E400> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Application Services
           0x106b22000 -        0x106e3bff7  com.apple.Foundation (6.7.1 - 833.24) <6D4E6F93-64EF-3D41-AE80-2BB10E2E6323> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
           0x10701f000 -        0x1071befff  com.apple.QuartzCore (1.7 - 270.2) <F2CCDEFB-DE43-3E32-B242-A22C82617186> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
           0x107266000 -        0x10748efe7  com.apple.CoreData (104.1 - 358.13) <F1DA3110-C4DF-3F0A-A057-AEE78DE8C99D> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
           0x10757a000 -        0x10817efff  com.apple.AppKit (6.7.3 - 1138.32) <A9EB81C6-C519-3F29-89F1-42C3E8930281> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
           0x108801000 -        0x108801ff7 +com.finderpop.finderpop-osax (2.4.1 - 2.4.1) <D6F0281B-DC2F-EC75-6EB5-222DB542706C> /Library/ScriptingAdditions/FinderPopOsax.osax/Contents/MacOS/FinderPopOsax
           0x108806000 -        0x108879fff  libstdc++.6.dylib (52.0.0 - compatibility 7.0.0) <6BDD43E4-A4B1-379E-9ED5-8C713653DFF2> /usr/lib/libstdc++.6.dylib
           0x1088dd000 -        0x1088e9fff  com.apple.DirectoryService.Framework (10.7 - 146) <65C78AE3-89B8-3372-8359-31FD520781D5> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
           0x1088f5000 -        0x108930fff  com.apple.LDAPFramework (3.1 - 120.2) <19B714EB-104B-38D2-9ADD-155F71F6844B> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
           0x10893e000 -        0x108940fff  libLatin2Converter.dylib (54.0.0 - compatibility 1.0.0) <ECA6F3B5-29A1-3677-9916-E1BA0BC54548> /System/Library/CoreServices/Encodings/libLatin2Converter.dylib
           0x108944000 -        0x108990ff7  com.apple.SystemConfiguration (1.11.2 - 1.11) <A14F3583-9CC0-397D-A50E-17217075953F> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
           0x1089ba000 -        0x1089bbff7  libArabicConverter.dylib (54.0.0 - compatibility 1.0.0) <C12B0DD5-9808-3E48-AAEF-F738A06DA862> /System/Library/CoreServices/Encodings/libArabicConverter.dylib
           0x1089c0000 -        0x108accfff  libcrypto.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <3A8E1F89-5E26-3C8B-B538-81F5D61DBF8A> /usr/lib/libcrypto.0.9.8.dylib
           0x108b38000 -        0x108b3dfff  com.apple.OpenDirectory (10.7 - 146) <A674AB55-6E3D-39AE-9F9B-9865D0193020> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
           0x108b4c000 -        0x108b53fff  com.apple.NetFS (4.0 - 4.0) <433EEE54-E383-3505-9154-45B909FD3AF0> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
           0x108b5f000 -        0x108b60fff  libDiagnosticMessagesClient.dylib (??? - ???) <3DCF577B-F126-302B-BCE2-4DB9A95B8598> /usr/lib/libDiagnosticMessagesClient.dylib
           0x108b69000 -        0x108d6bfff  libicucore.A.dylib (46.1.0 - compatibility 1.0.0) <38CD6ED3-C8E4-3CCD-89AC-9C3198803101> /usr/lib/libicucore.A.dylib
           0x108e01000 -        0x108e07ff7  com.apple.phonenumbers (1.0 - 47) <BC6C2FE2-99C0-3AD6-AA9C-C88780FFFCCF> /System/Library/PrivateFrameworks/PhoneNumbers.framework/Versions/A/PhoneNumber s
           0x108e10000 -        0x108e20ff7  com.apple.opengl (1.7.6 - 1.7.6) <C168883D-9BC5-3C38-9937-42852D719718> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
           0x108e2b000 -        0x108ecdff7  com.apple.securityfoundation (5.0 - 55107) <6C2E7362-CB11-3CBD-BB1C-348E4B10F25A> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoun dation
           0x108f23000 -        0x108f71fff  libauto.dylib (??? - ???) <D8AC8458-DDD0-3939-8B96-B6CED81613EF> /usr/lib/libauto.dylib
           0x108f8a000 -        0x108fffff7  libc++.1.dylib (19.0.0 - compatibility 1.0.0) <C0EFFF1B-0FEB-3F99-BE54-506B35B555A9> /usr/lib/libc++.1.dylib
           0x10905c000 -        0x109067ff7  libc++abi.dylib (14.0.0 - compatibility 1.0.0) <8FF3D766-D678-36F6-84AC-423C878E6D14> /usr/lib/libc++abi.dylib
           0x109076000 -        0x10907bfff  libcache.dylib (47.0.0 - compatibility 1.0.0) <1571C3AB-BCB2-38CD-B3B2-C5FC3F927C6A> /usr/lib/system/libcache.dylib
           0x109086000 -        0x1090c8ff7  libcommonCrypto.dylib (55010.0.0 - compatibility 1.0.0) <BB770C22-8C57-365A-8716-4A3C36AE7BFB> /usr/lib/system/libcommonCrypto.dylib
           0x1090d6000 -        0x1090dbfff  libcompiler_rt.dylib (6.0.0 - compatibility 1.0.0) <98ECD5F6-E85C-32A5-98CD-8911230CB66A> /usr/lib/system/libcompiler_rt.dylib
           0x1090e8000 -        0x1090effff  libcopyfile.dylib (85.1.0 - compatibility 1.0.0) <0AB51EE2-E914-358C-AC19-47BC024BDAE7> /usr/lib/system/libcopyfile.dylib
           0x1090f7000 -        0x109105fff  libdispatch.dylib (187.7.0 - compatibility 1.0.0) <712AAEAC-AD90-37F7-B71F-293FF8AE8723> /usr/lib/system/libdispatch.dylib
           0x10911d000 -        0x10911efff  libdnsinfo.dylib (395.10.0 - compatibility 1.0.0) <2301DE05-6950-3AFF-A8A6-DA76D4C079B5> /usr/lib/system/libdnsinfo.dylib
           0x109129000 -        0x10912dfff  libdyld.dylib (195.6.0 - compatibility 1.0.0) <FFC59565-64BD-3B37-90A4-E2C3A422CFC1> /usr/lib/system/libdyld.dylib
           0x10913a000 -        0x10913afff  libkeymgr.dylib (23.0.0 - compatibility 1.0.0) <61EFED6A-A407-301E-B454-CD18314F0075> /usr/lib/system/libkeymgr.dylib
           0x10913e000 -        0x109148ff7  liblaunch.dylib (392.36.0 - compatibility 1.0.0) <CB8B5808-80C0-318E-AE12-96CA916442FE> /usr/lib/system/liblaunch.dylib
           0x109151000 -        0x109157fff  libmacho.dylib (800.0.0 - compatibility 1.0.0) <165514D7-1BFA-38EF-A151-676DCD21FB64> /usr/lib/system/libmacho.dylib
           0x109160000 -        0x109164fff  libmathCommon.A.dylib (2026.0.0 - compatibility 1.0.0) <FF83AFF7-42B2-306E-90AF-D539C51A4542> /usr/lib/system/libmathCommon.A.dylib
           0x10916d000 -        0x10916ffff  libquarantine.dylib (36.2.0 - compatibility 1.0.0) <48656562-FF20-3B55-9F93-407ACA7341C0> /usr/lib/system/libquarantine.dylib
           0x109175000 -        0x109176ff7  libremovefile.dylib (21.1.0 - compatibility 1.0.0) <739E6C83-AA52-3C6C-A680-B37FE2888A04> /usr/lib/system/libremovefile.dylib
           0x10917e000 -        0x10917fff7  libsystem_blocks.dylib (53.0.0 - compatibility 1.0.0) <8BCA214A-8992-34B2-A8B9-B74DEACA1869> /usr/lib/system/libsystem_blocks.dylib
           0x10918a000 -        0x109267fef  libsystem_c.dylib (763.12.0 - compatibility 1.0.0) <FF69F06E-0904-3C08-A5EF-536FAFFFDC22> /usr/lib/system/libsystem_c.dylib
           0x1092a7000 -        0x1092affff  libsystem_dnssd.dylib (??? - ???) <D0CEBE0E-956F-3CCF-9808-25FDEA42B9AF> /usr/lib/system/libsystem_dnssd.dylib
           0x1092b8000 -        0x1092f3fff  libsystem_info.dylib (??? - ???) <35F90252-2AE1-32C5-8D34-782C614D9639> /usr/lib/system/libsystem_info.dylib
           0x10930c000 -        0x10932cfff  libsystem_kernel.dylib (1699.24.23 - compatibility 1.0.0) <80927C55-D4D9-31B6-9CF3-6134FCF1E1CA> /usr/lib/system/libsystem_kernel.dylib
           0x10933d000 -        0x109342ff7  libsystem_network.dylib (??? - ???) <5DE7024E-1D2D-34A2-80F4-08326331A75B> /usr/lib/system/libsystem_network.dylib
           0x10934f000 -        0x109358ff7  libsystem_notify.dylib (80.1.0 - compatibility 1.0.0) <A4D651E3-D1C6-3934-AD49-7A104FD14596> /usr/lib/system/libsystem_notify.dylib
           0x109362000 -        0x109363ff7  libsystem_sandbox.dylib (??? - ???) <5087ADAD-D34D-3844-9D04-AFF93CED3D92> /usr/lib/system/libsystem_sandbox.dylib
           0x10936b000 -        0x10936cfff  libunc.dylib (24.0.0 - compatibility 1.0.0) <337960EE-0A85-3DD0-A760-7134CF4C0AFF> /usr/lib/system/libunc.dylib
           0x109373000 -        0x109379ff7  libunwind.dylib (30.0.0 - compatibility 1.0.0) <1E9C6C8C-CBE8-3F4B-A5B5-E03E3AB53231> /usr/lib/system/libunwind.dylib
           0x109385000 -        0x1093a2fff  libxpc.dylib (77.18.0 - compatibility 1.0.0) <26C05F31-E809-3B47-AF42-1460971E3AC3> /usr/lib/system/libxpc.dylib
           0x1093b9000 -        0x1093e1ff7  com.apple.CoreVideo (1.7 - 70.1) <98F917B2-FB53-3EA3-B548-7E97B38309A7> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
           0x1093fb000 -        0x1094fdff7  libxml2.2.dylib (10.3.0 - compatibility 10.0.0) <22F1D1B6-1761-3687-9EFD-036EA15FB2E4> /usr/lib/libxml2.2.dylib
           0x10952e000 -        0x10952efff  com.apple.Accelerate (1.7 - Accelerate 1.7) <82DDF6F5-FBC3-323D-B71D-CF7ABC5CF568> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
           0x109537000 -        0x10953dfff  IOSurface (??? - ???) <8114F62C-F75D-3123-99E9-268CB3AE74F7> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
           0x109546000 -        0x1097b9fff  com.apple.CoreImage (7.93 - 1.0.1) <0B7D855E-A2B6-3C14-A242-2CF2165C6E7E> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/CoreImage .framework/Versions/A/CoreImage
           0x1098aa000 -        0x1098feff7  com.apple.ScalableUserInterface (1.0 - 1) <33563775-C662-313D-B7FA-3D575A9F3D41> /System/Library/Frameworks/QuartzCore.framework/Versions/A/Frameworks/ScalableU serInterface.framework/Versions/A/ScalableUserInterface
           0x10992a000 -        0x10997cff7  libGLU.dylib (??? - ???) <3C9153A0-8499-3DC0-AAA4-9FA6E488BE13> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
           0x10998e000 -        0x109994fff  libGFXShared.dylib (??? - ???) <B95E9B22-AE68-3E48-8733-00CCCA08D50E> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.d ylib
           0x10999e000 -        0x1099b4fff  libGL.dylib (??? - ???) <6A473BF9-4D35-34C6-9F8B-86B68091A9AF> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
           0x1099c9000 -        0x10a3597a7  com.apple.CoreGraphics (1.600.0 - ???) <177D9BAD-72C9-3ADF-A391-5B88C5EE623F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreGraphics.framework/Versions/A/CoreGraphics
           0x10a465000 -        0x10a543fff  com.apple.ImageIO.framework (3.1.1 - 3.1.1) <DB530A63-8ECF-3B53-AC9A-1692A5397E2F> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/ImageIO
           0x10a58d000 -        0x10a640fff  com.apple.CoreText (220.11.0 - ???) <0322442E-0530-37E8-A7D6-AEFD909F0AFE> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ CoreText.framework/Versions/A/CoreText
           0x10a694000 -        0x10a718ff7  com.apple.ApplicationServices.ATS (317.5.0 - ???) <C2B254F0-6ED8-3313-9CFC-9ACD519C8A9E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/ATS
           0x10a748000 -        0x10a80fff7  com.apple.ColorSync (4.7.1 - 4.7.1) <EA74B067-9916-341A-9C68-6165A4656042> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ColorSync.framework/Versions/A/ColorSync
           0x10a857000 -        0x10a8b2ff7  com.apple.HIServices (1.11 - ???) <DE8FA7FA-0A41-35D9-8473-5104F81DA934> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ HIServices.framework/Versions/A/HIServices
           0x10a8e4000 -        0x10a8f8ff7  com.apple.LangAnalysis (1.7.0 - 1.7.0) <04C31EF0-912A-3004-A08F-CEC27030E0B2> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ LangAnalysis.framework/Versions/A/LangAnalysis
           0x10a90d000 -        0x10a988ff7  com.apple.print.framework.PrintCore (7.1 - 366.1) <3F140DEB-9F87-3672-97CC-F983752581AC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ PrintCore.framework/Versions/A/PrintCore
           0x10a9c5000 -        0x10aa06fff  com.apple.QD (3.40 - ???) <47674D2C-BE88-388E-B1B0-03F08BFFE5FD> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ QD.framework/Versions/A/QD
           0x10aa21000 -        0x10aa36fff  com.apple.speech.synthesis.framework (4.0.74 - 4.0.74) <C061ECBB-7061-3A43-8A18-90633F943295> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ SpeechSynthesis.framework/Versions/A/SpeechSynthesis
           0x10aa4a000 -        0x10aa5cff7  libz.1.dylib (1.2.5 - compatibility 1.0.0) <30CBEF15-4978-3DED-8629-7109880A19D4> /usr/lib/libz.1.dylib
           0x10aa62000 -        0x10aa74ff7  libbsm.0.dylib (??? - ???) <349BB16F-75FA-363F-8D98-7A9C3FA90A0D> /usr/lib/libbsm.0.dylib
           0x10aa7f000 -        0x10aa8dff7  libkxld.dylib (??? - ???) <B779CF25-496C-31B0-B336-3E4E3E1C32CC> /usr/lib/system/libkxld.dylib
           0x10aa99000 -        0x10adb5ff7  com.apple.CoreServices.CarbonCore (960.20 - 960.20) <C45CA09E-8867-3D67-BB2E-48D2E6B0D78C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
           0x10ae33000 -        0x10af9aff7  com.apple.CFNetwork (520.3.2 - 520.3.2) <516B611D-E53E-3467-9211-3C5B86ABA865> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
           0x10b040000 -        0x10b0c3fef  com.apple.Metadata (10.7.0 - 627.28) <1C14033A-69C9-3757-B24D-5583AEAC2CBA> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
           0x10b119000 -        0x10b1fbfff  com.apple.CoreServices.OSServices (478.37 - 478.37) <1DAC695E-0D0F-3AE2-974F-A173E69E67CC> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
           0x10b275000 -        0x10b30fff7  com.apple.SearchKit (1.4.0 - 1.4.0) <4E70C394-773E-3A4B-A93C-59A88ABA9509> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
           0x10b351000 -        0x10b390fff  com.apple.AE (527.7 - 527.7) <B82F7ABC-AC8B-3507-B029-969DD5CA813D> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
           0x10b3ad000 -        0x10b44dfff  com.apple.LaunchServices (480.27.1 - 480.27.1) <4DC96C1E-6FDE-305E-9718-E4C5C1341F56> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
           0x10b49d000 -        0x10b4cdff7  com.apple.DictionaryServices (1.2.1 - 158.2) <3FC86118-7553-38F7-8916-B329D2E94476> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
           0x10b4ec000 -        0x10b4f2fff  com.apple.DiskArbitration (2.4.1 - 2.4.1) <CEA34337-63DE-302E-81AA-10D717E1F699> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
           0x10b502000 -        0x10b507fff  libpam.2.dylib (3.0.0 - compatibility 3.0.0) <D952F17B-200A-3A23-B9B2-7C1F7AC19189> /usr/lib/libpam.2.dylib
           0x10b50c000 -        0x10b613fe7  libsqlite3.dylib (9.6.0 - compatibility 9.0.0) <EE02BB01-64C9-304D-9719-A35F5CD6D04C> /usr/lib/libsqlite3.dylib
           0x10b62f000 -        0x10b63eff7  libxar-nossl.dylib (??? - ???) <A6ABBFB9-E4ED-38AD-BBBB-F9958B9CEFB5> /usr/lib/libxar-nossl.dylib
           0x10b646000 -        0x10b653ff7  libbz2.1.0.dylib (1.0.5 - compatibility 1.0.0) <3373D310-3B10-3DD1-B754-B7B138CD448D> /usr/lib/libbz2.1.0.dylib
           0x10b65a000 -        0x10b668fff  com.apple.NetAuth (3.2 - 3.2) <F0D60E34-37A9-308D-B44E-E3450906173A> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
           0x10b67b000 -        0x10b6ebfff  com.apple.datadetectorscore (3.0 - 179.4) <B4C6417F-296C-31C1-BB94-980BFCDC9175> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDe tectorsCore
           0x10b72a000 -        0x10b72bfff  liblangid.dylib (??? - ???) <CACBE3C3-2F7B-3EED-B50E-EDB73F473B77> /usr/lib/liblangid.dylib
           0x10b734000 -        0x10b747ff7  libCRFSuite.dylib (??? - ???) <0B76941F-218E-30C8-B6DE-E15919F8DBEB> /usr/lib/libCRFSuite.dylib
           0x10b755000 -        0x10b771ff7  com.apple.GenerationalStorage (1.0 - 126.1) <509F52ED-E54B-3FEF-B3C2-759387B826E6> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/Gene rationalStorage
           0x10b782000 -        0x10b784fff  com.apple.TrustEvaluationAgent (2.0 - 1) <1F31CAFF-C1C6-33D3-94E9-11B721761DDF> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/Tru stEvaluationAgent
           0x10b78e000 -        0x10b7a5fff  com.apple.CFOpenDirectory (10.7 - 146) <E6D4F114-678B-3957-9C59-9206ECDA756E> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpen Directory.framework/Versions/A/CFOpenDirectory
           0x10b7bf000 -        0x10b7eaff7  libxslt.1.dylib (3.24.0 - compatibility 3.0.0) <4DB5ED11-004B-36B5-AE5F-2AB714754241> /usr/lib/libxslt.1.dylib
           0x10b7f8000 -        0x10b821fff  libJPEG.dylib (??? - ???) <64D079F9-256A-323B-A837-84628B172F21> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJPEG.dylib
           0x10b82e000 -        0x10b886fff  libTIFF.dylib (??? - ???) <DD797FBE-9B63-3785-A9EA-0321D113538B> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libTIFF.dylib
           0x10b894000 -        0x10b8b4fff  libPng.dylib (??? - ???) <F4D84592-C450-3076-88E9-8E6517C7EF33> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libPng.dylib
           0x10b8bd000 -        0x10b8c2fff  libGIF.dylib (??? - ???) <393E2DB5-9479-39A6-A75A-B5F20B852532> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libGIF.dylib
           0x10b8ca000 -        0x10b9d7fff  libJP2.dylib (??? - ???) <F2B34A61-75F0-3BFE-A309-EE0DF4AF9E37> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libJP2.dylib
           0x10ba0d000 -        0x10ba10fff  libRadiance.dylib (??? - ???) <CD89D70D-F177-3BAE-8A26-644EA7D5E28E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ImageIO.framework/Versions/A/Resources/libRadiance.dylib
           0x10ba1b000 -        0x10bb51fff  com.apple.vImage (5.1 - 5.1) <A08B7582-67BC-3EED-813A-4833645964A7> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.fr amework/Versions/A/vImage
           0x10bb73000 -        0x10bb73fff  com.apple.Accelerate.vecLib (3.7 - vecLib 3.7) <C06A140F-6114-3B8B-B080-E509303145B8> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/vecLib
           0x10bb7a000 -        0x10bbdafff  libvDSP.dylib (325.4.0 - compatibility 1.0.0) <3A7521E6-5510-3FA7-AB65-79693A7A5839> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvDSP.dylib
           0x10bbe9000 -        0x10bc7fff7  libvMisc.dylib (325.4.0 - compatibility 1.0.0) <642D8D54-F9F5-3FBB-A96C-EEFE94C6278B> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libvMisc.dylib
           0x10bc8c000 -        0x10c0b9fff  libLAPACK.dylib (??? - ???) <4F2E1055-2207-340B-BB45-E4F16171EE0D> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libLAPACK.dylib
           0x10c120000 -        0x10c704fff  libBLAS.dylib (??? - ???) <C34F6D88-187F-33DC-8A68-C0C9D1FA36DF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.fr amework/Versions/A/libBLAS.dylib
           0x10c74a000 -        0x10c84ffff  libFontParser.dylib (??? - ???) <0920DA16-2066-33E6-BF95-AD4B0F3C22B0> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontParser.dylib
           0x10c8b0000 -        0x10c904ff7  libFontRegistry.dylib (??? - ???) <F98926EF-FFA0-37C5-824C-02E436E21DD1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ ATS.framework/Versions/A/Resources/libFontRegistry.dylib
           0x10c92c000 -        0x10c96cff7  libcups.2.dylib (2.9.0 - compatibility 2.0.0) <29DE948E-38C4-3CC5-B528-40C691380607> /usr/lib/libcups.2.dylib
           0x10c984000 -        0x10c9a8fff  com.apple.Kerberos (1.0 - 1) <1F826BCE-DA8F-381D-9C4C-A36AA0EA1CB9> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
           0x10c9c6000 -        0x10c9f9ff7  com.apple.GSS (2.1 - 2.0) <57AD81CE-6320-38C9-9B66-0E5A4DEA898A> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
           0x10ca16000 -        0x10ca35fff  libresolv.9.dylib (46.1.0 - compatibility 1.0.0) <0635C52D-DD53-3721-A488-4C6E95607A74> /usr/lib/libresolv.9.dylib
           0x10ca45000 -        0x10cb3afff  libiconv.2.dylib (7.0.0 - compatibility 7.0.0) <5C40E880-0706-378F-B864-3C2BD922D926> /usr/lib/libiconv.2.dylib
           0x10cb49000 -        0x10cbceff7  com.apple.Heimdal (2.1 - 2.0) <3758B442-6175-32B8-8C17-D8ABDD589BF9> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
           0x10cbfb000 -        0x10cc06fff  com.apple.CommonAuth (2.1 - 2.0) <272CB600-6DA8-3952-97C0-5DC594DCA024> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
           0x10cc0d000 -        0x10cc4cff7  libGLImage.dylib (??? - ???) <348729DC-BC44-3744-B249-9DFA6498344A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dyl ib
           0x10cc55000 -        0x10cc57fff  libCVMSPluginSupport.dylib (??? - ???) <B2FC6EC0-1A0C-3482-A3C9-D08446E8713A> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginS upport.dylib
           0x10cc61000 -        0x10cc64fff  libCoreVMClient.dylib (??? - ???) <E034C772-4263-3F48-B083-25A758DD6228> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClien t.dylib
           0x10cc70000 -        0x10cc9dff7  com.apple.opencl (1.50.69 - 1.50.69) <687265AF-E9B6-3537-89D7-7C12EB38193D> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
           0x10ccab000 -        0x10d172fff  FaceCoreLight (1.4.7 - compatibility 1.0.0) <E9D2A69C-6E81-358C-A162-510969F91490> /System/Library/PrivateFrameworks/FaceCoreLight.framework/Versions/A/FaceCoreLi ght
           0x10d597000 -        0x10d5bbfff  com.apple.RemoteViewServices (1.3 - 44) <21D7A0E7-6699-37AB-AE6C-BF69AF3D61C2> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/Remot eViewServices
           0x10d5de000 -        0x10d737fff  com.apple.audio.toolbox.AudioToolbox (1.7.2 - 1.7.2) <0AD8197C-1BA9-30CD-98F1-4CA2C6559BA8> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
           0x10d7b8000 -        0x10d7b8fff  com.apple.audio.units.AudioUnit (1.7.2 - 1.7.2) <04C10813-CCE5-3333-8C72-E8E35E417B3B> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
           0x10d7be000 -        0x10d8d7fff  com.apple.DesktopServices (1.6.2 - 1.6.2) <6B83172E-F539-3AF8-A76D-1F9EA357B076> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/Desk topServicesPriv
           0x10d937000 -        0x10dc61ff7  com.apple.HIToolbox (1.8 - ???) <D6A0D513-4893-35B4-9FFE-865FF419F2C2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.fra mework/Versions/A/HIToolbox
           0x10dda9000 -        0x10ddb4ff7  com.apple.speech.recognition.framework (4.0.19 - 4.0.19) <48607E6E-8612-3267-9184-E948B1863B32> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecogni tion.framework/Versions/A/SpeechRecognition
           0x10ddbf000 -        0x10de27ff7  com.apple.audio.CoreAudio (4.0.2 - 4.0.2) <DFD8F4DE-3B45-3A2E-9CBE-FD8D5DD30923> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
           0x10de57000 -        0x10de6efff  com.apple.MultitouchSupport.framework (220.62.1 - 220.62.1) <3F8C015B-88AC-370F-B39D-B4665FB7616A> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/Multit ouchSupport
           0x10de81000 -        0x10dea7ff7  com.apple.framework.familycontrols (3.0 - 300) <DC06CF3A-2F10-3867-9498-CADAE30D0CE4> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyCon trols
           0x10dec2000 -        0x10df66fff  com.apple.ink.framework (1.3.2 - 110) <C8840EA4-AE7B-360C-A191-D36B5F10B6B5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework /Versions/A/Ink
           0x10df9b000 -        0x10df9bfff  com.apple.vecLib (3.7 - vecLib 3.7) <9A58105C-B36E-35B5-812C-4ED693F2618F> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
           0x10dfa1000 -        0x10dfa8ff7  com.apple.CommerceCore (1.0 - 17) <3894FE48-EDCE-30E9-9796-E2F959D92704> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/C ommerceCore.framework/Versions/A/CommerceCore
           0x10dfb3000 -        0x10e029fff  com.apple.CoreSymbolication (2.2 - 73.2) <126415E3-3A35-315B-B4B7-507CDBED0D58> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSy mbolication
           0x10e06d000 -        0x10e0cfff7  com.apple.Symbolication (1.3 - 91) <B072970E-9EC1-3495-A1FA-D344C6E74A13> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolicat ion
           0x10e115000 -        0x10e14ffe7  com.apple.DebugSymbols (2.1 - 87) <ED2B177C-4146-3715-91DF-D99A8ED5449A> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbol s
           0x10e170000 -        0x10e182ff7  libsasl2.2.dylib (3.15.0 - compatibility 3.0.0) <6245B497-784B-355C-98EF-2DC6B45BF05C> /usr/lib/libsasl2.2.dylib
           0x10e18a000 -        0x10e1c3fe7  libssl.0.9.8.dylib (44.0.0 - compatibility 0.9.8) <79AAEC98-1258-3DA4-B1C0-4120049D390B> /usr/lib/libssl.0.9.8.dylib
           0x10e1de000 -        0x10e44cff7  com.apple.QuartzComposer (5.0 - 236.3) <F8B96724-2550-32FE-9DE4-22AC7A6C0942> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzCompose r.framework/Versions/A/QuartzComposer
           0x10e5a8000 -        0x10e63afff  com.apple.PDFKit (2.6.2 - 2.6.2) <4C8D80F6-09BB-3BD5-983B-A24FBEB5BCF3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framew ork/Versions/A/PDFKit
           0x10e69b000 -        0x10e6c8fff  com.apple.quartzfilters (1.7.0 - 1.7.0) <CE1EDD58-7273-38F9-AD33-871A8BA7ABF3> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuartzFilters .framework/Versions/A/QuartzFilters
           0x10e6fa000 -        0x10e970ff7  com.apple.imageKit (2.1.1 - 1.0) <A4A58BBB-70BB-3A0F-84F0-49EC6113BF2F> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/ImageKit.fram ework/Versions/A/ImageKit
           0x10eaf3000 -        0x10ebf3fff  com.apple.QuickLookUIFramework (3.1 - 500.10) <ABD3BF58-DD33-31CA-AAE3-E0EE274C8B9C> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/QuickLookUI.f ramework/Versions/A/QuickLookUI
           0x10eca1000 -        0x10ef2cfff  com.apple.JavaScriptCore (7534.53 - 7534.53.8) <619D6392-D833-3C55-B1C0-4DAA0477796C> /System/Library/Frameworks/JavaScriptCore.framework/Versions/A/JavaScriptCore
           0x10efb2000 -        0x10efb5fff  com.apple.AppleSystemInfo (1.0 - 1) <111B6F69-3FBD-3860-BCF8-1DF02D9BED28> /System/Library/PrivateFrameworks/AppleSystemInfo.framework/Versions/A/AppleSys temInfo
           0x10efc2000 -        0x10f3dfff7  com.apple.SceneKit (2.2 - 125.3) <DDCC8DB6-D5DB-31CD-A401-F56C84216E1C> /System/Library/PrivateFrameworks/SceneKit.framework/Versions/A/SceneKit
           0x10f5ba000 -        0x10f601ff7  com.apple.CoreMedia (1.0 - 705.61) <0C34B0D4-DB8A-33C7-B67B-F443AD86482C> /System/Library/Frameworks/CoreMedia.framework/Versions/A/CoreMedia
           0x10f624000 -        0x10f9c2fef  com.apple.MediaToolbox (1.0 - 705.61) <F48F2150-0573-354C-BBB2-BA52DD0FD0AB> /System/Library/PrivateFrameworks/MediaToolbox.framework/Versions/A/MediaToolbo x
           0x10fa39000 -        0x10fe6bfef  com.apple.VideoToolbox (1.0 - 705.61) <1A70CA82-C849-3033-8598-37C5A72637CC> /System/Library/PrivateFrameworks/VideoToolbox.framework/Versions/A/VideoToolbo x
           0x10fefa000 -        0x10ff14fff  com.apple.CoreMediaAuthoring (2.0 - 890) <7BE57576-8EF5-3473-95E6-6191E239E3F0> /System/Library/PrivateFrameworks/CoreMediaAuthoring.framework/Versions/A/CoreM ediaAuthoring
           0x10ff31000 -        0x10ff81fff  com.apple.CoreMediaIO (210.0 - 3180) <C5B60D3E-71BE-3CD2-90FC-3B2F9961D662> /System/Library/Frameworks/CoreMediaIO.framework/Versions/A/CoreMediaIO
           0x10ffa9000 -        0x11073dfef  com.apple.CoreAUC (6.11.04 - 6.11.04) <FFC336DF-C71F-3C93-8E93-5CBD9EEAE940> /System/Library/PrivateFrameworks/CoreAUC.framework/Versions/A/CoreAUC
           0x11075f000 -        0x1107b2fff  com.apple.AppleVAFramework (5.0.14 - 5.0.14) <45159B9E-05BF-35B2-AF76-D933490FBFB1> /System/Library/PrivateFrameworks/AppleVA.framework/Versions/A/AppleVA
           0x1107c1000 -        0x1107c5ff7  com.apple.CommonPanels (1.2.5 - 94) <37C6540B-F8D1-355A-806C-F93D8FB522AB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels. framework/Versions/A/CommonPanels
           0x1107cc000 -        0x1107cffff  com.apple.help (1.3.2 - 42) <BF14DE49-F7E8-336F-81FB-BBDF2DB3AC09> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framewor k/Versions/A/Help
           0x1107d6000 -        0x1107ecff7  com.apple.ImageCapture (7.0 - 7.0) <F15FC6FB-9E88-3BE9-BABE-0454D3A502A0> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture. framework/Versions/A/ImageCapture
           0x11080c000 -        0x110829ff7  com.apple.openscripting (1.3.3 - ???) <4FACC89E-FDAA-3CA5-B5CD-1F4EEAEDF7CF> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting .framework/Versions/A/OpenScripting
           0x11083b000 -        0x11083dff7  com.apple.print.framework.Print (7.1 - 247.1) <8A4925A5-BAA3-373C-9B5D-03E0270C6B12> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framewo rk/Versions/A/Print
           0x110847000 -        0x11084aff7  com.apple.securityhi (4.0 - 1) <37DF1BF8-ACE0-3C4A-81AA-BBA9744EB0A6> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.fr amework/Versions/A/SecurityHI
           0x110856000 -        0x110953fff  com.apple.avfoundation (2.0 - 180.30) <061DDF4C-E7BB-33D0-BEB9-0443ADF6EC8C> /System/Library/Frameworks/AVFoundation.framework/Versions/A/AVFoundation
           0x110a0f000 -        0x110a3afff  libpcre.0.dylib (1.1.0 - compatibility 1.0.0) <7D3CDB0A-840F-3856-8F84-B4A50E66431B> /usr/lib/libpcre.0.dylib
           0x110a40000 -        0x110ad2ff7  com.apple.CorePDF (3.1 - 3.1) <F81F99A9-7FF6-3A6A-92C7-78C76BA35777> /System/Library/PrivateFrameworks/CorePDF.framework/Versions/A/CorePDF
           0x110b27000 -        0x110b83ff7  com.apple.QuickLookFramework (3.1 - 500.10) <35BF320E-26F5-310C-9FA9-D60919B218EC> /System/Library/Frameworks/QuickLook.framework/Versions/A/QuickLook
           0x110bc2000 -        0x110bcdff7  com.apple.DisplayServicesFW (2.5.2 - 317) <D1FE33BD-1D71-343F-B790-685253F1F701> /System/Library/PrivateFrameworks/DisplayServices.framework/Versions/A/DisplayS ervices
           0x110bdd000 -        0x110c31ff7  com.apple.ImageCaptureCore (3.0.2 - 3.0.2) <68147E63-C211-361E-8B24-B5E0675B4297> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCo re
           0x110c70000 -        0x110c71fff  com.apple.MonitorPanelFramework (1.4.0 - 1.4.0) <92364334-3B11-360B-89D8-447185FEC653> /System/Library/PrivateFrameworks/MonitorPanel.framework/Versions/A/MonitorPane l
           0x110c76000 -        0x110cecfff  com.apple.ISSupport (1.9.8 - 56) <2BEEF162-893F-356C-BD4E-8668F044A917> /System/Library/PrivateFrameworks/ISSupport.framework/Versions/A/ISSupport
           0x110d3e000 -        0x110d5aff7  com.apple.frameworks.preferencepanes (15.0 - 15.0) <C1DF4A08-3CBA-3EEA-BA6E-3557F09052FE> /System/Library/Frameworks/PreferencePanes.framework/Versions/A/PreferencePanes
           0x110d78000 -        0x110d83fff  com.apple.dotMacLegacy (3.3 - 267) <A7CC6E73-82CD-3057-9A83-894FA0CD7E6C> /System/Library/PrivateFrameworks/DotMacLegacy.framework/Versions/A/DotMacLegac y
           0x110d96000 -        0x110f02ff7  com.apple.syncservices (6.2 - 673.4) <A22B836D-5130-3057-AAB7-B2F628CE1975> /System/Library/Frameworks/SyncServices.framework/Versions/A/SyncServices
           0x110fc2000 -        0x111036fff  com.apple.WhitePagesFramework (10.7.0 - 141.0) <CBEE0967-09B3-3074-AD96-C1CE06FDEA87> /System/Library/PrivateFrameworks/WhitePages.framework/Versions/A/WhitePages
           0x11107a000 -        0x1110b8fff  com.apple.bom (11.0 - 183) <F300B9EC-995E-33A7-9175-9F07D4B68F16> /System/Library/PrivateFrameworks/Bom.framework/Versions/A/Bom
           0x1110d0000 -        0x1110dcff7  com.apple.CrashReporterSupport (10.7.3 - 349) <5EB46C20-5ED2-37EE-A033-4B3B355059FA> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/Cra shReporterSupport
           0x1110f1000 -        0x111144fff  com.apple.iCalendar (5.0 - 104) <F7723132-0AA0-3FB3-AAD7-2112D294FDC3> /System/Library/PrivateFrameworks/iCalendar.framework/Versions/A/iCalendar
           0x11117a000 -        0x111185fff  com.apple.NSServerNotificationCenter (4.0 - 4.0) <5BACAC71-D10E-39D4-B7DC-AFEAFB9CF150> /System/Library/Frameworks/ServerNotification.framework/Versions/A/ServerNotifi cation
           0x111196000 -        0x1111fbff7  com.apple.coredav (1.0.1 - 115.20) <9FC6D2B1-2F99-3B38-9F54-3694726B2082> /System/Library/PrivateFrameworks/CoreDAV.framework/Versions/A/CoreDAV
           0x11124f000 -        0x111287fff  com.apple.CalDAV (1.0.1 - 51.3) <F9CEE587-4A98-337F-A3C7-15641FDB6C15> /System/Library/PrivateFrameworks/CalDAV.framework/Versions/A/CalDAV
           0x1112c1000 -        0x1112cefff  com.apple.KerberosHelper (3.0 - 1.0) <5223379A-8854-36CF-B15C-44E0107EEE4C> /System/Library/PrivateFrameworks/KerberosHelper.framework/Versions/A/KerberosH elper
           0x1112e0000 -        0x1112ffff7  com.apple.DotMacSyncManager (6.1 - 488.5) <63D5FE4D-35E4-33A3-BC50-8A48927B82FE> /System/Library/PrivateFrameworks/DotMacSyncManager.framework/Versions/A/DotMac SyncManager
           0x11131a000 -        0x11132efff  com.apple.syncservices.syncservicesui (6.2 - 673.4) <04BFF3F2-736F-37B2-B585-11D3A16F6A19> /System/Library/PrivateFrameworks/SyncServicesUI.framework/Versions/A/SyncServi cesUI
           0x111341000 -        0x11134afff  com.apple.AOSNotification (1.4.0 - 504.1) <0CD79695-6625-3BF4-A420-2612190EC2E0> /System/Library/PrivateFrameworks/AOSNotification.framework/Versions/A/AOSNotif ication
           0x111358000 -        0x111363ff7  com.apple.bsd.ServiceManagement (2.0 - 2.0) <9807F306-4081-34DA-9970-83A136E1E53F> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManage ment
           0x111371000 -        0x11137fff7  com.apple.AppleFSCompression (37 - 1.0) <8981D804-EBFE-35D5-9F79-6689DCCBA43A> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/Apple FSCompression
           0x11138c000 -        0x111397ff7  com.apple.aps.framework (2.1 - 2.1) <C8EB8D68-5E33-325F-B64D-CEAFE2EBB60C> /System/Library/PrivateFrameworks/ApplePushService.framework/Versions/A/ApplePu shService
           0x1113a8000 -        0x1120bcfef  com.apple.WebCore (7534.53 - 7534.53.11) <E37D145A-0BFD-3BE0-98A9-7F04CE9B6E6E> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebCore.frame work/Versions/A/WebCore
           0x1127ee000 -        0x11286aff7  com.apple.imcore (6.0 - 800) <0CBF768C-A9C1-357C-A958-CC4DF01E80E6> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/IMCore
           0x11289d000 -        0x1128e5fff  com.apple.imfoundation (6.0 - 800) <6889662B-4CAD-320B-8CB6-A7336C0BB5F3> /System/Library/PrivateFrameworks/IMCore.framework/Versions/A/Frameworks/IMFoun dation.framework/Versions/A/IMFoundation
           0x11291d000 -        0x11295dfff  libtidy.A.dylib (??? - ???) <E500CDB9-C010-3B1A-B995-774EE64F39BE> /usr/lib/libtidy.A.dylib
           0x11296e000 -        0x112b70fe7  com.apple.AOSKit (1.02 - 91) <78F90BCC-414B-38E0-908D-A17906CF31FF> /System/Library/PrivateFrameworks/AOSKit.framework/Versions/A/AOSKit
           0x112b8c000 -        0x112bb7fff  com.apple.speech.LatentSemanticMappingFramework (2.8.10 - 2.8.10) <686A1AA0-AE00-3CFB-8DEE-C84B26C83157> /System/Library/Frameworks/LatentSemanticMapping.framework/Versions/A/LatentSem anticMapping
           0x112bce000 -        0x112cd0ff7  com.apple.PubSub (1.0.5 - 65.28) <D469FB50-8AAF-3C00-8733-6B2269DB334B> /System/Library/Frameworks/PubSub.framework/Versions/A/PubSub
           0x112d3e000 -        0x112d3efff  com.apple.AOSMigrate (1.0 - 1) <7D22554E-EDAE-3B37-AC47-96B0797F1781> /System/Library/PrivateFrameworks/AOSMigrate.framework/Versions/A/AOSMigrate
           0x11325e000 -        0x113261ff7  com.apple.textencoding.japanese (2.4 - 2.4) <891A8B1C-EA6E-3D5E-A4D8-304FF868E69E> /System/Library/TextEncodings/Japanese Encodings.bundle/Contents/MacOS/Japanese Encodings
           0x11334f000 -        0x113353fff  com.apple.audio.AudioIPCPlugIn (1.2.2 - 1.2.2) <D4D40031-05D5-3D8B-A9A5-490D9483E188> /System/Library/Extensions/AudioIPCDriver.kext/Contents/Resources/AudioIPCPlugI n.bundle/Contents/MacOS/AudioIPCPlugIn
           0x113358000 -        0x11335efff  com.apple.audio.AppleHDAHALPlugIn (2.1.7 - 2.1.7f9) <CA4B5CB4-6F02-396A-B7CA-C9DE876544CD> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bun dle/Contents/MacOS/AppleHDAHALPlugIn
           0x114314000 -        0x11432afff  dhx.so (??? - ???) <9AB7809C-2651-3FCF-9357-8E1CDEAB6466> /usr/lib/sasl2/dhx.so
           0x114337000 -        0x114340fff  digestmd5WebDAV.so (??? - ???) <8D39C8C0-ACCE-34D4-815A-87825A1A4492> /usr/lib/sasl2/digestmd5WebDAV.so
           0x114345000 -        0x114348fff  libcrammd5.2.so (??? - ???) <5EEE3304-D132-3C9B-A54D-C21D7C34DA28> /usr/lib/sasl2/libcrammd5.2.so
           0x11434d000 -        0x114356fff  libdigestmd5.2.so (??? - ???) <6DD64225-CFFF-379B-A5BA-5409F777F307> /usr/lib/sasl2/libdigestmd5.2.so
           0x11435b000 -        0x114360fff  libgssapiv2.2.so (??? - ???) <DC1BA305-26FA-3CC7-8400-6A45521EF2A3> /usr/lib/sasl2/libgssapiv2.2.so
           0x114365000 -        0x11436afff  libntlm.so (??? - ???) <1B9D16BE-D0DB-31A3-8B84-7830509B5ECA> /usr/lib/sasl2/libntlm.so
           0x11436f000 -        0x114376fff  libotp.2.so (??? - ???) <1DDBDDF7-3F84-3AF0-A878-9E64EEBE0ED5> /usr/lib/sasl2/libotp.2.so
           0x11437f000 -        0x114383fff  libpps.so (??? - ???) <26172BC5-1758-3BE6-9B8D-F254A727478A> /usr/lib/sasl2/libpps.so
           0x114388000 -        0x11438bff7  mschapv2.so (??? - ???) <B00D3743-D049-31D0-8CF1-8407B2A4838D> /usr/lib/

    I am experiencing a similar problem. Mail crashed, and when I try to open it will not load any Mail folders and just keeps hanging. I have to force-quit Mail, but the problem remains.
    Tried to find the com.apple.mail.plist file, but I connot find any such file in the Preferences folder.
    Any suggestions to help me out of this?

  • Remove zeros in LOVs of BW Infoobjects on Webi report

    Dear Experts,
    My BW infoobjects(0GL_ACCOUNT) showing preceding zeros in the BI4.1 WEBI Prompts LOVs, so user don't want the zeros and they need only values and also they compare BEx analyzer with BO since BEx analyzer LOVs shows only values without zeros.
    Is there any function or setting either in BO or BEx designer to remove zeros in the BW infoobjects? so that in BO LOVs display only values without zeros.
    Currently values is 0000123456 in BO LOVs and user want only 123456 as per BEx analyzer.
    BEx query as semantic Layer
    Platform: BI4.1 SP01
    BW: BI7.3 SP6
    Please help
    Thanks in advance.
    Regards
    Karuppiah N

    Hi
    Try to make use of custome display fomrat option in business layer.
    Find the below link for custome date format...same process for Numeric objects also
    BI4.1 Business Layer Enhancements - Create Display Format

  • How do I remove an unopenable video file from my sidebar?

    How do I remove an unopenable video file from my sidebar?

    Found the answer in more like this. Thanks Barney!

  • FW: [Adobe Reader] I want my credit card information to be removed from Adobe's file and I can't find a phone number to contact someone in your company, how come, please help!  Lucie

    What a dumb answer, the payment is done and charged already,
    ADOBE DOES NEED MY CREDIT CARD INFO ANYMORE, PLEASE REMOVE IT
    FROM YOUR DATABASE AS I CANNOT DO IT MYSELF.  It is quite annoying
    to be controlled like this, please confirm that my request has been answering
    with intelligence please.
    Lucie Lévesque
    Date: Mon, 8 Dec 2014 08:09:59 -0800
    From: [email protected]
    To: [email protected]
    Subject:  I want my credit card information to be removed from Adobe's file and I can't find a phone number to contact someone in your company, how come, please help!  Lucie
        I want my credit card information to be removed from Adobe's file and I can't find a phone number to contact someone in your company, how come, please help!  Lucie
        created by Bernd Alheit in Adobe Reader - View the full discussion
    Adobe needs the credit card information for the payments.
         If the reply above answers your question, please take a moment to mark this answer as correct by visiting: https://forums.adobe.com/message/6995243#6995243 and clicking ‘Correct’ below the answer
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    Please note that the Adobe Forums do not accept email attachments. If you want to embed an image in your message please visit the thread in the forum and click the camera icon: https://forums.adobe.com/message/6995243#6995243
         To unsubscribe from this thread, please visit the message page at , click "Following" at the top right, & "Stop Following"
         Start a new discussion in Adobe Reader by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to https://forums.adobe.com/thread/1516624.

    Adobe Reader is a FREE program, so you would not enter a credit card
    If you have a subscription to a PAID program, removing your credit card information would cause that program to stop working when you stop paying for your subscription
    If that is what you want, here is the information on how to cancel
    Cancel http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html

  • Removing the CORRECT iTunes files from a hard drive

    Help! Does anyone have any idea how to remove the old iTunes files. I want to delete them to free up space on my computer. I tried to move my library from this computer to a laptop. See below. I went through all the steps to move my iTunes library using my iPod. It didn't work. So now I have 2 versions of my iTunes library. I am afraid to delete the wrong one. I think it's just great(not) that iTunes will tell one how to "do something" but no one at Apple can tell one me how to undo it. This is an excerpt from "How to use your Ipod to move music to a new computer:
    Click OK. Note: Clicking OK will cause iTunes to copy all of your music files to another location on your computer. You will need to manually remove the files from their previous locations if you are concerned about space_. If your computer does not have enough hard-drive space this process will not work correctly. Please speak to your computer manufacturer or Microsoft for more information on how to obtain more space to perform this action.

    I downloaded audio files from a CD to an external
    hard drive. Now I would like to put those files in
    Itunes. I tried click and drag and cut and paste, no
    luck.
    What EXACTLY do you mean by you "downloaded" the files?
    Did you transcode them into a form iTunes knows about? (e.g., MP3)
    If you ripped them to MP3 or other compatible file format you should hust be able to drag and drop them onto the Music portion of your iTunes display. I do this hundreds of times a day - it's the logical equivalent of Add File or Add Folder to Library.

  • How to install adobe reader to my site [removed] so that pdf file can be read directly in my site instead of getting downloaded ?

    How to install adobe reader to my site [spam link removed] so that pdf file can be read directly in my site instead of getting downloaded ?

    Adobe Reader is installed on the client side, not on the web server.
    Viewing PDFs online is a browser setting.
    Please do not post any irrelevant links!

  • Conversion File - Getting one record and skip the rest

    Hi Experts,
    I have one issue using conversion file. Is it possible to get only the records that we want without using SKIP? Example below:
    Product
    Partner
    Invoice No
    P1111
    PA1
    INV1
    P2222
    PA2
    INV2
    P5555
    PA3
    INV3
    P9999
    PA1
    INV4
    Let's say I want to get all the product number for partner - PA1.
    Instead of using skip in the conversion file as below, is there another way to do in conversion file?
    Internal
    External
    PA2
    *SKIP
    PA3
    *SKIP
    The reason is because I might have partner PA4, PA5 in future and i will need to modify the conversion file to include to SKIP PA4 and PA5.
    Is there a way to get the data for partner PA1 only?
    Appreciate your advice.
    Thank you!
    Best regards,
    Ng

    Hi Bishwajit,
    Thank you for the response. I actually tried to use java script previously but I can't get it working. I am not really good at it. I tried several ways using if condition and SKIP but it keeps on fail with error saying "Java scription JS:IF(%EXTERNAL%!=PA1 THEN *SKIP) evaluation error".
    Followings are the list of sample I have tried so far:
    Internal - *
    External - JS:IF(%EXTERNAL%!=PA1 THEN *SKIP) or
                   JS:IF(%EXTERNAL%.string!=PA1 THEN *SKIP) or
                   JS:IF(%EXTERNAL%!=PA1 THEN SKIP) or
                   JS:IF(%EXTERNAL%.string!=PA1 THEN SKIP) or
                   JS:IF(%EXTERNAL%.string()!=PA1 THEN *SKIP) and etc.
    I am not sure if we can use SKIP in that way. Appreciate if you can advice on this.
    Thank you.
    Best regards,
    Ng

  • Unit Test Framework Bug: Removing a test vector file causes LV to crash

    Labview 2010 f2 crashes every time I try to remove a test vector file from a project.
    Repro:
    1. Start Labview and open a new project.
    2. Save the project.
    3. Right-click My Computer and select New -> Test Vectors
    4. Right-click the new file (Untitled.lvvect) and select Remove From Project
    I've tried various combinations of renaming the test vector file, trying multiple vector files, etc., but the end result is the same.  LV always crashes when I try to remove the vector file from the project.  LV crashes when I try to remove it even if I delete the vector file from disk before loading it from disk.  The only way I can remove a vector file from a project once the project has been saved is by editing the .lvproj file directly.

    Update:  I believe the last error is a different issue.  I was able to narrow the error down to a specific library and generate some error logs.  That library hasn't had any code changes in over a month.  The error logs point to something in the f2 patch, which I installed last Thursday.  Unfortunately there doesn't appear to be any way to uninstall the patch.
    I can send the guilty code via email or ftp if you need them.
    Attachments:
    lvlog2010-11-03-11-12-03.txt ‏6 KB
    lvlog2010-11-03-12-00-02.txt ‏4 KB

Maybe you are looking for

  • Passing object as parameter in JSF using h:commandLink tag

    Hi , I have a scenario in which i need to pass objects from one jsp to another using h:commandLink. i read balusC article "Communication in JSF" and found a basic idea of achieving it. Thanks to BalusC for the wonderful article. But i am not fully cl

  • SODA - Service Oriented Integration of Medical Devices in Hospitals

    In this thread I will write about my dissertation project. It addresses the problem of the integration of medical devices with their proprietary interfaces and data models into the existing hospitals´ IT infrastructure. Interoperability is an almost

  • Unsupported oracle release

    Hello, we are running netweaver 2004s on AIX and oracle 10.2.0.2. the netweaver system is monitored by solution manager 7, every week we get the early watch alert report. after upgrading the st-pi to version 2008_1_700 and st-a/pi to o1l_bco700 compo

  • Problem with udev rule to disable touchpad when USB mouse connects

    Hi, I've been running Arch on this laptop, but I can't get this udev rule to work properly. What I want to happen is: when I plug in my usb mouse, the laptop touchpad is disabled, and the left and right buttons are reversed (I'm left handed) After fo

  • Can't get iTunes Store to accept PayPal

    I can't get the iTunes Store set up to accept PayPal as my payment method for iTune Store purchases. I select PayPal as my method of payment, and am directed to PayPal web site, with the following screen shot. From there I go to the page that I autho