SOAP Returns from IDS
Import configuration presets...
Thanks!
Indesign Server CS4 service is not starting on Windows Server 2003 64bit
Hello guys,
I am not able to start Indesign Server CS4 service on windows Server 2003 SP2 64bit .
I have successfuly configured the service with InDesignServerService.msc, set the port to 18555. InDesignServerWinService the Log On option is set to "This Account". Also tried using different accounts!
When starting the indesign service from windows Service control panel I get this error:
Could not start the InDesignServerService x64 service on Local Computer.
Error 1053: The service did not respond to the start or control request in a timely fashion.
Error log from windows Event viewer:
Error
Timeout (30000 milliseconds) waiting for the InDesignServerService x64 service to connect.
Indesign server application works if launching from command line with the specified port 18555.
If trying to lauch IndesignServerService.exe from command line, there is a delay and finally nothing happens.
I have also tried launching 32bit indesign server service and the same error comes.
Would be grateful for your thoughts!
Message was edited by: Andrewdev Server specs: Windows Server 2003 Standard x64 Edition Service Pack 2 Intel Xeon CPU 3.00Ghz 9.76 GB of Ram Server is running virtualy on Xen hypervisor, there is no antivirus and windows firewall is disabled.
Indesign Server errors
Hi,
I'm working with Indesign Server CS4 (6.0.3) Multiple Instance to create Indd document with a Javascript script and XML rules. My problem is that the server often crash with errors like:
InDesignServer(13064,0xa0815720) malloc: *** error for object 0x168fb771: Non-aligned pointer being freed
*** set a breakpoint in malloc_error_break to debug
InDesignServer(13064,0xa0815720) malloc: *** error for object 0x168fb770: Non-aligned pointer being freed (2)
*** set a breakpoint in malloc_error_break to debug
InDesignServer(13064,0xa0815720) malloc: *** error for object 0x168fb770: Non-aligned pointer being freed (2)
*** set a breakpoint in malloc_error_break to debug
or
Server clxwebuser$ InDesignServer(14947,0xa0815720) malloc: *** error for object 0x1d078011: Non-aligned pointer being freed
*** set a breakpoint in malloc_error_break to debug
./indesignserver: line 13: 14947 Segmentation fault "$installed_name" "$@"
or
./indesignserver: line 13: 1631 Bus error "$installed_name" "$@"
I'm working with 2 instance which are quite frequently called to create page.
What can I do?
Thanks in advance.
Massimo
Getting unable to snap in error when trying to run indesign server as service
Hi,
I am trying to get the indesign server cs5 as a service to run at a particular port on 64bit windows vm platform. The documentation pointed towards trying to operate the .msc file in <installation_folder>/adobe/indesign x64/ folder. However I am getting a snap-in error. I have tried installing it through mmc.exe, but fails with the same error. It is a trial version right now.
The error reads
"MMC could not create a snap in. The snap-in might not have been installed correctly.
Name: IndesignServerService
CLSI ID:{xxxxxxxxxxxxx}
"
I have uninstalled, reinstalled and restarted many times.
Any info will be helpful. I am wondering if all the dlls have been registered correctly.
Thanks
Ravi
Simply open a file
Hi,
This is my first attempts to script IDS. I am stuck with the simpliest command: open a file.
app.open(File(myFilePath));
It returns an error.
<IDSP:RunScriptResponse><errorNumber>1</errorNumber><errorString>open</errorString><scriptResult></scriptResult></IDSP:RunScriptResponse>
I first developed on Indesign desktop and the script just works fine. I read the IDS scripting guide so I am aware of restrictions and I think I avoided them.
Is there anything to be aware of for opening files ?
Best,
Loic
IOR files not being created
I'm currently experimenting with using the InDesignServerService (windows service) as our means of starting and managing instances of InDesign Server.
I seem to have it working for the most part but the IOR files are not being created and I cannot figure out why. I have been messing around with the command line arguments in the InDesignServerService MMC for quite some time with no luck. The instances seem to startup fine and show "running" in the event viewer info message.
Command line arguments used -
-pluginpath Server/Corba -iorfile c:\IDSQueues\Default\ior1.txt -previews
I've made sure the account the service is running under has writes access to the ior file path. I truely don't know what else to try or why this is happening.
Any help would be great! thanks!
FYI
Using InDesign Developer Server CS5 (for testing) on Windows 7 64bit.
Cannot connect to Indesign Server process
We have Indesign Server CS 5.5 (with all patches installed) running inside a Virtual Machine. Our application (c#) also runs in a virtual machine with full admin priv.
Only 1 instance of Indesign Server is configured (using the MMC snap in) and uses the configuration name test (-configuration test) set in the command line arguments.
InDesignServer.exe is started by the service InDesignServerService.
The problem is that the service starts InDesignServer.exe with an unknown configuration name....so our application cannot connect to it. It should be using the configuration name set using the MMC snap in (-configuration test in this case). I also tried specifying the configuration name in the service startup parameters (using services.msc)...that did not work either. \
IndesignServerService DOES create the configuration name folder in C:\ProgramData\Adobe\InDesign Server\Version 7.5\en_US\ but it just doesn't register the configuration name in the Running Objects Table so our application cannot use it.
If we manually started InDesignServer.exe from command line using: InDesignServer.exe -configuration test, our application can connect to it. If we start it manually using command line, the configuration name is registered in the Running Objects Table.
How can we fix this so the service starts InDesignServer.exe and registers the configuration name in the running objects table?
The code we use to connect to the InDesignServer is the same one in the adobe documentation:
string instanceName = "configuration_noport";
dynamic app = (System.Runtime.InteropServices.Marshal.BindToMoniker(instanceName));
It only works if we start it manually from command line....it does not work if we let the service start it.
Passing arguments to jsx file externally
Hi,
I have a script (javascript, jsx) that will parse content from InDesign (.indd) documents using InDesignServer. I want to be able to pass the filename, as well as the path of the indesign file as parameters to this script.
I have tried this vbs solution:
==========================
runjavascript.vbs
-------------
Option Explicit
On Error Resume Next
Dim appRef
Dim javaScriptFile
Set appRef = CreateObject( "Photoshop.Application" )
appRef.BringToFront
javaScriptFile = "C:\myscript\test.jsx"
call appRef.DoJavaScriptFile( javaScriptFile, Array(Array("one","two"), Array("three")), 1)
------
DoJavaScriptFile takes 3 params, the first being the script, the 2nd is an array of params. In my example, you can have an array of arrays of params. When you receive params from javascript side, it will see param 0 as (one, two), param 1 is (three). For most people, simple case is fine: eg:
call appRef.DoJavaScriptFile( javaScriptFile, Array("one","two", "three"), 1)
The javascript would look like this:
test.jsx
---------
#target photoshop
if (arguments.length > 0)
alert("ARGUMENT 0 = " + arguments[0]);
----
from the jsx side, there's a magical variable called "arguments" of array type. When you pass variables in, the 1st one will be arguments[0], the next one would be arguments[1], and so forth.
To execute this from command line, (assuming everything lives in c:\myscript):
cscript c:\myscript\runjavascript.vbs
==========================
This approach does not work, because I get an error from the CreateObject function, it cannot create an object for InDesignServer.Application.
Ideally, I want to be able to pass arguments from a python script to a jsx script.
Setup:
InDesign CS4 .indd documents
Win2k8 server
JavaScript (via ExtendScript toolkit)
InDesignServer CS5.5 (32bit)
SmartLayout plugin
Failed to export the JPEG file: Maximum size exceeded
When exporting a page to JPEG you might get the following error message:
"Failed to export the JPEG file: Maximum size exceeded. Try decreasing the resolution."
After some research I believe this maximum size for the resulting JPEG is set to 32767 pixels. This is the maximum value of a signed short.
Anyone can verify if this is correct?
Another similar error message you might get is:
"Failed to export the JPEG file: Not enough memory. Try decreasing the resolution."
I would like to know how this limit is calculated.
Test case:
InDesign document of 2000 mm x 2000 mm
Export JPEG, format method 'BASELINE', dpi 416
-> result preview of 32756 pixels (2000 mm = 78,740157 inch * 416 dpi = 32756 pixels)
=> preview is exported
Export JPEG, format method 'BASELINE', dpi 417
-> "Failed to export the JPEG file: Maximum size exceeded. Try decreasing the resolution."
=> max size exceeded
Export JPEG, format method 'PROGRESSIVE', dpi 416
-> "Failed to export the JPEG file: Not enough memory. Try decreasing the resolution."
=> Within the max size boundaries, but not within the max memory boundaries. How is this calculated?
Export JPEG, format method 'PROGRESSIVE', dpi 225
-> "Failed to export the JPEG file: Not enough memory. Try decreasing the resolution."
=> Within the max size boundaries, but not within the max memory boundaries. How is this calculated?
Export JPEG, format method 'PROGRESSIVE', dpi 224
=> preview is exported
Help with Indesign CS Server crashing.
I have been tasked to investigate an older version of Indesign Server. The Application appears to crash frequently. The crashing appears to stop after a restart of the server for a few hours. Is this crashing related to corrupted glyph data? Any feedback is welcome. I am pasting the crash log in below.
Process: | InDesignServer [95645] |
Path: | /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/InDesignServer |
Identifier: | com.adobe.InDesignServer |
Version: | 6.0.5.602 (6050) |
Code Type: | X86 (Native) |
Parent Process: bash [95643]
Date/Time: | 2013-02-13 10:59:35.553 +0100 |
OS Version: | Mac OS X Server 10.6.8 (10K549) |
Report Version: 6
Exception Type: EXC_BAD_ACCESS (SIGBUS)
Exception Codes: KERN_PROTECTION_FAILURE at 0x0000000000000000
Crashed Thread: 0 Dispatch queue: com.apple.main-thread
Thread 0 Crashed: Dispatch queue: com.apple.main-thread
0 com.adobe.InDesign.Text 0x19d78a05 GetPlugIn + 1474901
1 com.adobe.InDesign.Text 0x19e29ef3 GetPlugIn + 2201155
2 com.adobe.InDesign.Text 0x19e2afd4 GetPlugIn + 2205476
3 com.adobe.InDesign.Text 0x19e3b5e5 GetPlugIn + 2272565
4 com.adobe.InDesign.Text 0x19e38a7d GetPlugIn + 2261453
5 com.adobe.InDesign.Text 0x19d87fb4 GetPlugIn + 1537796
6 com.adobe.InDesign.Text 0x19d8bfc7 GetPlugIn + 1554199
7 PublicLib.dylib 0x010b1682 Command::DoImmediate(short) + 34
8 com.adobe.InDesign.Utilities 0x180b65c3 0x180b4000 + 9667
9 com.adobe.InDesign.Utilities 0x180b67ec 0x180b4000 + 10220
10 ...adobe.InDesign.AppFramework 0x1781913e 0x17800000 + 102718
11 PublicLib.dylib 0x010b1f8b CmdUtils::ProcessCommand(ICommand*) + 59
12 ...mg.InDesign.Plugin.PEKernel 0x1c53c668 inTextFlow::setText(long, long, char const*) + 520
13 ...mg.InDesign.Plugin.PEKernel 0x1c56811a _wrap_emTextFlow_setText_long_long_charPtr + 506
14 libperl.dylib 0x1cab484d Perl_pp_entersub + 925
15 libperl.dylib 0x1caab2a9 Perl_runops_standard + 25
16 libperl.dylib 0x1ca38036 perl_run + 310
17 ...mg.InDesign.Plugin.PEKernel 0x1c5bc414 PerlScriptCall(char*, int, char (*) [256], int) + 900
18 ...mg.InDesign.Plugin.PEKernel 0x1c5bc4d2 RunScriptWithParams + 178
19 ...mg.InDesign.Plugin.PEKernel 0x1c4c3f9c servant_emDTPApplication::runPerlScript(char const*, char const*) + 188
20 ...mg.InDesign.Plugin.PEKernel 0x1c4c2ec6 servant_emDTPApplication::callMethodFromIdle() + 422
21 ...mg.InDesign.Plugin.PEKernel 0x1c4b9878 DispatchCall() + 200
22 ...mg.InDesign.Plugin.PEKernel 0x1c4b9a6f CallServantMethod + 79
23 ...mg.InDesign.Plugin.PEKernel 0x1c4afb65 CorbaIdleTask::RunTask(unsigned long, IdleTimer*) + 85
24 ...adobe.InDesign.AppFramework 0x17858a98 GetPlugIn + 221384
25 ...adobe.InDesign.AppFramework 0x1785992b GetPlugIn + 225115
26 ...adobe.InDesign.AppFramework 0x17803638 0x17800000 + 13880
27 ...adobe.InDesign.AppFramework 0x17826b3e GetPlugIn + 16750
28 com.adobe.InDesignServer 0x0000209b start + 2107
29 com.adobe.InDesignServer 0x00001962 start + 258
30 com.adobe.InDesignServer 0x00001889 start + 41
Thread 1: Dispatch queue: com.apple.libdispatch-manager
0 libSystem.B.dylib 0x97778382 kevent + 10
1 libSystem.B.dylib 0x97778a9c _dispatch_mgr_invoke + 215
2 libSystem.B.dylib 0x97777f59 _dispatch_queue_invoke + 163
3 libSystem.B.dylib 0x97777cfe _dispatch_worker_thread2 + 240
4 libSystem.B.dylib 0x97777781 _pthread_wqthread + 390
5 libSystem.B.dylib 0x977775c6 start_wqthread + 30
Thread 2:
0 libSystem.B.dylib 0x97751b5a semaphore_timedwait_signal_trap + 10
1 libSystem.B.dylib 0x9777f6e1 _pthread_cond_wait + 1066
2 libSystem.B.dylib 0x977ae5a8 pthread_cond_timedwait_relative_np + 47
3 ...ple.CoreServices.CarbonCore 0x91f01b90 TSWaitOnConditionTimedRelative + 242
4 ...ple.CoreServices.CarbonCore 0x91efd533 MPWaitOnQueue + 250
5 PMRuntime.dylib 0x0000e668 MemUtils::GetAvailMem() + 296
6 ...ple.CoreServices.CarbonCore 0x91ee154a PrivateMPEntryPoint + 68
7 libSystem.B.dylib 0x9777f259 _pthread_start + 345
8 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 3:
0 libSystem.B.dylib 0x97751afa mach_msg_trap + 10
1 libSystem.B.dylib 0x97752267 mach_msg + 68
2 ...ple.CoreServices.CarbonCore 0x91fa9ab0 TS_exception_listener_thread + 160
3 libSystem.B.dylib 0x9777f259 _pthread_start + 345
4 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 4:
0 libSystem.B.dylib 0x9777faa2 __semwait_signal + 10
1 libSystem.B.dylib 0x9777f75e _pthread_cond_wait + 1191
2 libSystem.B.dylib 0x977813f8 pthread_cond_wait$UNIX2003 + 73
3 ...ple.CoreServices.CarbonCore 0x91f1621e TSWaitOnCondition + 126
4 ...ple.CoreServices.CarbonCore 0x91f01b68 TSWaitOnConditionTimedRelative + 202
5 ...ple.CoreServices.CarbonCore 0x91efd533 MPWaitOnQueue + 250
6 AdobeACE 0x0004838d 0x17000 + 201613
7 AdobeACE 0x00047d85 0x17000 + 200069
8 ...ple.CoreServices.CarbonCore 0x91ee154a PrivateMPEntryPoint + 68
9 libSystem.B.dylib 0x9777f259 _pthread_start + 345
10 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 5:
0 libSystem.B.dylib 0x9777faa2 __semwait_signal + 10
1 libSystem.B.dylib 0x9777f75e _pthread_cond_wait + 1191
2 libSystem.B.dylib 0x977813f8 pthread_cond_wait$UNIX2003 + 73
3 ...ple.CoreServices.CarbonCore 0x91f1621e TSWaitOnCondition + 126
4 ...ple.CoreServices.CarbonCore 0x91f01b68 TSWaitOnConditionTimedRelative + 202
5 ...ple.CoreServices.CarbonCore 0x91efd533 MPWaitOnQueue + 250
6 AdobeACE 0x0004838d 0x17000 + 201613
7 AdobeACE 0x00047d85 0x17000 + 200069
8 ...ple.CoreServices.CarbonCore 0x91ee154a PrivateMPEntryPoint + 68
9 libSystem.B.dylib 0x9777f259 _pthread_start + 345
10 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 6:
0 libSystem.B.dylib 0x9777faa2 __semwait_signal + 10
1 libSystem.B.dylib 0x9777f75e _pthread_cond_wait + 1191
2 libSystem.B.dylib 0x977813f8 pthread_cond_wait$UNIX2003 + 73
3 ...ple.CoreServices.CarbonCore 0x91f1621e TSWaitOnCondition + 126
4 ...ple.CoreServices.CarbonCore 0x91f01b68 TSWaitOnConditionTimedRelative + 202
5 ...ple.CoreServices.CarbonCore 0x91efd533 MPWaitOnQueue + 250
6 AdobeACE 0x0004838d 0x17000 + 201613
7 AdobeACE 0x00047d85 0x17000 + 200069
8 ...ple.CoreServices.CarbonCore 0x91ee154a PrivateMPEntryPoint + 68
9 libSystem.B.dylib 0x9777f259 _pthread_start + 345
10 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 7:
0 libSystem.B.dylib 0x9777faa2 __semwait_signal + 10
1 libSystem.B.dylib 0x9777f75e _pthread_cond_wait + 1191
2 libSystem.B.dylib 0x977813f8 pthread_cond_wait$UNIX2003 + 73
3 ...ple.CoreServices.CarbonCore 0x91f1621e TSWaitOnCondition + 126
4 ...ple.CoreServices.CarbonCore 0x91f01b68 TSWaitOnConditionTimedRelative + 202
5 ...ple.CoreServices.CarbonCore 0x91efd533 MPWaitOnQueue + 250
6 AdobeACE 0x0004838d 0x17000 + 201613
7 AdobeACE 0x00047d85 0x17000 + 200069
8 ...ple.CoreServices.CarbonCore 0x91ee154a PrivateMPEntryPoint + 68
9 libSystem.B.dylib 0x9777f259 _pthread_start + 345
10 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 8:
0 libSystem.B.dylib 0x9777faa2 __semwait_signal + 10
1 libSystem.B.dylib 0x9777f75e _pthread_cond_wait + 1191
2 libSystem.B.dylib 0x977813f8 pthread_cond_wait$UNIX2003 + 73
3 ...ple.CoreServices.CarbonCore 0x91f1621e TSWaitOnCondition + 126
4 ...ple.CoreServices.CarbonCore 0x91f01b68 TSWaitOnConditionTimedRelative + 202
5 ...ple.CoreServices.CarbonCore 0x91efd533 MPWaitOnQueue + 250
6 AdobeACE 0x0004838d 0x17000 + 201613
7 AdobeACE 0x00047d85 0x17000 + 200069
8 ...ple.CoreServices.CarbonCore 0x91ee154a PrivateMPEntryPoint + 68
9 libSystem.B.dylib 0x9777f259 _pthread_start + 345
10 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 9:
0 libSystem.B.dylib 0x9777faa2 __semwait_signal + 10
1 libSystem.B.dylib 0x9777f75e _pthread_cond_wait + 1191
2 libSystem.B.dylib 0x977813f8 pthread_cond_wait$UNIX2003 + 73
3 ...ple.CoreServices.CarbonCore 0x91f1621e TSWaitOnCondition + 126
4 ...ple.CoreServices.CarbonCore 0x91f01b68 TSWaitOnConditionTimedRelative + 202
5 ...ple.CoreServices.CarbonCore 0x91efd533 MPWaitOnQueue + 250
6 AdobeACE 0x0004838d 0x17000 + 201613
7 AdobeACE 0x00047d85 0x17000 + 200069
8 ...ple.CoreServices.CarbonCore 0x91ee154a PrivateMPEntryPoint + 68
9 libSystem.B.dylib 0x9777f259 _pthread_start + 345
10 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 10:
0 libSystem.B.dylib 0x9777faa2 __semwait_signal + 10
1 libSystem.B.dylib 0x9777f75e _pthread_cond_wait + 1191
2 libSystem.B.dylib 0x977813f8 pthread_cond_wait$UNIX2003 + 73
3 ...ple.CoreServices.CarbonCore 0x91f1621e TSWaitOnCondition + 126
4 ...ple.CoreServices.CarbonCore 0x91f01b68 TSWaitOnConditionTimedRelative + 202
5 ...ple.CoreServices.CarbonCore 0x91efd533 MPWaitOnQueue + 250
6 AdobeACE 0x0004838d 0x17000 + 201613
7 AdobeACE 0x00047d85 0x17000 + 200069
8 ...ple.CoreServices.CarbonCore 0x91ee154a PrivateMPEntryPoint + 68
9 libSystem.B.dylib 0x9777f259 _pthread_start + 345
10 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 11:
0 libSystem.B.dylib 0x97751b42 semaphore_wait_signal_trap + 10
1 libSystem.B.dylib 0x9777f6f8 _pthread_cond_wait + 1089
2 libSystem.B.dylib 0x977c805f pthread_cond_wait + 48
3 com.adobe.amt.services 0x165e5552 C_EULA_AskToAcceptEULA + 21368
4 com.adobe.amt.services 0x165e0995 C_EULA_AskToAcceptEULA + 1979
5 com.adobe.amt.services 0x165e55b0 C_EULA_AskToAcceptEULA + 21462
6 libSystem.B.dylib 0x9777f259 _pthread_start + 345
7 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 12:
0 libSystem.B.dylib 0x97751b42 semaphore_wait_signal_trap + 10
1 libSystem.B.dylib 0x9777f6f8 _pthread_cond_wait + 1089
2 libSystem.B.dylib 0x977c805f pthread_cond_wait + 48
3 ...mg.InDesign.Plugin.PEKernel 0x1c63fb46 omni_condition_em::wait() + 42
4 ...mg.InDesign.Plugin.PEKernel 0x1c64743a omniOrbORB::run() + 300
5 ...mg.InDesign.Plugin.PEKernel 0x1c4b9356 CreateCorbaServerThread(void*) + 486
6 ...mg.InDesign.Plugin.PEKernel 0x1c6405eb omni_thread_wrapper_em + 145
7 libSystem.B.dylib 0x9777f259 _pthread_start + 345
8 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 13:
0 libSystem.B.dylib 0x97751c0e mach_wait_until + 10
1 libSystem.B.dylib 0x977d9429 nanosleep + 345
2 ...mg.InDesign.Plugin.PEKernel 0x1c4c2cc6 servant_emDTPApplication::sleepApp(int) + 38
3 ...mg.InDesign.Plugin.PEKernel 0x1c4b90d5 CreateServerShutdownThread(void*) + 101
4 ...mg.InDesign.Plugin.PEKernel 0x1c6405eb omni_thread_wrapper_em + 145
5 libSystem.B.dylib 0x9777f259 _pthread_start + 345
6 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 14:
0 libSystem.B.dylib 0x9778d58a select$DARWIN_EXTSN$NOCANCEL + 10
1 libSystem.B.dylib 0x97825c4b select + 92
2 ...mg.InDesign.Plugin.PEKernel 0x1c6c5a60 omni_em::do_select(int, fd_set*, fd_set*, fd_set*, timeval*) + 60
3 ...mg.InDesign.Plugin.PEKernel 0x1c6c5d64 omni_em::SocketCollection::Select() + 770
4 ...mg.InDesign.Plugin.PEKernel 0x1c6cb858 omni_em::tcpEndpoint::AcceptAndMonitor(void (*)(void*, omni_em::giopConnection*), void*) + 156
5 ...mg.InDesign.Plugin.PEKernel 0x1c67058f omni_em::giopRendezvouser::execute() + 205
6 ...mg.InDesign.Plugin.PEKernel 0x1c688e51 omniAsyncWorker::real_run() + 483
7 ...mg.InDesign.Plugin.PEKernel 0x1c687899 omniAsyncWorkerInfo::run() + 75
8 ...mg.InDesign.Plugin.PEKernel 0x1c6890f7 omniAsyncWorker::run(void*) + 41
9 ...mg.InDesign.Plugin.PEKernel 0x1c640646 omni_thread_wrapper_em + 236
10 libSystem.B.dylib 0x9777f259 _pthread_start + 345
11 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 15:
0 libSystem.B.dylib 0x97751b5a semaphore_timedwait_signal_trap + 10
1 libSystem.B.dylib 0x9777f6e1 _pthread_cond_wait + 1066
2 libSystem.B.dylib 0x977c826c pthread_cond_timedwait + 47
3 ...mg.InDesign.Plugin.PEKernel 0x1c63fbdf omni_condition_em::timedwait(unsigned long, unsigned long) + 77
4 ...mg.InDesign.Plugin.PEKernel 0x1c67a4bd omni_em::Scavenger::execute() + 257
5 ...mg.InDesign.Plugin.PEKernel 0x1c688e51 omniAsyncWorker::real_run() + 483
6 ...mg.InDesign.Plugin.PEKernel 0x1c687899 omniAsyncWorkerInfo::run() + 75
7 ...mg.InDesign.Plugin.PEKernel 0x1c6890f7 omniAsyncWorker::run(void*) + 41
8 ...mg.InDesign.Plugin.PEKernel 0x1c640646 omni_thread_wrapper_em + 236
9 libSystem.B.dylib 0x9777f259 _pthread_start + 345
10 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 16:
0 libSystem.B.dylib 0x97751b42 semaphore_wait_signal_trap + 10
1 libSystem.B.dylib 0x9777f6f8 _pthread_cond_wait + 1089
2 libSystem.B.dylib 0x977c805f pthread_cond_wait + 48
3 ...oost_thread-mt-1_34_1.dylib 0x01593080 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
4 ...adobe.InDesign.AppFramework 0x178ec16f GetPlugIn + 825247
5 ...oost_thread-mt-1_34_1.dylib 0x015963a6 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 34
6 ...oost_thread-mt-1_34_1.dylib 0x015957e5 boost::thread_group::create_thread(boost::function0<void, std::allocator<boost::function_base> > const&) + 223
7 libSystem.B.dylib 0x9777f259 _pthread_start + 345
8 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 17:
0 libSystem.B.dylib 0x97751b42 semaphore_wait_signal_trap + 10
1 libSystem.B.dylib 0x9777f6f8 _pthread_cond_wait + 1089
2 libSystem.B.dylib 0x977c805f pthread_cond_wait + 48
3 ...oost_thread-mt-1_34_1.dylib 0x01593080 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
4 ...adobe.InDesign.AppFramework 0x178ec16f GetPlugIn + 825247
5 ...oost_thread-mt-1_34_1.dylib 0x015963a6 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 34
6 ...oost_thread-mt-1_34_1.dylib 0x015957e5 boost::thread_group::create_thread(boost::function0<void, std::allocator<boost::function_base> > const&) + 223
7 libSystem.B.dylib 0x9777f259 _pthread_start + 345
8 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 18:
0 libSystem.B.dylib 0x97751b42 semaphore_wait_signal_trap + 10
1 libSystem.B.dylib 0x9777f6f8 _pthread_cond_wait + 1089
2 libSystem.B.dylib 0x977c805f pthread_cond_wait + 48
3 ...oost_thread-mt-1_34_1.dylib 0x01593080 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
4 ...adobe.InDesign.AppFramework 0x178ec16f GetPlugIn + 825247
5 ...oost_thread-mt-1_34_1.dylib 0x015963a6 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 34
6 ...oost_thread-mt-1_34_1.dylib 0x015957e5 boost::thread_group::create_thread(boost::function0<void, std::allocator<boost::function_base> > const&) + 223
7 libSystem.B.dylib 0x9777f259 _pthread_start + 345
8 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 19:
0 libSystem.B.dylib 0x97751b42 semaphore_wait_signal_trap + 10
1 libSystem.B.dylib 0x9777f6f8 _pthread_cond_wait + 1089
2 libSystem.B.dylib 0x977c805f pthread_cond_wait + 48
3 ...oost_thread-mt-1_34_1.dylib 0x01593080 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
4 ...adobe.InDesign.AppFramework 0x178ec16f GetPlugIn + 825247
5 ...oost_thread-mt-1_34_1.dylib 0x015963a6 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 34
6 ...oost_thread-mt-1_34_1.dylib 0x015957e5 boost::thread_group::create_thread(boost::function0<void, std::allocator<boost::function_base> > const&) + 223
7 libSystem.B.dylib 0x9777f259 _pthread_start + 345
8 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 20:
0 libSystem.B.dylib 0x97751b42 semaphore_wait_signal_trap + 10
1 libSystem.B.dylib 0x9777f6f8 _pthread_cond_wait + 1089
2 libSystem.B.dylib 0x977c805f pthread_cond_wait + 48
3 ...oost_thread-mt-1_34_1.dylib 0x01593080 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
4 ...adobe.InDesign.AppFramework 0x178ec16f GetPlugIn + 825247
5 ...oost_thread-mt-1_34_1.dylib 0x015963a6 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 34
6 ...oost_thread-mt-1_34_1.dylib 0x015957e5 boost::thread_group::create_thread(boost::function0<void, std::allocator<boost::function_base> > const&) + 223
7 libSystem.B.dylib 0x9777f259 _pthread_start + 345
8 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 21:
0 libSystem.B.dylib 0x97751b42 semaphore_wait_signal_trap + 10
1 libSystem.B.dylib 0x9777f6f8 _pthread_cond_wait + 1089
2 libSystem.B.dylib 0x977c805f pthread_cond_wait + 48
3 ...oost_thread-mt-1_34_1.dylib 0x01593080 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
4 ...adobe.InDesign.AppFramework 0x178ec16f GetPlugIn + 825247
5 ...oost_thread-mt-1_34_1.dylib 0x015963a6 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 34
6 ...oost_thread-mt-1_34_1.dylib 0x015957e5 boost::thread_group::create_thread(boost::function0<void, std::allocator<boost::function_base> > const&) + 223
7 libSystem.B.dylib 0x9777f259 _pthread_start + 345
8 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 22:
0 libSystem.B.dylib 0x97751b42 semaphore_wait_signal_trap + 10
1 libSystem.B.dylib 0x9777f6f8 _pthread_cond_wait + 1089
2 libSystem.B.dylib 0x977c805f pthread_cond_wait + 48
3 ...oost_thread-mt-1_34_1.dylib 0x01593080 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
4 ...adobe.InDesign.AppFramework 0x178ec16f GetPlugIn + 825247
5 ...oost_thread-mt-1_34_1.dylib 0x015963a6 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 34
6 ...oost_thread-mt-1_34_1.dylib 0x015957e5 boost::thread_group::create_thread(boost::function0<void, std::allocator<boost::function_base> > const&) + 223
7 libSystem.B.dylib 0x9777f259 _pthread_start + 345
8 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 23:
0 libSystem.B.dylib 0x97751b42 semaphore_wait_signal_trap + 10
1 libSystem.B.dylib 0x9777f6f8 _pthread_cond_wait + 1089
2 libSystem.B.dylib 0x977c805f pthread_cond_wait + 48
3 ...oost_thread-mt-1_34_1.dylib 0x01593080 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
4 ...adobe.InDesign.AppFramework 0x178ec16f GetPlugIn + 825247
5 ...oost_thread-mt-1_34_1.dylib 0x015963a6 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 34
6 ...oost_thread-mt-1_34_1.dylib 0x015957e5 boost::thread_group::create_thread(boost::function0<void, std::allocator<boost::function_base> > const&) + 223
7 libSystem.B.dylib 0x9777f259 _pthread_start + 345
8 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 24:
0 libSystem.B.dylib 0x97751b42 semaphore_wait_signal_trap + 10
1 libSystem.B.dylib 0x9777f6f8 _pthread_cond_wait + 1089
2 libSystem.B.dylib 0x977c805f pthread_cond_wait + 48
3 ...oost_thread-mt-1_34_1.dylib 0x01593080 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
4 ...adobe.InDesign.AppFramework 0x178ec16f GetPlugIn + 825247
5 ...oost_thread-mt-1_34_1.dylib 0x015963a6 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 34
6 ...oost_thread-mt-1_34_1.dylib 0x015957e5 boost::thread_group::create_thread(boost::function0<void, std::allocator<boost::function_base> > const&) + 223
7 libSystem.B.dylib 0x9777f259 _pthread_start + 345
8 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 25:
0 libSystem.B.dylib 0x97751b42 semaphore_wait_signal_trap + 10
1 libSystem.B.dylib 0x9777f6f8 _pthread_cond_wait + 1089
2 libSystem.B.dylib 0x977c805f pthread_cond_wait + 48
3 ...oost_thread-mt-1_34_1.dylib 0x01593080 boost::detail::condition_impl::do_wait(_opaque_pthread_mutex_t*) + 24
4 ...adobe.InDesign.AppFramework 0x178ec16f GetPlugIn + 825247
5 ...oost_thread-mt-1_34_1.dylib 0x015963a6 boost::function0<void, std::allocator<boost::function_base> >::operator()() const + 34
6 ...oost_thread-mt-1_34_1.dylib 0x015957e5 boost::thread_group::create_thread(boost::function0<void, std::allocator<boost::function_base> > const&) + 223
7 libSystem.B.dylib 0x9777f259 _pthread_start + 345
8 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 26:
0 libSystem.B.dylib 0x97751b42 semaphore_wait_signal_trap + 10
1 libSystem.B.dylib 0x9777f6f8 _pthread_cond_wait + 1089
2 libSystem.B.dylib 0x977c805f pthread_cond_wait + 48
3 TINthread.dylib 0x076107a5 ThreadUtils::ThreadPool::Dispatcher() + 277
4 TINthread.dylib 0x0761083f ThreadUtils::ThreadPool::ThreadProc(void*) + 17
5 libSystem.B.dylib 0x9777f259 _pthread_start + 345
6 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 27:
0 libSystem.B.dylib 0x97751c0e mach_wait_until + 10
1 libSystem.B.dylib 0x977d9429 nanosleep + 345
2 ...sign.Support for JavaScript 0x2035c53f GetPlugIn + 336367
3 ...sign.Support for JavaScript 0x2035c59f GetPlugIn + 336463
4 ...sign.Support for JavaScript 0x2033851e GetPlugIn + 188878
5 ...sign.Support for JavaScript 0x2035c85f GetPlugIn + 337167
6 libSystem.B.dylib 0x9777f259 _pthread_start + 345
7 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 28:
0 libSystem.B.dylib 0x97751b4e semaphore_timedwait_trap + 10
1 ...ple.CoreServices.CarbonCore 0x91f13942 MPWaitOnSemaphore + 125
2 MultiProcessor Support 0x22a32eff 0x22a03000 + 196351
3 ...ple.CoreServices.CarbonCore 0x91ee154a PrivateMPEntryPoint + 68
4 libSystem.B.dylib 0x9777f259 _pthread_start + 345
5 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 29:
0 libSystem.B.dylib 0x97751b4e semaphore_timedwait_trap + 10
1 ...ple.CoreServices.CarbonCore 0x91f13942 MPWaitOnSemaphore + 125
2 MultiProcessor Support 0x22a32eff 0x22a03000 + 196351
3 ...ple.CoreServices.CarbonCore 0x91ee154a PrivateMPEntryPoint + 68
4 libSystem.B.dylib 0x9777f259 _pthread_start + 345
5 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 30:
0 libSystem.B.dylib 0x97751b4e semaphore_timedwait_trap + 10
1 ...ple.CoreServices.CarbonCore 0x91f13942 MPWaitOnSemaphore + 125
2 MultiProcessor Support 0x22a32eff 0x22a03000 + 196351
3 ...ple.CoreServices.CarbonCore 0x91ee154a PrivateMPEntryPoint + 68
4 libSystem.B.dylib 0x9777f259 _pthread_start + 345
5 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 31:
0 libSystem.B.dylib 0x97751b4e semaphore_timedwait_trap + 10
1 ...ple.CoreServices.CarbonCore 0x91f13942 MPWaitOnSemaphore + 125
2 MultiProcessor Support 0x22a32eff 0x22a03000 + 196351
3 ...ple.CoreServices.CarbonCore 0x91ee154a PrivateMPEntryPoint + 68
4 libSystem.B.dylib 0x9777f259 _pthread_start + 345
5 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 32:
0 libSystem.B.dylib 0x97751b4e semaphore_timedwait_trap + 10
1 ...ple.CoreServices.CarbonCore 0x91f13942 MPWaitOnSemaphore + 125
2 MultiProcessor Support 0x22a32eff 0x22a03000 + 196351
3 ...ple.CoreServices.CarbonCore 0x91ee154a PrivateMPEntryPoint + 68
4 libSystem.B.dylib 0x9777f259 _pthread_start + 345
5 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 33:
0 libSystem.B.dylib 0x97751b4e semaphore_timedwait_trap + 10
1 ...ple.CoreServices.CarbonCore 0x91f13942 MPWaitOnSemaphore + 125
2 MultiProcessor Support 0x22a32eff 0x22a03000 + 196351
3 ...ple.CoreServices.CarbonCore 0x91ee154a PrivateMPEntryPoint + 68
4 libSystem.B.dylib 0x9777f259 _pthread_start + 345
5 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 34:
0 libSystem.B.dylib 0x97751b4e semaphore_timedwait_trap + 10
1 ...ple.CoreServices.CarbonCore 0x91f13942 MPWaitOnSemaphore + 125
2 MultiProcessor Support 0x22a32eff 0x22a03000 + 196351
3 ...ple.CoreServices.CarbonCore 0x91ee154a PrivateMPEntryPoint + 68
4 libSystem.B.dylib 0x9777f259 _pthread_start + 345
5 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 35:
0 libSystem.B.dylib 0x97751bd2 swtch_pri + 10
1 libSystem.B.dylib 0x977c8239 sched_yield + 18
2 ...mg.InDesign.Plugin.PEKernel 0x1c4b9b6d corbaUtils::callMethodWithinIdle() + 109
3 ...mg.InDesign.Plugin.PEKernel 0x1c4c3f22 servant_emDTPApplication::runPerlScript(char const*, char const*) + 66
4 ...mg.InDesign.Plugin.PEKernel 0x1c5c2250 _0RL_lcfn_CDC104D6BF95BD59_2e100000(omniCallDescriptor*, omniServant*) + 64
5 ...mg.InDesign.Plugin.PEKernel 0x1c6b4ef5 omniCallDescriptor::doLocalCall(omniServant*) + 33
6 ...mg.InDesign.Plugin.PEKernel 0x1c6437ab omniCallHandle::upcall(omniServant*, omniCallDescriptor&) + 251
7 ...mg.InDesign.Plugin.PEKernel 0x1c61873b corba_interface::_impl_emDTPApplication_c::_dispatch(omniCallHandle&) + 5739
8 ...mg.InDesign.Plugin.PEKernel 0x1c6ab90d omni_em::omniOrbPOA::dispatch(omniCallHandle&, omniLocalIdentity*) + 1115
9 ...mg.InDesign.Plugin.PEKernel 0x1c68e522 omniLocalIdentity::dispatch(omniCallHandle&) + 168
10 ...mg.InDesign.Plugin.PEKernel 0x1c6ac57f omni_em::omniOrbPOA::dispatch_to_ds(omniCallHandle&, unsigned char const*, int) + 325
11 ...mg.InDesign.Plugin.PEKernel 0x1c6b0164 omni_em::omniOrbPOA::dispatch(omniCallHandle&, unsigned char const*, int) + 542
12 ...mg.InDesign.Plugin.PEKernel 0x1c65acba omni_em::GIOP_S::handleRequest() + 506
13 ...mg.InDesign.Plugin.PEKernel 0x1c65bcc4 omni_em::GIOP_S::dispatcher() + 468
14 ...mg.InDesign.Plugin.PEKernel 0x1c681c86 omni_em::giopWorker::real_execute() + 1762
15 ...mg.InDesign.Plugin.PEKernel 0x1c681d5b omni_em::giopWorkerInfo::run() + 75
16 ...mg.InDesign.Plugin.PEKernel 0x1c681d87 omni_em::giopWorker::execute() + 41
17 ...mg.InDesign.Plugin.PEKernel 0x1c688e51 omniAsyncWorker::real_run() + 483
18 ...mg.InDesign.Plugin.PEKernel 0x1c687899 omniAsyncWorkerInfo::run() + 75
19 ...mg.InDesign.Plugin.PEKernel 0x1c6890f7 omniAsyncWorker::run(void*) + 41
20 ...mg.InDesign.Plugin.PEKernel 0x1c640646 omni_thread_wrapper_em + 236
21 libSystem.B.dylib 0x9777f259 _pthread_start + 345
22 libSystem.B.dylib 0x9777f0de thread_start + 34
Thread 0 crashed with X86 Thread State (32-bit):
eax: 0x00000000 ebx: 0x19e29e21 ecx: 0x00000000 edx: 0x00000000
edi: 0x211e43bc esi: 0x00000000 ebp: 0xbfffd4e8 esp: 0xbfffd480
ss: 0x0000001f efl: 0x00010246 eip: 0x19d78a05 cs: 0x00000017
ds: 0x0000001f es: 0x0000001f fs: 0x00000000 gs: 0x00000037
cr2: 0x00000000
Binary Images:
0x1000 - 0x3ff3 +com.adobe.InDesignServer 6.0.5.602 (6050) <0A85D94E-AD7C-7C0E-7312-A15BD6CD5399> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/InDesignServer
0x8000 - 0x8fff +InDesignModel ??? (???) <025FF627-6956-ED2C-87A9-25D4F444D5C3> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/InDesignModel.framework/Versions/A/InDesignModel
0xc000 - 0x12fff +PMRuntime.dylib ??? (???) <40205D65-D0A1-E493-349A-5B1CC1101781> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/PMRuntime.dylib
0x17000 - 0x124fff +AdobeACE ??? (???) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
0x142000 - 0x64afff +AdobeAGM ??? (???) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
0x7ba000 - 0x7f9ff7 +AdobeARE ??? (???) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeARE.framework/Versions/A/AdobeARE
0x803000 - 0x81cfff +AdobeBIB ??? (???) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
0x826000 - 0x847ff7 +AdobeBIBUtils ??? (???) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIB Utils
0x854000 - 0xae7fc7 +AdobeCoolType ??? (???) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoo lType
0xb6b000 - 0xf35fcf +AdobeMPS ??? (???) <3DB9900F-376A-4C2A-B984-F57868BD94FF> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
0xfc4000 - 0x1025fff +ObjectModelLib.dylib ??? (???) <D17896C2-6318-FDBE-E0C1-196CE6A97D93> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/ObjectModelLib.dylib
0x1042000 - 0x1078fff +DataBaseLib.dylib ??? (???) <13123CD2-D3A4-89AE-DA68-4B57C4A0488B> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/DataBaseLib.dylib
0x1088000 - 0x13f7fff +PublicLib.dylib ??? (???) <B8A37CBF-2582-E6C6-78C2-CCE6C9DB43C7> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/PublicLib.dylib
0x1554000 - 0x1575ffa +AdobeAFL ??? (???) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeAFL.framework/Versions/A/AdobeAFL
0x1591000 - 0x1597ffe +libboost_thread-mt-1_34_1.dylib ??? (???) <DB58BCE6-F2FC-4E5B-B87F-ED405C3F62A7> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/libboost_thread-mt-1_34_1.dylib
0x15a2000 - 0x1632fc3 +WRServices ??? (???) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
0x17ad000 - 0x17b1ffc +com.adobe.AdobeCrashReporter 2.5 (3.0.20080806) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/Ado beCrashReporter
0x17b7000 - 0x216757f +libicudata.dylib.36.0 36.0.0 (compatibility 36.0.0) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/ICUData.framework/Versions/3.6/libicudata.d ylib.36.0
0x216a000 - 0x223923b +libicui18n.dylib.36.0 36.0.0 (compatibility 36.0.0) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/ICUInternationalization.framework/Versions/ 3.6/libicui18n.dylib.36.0
0x22e2000 - 0x23b6db7 +libicuuc.dylib.36.0 36.0.0 (compatibility 36.0.0) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/ICUUnicode.framework/Versions/3.6/libicuuc. dylib.36.0
0x2417000 - 0x245efc7 +com.adobe.adobe_caps adobe_caps 2.0.99.0 (2.0.99.0) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/adobe_caps.framework/Versions/A/adobe_caps
0x2464000 - 0x24dafff +libboost_regex-mt-1_34_1.dylib ??? (???) <3FE3AFA1-CCA6-740C-9460-E04378983CF0> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/libboost_regex-mt-1_34_1.dylib
0x2510000 - 0x26c6ff4 +com.adobe.amtlib amtlib 2.0.1.10077 (2.0.1.10077) <CB2EC3BF-6771-4DAB-BF29-6775FB6F9608> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
0x26fd000 - 0x270aff7 +com.adobe.asneu.framework asneu version 1.6.2f01 (1.6.2) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/asneu.framework/Versions/A/asneu
0x270e000 - 0x274eff7 com.apple.vmutils 4.2 (106) <834EA6B0-C91B-4CF1-ED3C-229C26459578> /System/Library/PrivateFrameworks/vmutils.framework/Versions/A/vmutils
0x2767000 - 0x2767ff7 libmx.A.dylib 315.0.0 (compatibility 1.0.0) <01401BF8-3FC7-19CF-ACCE-0F292BFD2F25> /usr/lib/libmx.A.dylib
0x2f57000 - 0x2f58ff2 +com.adobe.InDesign.Metadata Database Filter 6.0.1.525 (???) <5C66FD40-388A-0687-F359-012C96F5A462> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Metadata Database Filter.InDesignPlugin/Metadata Database Filter
0x75e7000 - 0x75e8ff7 com.apple.textencoding.unicode 2.3 (2.3) <78A61FD5-70EE-19EA-48D4-3481C640B70D> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
0x75f0000 - 0x75f1ff7 ATSHI.dylib ??? (???) <56F243F1-C341-86EA-2BCC-31E75D46EBBC> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/ATSHI.dylib
0x760f000 - 0x7612fff +TINthread.dylib ??? (???) /Library/Application Support/Adobe/SING/Mark II/TINthread.dylib
0x7619000 - 0x761affd +com.adobe.InDesign.Corba Utils 6.0.1.525 (???) <046AD6CF-8C3C-23EB-1A85-68CC68BC07A3> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Server/Corba Utils.InDesignPlugin/Corba Utils
0x7621000 - 0x7622fff +Call.bundle ??? (???) <86A8618C-D550-CFD0-F9A2-D1DA2EBEC937> /Volumes/Untitled/Applications/Adobe InDesign CS4 Server/Plug-Ins/PublishingEngine/PEKernel.InDesignPlugin/Versions/A/Frameworks/perl5.8.8. bundle/Contents/Frameworks/Perl/darwin-thread-multi-2level/auto/Filter/Util/Call/Call.bund le
0x7626000 - 0x7627ff8 +Cwd.bundle ??? (???) <DA989029-74C1-09C2-D400-2B36247E42C8> /Volumes/Untitled/Applications/Adobe InDesign CS4 Server/Plug-Ins/PublishingEngine/PEKernel.InDesignPlugin/Versions/A/Frameworks/perl5.8.8. bundle/Contents/Frameworks/Perl/darwin-thread-multi-2level/auto/Cwd/Cwd.bundle
0x7631000 - 0x7635ff7 libutil.dylib ??? (???) <FCFC4723-E2E3-3F94-69BC-5298599E4DB1> /usr/lib/libutil.dylib
0x77f0000 - 0x77f7ff7 +com.adobe.InDesign.Group 6.0.1.525 (???) <88034B3A-F1D0-2057-76DA-125396994BB5> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Group.InDesignPlugin/Group
0x119fc000 - 0x119fcff7 com.apple.applescript.component 2.1.2 (2.1.2) <C753B747-FBB7-EF99-32C9-133CA88FD5C4> /System/Library/Components/AppleScript.component/Contents/MacOS/AppleScript
0x11f89000 - 0x11f8cfff +libomnithread.3.3.dylib ??? (???) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/omniorb/libomnithread.3.3.dylib
0x11fb8000 - 0x11fb8ffb +DTraceSupport.dylib ??? (???) <3AD5C850-52E5-75B9-2E02-5381F997080E> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/DTraceSupport.dylib
0x11fbc000 - 0x11fbdff0 +Langinfo.bundle ??? (???) <95B3A7A2-4909-4CFA-80FD-6BC7718EFD24> /Volumes/Untitled/Applications/Adobe InDesign CS4 Server/Plug-Ins/PublishingEngine/PEKernel.InDesignPlugin/Versions/A/Frameworks/perl5.8.8. bundle/Contents/Frameworks/Perl/darwin-thread-multi-2level/auto/I18N/Langinfo/Langinfo.bun dle
0x11fc1000 - 0x11fd3ff7 libTraditionalChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <EA696A00-4054-6F65-0F86-7901EAB5969F> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
0x11fd7000 - 0x11fe5fe7 libSimplifiedChineseConverter.dylib 49.0.0 (compatibility 1.0.0) <B408E41B-D90F-4A04-DB72-D61C8C52BFBC> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
0x11fe9000 - 0x11ff6ff7 +com.adobe.asneu.framework asneu version 1.6.2f01 (1.6.2) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/asneu.framework/asneu
0x11ffa000 - 0x11ffcff7 +MD5.bundle ??? (???) <C8A5CEAC-1BA3-9A19-4522-FF2D6F493DE7> /Volumes/Untitled/Applications/Adobe InDesign CS4 Server/Plug-Ins/PublishingEngine/PEKernel.InDesignPlugin/Versions/A/Frameworks/perl5.8.8. bundle/Contents/Frameworks/Perl/darwin-thread-multi-2level/auto/Digest/MD5/MD5.bundle
0x16571000 - 0x16598ff7 +com.adobe.InDesign.Support for AppleScript 6.0.1.525 (???) <836794C8-2396-51A1-44B9-0C7AEC613C5D> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Support for AppleScript.InDesignPlugin/Support for AppleScript
0x165c5000 - 0x16666fc3 +com.adobe.amt.services AMTServices 2.0.1.10077 (BuildVersion: 53.352460; BuildDate: Tue Jul 29 2008 16:31:09) (2 . 0) <31E82904-C3C2-424E-A1AE-A5EFADBB19B8> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/amtservices.framework/amtservices
0x166b4000 - 0x166fbfc7 +com.adobe.adobe_caps adobe_caps 2.0.99.0 (2.0.99.0) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/adobe_caps.framework/adobe_caps
0x16701000 - 0x16b83fe3 +AdobeLM_libFNP.dylib ??? (???) <02E9AC76-9CC6-4974-AF05-48E737C2CC20> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/amtlib.framework/Versions/A/AdobeLM_libFNP. dylib
0x16f43000 - 0x16f7cfff +com.adobe.InDesign.SoapServer 6.0.5.602 (???) <2AB18072-939F-CDE0-1AC9-525352785DCC> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Server/SoapServer.InDesignPlugin/SoapServer
0x16f8a000 - 0x16fd4ff7 +com.adobe.InDesign.Master Page 6.0.5.602 (???) <D6582C88-4237-8213-53FE-00580F46BE4D> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Master Page.InDesignPlugin/Master Page
0x16fe5000 - 0x16ff0fff +com.adobe.InDesign.Text Editor Model 6.0.1.525 (???) <11E8E063-8E16-628B-3203-A9DC1B3C3471> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Text Editor Model.InDesignPlugin/Text Editor Model
0x16ff7000 - 0x16ff9ff2 +IO.bundle ??? (???) <4641556A-8B3B-BF99-DAAB-254FB851D8D9> /Volumes/Untitled/Applications/Adobe InDesign CS4 Server/Plug-Ins/PublishingEngine/PEKernel.InDesignPlugin/Versions/A/Frameworks/perl5.8.8. bundle/Contents/Frameworks/Perl/darwin-thread-multi-2level/auto/IO/IO.bundle
0x17800000 - 0x17966fef +com.adobe.InDesign.AppFramework 6.0.5.602 (???) <15EE4835-9ED2-08DE-DA75-032040C7CC4A> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/AppFramework.InDesignPlugin/AppFramewor k
0x17ad9000 - 0x17b75fff +com.adobe.InDesign.Hyperlinks 6.0.5.602 (???) <8A3787BA-53DE-DAAD-C67E-424B6566661F> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Hyperlinks.InDesignPlugin/Hyperlinks
0x17b96000 - 0x17cd1ff7 +com.adobe.InDesign.Package and Preflight 6.0.5.602 (???) <42DE545E-FCF9-4736-4157-178A07378FB7> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Prepress/Package and Preflight.InDesignPlugin/Package and Preflight
0x17d11000 - 0x17d71fc7 +AdobeXMP ??? (???) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
0x17d80000 - 0x17da4ff6 +AdobeAXE8SharedExpat ??? (???) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/A dobeAXE8SharedExpat
0x17dac000 - 0x17f2cfeb +com.adobe.InDesign.Text Walker 6.0.5.602 (???) <0C2D8BAE-F573-713B-1037-A6613326D243> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Text Walker.InDesignPlugin/Text Walker
0x17fbe000 - 0x18067ff3 +com.adobe.InDesign.Color Management 6.0.1.525 (???) <5ECD4967-38B9-EA58-3E7B-6118DC1F67EC> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Color Management.InDesignPlugin/Color Management
0x180b4000 - 0x180d7fef +com.adobe.InDesign.Utilities 6.0.1.525 (???) <6A819602-09CD-AC7C-564E-108B10C3498C> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Utilities.InDesignPlugin/Utilities
0x180ef000 - 0x180f6ff5 +PathTypeLib.dylib ??? (???) <EC4CD880-C89E-CD94-F6CA-4B7F0DC4927D> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/PathTypeLib.dylib
0x18300000 - 0x18423fff +com.adobe.InDesign.Document Framework 6.0.1.525 (???) <C4F3DB08-8D01-D1C2-ECB0-3FE6D0AA5765> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Document Framework.InDesignPlugin/Document Framework
0x1844f000 - 0x1857afff +com.adobe.InDesign.Generic Page Item 6.0.5.602 (???) <E9B8D703-F7D5-82B1-E10C-1902867850CC> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Generic Page Item.InDesignPlugin/Generic Page Item
0x185ae000 - 0x185f5ffb +com.adobe.InDesign.Gradient Fill 6.0.1.525 (???) <C7FB6FD1-D3ED-1CD8-9B4A-33C1A5836679> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Gradient Fill.InDesignPlugin/Gradient Fill
0x1860a000 - 0x1869bff7 +com.adobe.InDesign.Graphics 6.0.1.525 (???) <49B48F88-5DA1-8295-61A1-02DDDFDEE349> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Graphics.InDesignPlugin/Graphics
0x186b9000 - 0x187abfef +com.adobe.InDesign.Transparency 6.0.5.602 (???) <4849AE06-EC98-0BE4-4198-C47C5CD4FD91> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Transparency.InDesignPlugin/Transparenc y
0x187f1000 - 0x19523fff +com.adobe.psl AdobePSL 11.0.0.1724 (11.0.0.1724) <6BE27A60-E0F9-4483-8E57-2A7A5227D878> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobePSL.framework/Versions/A/AdobePSL
0x19857000 - 0x19a0dfff +com.adobe.InDesign.XML 6.0.5.602 (???) <90796A76-1C3F-910A-0B22-69A60DFC0124> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/XML.InDesignPlugin/XML
0x19a9a000 - 0x19b6cfe7 +AdobeAXEDOMCore ??? (???) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeA XEDOMCore
0x19b9e000 - 0x19bb1ff7 +com.adobe.InDesign.WorldReady 6.0.1.525 (???) <C89608D4-D37F-32E9-016B-FEEFCFE8E5BA> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/WorldReady.InDesignPlugin/WorldReady
0x19bbb000 - 0x19bf5ff5 +com.adobe.InDesign.TOC 6.0.1.525 (???) <2F17BA83-DF30-6CEC-DE39-D0690D1016D7> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/TOC.InDesignPlugin/TOC
0x19c02000 - 0x19fcdfe7 +com.adobe.InDesign.Text 6.0.5.602 (???) <F18C20B2-F10C-BDE3-862B-B6CA3B8F3F5B> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Text.InDesignPlugin/Text
0x1a07f000 - 0x1a0c7ff7 +com.adobe.InDesign.Text Wrap 6.0.1.525 (???) <AE4E955E-2E5C-5B1B-2E5F-E7D512CDFD31> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Text Wrap.InDesignPlugin/Text Wrap
0x1a0d9000 - 0x1a2a9fff +com.adobe.InDesign.Table Model 6.0.5.602 (???) <C10BBD1F-2EA7-AD9B-50E4-09FC6500A5F9> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Table Model.InDesignPlugin/Table Model
0x1a327000 - 0x1a369ff3 +com.adobe.InDesign.Stroke and Fill 6.0.1.525 (???) <8C658794-EEC6-4940-6F3A-6FB08AFA5316> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Stroke and Fill.InDesignPlugin/Stroke and Fill
0x1a37d000 - 0x1a41bff3 +com.adobe.InDesign.Spread 6.0.5.602 (???) <96DD2833-E85A-90C7-96F2-ED4ABB753588> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Spread.InDesignPlugin/Spread
0x1a43e000 - 0x1a476fff +com.adobe.InDesign.Spline 6.0.5.602 (???) <76419F0E-ADF0-7E5B-4CB6-5206656EF67D> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Spline.InDesignPlugin/Spline
0x1a48f000 - 0x1a4d0ffb +com.adobe.InDesign.Linguistics 6.0.1.525 (???) <B02C09C2-4716-BB72-71A1-C3E941A5A9D2> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Linguistics.InDesignPlugin/Linguistics
0x1a4ee000 - 0x1a4f8ff3 +com.adobe.InDesign.Spelling Service 6.0.1.525 (???) <B6057908-5E86-0174-48A8-994AE968FA46> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Spelling Service.InDesignPlugin/Spelling Service
0x1a501000 - 0x1a514ff2 +com.adobe.InDesign.Sections 6.0.5.602 (???) <B00E1958-293A-1EA9-7E71-DE6D1FBA1CF6> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Sections.InDesignPlugin/Sections
0x1a51f000 - 0x1a571fff +com.adobe.InDesign.Scripting 6.0.1.525 (???) <A1056CBA-361C-49F0-5C63-6A329935C913> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Scripting.InDesignPlugin/Scripting
0x1a583000 - 0x1a6b4fff +com.adobe.InDesign.Print 6.0.1.525 (???) <6D89C73D-3DF0-A057-A900-6EC90B37B8AF> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Print.InDesignPlugin/Print
0x1a70d000 - 0x1a73fff7 +com.adobe.InDesign.PNG Import Filter 6.0.1.525 (???) <1377A845-0D2C-9A07-A207-1F7010704AF1> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/PNG Import Filter.InDesignPlugin/PNG Import Filter
0x1a748000 - 0x1a784ff3 +com.adobe.InDesign.Book 6.0.1.525 (???) <CBBC5CD0-A6E6-62C6-43D4-275976E199EE> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Book.InDesignPlugin/Book
0x1a794000 - 0x1a87bfe3 +com.adobe.InDesign.Image 6.0.5.602 (???) <96627382-5063-62EA-2575-6260188C3635> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Image.InDesignPlugin/Image
0x1a8c0000 - 0x1a96cfef +com.adobe.InDesign.EPS Page Item 6.0.5.602 (???) <2765744F-8409-967C-9F5D-D99A65CB7D3D> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/EPS Page Item.InDesignPlugin/EPS Page Item
0x1a991000 - 0x1ab26fff +com.adobe.InDesign.PDF 6.0.5.602 (???) <A8971B42-A352-B465-6BED-D0CB0C6AE507> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/PDF.InDesignPlugin/PDF
0x1ab9b000 - 0x1ac83fdf +AdobePDFPort ??? (???) <333B486A-653F-4A0A-9CFA-8CD902E7821A> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobePDFPort.framework/Versions/A/AdobePDFP ort
0x1acc8000 - 0x1ace3ff9 +AdobePDFSettings ??? (???) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobePDFSettings.framework/Versions/A/Adobe PDFSettings
0x1acfd000 - 0x1b2f6fdf +AdobePDFL ??? (???) <234D72D6-701D-4C1E-A2B5-8557DD509ADF> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobePDFL.framework/Versions/A/AdobePDFL
0x1b43a000 - 0x1b4c72cb +libicucnv.dylib.36.0 36.0.0 (compatibility 36.0.0) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/ICUConverter.framework/Versions/3.6/libicuc nv.dylib.36.0
0x1b4f4000 - 0x1b51fffb +com.adobe.InDesign.Path Type 6.0.5.602 (???) <2BDD7726-1558-57AC-8301-24BA9D57BA1D> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Path Type.InDesignPlugin/Path Type
0x1b530000 - 0x1b65aff7 +com.adobe.InDesign.Links 6.0.5.602 (???) <9385FC0B-F9D0-3907-201B-25EA06683297> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Links.InDesignPlugin/Links
0x1b6b5000 - 0x1b6cfff7 +com.adobe.InDesign.Layout 6.0.1.525 (???) <89439409-BAAE-9AC4-752F-AEA03657A868> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Layout.InDesignPlugin/Layout
0x1b6da000 - 0x1b6f3ff2 +com.adobe.InDesign.Layer 6.0.1.525 (???) <FEE0A0D4-0450-6D46-BF52-776C3A88F70D> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Layer.InDesignPlugin/Layer
0x1b700000 - 0x1b7c1ff5 +com.adobe.InDesign.Indexing 6.0.1.525 (???) <C442CC3C-611D-94CF-6A1C-01C347819CCB> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Indexing.InDesignPlugin/Indexing
0x1b7fa000 - 0x1b8bdffb +com.adobe.InDesign.InCopyShared 6.0.5.602 (???) <0DD36BCE-DA8F-4D9B-2291-09EBBE96433B> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/InCopyShared.InDesignPlugin/InCopyShare d
0x1b903000 - 0x1b9bbfff +com.adobe.InDesign.Font Manager 6.0.1.525 (???) <252A441F-8166-60D9-828B-D36CC523AB3F> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Font Manager.InDesignPlugin/Font Manager
0x1b9d4000 - 0x1ba0afff +com.adobe.InDesign.Conditional Text 6.0.1.525 (???) <54BF23C4-043E-35DD-E770-F8F3527A1502> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Conditional Text.InDesignPlugin/Conditional Text
0x1ba1d000 - 0x1ba5cfef +com.adobe.InDesign.CompFontMgr 6.0.1.525 (???) <122E6D2E-AFC9-86F5-E9E7-A02ECEB875EB> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/CompFontMgr.InDesignPlugin/CompFontMgr
0x1ba6d000 - 0x1bac4fff +com.adobe.InDesign.CJKGrid 6.0.1.525 (???) <11318206-410E-1060-C343-CB4721ADCDC4> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/CJKGrid.InDesignPlugin/CJKGrid
0x1badb000 - 0x1bb40ffb +com.adobe.InDesign.CJK Text Attributes 6.0.1.525 (???) <5AE113C4-2338-E42C-904B-3112E07E023E> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/CJK Text Attributes.InDesignPlugin/CJK Text Attributes
0x1bb5c000 - 0x1bb81fff +com.adobe.InDesign.CellStyles.rpln 6.0.1.525 (???) <7F01B23B-1F8C-CEBF-E009-ABE88DA30559> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/CellStyles.rpln.InDesignPlugin/CellStyl es.rpln
0x1bb8f000 - 0x1bbf9fe5 +com.adobe.InDesign.BNCore 6.0.1.525 (???) <632E9EA8-76FA-A1D5-FB13-E2D9704B5825> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/BNCore.InDesignPlugin/BNCore
0x1bc0e000 - 0x1bc49fe8 +com.adobe.InDesign.AWS 6.0.1.525 (???) <9B268922-321E-A9A1-9750-9D56BC54C425> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/AWS.InDesignPlugin/AWS
0x1bc64000 - 0x1bcc6fe7 +com.adobe.InDesign.Assignments 6.0.1.525 (???) <2B7D8C93-E622-1FE9-CF5B-8E5A674AC204> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Assignments.InDesignPlugin/Assignments
0x1bced000 - 0x1bd68fe3 +com.adobe.InDesign.INXCore 6.0.5.602 (???) <BCE9EDA6-279A-7569-5C34-18C777D7D604> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/INXCore.InDesignPlugin/INXCore
0x1bd82000 - 0x1bdb5fff +com.adobe.InDesign.Snippet 6.0.5.602 (???) <C9361986-2AA4-DA6E-84F0-9CF33501F67D> /Applications/Adobe InDesign CS4 Server/Plug-Ins/XMedia/Snippet.InDesignPlugin/Snippet
0x1bdc4000 - 0x1bdd5fff +com.adobe.InDesign.SING 6.0.1.525 (???) <2737ED05-2174-0B8B-1D70-03ACC4A53E12> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Text/SING.InDesignPlugin/SING
0x1bde0000 - 0x1be5ffff +com.adobe.InDesign.DataMerge 6.0.5.602 (???) <F7475577-3620-AF8D-9C69-869975FB40AB> /Applications/Adobe InDesign CS4 Server/Plug-Ins/PMPack/DataMerge.InDesignPlugin/DataMerge
0x1be8c000 - 0x1be9affd +com.adobe.InDesign.Printer Styles 6.0.1.525 (???) <D184F4FC-FD10-525E-DB33-95027316EEF3> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Graphics/Printer Styles.InDesignPlugin/Printer Styles
0x1bea4000 - 0x1bef2fff +com.adobe.InDesign.Image Filters 6.0.1.525 (???) <00E65A71-90D5-B2AA-FEC9-21F06A996CC8> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Image Filters.InDesignPlugin/Image Filters
0x1befa000 - 0x1bf0ffff +com.adobe.InDesign.JPEG Export 6.0.1.525 (???) <501C8C98-9467-F1E8-07B0-908B20B6BE8E> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Graphics/JPEG Export.InDesignPlugin/JPEG Export
0x1bf1d000 - 0x1bff0ffb +com.adobe.InDesign.Dynamic Documents 6.0.5.602 (???) <E1739070-A8FC-BC15-AECF-A494BC48C0BF> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Graphics/Dynamic Documents.InDesignPlugin/Dynamic Documents
0x1c035000 - 0x1c116fe3 +AdobeSWFPort ??? (???) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeSWFPort.framework/Versions/A/AdobeSWFP ort
0x1c14a000 - 0x1c1d2fff +com.adobe.InDesign.Tagged Text Attributes 6.0.1.525 (???) <8CAC0D3D-3E9D-37A6-2F3E-41427B82F5D5> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Filters/Tagged Text Attributes.InDesignPlugin/Tagged Text Attributes
0x1c203000 - 0x1c29fff2 +com.adobe.InDesign.Tagged Text Filters 6.0.1.525 (???) <256E6B98-FA08-F359-AE7E-2D453B7DD39F> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Filters/Tagged Text Filters.InDesignPlugin/Tagged Text Filters
0x1c2ae000 - 0x1c3a5fef +com.adobe.InDesign.SangamServicer-Mapper 6.0.5.602 (???) <10C12B21-4ECB-7681-2F8B-6FE2A278B432> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Filters/SangamServicer-Mapper.InDesignPlugin/SangamServicer-Mapper
0x1c3ea000 - 0x1c436ffe +AdobeSangam 3.0.0 (compatibility 3.0.0) <7CA1710B-7675-42EA-A688-F3570ABB577B> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeSangam.framework/Versions/A/AdobeSanga m
0x1c499000 - 0x1c780ff7 +com.rsmg.InDesign.Plugin.PEKernel 2.9.4770 (???) <FEB96505-8F6A-A6CD-D046-AE60CF499CF1> /Applications/Adobe InDesign CS4 Server/Plug-Ins/PublishingEngine/PEKernel.InDesignPlugin/PEKernel
0x1c9e1000 - 0x1ca0cfff +liblog4cpp.dylib ??? (???) <99BCF8D7-92D4-1E84-49D0-22C32AE92B55> /Applications/Adobe InDesign CS4 Server/Plug-Ins/PublishingEngine/PEKernel.InDesignPlugin/Versions/A/Frameworks/liblog4cpp .dylib
0x1ca34000 - 0x1cb4eff3 +libperl.dylib 5.8.8 (compatibility 5.8.0) <BD08B96B-6068-2967-4C1A-3B7F672B5CD2> /Applications/Adobe InDesign CS4 Server/Plug-Ins/PublishingEngine/PEKernel.InDesignPlugin/Versions/A/Frameworks/perl5.8.8. bundle/Contents/Frameworks/Perl/darwin-thread-multi-2level/CORE/libperl.dylib
0x1cb7b000 - 0x1cbaffff +com.adobe.InDesign.Text Attributes 6.0.1.525 (???) <4ECA7E5A-B9C2-09AE-69AB-52451DAEB862> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Text Attributes.InDesignPlugin/Text Attributes
0x1cbc9000 - 0x1cbccff5 +com.adobe.InDesign.CJKLayout 6.0.1.525 (???) <1906E7D3-02B2-25B1-FDB4-04964082C021> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/CJKLayout.InDesignPlugin/CJKLayout
0x1cd1c000 - 0x1cd5ffff +com.adobe.InDesign.Asset PubLibrary 6.0.5.602 (???) <11A74B29-67E0-75EA-9567-6D0D779E0F0E> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Layout/Asset PubLibrary.InDesignPlugin/Asset PubLibrary
0x1cd81000 - 0x1cd9dff7 +com.adobe.InDesign.LILO 6.0.5.602 (???) <EC98BDC5-BA56-07B0-4E39-943EB070D094> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Dictionaries/LILO/LILO.InDesignPlugin/LILO
0x1cdaa000 - 0x1ce5601f +com.adobe.linguistic.LinguisticManager 4.0.1 (10335) <ED7B41D6-D971-4367-B8FD-B9D56614BC13> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeL inguistic
0x1ce7a000 - 0x1cedcfff +com.adobe.InDesign.FormField 6.0.1.525 (???) <CB04FD9E-0561-22EB-208E-85ED2DCA26E3> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/FormField.InDesignPlugin/FormField
0x1cf26000 - 0x1cf2cff7 +com.adobe.InDesign.PerformanceMetrics 6.0.1.525 (???) <1F57F0FD-2AA4-3A0A-C2F7-8F4C25E75BF9> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Utility/PerformanceMetrics.InDesignPlugin/PerformanceMetrics
0x1cf31000 - 0x1cf34ff3 +encoding.bundle ??? (???) <64C03C76-3F05-34DC-F166-994E1F3D677A> /Volumes/Untitled/Applications/Adobe InDesign CS4 Server/Plug-Ins/PublishingEngine/PEKernel.InDesignPlugin/Versions/A/Frameworks/perl5.8.8. bundle/Contents/Frameworks/Perl/darwin-thread-multi-2level/auto/PerlIO/encoding/encoding.b undle
0x1cf38000 - 0x1cf3eff7 +Util.bundle ??? (???) <AEC9F79D-F2F0-6CBE-646A-CF3FF5631B18> /Volumes/Untitled/Applications/Adobe InDesign CS4 Server/Plug-Ins/PublishingEngine/PEKernel.InDesignPlugin/Versions/A/Frameworks/perl5.8.8. bundle/Contents/Frameworks/Perl/darwin-thread-multi-2level/auto/List/Util/Util.bundle
0x1cf42000 - 0x1cf43fe7 +Base64.bundle ??? (???) <5E1F871E-49CE-964B-1BA2-DAFE2AB7608E> /Volumes/Untitled/Applications/Adobe InDesign CS4 Server/Plug-Ins/PublishingEngine/PEKernel.InDesignPlugin/Versions/A/Frameworks/perl5.8.8. bundle/Contents/Frameworks/Perl/darwin-thread-multi-2level/auto/MIME/Base64/Base64.bundle
0x1cf49000 - 0x1cf4ffe7 +Encode.bundle ??? (???) <A67D3086-2444-0BA9-3710-C1A410D85A73> /Volumes/Untitled/Applications/Adobe InDesign CS4 Server/Plug-Ins/PublishingEngine/PEKernel.InDesignPlugin/Versions/A/Frameworks/perl5.8.8. bundle/Contents/Frameworks/Perl/darwin-thread-multi-2level/auto/Encode/Encode.bundle
0x1cf54000 - 0x1cf56ff2 +com.adobe.InDesign.SimpleTextImportFilter 6.0.1.525 (???) <C8BE8CBF-8719-573B-39CE-860CA9F69FEC> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Filters/SimpleTextImportFilter.InDesignPlugin/SimpleTextImportFilter
0x1cf5a000 - 0x1cf5eff6 +Socket.bundle ??? (???) <501CC47A-5EC7-C0C1-2434-57A5FE16AF30> /Volumes/Untitled/Applications/Adobe InDesign CS4 Server/Plug-Ins/PublishingEngine/PEKernel.InDesignPlugin/Versions/A/Frameworks/perl5.8.8. bundle/Contents/Frameworks/Perl/darwin-thread-multi-2level/auto/Socket/Socket.bundle
0x1cf6d000 - 0x1cf8201f +Expat.bundle ??? (???) /Volumes/Untitled/Applications/Adobe InDesign CS4 Server/Plug-Ins/PublishingEngine/PEKernel.InDesignPlugin/Versions/A/Frameworks/perl5.8.8. bundle/Contents/Frameworks/Extras/auto/XML/Parser/Expat/Expat.bundle
0x1cf97000 - 0x1cfa1fff +PACLib.dylib ??? (???) <520D4A43-539F-435B-8BBF-0B23E2FAC044> /Library/Application Support/Adobe/Linguistics/4.0/Providers/Plugins2/WRLiloPlugin1.1.bundle/Contents/SharedSu pport/PACLib.dylib
0x1cfb4000 - 0x1cfb9fff +com.adobe.InDesign.InCopyImport 6.0.1.525 (???) <FA4B4F32-C138-D366-7126-A23B4BB91339> /Applications/Adobe InDesign CS4 Server/Plug-Ins/InCopyWorkflow/InCopyImport.InDesignPlugin/InCopyImport
0x1cff8000 - 0x1cffaff3 +Fcntl.bundle ??? (???) <9F2415F4-BF7B-F81E-ED02-138D130B7794> /Volumes/Untitled/Applications/Adobe InDesign CS4 Server/Plug-Ins/PublishingEngine/PEKernel.InDesignPlugin/Versions/A/Frameworks/perl5.8.8. bundle/Contents/Frameworks/Perl/darwin-thread-multi-2level/auto/Fcntl/Fcntl.bundle
0x1d153000 - 0x1d179ff3 +com.adobe.InDesign.Workgroup 6.0.1.525 (???) <5E8007DF-B840-BF5D-6332-A043FEFECF09> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Workgroup.InDesignPlugin/Workgroup
0x1d3c2000 - 0x1d3e3fef +com.adobe.SING 12.0.4 (12.0.4) <440244FD-6A2F-4128-B9BF-F1C804B1CB6F> /Library/Application Support/Adobe/SING/Mark II/SING.bundle/Contents/MacOS/SING
0x1d3f9000 - 0x1d3fcfff +HiRes.bundle ??? (???) <F7184F3E-626E-ED2F-8AE4-8C212BF8B0B2> /Volumes/Untitled/Applications/Adobe InDesign CS4 Server/Plug-Ins/PublishingEngine/PEKernel.InDesignPlugin/Versions/A/Frameworks/perl5.8.8. bundle/Contents/Frameworks/Perl/darwin-thread-multi-2level/auto/Time/HiRes/HiRes.bundle
0x1efce000 - 0x1efe2fff +com.adobe.InDesign.Workgroup Client 6.0.5.602 (???) <A6C5E650-B582-B6DD-BB7F-AB58B37C3A36> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Workgroup Client.InDesignPlugin/Workgroup Client
0x1efeb000 - 0x1eff5fff +com.adobe.InDesign.Sound 6.0.1.525 (???) <1259513C-7F39-2AB1-AD71-A1FC2F79E0BD> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Sound.InDesignPlugin/Sound
0x1f900000 - 0x1f9c9ff1 +com.adobe.SINGCore 12.0.11 (12.0.11) <87B1D0A5-E4F3-4239-A81E-BB5FA0B242D8> /Library/Application Support/Adobe/SING/Mark II/SINGCore.bundle/Contents/MacOS/SINGCore
0x1fb98000 - 0x1fbb9fef +com.adobe.SING 12.0.4 (12.0.4) <440244FD-6A2F-4128-B9BF-F1C804B1CB6F> /Library/Application Support/Adobe/SING/Mark II/SING.bundle/Contents/MacOS/SING
0x1fbcf000 - 0x1fe95fd3 +com.adobe.TIN TIN 2.0.17 (2.0.17) /Library/Application Support/Adobe/SING/Mark II/TIN.bundle/Contents/MacOS/TIN
0x20028000 - 0x20119fcf +libomniORB4.1.2.dylib ??? (???) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/omniorb/libomniORB4.1.2.dylib
0x201e8000 - 0x201f6fff +com.adobe.InDesign.Movie 6.0.1.525 (???) <CD84063B-B1C2-160A-8D6E-64F63185780E> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Movie.InDesignPlugin/Movie
0x20300000 - 0x20381ff3 +com.adobe.InDesign.Support for JavaScript 6.0.5.602 (???) <4B8DEAF9-54A9-3989-F8B7-4DD622689EA8> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Support for JavaScript.InDesignPlugin/Support for JavaScript
0x203a9000 - 0x20477fff +AdobeExtendScript 3.7.0 (compatibility 3.7.0) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/Adob eExtendScript
0x204b9000 - 0x2055afd7 +AdobeScCore 3.7.0 (compatibility 3.7.0) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCor e
0x20598000 - 0x205bffff +com.adobe.InDesign.InCopy Bridge 6.0.1.525 (???) <4BF8F46E-62A0-EC20-3568-7B3C3357EF9F> /Applications/Adobe InDesign CS4 Server/Plug-Ins/InCopyWorkflow/InCopy Bridge.InDesignPlugin/InCopy Bridge
0x205ee000 - 0x205f5fff +com.adobe.InDesign.GenericSettings 6.0.1.525 (???) <D263ECEE-F572-B47F-CB2D-A78AE6BFF82E> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/GenericSettings.InDesignPlugin/GenericS ettings
0x20700000 - 0x20798fff com.apple.applescript 2.1.2 (2.1.2) <E4A816FB-C4A5-DE64-963B-3DCF031124CF> /System/Library/PrivateFrameworks/AppleScript.framework/Versions/A/AppleScript
0x207e8000 - 0x207edfff +Dumper.bundle ??? (???) <84490E47-B6D7-2E27-815F-CF4F7BF703B2> /Volumes/Untitled/Applications/Adobe InDesign CS4 Server/Plug-Ins/PublishingEngine/PEKernel.InDesignPlugin/Versions/A/Frameworks/perl5.8.8. bundle/Contents/Frameworks/Perl/darwin-thread-multi-2level/auto/Data/Dumper/Dumper.bundle
0x207f1000 - 0x207f5ff9 +com.adobe.InDesign.InCopyExport 6.0.1.525 (???) <A045D95D-6908-5589-763D-96A1AAA74B9F> /Applications/Adobe InDesign CS4 Server/Plug-Ins/InCopyWorkflow/InCopyExport.InDesignPlugin/InCopyExport
0x21600000 - 0x21674ffb +com.adobe.InDesign.InCopyWorkflow 6.0.1.525 (???) <929E96D9-6D28-5C9F-57E7-EDC9C120F158> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/InCopyWorkflow.InDesignPlugin/InCopyWor kflow
0x216ab000 - 0x2175eff3 +com.adobe.InDesign.Paragraph Composer 6.0.5.602 (???) <47961019-151B-B31E-56B2-ABB0DA059816> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Paragraph Composer.InDesignPlugin/Paragraph Composer
0x2177c000 - 0x217adff7 +com.adobe.InDesign.Photoshop Import Filter 6.0.5.602 (???) <B8B3CC0D-8B25-438C-4F2C-9346470AF3F9> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Photoshop Import Filter.InDesignPlugin/Photoshop Import Filter
0x217e0000 - 0x217f3fff +AdobeSFL ??? (???) <BD87753C-62D7-41F1-BE66-E848F7888FCD> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeSFL.framework/Versions/A/AdobeSFL
0x22900000 - 0x22965fe3 +MMXCore ??? (???) <F9B1B4ED-E3A5-4629-B79D-6077319ED4DB> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobePSL.framework/PlugIns/mmxcore.plugin/C ontents/MacOS/MMXCore
0x22a03000 - 0x22a4aff7 +MultiProcessor Support ??? (???) <F3BFBFC8-1EE7-419A-AAD4-EABD31CCECD1> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobePSL.framework/PlugIns/multiprocessor support.plugin/Contents/MacOS/MultiProcessor Support
0x230ac000 - 0x230dfffc +com.adobe.Reader for DOCX Reader for DOCX 5.1.0.1700 (5.1.0.1700) <A5F4E8CA-4476-4746-910A-269983557ED7> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Filters/sangam readers/Reader for DOCX.smrd/Contents/MacOS/Reader for DOCX
0x230fb000 - 0x231b8fef +AdobeAXSLE ??? (???) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeAXSLE.framework/Versions/A/AdobeAXSLE
0x231e7000 - 0x2326bfe0 +AdobeSangamML ??? (???) <51D6504F-BA1C-446F-A353-5D651CB6D9B3> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeSangamML.framework/Versions/A/AdobeSan gamML
0x232b9000 - 0x2331efcf +com.adobe.Reader for Excel Reader for Excel 5.1.0.1700 (5.1.0.1700) <210225FA-7FF2-409E-A1B7-C9D3B47A57C2> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Filters/sangam readers/Reader for Excel.smrd/Contents/MacOS/Reader for Excel
0x23344000 - 0x2343efd3 +com.adobe.Reader for Quark Reader for Quark 5.1.0.1700 (5.1.0.1700) <CB9853E1-190C-4609-975B-E7C59F90CB88> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Filters/sangam readers/Reader for Quark.smrd/Contents/MacOS/Reader for Quark
0x2348e000 - 0x234efff8 +com.adobe.Reader for RTF Reader for RTF 5.1.0.1700 (5.1.0.1700) <4047694B-48F2-44A8-A43E-230C22F78C59> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Filters/sangam readers/Reader for RTF.smrd/Contents/MacOS/Reader for RTF
0x2351a000 - 0x23586fef +com.adobe.Reader for Word Reader for Word 5.1.0.2614 (5.1.0.2614) <33EE7443-8DDD-48A3-A797-4803D627085B> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Filters/sangam readers/Reader for Word.smrd/Contents/MacOS/Reader for Word
0x235af000 - 0x2361efda +com.adobe.Reader for XLSX Reader for XLSX 5.1.0.1700 (5.1.0.1700) <CB65381D-9B2F-4531-B03F-CCD017F2940E> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Filters/sangam readers/Reader for XLSX.smrd/Contents/MacOS/Reader for XLSX
0x2366f000 - 0x23676ff7 +com.adobe.ZTextReader ZTextReader 5.1.0.1700 (5.1.0.1700) <723B306D-098C-4D3D-8458-252B42473BF8> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Filters/sangam readers/ZTextReader.smrd/Contents/MacOS/ZTextReader
0x236ff000 - 0x23764fef +com.adobe.InDesign.XMLParser 6.0.1.525 (???) <FCC7C087-44E1-6D1A-B258-95DD8E9936E6> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/XMLParser.InDesignPlugin/XMLParser
0x23788000 - 0x237aeff3 +com.adobe.InDesign.Text Wrap Path 6.0.1.525 (???) <FDAEA15D-8337-EB94-6411-DA8F0CFC60E2> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Text Wrap Path.InDesignPlugin/Text Wrap Path
0x237b7000 - 0x237e7fff +com.adobe.InDesign.TableStyles 6.0.1.525 (???) <7E7EDF8A-92C0-9A1C-F161-04D0DAFDBED3> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/TableStyles.InDesignPlugin/TableStyles
0x237f4000 - 0x23820fff +com.adobe.InDesign.Open Place 6.0.5.602 (???) <91F0AE0A-AA12-C504-747F-098742F12746> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Open Place.InDesignPlugin/Open Place
0x23834000 - 0x23887fff +com.adobe.InDesign.Metadata 6.0.1.525 (???) <A7585FF7-2045-1F76-F6DE-CD78A29C1733> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Metadata.InDesignPlugin/Metadata
0x238ab000 - 0x2392dfd7 +AdobeXMPFiles ??? (???) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeXMPFiles.framework/Versions/A/AdobeXMP Files
0x23944000 - 0x23965fff +com.adobe.InDesign.Media 6.0.1.525 (???) <5B237B2B-89CA-6337-7696-E26923500855> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Media.InDesignPlugin/Media
0x23971000 - 0x23982fff +com.adobe.InDesign.Guides 6.0.1.525 (???) <CB916250-F9C7-8BD2-68CD-8A72F36F287C> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Guides.InDesignPlugin/Guides
0x2398d000 - 0x239a3ff9 +com.adobe.InDesign.Document Actions 6.0.1.525 (???) <ED23A595-8ED3-2BB7-D0A4-7CFC6E844DAB> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Document Actions.InDesignPlugin/Document Actions
0x239ad000 - 0x239dbff7 +com.adobe.InDesign.Behavior 6.0.1.525 (???) <9377C388-71C7-58FD-1FBF-41F704D68631> /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/MacOS/Required/Behavior.InDesignPlugin/Behavior
0x239f2000 - 0x239f9ff8 +com.adobe.InDesign.Data Services 6.0.1.525 (???) <4635EF1C-BD26-D088-5E01-81D3F414B6C4> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Data Services/Data Services.InDesignPlugin/Data Services
0x23f00000 - 0x23f1afff +POSIX.bundle ??? (???) <38DF1DEA-BDD6-2F3D-AF66-579A5D05B780> /Volumes/Untitled/Applications/Adobe InDesign CS4 Server/Plug-Ins/PublishingEngine/PEKernel.InDesignPlugin/Versions/A/Frameworks/perl5.8.8. bundle/Contents/Frameworks/Perl/darwin-thread-multi-2level/auto/POSIX/POSIX.bundle
0x23f20000 - 0x23f2cfff +com.adobe.InDesign.SaveBack 6.0.5.602 (???) <AFC21C3B-901F-3E9D-7350-0B8002C44047> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Filters/SaveBack.InDesignPlugin/SaveBack
0x23f35000 - 0x23f50ff3 +com.adobe.InDesign.Optical Kerning 6.0.1.525 (???) <A3D38EF9-1B03-52E9-BDE6-F6478387CD1E> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Text/Optical Kerning.InDesignPlugin/Optical Kerning
0x23f59000 - 0x23f67fff +com.adobe.InDesign.Scotch Rules 6.0.1.525 (???) <9C850030-A37B-9DDF-1087-A1D6EBAC51C9> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Page Item/Scotch Rules.InDesignPlugin/Scotch Rules
0x25600000 - 0x256f8fff +com.adobe.InDesign.JBX 6.0.1.525 (???) <2CEA01DA-4E59-3BFC-151E-985A1232201F> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Sandbox/JBX.InDesignPlugin/JBX
0x25787000 - 0x25798fff +com.adobe.InDesign.Create Outlines 6.0.1.525 (???) <CF2127CA-57BA-9233-293A-F721042D87C8> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Text/Create Outlines.InDesignPlugin/Create Outlines
0x2591c000 - 0x25944ff7 +com.adobe.InDesign.Corba Generator 6.0.1.525 (???) <8354EB4F-D4A2-0A60-A3DB-5611627CD7F2> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Server/Corba Generator.InDesignPlugin/Corba Generator
0x2594e000 - 0x2599dff3 +com.adobe.InDesign.SangamExport 6.0.1.525 (???) <1DBCC9FD-20F9-187E-89E5-49583E06DB1C> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Filters/SangamExport.InDesignPlugin/SangamExport
0x259bb000 - 0x259d1feb +com.adobe.InDesign.Media Import Filter 6.0.1.525 (???) <A8EFFA76-DC8C-47C2-278C-5BC7C5362F84> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Filters/Media Import Filter.InDesignPlugin/Media Import Filter
0x259da000 - 0x259e6ff5 +com.adobe.InDesign.DTTransform 6.0.1.525 (???) <77A01254-A26B-750E-E875-A7739011E06A> /Applications/Adobe InDesign CS4 Server/Plug-Ins/Data Services/DTTransform.InDesignPlugin/DTTransform
0x25e74000 - 0x25ec3fc3 +com.winsoft.wrliloplugin 1.1rc3 (1.1rc3) <AADDEE49-9D1D-4992-A6C7-D5857100F434> /Library/Application Support/Adobe/Linguistics/4.0/Providers/Plugins2/WRLiloPlugin1.1.bundle/Contents/MacOS/WR LiloPlugin1.1
0x40000000 - 0x400ae030 +AdobeJP2K ??? (???) /Applications/Adobe InDesign CS4 Server/InDesignServer.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
0x8fe00000 - 0x8fe4162b dyld 132.1 (???) <1C06ECD9-A2D7-BB10-AF50-0F2B598A7DEC> /usr/lib/dyld
0x90003000 - 0x900e3fe7 com.apple.vImage 4.1 (4.1) <D029C515-08E1-93A6-3705-DD062A3A672C> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Ve rsions/A/vImage
0x900e4000 - 0x901a0fff com.apple.ColorSync 4.6.8 (4.6.8) <920DD017-8B41-7334-E554-A85DB99EBD5A> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/ColorSync
0x901a1000 - 0x90272fe3 ColorSyncDeprecated.dylib 4.6.0 (compatibility 1.0.0) <C618942F-BC01-0565-18CF-477B63C02181> /System/Library/Frameworks/ApplicationServices.framework/Frameworks/ColorSync.framework/V ersions/A/Resources/ColorSyncDeprecated.dylib
0x90273000 - 0x90277ff7 libGIF.dylib ??? (???) <9E51F8ED-83B4-DA41-1E2F-CFA726936A30> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libGIF.dylib
0x90329000 - 0x90329ff7 com.apple.vecLib 3.6 (vecLib 3.6) <FF4DC8B6-0AB0-DEE8-ADA8-7B57645A1F36> /System/Library/Frameworks/vecLib.framework/Versions/A/vecLib
0x9032e000 - 0x90331fe7 libmathCommon.A.dylib 315.0.0 (compatibility 1.0.0) <1622A54F-1A98-2CBE-B6A4-2122981A500E> /usr/lib/system/libmathCommon.A.dylib
0x90332000 - 0x90337ff7 com.apple.OpenDirectory 10.6 (10.6) <0603680A-A002-D294-DE83-0D028C6BE884> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x90338000 - 0x9033cff7 libGFXShared.dylib ??? (???) <09540618-2ED1-72C4-61CB-938B35927568> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x9033d000 - 0x9033eff7 com.apple.audio.units.AudioUnit 1.6.7 (1.6.7) <93EC71F1-4D4E-F456-8EFE-32E7EFD7A064> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x9033f000 - 0x90346ff3 com.apple.print.framework.Print 6.1 (237.1) <F5AAE53D-5530-9004-A9E3-2C1690C5328E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
0x909c3000 - 0x90a6bffb com.apple.QD 3.36 (???) <FA2785A4-BB69-DCB4-3BA3-7C89A82CAB41> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
0x90a6c000 - 0x90b04fe7 edu.mit.Kerberos 6.5.11 (6.5.11) <F36DB665-A88B-7F5B-6244-6A2E7FFFF668> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x90b05000 - 0x90b97fe7 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
0x90b98000 - 0x90ca4fe7 libGLProgrammability.dylib ??? (???) <6167CEB0-D8D6-C4D9-DD74-49755ADB540F> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLProgrammability.dyl ib
0x90fbc000 - 0x91000ff3 com.apple.coreui 2 (114) <2234855E-3BED-717F-0BFA-D1A289ECDBDA> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x91001000 - 0x91047ff7 libauto.dylib ??? (???) <29422A70-87CF-10E2-CE59-FEE1234CFAAE> /usr/lib/libauto.dylib
0x91048000 - 0x91059ff7 com.apple.LangAnalysis 1.6.6 (1.6.6) <3036AD83-4F1D-1028-54EE-54165E562650> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalys is.framework/Versions/A/LangAnalysis
0x9106d000 - 0x910bafeb com.apple.DirectoryService.PasswordServerFramework 6.1 (6.1) <136BFA48-D456-B677-3B5D-40A6946C3A09> /System/Library/PrivateFrameworks/PasswordServer.framework/Versions/A/PasswordServer
0x910bb000 - 0x910d7fe3 com.apple.openscripting 1.3.1 (???) <2A748037-D1C0-6D47-2C4A-0562AF799AC9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework /Versions/A/OpenScripting
0x9111c000 - 0x9113dfe7 com.apple.opencl 12.3.6 (12.3.6) <B4104B80-1CB3-191C-AFD3-697843C6BCFF> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x911b3000 - 0x911beff7 libGL.dylib ??? (???) <3E34468F-E9A7-8EFB-FF66-5204BD5B4E21> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x911bf000 - 0x911c2ff7 libCoreVMClient.dylib ??? (???) <37F56237-4ABA-E5B5-968D-70FFE357E8E0> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x911c3000 - 0x91227ffb 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
0x91332000 - 0x9135aff7 libxslt.1.dylib 3.24.0 (compatibility 3.0.0) <E761F29A-328B-29D9-3DF0-023F2C21E500> /usr/lib/libxslt.1.dylib
0x9135b000 - 0x91414fe7 libsqlite3.dylib 9.6.0 (compatibility 9.0.0) <52438E77-55D1-C231-1936-76F1369518E4> /usr/lib/libsqlite3.dylib
0x91415000 - 0x9141fffb com.apple.speech.recognition.framework 3.11.1 (3.11.1) <7486003F-8FDB-BD6C-CB34-DE45315BD82C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.frame work/Versions/A/SpeechRecognition
0x9151d000 - 0x915bafe3 com.apple.LaunchServices 362.3 (362.3) <15B47388-16C8-97DA-EEBB-1709E136169E> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
0x9173b000 - 0x9178bff7 com.apple.framework.familycontrols 2.0.2 (2020) <C96C8A99-A40C-8B9C-1FBA-A0F46AC92F17> /System/Library/PrivateFrameworks/FamilyControls.framework/Versions/A/FamilyControls
0x9178c000 - 0x917bfff7 com.apple.AE 496.5 (496.5) <BF9673D5-2419-7120-26A3-83D264C75222> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Vers ions/A/AE
0x917f9000 - 0x9185afe7 com.apple.CoreText 151.13 (???) <23F359DA-D845-5C50-4DF3-19E858CF2B2C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreText.f ramework/Versions/A/CoreText
0x91ebb000 - 0x921dbff3 com.apple.CoreServices.CarbonCore 861.39 (861.39) <5C59805C-AF39-9010-B8B5-D673C9C38538> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framew ork/Versions/A/CarbonCore
0x923c0000 - 0x9242afe7 libstdc++.6.dylib 7.9.0 (compatibility 7.0.0) <411D87F4-B7E1-44EB-F201-F8B4F9227213> /usr/lib/libstdc++.6.dylib
0x93282000 - 0x93302feb com.apple.SearchKit 1.3.0 (1.3.0) <9E18AEA5-F4B4-8BE5-EEA9-818FC4F46FD9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
0x93303000 - 0x933ddfff com.apple.DesktopServices 1.5.11 (1.5.11) <800F2040-9211-81A7-B438-7712BF51DEE3> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
0x93553000 - 0x93596ff7 com.apple.NavigationServices 3.5.4 (182) <8DC6FD4A-6C74-9C23-A4C3-715B44A8D28C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/NavigationServices.fram ework/Versions/A/NavigationServices
0x935cc000 - 0x935d7ff7 libCSync.A.dylib 545.0.0 (compatibility 64.0.0) <287DECA3-7821-32B6-724D-AE03A9A350F9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/Resources/libCSync.A.dylib
0x93660000 - 0x9370cfe7 com.apple.CFNetwork 454.12.4 (454.12.4) <DEDCD006-389F-967F-3405-EDF541F406D7> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwork.framewo rk/Versions/A/CFNetwork
0x9370d000 - 0x937bafe7 libobjc.A.dylib 227.0.0 (compatibility 1.0.0) <9F8413A6-736D-37D9-8EB3-7986D4699957> /usr/lib/libobjc.A.dylib
0x93a57000 - 0x93a5affb com.apple.help 1.3.2 (41.1) <8AC20B01-4A3B-94BA-D8AF-E39034B97D8C> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
0x93a5b000 - 0x93b26fef com.apple.CoreServices.OSServices 359.2 (359.2) <7C16D9C8-6F41-5754-17F7-2659D9DD9579> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
0x93dc0000 - 0x93e42ffb SecurityFoundation ??? (???) <BFE377A4-C830-3ECA-E69F-8A8094CDA0A6> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x93e43000 - 0x93e49fff 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
0x93e4a000 - 0x93e54fe7 com.apple.audio.SoundManager 3.9.3 (3.9.3) <5F494955-7290-2D91-DA94-44B590191771> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CarbonSound.framework/V ersions/A/CarbonSound
0x9416e000 - 0x94182fe7 libbsm.0.dylib ??? (???) <14CB053A-7C47-96DA-E415-0906BA1B78C9> /usr/lib/libbsm.0.dylib
0x941da000 - 0x94249ff7 libvMisc.dylib 268.0.1 (compatibility 1.0.0) <595A5539-9F54-63E6-7AAC-C04E1574B050> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvMisc.dylib
0x948d4000 - 0x948e6ff7 com.apple.MultitouchSupport.framework 207.11 (207.11) <6FF4F2D6-B8CD-AE13-56CB-17437EE5B741> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSuppor t
0x948e7000 - 0x94909fef com.apple.DirectoryService.Framework 3.6 (621.15) <F38894EA-2C13-7FC5-C084-94DA0B5B6B68> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
0x94944000 - 0x94b07feb com.apple.ImageIO.framework 3.0.6 (3.0.6) <5BF202E9-730A-3675-4374-E5300BC8ED10> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/ImageIO
0x94b08000 - 0x94b09ff7 com.apple.TrustEvaluationAgent 1.1 (1) <2D970A9B-77E8-EDC0-BEC6-7580D78B2843> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
0x94d8e000 - 0x94dcbff7 com.apple.SystemConfiguration 1.10.8 (1.10.2) <50E4D49B-4F61-446F-1C21-1B2BA814713D> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x94e83000 - 0x950e9ff7 com.apple.security 6.1.2 (55002) <3FA54D69-5476-78DD-0AFC-D6697263890E> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x95120000 - 0x95444fef com.apple.HIToolbox 1.6.5 (???) <21164164-41CE-61DE-C567-32E89755CB34> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Ver sions/A/HIToolbox
0x95445000 - 0x95445ff7 com.apple.Accelerate.vecLib 3.6 (vecLib 3.6) <ABF97DA4-3BDF-6FFD-6239-B023CA1F7974> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
0x95446000 - 0x95496fe7 libTIFF.dylib ??? (???) <E8B31850-BFD4-48E6-B264-A4340CD19929> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libTIFF.dylib
0x954d8000 - 0x95535ff7 com.apple.framework.IOKit 2.0 (???) <3DABAB9C-4949-F441-B077-0498F8E47A35> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x95536000 - 0x955e4ff3 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
0x955e5000 - 0x9569dfeb libFontParser.dylib ??? (???) <D2D0C922-5ED1-3AE9-6F99-707C74DF3E62> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontParser.dylib
0x95ac7000 - 0x95ac7ff7 com.apple.Carbon 150 (152) <BFDDA394-0F01-A3A3-A226-ED3A45975A56> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x95ac8000 - 0x95af9ff7 libGLImage.dylib ??? (???) <D18E2E76-DBF4-6930-039A-F66CA0D120B3> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x96aa0000 - 0x96d9afef com.apple.QuickTime 7.6.6 (1791) <8E56F3DC-725B-0299-7E62-8599CA6EC4C0> /System/Library/Frameworks/QuickTime.framework/Versions/A/QuickTime
0x96d9b000 - 0x96db9fe7 libPng.dylib ??? (???) <5B979A83-8CE7-6BD7-B84C-A2D1119B378D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libPng.dylib
0x96dcb000 - 0x96f08fe7 com.apple.audio.toolbox.AudioToolbox 1.6.7 (1.6.7) <423BDE4D-5082-B6CA-BB2C-E22A037235A4> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x96f09000 - 0x9733eff7 libLAPACK.dylib 219.0.0 (compatibility 1.0.0) <5E2D2283-57DE-9A49-1DB0-CD027FEFA6C2> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
0x974a5000 - 0x974a5ff7 com.apple.ApplicationServices 38 (38) <8012B504-3D83-BFBB-DA65-065E061CFE03> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x974a6000 - 0x97717fef com.apple.Foundation 6.6.8 (751.63) <69B3441C-B196-F2AD-07F8-D8DD24E4CD8C> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x97751000 - 0x978f8ff7 libSystem.B.dylib 125.2.11 (compatibility 1.0.0) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
0x978fe000 - 0x9790eff7 libsasl2.2.dylib 3.15.0 (compatibility 3.0.0) <C8744EA3-0AB7-CD03-E639-C4F2B910BE5D> /usr/lib/libsasl2.2.dylib
0x9790f000 - 0x97918ff7 com.apple.DiskArbitration 2.3 (2.3) <E9C40767-DA6A-6CCB-8B00-2D5706753000> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x97923000 - 0x97c8eff7 com.apple.QuartzCore 1.6.3 (227.37) <E323A5CC-499E-CA9E-9BC3-537231449CAA> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x97c8f000 - 0x97cb5ffb com.apple.DictionaryServices 1.1.2 (1.1.2) <43E1D565-6E01-3681-F2E5-72AE4C3A097A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryService s.framework/Versions/A/DictionaryServices
0x97cf2000 - 0x97d00fe7 libz.1.dylib 1.2.3 (compatibility 1.0.0) <33C1B260-ED05-945D-FC33-EF56EC791E2E> /usr/lib/libz.1.dylib
0x97d01000 - 0x97d20fe3 libexpat.1.dylib 7.2.0 (compatibility 7.0.0) <82E6F83F-9667-2E39-1D9D-4A49C642527D> /usr/lib/libexpat.1.dylib
0x97d21000 - 0x97d23ff7 libRadiance.dylib ??? (???) <5F803B4A-B294-BA94-FB68-E8756EE41B20> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libRadiance.dylib
0x97d24000 - 0x97dbffe7 com.apple.ApplicationServices.ATS 275.19 (???) <2E83B3E9-AF39-36FC-5D05-CC1E952098AB> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/ATS
0x97dc1000 - 0x97f3cfe7 com.apple.CoreFoundation 6.6.6 (550.44) <F88C95CD-1264-782D-A1F5-204739847E93> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x97f3d000 - 0x97f5dfe7 libresolv.9.dylib 41.1.0 (compatibility 1.0.0) <8C2B5FA8-2469-21C7-D297-F95A0FFE5F19> /usr/lib/libresolv.9.dylib
0x97f5e000 - 0x97f62ff7 IOSurface ??? (???) <F9E6DFC1-8DD9-7C7E-CA85-B80735586E05> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x97f63000 - 0x97f78fff 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
0x97f79000 - 0x97f98ff7 com.apple.CoreVideo 1.6.2 (45.6) <EB53CAA4-5EE2-C356-A954-5775F7DDD493> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x97f99000 - 0x97f99ff7 liblangid.dylib ??? (???) <B99607FC-5646-32C8-2C16-AFB5EA9097C2> /usr/lib/liblangid.dylib
0x980dd000 - 0x980eaff7 com.apple.NetFS 3.2.2 (3.2.2) <DDC9C397-C35F-8D7A-BB24-3D1B42FA5FAB> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x9811d000 - 0x98135ff7 com.apple.CFOpenDirectory 10.6 (10.6) <D1CF5881-0AF7-D164-4156-9E9067B7FA37> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory. framework/Versions/A/CFOpenDirectory
0x9818d000 - 0x9818dff7 com.apple.Cocoa 6.6 (???) <EA27B428-5904-B00B-397A-185588698BCC> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x981c7000 - 0x982f5fe7 com.apple.CoreData 102.1 (251) <87FE6861-F2D6-773D-ED45-345272E56463> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x9839c000 - 0x983efff7 com.apple.HIServices 1.8.3 (???) <1D3C4587-6318-C339-BD0F-1988F246BE2E> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices .framework/Versions/A/HIServices
0x983f0000 - 0x983f2ff7 com.apple.securityhi 4.0 (36638) <FC01BFC4-04DB-96F3-2412-A86CC4F94CB2> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
0x983f3000 - 0x98417ff7 libJPEG.dylib ??? (???) <C43FD809-08B6-629D-8980-D7B0ECEA20A9> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ImageIO.fr amework/Versions/A/Resources/libJPEG.dylib
0x98449000 - 0x985cbfe7 libicucore.A.dylib 40.0.0 (compatibility 1.0.0) <50A70082-F800-93D8-1A7C-C95AAB1F352C> /usr/lib/libicucore.A.dylib
0x98600000 - 0x9863aff7 libcups.2.dylib 2.8.0 (compatibility 2.0.0) <A6C207E3-7B42-926D-9C93-BE3F50B92496> /usr/lib/libcups.2.dylib
0x9871c000 - 0x9875fff7 libGLU.dylib ??? (???) <6CC3CE6A-7024-C685-EADA-7F9DC27128E2> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x98760000 - 0x98854ff7 libiconv.2.dylib 7.0.0 (compatibility 7.0.0) <061ABF36-8BA9-79C1-6CE7-EC69A4998F51> /usr/lib/libiconv.2.dylib
0x9885b000 - 0x98869ff7 com.apple.opengl 1.6.14 (1.6.14) <82622F67-E032-0BF6-A78D-50B346E8D0FD> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x988e2000 - 0x990d1557 com.apple.CoreGraphics 1.545.0 (???) <1D9DC7A5-228B-42CB-7018-66F42C3A9BB3> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/CoreGraphi cs.framework/Versions/A/CoreGraphics
0x990da000 - 0x990e6ff7 libkxld.dylib ??? (???) <9A441C48-2D18-E716-5F38-CBEAE6A0BB3E> /usr/lib/system/libkxld.dylib
0x99188000 - 0x99202fff com.apple.audio.CoreAudio 3.2.6 (3.2.6) <156A532C-0B60-55B0-EE27-D02B82AA6217> /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x99203000 - 0x99204ff7 libScreenReader.dylib ??? (???) <E559E38F-FB36-C1C4-B915-D3A4E4354921> /usr/lib/libScreenReader.dylib
0x99276000 - 0x99276ff7 com.apple.Accelerate 1.6 (Accelerate 1.6) <3891A689-4F38-FACD-38B2-4BF937DE30CF> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x992ef000 - 0x992f5fe7 com.apple.CommerceCore 1.0 (9.1) <521D067B-3BDA-D04E-E1FA-CFA526C87EB5> /System/Library/PrivateFrameworks/CommerceKit.framework/Versions/A/Frameworks/CommerceCor e.framework/Versions/A/CommerceCore
0x992f6000 - 0x993f8fe7 libcrypto.0.9.8.dylib 0.9.8 (compatibility 0.9.8) <015563C4-81E2-8C8A-82AC-31B38D904A42> /usr/lib/libcrypto.0.9.8.dylib
0x99436000 - 0x9947afe7 com.apple.Metadata 10.6.3 (507.15) <74F05E64-2A68-BA10-CCD4-128D164E5A0F> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
0x9947b000 - 0x99891ff7 libBLAS.dylib 219.0.0 (compatibility 1.0.0) <C4FB303A-DB4D-F9E8-181C-129585E59603> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
0x998da000 - 0x9a1bdff7 com.apple.AppKit 6.6.8 (1038.36) <A353465E-CFC9-CB75-949D-786F6F7732F6> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x9a682000 - 0x9a782fe7 libxml2.2.dylib 10.3.0 (compatibility 10.0.0) <BE7FCD73-03B5-25A4-FCA4-D4980F1488D6> /usr/lib/libxml2.2.dylib
0x9a9e6000 - 0x9a9faffb com.apple.speech.synthesis.framework 3.10.35 (3.10.35) <57DD5458-4F24-DA7D-0927-C3321A65D743> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynt hesis.framework/Versions/A/SpeechSynthesis
0x9aa25000 - 0x9aa67ff7 libvDSP.dylib 268.0.1 (compatibility 1.0.0) <8A4721DE-25C4-C8AA-EA90-9DA7812E3EBA> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libvDSP.dylib
0x9abde000 - 0x9abdeff7 com.apple.CoreServices 44 (44) <51CFA89A-33DB-90ED-26A8-67D461718A4A> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0xba300000 - 0xba301fe7 libCyrillicConverter.dylib 49.0.0 (compatibility 1.0.0) <B3B08EB5-0B0C-54C1-7D48-5F713E821DAC> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
0xba500000 - 0xba501ff7 libGreekConverter.dylib 49.0.0 (compatibility 1.0.0) <7CBB0706-75C8-5BAE-C3C1-0536F26BD3D0> /System/Library/CoreServices/Encodings/libGreekConverter.dylib
0xba900000 - 0xba916ff7 libJapaneseConverter.dylib 49.0.0 (compatibility 1.0.0) <A6FD4184-1017-59F6-990E-785BDF6202BE> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
0xbab00000 - 0xbab21fe7 libKoreanConverter.dylib 49.0.0 (compatibility 1.0.0) <59936EB5-5FA4-EEEB-9858-E9BF50AB1776> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
0xbb500000 - 0xbb500ff7 libThaiConverter.dylib 49.0.0 (compatibility 1.0.0) <0E9C3654-11ED-04E9-2D6D-F7D691D002EA> /System/Library/CoreServices/Encodings/libThaiConverter.dylib
0xffff0000 - 0xffff1fff libSystem.B.dylib ??? (???) <2DCD13E3-1BD1-6F25-119A-3863A3848B90> /usr/lib/libSystem.B.dylib
Why can't I download Indesign CC? It keeps saying I have a server error.
I just purchased the cloud...I have been trying to download Indesign CC and everytime it asks me to login, I do as such, and then it tells me that an Unknown Server has occured. This has been going on for quite some time...is there something wrong with my compatibility? Is there a direct link that can be provided to download Indesign? And I am not talking about the trial. Is my fire wall blocking it or what? Because I have purchased the cloud and I feel like I'll be wasting my money if I can't even download anything. If there is another way to download the programs, can I do that without accessing the website?
Issue activating the trial licence of Indesign CC Server x64
I have downloaded and installed "Adobe InDesign CC Server | English | Windows 64-bit | 535.7 MB" from https://www.adobe.com/cfusion/tdrc/index.cfm?product=indesign_server.
I have also downloaded and installed APTEE to active the trial licence.
From an admin command prompt I've then run "adobe_prtk.exe --tool=StartTrial --leid="InDesignServer-10-Win-GM"", in the directory "C:\Program Files (x86)\Common Files\Adobe\OOBE\PDApp\Enterprise\utilities\APTEE\CS6\"
This returns the following:
I then try to launch Indesign server I get the following error.
If you can help I'd appreciate it.
Thanks,
Peter
Export data from Indesign to Mysql
I have an indesign file. I can open the indesign file in adobe in design. This can export the full xml for the created indesign.
Now what i need is from Indesign i need to export contents directly to my sql database by giving field mapping for title description.
Do we have any plugin in indesign to map the tables and insert it directly from indesign.
Can we insert images in this format from the indesign file. Which format will the image be sorted image.
Physical image file will be copied and path can be modified or these images are copied as bits in database.
Do we have to have the same image location shared as indesign files and images will be on a different server and the website which is working on database will be on a different server.
LBQ returns blank page (and HTTP Error 400).
So a little background -
We run InDesign CS6 on 2 different servers. Both servers are Windows 2008 R2. CS6 server has been running smoothly for a few years now. We're running both in a multi-instance environment and using the Adobe LBQ client to manage the queue and jobs.
Recently I built a new machine to test CC14 server. I noticed that the basic informationg regarding the LBQ was the same so I built out a couple of instances like before and tried to run the LBQ client (clover.cmd).
It starts to load and seems to load completely but when you try to go to the queue site (localhost:8080) it returns a blank page and an HTTP 400 error. Nothing else happens. The instances of Indesign are running fine but the LBQ is not.
My servers I've tried this on are the following:
Windows 2012 R2
Windows 2008 R2
I have even gone back to a clean VM of Windows 2008 R2 and even migrated back to InDesign CS6 and still the same issue!
The only thing I can think of is that the JRE is different. Originally our servers were setup with JRE 1.7 but they've auto-upgraded and are running 1.8. My new servers have 1.8 from the beginning.
I'm really at a loss here as to what might be happening. Spent last 3 days trying to puzzle things through to isolate any differences in configs, settings, versions, etc.
Any thoughts?in
JPEG single page export from multipage document
Here is my sample code:
Somewhere I will initialize the document to use it globally:
app.open(File(inDocumentPath));
currentDocument = app.documents[0];
Here is my current function:
function ExportAsQualityJPG(inSaveAsDocumentPath, inPageNumber)
{
app.jpegExportPreferences.jpegQuality = JPEGOptionsQuality.maximum;
app.jpegExportPreferences.resolution = 300;
pageName = currentDocument.pages.item(inPageNumber-1).name;
app.pdfExportPreferences.pageRange = pageName;
// app.jpegExportPreferences.pageString = pageName; --> Does not work
currentDocument.exportFile(ExportFormat.jpg, File(inSaveDocumentPath), app.pdfExportPresets.item("[High Quality Print]"));
}
I will do something like later:
ExportAsQualityJPG("//Documents/InDesign/Page2.jpg", 2);
As I mentioned above, it will actually create images for all pages in the document. For example, if the INDD doc has 3 pages, it will create these images:
Page2.jpg (actual page 1)
Page22.jpg (actual page 2)
Page23.jpg (actual page 3)
Any help or tip would be really appreciated.
Thanks,
G.O.
Exporting to JPEG and keeping the bleed
using indesign files in asp.net
I am building an application in asp.net in which my task is to create a pdf file by using the Adobe Indesign CS2 in asp.net.
I am using the code which is found from the net but on running this is given an error That:
"System.UnauthorizedAccessException: Access is denied."
now tell me about this error and what i have to do to achieve this task. this is really urgent one
atleast reply if u don't know the answer also please.......
Here's my code::
Imports System
Imports System.Data
Imports System.Configuration
Imports System.Web
Imports System.Web.Security
Imports System.Web.UI
Imports System.Web.UI.WebControls
' Imports System.Web.UI.WebControls.WebParts
Imports System.Web.UI.HtmlControls
Imports InDesign
Public Class _Default
Inherits System.Web.UI.Page
Protected Sub Page_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim cstrInddFile As String = Server.MapPath("~/Archieve/yourstory_backcover1.indd")
Dim cstrXMLFile As String = Server.MapPath("~/Archieve/xml1.xml")
Dim cstrOutputFile As String = Server.MapPath("~/Archieve/out.pdf")
Dim indAppType As Type = Type.GetTypeFromProgID("InDesign.Application")
Dim objInDesign As InDesign.Application = DirectCast(Activator.CreateInstance(indAppType, True), InDesign.Application)
Dim objDoc As InDesign.Document = DirectCast(objInDesign.Open(cstrInddFile, False), InDesign.Document)
objDoc.ImportXML(cstrXMLFile)
Dim objPreset As InDesign.PDFExportPreset=DirectCast(objInDesign.PDFExportPresets.LastItem(),InDesign.PDFE xportPreset)
objDoc.Export(idExportFormat.idPDFType, cstrOutputFile, False, objInDesign.PDFExportPresets("Press"))
End Sub
End Class
Newbie: How to use InDesign with ASP.Net site?
I'm a total newbie with InDesign, and have been tasked with developing a sample ASP.Net mini app to figure out if we can use InDesign to replace Quark in an existing site. Here are the details, and I'm hoping someone here can point me in the right direction to get this going.
I will have InDesign templates available with text and image placeholders (can be one or many of each).
I need to create an ASP.Net web application where:
- Users can select one of the available templates
- Enter their own text to plug into the text placeholders
- Upload their own images to plug into the image placeholders
- Preview the resulting document on the screen
- Click a button to generate a PDF version of this document and view/save it.
It sounds simple, and I'm sure it is, but I can't find detailed information on how to do it and, since I'm completely unfamiliar with InDesign, I'm a little lost. I know ASP.Net, I just don't know where to start to use InDesign Server (or client, I don't know) from .Net code.
Any help with this would be greatly appreciated and rewarded.
Thanks in advance!!
Javascript - added images display as grey boxes
I am attempting to add an Image to an InDesign document via a javascript that I am executing via the RunScript() soap method of InDesign Cs4 server. The script I am using to add an image is something similar to this:
var imageFile = File("//c/images/animage.pdf");
var imageGraphic = myDocument.pages.item(0).place(imageFile, null, imageLayer);
imageGraphic = imageGraphic[0];
var imageFrame = imageGraphic.parent;
imageFrame.geometricBounds = [IMAGE_TOP_Y, IMAGE_TOP_X, IMAGE_BOTTOM_Y, IMAGE_BOTTOM_X];
imageFrame.fit(FitOptions.proportionally);
imageFrame.fit(FitOptions.frameToContent);
The script adds the image correctly, but when I pull up the document with InDesign, the Images are displayed as grey boxes. I am able to fix this within InDesign designer by manually setting the "Display Performance" to "High Quality" through the menus, but I need to handle this via the script run on the server. I attempted to update the script to the following:
var imageFile = File("//c/images/animage.pdf");
var imageGraphic = myDocument.pages.item(0).place(imageFile, null, imageLayer);
imageGraphic = imageGraphic[0];
var imageFrame = imageGraphic.parent;
imageFrame.geometricBounds = [IMAGE_TOP_Y, IMAGE_TOP_X, IMAGE_BOTTOM_Y, IMAGE_BOTTOM_X];
imageFrame.fit(FitOptions.proportionally);
imageFrame.fit(FitOptions.frameToContent);
//HERE IS THE NEW LINE
imageFrame.localDisplaySetting = DisplaySettingOptions.HIGH_QUALITY;
This script runs without problems within the CS4 ExtendScript Toolkit on my local pc. However, when I run the script against the InDesign CS4 server, I get the following error:
Error Number: 55
Error String: Object does not support the property or method 'localDisplaySetting'
Does anyone have any advice on how I should proceed? My main goal is to have the image display correctly without the grey box.