Index: AE/installer2/setup_win/AEI.iss
===================================================================
--- AE/installer2/setup_win/AEI.iss	(revision 613)
+++ AE/installer2/setup_win/AEI.iss	(revision 613)
@@ -0,0 +1,200 @@
+#define AppId "{{B67333BB-1CF9-4EFD-A40B-E25B5CB4C8A7}}"
+#define AppVersion "0.76"
+#define AppLongName "Anniversary Edition of Oni"
+#define AppShortName "AEInstaller"
+
+#define MinJavaVersion "1.6"
+
+[Setup]
+AppId={#AppId}
+AppVersion={#AppVersion}
+AppName={#AppLongName}
+DefaultDirName={pf32}\Oni
+OutputBaseFilename={#AppShortName}-v{#AppVersion}-Setup
+DefaultGroupName=Oni AE
+
+DirExistsWarning=no
+AppendDefaultDirName=no
+
+ShowComponentSizes=no
+AppPublisher=
+AppPublisherURL=
+AppSupportURL=
+AppUpdatesURL=
+AllowNoIcons=yes
+OutputDir=.
+Compression=lzma2/max
+SolidCompression=yes
+
+[Languages]
+Name: "en"; MessagesFile: "compiler:Default.isl"
+
+[Messages]
+en.SelectDirBrowseLabel=Please select the installation directory of Oni.
+
+[CustomMessages]
+en.wrongDir=This doesn't seem to be your Oni installation; I don't see a file here named "Oni.exe".
+
+[Tasks]
+Name: "desktopicon"; Description: "{cm:CreateDesktopIcon}"; GroupDescription: "{cm:AdditionalIcons}"; Flags: unchecked
+
+[Components]
+Name: "JRE"; Description: "JRE"
+Name: "AEI"; Description: "AEI"
+
+[Dirs]
+Name: "{app}\Edition"; Permissions: users-modify
+ 
+[Files]
+Source: "AEInstaller2.jar"; DestDir: "{app}\Edition\AEInstaller"; Components: AEI
+Source: "JRE\*"; DestDir: "{app}\Edition\AEInstaller\JRE"; Flags: createallsubdirs recursesubdirs onlyifdoesntexist; Components: JRE
+Source: "AElogo.ico"; DestDir: "{app}\Edition\AEInstaller"; Components: AEI
+
+[Icons]
+Name: "{group}\AEInstaller 2"; Filename: "{app}\Edition\AEInstaller\JRE\bin\javaw.exe"; WorkingDir: "{app}\Edition\AEInstaller"; IconFilename: "{app}\Edition\AEInstaller\AElogo.ico"; Parameters: "-Dsun.java2d.d3d=false -jar AEInstaller2.jar"; Check: not IsJavaInstalled
+Name: "{commondesktop}\AEInstaller 2"; Filename: "{app}\Edition\AEInstaller\JRE\bin\javaw.exe"; WorkingDir: "{app}\Edition\AEInstaller"; IconFilename: "{app}\Edition\AEInstaller\AElogo.ico"; Parameters: "-Dsun.java2d.d3d=false -jar AEInstaller2.jar"; Tasks: desktopicon; Check: not IsJavaInstalled
+Name: "{group}\AEInstaller 2"; Filename: "{code:GetJavaPath}\bin\javaw.exe"; WorkingDir: "{app}\Edition\AEInstaller"; IconFilename: "{app}\Edition\AEInstaller\AElogo.ico"; Parameters: "-Dsun.java2d.d3d=false -jar AEInstaller2.jar"; Check: IsJavaInstalled
+Name: "{commondesktop}\AEInstaller 2"; Filename: "{code:GetJavaPath}\bin\javaw.exe"; WorkingDir: "{app}\Edition\AEInstaller"; IconFilename: "{app}\Edition\AEInstaller\AElogo.ico"; Parameters: "-Dsun.java2d.d3d=false -jar AEInstaller2.jar"; Tasks: desktopicon; Check: IsJavaInstalled
+
+
+[Code]
+var
+  javaPath: String;
+
+procedure DecodeVersion (verstr: String; var verint: array of Integer);
+var
+  i,p: Integer; s: string;
+begin
+  // initialize array
+  verint := [0,0,0,0];
+  i := 0;
+  while ((Length(verstr) > 0) and (i < 4)) do
+  begin
+    p := pos ('.', verstr);
+    if p > 0 then
+    begin
+      if p = 1 then s:= '0' else s:= Copy (verstr, 1, p - 1);
+      verint[i] := StrToInt(s);
+      i := i + 1;
+      verstr := Copy (verstr, p+1, Length(verstr));
+    end
+    else
+    begin
+      verint[i] := StrToInt (verstr);
+      verstr := '';
+    end;
+  end;
+
+end;
+
+function CompareVersion (ver1, ver2: String) : Integer;
+var
+  verint1, verint2: array of Integer;
+  i: integer;
+begin
+  SetArrayLength (verint1, 4);
+  DecodeVersion (ver1, verint1);
+
+  SetArrayLength (verint2, 4);
+  DecodeVersion (ver2, verint2);
+
+  Result := 0; i := 0;
+  while ((Result = 0) and ( i < 4 )) do
+  begin
+    if verint1[i] > verint2[i] then
+      Result := 1
+    else
+      if verint1[i] < verint2[i] then
+        Result := -1;
+    i := i + 1;
+  end;
+
+end;
+
+procedure CheckJavaRuntime();
+var
+  Res: Boolean;
+  JavaVer: String;
+begin
+  Res := RegQueryStringValue(HKLM, 'SOFTWARE\JavaSoft\Java Runtime Environment', 'CurrentVersion', JavaVer);
+  if Res = True then
+  begin
+    if Length( JavaVer ) > 0 then
+    begin
+    	if CompareVersion(JavaVer, '{#MinJavaVersion}') >= 0 then
+    	begin
+        Res := RegQueryStringValue(HKLM, 'SOFTWARE\JavaSoft\Java Runtime Environment\'+JavaVer, 'JavaHome', javaPath);
+    	end;
+    end;
+  end;
+end;
+
+function IsJavaInstalled(): Boolean;
+begin
+  Result := Length(javaPath) > 0;
+end;
+
+function GetJavaPath(Param: String): String;
+begin
+  Result := javaPath;
+end;
+
+function InitializeSetup(): Boolean;
+begin
+  CheckJavaRuntime();
+  Result := True;
+end;
+
+procedure InitializeWizard();
+var
+  Components : TNewCheckListbox;
+  i : integer;
+begin
+      Components := WizardForm.ComponentsList;
+      i := Components.Items.IndexOf('JRE');
+      if i <> -1 then
+      begin
+        Components.ItemEnabled[i] := false;
+        Components.Checked[i] := not IsJavaInstalled();
+      end;
+      i := Components.Items.IndexOf('AEI');
+      if i <> -1 then
+      begin
+        Components.ItemEnabled[i] := false;
+        Components.Checked[i] := true;
+      end;
+end;
+
+function DirOk(Path: String): boolean;
+begin
+  Result := DirExists(Path+'\GameDataFolder') and FileExists(Path+'\Oni.exe');
+end;
+
+function NextButtonClick(CurPageID: Integer): boolean;
+begin
+  Result := True;
+
+  if CurPageID = wpSelectDir then
+  begin
+    if (not DirOk(WizardDirValue)) then
+    begin
+      MsgBox(CustomMessage('wrongDir'), mbError, MB_OK);
+      Result := False;
+    end;
+  end;
+end;
+
+
+function ShouldSkipPage(PageID: Integer): Boolean;
+begin
+  Result := PageID = wpSelectComponents;
+end;
+
+function UpdateReadyMemo(Space, NewLine, MemoUserInfoInfo, MemoDirInfo, MemoTypeInfo, MemoComponentsInfo, MemoGroupInfo, MemoTasksInfo: String): String;
+begin
+  Result := MemoUserInfoInfo + NewLine;
+  Result := Result + MemoDirInfo + NewLine;
+  Result := Result + MemoGroupInfo + NewLine;
+  Result := Result + MemoTasksInfo + NewLine;
+end;
+
Index: AE/installer2/setup_win/JRE/COPYRIGHT
===================================================================
--- AE/installer2/setup_win/JRE/COPYRIGHT	(revision 613)
+++ AE/installer2/setup_win/JRE/COPYRIGHT	(revision 613)
@@ -0,0 +1,70 @@
+Copyright © 2006, 2010, Oracle and/or its affiliates. 
+All rights reserved.
+
+This software and related documentation are provided under a
+license agreement containing restrictions on use and
+disclosure and are protected by intellectual property laws.
+Except as expressly permitted in your license agreement or
+allowed by law, you may not use, copy, reproduce, translate,
+broadcast, modify, license, transmit, distribute, exhibit,
+perform, publish, or display any part, in any form, or by
+any means.  Reverse engineering, disassembly, or
+decompilation of this software, unless required by law for
+interoperability, is prohibited.
+
+The information contained herein is subject to change
+without notice and is not warranted to be error-free.  If
+you find any errors, please report them to us in writing.
+
+If this is software or related software documentation that
+is delivered to the U.S.  Government or anyone licensing it
+on behalf of the U.S.  Government, the following notice is
+applicable:
+
+U.S.  GOVERNMENT RIGHTS Programs, software, databases, and
+related documentation and technical data delivered to U.S.
+Government customers are "commercial computer software" or
+"commercial technical data" pursuant to the applicable
+Federal Acquisition Regulation and agency-specific
+supplemental regulations.  As such, the use, duplication,
+disclosure, modification, and adaptation shall be subject to
+the restrictions and license terms set forth in the
+applicable Government contract, and, to the extent
+applicable by the terms of the Government contract, the
+additional rights set forth in FAR 52.227-19, Commercial
+Computer Software License (December 2007).  Oracle America,
+Inc., 500 Oracle Parkway, Redwood City, CA 94065.
+
+This software or hardware is developed for general use in a
+variety of information management applications.  It is not
+developed or intended for use in any inherently dangerous
+applications, including applications which may create a risk
+of personal injury.  If you use this software or hardware in
+dangerous applications, then you shall be responsible to
+take all appropriate fail-safe, backup, redundancy, and
+other measures to ensure its safe use.  Oracle Corporation
+and its affiliates disclaim any liability for any damages
+caused by use of this software or hardware in dangerous
+applications.
+
+Oracle and Java are registered trademarks of Oracle and/or
+its affiliates.  Other names may be trademarks of their
+respective owners.
+
+AMD, Opteron, the AMD logo, and the AMD Opteron logo are
+trademarks or registered trademarks of Advanced Micro
+Devices.  Intel and Intel Xeon are trademarks or registered
+trademarks of Intel Corporation.  All SPARC trademarks are
+used under license and are trademarks or registered
+trademarks of SPARC International, Inc.  UNIX is a
+registered trademark licensed through X/Open Company, Ltd.
+
+This software or hardware and documentation may provide
+access to or information on content, products, and services
+from third parties.  Oracle Corporation and its affiliates
+are not responsible for and expressly disclaim all
+warranties of any kind with respect to third-party content,
+products, and services.  Oracle Corporation and its
+affiliates will not be responsible for any loss, costs, or
+damages incurred due to your access to or use of third-party
+content, products, or services.
Index: AE/installer2/setup_win/JRE/README.txt
===================================================================
--- AE/installer2/setup_win/JRE/README.txt	(revision 613)
+++ AE/installer2/setup_win/JRE/README.txt	(revision 613)
@@ -0,0 +1,374 @@
+                              README
+
+                Java(TM) Platform, Standard Edition
+                        Runtime Environment
+                             Version 6
+
+
+The Java(TM) Platform, Standard Edition Runtime Environment (JRE(TM)),
+excluding the JavaFX(TM) runtime, is intended for software developers 
+and vendors to redistribute with their applications.
+
+The Java SE Runtime Environment contains the Java virtual machine,
+runtime class libraries, and Java application launcher that are
+necessary to run programs written in the Java programming language.
+It is not a development environment and does not contain development
+tools such as compilers or debuggers.  For development tools, see the
+Java SE Development Kit (JDK(TM)). The JRE installation triggers the 
+download of the JavaFX runtime. The JavaFX runtime is also available 
+separately, and is not part of the JRE. For information on JavaFX, and 
+how to make changes, go to: http://java.com/javafx
+
+
+=======================================================================
+     Deploying Applications with the Java SE Runtime Environment
+=======================================================================
+
+When you deploy an application written in the Java programming
+language, your software bundle will probably consist of the following
+parts:
+
+    Your own class, resource, and data files.
+    The Java SE Runtime Environment.
+    An installation procedure or program.
+
+You already have the first part, of course. The remainder of this
+document covers the other two parts. See also the Notes for Developers
+page on the Java Software website:
+
+    http://java.sun.com/javase/6/webnotes/runtime.html
+
+-----------------------------------------------------------------------
+Java Platform, Standard Edition Runtime Environment (JRE)
+-----------------------------------------------------------------------
+
+To run your application, a user needs the Java SE Runtime Environment,
+which is freely available from Oracle. Or, you can redistribute the
+Java SE Runtime Environment for free with your application, according
+to the terms of the Java SE Platform Runtime Environment's license. The 
+JavaFX runtime is only required to run applications written in the 
+JavaFX scripting language; it is freely available from Oracle, and must
+not be redistributed with your application.
+
+The final step in the deployment process occurs when the software is
+installed on an individual user's system. Installation consists of copying
+software onto the user's system, then configuring the user's system
+to support that software.  You should ensure that your installation
+procedure does not overwrite existing JRE installations, as they may
+be required by other applications.
+
+
+=======================================================================
+      Redistribution of the Java SE Runtime Environment (JRE)
+=======================================================================
+
+    --------------------------------------------------------
+    NOTE - The license for this software does not allow the
+    redistribution of beta and other pre-release versions.
+    --------------------------------------------------------
+
+Subject to the terms and conditions of the Software License
+Agreement and the obligations, restrictions, and exceptions set
+forth below, You may reproduce and distribute the Software (and
+also portions of Software identified below as Redistributable),
+provided that:
+
+(a) you distribute the Software complete and unmodified and only
+    bundled as part of your applets and applications ("Programs"),
+
+(b) your Programs add significant and primary functionality to the
+    Software,
+
+(c) your Programs are only intended to run on Java-enabled general
+    purpose desktop computers and servers,
+
+(d) you distribute Software for the sole purpose of running your
+    Programs,
+
+(e) you do not distribute additional software intended to replace
+    any component(s) of the Software,
+
+(f) you do not remove or alter any proprietary legends or notices
+    contained in or on the Software,
+
+(g) you only distribute the Software subject to a license agreement
+    that protects Oracle's interests consistent with the terms
+    contained in this Agreement, and
+
+(h) you agree to defend and indemnify Oracle and its licensors from
+    and against any damages, costs, liabilities, settlement amounts
+    and/or expenses (including attorneys' fees) incurred in
+    connection with any claim, lawsuit or action by any third party
+    that arises or results from the use or distribution of any and
+    all Programs and/or Software.
+
+The term "vendors" used here refers to licensees, developers, and
+independent software vendors (ISVs) who license and distribute the
+Java SE Runtime Environment with their programs.
+
+Vendors must follow the terms of the Java SE Runtime Environment Binary
+Code License agreement.
+
+-----------------------------------------------------------------------
+Required vs. Optional Files
+-----------------------------------------------------------------------
+
+The files that make up the Java SE Runtime Environment are divided into
+two categories: required and optional.  Optional files may be excluded
+from redistributions of the Java SE Runtime Environment at the
+vendor's discretion.
+
+The following section contains a list of the files and directories that
+may optionally be omitted from redistributions with the Java SE Runtime
+Environment.  All files not in these lists of optional files must be
+included in redistributions of the runtime environment.
+
+-----------------------------------------------------------------------
+Optional Files and Directories
+-----------------------------------------------------------------------
+
+The following files may be optionally excluded from redistributions.
+These files are located in the jre1.6.0_<version> directory, where
+<version> is the update version number.  Solaris and Linux filenames
+and separators are shown. Windows executables have the ".exe" suffix.
+Corresponding files with _g in the name can also be excluded.
+The corresponding man pages should be excluded for any excluded
+executables (with paths listed below beginning with bin/ , 
+for the Solaris(TM) Operating System and Linux). 
+
+    lib/charsets.jar
+	Character conversion classes
+    lib/ext/
+	sunjce_provider.jar - the SunJCE provider for Java
+	  Cryptography APIs
+	localedata.jar - contains many of the resources
+	  needed for non US English locales
+	ldapsec.jar - contains security features supported
+	  by the LDAP service provider
+	dnsns.jar - for the InetAddress wrapper of JNDI DNS provider
+    bin/rmid
+	Java RMI Activation System Daemon
+    bin/rmiregistry
+	Java Remote Object Registry
+    bin/tnameserv
+	Java IDL Name Server
+    bin/keytool
+	Key and Certificate Management Tool
+    bin/kinit
+	Used to obtain and cache Kerberos ticket-granting tickets
+    bin/klist
+	Kerberos display entries in credentials cache and keytab
+    bin/ktab
+	Kerberos key table manager
+    bin/policytool
+	Policy File Creation and Management Tool
+    bin/orbd
+	Object Request Broker Daemon
+    bin/servertool
+	Java IDL Server Tool
+    bin/javaws, lib/javaws/ and lib/javaws.jar
+	Java Web Start
+
+When redistributing the JRE on Microsoft Windows as a private
+application runtime (not accessible by other applications)
+with a custom launcher, the following files are also
+optional.  These are libraries and executables that are used
+for Java support in Internet Explorer and Mozilla family browsers;
+these files are not needed in a private JRE redistribution.
+
+    bin\java.exe
+    bin\javaw.exe
+    bin\javaws.exe
+    bin\javacpl.exe
+    bin\jucheck.exe
+    bin\jusched.exe
+
+    bin\wsdetect.dll
+    bin\NPJPI*.dll   (The filename changes in every release)
+    bin\NPJava11.dll
+    bin\NPJava12.dll
+    bin\NPJava13.dll
+    bin\NPJava14.dll
+    bin\NPJava32.dll
+    bin\NPOJI610.dll
+    bin\RegUtils.dll
+    bin\axbridge.dll
+    bin\deploy.dll
+    bin\jpicom.dll
+    bin\javacpl.cpl
+    bin\jpiexp.dll
+    bin\jpinscp.dll
+    bin\jpioji.dll
+    bin\jpishare.dll
+    lib\deploy.jar
+    lib\plugin.jar
+    lib\javaws.jar
+    lib\javaws\messages.properties
+    lib\javaws\messages_de.properties
+    lib\javaws\messages_es.properties
+    lib\javaws\messages_fr.properties
+    lib\javaws\messages_it.properties
+    lib\javaws\messages_ja.properties
+    lib\javaws\messages_ko.properties
+    lib\javaws\messages_sv.properties
+    lib\javaws\messages_zh_CN.properties
+    lib\javaws\messages_zh_HK.properties
+    lib\javaws\messages_zh_TW.properties
+    lib\javaws\miniSplash.jpg
+
+
+-----------------------------------------------------------------------
+Redistributable JDK(TM) Files
+-----------------------------------------------------------------------
+
+The limited set of files from the Java SE Development Kit (JDK)
+listed below may be included in vendor redistributions of the Java SE 
+Runtime Environment.  All paths are relative to the top-level
+directory of the JDK. The corresponding man pages should be included for
+any included executables (with paths listed below beginning with bin/ ,
+for the Solaris(TM) Operating System and Linux). 
+
+    jre/lib/cmm/PYCC.pf
+        Color profile.  This file is required only if one wishes to
+        convert between the PYCC color space and another color space.
+
+    All .ttf font files in the jre/lib/fonts directory. 
+        Note that the LucidaSansRegular.ttf font is already contained 
+        in the Java SE Runtime Environment, so there is no need to 
+        bring that file over from the JDK.
+
+    jre/lib/audio/soundbank.gm
+        This MIDI soundbank is present in the JDK, but it has
+        been removed from the Java SE Runtime Environment in order to
+        reduce the size of the Runtime Environment's download bundle.
+        However, a soundbank file is necessary for MIDI playback, and
+        therefore the JDK's soundbank.gm file may be included in
+        redistributions of the Runtime Environment at the vendor's
+        discretion. Several versions of enhanced MIDI soundbanks are
+        available from the Java Sound web site:
+        http://java.sun.com/products/java-media/sound/
+        These alternative soundbanks may be included in redistributions
+        of the Java SE Runtime Environment.
+
+    The javac bytecode compiler, consisting of the following files:
+        bin/javac           [Solaris(TM) Operating System
+                             and Linux]
+        bin/sparcv9/javac   [Solaris Operating System
+                             (SPARC(R) Platform Edition)]
+	bin/amd64/javac     [Solaris Operating System (AMD)]
+        bin/javac.exe       [Microsoft Windows]
+        lib/tools.jar       [All platforms]
+
+    The Annotation Processing Tool, consisting of the following files:
+        lib/tools.jar       [All platforms]  
+        bin/apt             [Solaris(TM) Operating System
+                             and Linux]
+        bin/sparcv9/apt     [Solaris Operating System
+                             (SPARC(R) Platform Edition)]
+	bin/amd64/apt       [Solaris Operating System (AMD)]
+        bin/apt.exe         [Microsoft Windows]
+
+    lib/jconsole.jar
+        The Jconsole application.  NOTE: The Jconsole application requires
+        the dynamic attach mechanism.
+
+    The dynamic attach mechanism consisting of the following files:
+        lib/tools.jar       [All platforms]
+        jre/lib/sparc/libattach.so 
+          [Solaris(TM) Operating System (SPARC(R) Platform Edition) and Linux]
+        jre/lib/sparcv9/libattach.so 
+          [Solaris(TM) Operating System (SPARC(R) Platform Edition) and Linux]
+        jre/lib/i386/libattach.so 
+          [Solaris(TM) Operating System (x86) and Linux]
+        jre/lib/amd64/libattach.so 
+          [Solaris(TM) Operating System (AMD) and Linux]
+        jre\bin\attach.dll  [Microsoft Windows]
+
+    The Java Platform Debugger Architecture implementation consisting of the
+    files shown in the dynamic attach section above, and the following files:
+        lib/tools.jar       [All platforms]
+        lib/sa-jdi.jar      [All platforms]
+        jre/lib/sparc/libsaproc.so 
+          [Solaris(TM) Operating System (SPARC(R) Platform Edition) and Linux]
+        jre/lib/sparcv9/libsaproc.so 
+          [Solaris(TM) Operating System (SPARC(R) Platform Edition) and Linux]
+        jre/lib/i386/libsaproc.so 
+          [Solaris(TM) Operating System (x86) and Linux]
+        jre/lib/amd64/libsaproc.so 
+          [Solaris(TM) Operating System (AMD) and Linux]
+
+    jre\bin\server\
+        On Microsoft Windows platforms, the JDK includes both
+        the Java HotSpot(TM) Server VM and Java HotSpot Client VM.
+        However, the Java SE Runtime Environment for Microsoft Windows
+        platforms includes only the Java HotSpot Client VM. Those wishing
+        to use the Java HotSpot Server VM with the Java SE Runtime
+        Environment may copy the JDK's jre\bin\server folder to a 
+        bin\server directory in the Java SE Runtime Environment. Software
+        vendors may redistribute the Java HotSpot Server VM with their
+        redistributions of the Java SE Runtime Environment.
+
+
+-----------------------------------------------------------------------
+Unlimited Strength Java Cryptography Extension
+-----------------------------------------------------------------------
+
+Due to import control restrictions for some countries, the Java
+Cryptography Extension (JCE) policy files shipped with the Java SE
+Development Kit and the Java SE Runtime Environment allow strong but
+limited cryptography to be used.  These files are located at
+
+     <java-home>/lib/security/local_policy.jar
+     <java-home>/lib/security/US_export_policy.jar
+
+where <java-home> is the jre directory of the JDK or the
+top-level directory of the Java SE Runtime Environment.
+
+An unlimited strength version of these files indicating no restrictions
+on cryptographic strengths is available on the JDK web site for
+those living in eligible countries.  Those living in eligible countries
+may download the unlimited strength version and replace the strong
+cryptography jar files with the unlimited strength files.
+
+-----------------------------------------------------------------------
+The cacerts Certificates File
+-----------------------------------------------------------------------
+
+Root CA certificates may be added to or removed from the Java SE
+certificate file located at 
+
+    <java-home>/lib/security/cacerts
+
+For more information, see The cacerts Certificates File section
+in the keytool documentation at:
+
+http://java.sun.com/javase/6/docs/tooldocs/solaris/keytool.html#cacerts
+
+=======================================================================
+Endorsed Standards Override Mechanism
+=======================================================================
+
+From time to time it is necessary to update the Java platform in order
+to incorporate newer versions of standards that are created outside of
+the Java Community Process(SM) (JCP(SM) http://www.jcp.org/) (Endorsed
+Standards), or in order to update the version of a technology included
+in the platform to correspond to a later standalone version of that
+technology (Standalone Technologies).
+
+The Endorsed Standards Override Mechanism provides a means whereby
+later versions of classes and interfaces that implement Endorsed
+Standards or Standalone Technologies may be incorporated into the Java
+Platform.
+
+For more information on the Endorsed Standards Override Mechanism,
+including the list of platform packages that it may be used to
+override, see
+
+    http://java.sun.com/javase/6/docs/technotes/guides/standards/ 
+
+-----------------------------------------------------------------------
+The Java(TM) Runtime Environment (JRE) and the JavaFX(TM) runtime are 
+products of Oracle.
+
+Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
+
Index: AE/installer2/setup_win/JRE/THIRDPARTYLICENSEREADME.txt
===================================================================
--- AE/installer2/setup_win/JRE/THIRDPARTYLICENSEREADME.txt	(revision 613)
+++ AE/installer2/setup_win/JRE/THIRDPARTYLICENSEREADME.txt	(revision 613)
@@ -0,0 +1,3482 @@
+DO NOT TRANSLATE OR LOCALIZE.
+
+%% The following software may be included in this product:  CS CodeViewer v1.0;
+Use of any of this software is governed by the terms of the license below:
+Copyright 1999 by CoolServlets.com.
+
+Any errors or suggested improvements to this class can be reported as instructed
+on CoolServlets.com.  We hope you enjoy this program...  your comments will
+encourage further development!  This software is distributed under the terms of
+the BSD License.  Redistribution and use in source and binary forms, with or
+without modification, are permitted provided that the following conditions are
+met:
+
+1.  Redistributions of source code must retain the above copyright notice, this
+list of conditions and the following disclaimer.
+
+2.  Redistributions in binary form must reproduce the above copyright notice,
+this list of conditions and the following disclaimer in the documentation and/or
+other materials provided with the distribution.  Neither name of
+CoolServlets.com nor the names of its contributors may be used to endorse or
+promote products derived from this software without specific prior written
+permission.
+
+THIS SOFTWARE IS PROVIDED BY COOLSERVLETS.COM AND CONTRIBUTORS ``AS IS'' AND ANY
+EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR ANY
+DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING INANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
+
+%% The following software may be included in this product:  Crimson v1.1.1 ; Use
+of any of this software is governed by the terms of the license below:
+
+/*
+* The Apache Software License, Version 1.1
+*
+*
+* Copyright (c) 1999-2000 The Apache Software Foundation. All rights reserved.
+*
+* Redistribution and use in source and binary forms, with or without
+* modification, are permitted provided that the following conditions
+* are met:
+*
+* 1. Redistributions of source code must retain the above copyright
+* notice, this list of conditions and the following disclaimer. 
+*
+* 2. Redistributions in binary form must reproduce the above copyright
+* notice, this list of conditions and the following disclaimer in
+* the documentation and/or other materials provided with the
+* distribution.
+*
+* 3. The end-user documentation included with the redistribution,
+* if any, must include the following acknowledgment: 
+* "This product includes software developed by the
+* Apache Software Foundation (http://www.apache.org/)."
+* Alternately, this acknowledgment may appear in the software itself,
+* if and wherever such third-party acknowledgments normally appear.
+*
+* 4. The names "Crimson" and "Apache Software Foundation" must
+* not be used to endorse or promote products derived from this
+* software without prior written permission. For written 
+* permission, please contact apache@apache.org.
+*
+* 5. Products derived from this software may not be called "Apache",
+* nor may "Apache" appear in their name, without prior written
+* permission of the Apache Software Foundation.
+*
+* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
+* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+* SUCH DAMAGE.
+* ====================================================================*
+* This software consists of voluntary contributions made by many
+* individuals on behalf of the Apache Software Foundation and was
+* originally based on software copyright (c) 1999, International
+* Business Machines, Inc., http://www.ibm.com. For more
+* information on the Apache Software Foundation, please see
+* <http://www.apache.org/>.
+*/
+
+
+%% The following software may be included in this product:  Xalan J2; Use of any of this
+software is governed by the terms of the license below:
+
+                                Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+1. Definitions.
+
+"License" shall mean the terms and conditions for use, reproduction, and
+distribution as defined by Sections 1 through 9 of this document.  "Licensor"
+shall mean the copyright owner or entity authorized by the copyright owner that
+is granting the License.
+
+"Legal Entity" shall mean the union of the acting entity and all other entities
+that control, are controlled by, or are under common control with that entity.
+For the purposes of this definition, "control" means (i) the power, direct or
+indirect, to cause the direction or management of such entity, whether by
+contract or otherwise, or (ii) ownership of fifty percent (50%) or more of the
+outstanding shares, or (iii) beneficial ownership of such entity.  "You" (or
+"Your") shall mean an individual or Legal Entity exercising permissions granted
+by this License.
+
+"Source" form shall mean the preferred form for making modifications, including
+but not limited to software source code, documentation source, and configuration
+files.
+
+"Object" form shall mean any form resulting from mechanical transformation or
+translation of a Source form, including but not limited to compiled object code,
+generated documentation, and conversions to other media types.
+
+"Work" shall mean the work of authorship, whether in Source or Object form, made
+available under the License, as indicated by a copyright notice that is included
+in or attached to the work (an example is provided in the Appendix below).
+
+"Derivative Works" shall mean any work, whether in Source or Object form, that
+is based on (or derived from) the Work and for which the editorial revisions,
+annotations, elaborations, or other modifications represent, as a whole, an
+original work of authorship.  For the purposes of this License, Derivative Works
+shall not include works that remain separable from, or merely link (or bind by
+name) to the interfaces of, the Work and Derivative Works thereof.
+
+"Contribution" shall mean any work of authorship, including the original version
+of the Work and any modifications or additions to that Work or Derivative Works
+thereof, that is intentionally submitted to Licensor for inclusion in the Work
+by the copyright owner or by an individual or Legal Entity authorized to submit
+on behalf of the copyright owner.  For the purposes of this definition,
+"submitted" means any form of electronic, verbal, or written communication sent
+to the Licensor or its representatives, including but not limited to
+communication on electronic mailing lists, source code control systems, and
+issue tracking systems that are managed by, or on behalf of, the Licensor for
+the purpose of discussing and improving the Work, but excluding communication
+that is conspicuously marked or otherwise designated in writing by the copyright
+owner as "Not a Contribution."
+
+"Contributor" shall mean Licensor and any individual or Legal Entity on behalf
+of whom a Contribution has been received by Licensor and subsequently
+incorporated within the Work.
+
+2.  Grant of Copyright License.  Subject to the terms and conditions of this
+License, each Contributor hereby grants to You a perpetual, worldwide,
+non-exclusive, no-charge, royalty-free, irrevocable copyright license to
+reproduce, prepare Derivative Works of, publicly display, publicly perform,
+sublicense, and distribute the Work and such Derivative Works in Source or
+Object form.
+
+3.  Grant of Patent License.  Subject to the terms and conditions of this
+License, each Contributor hereby grants to You a perpetual, worldwide,
+non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this
+section) patent license to make, have made, use, offer to sell, sell, import,
+and otherwise transfer the Work, where such license applies only to those patent
+claims licensable by such Contributor that are necessarily infringed by their
+Contribution(s) alone or by combination of their Contribution(s) with the Work
+to which such Contribution(s) was submitted.  If You institute patent litigation
+against any entity (including a cross-claim or counterclaim in a lawsuit)
+alleging that the Work or a Contribution incorporated within the Work
+constitutes direct or contributory patent infringement, then any patent licenses
+granted to You under this License for that Work shall terminate as of the date
+such litigation is filed.
+
+4.  Redistribution.  You may reproduce and distribute copies of the Work or
+Derivative Works thereof in any medium, with or without modifications, and in
+Source or Object form, provided that You meet the following conditions:
+
+(a) You must give any other recipients of the Work or Derivative Works a copy of
+this License; and
+
+(b) You must cause any modified files to carry prominent notices stating that
+You changed the files; and
+
+(c) You must retain, in the Source form of any Derivative Works that You
+distribute, all copyright, patent, trademark, and attribution notices from the
+Source form of the Work, excluding those notices that do not pertain to any part
+of the Derivative Works; and
+
+(d) If the Work includes a "NOTICE" text file as part of its distribution, then
+any Derivative Works that You distribute must include a readable copy of the
+attribution notices contained within such NOTICE file, excluding those notices
+that do not pertain to any part of the Derivative Works, in at least one of the
+following places:  within a NOTICE text file distributed as part of the
+Derivative Works; within the Source form or documentation, if provided along
+with the Derivative Works; or, within a display generated by the Derivative
+Works, if and wherever such third-party notices normally appear.  The contents
+of the NOTICE file are for informational purposes only and do not modify the
+License.  You may add Your own attribution notices within Derivative Works that
+You distribute, alongside or as an addendum to the NOTICE text from the Work,
+provided that such additional attribution notices cannot be construed as
+modifying the License.
+
+You may add Your own copyright statement to Your modifications and may provide
+additional or different license terms and conditions for use, reproduction, or
+distribution of Your modifications, or for any such Derivative Works as a whole,
+provided Your use,reproduction, and distribution of the Work otherwise complies
+with the conditions stated in this License.
+
+5.  Submission of Contributions.  Unless You explicitly state otherwise, any
+Contribution intentionally submitted for inclusion in the Work by You to the
+Licensor shall be under the terms and conditions of this License, without any
+additional terms or conditions.  Notwithstanding the above, nothing herein shall
+supersede or modify the terms of any separate license agreement you may have
+executed with Licensor regarding such Contributions.
+
+6.  Trademarks.  This License does not grant permission to use the trade names,
+trademarks, service marks, or product names of the Licensor, except as required
+for reasonable and customary use in describing the origin of the Work and
+reproducing the content of the NOTICE file.
+
+7.  Disclaimer of Warranty.  Unless required by applicable law or agreed to in
+writing, Licensor provides the Work (and each Contributor provides its
+Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied, including, without limitation, any warranties
+or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+PARTICULAR PURPOSE.  You are solely responsible for determining the
+appropriateness of using or redistributing the Work and assume any risks
+associated with Your exercise of permissions under this License.
+
+8.  Limitation of Liability.  In no event and under no legal theory, whether in
+tort (including negligence), contract, or otherwise, unless required by
+applicable law (such as deliberate and grossly negligent acts) or agreed to in
+writing, shall any Contributor be liable to You for damages, including any
+direct, indirect, special, incidental, or consequential damages of any character
+arising as a result of this License or out of the use or inability to use the
+Work (including but not limited to damages for loss of goodwill, work stoppage,
+computer failure or malfunction, or any and all other commercial damages or
+losses), even if such Contributor has been advised of the possibility of such
+damages.
+
+9.  Accepting Warranty or Additional Liability.  While redistributing the Work
+or Derivative Works thereof, You may choose to offer,and charge a fee for,
+acceptance of support, warranty, indemnity, or other liability obligations
+and/or rights consistent with this License.  However, in accepting such
+obligations, You may act only on Your own behalf and on Your sole
+responsibility, not on behalf of any other Contributor, and only if You agree to
+indemnify, defend, and hold each Contributor harmless for any liability incurred
+by, or claims asserted against, such Contributor by reason of your accepting any
+such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+To apply the Apache License to your work, attach the following boilerplate
+notice, with the fields enclosed by brackets "[]" replaced with your own
+identifying information.  (Don't include the brackets!)  The text should be
+enclosed in the appropriate comment syntax for the file format.  We also
+recommend that a file or class name and description of purpose be included on
+the same "printed page" as the copyright notice for easier identification within
+third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+Licensed under the Apache License, Version 2.0 (the "License"); you may not use
+this file except in compliance with the License.  You may obtain a copy of the
+License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software distributed
+under the License is distributed on an "AS IS" BASIS,WITHOUT WARRANTIES OR
+CONDITIONS OF ANY KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations under the License.
+
+%% The following software may be included in this product:  NSIS 1.0j; Use of
+any of this software is governed by the terms of the license below:  
+Copyright (C) 1999-2000 Nullsoft, Inc.
+
+This software is provided 'as-is', without any express or implied warranty.  In
+no event will the authors be held liable for any damages arising from the use of
+this software.  Permission is granted to anyone to use this software for any
+purpose, including commercial applications, and to alter it and redistribute it
+freely, subject to the following restrictions:
+
+1.  The origin of this software must not be misrepresented; you must not claim
+that you wrote the original software.  If you use this software in a product, an
+acknowledgment in the product documentation would be appreciated but is not
+required.
+
+2.  Altered source versions must be plainly marked as such, and must not be
+misrepresented as being the original software.
+
+3.  This notice may not be removed or altered from any source distribution.
+Justin Frankel justin@nullsoft.com"
+
+%% Some Portions licensed from IBM are available at: 
+http://www.ibm.com/software/globalization/icu/
+
+%% Portions Copyright Eastman Kodak Company 1992
+
+%% Lucida is a registered trademark or trademark of Bigelow & Holmes in the U.S.
+and other countries.
+
+%% Portions licensed from Taligent, Inc.
+
+%% The following software may be included in this product:IAIK PKCS Wrapper; Use
+of any of this software is governed by the terms of the license below:
+
+Copyright (c) 2002 Graz University of Technology.  All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification,are permitted provided that the following conditions are met:
+
+1.  Redistributions of source code must retain the above copyright notice, this
+list of conditions and the following disclaimer.
+
+2.  Redistributions in binary form must reproduce the above copyright notice,
+this list of conditions and the following disclaimer in the documentation and/or
+other materials provided with the distribution.
+
+3.  The end-user documentation included with the redistribution, if any, must
+include the following acknowledgment:
+
+   "This product includes software developed by IAIK of Graz University of Technology."
+
+Alternately, this acknowledgment may appear in the software itself, if and
+wherever such third-party acknowledgments normally appear.
+
+4.  The names "Graz University of Technology" and "IAIK of Graz University of
+Technology" must not be used to endorse or promote products derived from this
+software without prior written permission.
+
+5.  Products derived from this software may not be called "IAIK PKCS Wrapper",
+nor may "IAIK" appear in their name, without prior written permission of Graz
+University of Technology.
+
+THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE LICENSOR
+BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
+CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
+GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
+LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
+THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+%% The following software may be included in this product:  Document Object
+Model (DOM) v.  Level 3; Use of any of this software is governed by the terms of
+the license below:
+
+W3C SOFTWARE NOTICE AND LICENSE
+
+http://www.w3.org/Consortium/Legal/2002/copyright-software-20021231
+
+This work (and included software, documentation such as READMEs, or other
+related items) is being provided by the copyright holders under the following
+license.  By obtaining, using and/or copying this work, you (the licensee) agree
+that you have read, understood, and will comply with the following terms and
+conditions.
+
+Permission to copy, modify, and distribute this software and its documentation,
+with or without modification, for any purpose and without fee or royalty is
+hereby granted, provided that you include the following on ALL copies of the
+software and documentation or portions thereof, including modifications:
+
+1.The full text of this NOTICE in a location viewable to users of the
+redistributed or derivative work.
+
+2.Any pre-existing intellectual property disclaimers, notices, or terms and
+  conditions.  If none exist, the W3C Software Short Notice should be included
+  (hypertext is preferred, text is permitted) within the body of any
+  redistributed or derivative code.
+
+3.Notice of any changes or modifications to the files, including the date
+  changes were made.  (We recommend you provide URIs to the location from which
+  the code is derived.)
+
+THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS
+MAKENO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT
+LIMITED TO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE
+OR THAT THEUSE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD
+PARTY PATENTS,COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
+
+COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL
+ORCONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.
+The name and trademarks of copyright holders may NOT be used in advertising or
+publicity pertaining to the software without specific, written prior permission.
+Title to copyright in this software and any associated documentation will at all
+times remain with copyright holders.
+
+____________________________________
+
+This formulation of W3C's notice and license became active on December 31 2002.
+This version removes the copyright ownership notice such that this license can
+be used with materials other than those owned by the W3C, reflects that ERCIM is
+now a host of the W3C, includes references to this specific dated version of the
+license, and removes the ambiguous grant of "use".  Otherwise, this version is
+the same as the previous version and is written so as to preserve the Free
+Software Foundation's assessment of GPL compatibility and OSI's certification
+under the Open Source Definition.  Please see our Copyright FAQ for common
+questions about using materials from our site, including specific terms and
+conditions for packages like libwww, Amaya, and Jigsaw.  Other questions about
+this notice can be directed to site-policy@w3.org.
+
+%% The following software may be included in this product:  Xalan, Xerces; Use
+of any of this software is governed by the terms of the license below:  /*
+
+ * The Apache Software License, Version 1.1
+ *
+ *
+ * Copyright (c) 1999-2003 The Apache Software Foundation.  All rights  
+ * reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ *
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions and the following disclaimer.  
+ *
+ * 2. Redistributions in binary form must reproduce the above copyright
+ *    notice, this list of conditions and the following disclaimer in
+ *    the documentation and/or other materials provided with the
+ *    distribution.
+ *
+ * 3. The end-user documentation included with the redistribution,
+ *    if any, must include the following acknowledgment:  
+ *       "This product includes software developed by the
+ *        Apache Software Foundation (http://www.apache.org/)."
+ *    Alternately, this acknowledgment may appear in the software itself,
+ *    if and wherever such third-party acknowledgments normally appear.
+ *
+ * 4. The names "Xerces" and "Apache Software Foundation" must
+ *    not be used to endorse or promote products derived from this
+ *    software without prior written permission. For written 
+ *    permission, please contact apache@apache.org.
+ *
+ * 5. Products derived from this software may not be called "Apache",
+ *    nor may "Apache" appear in their name, without prior written
+ *    permission of the Apache Software Foundation.
+ *
+ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+ * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
+ * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+ * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
+ * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+ * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
+ * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
+ * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
+ * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
+ * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
+ * SUCH DAMAGE.
+ * ====================================================================
+ *
+ * This software consists of voluntary contributions made by many
+ * individuals on behalf of the Apache Software Foundation and was
+ * originally based on software copyright (c) 1999, International
+ * Business Machines, Inc., http://www.ibm.com.  For more
+ * information on the Apache Software Foundation, please see http://www.apache.org
+ * 
+
+%% The following software may be included in this product:  W3C XML Conformance
+Test Suites v.  20020606; Use of any of this software is governed by the terms
+of the license below:
+
+W3C SOFTWARE NOTICE AND LICENSE
+
+Copyright 1994-2002 World Wide Web Consortium, (Massachusetts Institute of
+Technology, Institut National de Recherche en Informatique et en
+Automatique,Keio University).  All Rights Reserved.
+http://www.w3.org/Consortium/Legal/
+
+This W3C work (including software, documents, or other related items) is being
+provided by the copyright holders under the following license.  By
+obtaining,using and/or copying this work, you (the licensee) agree that you have
+read,understood, and will comply with the following terms and conditions:
+
+Permission to use, copy, modify, and distribute this software and its
+documentation, with or without modification, for any purpose and without fee
+orroyalty is hereby granted, provided that you include the following on ALL
+copiesof the software and documentation or portions thereof, including
+modifications,that you make:
+
+1.  The full text of this NOTICE in a location viewable to users of the
+redistributed or derivative work.
+
+2.  Any pre-existing intellectual property disclaimers, notices, or terms and
+conditions.  If none exist, a short notice of the following form (hypertext is
+preferred, text is permitted) should be used within the body of any
+redistributed or derivative code:  "Copyright [$date-of-software] World Wide Web
+Consortium, (Massachusetts Institute of Technology, Institut National
+deRecherche en Informatique et en Automatique, Keio University).  All Rights
+Reserved.  http://www.w3.org/Consortium/Legal/"
+
+3.  Notice of any changes or modifications to the W3C files, including the date
+changes were made.  (We recommend you provide URIs to the location from which
+the code is derived.)
+
+THIS SOFTWARE AND DOCUMENTATION IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS
+MAKENO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING BUT NOT
+LIMITEDTO, WARRANTIES OF MERCHANTABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE
+OR THATTHE USE OF THE SOFTWARE OR DOCUMENTATION WILL NOT INFRINGE ANY THIRD
+PARTYPATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
+
+COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL
+ORCONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE SOFTWARE OR DOCUMENTATION.
+
+The name and trademarks of copyright holders may NOT be used in advertising or
+publicity pertaining to the software without specific, written prior permission.
+Title to copyright in this software and any associated documentation will at all
+times remain with copyright holders.
+
+____________________________________
+
+This formulation of W3C's notice and license became active on August 14 1998
+soas to improve compatibility with GPL.  This version ensures that W3C software
+licensing terms are no more restrictive than GPL and consequently W3C software
+may be distributed in GPL packages.  See the older formulation for the policy
+prior to this date.  Please see our Copyright FAQ for common questions about
+using materials from our site, including specific terms and conditions for
+packages like libwww, Amaya, and Jigsaw.  Other questions about this notice can
+be directed to site-policy@w3.org.
+
+%% The following software may be included in this product:  W3C XML Schema Test
+Collection v.  1.16.2; Use of any of this software is governed by the terms of
+the license below:  W3C DOCUMENT NOTICE AND LICENSE
+
+Copyright 1994-2002 World Wide Web Consortium, (Massachusetts Institute of
+Technology, Institut National de Recherche en Informatique et en
+Automatique,Keio University).  All Rights Reserved.
+http://www.w3.org/Consortium/Legal/
+
+Public documents on the W3C site are provided by the copyright holders under the
+following license.  The software or Document Type Definitions (DTDs) associated
+with W3C specifications are governed by the Software Notice.  By using and/or
+copying this document, or the W3C document from which this statement is
+linked,you (the licensee) agree that you have read, understood, and will comply
+with the following terms and conditions:
+
+Permission to use, copy, and distribute the contents of this document, or theW3C
+document from which this statement is linked, in any medium for any purpose and
+without fee or royalty is hereby granted, provided that you include the
+following on ALL copies of the document, or portions thereof, that you use:
+
+1. A link or URL to the original W3C document.
+ 
+2.  The pre-existing copyright notice of the original author, or if it doesn't
+exist, a notice of the form:  "Copyright [$date-of-document] World Wide
+WebConsortium, (Massachusetts Institute of Technology, Institut National
+deRecherche en Informatique et en Automatique, Keio University).  All Rights
+Reserved.  http://www.w3.org/Consortium/Legal/" (Hypertext is preferred, but
+atextual representation is permitted.)
+
+3. If it exists, the STATUS of the W3C document.
+
+When space permits, inclusion of the full text of this NOTICE should be
+provided.  We request that authorship attribution be provided in any
+software,documents, or other items or products that you create pursuant to the
+implementation of the contents of this document, or any portion thereof.
+
+No right to create modifications or derivatives of W3C documents is granted
+pursuant to this license.  However, if additional requirements (documented in
+the Copyright FAQ) are satisfied, the right to create modifications or
+derivatives is sometimes granted by the W3C to individuals complying with those
+requirements.  THIS DOCUMENT IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO
+REPRESENTATIONSOR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+WARRANTIES OFMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
+NON-INFRINGEMENT, OR TITLE;THAT THE CONTENTS OF THE DOCUMENT ARE SUITABLE FOR
+ANY PURPOSE; NOR THAT THEIMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY
+THIRD PARTY PATENTS,COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
+
+COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL
+ORCONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE DOCUMENT OR THE
+PERFORMANCEOR IMPLEMENTATION OF THE CONTENTS THEREOF.
+
+The name and trademarks of copyright holders may NOT be used in advertising or
+publicity pertaining to this document or its contents without specific, written
+prior permission.  Title to copyright in this document will at all times remain
+with copyright holders.
+
+----------------------------------------------------------------------------
+
+This formulation of W3C's notice and license became active on April 05 1999 soas
+to account for the treatment of DTDs, schema's and bindings.  See the older
+formulation for the policy prior to this date.  Please see our Copyright FAQ for
+common questions about using materials from our site, including specific terms
+and conditions for packages like libwww, Amaya, and Jigsaw.  Other questions
+about this notice can be directed to site-policy@w3.org.  webmaster (last
+updated by reagle on 1999/04/99.)
+
+
+%% The following software may be included in this product:  Mesa 3-D graphics
+library v.  5; Use of any of this software is governed by the terms of the
+license below:
+
+core Mesa code  include/GL/gl.h       Brian Paul          
+Mesa GLX driver      include/GL/glx.h      Brian Paul
+Mesa Ext registry    include/GL/glext.h    SGI
+SGI Free B           include/GL/glxext.h
+
+Mesa license:
+
+The Mesa distribution consists of several components.  Different copyrights and
+licenses apply to different components.  For example, GLUT is copyrighted by
+Mark Kilgard, some demo programs are copyrighted by SGI, some of the Mesa device
+drivers are copyrighted by their authors.  See below for a list of Mesa's
+components and the copyright/license for each.
+
+The core Mesa library is licensed according to the terms of the XFree86copyright
+(an MIT-style license).  This allows integration with the XFree86/DRIproject.
+Unless otherwise stated, the Mesa source code and documentation is licensed as
+follows:
+
+Copyright (C) 1999-2003 Brian Paul All Rights Reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"),to deal in the
+Software without restriction, including without limitation the rights to use,
+copy, modify, merge, publish, distribute, sublicense,and/or sell copies of the
+Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESSOR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,FITNESS
+FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALLBRIAN PAUL BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER INAN ACTION OF
+CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
+SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+SGI FREE SOFTWARE LICENSE B (Version 1.1 [02/22/2000]) 
+1. Definitions.
+
+1.1 "Additional Notice Provisions" means such additional provisions as appear in
+the Notice in Original Code under the heading "Additional Notice Provisions."
+
+1.2 "Covered Code" means the Original Code or Modifications, or any combination
+thereof.
+
+1.3 "Hardware" means any physical device that accepts input, processes input,
+stores the results of processing, and/or provides output.
+
+1.4 "Larger Work" means a work that combines Covered Code or portions thereof
+with code not governed by the terms of this License.
+
+1.5 "Licensable" means having the right to grant, to the maximum extent
+possible, whether at the time of the initial grant or subsequently acquired, any
+and all of the rights conveyed herein.
+
+1.6 "License" means this document.
+
+1.7 "Licensed Patents" means patent claims Licensable by SGI that are infringed
+by the use or sale of Original Code or any Modifications provided by SGI, or any
+combination thereof.
+
+1.8 "Modifications" means any addition to or deletion from the substance or
+structure of the Original Code or any previous Modifications.  When Covered Code
+is released as a series of files, a Modification is:  A.  Any addition to the
+contents of a file containing Original Code and/or addition to or deletion from
+the contents of a file containing previous Modifications.B.  Any new file that
+contains any part of the Original Code or previous Modifications.
+
+1.9 "Notice" means any notice in Original Code or Covered Code, as required by
+and in compliance with this License.
+
+1.10 "Original Code" means source code of computer software code that is
+described in the source code Notice required by Exhibit A as Original Code, and
+updates and error corrections specifically thereto.
+
+1.11 "Recipient" means an individual or a legal entity exercising rights under,
+and complying with all of the terms of, this License or a future version of this
+License issued under Section 8.  For legal entities, "Recipient" includes any
+entity that controls, is controlled by, or is under common control with
+Recipient.  For purposes of this definition, "control" of an entity means (a)
+the power, direct or indirect, to direct or manage such entity, or (b) ownership
+of fifty percent (50%) or more of the outstanding shares or beneficial ownership
+of such entity.
+
+1.12 "Recipient Patents" means patent claims Licensable by a Recipient that are
+infringed by the use or sale of Original Code or any Modifications provided by
+SGI, or any combination thereof.
+
+1.13 "SGI" means Silicon Graphics, Inc.
+
+1.14 "SGI Patents" means patent claims Licensable by SGI other than the Licensed
+Patents.
+
+2.  License Grant and Restrictions.
+
+2.1 SGI License Grant.  Subject to the terms of this License and any third party
+intellectual property claims, for the duration of intellectual property
+protections inherent in the Original Code, SGI hereby grants Recipient a
+worldwide, royalty-free, non-exclusive license, to do the following:  (i) under
+copyrights Licensable by SGI, to reproduce, distribute, create derivative works
+from, and, to the extent applicable, display and perform the Original Code
+and/or any Modifications provided by SGI alone and/or as part of a Larger Work;
+and (ii) under any Licensable Patents, to make, have made, use, sell, offer for
+sale, import and/or otherwise transfer the Original Code and/or any
+Modifications provided by SGI.  Recipient accepts the terms and conditions of
+this License by undertaking any of the aforementioned actions.  The patent
+license shall apply to the Covered Code if, at the time any related Modification
+is added, such addition of the Modification causes such combination to be
+covered by the Licensed Patents .  The patent license in Section 2.1(ii) shall
+not apply to any other combinations that include the Modification.  No patent
+license is provided under SGI Patents for infringements of SGI Patents by
+Modifications not provided by SGI or combinations of Original Code and
+Modifications not provided by SGI.
+
+2.2 Recipient License Grant.  Subject to the terms of this License and any third
+party intellectual property claims, Recipient hereby grants SGI and any other
+Recipients a worldwide, royalty-free, non-exclusive license, under any Recipient
+Patents, to make, have made, use, sell, offer for sale, import and/or otherwise
+transfer the Original Code and/or any Modifications provided by SGI.
+
+2.3 No License For Hardware Implementations.  The licenses granted in Section
+2.1 and 2.2 are not applicable to implementation in Hardware of the algorithms
+embodied in the Original Code or any Modifications provided by SGI .
+
+3. Redistributions. 
+
+3.1 Retention of Notice/Copy of License.  The Notice set forth in Exhibit A,
+below, must be conspicuously retained or included in any and all redistributions
+of Covered Code.  For distributions of the Covered Code in source code form, the
+Notice must appear in every file that can include a text comments field; in
+executable form, the Notice and a copy of this License must appear in related
+documentation or collateral where the Recipient's rights relating to Covered
+Code are described.  Any Additional Notice Provisions which actually appears in
+the Original Code must also be retained or included in any and all
+redistributions of Covered Code.
+
+3.2 Alternative License.  Provided that Recipient is in compliance with the
+terms of this License, Recipient may, so long as without derogation of any of
+SGI's rights in and to the Original Code, distribute the source code and/or
+executable version(s) of Covered Code under (1) this License; (2) a license
+identical to this License but for only such changes as are necessary in order to
+clarify Recipient's role as licensor of Modifications; and/or (3) a license of
+Recipient's choosing, containing terms different from this License, provided
+that the license terms include this Section 3 and Sections 4, 6, 7, 10, 12, and
+13, which terms may not be modified or superseded by any other terms of such
+license.  If Recipient elects to use any license other than this License,
+Recipient must make it absolutely clear that any of its terms which differ from
+this License are offered by Recipient alone, and not by SGI.  It is emphasized
+that this License is a limited license, and, regardless of the license form
+employed by Recipi ent in accordance with this Section 3.2, Recipient may
+relicense only such rights, in Original Code and Modifications by SGI, as it has
+actually been granted by SGI in this License.
+
+3.3 Indemnity.  Recipient hereby agrees to indemnify SGI for any liability
+incurred by SGI as a result of any such alternative license terms Recipient
+offers.
+
+4.  Termination.  This License and the rights granted hereunder will terminate
+automatically if Recipient breaches any term herein and fails to cure such
+breach within 30 days thereof.  Any sublicense to the Covered Code that is
+properly granted shall survive any termination of this License, absent
+termination by the terms of such sublicense.  Provisions that, by their nature,
+must remain in effect beyond the termination of this License, shall survive.
+
+5.  No Trademark Or Other Rights.  This License does not grant any rights to:
+(i) any software apart from the Covered Code, nor shall any other rights or
+licenses not expressly granted hereunder arise by implication, estoppel or
+otherwise with respect to the Covered Code; (ii) any trade name, trademark or
+service mark whatsoever, including without limitation any related right for
+purposes of endorsement or promotion of products derived from the Covered Code,
+without prior written permission of SGI; or (iii) any title to or ownership of
+the Original Code, which shall at all times remains with SGI.  All rights in the
+Original Code not expressly granted under this License are reserved.
+
+6.  Compliance with Laws; Non-Infringement.  There are various worldwide laws,
+regulations, and executive orders applicable to dispositions of Covered Code,
+including without limitation export, re-export, and import control laws,
+regulations, and executive orders, of the U.S.  government and other countries,
+and Recipient is reminded it is obliged to obey such laws, regulations, and
+executive orders.  Recipient may not distribute Covered Code that (i) in any way
+infringes (directly or contributorily) any intellectual property rights of any
+kind of any other person or entity or (ii) breaches any representation or
+warranty, express, implied or statutory, to which, under any applicable law, it
+might be deemed to have been subject.
+
+7.  Claims of Infringement.  If Recipient learns of any third party claim that
+any disposition of Covered Code and/or functionality wholly or partially
+infringes the third party's intellectual property rights, Recipient will
+promptly notify SGI of such claim.
+
+8.  Versions of the License.  SGI may publish revised and/or new versions of the
+License from time to time, each with a distinguishing version number.  Once
+Covered Code has been published under a particular version of the License,
+Recipient may, for the duration of the license, continue to use it under the
+terms of that version, or choose to use such Covered Code under the terms of any
+subsequent version published by SGI.  Subject to the provisions of Sections 3
+and 4 of this License, only SGI may modify the terms applicable to Covered Code
+created under this License.
+
+9.  DISCLAIMER OF WARRANTY.  COVERED CODE IS PROVIDED "AS IS."  ALL EXPRESS AND
+IMPLIED WARRANTIES AND CONDITIONS ARE DISCLAIMED, INCLUDING, WITHOUT LIMITATION,
+ANY IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY, SATISFACTORY QUALITY,
+FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.  SGI ASSUMES NO RISK AS
+TO THE QUALITY AND PERFORMANCE OF THE SOFTWARE.  SHOULD THE SOFTWARE PROVE
+DEFECTIVE IN ANY RESPECT, SGI ASSUMES NO COST OR LIABILITY FOR SERVICING, REPAIR
+OR CORRECTION.  THIS DISCLAIMER OF WARRANTY IS AN ESSENTIAL PART OF THIS
+LICENSE.  NO USE OF ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT SUBJECT TO
+THIS DISCLAIMER.
+
+10.  LIMITATION OF LIABILITY.  UNDER NO CIRCUMSTANCES NOR LEGAL THEORY, WHETHER
+TORT (INCLUDING, WITHOUT LIMITATION, NEGLIGENCE OR STRICT LIABILITY), CONTRACT,
+OR OTHERWISE, SHALL SGI OR ANY SGI LICENSOR BE LIABLE FOR ANY DIRECT, INDIRECT,
+SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER INCLUDING,
+WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, WORK STOPPAGE, LOSS OF DATA,
+COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER COMMERCIAL DAMAGES OR
+LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN INFORMED OF THE POSSIBILITY OF SUCH
+DAMAGES.  THIS LIMITATION OF LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR
+PERSONAL INJURY RESULTING FROM SGI's NEGLIGENCE TO THE EXTENT APPLICABLE LAW
+PROHIBITS SUCH LIMITATION.  SOME JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR
+LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO THAT EXCLUSION AND
+LIMITATION MAY NOT APPLY TO RECIPIENT.
+
+11.  Indemnity.  Recipient shall be solely responsible for damages arising,
+directly or indirectly, out of its utilization of rights under this License.
+Recipient will defend, indemnify and hold harmless Silicon Graphics, Inc.  from
+and against any loss, liability, damages, costs or expenses (including the
+payment of reasonable attorneys fees) arising out of Recipient's use,
+modification, reproduction and distribution of the Covered Code or out of any
+representation or warranty made by Recipient.
+
+12.  U.S.  Government End Users.  The Covered Code is a "commercial item"
+consisting of "commercial computer software" as such terms are defined in title
+48 of the Code of Federal Regulations and all U.S.  Government End Users acquire
+only the rights set forth in this License and are subject to the terms of this
+License.
+
+13.  Miscellaneous.  This License represents the complete agreement concerning
+the its subject matter.  If any provision of this License is held to be
+unenforceable, such provision shall be reformed so as to achieve as nearly as
+possible the same legal and economic effect as the original provision and the
+remainder of this License will remain in effect.  This License shall be governed
+by and construed in accordance with the laws of the United States and the State
+of California as applied to agreements entered into and to be performed entirely
+within California between California residents.  Any litigation relating to this
+License shall be subject to the exclusive jurisdiction of the Federal Courts of
+the Northern District of California (or, absent subject matter jurisdiction in
+such courts, the courts of the State of California), with venue lying
+exclusively in Santa Clara County, California, with the losing party responsible
+for costs, including without limitation, court costs and reasonable attorneys
+fees and ex penses.  The application of the United Nations Convention on
+Contracts for the International Sale of Goods is expressly excluded.  Any law or
+regulation that provides that the language of a contract shall be construed
+against the drafter shall not apply to this License.
+
+Exhibit A License Applicability.  Except to the extent portions of this file are
+made subject to an alternative license as permitted in the SGI Free Software
+License B, Version 1.1 (the "License"), the contents of this file are subject
+only to the provisions of the License.  You may not use this file except in
+compliance with the License.  You may obtain a copy of the License at Silicon
+Graphics, Inc., attn:  Legal Services, 1600 Amphitheatre Parkway, Mountain View,
+CA 94043-1351, or at:  http://oss.sgi.com/projects/FreeB Note that, as provided
+in the License, the Software is distributed on an "AS IS" basis, with ALL
+EXPRESS AND IMPLIED WARRANTIES AND CONDITIONS DISCLAIMED, INCLUDING, WITHOUT
+LIMITATION, ANY IMPLIED WARRANTIES AND CONDITIONS OF MERCHANTABILITY,
+SATISFACTORY QUALITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT.
+Original Code.  The Original Code is:  [name of software, version number, and
+release date], developed by Silicon Graphics, Inc.  The Original Code is
+Copyright (c) [dates of first publication, as appearing in the Notice in the
+Original Code] Silicon Graphics, Inc.  Copyright in any portions created by
+third parties is as indicated elsewhere herein.  All Rights Reserved.
+Additional Notice Provisions:  [such additional provisions, if any, as appear in
+the Notice in the Original Code under the heading "Additional Notice
+Provisions"]
+
+%% The following software may be included in this product:  Byte Code
+Engineering Library (BCEL) v.  5; Use of any of this software is governed by the
+terms of the license below:
+
+Apache Software License 
+
+/
+====================================================================
+The Apache Software License, Version 1.1
+
+Copyright (c) 2001 The Apache Software Foundation.  All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+1.  Redistributions of source code must retain the above copyright notice, this
+list of conditions and the following disclaimer.
+
+2.  Redistributions in binary form must reproduce the above copyright notice,
+this list of conditions and the following disclaimer in the documentation and/or
+other materials providedwith the distribution.
+
+3.  The end-user documentation included with the redistribution, if any, must
+include the following acknowledgment:  "This product includes software developed
+by the Apache Software Foundation (http://www.apache.org/)."  Alternately, this
+acknowledgment may appear in the software itself, if and wherever such
+third-party acknowledgments normally appear.
+
+4.  The names "Apache" and "Apache Software Foundation"and "Apache BCEL" must
+not be used to endorse or promote products derived from this software without
+prior written permission.  For written permission, please contact
+apache@apache.org.
+
+5.  Products derived from this software may not be called"Apache", "Apache
+BCEL", nor may "Apache" appear in their name,without prior written permission of
+the Apache Software Foundation.
+
+THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED ORIMPLIED WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIEDWARRANTIES OF MERCHANTABILITY AND
+FITNESS FOR A PARTICULAR PURPOSEARE DISCLAIMED.  IN NO EVENT SHALL THE APACHE
+SOFTWAREFOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+INDIRECT,INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,BUT
+NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;LOSS OF USE, DATA,
+OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVERCAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICTLIABILITY, OR TORT (INCLUDING NEGLIGENCE
+OR OTHERWISE) ARISING INANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+OF THEPOSSIBILITY OF SUCH DAMAGE.
+====================================================================
+
+This software consists of voluntary contributions made by many individuals on
+behalf of the Apache Software Foundation.  For more information on the Apache
+Software Foundation, please see http://www.apache.org.  /
+
+
+
+%% The following software may be included in this product:  Regexp, Regular
+Expression Package v.  1.2; Use of any of this software is governed by the terms
+of the license below:  The Apache Software License, Version 1.1
+
+Copyright (c) 2001 The Apache Software Foundation.  All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification,are permitted provided that the following conditions are met:
+
+1.  Redistributions of source code must retain the above copyright notice, this
+list of conditions and the following disclaimer.
+
+2.  Redistributions in binary form must reproduce the above copyright notice,
+this list of conditions and the following disclaimer in the documentation and/or
+other materials provided with the distribution.
+
+3.  The end-user documentation included with the redistribution, if any, must
+include the following acknowledgment:  "This product includes software developed
+by the Apache Software Foundation (http://www.apache.org/)."  Alternately, this
+acknowledgment may appear in the software itself, if and wherever such
+third-party acknowledgments normally appear.
+
+4.  The names "Apache" and "Apache Software Foundation" and "Apache Turbine"
+must not be used to endorse or promote products derived from this software
+without prior written permission.  For written permission, please contact
+apache@apache.org.
+
+5.  Products derived from this software may not be called "Apache", "Apache
+Turbine", nor may "Apache" appear in their name, without prior written
+permission of the Apache Software Foundation.
+
+THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE APACHE
+SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+==================================================================== 
+
+This software consists of voluntary contributions made by many individuals on
+behalf of the Apache Software Foundation.  For more information on the Apache
+Software Foundation, please see http://www.apache.org.
+
+%% The following software may be included in this product:  CUP Parser Generator
+for Java v.  0.10k; Use of any of this software is governed by the terms of the
+license below:  CUP Parser Generator Copyright Notice, License, and Disclaimer
+
+Copyright 1996-1999 by Scott Hudson, Frank Flannery, C.  Scott Ananian
+
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose and without fee is hereby granted, provided that
+the above copyright notice appear in all copies and that both the copyright
+notice and this permission notice and warranty disclaimer appear in supporting
+documentation, and that the names of the authors or their employers not be used
+in advertising or publicity pertaining to distribution of the software without
+specific, written prior permission.
+
+The authors and their employers disclaim all warranties with regard to this
+software, including all implied warranties of merchantability and fitness.  In
+no event shall the authors or their employers be liable for any special,
+indirect or consequential damages or any damages whatsoever resulting from loss
+of use, data or profits, whether in an action of contract,negligence or other
+tortious action, arising out of or in connection with the use or performance of
+this software.
+
+%% The following software may be included in this product:  JLex:  A Lexical
+Analyzer Generator for Java v.  1.2.5; Use of any of this software is governed
+by the terms of the license below:  JLEX COPYRIGHT NOTICE, LICENSE AND
+DISCLAIMER.
+
+Copyright 1996-2003 by Elliot Joel Berk and C.  Scott Ananian
+
+Permission to use, copy, modify, and distribute this software and its
+documentation for any purpose and without fee is hereby granted, provided that
+the above copyright notice appear in all copies and that both the copyright
+notice and this permission notice and warranty disclaimer appear in supporting
+documentation, and that the name of the authors or their employers not be used
+in advertising or publicity pertaining to distribution of the software without
+specific, written prior permission.
+
+The authors and their employers disclaim all warranties with regard to this
+software, including all implied warranties of merchantability and fitness.  In
+no event shall the authors or their employers be liable for any special,
+indirect or consequential damages or any damages whatsoever resulting from loss
+of use, data or profits, whether in an action of contract, negligence or other
+tortious action, arising out of or in connection with the use or performance of
+this software.
+
+Java is a trademark of Oracle Corporation.  References to the Java
+programming language in relation to JLex are not meant to imply that Oracle
+endorses this product.
+
+%% The following software may be included in this product:  SAX v.  2.0.1; Use
+of any of this software is governed by the terms of the license below:
+Copyright Status
+
+SAX is free!
+
+In fact, it's not possible to own a license to SAX, since it's been placed in
+the public domain.
+
+No Warranty
+
+Because SAX is released to the public domain, there is no warranty for the
+design or for the software implementation, to the extent permitted by applicable
+law.  Except when otherwise stated in writing the copyright holders and/or other
+parties provide SAX "as is" without warranty of any kind, either expressed or
+implied, including, but not limited to, the implied warranties of
+merchantability and fitness for a particular purpose.  The entire risk as to the
+quality and performance of SAX is with you.  Should SAX prove defective, you
+assume the cost of all necessary servicing, repair or correction.
+
+In no event unless required by applicable law or agreed to in writing will any
+copyright holder, or any other party who may modify and/or redistribute SAX, be
+liable to you for damages, including any general, special, incidental or
+consequential damages arising out of the use or inability to use SAX (including
+but not limited to loss of data or data being rendered inaccurate or losses
+sustained by you or third parties or a failure of the SAX to operate with any
+other programs), even if such holder or other party has been advised of the
+possibility of such damages.
+
+Copyright Disclaimers 
+
+This page includes statements to that effect by David Megginson, who would have
+been able to claim copyright for the original work.
+
+SAX 1.0
+
+Version 1.0 of the Simple API for XML (SAX), created collectively by the
+membership of the XML-DEV mailing list, is hereby released into the public
+domain.
+
+No one owns SAX:  you may use it freely in both commercial and non-commercial
+applications, bundle it with your software distribution, include it on a CD-ROM,
+list the source code in a book, mirror the documentation at your own web site,
+or use it in any other way you see fit.
+
+David Megginson, sax@megginson.com
+1998-05-11
+
+SAX 2.0 
+
+I hereby abandon any property rights to SAX 2.0 (the Simple API for XML), and
+release all of the SAX 2.0 source code, compiled code, and documentation
+contained in this distribution into the Public Domain.  SAX comes with NO
+WARRANTY or guarantee of fitness for any purpose.
+
+David Megginson, david@megginson.com
+2000-05-05
+
+%% The following software may be included in this product:  Cryptix; Use of any
+of this software is governed by the terms of the license below:
+
+Cryptix General License
+
+Copyright © 1995-2003 The Cryptix Foundation Limited. All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+1.Redistributions of source code must retain the copyright notice, this list of
+conditions and the following disclaimer.
+
+2.Redistributions in binary form must reproduce the above copyright notice, this
+list of conditions and the following disclaimer in the documentation and/or
+other materials provided with the distribution.  THIS SOFTWARE IS PROVIDED BY
+THE CRYPTIX FOUNDATION LIMITED AND CONTRIBUTORS ``AS IS'' AND ANY EXPRESS
+ORIMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FORA PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT
+SHALL THE CRYPTIX FOUNDATION LIMITED OR CONTRIBUTORS BELIABLE FOR ANY DIRECT,
+INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+BUT NOTLIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; OR BUSINESSINTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT(INCLUDING NEGLIGENCE
+OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ADVISED OFTHE POSSIBILITY OF SUCH DAMAGE.
+
+%% The following software may be included in this product:  W3C XML Schema Test
+Collection; Use of any of this software is governed by the terms of the license
+below:
+
+W3C DOCUMENT NOTICE AND LICENSE 
+
+Copyright 1994-2002 World Wide Web Consortium, (Massachusetts Institute of
+Technology, Institut National de Recherche en Informatique et en
+Automatique,Keio University).  All Rights Reserved.
+
+http://www.w3.org/Consortium/Legal/
+
+Public documents on the W3C site are provided by the copyright holders under the
+following license.  The software or Document Type Definitions (DTDs) associated
+with W3C specifications are governed by the Software Notice.  By using and/or
+copying this document, or the W3C document from which this statement is
+linked,you (the licensee) agree that you have read, understood, and will comply
+with the following terms and conditions:
+
+Permission to use, copy, and distribute the contents of this document, or theW3C
+document from which this statement is linked, in any medium for any purpose and
+without fee or royalty is hereby granted, provided that you include the
+following on ALL copies of the document, or portions thereof, that you use:
+
+1. A link or URL to the original W3C document.
+2.  The pre-existing copyright notice of the original author, or if it doesn't
+exist, a notice of the form:  "Copyright [$date-of-document] World Wide Web
+Consortium, (Massachusetts Institute of Technology, Institut National
+deRecherche en Informatique et en Automatique, Keio University).  All Rights
+Reserved.  http://www.w3.org/Consortium/Legal/" (Hypertext is preferred, but a
+textual representation is permitted.)
+3. If it exists, the STATUS of the W3C document.
+
+When space permits, inclusion of the full text of this NOTICE should be
+provided.  We request that authorship attribution be provided in any
+software,documents, or other items or products that you create pursuant to the
+implementation of the contents of this document, or any portion thereof.
+
+No right to create modifications or derivatives of W3C documents is granted
+pursuant to this license.  However, if additional requirements (documented in
+the Copyright FAQ) are satisfied, the right to create modifications or
+derivatives is sometimes granted by the W3C to individuals complying with those
+requirements.  
+
+THIS DOCUMENT IS PROVIDED "AS IS," AND COPYRIGHT HOLDERS MAKE NO
+REPRESENTATIONSOR WARRANTIES, EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO,
+WARRANTIES OFMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE,
+NON-INFRINGEMENT, OR TITLE;THAT THE CONTENTS OF THE DOCUMENT ARE SUITABLE FOR
+ANY PURPOSE; NOR THAT THEIMPLEMENTATION OF SUCH CONTENTS WILL NOT INFRINGE ANY
+THIRD PARTY PATENTS,COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS.
+
+COPYRIGHT HOLDERS WILL NOT BE LIABLE FOR ANY DIRECT, INDIRECT, SPECIAL
+ORCONSEQUENTIAL DAMAGES ARISING OUT OF ANY USE OF THE DOCUMENT OR THE
+PERFORMANCEOR IMPLEMENTATION OF THE CONTENTS THEREOF.
+
+The name and trademarks of copyright holders may NOT be used in advertising or
+publicity pertaining to this document or its contents without specific, written
+prior permission.  Title to copyright in this document will at all times remain
+with copyright holders.
+
+----------------------------------------------------------------------------
+
+This formulation of W3C's notice and license became active on April 05 1999 so
+as to account for the treatment of DTDs, schema's and bindings.  See the older
+formulation for the policy prior to this date.  Please see our Copyright FAQ for
+common questions about using materials from our site, including specific terms
+and conditions for packages like libwww, Amaya, and Jigsaw.  Other questions
+about this notice can be directed to site-policy@w3.org.  webmaster (last
+updated by reagle on 1999/04/99.)
+
+%% The following software may be included in this product:  Stax API; Use of any
+of this software is governed by the terms of the license below:
+
+Streaming API for XML (JSR-173) Specification
+Reference Implementation
+License Agreement
+
+READ THE TERMS OF THIS (THE "AGREEMENT") CAREFULLY BEFORE VIEWING OR USING
+THESOFTWARE LICENSED HEREUNDER.  BY VIEWING OR USING THE SOFTWARE, YOU AGREE TO
+THE TERMS OF THISAGREEMENT.  IF YOU ARE ACCESSING THE SOFTWARE ELECTRONICALLY,
+INDICATE YOUR ACCEPTANCE OF THESETERMS BY SELECTING THE "ACCEPT" BUTTON AT THE
+END OF THIS AGREEMENT.  IF YOU DO NOT AGREE TOALL THESE TERMS, PROMPTLY RETURN
+THE UNUSED SOFTWARE TO ORIGINAL CONTRIBUTOR, DEFINED HEREIN.
+
+1.0  DEFINITIONS.
+
+1.1.  "BEA" means BEA Systems, Inc., the licensor of the Original Code.
+
+1.2.  "Contributor" means BEA and each entity that creates or contributes to the
+creation of Modifications.
+
+1.3.  "Covered Code" means the Original Code or Modifications or the combination
+of the Original Code and Modifications, in each case including portions thereof
+and corresponding documentation released with the source code.
+
+1.4.  "Executable" means Covered Code in any form other than Source Code.
+
+1.5.  "FCS" means first commercial shipment of a product.
+
+1.6.  "Modifications" means any addition to or deletion from the substance or
+structure of either the Original Code or any previous Modifications.  When
+Covered Code is released as a series of files, a Modification is:
+
+(a) Any addition to or deletion from the contents of a file containing Original
+Code or previous Modifications.
+
+(b) Any new file that contains any part of the Original Code or previous
+Modifications.
+
+1.7.  "Original Code" means Source Code of computer software code Reference
+Implementation.
+
+1.8.  "Patent Claims" means any patent claim(s), now owned or hereafter
+acquired,including without limitation, method, process, and apparatus claims, in
+any patent for which the grantor has the right to grant a license.
+
+1.9.  "Reference Implementation" means the prototype or "proof of
+concept"implementation of the Specification developed and made available for
+license by or on behalf of BEA.
+
+1.10.  "Source Code" means the preferred form of the Covered Code for making
+modifications to it, including all modules it contains, plus any associated
+documentation,interface definition files, scripts used to control compilation
+and installation of an Executable, or source code differential comparisons
+against either the Original Code or another well known,available Covered Code of
+the Contributor's choice.
+
+1.11.  "Specification" means the written specification for the Streaming API for
+XML , Java technology developed pursuant to the Java Community Process.
+
+1.12.  "Technology Compatibility Kit" or "TCK" means the documentation, testing
+tools and test suites associated with the Specification as may be revised by BEA
+from time to time, that is provided so that an implementer of the Specification
+may determine if its implementation is compliant with the Specification.
+
+1.13.  "You" (or "Your") means an individual or a legal entity exercising rights
+under, and complying with all of the terms of, this Agreement or a future
+version of this Agreement issued under Section 6.1.  For legal entities, "You"
+includes any entity which controls,is controlled by, or is under common control
+with You.  For purposes of this definition,"control" means (a) the power, direct
+or indirect, to cause the direction or management of such entity, whether by
+contract or otherwise, or (b) ownership of more than fifty percent (50%) of the
+outstanding shares or beneficial ownership of such entity.
+
+2.0  SOURCE CODE LICENSE.
+
+2.1.  Copyright Grant.  Subject to the terms of this Agreement, each Contributor
+hereby grants You a non-exclusive, worldwide, royalty-free copyright license to
+reproduce,prepare derivative works of, publicly display, publicly perform,
+distribute and sublicense the Covered Code of such Contributor, if any, and such
+derivative works, in Source Code and Executable form.
+
+2.2.  Patent Grant.  Subject to the terms of this Agreement, each Contributor
+hereby grants You a non-exclusive, worldwide, royalty-free patent license under
+the Patent Claims to make, use, sell, offer to sell, import and otherwise
+transfer the Covered Code prepared and provided by such Contributor, if any, in
+Source Code and Executable form.  This patent license shall apply to the Covered
+Code if, at the time a Modification is added by the Contributor,such addition of
+the Modification causes such combination to be covered by the Patent Claims.
+The patent license shall not apply to any other combinations which include the
+Modification.
+
+2.3.  Conditions to Grants.  You understand that although each Contributor
+grants the licenses to the Covered Code prepared by it, no assurances are
+provided by any Contributor that the Covered Code does not infringe the patent
+or other intellectual property rights of any other entity.  Each Contributor
+disclaims any liability to You for claims brought by any other entity based on
+infringement of intellectual property rights or otherwise.  As a condition to
+exercising the rights and licenses granted hereunder, You hereby assume sole
+responsibility to secure any other intellectual property rights needed, if any.
+For example, if a thirdparty patent license is required to allow You to
+distribute Covered Code, it is Your responsibility to acquire that license
+before distributing such code.
+
+2.4.  Contributors' Representation.  Each Contributor represents that to its
+knowledge it has sufficient copyright rights in the Covered Code it provides ,
+if any, to grant the copyright license set forth in this Agreement.
+
+3.0  DISTRIBUION RESTRICTIONS.
+
+3.1. Application of Agreement.
+
+The Modifications which You create or to which You contribute are governed by
+the terms of this Agreement, including without limitation Section 2.0.  The
+Source Code version of Covered Code may be distributed only under the terms of
+this Agreement or a future version of this Agreement released under Section 6.1,
+and You must include a copy of this Agreement with every copy of the Source Code
+You distribute.  You may not offer or impose any terms on any Source Code
+version that alters or restricts the applicable version of this Agreement or the
+recipients' rights hereunder.  However, You may include an additional document
+offering the additional rights described in Section 3.3.
+
+3.2.  Description of Modifications.
+
+You must cause all Covered Code to which You contribute to contain a file
+documenting the changes You made to create that Covered Code and the date of any
+change.  You must include a prominent statement that the Modification is
+derived, directly or indirectly, from Original Code provided by BEA and
+including the name of BEA in (a) the Source Code, and (b) in any notice in an
+Executable version or related documentation in which You describe the origin or
+ownership of the Covered Code.
+
+%% The following software may be included in this product:  X Window System; Use
+of any of this software is governed by the terms of the license below:
+Copyright The Open Group
+
+Permission to use, copy, modify, distribute, and sell this software and its
+documentation for any purpose is hereby granted without fee, provided that the
+above copyright notice appear in all copies and that both that copyright notice
+and this permission notice appear in supporting documentation.
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESSFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE OPEN
+GROUPBE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OFCONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH
+THESOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+Except as contained in this notice, the name of The Open Group shall not be used
+in advertising or otherwise to promote the sale, use or other dealings in this
+Software without prior written authorization from The Open Group.
+
+Portions also covered by other licenses as noted in the above URL.
+
+%% The following software may be included in this product:  dom4j v.  1.6; Use
+of any of this software is governed by the terms of the license below:
+
+Redistribution and use of this software and associated documentation
+("Software"), with or without modification, are permitted provided that the
+following conditions are met:
+
+1.  Redistributions of source code must retain copyright statements and notices
+Redistributions must also contain a copy of this document.
+
+2.  Redistributions in binary form must reproduce the above copyright
+notice,this list of conditions and the following disclaimer in the documentation
+and/or other materials provided with the distribution.
+
+3.  The name "DOM4J" must not be used to endorse or promote products derived
+from this Software without prior written permission of MetaStuff, Ltd.  For
+written permission, please contact dom4j-info@metastuff.com.
+
+4.  Products derived from this Software may not be called "DOM4J" nor may"DOM4J"
+appear in their names without prior written permission of MetaStuff,Ltd.  DOM4J
+is a registered trademark of MetaStuff, Ltd.
+
+5.  Due credit should be given to the DOM4J Project - http://www.dom4j.org
+
+THIS SOFTWARE IS PROVIDED BY METASTUFF, LTD.  AND CONTRIBUTORS ``AS IS'' AND
+ANYEXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIEDWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+AREDISCLAIMED.  IN NO EVENT SHALL METASTUFF, LTD.  OR ITS CONTRIBUTORS BE LIABLE
+FORANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES;LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
+AND ONANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
+TORT(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+THISSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+Copyright 2001-2005 (C) MetaStuff, Ltd.  All Rights Reserved.
+
+%% The following software may be included in this product:  Retroweaver; Use of
+any of this software is governed by the terms of the license below:
+
+Copyright (c) February 2004, Toby Reyelts All rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+Redistributions of source code must retain the above copyright notice, this list
+of conditions and the following disclaimer.  Redistributions in binary form must
+reproduce the above copyright notice, this list of conditions and the following
+disclaimer in the documentation and/or other materials provided with the
+distribution.  Neither the name of Toby Reyelts nor the names of his
+contributors may be used to endorse or promote products derived from this
+software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICTLIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+%% The following software may be included in this product:  stripper; Use of any
+of this software is governed by the terms of the license below:
+
+Stripper :  debug information stripper Copyright (c) 2003 Kohsuke Kawaguchi All
+rights reserved.
+
+Redistribution and use in source and binary forms, with or without modification,
+are permitted provided that the following conditions are met:
+
+1.  Redistributions of source code must retain the above copyright notice, this
+list of conditions and the following disclaimer.
+
+2.  Redistributions in binary form must reproduce the above copyright notice,
+this list of conditions and the following disclaimer in the documentation and/or
+other materials provided with the distribution.
+
+3.  Neither the name of the copyright holders nor the names of its contributors
+may be used to endorse or promote products derived from this software without
+specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
+ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
+WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
+DISCLAIMED.  IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR
+ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
+LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
+SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+%% The following software may be included in this product:  libpng official PNG
+reference library; Use of any of this software is governed by the terms of the
+license below:
+
+This copy of the libpng notices is provided for your convenience.  In case of
+any discrepancy between this copy and the notices in the file png.h that is
+included in the libpng distribution, the latter shall prevail.
+
+COPYRIGHT NOTICE, DISCLAIMER, and LICENSE:
+
+If you modify libpng you may insert additional notices immediately following
+this sentence.
+
+libpng version 1.2.6, December 3, 2004, is Copyright (c) 2004 Glenn
+   Randers-Pehrson, and is distributed according to the same disclaimer and
+   license as libpng-1.2.5with the following individual added to the list of
+   Contributing Authors Cosmin Truta
+
+libpng versions 1.0.7, July 1, 2000, through 1.2.5 - October 3, 2002, are
+   Copyright (c) 2000-2002 Glenn Randers-Pehrson, and are distributed according
+   to the same disclaimer and license as libpng-1.0.6 with the following
+   individuals added to the list of Contributing Authors Simon-Pierre Cadieux
+   Eric S.  Raymond Gilles Vollant
+
+and with the following additions to the disclaimer:
+
+There is no warranty against interference with your enjoyment of the library or
+against infringement.  There is no warranty that our efforts or the library will
+fulfill any of your particular purposes or needs.  This library is provided with
+all faults, and the entire risk of satisfactory quality, performance, accuracy,
+and effort is with the user.
+
+libpng versions 0.97, January 1998, through 1.0.6, March 20, 2000, are Copyright
+   (c) 1998, 1999 Glenn Randers-Pehrson, and are distributed according to the
+   same disclaimer and license as libpng-0.96,with the following individuals
+   added to the list of Contributing Authors:  Tom Lane Glenn Randers-Pehrson
+   Willem van Schaik
+
+libpng versions 0.89, June 1996, through 0.96, May 1997, are Copyright (c) 1996,
+1997 Andreas Dilger Distributed according to the same disclaimer and license as
+libpng-0.88, with the following individuals added to the list of Contributing
+Authors:  John Bowler Kevin Bracey Sam Bushell Magnus Holmgren Greg Roelofs Tom
+Tanner
+
+libpng versions 0.5, May 1995, through 0.88, January 1996, are Copyright (c)
+1995, 1996 Guy Eric Schalnat, Group 42, Inc.
+
+For the purposes of this copyright and license, "Contributing Authors"is defined
+as the following set of individuals:
+
+   Andreas Dilger
+   Dave Martindale
+   Guy Eric Schalnat
+   Paul Schmidt
+   Tim Wegner
+
+The PNG Reference Library is supplied "AS IS".  The Contributing Authors and
+Group 42, Inc.  disclaim all warranties, expressed or implied, including,
+without limitation, the warranties of merchantability and of fitness for any
+purpose.  The Contributing Authors and Group 42, Inc.  assume no liability for
+direct, indirect, incidental, special, exemplary,or consequential damages, which
+may result from the use of the PNG Reference Library, even if advised of the
+possibility of such damage.
+
+Permission is hereby granted to use, copy, modify, and distribute this source
+code, or portions hereof, for any purpose, without fee, subject to the following
+restrictions:
+
+1.  The origin of this source code must not be misrepresented.
+
+2.  Altered versions must be plainly marked as such and must not be
+misrepresented as being the original source.
+
+3.  This Copyright notice may not be removed or altered from any source or
+altered source distribution.
+
+The Contributing Authors and Group 42, Inc.  specifically permit, without fee,
+and encourage the use of this source code as a component to supporting the PNG
+file format in commercial products.  If you use this source code in a product,
+acknowledgment is not required but would be appreciated.
+
+
+A "png_get_copyright" function is available, for convenient use in "about"boxes
+and the like:
+
+   printf("%s",png_get_copyright(NULL));
+
+Also, the PNG logo (in PNG format, of course) is supplied in the files
+"pngbar.png" and "pngbar.jpg (88x31) and "pngnow.png" (98x31).
+
+Libpng is OSI Certified Open Source Software.  OSI Certified Open Source is a
+certification mark of the Open Source Initiative.
+
+Glenn Randers-Pehrson
+glennrp at users.sourceforge.net
+December 3, 2004
+
+%% The following software may be included in this product:  Libungif - An
+uncompressed GIF library; Use of any of this software is governed by the terms
+of the license below:  
+The GIFLIB distribution is Copyright (c) 1997 Eric S.Raymond
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do so,
+subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY,FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO
+EVENT SHALL THEAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
+OTHERLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+FROM,OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+INTHE SOFTWARE.
+
+
+%% The following software may be included in this product:  Ant; Use of any of
+this software is governed by the terms of the license below:  License The Apache
+Software License Version 2.0
+
+The Apache Software License Version 2.0 applies to all releases of Ant starting
+with ant 1.6.1
+
+/*
+ *                                 Apache License
+ *                           Version 2.0, January 2004
+ *                        http://www.apache.org/licenses/
+ *
+ *   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+ *
+ *   1. Definitions.
+ *
+ *      "License" shall mean the terms and conditions for use, reproduction,
+ *      and distribution as defined by Sections 1 through 9 of this document. 
+ *
+ *      "Licensor" shall mean the copyright owner or entity authorized by
+ *      the copyright owner that is granting the License.
+ *
+ *      "Legal Entity" shall mean the union of the acting entity and all
+ *      other entities that control, are controlled by, or are under common
+ *      control with that entity. For the purposes of this definition,
+ *      "control" means (i) the power, direct or indirect, to cause the
+ *      direction or management of such entity, whether by contract or
+ *      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ *      outstanding shares, or (iii) beneficial ownership of such entity.
+ *
+ *      "You" (or "Your") shall mean an individual or Legal Entity
+ *      exercising permissions granted by this License.
+ *
+ *      "Source" form shall mean the preferred form for making modifications,
+ *      including but not limited to software source code, documentation
+ *      source, and configuration files.
+ *
+ *      "Object" form shall mean any form resulting from mechanical
+ *      transformation or translation of a Source form, including but
+ *      not limited to compiled object code, generated documentation,
+ *      and conversions to other media types.
+ *
+ *      "Work" shall mean the work of authorship, whether in Source or
+ *      Object form, made available under the License, as indicated by a
+ *      copyright notice that is included in or attached to the work
+ *      (an example is provided in the Appendix below).
+ *
+ *      "Derivative Works" shall mean any work, whether in Source or Object
+ *      form, that is based on (or derived from) the Work and for which the
+ *      editorial revisions, annotations, elaborations, or other modifications
+ *      represent, as a whole, an original work of authorship. For the purposes
+ *      of this License, Derivative Works shall not include works that remain
+ *      separable from, or merely link (or bind by name) to the interfaces of,
+ *      the Work and Derivative Works thereof.
+ *
+ *      "Contribution" shall mean any work of authorship, including
+ *      the original version of the Work and any modifications or additions
+ *      to that Work or Derivative Works thereof, that is intentionally
+ *      submitted to Licensor for inclusion in the Work by the copyright owner
+ *      or by an individual or Legal Entity authorized to submit on behalf of
+ *      the copyright owner. For the purposes of this definition, "submitted"
+ *      means any form of electronic, verbal, or written communication sent
+ *      to the Licensor or its representatives, including but not limited to
+ *      communication on electronic mailing lists, source code control systems,
+ *      and issue tracking systems that are managed by, or on behalf of, the
+ *      Licensor for the purpose of discussing and improving the Work, but
+ *      excluding communication that is conspicuously marked or otherwise
+ *      designated in writing by the copyright owner as "Not a Contribution."
+ *
+ *      "Contributor" shall mean Licensor and any individual or Legal Entity
+ *      on behalf of whom a Contribution has been received by Licensor and
+ *      subsequently incorporated within the Work.
+ *
+ *   2. Grant of Copyright License. Subject to the terms and conditions of
+ *      this License, each Contributor hereby grants to You a perpetual,
+ *      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ *      copyright license to reproduce, prepare Derivative Works of,
+ *      publicly display, publicly perform, sublicense, and distribute the
+ *      Work and such Derivative Works in Source or Object form.
+ *
+ *   3. Grant of Patent License. Subject to the terms and conditions of
+ *      this License, each Contributor hereby grants to You a perpetual,
+ *      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ *      (except as stated in this section) patent license to make, have made,
+ *      use, offer to sell, sell, import, and otherwise transfer the Work,
+ *      where such license applies only to those patent claims licensable
+ *      by such Contributor that are necessarily infringed by their
+ *      Contribution(s) alone or by combination of their Contribution(s)
+ *      with the Work to which such Contribution(s) was submitted. If You
+ *      institute patent litigation against any entity (including a
+ *      cross-claim or counterclaim in a lawsuit) alleging that the Work
+ *      or a Contribution incorporated within the Work constitutes direct
+ *      or contributory patent infringement, then any patent licenses
+ *      granted to You under this License for that Work shall terminate
+ *      as of the date such litigation is filed.
+ *
+ *   4. Redistribution. You may reproduce and distribute copies of the
+ *      Work or Derivative Works thereof in any medium, with or without
+ *      modifications, and in Source or Object form, provided that You
+ *      meet the following conditions:
+ *
+ *      (a) You must give any other recipients of the Work or
+ *          Derivative Works a copy of this License; and
+ *
+ *      (b) You must cause any modified files to carry prominent notices
+ *          stating that You changed the files; and
+ *
+ *      (c) You must retain, in the Source form of any Derivative Works
+ *          that You distribute, all copyright, patent, trademark, and
+ *          attribution notices from the Source form of the Work,
+ *          excluding those notices that do not pertain to any part of
+ *          the Derivative Works; and
+ *
+ *      (d) If the Work includes a "NOTICE" text file as part of its
+ *          distribution, then any Derivative Works that You distribute must
+ *          include a readable copy of the attribution notices contained
+ *          within such NOTICE file, excluding those notices that do not
+ *          pertain to any part of the Derivative Works, in at least one
+ *          of the following places: within a NOTICE text file distributed
+ *          as part of the Derivative Works; within the Source form or
+ *          documentation, if provided along with the Derivative Works; or,
+ *          within a display generated by the Derivative Works, if and
+ *          wherever such third-party notices normally appear. The contents
+ *          of the NOTICE file are for informational purposes only and
+ *          do not modify the License. You may add Your own attribution
+ *          notices within Derivative Works that You distribute, alongside
+ *          or as an addendum to the NOTICE text from the Work, provided
+ *          that such additional attribution notices cannot be construed
+ *          as modifying the License.
+ *
+ *      You may add Your own copyright statement to Your modifications and
+ *      may provide additional or different license terms and conditions
+ *      for use, reproduction, or distribution of Your modifications, or
+ *      for any such Derivative Works as a whole, provided Your use,
+ *      reproduction, and distribution of the Work otherwise complies with
+ *      the conditions stated in this License.
+ *
+ *   5. Submission of Contributions. Unless You explicitly state otherwise,
+ *      any Contribution intentionally submitted for inclusion in the Work
+ *      by You to the Licensor shall be under the terms and conditions of
+ *      this License, without any additional terms or conditions.
+ *      Notwithstanding the above, nothing herein shall supersede or modify
+ *      the terms of any separate license agreement you may have executed
+ *      with Licensor regarding such Contributions.
+ *
+ *   6. Trademarks. This License does not grant permission to use the trade
+ *      names, trademarks, service marks, or product names of the Licensor,
+ *      except as required for reasonable and customary use in describing the
+ *      origin of the Work and reproducing the content of the NOTICE file.
+ *
+ *   7. Disclaimer of Warranty. Unless required by applicable law or
+ *      agreed to in writing, Licensor provides the Work (and each
+ *      Contributor provides its Contributions) on an "AS IS" BASIS,
+ *      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ *      implied, including, without limitation, any warranties or conditions
+ *      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ *      PARTICULAR PURPOSE. You are solely responsible for determining the
+ *      appropriateness of using or redistributing the Work and assume any
+ *      risks associated with Your exercise of permissions under this License.
+ *
+ *   8. Limitation of Liability. In no event and under no legal theory,
+ *      whether in tort (including negligence), contract, or otherwise,
+ *      unless required by applicable law (such as deliberate and grossly
+ *      negligent acts) or agreed to in writing, shall any Contributor be
+ *      liable to You for damages, including any direct, indirect, special,
+ *      incidental, or consequential damages of any character arising as a
+ *      result of this License or out of the use or inability to use the
+ *      Work (including but not limited to damages for loss of goodwill,
+ *      work stoppage, computer failure or malfunction, or any and all
+ *      other commercial damages or losses), even if such Contributor
+ *      has been advised of the possibility of such damages.
+ *
+ *   9. Accepting Warranty or Additional Liability. While redistributing
+ *      the Work or Derivative Works thereof, You may choose to offer,
+ *      and charge a fee for, acceptance of support, warranty, indemnity,
+ *      or other liability obligations and/or rights consistent with this
+ *      License. However, in accepting such obligations, You may act only
+ *      on Your own behalf and on Your sole responsibility, not on behalf
+ *      of any other Contributor, and only if You agree to indemnify,
+ *      defend, and hold each Contributor harmless for any liability
+ *      incurred by, or claims asserted against, such Contributor by reason
+ *      of your accepting any such warranty or additional liability.
+ *
+ *   END OF TERMS AND CONDITIONS
+ *
+ *   APPENDIX: How to apply the Apache License to your work.
+ *
+ *      To apply the Apache License to your work, attach the following
+ *      boilerplate notice, with the fields enclosed by brackets "[]"
+ *      replaced with your own identifying information. (Don't include
+ *      the brackets!)  The text should be enclosed in the appropriate
+ *      comment syntax for the file format. We also recommend that a
+ *      file or class name and description of purpose be included on the
+ *      same "printed page" as the copyright notice for easier
+ *      identification within third-party archives.
+ *
+ *   Copyright [yyyy] Apache Software Foundation
+ *
+ *   Licensed under the Apache License, Version 2.0 (the "License");
+ *   you may not use this file except in compliance with the License.
+ *   You may obtain a copy of the License at
+ *
+ *       http://www.apache.org/licenses/LICENSE-2.0
+ *
+ *   Unless required by applicable law or agreed to in writing, software
+ *   distributed under the License is distributed on an "AS IS" BASIS,
+ *   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ *   See the License for the specific language governing permissions and
+ *   limitations under the License.
+ */
+    
+
+You can download the original license file here.
+
+The License is accompanied by a NOTICE
+
+   =========================================================================
+   ==  NOTICE file corresponding to the section 4 d of                    ==
+   ==  the Apache License, Version 2.0,                                   ==
+   ==  in this case for the Apache Ant distribution.                      ==
+   =========================================================================
+   This product includes software developed by
+   The Apache Software Foundation (http://www.apache.org/).
+
+This product includes also software developed by :  - the W3C consortium
+  (http://www.w3c.org) , - the SAX project (http://www.saxproject.org)
+
+Please read the different LICENSE files present in the root directory of this
+distribution.
+
+The names "Ant" and "Apache Software Foundation" must not be used to endorse or
+promote products derived from this software without prior written permission.
+For written permission, please contact apache@apache.org.
+
+The Apache Software License, Version 1.1
+
+The Apache Software License, Version 1.1, applies to all versions of up to
+ant1.6.0 included.
+
+/*
+ * ============================================================================
+ *                   The Apache Software License, Version 1.1
+ * ============================================================================
+ * 
+ *    Copyright (C) 2000-2003 The Apache Software Foundation. All
+ *    rights reserved.
+ * 
+ * Redistribution and use in source and binary forms, with or without modifica-
+ * tion, are permitted provided that the following conditions are met:
+ * 
+ * 1. Redistributions of  source code must  retain the above copyright  notice,
+ *    this list of conditions and the following disclaimer.
+ * 
+ * 2. Redistributions in binary form must reproduce the above copyright notice,
+ *    this list of conditions and the following disclaimer in the documentation
+ *    and/or other materials provided with the distribution.
+ * 
+ * 3. The end-user documentation included with the redistribution, if any, must
+ *    include  the following  acknowledgment:  "This product includes  software
+ *    developed  by the  Apache Software Foundation  (http://www.apache.org/)."
+ *    Alternately, this  acknowledgment may  appear in the software itself,  if
+ *    and wherever such third-party acknowledgments normally appear.
+ * 
+ * 4. The names "Ant" and  "Apache Software Foundation"  must not be used to
+ *    endorse  or promote  products derived  from this  software without  prior
+ *    written permission. For written permission, please contact
+ *    apache@apache.org.
+ * 
+ * 5. Products  derived from this software may not  be called "Apache", nor may
+ *    "Apache" appear  in their name,  without prior written permission  of the
+ *    Apache Software Foundation.
+ * 
+ * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
+ * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ * FITNESS  FOR A PARTICULAR  PURPOSE ARE  DISCLAIMED.  IN NO  EVENT SHALL  THE
+ * APACHE SOFTWARE  FOUNDATION  OR ITS CONTRIBUTORS  BE LIABLE FOR  ANY DIRECT,
+ * INDIRECT, INCIDENTAL, SPECIAL,  EXEMPLARY, OR CONSEQUENTIAL  DAMAGES (INCLU-
+ * DING, BUT NOT LIMITED TO, PROCUREMENT  OF SUBSTITUTE GOODS OR SERVICES; LOSS
+ * OF USE, DATA, OR  PROFITS; OR BUSINESS  INTERRUPTION)  HOWEVER CAUSED AND ON
+ * ANY  THEORY OF LIABILITY,  WHETHER  IN CONTRACT,  STRICT LIABILITY,  OR TORT
+ * (INCLUDING  NEGLIGENCE OR  OTHERWISE) ARISING IN  ANY WAY OUT OF THE  USE OF
+ * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+ * 
+ * This software  consists of voluntary contributions made  by many individuals
+ * on behalf of the  Apache Software Foundation.  For more  information  on the
+ * Apache Software Foundation, please see http://www.apache.org.
+ *
+ */
+
+
+%% The following software may be included in this product:  XML Resolver
+library; Use of any of this software is governed by the terms of the license
+below:
+
+                                 Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+    1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction, 
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by the 
+      copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all other 
+      entities that control, are controlled by, or are under common control 
+      with that entity. For the purposes of this definition, "control" means 
+      (i) the power, direct or indirect, to cause the direction or management 
+      of such entity, whether by contract or otherwise, or (ii) ownership of 
+      fifty percent (50%) or more of the outstanding shares, or 
+      (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity exercising 
+      permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications, 
+      including but not limited to software source code, documentation source, 
+      and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical transformation
+       or translation of a Source form, including but not limited to compiled 
+       object code, generated documentation, and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or Object 
+      form, made available under the License, as indicated by a copyright 
+      notice that is included in or attached to the work (an example is 
+      provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object 
+      form, that is based on (or derived from) the Work and for which the 
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces 
+      of, the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including the original 
+      version of the Work and any modifications or additions to that Work or 
+      Derivative Works thereof, that is intentionally submitted to Licensor 
+      for inclusion in the Work by the copyright owner or by an individual 
+      or Legal Entity authorized to submit on behalf of the copyright owner. 
+      For the purposes of this definition, "submitted" means any form of 
+      electronic, verbal, or written communication sent to the Licensor or 
+      its representatives, including but not limited to communication on 
+      electronic mailing lists, source code control systems, and issue 
+      tracking systems that are managed by, or on behalf of, the Licensor 
+      for the purpose of discussing and improving the Work, but excluding 
+      communication that is conspicuously marked or otherwise designated 
+      in writing by the copyright owner as "Not a Contribution."
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity 
+      on behalf of whom a Contribution has been received by Licensor and 
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of 
+      this License, each Contributor hereby grants to You a perpetual, 
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright 
+      license to reproduce, prepare Derivative Works of, publicly display, 
+      publicly perform, sublicense, and distribute the Work and such 
+      Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of this 
+      License, each Contributor hereby grants to You a perpetual, worldwide, 
+      non-exclusive, no-charge, royalty-free, irrevocable (except as stated 
+      in this section) patent license to make, have made, use, offer to sell,
+      sell, import, and otherwise transfer the Work,  where such license 
+      applies only to those patent claims licensable by such Contributor 
+      that are necessarily infringed by their  Contribution(s) alone or by 
+      combination of their Contribution(s) with the Work to which such 
+      Contribution(s) was submitted. If You institute patent litigation 
+      against any entity (including a cross-claim or counterclaim in a 
+      lawsuit) alleging that the Work or a Contribution incorporated within 
+      the Work constitutes direct or contributory patent infringement, then 
+      any patent licenses granted to You under this License for that Work 
+      shall terminate as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the Work 
+      or Derivative Works thereof in any medium, with or without modifications,
+      and in Source or Object form, provided that You meet the following
+      conditions:
+
+      (a) You must give any other recipients of the Work or Derivative Works 
+      a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices 
+      stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works that 
+      You distribute, all copyright, patent, trademark, and attribution notices 
+      from the Source form of the Work, excluding those notices that do not 
+      pertain to any part of the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its distribution,
+      then any Derivative Works that You distribute must include a readable copy
+      of the attribution notices contained within such NOTICE file, excluding 
+      those notices that do not pertain to any part of the Derivative Works, in 
+      at least one of the following places: within a NOTICE text file distributed 
+      as part of the Derivative Works; within the Source form or documentation, 
+      if provided along with the Derivative Works; or, within a display generated 
+      by the Derivative Works, if and wherever such third-party notices normally 
+      appear. The contents of the NOTICE file are for informational purposes only 
+      and do not modify the License. You may add Your own attribution notices 
+      within Derivative Works that You distribute, alongside or as an addendum to 
+      the NOTICE text from the Work, provided that such additional attribution 
+      notices cannot be construed as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and may provide
+      additional or different license terms and conditions for use, reproduction, 
+      or distribution of Your modifications, or for any such Derivative Works as a
+      whole, provided Your use, reproduction, and distribution of the Work otherwise 
+      complies with the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise, any 
+      Contribution intentionally submitted for inclusion in the Work by You to 
+      the Licensor shall be under the terms and conditions of this License, without 
+      any additional terms or conditions. Notwithstanding the above, nothing herein 
+      shall supersede or modify the terms of any separate license agreement you may 
+      have executed with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade names, 
+      trademarks, service marks, or product names of the Licensor, except as required 
+      for reasonable and customary use in describing the origin of the Work and 
+      reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or agreed to in 
+      writing, Licensor provides the Work (and each Contributor provides its 
+      Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF 
+      ANY KIND, either express or implied, including, without limitation, any 
+      warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or 
+      FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining 
+      the appropriateness of using or redistributing the Work and assume any 
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory, whether 
+      in tort (including negligence), contract, or otherwise, unless required by 
+      applicable law (such as deliberate and grossly negligent acts) or agreed to 
+      in writing, shall any Contributor be liable to You for damages, including 
+      any direct, indirect, special, incidental, or consequential damages of any 
+      character arising as a result of this License or out of the use or inability 
+      to use the Work (including but not limited to damages for loss of goodwill, 
+      work stoppage, computer failure or malfunction, or any and all other 
+      commercial damages or losses), even if such Contributor has been advised 
+      of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing the Work 
+      or Derivative Works thereof, You may choose to offer, and charge a fee for, 
+      acceptance of support, warranty, indemnity, or other liability obligations 
+      and/or rights consistent with this License. However, in accepting such 
+      obligations, You may act only on Your own behalf and on Your sole 
+      responsibility, not on behalf of any other Contributor, and only if You 
+      agree to indemnify, defend, and hold each Contributor harmless for any 
+      liability incurred by, or claims asserted against, such Contributor by 
+      reason of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+   To apply the Apache License to your work, attach the following boilerplate notice, 
+   with the fields enclosed by brackets "[]" replaced with your own identifying 
+   information. (Don't include the brackets!)  The text should be enclosed in the 
+   appropriate comment syntax for the file format. We also recommend that a file 
+   or class name and description of purpose be included on the same "printed page" 
+   as the copyright notice for easier identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License"); you may not use 
+   this file except in compliance with the License. You may obtain a copy of the 
+   License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software distributed 
+   under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR 
+   CONDITIONS OF ANY KIND, either express or implied.   See the License for the 
+   specific language governing permissions and limitations under the License.
+
+
+%% The following software may be included in this product:  ICU4J; Use of any of
+this software is governed by the terms of the license below:
+
+ICU License - ICU 1.8.1 and later COPYRIGHT AND PERMISSION NOTICE Copyright (c)
+
+1995-2003 International Business Machines Corporation and others All rights
+ reserved Permission is hereby granted, free of charge, to any person obtaining
+ a copy of this software and associated documentation files (the "Software"), to
+ deal in the Software without restriction, including without limitation the
+ rights to use, copy, modify, merge, publish, distribute, and/or sell copies of
+ the Software, and to permit persons to whom the Software is furnished to do
+ so,provided that the above copyright notice(s) and this permission notice
+ appear in all copies of the Software and that both the above copyright
+ notice(s) and this permission notice appear in supporting documentation.  THE
+ SOFTWARE IS PROVIDED"AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
+ INCLUDING BUT NOTLIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
+ PARTICULAR PURPOSEAND NONINFRINGEMENT OF THIRD PARTY RIGHTS.  IN NO EVENT SHALL
+ THE COPYRIGHTHOLDER OR HOLDERS INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM,
+ OR ANYSPECIAL INDIRECT OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER
+ RESULTINGFROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT,
+ NEGLIGENCEOR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE
+ USE ORPERFORMANCE OF THIS SOFTWARE.  Except as contained in this notice, the
+ name of a copyright holder shall not be used in advertising or otherwise to
+ promote the sale, use or other dealings in this Software without prior written
+ authorization of the copyright holder.
+
+
+%% The following software may be included in this product:  NekoHTML; Use of any
+of this software is governed by the terms of the license below:  The CyberNeko
+Software License, Version 1.0
+
+
+(C) Copyright 2002,2003, Andy Clark.  All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+1. Redistributions of source code must retain the above copyright
+   notice, this list of conditions and the following disclaimer. 
+
+2. Redistributions in binary form must reproduce the above copyright
+   notice, this list of conditions and the following disclaimer in
+   the documentation and/or other materials provided with the
+   distribution.
+
+3. The end-user documentation included with the redistribution,
+   if any, must include the following acknowledgment:  
+     "This product includes software developed by Andy Clark."
+   Alternately, this acknowledgment may appear in the software itself,
+   if and wherever such third-party acknowledgments normally appear.
+
+4. The names "CyberNeko" and "NekoHTML" must not be used to endorse
+   or promote products derived from this software without prior 
+   written permission. For written permission, please contact 
+   andy@cyberneko.net.
+
+5. Products derived from this software may not be called "CyberNeko",
+   nor may "CyberNeko" appear in their name, without prior written
+   permission of the author.
+
+THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR
+OR OTHER CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
+EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT
+OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
+INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
+CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
+IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
+OF SUCH DAMAGE.
+
+====================================================================
+This license is based on the Apache Software License, version 1.1
+
+
+%% The following software may be included in this product:  Jing; Use of any of
+this software is governed by the terms of the license below:  Jing Copying
+Conditions
+
+Copyright (c) 2001-2003 Thai Open Source Software Center Ltd All rights
+reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification,are permitted provided that the following conditions are met:
+
+    * Redistributions of source code must retain the above copyright notice,
+      this list of conditions and the following disclaimer.
+    * Redistributions in binary form must reproduce the above copyright 
+      notice,this list of conditions and the following disclaimer in the 
+      documentation and/or other materials provided with the distribution.
+    * Neither the name of the Thai Open Source Software Center Ltd nor the 
+      names of its contributors may be used to endorse or promote products 
+      derived from this software without specific prior written permission.
+
+THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
+ANDANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
+IMPLIEDWARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
+AREDISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE FOR
+ANYDIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+DAMAGES(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
+SERVICES;LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
+AND ONANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR
+TORT(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
+THISSOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+%% The following software may be included in this product:  RelaxNGCC; Use of
+any of this software is governed by the terms of the license below:
+
+Copyright (c) 2000-2003 Daisuke Okajima and Kohsuke Kawaguchi.
+All rights reserved.
+
+Redistribution and use in source and binary forms, with or without
+modification, are permitted provided that the following conditions
+are met:
+
+1. Redistributions of source code must retain the above copyright
+notice, this list of conditions and the following disclaimer.
+
+2. Redistributions in binary form must reproduce the above copyright
+notice, this list of conditions and the following disclaimer in the
+documentation and/or other materials provided with the distribution.
+
+3. The end-user documentation included with the redistribution, if
+any, must include the following acknowledgment:
+
+    "This product includes software developed by Daisuke Okajima
+    and Kohsuke Kawaguchi (http://relaxngcc.sf.net/)."
+
+Alternately, this acknowledgment may appear in the software itself,
+if and wherever such third-party acknowledgments normally appear.
+
+4. The names of the copyright holders must not be used to endorse or
+promote products derived from this software without prior written
+permission. For written permission, please contact the copyright
+holders.
+
+5. Products derived from this software may not be called "RELAXNGCC",
+nor may "RELAXNGCC" appear in their name, without prior written
+permission of the copyright holders.
+
+THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESSED OR IMPLIED WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.IN NO EVENT SHALL THE APACHE
+SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+%% The following software may be included in this product:  RELAX NG Object
+Model/Parser; Use of any of this software is governed by the terms of the
+license below:  The MIT License
+
+Copyright (c)  
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do
+so,subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in all
+copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
+ORIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESSFOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
+AUTHORS ORCOPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
+WHETHERIN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR
+INCONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+
+%% The following software may be included in this product:  XFree86-VidMode
+Extension; Use of any of this software is governed by the terms of the license
+below:  Version 1.1 of Project Licence.
+
+    Copyright (C) 1994-2004 The Project, Inc.    All rights reserved.
+
+Permission is hereby granted, free of charge, to any person obtaining a copy of
+this software and associated documentation files (the "Software"), to deal in
+the Software without restriction, including without limitation the rights to
+use, copy, modify, merge, publish, distribute, sublicence, and/or sell copies of
+the Software, and to permit persons to whom the Software is furnished to do
+so,subject to the following conditions:
+
+1.  Redistributions of source code must retain the above copyright notice,this
+list of conditions, and the following disclaimer.
+
+2.  Redistributions in binary form must reproduce the above copyright notice,
+this list of conditions and the following disclaimer in the documentation and/or
+other materials provided with the distribution, and in the same place and form
+as other copyright, license and disclaimer information.  
+
+3.  The end-user documentation included with the redistribution, if any,must
+include the following acknowledgment:  "This product includes software developed
+by The XFree86 Project, Inc (http://www.xfree86.org/) and its contributors", in
+the same place and form as other third-party acknowledgments.  Alternately, this
+acknowledgment may appear in the software itself, in the same form and location
+as other such third-party acknowledgments.
+
+4.  Except as contained in this notice, the name of The XFree86 Project,Inc
+shall not be used in advertising or otherwise to promote the sale, use or other
+dealings in this Software without prior written authorization from TheXFree86
+Project, Inc.
+
+THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
+WARRANTIES,INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY ANDFITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT
+SHALL THE XFREE86PROJECT, INC OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
+INDIRECT, INCIDENTAL,SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
+BUT NOT LIMITED TO,PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+DATA, OR PROFITS; ORBUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER INCONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+OR OTHERWISE) ARISINGIN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
+OF THE POSSIBILITYOF SUCH DAMAGE.
+
+
+%% The following software may be included in this product:  RelaxNGCC; Use of
+any of this software is governed by the terms of the license below:  This is
+version 2003-May-08 of the Info-ZIP copyright and license.  The definitive
+version of this document should be available at
+ftp://ftp.info-zip.org/pub/infozip/license.html indefinitely.
+
+
+Copyright (c) 1990-2003 Info-ZIP.  All rights reserved.
+
+For the purposes of this copyright and license, "Info-ZIP" is defined asthe
+following set of individuals:
+
+   Mark Adler, John Bush, Karl Davis, Harald Denker, Jean-Michel Dubois, Jean-loup
+   Gailly, Hunter Goatley, Ian Gorman, Chris Herborth, Dirk Haase, Greg Hartwig,
+   Robert Heath, Jonathan Hudson, Paul Kienitz, David Kirschbaum, Johnny Lee,
+   Onno van der Linden, Igor Mandrichenko, Steve P.  Miller, Sergio Monesi,
+   Keith Owens, George Petrov, Greg Roelofs, Kai Uwe Rommel, Steve Salisbury,
+   Dave Smith, Christian Spieler, Antoine Verheijen, Paul von Behren, Rich
+   Wales, Mike White
+
+This software is provided "as is," without warranty of any kind, express or
+implied.  In no event shall Info-ZIP or its contributors be held liable for any
+direct, indirect, incidental, special or consequential damages arising out of
+the use of or inability to use this software.
+
+Permission is granted to anyone to use this software for any purpose, including
+commercial applications, and to alter it and redistribute it freely, subject to
+the following restrictions:
+
+1.  Redistributions of source code must retain the above copyright notice,
+definition, disclaimer, and this list of conditions.
+
+2.  Redistributions in binary form (compiled executables) must reproduce the
+above copyright notice, definition, disclaimer, and this list of conditions in
+documentation and/or other materials provided with the distribution.  The sole
+exception to this condition is redistribution of a standard UnZipSFX binary
+(including SFXWiz) as part of a self-extracting archive; that is permitted
+without inclusion of this license, as long as the normal SFX banner has not been
+removed from the binary or disabled.
+
+3.  Altered versions--including, but not limited to, ports to new operating
+systems, existing ports with new graphical interfaces, and dynamic, shared, or
+static library versions--must be plainly marked as such and must not be
+misrepresented as being the original source.  Such altered versions also must
+not be misrepresented as being Info-ZIP releases--including, but not limited to,
+labeling of the altered versions with the names "Info-ZIP" (or any variation
+thereof, including, but not limited to, different capitalizations), "Pocket
+UnZip," "WiZ" or "MacZip" without the explicit permission of Info-ZIP.  Such
+altered versions are further prohibited from misrepresentative use of the
+Zip-Bugs or Info-ZIP e-mail addresses or of the Info-ZIP URL(s).
+
+4.  Info-ZIP retains the right to use the names "Info-ZIP," "Zip," "UnZip,"
+"UnZipSFX," "WiZ," "Pocket UnZip," "Pocket Zip," and "MacZip" for its own source
+and binary releases.
+
+
+%% The following software may be included in this product:  XML Security; Use of
+  any of this software is governed by the terms of the license below:  The
+  Apache Software License, Version 1.1 PDF
+
+Copyright (C) 2002 The Apache Software Foundation.
+
+All rights reserved.  Redistribution and use in source and binary forms, with or
+without modifica- tion, are permitted provided that the following conditions are
+met:
+
+1.  Redistributions of source code must retain the above copyright notice, this
+list of conditions and the following disclaimer.
+
+2.  Redistributions in binary form must reproduce the above copyright notice,
+this list of conditions and the following disclaimer in the documentation and/or
+other materials provided with the distribution.
+
+3.  The end-user documentation included with the redistribution, if any,must
+include the following acknowledgment:"This product includes software developed
+by the Apache Software Foundation (http://www.apache.org/)."  Alternately, this
+acknowledgment may appear in the software itself, if and wherever such
+third-party acknowledgments normally appear.
+
+4.  The names"Apache Forrest" and "Apache Software Foundation" must not be used
+to endorse or promote products derived from this software without prior written
+permission.  For written permission,please contact apache@apache.org.  5.
+Products derived from this software may not be called "Apache", normay "Apache"
+appear in their name, without prior written permission of the Apache Software
+Foundation.  THIS SOFTWARE IS PROVIDED``AS IS'' AND ANY EXPRESSED OR IMPLIED
+WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
+MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO
+EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY
+DIRECT,INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
+(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS ORSERVICES; LOSS
+OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
+ANYTHEORY OF LIABILITY, WHETHER IN CONTRACT, STRICTLIABILITY, OR TORT (INCLUDING
+NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
+EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.  This software consists of
+voluntary contributions made by many individuals on behalf of the Apache
+Software Foundation.  For more information on the Apache Software Foundation,
+please see http://www.apache.org.
+
+
+%% The following software may be included in this product:  Regexp, Regular
+Expression Package v.  1.2; Use of any of this software is governed by the terms
+of the license below:  The Apache Software License, Version 1.1 Copyright (c)
+2001 The Apache Software Foundation.  All rights reserved.  Redistribution and
+use in source and binary forms, with or without modification,are permitted
+provided that the following conditions are met:
+
+1.  Redistributions of source code must retain the above copyright notice, this
+list of conditions and the following disclaimer.
+
+2.  Redistributions in binary form must reproduce the above copyright notice,
+this list of conditions and the following disclaimer in the documentation and/or
+other materials provided with the distribution.
+
+3.  The end-user documentation included with the redistribution, if any, must
+include the following acknowledgment:  "This product includes software developed
+by the Apache Software Foundation (http://www.apache.org/)."  Alternately, this
+acknowledgment may appear in the software itself, if and wherever such
+third-party acknowledgments normally appear.
+
+4.  The names "Apache" and "Apache Software Foundation" and "Apache Turbine"
+must not be used to endorse or promote products derived from this software
+without prior written permission.  For written permission, please contact
+apache@apache.org.
+
+5.  Products derived from this software may not be called "Apache", "Apache
+Turbine", nor may "Apache" appear in their name, without prior written
+permission of the Apache Software Foundation.
+
+THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE APACHE
+SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
+INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
+PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
+LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
+OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+This software consists of voluntary contributions made by many individuals on
+behalf of the Apache Software Foundation.  For more information on the Apache
+Software Foundation, please see http://www.apache.org.
+
+========================================================================
+
+
+%% The following software may be included in this product:  zlib; Use of any of
+this software is governed by the terms of the license below:
+
+zlib.h -- interface of the 'zlib' general purpose compression library
+  version 1.1.3, July 9th, 1998
+
+  Copyright (C) 1995-1998 Jean-loup Gailly and Mark Adler
+
+  This software is provided 'as-is', without any express or implied
+  warranty.  In no event will the authors be held liable for any damages
+  arising from the use of this software.
+
+  Permission is granted to anyone to use this software for any purpose,
+  including commercial applications, and to alter it and redistribute it
+  freely, subject to the following restrictions:
+
+  1. The origin of this software must not be misrepresented; you must not
+     claim that you wrote the original software. If you use this software
+     in a product, an acknowledgment in the product documentation would be
+     appreciated but is not required.
+  2. Altered source versions must be plainly marked as such, and must not be
+     misrepresented as being the original software.
+  3. This notice may not be removed or altered from any source distribution.
+
+  Jean-loup Gailly        Mark Adler
+  jloup@gzip.org          madler@alumni.caltech.edu
+
+
+  The data format used by the zlib library is described by RFCs (Request for
+  Comments) 1950 to 1952 in the files ftp://ds.internic.net/rfc/rfc1950.txt
+  (zlib format), rfc1951.txt (deflate format) and rfc1952.txt (gzip format
+
+
+%% The following software may be included in this product:  Mozilla Rhino.  Use
+of any of this software is governed by the terms of the license below:
+
+ * The contents of this file are subject to the Netscape Public
+ * License Version 1.1 (the "License"); you may not use this file
+ * except in compliance with the License. You may obtain a copy of
+ * the License at http://www.mozilla.org/NPL/
+ *
+ * Software distributed under the License is distributed on an "AS
+ * IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or
+ * implied. See the License for the specific language governing
+ * rights and limitations under the License.
+ *
+ * The Original Code is Rhino code, released
+ * May 6, 1999.
+ *
+ * The Initial Developer of the Original Code is Netscape
+ * Communications Corporation.  Portions created by Netscape are
+ * Copyright (C) 1997-2000 Netscape Communications Corporation. All
+ * Rights Reserved.
+ *
+ * Contributor(s):
+ *
+ * Kemal Bayram
+ * Patrick Beard
+ * Norris Boyd
+ * Igor Bukanov, igor@mir2.org
+ * Brendan Eich
+ * Ethan Hugg
+ * Roger Lawrence
+ * Terry Lucas
+ * Mike McCabe
+ * Milen Nankov
+ * Attila Szegedi, szegedia@freemail.hu
+ * Ian D. Stewart
+ * Andi Vajda
+ * Andrew Wason
+ */
+
+%% The following software may be included in this product:  Apache Derby.  Use
+of any of this software is governed by the terms of the license below:
+
+
+                           Apache License
+                           Version 2.0, January 2004
+                        http://www.apache.org/licenses/
+
+   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+   1. Definitions.
+
+      "License" shall mean the terms and conditions for use, reproduction,
+      and distribution as defined by Sections 1 through 9 of this document.
+
+      "Licensor" shall mean the copyright owner or entity authorized by
+      the copyright owner that is granting the License.
+
+      "Legal Entity" shall mean the union of the acting entity and all
+      other entities that control, are controlled by, or are under common
+      control with that entity. For the purposes of this definition,
+      "control" means (i) the power, direct or indirect, to cause the
+      direction or management of such entity, whether by contract or
+      otherwise, or (ii) ownership of fifty percent (50%) or more of the
+      outstanding shares, or (iii) beneficial ownership of such entity.
+
+      "You" (or "Your") shall mean an individual or Legal Entity
+      exercising permissions granted by this License.
+
+      "Source" form shall mean the preferred form for making modifications,
+      including but not limited to software source code, documentation
+      source, and configuration files.
+
+      "Object" form shall mean any form resulting from mechanical
+      transformation or translation of a Source form, including but
+      not limited to compiled object code, generated documentation,
+      and conversions to other media types.
+
+      "Work" shall mean the work of authorship, whether in Source or
+      Object form, made available under the License, as indicated by a
+      copyright notice that is included in or attached to the work
+      (an example is provided in the Appendix below).
+
+      "Derivative Works" shall mean any work, whether in Source or Object
+      form, that is based on (or derived from) the Work and for which the
+      editorial revisions, annotations, elaborations, or other modifications
+      represent, as a whole, an original work of authorship. For the purposes
+      of this License, Derivative Works shall not include works that remain
+      separable from, or merely link (or bind by name) to the interfaces of,
+      the Work and Derivative Works thereof.
+
+      "Contribution" shall mean any work of authorship, including
+      the original version of the Work and any modifications or additions
+      to that Work or Derivative Works thereof, that is intentionally
+      submitted to Licensor for inclusion in the Work by the copyright owner
+      or by an individual or Legal Entity authorized to submit on behalf of
+      the copyright owner. For the purposes of this definition, "submitted"
+      means any form of electronic, verbal, or written communication sent
+      to the Licensor or its representatives, including but not limited to
+      communication on electronic mailing lists, source code control systems,
+      and issue tracking systems that are managed by, or on behalf of, the
+      Licensor for the purpose of discussing and improving the Work, but
+      excluding communication that is conspicuously marked or otherwise
+      designated in writing by the copyright owner as "Not a Contribution."
+
+
+      "Contributor" shall mean Licensor and any individual or Legal Entity
+      on behalf of whom a Contribution has been received by Licensor and
+      subsequently incorporated within the Work.
+
+   2. Grant of Copyright License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      copyright license to reproduce, prepare Derivative Works of,
+      publicly display, publicly perform, sublicense, and distribute the
+      Work and such Derivative Works in Source or Object form.
+
+   3. Grant of Patent License. Subject to the terms and conditions of
+      this License, each Contributor hereby grants to You a perpetual,
+      worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+      (except as stated in this section) patent license to make, have made,
+      use, offer to sell, sell, import, and otherwise transfer the Work,
+      where such license applies only to those patent claims licensable
+      by such Contributor that are necessarily infringed by their
+      Contribution(s) alone or by combination of their Contribution(s)
+      with the Work to which such Contribution(s) was submitted. If You
+      institute patent litigation against any entity (including a
+      cross-claim or counterclaim in a lawsuit) alleging that the Work
+      or a Contribution incorporated within the Work constitutes direct
+      or contributory patent infringement, then any patent licenses
+      granted to You under this License for that Work shall terminate
+      as of the date such litigation is filed.
+
+   4. Redistribution. You may reproduce and distribute copies of the
+      Work or Derivative Works thereof in any medium, with or without
+      modifications, and in Source or Object form, provided that You
+      meet the following conditions:
+
+      (a) You must give any other recipients of the Work or
+          Derivative Works a copy of this License; and
+
+      (b) You must cause any modified files to carry prominent notices
+          stating that You changed the files; and
+
+      (c) You must retain, in the Source form of any Derivative Works
+          that You distribute, all copyright, patent, trademark, and
+          attribution notices from the Source form of the Work,
+          excluding those notices that do not pertain to any part of
+          the Derivative Works; and
+
+      (d) If the Work includes a "NOTICE" text file as part of its
+          distribution, then any Derivative Works that You distribute must
+          include a readable copy of the attribution notices contained
+          within such NOTICE file, excluding those notices that do not
+          pertain to any part of the Derivative Works, in at least one
+          of the following places: within a NOTICE text file distributed
+          as part of the Derivative Works; within the Source form or
+          documentation, if provided along with the Derivative Works; or,
+          within a display generated by the Derivative Works, if and
+          wherever such third-party notices normally appear. The contents
+          of the NOTICE file are for informational purposes only and
+          do not modify the License. You may add Your own attribution
+          notices within Derivative Works that You distribute, alongside
+          or as an addendum to the NOTICE text from the Work, provided
+          that such additional attribution notices cannot be construed
+          as modifying the License.
+
+      You may add Your own copyright statement to Your modifications and
+      may provide additional or different license terms and conditions
+      for use, reproduction, or distribution of Your modifications, or
+      for any such Derivative Works as a whole, provided Your use,
+      reproduction, and distribution of the Work otherwise complies with
+      the conditions stated in this License.
+
+   5. Submission of Contributions. Unless You explicitly state otherwise,
+      any Contribution intentionally submitted for inclusion in the Work
+      by You to the Licensor shall be under the terms and conditions of
+      this License, without any additional terms or conditions.
+      Notwithstanding the above, nothing herein shall supersede or modify
+      the terms of any separate license agreement you may have executed
+      with Licensor regarding such Contributions.
+
+   6. Trademarks. This License does not grant permission to use the trade
+      names, trademarks, service marks, or product names of the Licensor,
+      except as required for reasonable and customary use in describing the
+      origin of the Work and reproducing the content of the NOTICE file.
+
+   7. Disclaimer of Warranty. Unless required by applicable law or
+      agreed to in writing, Licensor provides the Work (and each
+      Contributor provides its Contributions) on an "AS IS" BASIS,
+      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+      implied, including, without limitation, any warranties or conditions
+      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+      PARTICULAR PURPOSE. You are solely responsible for determining the
+      appropriateness of using or redistributing the Work and assume any
+      risks associated with Your exercise of permissions under this License.
+
+   8. Limitation of Liability. In no event and under no legal theory,
+      whether in tort (including negligence), contract, or otherwise,
+      unless required by applicable law (such as deliberate and grossly
+      negligent acts) or agreed to in writing, shall any Contributor be
+      liable to You for damages, including any direct, indirect, special,
+      incidental, or consequential damages of any character arising as a
+      result of this License or out of the use or inability to use the
+      Work (including but not limited to damages for loss of goodwill,
+      work stoppage, computer failure or malfunction, or any and all
+      other commercial damages or losses), even if such Contributor
+      has been advised of the possibility of such damages.
+
+   9. Accepting Warranty or Additional Liability. While redistributing
+      the Work or Derivative Works thereof, You may choose to offer,
+      and charge a fee for, acceptance of support, warranty, indemnity,
+      or other liability obligations and/or rights consistent with this
+      License. However, in accepting such obligations, You may act only
+      on Your own behalf and on Your sole responsibility, not on behalf
+      of any other Contributor, and only if You agree to indemnify,
+      defend, and hold each Contributor harmless for any liability
+      incurred by, or claims asserted against, such Contributor by reason
+      of your accepting any such warranty or additional liability.
+
+   END OF TERMS AND CONDITIONS
+
+   APPENDIX: How to apply the Apache License to your work.
+
+      To apply the Apache License to your work, attach the following
+      boilerplate notice, with the fields enclosed by brackets "[]"
+      replaced with your own identifying information. (Don't include
+      the brackets!)  The text should be enclosed in the appropriate
+      comment syntax for the file format. We also recommend that a
+      file or class name and description of purpose be included on the
+      same "printed page" as the copyright notice for easier
+      identification within third-party archives.
+
+   Copyright [yyyy] [name of copyright owner]
+
+   Licensed under the Apache License, Version 2.0 (the "License");
+   you may not use this file except in compliance with the License.
+   You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+   Unless required by applicable law or agreed to in writing, software
+   distributed under the License is distributed on an "AS IS" BASIS,
+   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+   See the License for the specific language governing permissions and
+   limitations under the License.
+
+
+%% The following software may be included in this product:  7-Zip.  Use of any
+of this software is governed by the terms of the license below:
+
+      ~~~~~
+      License for use and distribution
+      ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
+
+      7-Zip Copyright (C) 1999-2007 Igor Pavlov.
+
+      Licenses for files are:
+
+        1) 7z.dll:  GNU LGPL + AES code license + unRAR restriction
+        2) 7za.exe, 7z.sfx and 7zCon.sfx:  GNU LGPL + AES code license
+        3) All other files:  GNU LGPL
+      
+      The GNU LGPL + AES code license + unRAR restriction means that you must follow 
+      GNU LGPL rules, AES code license rules and unRAR restriction rules.
+
+      The GNU LGPL + AES code license means that you must follow both GNU LGPL rules 
+      and AES code license rules.
+
+
+      Note: 
+        You can use 7-Zip on any computer, including a computer in a commercial 
+        organization. You don't need to register or pay for 7-Zip.
+
+
+      GNU LGPL information
+      --------------------
+
+GNU Lesser General Public License
+
+Version 2.1, February 1999
+
+    Copyright (C) 1991, 1999 Free Software Foundation, Inc.
+    59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+    Everyone is permitted to copy and distribute verbatim copies
+    of this license document, but changing it is not allowed.
+
+    [This is the first released version of the Lesser GPL. It also counts
+    as the successor of the GNU Library Public License, version 2, hence
+    the version number 2.1.]
+
+Preamble
+
+The licenses for most software are designed to take away your freedom to share
+and change it.  By contrast, the GNU General Public Licenses are intended to
+guarantee your freedom to share and change free software--to make sure the
+software is free for all its users.
+
+This license, the Lesser General Public License, applies to some specially
+designated software packages--typically libraries--of the Free Software
+Foundation and other authors who decide to use it.  You can use it too, but we
+suggest you first think carefully about whether this license or the ordinary
+General Public License is the better strategy to use in any particular case,
+based on the explanations below.
+
+When we speak of free software, we are referring to freedom of use, not price.
+Our General Public Licenses are designed to make sure that you have the freedom
+to distribute copies of free software (and charge for this service if you wish);
+that you receive source code or can get it if you want it; that you can change
+the software and use pieces of it in new free programs; and that you are
+informed that you can do these things.
+
+To protect your rights, we need to make restrictions that forbid distributors to
+deny you these rights or to ask you to surrender these rights.  These
+restrictions translate to certain responsibilities for you if you distribute
+copies of the library or if you modify it.
+
+For example, if you distribute copies of the library, whether gratis or for a
+fee, you must give the recipients all the rights that we gave you.  You must
+make sure that they, too, receive or can get the source code.  If you link other
+code with the library, you must provide complete object files to the recipients,
+so that they can relink them with the library after making changes to the
+library and recompiling it.  And you must show them these terms so they know
+their rights.
+
+We protect your rights with a two-step method:  (1) we copyright the library,
+and (2) we offer you this license, which gives you legal permission to copy,
+distribute and/or modify the library.
+
+To protect each distributor, we want to make it very clear that there is no
+warranty for the free library.  Also, if the library is modified by someone else
+and passed on, the recipients should know that what they have is not the
+original version, so that the original author's reputation will not be affected
+by problems that might be introduced by others.
+
+Finally, software patents pose a constant threat to the existence of any free
+program.  We wish to make sure that a company cannot effectively restrict the
+users of a free program by obtaining a restrictive license from a patent holder.
+Therefore, we insist that any patent license obtained for a version of the
+library must be consistent with the full freedom of use specified in this
+license.
+
+Most GNU software, including some libraries, is covered by the ordinary GNU
+General Public License.  This license, the GNU Lesser General Public License,
+applies to certain designated libraries, and is quite different from the
+ordinary General Public License.  We use this license for certain libraries in
+order to permit linking those libraries into non-free programs.
+
+When a program is linked with a library, whether statically or using a shared
+library, the combination of the two is legally speaking a combined work, a
+derivative of the original library.  The ordinary General Public License
+therefore permits such linking only if the entire combination fits its criteria
+of freedom.  The Lesser General Public License permits more lax criteria for
+linking other code with the library.
+
+We call this license the "Lesser" General Public License because it does Less to
+protect the user's freedom than the ordinary General Public License.  It also
+provides other free software developers Less of an advantage over competing
+non-free programs.  These disadvantages are the reason we use the ordinary
+General Public License for many libraries.  However, the Lesser license provides
+advantages in certain special circumstances.
+
+For example, on rare occasions, there may be a special need to encourage the
+widest possible use of a certain library, so that it becomes a de-facto
+standard.  To achieve this, non-free programs must be allowed to use the
+library.  A more frequent case is that a free library does the same job as
+widely used non-free libraries.  In this case, there is little to gain by
+limiting the free library to free software only, so we use the Lesser General
+Public License.
+
+In other cases, permission to use a particular library in non-free programs
+enables a greater number of people to use a large body of free software.  For
+example, permission to use the GNU C Library in non-free programs enables many
+more people to use the whole GNU operating system, as well as its variant, the
+GNU/Linux operating system.
+
+Although the Lesser General Public License is Less protective of the users'
+freedom, it does ensure that the user of a program that is linked with the
+Library has the freedom and the wherewithal to run that program using a modified
+version of the Library.
+
+The precise terms and conditions for copying, distribution and modification
+follow.  Pay close attention to the difference between a "work based on the
+library" and a "work that uses the library".  The former contains code derived
+from the library, whereas the latter must be combined with the library in order
+to run.  TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+0.  This License Agreement applies to any software library or other program
+which contains a notice placed by the copyright holder or other authorized party
+saying it may be distributed under the terms of this Lesser General Public
+License (also called "this License").  Each licensee is addressed as "you".
+
+A "library" means a collection of software functions and/or data prepared so as
+to be conveniently linked with application programs (which use some of those
+functions and data) to form executables.
+
+The "Library", below, refers to any such software library or work which has been
+distributed under these terms.  A "work based on the Library" means either the
+Library or any derivative work under copyright law:  that is to say, a work
+containing the Library or a portion of it, either verbatim or with modifications
+and/or translated straightforwardly into another language.  (Hereinafter,
+translation is included without limitation in the term "modification".)
+
+"Source code" for a work means the preferred form of the work for making
+modifications to it.  For a library, complete source code means all the source
+code for all modules it contains, plus any associated interface definition
+files, plus the scripts used to control compilation and installation of the
+library.
+
+Activities other than copying, distribution and modification are not covered by
+this License; they are outside its scope.  The act of running a program using
+the Library is not restricted, and output from such a program is covered only if
+its contents constitute a work based on the Library (independent of the use of
+the Library in a tool for writing it).  Whether that is true depends on what the
+Library does and what the program that uses the Library does.
+
+1.  You may copy and distribute verbatim copies of the Library's complete source
+code as you receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice and
+disclaimer of warranty; keep intact all the notices that refer to this License
+and to the absence of any warranty; and distribute a copy of this License along
+with the Library.
+
+You may charge a fee for the physical act of transferring a copy, and you may at
+your option offer warranty protection in exchange for a fee.
+
+2.  You may modify your copy or copies of the Library or any portion of it, thus
+forming a work based on the Library, and copy and distribute such modifications
+or work under the terms of Section 1 above, provided that you also meet all of
+these conditions:
+
+a) The modified work must itself be a software library.
+
+b) You must cause the files modified to carry prominent notices stating that you
+changed the files and the date of any change.
+
+c) You must cause the whole of the work to be licensed at no charge to all third
+parties under the terms of this License.
+
+d) If a facility in the modified Library refers to a function or a table of data
+to be supplied by an application program that uses the facility, other than as
+an argument passed when the facility is invoked, then you must make a good faith
+effort to ensure that, in the event an application does not supply such function
+or table, the facility still operates, and performs whatever part of its purpose
+remains meaningful.
+
+(For example, a function in a library to compute square roots has a purpose that
+is entirely well-defined independent of the application.  Therefore, Subsection
+2d requires that any application-supplied function or table used by this
+function must be optional:  if the application does not supply it, the square
+root function must still compute square roots.)
+
+These requirements apply to the modified work as a whole.  If identifiable
+sections of that work are not derived from the Library, and can be reasonably
+considered independent and separate works in themselves, then this License, and
+its terms, do not apply to those sections when you distribute them as separate
+works.  But when you distribute the same sections as part of a whole which is a
+work based on the Library, the distribution of the whole must be on the terms of
+this License, whose permissions for other licensees extend to the entire whole,
+and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest your
+rights to work written entirely by you; rather, the intent is to exercise the
+right to control the distribution of derivative or collective works based on the
+Library.
+
+In addition, mere aggregation of another work not based on the Library with the
+Library (or with a work based on the Library) on a volume of a storage or
+distribution medium does not bring the other work under the scope of this
+License.
+
+3.  You may opt to apply the terms of the ordinary GNU General Public License
+instead of this License to a given copy of the Library.  To do this, you must
+alter all the notices that refer to this License, so that they refer to the
+ordinary GNU General Public License, version 2, instead of to this License.  (If
+a newer version than version 2 of the ordinary GNU General Public License has
+appeared, then you can specify that version instead if you wish.)  Do not make
+any other change in these notices.
+
+Once this change is made in a given copy, it is irreversible for that copy, so
+the ordinary GNU General Public License applies to all subsequent copies and
+derivative works made from that copy.
+
+This option is useful when you wish to copy part of the code of the Library into
+a program that is not a library.
+
+4.  You may copy and distribute the Library (or a portion or derivative of it,
+under Section 2) in object code or executable form under the terms of Sections 1
+and 2 above provided that you accompany it with the complete corresponding
+machine-readable source code, which must be distributed under the terms of
+Sections 1 and 2 above on a medium customarily used for software interchange.
+
+If distribution of object code is made by offering access to copy from a
+designated place, then offering equivalent access to copy the source code from
+the same place satisfies the requirement to distribute the source code, even
+though third parties are not compelled to copy the source along with the object
+code.
+
+5.  A program that contains no derivative of any portion of the Library, but is
+designed to work with the Library by being compiled or linked with it, is called
+a "work that uses the Library".  Such a work, in isolation, is not a derivative
+work of the Library, and therefore falls outside the scope of this License.
+
+However, linking a "work that uses the Library" with the Library creates an
+executable that is a derivative of the Library (because it contains portions of
+the Library), rather than a "work that uses the library".  The executable is
+therefore covered by this License.  Section 6 states terms for distribution of
+such executables.
+
+When a "work that uses the Library" uses material from a header file that is
+part of the Library, the object code for the work may be a derivative work of
+the Library even though the source code is not.  Whether this is true is
+especially significant if the work can be linked without the Library, or if the
+work is itself a library.  The threshold for this to be true is not precisely
+defined by law.
+
+If such an object file uses only numerical parameters, data structure layouts
+and accessors, and small macros and small inline functions (ten lines or less in
+length), then the use of the object file is unrestricted, regardless of whether
+it is legally a derivative work.  (Executables containing this object code plus
+portions of the Library will still fall under Section 6.)
+
+Otherwise, if the work is a derivative of the Library, you may distribute the
+object code for the work under the terms of Section 6.  Any executables
+containing that work also fall under Section 6, whether or not they are linked
+directly with the Library itself.
+
+6.  As an exception to the Sections above, you may also combine or link a "work
+that uses the Library" with the Library to produce a work containing portions of
+the Library, and distribute that work under terms of your choice, provided that
+the terms permit modification of the work for the customer's own use and reverse
+engineering for debugging such modifications.
+
+You must give prominent notice with each copy of the work that the Library is
+used in it and that the Library and its use are covered by this License.  You
+must supply a copy of this License.  If the work during execution displays
+copyright notices, you must include the copyright notice for the Library among
+them, as well as a reference directing the user to the copy of this License.
+Also, you must do one of these things:
+
+a) Accompany the work with the complete corresponding machine-readable source
+code for the Library including whatever changes were used in the work (which
+must be distributed under Sections 1 and 2 above); and, if the work is an
+executable linked with the Library, with the complete machine-readable "work
+that uses the Library", as object code and/or source code, so that the user can
+modify the Library and then relink to produce a modified executable containing
+the modified Library.  (It is understood that the user who changes the contents
+of definitions files in the Library will not necessarily be able to recompile
+the application to use the modified definitions.)
+
+b) Use a suitable shared library mechanism for linking with the Library.  A
+suitable mechanism is one that (1) uses at run time a copy of the library
+already present on the user's computer system, rather than copying library
+functions into the executable, and (2) will operate properly with a modified
+version of the library, if the user installs one, as long as the modified
+version is interface-compatible with the version that the work was made with.
+
+c) Accompany the work with a written offer, valid for at least three years, to
+give the same user the materials specified in Subsection 6a, above, for a charge
+no more than the cost of performing this distribution.
+
+d) If distribution of the work is made by offering access to copy from a
+designated place, offer equivalent access to copy the above specified materials
+from the same place.
+
+e) Verify that the user has already received a copy of these materials or that
+you have already sent this user a copy.
+
+For an executable, the required form of the "work that uses the Library" must
+include any data and utility programs needed for reproducing the executable from
+it.  However, as a special exception, the materials to be distributed need not
+include anything that is normally distributed (in either source or binary form)
+with the major components (compiler, kernel, and so on) of the operating system
+on which the executable runs, unless that component itself accompanies the
+executable.
+
+It may happen that this requirement contradicts the license restrictions of
+other proprietary libraries that do not normally accompany the operating system.
+Such a contradiction means you cannot use both them and the Library together in
+an executable that you distribute.
+
+7.  You may place library facilities that are a work based on the Library
+side-by-side in a single library together with other library facilities not
+covered by this License, and distribute such a combined library, provided that
+the separate distribution of the work based on the Library and of the other
+library facilities is otherwise permitted, and provided that you do these two
+things:
+
+a) Accompany the combined library with a copy of the same work based on the
+Library, uncombined with any other library facilities.  This must be distributed
+under the terms of the Sections above.
+
+b) Give prominent notice with the combined library of the fact that part of it
+is a work based on the Library, and explaining where to find the accompanying
+uncombined form of the same work.
+
+8.  You may not copy, modify, sublicense, link with, or distribute the Library
+except as expressly provided under this License.  Any attempt otherwise to copy,
+modify, sublicense, link with, or distribute the Library is void, and will
+automatically terminate your rights under this License.  However, parties who
+have received copies, or rights, from you under this License will not have their
+licenses terminated so long as such parties remain in full compliance.
+
+9.  You are not required to accept this License, since you have not signed it.
+However, nothing else grants you permission to modify or distribute the Library
+or its derivative works.  These actions are prohibited by law if you do not
+accept this License.  Therefore, by modifying or distributing the Library (or
+any work based on the Library), you indicate your acceptance of this License to
+do so, and all its terms and conditions for copying, distributing or modifying
+the Library or works based on it.
+
+10.  Each time you redistribute the Library (or any work based on the Library),
+the recipient automatically receives a license from the original licensor to
+copy, distribute, link with or modify the Library subject to these terms and
+conditions.  You may not impose any further restrictions on the recipients'
+exercise of the rights granted herein.  You are not responsible for enforcing
+compliance by third parties with this License.
+
+11.  If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues), conditions
+are imposed on you (whether by court order, agreement or otherwise) that
+contradict the conditions of this License, they do not excuse you from the
+conditions of this License.  If you cannot distribute so as to satisfy
+simultaneously your obligations under this License and any other pertinent
+obligations, then as a consequence you may not distribute the Library at all.
+For example, if a patent license would not permit royalty-free redistribution of
+the Library by all those who receive copies directly or indirectly through you,
+then the only way you could satisfy both it and this License would be to refrain
+entirely from distribution of the Library.
+
+If any portion of this section is held invalid or unenforceable under any
+particular circumstance, the balance of the section is intended to apply, and
+the section as a whole is intended to apply in other circumstances.
+
+It is not the purpose of this section to induce you to infringe any patents or
+other property right claims or to contest validity of any such claims; this
+section has the sole purpose of protecting the integrity of the free software
+distribution system which is implemented by public license practices.  Many
+people have made generous contributions to the wide range of software
+distributed through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing to
+distribute software through any other system and a licensee cannot impose that
+choice.
+
+This section is intended to make thoroughly clear what is believed to be a
+consequence of the rest of this License.
+
+12.  If the distribution and/or use of the Library is restricted in certain
+countries either by patents or by copyrighted interfaces, the original copyright
+holder who places the Library under this License may add an explicit
+geographical distribution limitation excluding those countries, so that
+distribution is permitted only in or among countries not thus excluded.  In such
+case, this License incorporates the limitation as if written in the body of this
+License.
+
+13.  The Free Software Foundation may publish revised and/or new versions of the
+Lesser General Public License from time to time.  Such new versions will be
+similar in spirit to the present version, but may differ in detail to address
+new problems or concerns.
+
+Each version is given a distinguishing version number.  If the Library specifies
+a version number of this License which applies to it and "any later version",
+you have the option of following the terms and conditions either of that version
+or of any later version published by the Free Software Foundation.  If the
+Library does not specify a license version number, you may choose any version
+ever published by the Free Software Foundation.
+
+14.  If you wish to incorporate parts of the Library into other free programs
+whose distribution conditions are incompatible with these, write to the author
+to ask for permission.  For software which is copyrighted by the Free Software
+Foundation, write to the Free Software Foundation; we sometimes make exceptions
+for this.  Our decision will be guided by the two goals of preserving the free
+status of all derivatives of our free software and of promoting the sharing and
+reuse of software generally.
+
+NO WARRANTY
+
+15.  BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR
+THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW.  EXCEPT WHEN OTHERWISE
+STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE LIBRARY
+"AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING,
+BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
+PARTICULAR PURPOSE.  THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE
+LIBRARY IS WITH YOU.  SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME THE COST OF
+ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+16.  IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL
+ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE
+LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL,
+SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY
+TO USE THE LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING
+RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF
+THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF SUCH HOLDER OR OTHER
+PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.  END OF TERMS AND
+CONDITIONS
+
+How to Apply These Terms to Your New Libraries
+
+If you develop a new library, and you want it to be of the greatest possible use
+to the public, we recommend making it free software that everyone can
+redistribute and change.  You can do so by permitting redistribution under these
+terms (or, alternatively, under the terms of the ordinary General Public
+License).
+
+To apply these terms, attach the following notices to the library.  It is safest
+to attach them to the start of each source file to most effectively convey the
+exclusion of warranty; and each file should have at least the "copyright" line
+and a pointer to where the full notice is found.
+
+    <one line to give the library's name and an idea of what it does.>
+    Copyright (C) <year> <name of author>
+
+    This library is free software; you can redistribute it and/or
+    modify it under the terms of the GNU Lesser General Public
+    License as published by the Free Software Foundation; either
+    version 2.1 of the License, or (at your option) any later version.
+
+    This library is distributed in the hope that it will be useful,
+    but WITHOUT ANY WARRANTY; without even the implied warranty of
+    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
+    Lesser General Public License for more details.
+
+    You should have received a copy of the GNU Lesser General Public
+    License along with this library; if not, write to the Free Software
+    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 
+
+Also add information on how to contact you by electronic and paper mail.
+
+You should also get your employer (if you work as a programmer) or your school,
+if any, to sign a "copyright disclaimer" for the library, if necessary.  Here is
+a sample; alter the names:
+
+    Yoyodyne, Inc., hereby disclaims all copyright interest in
+    the library `Frob' (a library for tweaking knobs) written
+    by James Random Hacker.
+
+    signature of Ty Coon, 1 April 1990
+
+    Ty Coon, President of Vice
+
+That's all there is to it!
+
+
+      unRAR restriction
+      -----------------
+
+        The unRAR sources cannot be used to re-create the RAR compression
+algorithm, 
+        which is proprietary. Distribution of modified unRAR sources in separate
+form 
+        or as a part of other software is permitted, provided that it is clearly
+        stated in the documentation and source comments that the code may
+        not be used to develop a RAR (WinRAR) compatible archiver.
+
+
+      AES code license
+      ----------------
+    
+        Copyright (c) 2001, Dr Brian Gladman
+
+        LICENSE TERMS
+
+        The free distribution and use of this software in both source and binary 
+        form is allowed (with or without changes) provided that:
+
+          1. distributions of this source code include the above copyright 
+             notice, this list of conditions and the following disclaimer;
+
+          2. distributions in binary form include the above copyright
+             notice, this list of conditions and the following disclaimer
+             in the documentation and/or other associated materials;
+
+          3. the copyright holder's name is not used to endorse products 
+             built using this software without specific written permission. 
+
+        DISCLAIMER
+
+        This software is provided 'as is' with no explicit or implied warranties
+        in respect of its properties, including, but not limited to, correctness 
+        and fitness for purpose.
+
+
+***************************************************************************
+
+%%The following software may be included in this product:
+UPX
+
+Use of any of this software is governed by the terms of the license below:
+
+-----BEGIN PGP SIGNED MESSAGE-----
+
+
+                 ooooo     ooo ooooooooo.   ooooooo  ooooo
+                 `888'     `8' `888   `Y88.  `8888    d8'
+                  888       8   888   .d88'    Y888..8P
+                  888       8   888ooo88P'      `8888'
+                  888       8   888            .8PY888.
+                  `88.    .8'   888           d8'  `888b
+                    `YbodP'    o888o        o888o  o88888o
+
+
+                    The Ultimate Packer for eXecutables
+          Copyright (c) 1996-2000 Markus Oberhumer & Laszlo Molnar
+               http://wildsau.idv.uni-linz.ac.at/mfx/upx.html
+                          http://www.nexus.hu/upx
+                            http://upx.tsx.org
+
+
+PLEASE CAREFULLY READ THIS LICENSE AGREEMENT, ESPECIALLY IF YOU PLAN
+TO MODIFY THE UPX SOURCE CODE OR USE A MODIFIED UPX VERSION.
+
+
+ABSTRACT
+========
+
+   UPX and UCL are copyrighted software distributed under the terms
+   of the GNU General Public License (hereinafter the "GPL").
+
+   The stub which is imbedded in each UPX compressed program is part
+   of UPX and UCL, and contains code that is under our copyright. The
+   terms of the GNU General Public License still apply as compressing
+   a program is a special form of linking with our stub.
+
+   As a special exception we grant the free usage of UPX for all
+   executables, including commercial programs.
+   See below for details and restrictions.
+
+
+COPYRIGHT
+=========
+
+   UPX and UCL are copyrighted software. All rights remain with the authors.
+
+   UPX is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer
+   UPX is Copyright (C) 1996-2000 Laszlo Molnar
+
+   UCL is Copyright (C) 1996-2000 Markus Franz Xaver Johannes Oberhumer
+
+
+GNU GENERAL PUBLIC LICENSE
+==========================
+
+   UPX and the UCL library are free software; you can redistribute them
+   and/or modify them under the terms of the GNU General Public License as
+   published by the Free Software Foundation; either version 2 of
+   the License, or (at your option) any later version.
+
+   UPX and UCL are distributed in the hope that they will be useful,
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+   GNU General Public License for more details.
+
+   You should have received a copy of the GNU General Public License
+   along with this program; see the file COPYING.
+
+
+SPECIAL EXCEPTION FOR COMPRESSED EXECUTABLES
+============================================
+
+   The stub which is imbedded in each UPX compressed program is part
+   of UPX and UCL, and contains code that is under our copyright. The
+   terms of the GNU General Public License still apply as compressing
+   a program is a special form of linking with our stub.
+
+   Hereby Markus F.X.J. Oberhumer and Laszlo Molnar grant you special
+   permission to freely use and distribute all UPX compressed programs
+   (including commercial ones), subject to the following restrictions:
+
+   1. You must compress your program with a completely unmodified UPX
+      version; either with our precompiled version, or (at your option)
+      with a self compiled version of the unmodified UPX sources as
+      distributed by us.
+   2. This also implies that the UPX stub must be completely unmodfied, i.e.
+      the stub imbedded in your compressed program must be byte-identical
+      to the stub that is produced by the official unmodified UPX version.
+   3. The decompressor and any other code from the stub must exclusively get
+      used by the unmodified UPX stub for decompressing your program at
+      program startup. No portion of the stub may get read, copied,
+      called or otherwise get used or accessed by your program.
+
+
+ANNOTATIONS
+===========
+
+  - You can use a modified UPX version or modified UPX stub only for
+    programs that are compatible with the GNU General Public License.
+
+  - We grant you special permission to freely use and distribute all UPX
+    compressed programs. But any modification of the UPX stub (such as,
+    but not limited to, removing our copyright string or making your
+    program non-decompressible) will immediately revoke your right to
+    use and distribute a UPX compressed program.
+
+  - UPX is not a software protection tool; by requiring that you use
+    the unmodified UPX version for your proprietary programs we
+    make sure that any user can decompress your program. This protects
+    both you and your users as nobody can hide malicious code -
+    any program that cannot be decompressed is highly suspicious
+    by definition.
+
+  - You can integrate all or part of UPX and UCL into projects that
+    are compatible with the GNU GPL, but obviously you cannot grant
+    any special exceptions beyond the GPL for our code in your project.
+
+  - We want to actively support manufacturers of virus scanners and
+    similar security software. Please contact us if you would like to
+    incorporate parts of UPX or UCL into such a product.
+
+
+
+Markus F.X.J. Oberhumer                   Laszlo Molnar
+markus.oberhumer@jk.uni-linz.ac.at        ml1050@cdata.tvnet.hu
+
+Linz, Austria, 25 Feb 2000
+
+Additional License(s)
+
+The UPX license file is at http://upx.sourceforge.net/upx-license.html.
+
+***************************************************************************
+
+%%The following software may be included in this product:
+LZMA Software Development Kit
+
+Use of any of this software is governed by the terms of the license below:
+
+License
+
+LZMA SDK is available under any of the following licenses:
+
+   1. GNU Lesser General Public License (GNU LGPL)
+   2. Common Public License (CPL)
+   3. Simplified license for unmodified code (read SPECIAL EXCEPTION)
+   4. Proprietary license
+
+This means that you can select one of these four options and follow rules of
+that license.
+
+SPECIAL EXCEPTION:  Igor Pavlov, as the author of this code, expressly permit
+you statically or dynamically to link your code (or bind by name) to the files
+from LZMA SDK without subjecting your linked code to the terms of the CPL or GNU
+LGPL.  Any modification or addition to any file in the LZMA SDK, however, is
+subject to the GNU LGPL or CPL terms.
+
+This SPECIAL EXCEPTION allows you to use LZMA SDK in applications with
+proprietary code, provided you keep the LZMA SDK code unmodified.
+
+SPECIAL EXCEPTION #2:  Igor Pavlov, as the author of this code, expressly
+permits you to use LZMA SDK 4.43 under the same terms and conditions contained
+in the License Agreement you have for any previous version of LZMA SDK developed
+by Igor Pavlov.
+
+SPECIAL EXCEPTION #2 allows holders of proprietary licenses to use latest
+version of LZMA SDK as update for previous versions.
+
+GNU LGPL and CPL are pretty similar and both these licenses are classified as
+free software licenses at http://www.gnu.org/ and OSI-approved at
+http://www.opensource.org/.
+
+LZMA SDK also is available under a proprietary license which can include:
+
+1.  The right to modify code from the LZMA SDK without subjecting the modified
+code to the terms of the CPL or GNU LGPL
+
+2.  Technical support for LZMA SDK via email
+
+To request such a proprietary license, or for any additional consultations, send
+an email message, using the 7-Zip support page:  Send message to LZMA developer
+
+The source code of 7-Zip is released under the terms of the GNU LGPL.  You can
+download the source code of 7-Zip at 7-Zip's Source Forge Page
+
+Additional License(s)
+
+The license included with the software differs slightly from the version posted
+on the website.  Specifically it includes SPECIAL EXCEPTION #3, which is not
+present in the license on the website.  The license from the software archive
+follows:
+
+LICENSE
+-------
+
+LZMA SDK is available under any of the following licenses:
+
+1) GNU Lesser General Public License (GNU LGPL)
+2) Common Public License (CPL)
+3) Simplified license for unmodified code (read SPECIAL EXCEPTION) 
+4) Proprietary license 
+
+It means that you can select one of these four options and follow rules of that license.
+
+
+1,2) GNU LGPL and CPL licenses are pretty similar and both these licenses are
+classified as
+ - "Free software licenses" at http://www.gnu.org/ 
+ - "OSI-approved" at http://www.opensource.org/
+
+
+3) SPECIAL EXCEPTION
+
+Igor Pavlov, as the author of this code, expressly permits you to statically or
+dynamically link your code (or bind by name) to the files from LZMA SDK without
+subjecting your linked code to the terms of the CPL or GNU LGPL.  Any
+modifications or additions to files from LZMA SDK, however, are subject to the
+GNU LGPL or CPL terms.
+
+SPECIAL EXCEPTION allows you to use LZMA SDK in applications with closed code,
+while you keep LZMA SDK code unmodified.
+
+
+SPECIAL EXCEPTION #2:  Igor Pavlov, as the author of this code, expressly
+permits you to use this code under the same terms and conditions contained in
+the License Agreement you have for any previous version of LZMA SDK developed by
+Igor Pavlov.
+
+SPECIAL EXCEPTION #2 allows owners of proprietary licenses to use latest version
+of LZMA SDK as update for previous versions.
+
+
+SPECIAL EXCEPTION #3:  Igor Pavlov, as the author of this code, expressly
+permits you to use code of the following files:  BranchTypes.h, LzmaTypes.h,
+LzmaTest.c, LzmaStateTest.c, LzmaAlone.cpp, LzmaAlone.cs, LzmaAlone.java as
+public domain code.
+
+
+4) Proprietary license
+
+LZMA SDK also can be available under a proprietary license which 
+can include:
+
+1) Right to modify code without subjecting modified code to the terms of the CPL or GNU LGPL
+2) Technical support for code
+
+To request such proprietary license or any additional consultations, send email
+message from that page:http://www.7-zip.org/support.html
+
+
+You should have received a copy of the GNU Lesser General Public License along
+with this library; if not, write to the Free Software Foundation, Inc., 59
+Temple Place, Suite 330, Boston, MA 02111-1307 USA
+
+You should have received a copy of the Common Public License along with this
+library.
Index: AE/installer2/setup_win/JRE/VERSION.TXT
===================================================================
--- AE/installer2/setup_win/JRE/VERSION.TXT	(revision 613)
+++ AE/installer2/setup_win/JRE/VERSION.TXT	(revision 613)
@@ -0,0 +1,1 @@
+1.6.21
Index: AE/installer2/setup_win/JRE/Welcome.html
===================================================================
--- AE/installer2/setup_win/JRE/Welcome.html	(revision 613)
+++ AE/installer2/setup_win/JRE/Welcome.html	(revision 613)
@@ -0,0 +1,26 @@
+<html>
+<head>
+<title>
+Welcome to the Java(TM) Platform
+</title>
+</head>
+<body>
+
+<h2>Welcome to the Java<SUP><FONT SIZE=-2>TM</FONT></SUP> Platform</h2>
+<p> Welcome to the Java<SUP><FONT SIZE=-2>TM</FONT></SUP> Standard Edition Runtime 
+  Environment. This provides complete runtime support for Java applications. 
+<p> The runtime environment includes the Java<SUP><FONT SIZE=-2>TM</FONT></SUP> 
+  Plug-in product which supports the Java environment inside web browsers. 
+<h3>References</h3>
+<p>
+See the <a href=http://java.sun.com/javase/6/docs/technotes/guides/plugin/index.html>Java Plug-in</a> product
+documentation for more information on using the Java Plug-in product.
+<p> See the <a href=http://java.sun.com/javase>Java Platform</a> web site for 
+  more information on the Java Platform. 
+<hr>
+<font size="-2">
+Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
+</font>
+<p>
+</body>
+</html>
Index: AE/installer2/setup_win/JRE/bin/client/Xusage.txt
===================================================================
--- AE/installer2/setup_win/JRE/bin/client/Xusage.txt	(revision 613)
+++ AE/installer2/setup_win/JRE/bin/client/Xusage.txt	(revision 613)
@@ -0,0 +1,24 @@
+    -Xmixed           mixed mode execution (default)
+    -Xint             interpreted mode execution only
+    -Xbootclasspath:<directories and zip/jar files separated by ;>
+                      set search path for bootstrap classes and resources
+    -Xbootclasspath/a:<directories and zip/jar files separated by ;>
+                      append to end of bootstrap class path
+    -Xbootclasspath/p:<directories and zip/jar files separated by ;>
+                      prepend in front of bootstrap class path
+    -Xnoclassgc       disable class garbage collection
+    -Xincgc           enable incremental garbage collection
+    -Xloggc:<file>    log GC status to a file with time stamps
+    -Xbatch           disable background compilation
+    -Xms<size>        set initial Java heap size
+    -Xmx<size>        set maximum Java heap size
+    -Xss<size>        set java thread stack size
+    -Xprof            output cpu profiling data
+    -Xfuture          enable strictest checks, anticipating future default
+    -Xrs              reduce use of OS signals by Java/VM (see documentation)
+    -Xcheck:jni       perform additional checks for JNI functions
+    -Xshare:off	      do not attempt to use shared class data
+    -Xshare:auto      use shared class data if possible (default)
+    -Xshare:on	      require using shared class data, otherwise fail.
+
+The -X options are non-standard and subject to change without notice.
Index: AE/installer2/setup_win/JRE/lib/calendars.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/calendars.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/calendars.properties	(revision 613)
@@ -0,0 +1,37 @@
+#
+# @(#)calendars.properties	1.3 10/03/23
+#
+# Copyright (c) 2005, Oracle and/or its affiliates. All rights reserved.
+# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
+#
+
+#
+# Japanese imperial calendar
+#
+#   Meiji  since 1868-01-01 00:00:00 local time (Gregorian)
+#   Taisho since 1912-07-30 00:00:00 local time (Gregorian)
+#   Showa  since 1926-12-25 00:00:00 local time (Gregorian)
+#   Heisei since 1989-01-08 00:00:00 local time (Gregorian)
+calendar.japanese.type: LocalGregorianCalendar
+calendar.japanese.eras: \
+	name=Meiji,abbr=M,since=-3218832000000;  \
+	name=Taisho,abbr=T,since=-1812153600000; \
+	name=Showa,abbr=S,since=-1357603200000;  \
+	name=Heisei,abbr=H,since=600220800000
+
+#
+# Taiwanese calendar
+#   Minguo since 1911-01-01 00:00:00 local time (Gregorian)
+calendar.taiwanese.type: LocalGregorianCalendar
+calendar.taiwanese.eras: \
+	name=MinGuo,since=-1830384000000
+
+#
+# Thai Buddhist calendar
+#   Buddhist Era since -542-01-01 00:00:00 local time (Gregorian)
+calendar.thai-buddhist.type: LocalGregorianCalendar
+calendar.thai-buddhist.eras: \
+	name=BuddhistEra,abbr=B.E.,since=-79302585600000
+calendar.thai-buddhist.year-boundary: \
+	day1=4-1,since=-79302585600000; \
+	day1=1-1,since=-915148800000
Index: AE/installer2/setup_win/JRE/lib/classlist
===================================================================
--- AE/installer2/setup_win/JRE/lib/classlist	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/classlist	(revision 613)
@@ -0,0 +1,2395 @@
+java/lang/Object
+java/lang/String
+java/io/Serializable
+java/lang/Comparable
+java/lang/CharSequence
+java/lang/Class
+java/lang/reflect/GenericDeclaration
+java/lang/reflect/Type
+java/lang/reflect/AnnotatedElement
+java/lang/Cloneable
+java/lang/ClassLoader
+java/lang/System
+java/lang/Throwable
+java/lang/Error
+java/lang/ThreadDeath
+java/lang/Exception
+java/lang/RuntimeException
+java/security/ProtectionDomain
+java/security/AccessControlContext
+java/lang/ClassNotFoundException
+java/lang/NoClassDefFoundError
+java/lang/LinkageError
+java/lang/ClassCastException
+java/lang/ArrayStoreException
+java/lang/VirtualMachineError
+java/lang/OutOfMemoryError
+java/lang/StackOverflowError
+java/lang/IllegalMonitorStateException
+java/lang/ref/Reference
+java/lang/ref/SoftReference
+java/lang/ref/WeakReference
+java/lang/ref/FinalReference
+java/lang/ref/PhantomReference
+java/lang/ref/Finalizer
+java/lang/Thread
+java/lang/Runnable
+java/lang/ThreadGroup
+java/lang/Thread$UncaughtExceptionHandler
+java/util/Properties
+java/util/Hashtable
+java/util/Map
+java/util/Dictionary
+java/lang/reflect/AccessibleObject
+java/lang/reflect/Field
+java/lang/reflect/Member
+java/lang/reflect/Method
+java/lang/reflect/Constructor
+sun/reflect/MagicAccessorImpl
+sun/reflect/MethodAccessorImpl
+sun/reflect/MethodAccessor
+sun/reflect/ConstructorAccessorImpl
+sun/reflect/ConstructorAccessor
+sun/reflect/DelegatingClassLoader
+sun/reflect/ConstantPool
+sun/reflect/UnsafeStaticFieldAccessorImpl
+sun/reflect/UnsafeFieldAccessorImpl
+sun/reflect/FieldAccessorImpl
+sun/reflect/FieldAccessor
+java/util/Vector
+java/util/List
+java/util/Collection
+java/lang/Iterable
+java/util/RandomAccess
+java/util/AbstractList
+java/util/AbstractCollection
+java/lang/StringBuffer
+java/lang/AbstractStringBuilder
+java/lang/Appendable
+java/lang/StackTraceElement
+java/nio/Buffer
+sun/misc/AtomicLongCSImpl
+sun/misc/AtomicLong
+java/lang/Boolean
+java/lang/Character
+java/lang/Float
+java/lang/Number
+java/lang/Double
+java/lang/Byte
+java/lang/Short
+java/lang/Integer
+java/lang/Long
+java/lang/NullPointerException
+java/lang/ArithmeticException
+java/io/ObjectStreamField
+java/lang/String$CaseInsensitiveComparator
+java/util/Comparator
+java/lang/RuntimePermission
+java/security/BasicPermission
+java/security/Permission
+java/security/Guard
+sun/misc/SoftCache
+java/util/AbstractMap
+java/lang/ref/ReferenceQueue
+java/lang/ref/ReferenceQueue$Null
+java/lang/ref/ReferenceQueue$Lock
+java/util/HashMap
+java/lang/annotation/Annotation
+java/util/HashMap$Entry
+java/util/Map$Entry
+java/security/AccessController
+java/lang/reflect/ReflectPermission
+sun/reflect/ReflectionFactory$GetReflectionFactoryAction
+java/security/PrivilegedAction
+java/util/Stack
+sun/reflect/ReflectionFactory
+java/lang/ref/Reference$Lock
+java/lang/ref/Reference$ReferenceHandler
+java/lang/ref/Finalizer$FinalizerThread
+java/util/Hashtable$EmptyEnumerator
+java/util/Enumeration
+java/util/Hashtable$EmptyIterator
+java/util/Iterator
+java/util/Hashtable$Entry
+sun/misc/Version
+java/lang/Runtime
+sun/reflect/Reflection
+java/util/Collections
+java/util/Collections$EmptySet
+java/util/AbstractSet
+java/util/Set
+java/util/Collections$EmptyList
+java/util/Collections$EmptyMap
+java/util/Collections$ReverseComparator
+java/util/Collections$SynchronizedMap
+java/io/File
+java/io/FileSystem
+java/io/WinNTFileSystem
+java/io/Win32FileSystem
+java/io/ExpiringCache
+java/io/ExpiringCache$1
+java/util/LinkedHashMap
+java/util/LinkedHashMap$Entry
+sun/security/action/GetPropertyAction
+java/lang/StringBuilder
+java/util/Arrays
+java/lang/Math
+java/io/File$1
+sun/misc/JavaIODeleteOnExitAccess
+sun/misc/SharedSecrets
+sun/misc/Unsafe
+java/lang/NoSuchMethodError
+java/lang/IncompatibleClassChangeError
+sun/jkernel/DownloadManager
+sun/jkernel/DownloadManager$1
+java/lang/ThreadLocal
+java/util/concurrent/atomic/AtomicInteger
+java/lang/Class$3
+java/lang/reflect/Modifier
+java/lang/reflect/ReflectAccess
+sun/reflect/LangReflectAccess
+sun/jkernel/DownloadManager$2
+java/lang/ClassLoader$3
+java/io/ExpiringCache$Entry
+java/lang/ClassLoader$NativeLibrary
+java/io/FileInputStream
+java/io/InputStream
+java/io/Closeable
+java/io/FileDescriptor
+java/io/FileOutputStream
+java/io/OutputStream
+java/io/Flushable
+java/io/BufferedInputStream
+java/io/FilterInputStream
+java/util/concurrent/atomic/AtomicReferenceFieldUpdater
+java/util/concurrent/atomic/AtomicReferenceFieldUpdater$AtomicReferenceFieldUpdaterImpl
+sun/reflect/misc/ReflectUtil
+java/io/PrintStream
+java/io/FilterOutputStream
+java/io/BufferedOutputStream
+java/io/OutputStreamWriter
+java/io/Writer
+sun/nio/cs/StreamEncoder
+java/nio/charset/Charset
+sun/nio/cs/StandardCharsets
+sun/nio/cs/FastCharsetProvider
+java/nio/charset/spi/CharsetProvider
+sun/nio/cs/StandardCharsets$Aliases
+sun/util/PreHashedMap
+sun/nio/cs/StandardCharsets$Classes
+sun/nio/cs/StandardCharsets$Cache
+sun/nio/cs/MS1252
+sun/nio/cs/HistoricallyNamedCharset
+java/lang/Class$1
+sun/reflect/ReflectionFactory$1
+sun/reflect/NativeConstructorAccessorImpl
+sun/reflect/DelegatingConstructorAccessorImpl
+sun/misc/VM
+sun/nio/cs/MS1252$Encoder
+sun/nio/cs/SingleByteEncoder
+java/nio/charset/CharsetEncoder
+java/nio/charset/CodingErrorAction
+sun/nio/cs/MS1252$Decoder
+sun/nio/cs/SingleByteDecoder
+java/nio/charset/CharsetDecoder
+java/nio/ByteBuffer
+java/nio/HeapByteBuffer
+java/nio/Bits
+java/nio/ByteOrder
+java/nio/CharBuffer
+java/lang/Readable
+java/nio/HeapCharBuffer
+java/nio/charset/CoderResult
+java/nio/charset/CoderResult$1
+java/nio/charset/CoderResult$Cache
+java/nio/charset/CoderResult$2
+sun/nio/cs/Surrogate$Parser
+sun/nio/cs/Surrogate
+java/io/BufferedWriter
+java/lang/Terminator
+java/lang/Terminator$1
+sun/misc/SignalHandler
+sun/misc/Signal
+sun/misc/NativeSignalHandler
+java/io/Console
+java/io/Console$1
+sun/misc/JavaIOAccess
+java/io/Console$1$1
+java/lang/Shutdown
+java/util/ArrayList
+java/lang/Shutdown$Lock
+java/lang/ApplicationShutdownHooks
+java/util/IdentityHashMap
+sun/misc/OSEnvironment
+sun/io/Win32ErrorMode
+java/lang/System$2
+sun/misc/JavaLangAccess
+java/lang/Compiler
+java/lang/Compiler$1
+sun/misc/Launcher
+sun/misc/Launcher$Factory
+java/net/URLStreamHandlerFactory
+sun/misc/Launcher$ExtClassLoader
+java/net/URLClassLoader
+java/security/SecureClassLoader
+sun/security/util/Debug
+java/net/URLClassLoader$7
+sun/misc/JavaNetAccess
+java/util/StringTokenizer
+sun/misc/Launcher$ExtClassLoader$1
+java/security/PrivilegedExceptionAction
+sun/misc/MetaIndex
+java/io/BufferedReader
+java/io/Reader
+java/io/FileReader
+java/io/InputStreamReader
+sun/nio/cs/StreamDecoder
+java/lang/reflect/Array
+java/util/Locale
+java/util/concurrent/ConcurrentHashMap
+java/util/concurrent/ConcurrentMap
+java/util/concurrent/ConcurrentHashMap$Segment
+java/util/concurrent/locks/ReentrantLock
+java/util/concurrent/locks/Lock
+java/util/concurrent/locks/ReentrantLock$NonfairSync
+java/util/concurrent/locks/ReentrantLock$Sync
+java/util/concurrent/locks/AbstractQueuedSynchronizer
+java/util/concurrent/locks/AbstractOwnableSynchronizer
+java/util/concurrent/locks/AbstractQueuedSynchronizer$Node
+java/util/concurrent/ConcurrentHashMap$HashEntry
+java/lang/CharacterDataLatin1
+java/io/ObjectStreamClass
+sun/net/www/ParseUtil
+java/util/BitSet
+java/net/URL
+java/net/Parts
+sun/net/www/protocol/file/Handler
+java/net/URLStreamHandler
+java/util/HashSet
+sun/misc/URLClassPath
+sun/net/www/protocol/jar/Handler
+sun/misc/Launcher$AppClassLoader
+sun/misc/Launcher$AppClassLoader$1
+java/lang/SystemClassLoaderAction
+java/lang/StringCoding
+java/lang/ThreadLocal$ThreadLocalMap
+java/lang/ThreadLocal$ThreadLocalMap$Entry
+java/lang/StringCoding$StringDecoder
+java/net/URLClassLoader$1
+sun/misc/URLClassPath$3
+sun/misc/URLClassPath$JarLoader
+sun/misc/URLClassPath$Loader
+java/security/PrivilegedActionException
+sun/misc/URLClassPath$FileLoader
+sun/misc/URLClassPath$FileLoader$1
+sun/misc/Resource
+sun/nio/ByteBuffered
+java/security/CodeSource
+java/security/Permissions
+java/security/PermissionCollection
+sun/net/www/protocol/file/FileURLConnection
+sun/net/www/URLConnection
+java/net/URLConnection
+java/net/UnknownContentHandler
+java/net/ContentHandler
+sun/net/www/MessageHeader
+java/io/FilePermission
+java/io/FilePermission$1
+sun/security/provider/PolicyFile
+java/security/Policy
+java/security/Policy$UnsupportedEmptyCollection
+java/io/FilePermissionCollection
+java/security/AllPermission
+java/security/UnresolvedPermission
+java/security/BasicPermissionCollection
+java/security/Principal
+java/security/cert/Certificate
+java/util/AbstractList$Itr
+java/util/IdentityHashMap$KeySet
+java/util/IdentityHashMap$KeyIterator
+java/util/IdentityHashMap$IdentityHashMapIterator
+java/io/DeleteOnExitHook
+java/util/LinkedHashSet
+java/util/HashMap$KeySet
+java/util/LinkedHashMap$KeyIterator
+java/util/LinkedHashMap$LinkedHashIterator
+java/awt/Frame
+java/awt/MenuContainer
+java/awt/Window
+javax/accessibility/Accessible
+java/awt/Container
+java/awt/Component
+java/awt/image/ImageObserver
+java/lang/InterruptedException
+java/awt/Label
+java/util/logging/Logger
+java/util/logging/Handler
+java/util/logging/Level
+java/util/logging/LogManager
+java/util/logging/LogManager$1
+java/beans/PropertyChangeSupport
+java/util/logging/LogManager$LogNode
+java/util/logging/LoggingPermission
+java/util/logging/LogManager$Cleaner
+java/util/logging/LogManager$RootLogger
+java/util/logging/LogManager$2
+java/util/Properties$LineReader
+java/util/Hashtable$Enumerator
+java/beans/PropertyChangeEvent
+java/util/EventObject
+java/awt/Component$AWTTreeLock
+sun/awt/DebugHelper
+sun/awt/NativeLibLoader
+sun/security/action/LoadLibraryAction
+sun/awt/DebugHelperStub
+java/awt/Toolkit
+java/awt/Toolkit$3
+sun/util/CoreResourceBundleControl
+java/util/ResourceBundle$Control
+java/util/Arrays$ArrayList
+java/util/Collections$UnmodifiableRandomAccessList
+java/util/Collections$UnmodifiableList
+java/util/Collections$UnmodifiableCollection
+java/util/ResourceBundle
+java/util/ResourceBundle$1
+java/util/ResourceBundle$RBClassLoader
+java/util/ResourceBundle$RBClassLoader$1
+java/util/ResourceBundle$CacheKey
+java/util/ResourceBundle$LoaderReference
+java/util/ResourceBundle$CacheKeyReference
+java/util/ResourceBundle$SingleFormatControl
+sun/awt/resources/awt
+java/util/ListResourceBundle
+java/awt/Toolkit$1
+java/io/FileNotFoundException
+java/io/IOException
+java/awt/GraphicsEnvironment
+java/awt/GraphicsEnvironment$1
+java/awt/Insets
+sun/awt/windows/WComponentPeer
+java/awt/peer/ComponentPeer
+java/awt/dnd/peer/DropTargetPeer
+sun/awt/DisplayChangedListener
+java/util/EventListener
+sun/awt/windows/WObjectPeer
+java/awt/Font
+java/awt/geom/AffineTransform
+sun/font/AttributeValues
+sun/font/EAttribute
+java/lang/Enum
+java/text/AttributedCharacterIterator$Attribute
+java/lang/Class$4
+sun/reflect/NativeMethodAccessorImpl
+sun/reflect/DelegatingMethodAccessorImpl
+java/awt/font/TextAttribute
+java/lang/Integer$IntegerCache
+java/awt/Component$1
+sun/awt/AWTAccessor$ComponentAccessor
+sun/awt/AWTAccessor
+java/util/WeakHashMap
+java/util/WeakHashMap$Entry
+java/awt/AWTEvent
+java/awt/Component$DummyRequestFocusController
+sun/awt/RequestFocusController
+java/awt/LayoutManager
+java/awt/LightweightDispatcher
+java/awt/event/AWTEventListener
+java/awt/Dimension
+java/awt/geom/Dimension2D
+sun/awt/util/IdentityArrayList
+java/util/concurrent/atomic/AtomicBoolean
+java/awt/Color
+java/awt/Paint
+java/awt/Transparency
+java/awt/Window$1
+sun/awt/AWTAccessor$WindowAccessor
+java/awt/ComponentOrientation
+java/awt/Component$3
+java/lang/NoSuchMethodException
+sun/awt/AppContext
+sun/awt/AppContext$1
+sun/awt/AppContext$2
+sun/awt/MostRecentKeyValue
+java/awt/Cursor
+java/awt/Point
+java/awt/geom/Point2D
+sun/awt/Win32GraphicsEnvironment
+sun/java2d/SunGraphicsEnvironment
+sun/java2d/FontSupport
+sun/java2d/SunGraphicsEnvironment$1
+sun/java2d/SunGraphicsEnvironment$TTFilter
+java/io/FilenameFilter
+sun/java2d/SunGraphicsEnvironment$T1Filter
+sun/awt/windows/WToolkit
+sun/awt/SunToolkit
+sun/awt/WindowClosingSupport
+sun/awt/WindowClosingListener
+sun/awt/ComponentFactory
+sun/awt/InputMethodSupport
+java/util/concurrent/locks/AbstractQueuedSynchronizer$ConditionObject
+java/util/concurrent/locks/Condition
+sun/awt/AWTAutoShutdown
+sun/awt/AWTAutoShutdown$PeerMap
+sun/awt/SunToolkit$6
+java/awt/Dialog$ModalExclusionType
+java/awt/Dialog
+java/awt/Dialog$ModalityType
+java/awt/ModalEventFilter
+java/awt/EventFilter
+sun/reflect/UnsafeFieldAccessorFactory
+sun/awt/windows/WWindowPeer
+java/awt/peer/WindowPeer
+java/awt/peer/ContainerPeer
+sun/awt/windows/WPanelPeer
+java/awt/peer/PanelPeer
+sun/awt/windows/WCanvasPeer
+java/awt/peer/CanvasPeer
+sun/awt/windows/WToolkit$5
+java/awt/GraphicsConfiguration
+java/awt/image/BufferStrategy
+java/awt/dnd/DropTarget
+java/awt/dnd/DropTargetListener
+java/awt/event/ComponentListener
+java/awt/event/FocusListener
+java/awt/event/HierarchyListener
+java/awt/event/HierarchyBoundsListener
+java/awt/event/KeyListener
+java/awt/event/MouseListener
+java/awt/event/MouseMotionListener
+java/awt/event/MouseWheelListener
+java/awt/event/InputMethodListener
+java/awt/EventQueueItem
+java/awt/Component$NativeInLightFixer
+java/awt/event/ContainerListener
+javax/accessibility/AccessibleContext
+sun/awt/windows/WToolkit$6
+java/io/ObjectOutputStream
+java/io/ObjectOutput
+java/io/DataOutput
+java/io/ObjectStreamConstants
+java/awt/Shape
+java/io/ObjectInputStream
+java/io/ObjectInput
+java/io/DataInput
+java/awt/HeadlessException
+java/lang/UnsupportedOperationException
+java/awt/image/BufferedImage
+java/awt/image/WritableRenderedImage
+java/awt/image/RenderedImage
+java/awt/Image
+java/awt/Rectangle
+java/awt/geom/Rectangle2D
+java/awt/geom/RectangularShape
+java/awt/event/KeyEvent
+java/awt/event/InputEvent
+java/awt/event/ComponentEvent
+java/awt/Event
+java/beans/PropertyChangeListener
+java/awt/event/WindowFocusListener
+java/awt/event/WindowListener
+java/awt/event/WindowStateListener
+java/awt/BufferCapabilities
+java/awt/AWTException
+java/awt/event/MouseWheelEvent
+java/awt/event/MouseEvent
+java/awt/im/InputContext
+java/awt/event/WindowEvent
+java/lang/SecurityException
+sun/reflect/UnsafeQualifiedStaticObjectFieldAccessorImpl
+sun/reflect/UnsafeQualifiedStaticFieldAccessorImpl
+sun/java2d/SurfaceData
+sun/java2d/DisposerTarget
+sun/java2d/Surface
+sun/java2d/InvalidPipeException
+java/lang/IllegalStateException
+sun/java2d/NullSurfaceData
+sun/java2d/loops/SurfaceType
+sun/awt/image/PixelConverter
+sun/awt/image/PixelConverter$Xrgb
+sun/awt/image/PixelConverter$Argb
+sun/awt/image/PixelConverter$ArgbPre
+sun/awt/image/PixelConverter$Xbgr
+sun/awt/image/PixelConverter$Rgba
+sun/awt/image/PixelConverter$RgbaPre
+sun/awt/image/PixelConverter$Ushort565Rgb
+sun/awt/image/PixelConverter$Ushort555Rgb
+sun/awt/image/PixelConverter$Ushort555Rgbx
+sun/awt/image/PixelConverter$Ushort4444Argb
+sun/awt/image/PixelConverter$ByteGray
+sun/awt/image/PixelConverter$UshortGray
+sun/awt/image/PixelConverter$Rgbx
+sun/awt/image/PixelConverter$Bgrx
+sun/awt/image/PixelConverter$ArgbBm
+java/awt/image/ColorModel
+java/awt/image/DirectColorModel
+java/awt/image/PackedColorModel
+java/awt/color/ColorSpace
+java/awt/color/ICC_Profile
+sun/awt/color/ProfileDeferralInfo
+sun/awt/color/ProfileDeferralMgr
+java/awt/color/ICC_ProfileRGB
+java/awt/color/ICC_Profile$1
+sun/awt/color/ProfileActivator
+java/awt/color/ICC_ColorSpace
+sun/java2d/pipe/NullPipe
+sun/java2d/pipe/PixelDrawPipe
+sun/java2d/pipe/PixelFillPipe
+sun/java2d/pipe/ShapeDrawPipe
+sun/java2d/pipe/TextPipe
+sun/java2d/pipe/DrawImagePipe
+java/awt/image/IndexColorModel
+sun/java2d/pipe/LoopPipe
+sun/java2d/pipe/OutlineTextRenderer
+sun/java2d/pipe/SolidTextRenderer
+sun/java2d/pipe/GlyphListLoopPipe
+sun/java2d/pipe/GlyphListPipe
+sun/java2d/pipe/AATextRenderer
+sun/java2d/pipe/LCDTextRenderer
+sun/java2d/pipe/AlphaColorPipe
+sun/java2d/pipe/CompositePipe
+sun/java2d/pipe/PixelToShapeConverter
+sun/java2d/pipe/TextRenderer
+sun/java2d/pipe/SpanClipRenderer
+sun/java2d/pipe/Region
+sun/java2d/pipe/RegionIterator
+sun/java2d/pipe/AlphaPaintPipe
+sun/java2d/pipe/SpanShapeRenderer$Composite
+sun/java2d/pipe/SpanShapeRenderer
+sun/java2d/pipe/GeneralCompositePipe
+sun/java2d/pipe/DrawImage
+sun/java2d/loops/RenderCache
+sun/java2d/loops/RenderCache$Entry
+sun/awt/image/SunVolatileImage
+sun/java2d/DestSurfaceProvider
+java/awt/image/VolatileImage
+java/awt/ImageCapabilities
+java/awt/Image$1
+sun/awt/image/SurfaceManager$ImageAccessor
+sun/awt/image/SurfaceManager
+sun/awt/image/VolatileSurfaceManager
+sun/awt/windows/WToolkit$1
+sun/java2d/windows/WindowsFlags
+sun/java2d/windows/WindowsFlags$1
+sun/awt/SunDisplayChanger
+sun/java2d/SunGraphicsEnvironment$2
+sun/font/FontManager
+sun/font/FileFont
+sun/font/PhysicalFont
+sun/font/Font2D
+sun/font/CompositeFont
+java/util/HashMap$Values
+java/util/HashMap$ValueIterator
+java/util/HashMap$HashIterator
+sun/font/FontManager$1
+sun/font/TrueTypeFont
+java/awt/font/FontRenderContext
+java/awt/RenderingHints
+sun/awt/SunHints
+sun/awt/SunHints$Key
+java/awt/RenderingHints$Key
+sun/awt/SunHints$Value
+sun/awt/SunHints$LCDContrastKey
+sun/font/Type1Font
+java/awt/geom/Point2D$Float
+sun/font/StrikeMetrics
+java/awt/geom/Rectangle2D$Float
+java/awt/geom/GeneralPath
+java/awt/geom/Path2D$Float
+java/awt/geom/Path2D
+sun/font/CharToGlyphMapper
+sun/font/PhysicalStrike
+sun/font/FontStrike
+sun/font/GlyphList
+sun/font/StrikeCache
+sun/java2d/Disposer
+sun/java2d/Disposer$1
+sun/font/StrikeCache$1
+sun/font/FontManager$FontRegistrationInfo
+sun/awt/windows/WFontConfiguration
+sun/awt/FontConfiguration
+sun/awt/FontDescriptor
+java/io/DataInputStream
+java/lang/Short$ShortCache
+java/util/HashMap$KeyIterator
+sun/font/CompositeFontDescriptor
+sun/font/Font2DHandle
+sun/font/FontFamily
+java/awt/GraphicsDevice
+sun/java2d/d3d/D3DGraphicsDevice
+sun/awt/Win32GraphicsDevice
+java/awt/Toolkit$2
+java/awt/Toolkit$DesktopPropertyChangeSupport
+sun/awt/SunToolkit$ModalityListenerList
+sun/awt/ModalityListener
+sun/awt/SunToolkit$1
+java/util/MissingResourceException
+java/awt/EventQueue
+java/awt/Queue
+sun/awt/PostEventQueue
+sun/misc/PerformanceLogger
+sun/misc/PerformanceLogger$TimeData
+sun/awt/windows/WToolkit$ToolkitDisposer
+sun/java2d/DisposerRecord
+sun/awt/windows/WToolkit$2
+sun/awt/windows/WToolkit$3
+sun/java2d/d3d/D3DRenderQueue
+sun/java2d/pipe/RenderQueue
+sun/java2d/pipe/RenderBuffer
+sun/java2d/d3d/D3DRenderQueue$1
+sun/java2d/d3d/D3DGraphicsDevice$1Result
+sun/java2d/d3d/D3DGraphicsDevice$1
+sun/java2d/d3d/D3DContext$D3DContextCaps
+sun/java2d/pipe/hw/ContextCapabilities
+sun/java2d/d3d/D3DContext
+sun/java2d/pipe/BufferedContext
+sun/java2d/d3d/D3DGraphicsConfig
+sun/java2d/pipe/hw/AccelGraphicsConfig
+sun/java2d/pipe/hw/BufferedContextProvider
+sun/awt/Win32GraphicsConfig
+sun/java2d/d3d/D3DGraphicsConfig$D3DImageCaps
+java/awt/BorderLayout
+java/awt/LayoutManager2
+java/awt/Window$WindowDisposerRecord
+java/awt/KeyboardFocusManager
+java/awt/KeyEventDispatcher
+java/awt/KeyEventPostProcessor
+java/awt/event/NativeLibLoader
+java/awt/AWTKeyStroke
+java/awt/AWTKeyStroke$1
+java/util/LinkedList
+java/util/Deque
+java/util/Queue
+java/util/AbstractSequentialList
+java/util/LinkedList$Entry
+java/awt/DefaultKeyboardFocusManager
+java/awt/DefaultFocusTraversalPolicy
+java/awt/ContainerOrderFocusTraversalPolicy
+java/awt/FocusTraversalPolicy
+java/awt/MutableBoolean
+java/util/Collections$UnmodifiableSet
+sun/awt/HeadlessToolkit
+sun/awt/KeyboardFocusManagerPeerImpl
+java/awt/peer/KeyboardFocusManagerPeer
+sun/awt/windows/WFramePeer
+java/awt/peer/FramePeer
+sun/awt/RepaintArea
+sun/awt/EmbeddedFrame
+sun/awt/im/InputMethodWindow
+sun/awt/windows/WComponentPeer$2
+sun/awt/PaintEventDispatcher
+java/awt/event/InvocationEvent
+java/awt/ActiveEvent
+java/awt/MenuComponent
+sun/awt/EventQueueItem
+sun/awt/SunToolkit$3
+java/util/EmptyStackException
+java/lang/reflect/InvocationTargetException
+java/awt/event/PaintEvent
+java/awt/EventDispatchThread
+sun/awt/PeerEvent
+java/awt/EventQueue$1
+sun/java2d/ScreenUpdateManager
+java/awt/EventDispatchThread$1
+sun/java2d/d3d/D3DScreenUpdateManager$1
+sun/awt/EventQueueDelegate
+java/awt/EventFilter$FilterAction
+com/sun/awt/AWTUtilities
+sun/java2d/d3d/D3DSurfaceData
+sun/java2d/d3d/D3DDrawImage
+sun/java2d/d3d/D3DTextRenderer
+java/awt/event/ActionEvent
+sun/java2d/d3d/D3DRenderer
+sun/java2d/pipe/BufferedRenderPipe
+sun/java2d/pipe/ParallelogramPipe
+sun/java2d/pipe/BufferedRenderPipe$AAParallelogramPipe
+sun/java2d/pipe/BufferedRenderPipe$BufferedDrawHandler
+sun/java2d/loops/ProcessPath$DrawHandler
+sun/java2d/loops/GraphicsPrimitive
+sun/java2d/pipe/PixelToParallelogramConverter
+sun/java2d/d3d/D3DBlitLoops
+sun/java2d/d3d/D3DSwToSurfaceBlit
+sun/java2d/loops/Blit
+sun/java2d/loops/GraphicsPrimitiveMgr
+sun/java2d/loops/CompositeType
+sun/java2d/SunGraphics2D
+sun/awt/ConstrainableGraphics
+java/awt/Graphics2D
+java/awt/Graphics
+sun/java2d/loops/XORComposite
+java/awt/Composite
+java/awt/AlphaComposite
+sun/java2d/loops/BlitBg
+sun/java2d/loops/ScaledBlit
+sun/java2d/loops/FillRect
+sun/java2d/loops/FillSpans
+sun/java2d/loops/DrawLine
+sun/java2d/loops/DrawRect
+sun/java2d/loops/DrawPolygons
+sun/java2d/loops/DrawPath
+sun/java2d/loops/FillPath
+sun/java2d/loops/MaskBlit
+sun/java2d/loops/MaskFill
+sun/java2d/loops/DrawGlyphList
+sun/java2d/loops/DrawGlyphListAA
+sun/java2d/loops/DrawGlyphListLCD
+sun/java2d/loops/TransformHelper
+java/awt/BasicStroke
+java/awt/Stroke
+sun/java2d/pipe/ValidatePipe
+sun/java2d/loops/CustomComponent
+sun/java2d/loops/GraphicsPrimitiveProxy
+sun/java2d/loops/GeneralRenderer
+sun/java2d/loops/GraphicsPrimitiveMgr$1
+sun/java2d/loops/GraphicsPrimitiveMgr$2
+sun/java2d/d3d/D3DSwToTextureBlit
+sun/java2d/d3d/D3DSurfaceToGDIWindowSurfaceBlit
+sun/java2d/windows/GDIWindowSurfaceData
+sun/java2d/windows/GDIBlitLoops
+sun/java2d/windows/GDIRenderer
+sun/java2d/d3d/D3DSurfaceToGDIWindowSurfaceScale
+sun/java2d/d3d/D3DSurfaceToGDIWindowSurfaceTransform
+sun/java2d/loops/TransformBlit
+sun/java2d/d3d/D3DSurfaceToSurfaceBlit
+sun/java2d/d3d/D3DSurfaceToSurfaceScale
+sun/java2d/d3d/D3DSurfaceToSurfaceTransform
+sun/java2d/d3d/D3DRTTSurfaceToSurfaceBlit
+sun/java2d/d3d/D3DRTTSurfaceToSurfaceScale
+sun/java2d/d3d/D3DRTTSurfaceToSurfaceTransform
+sun/java2d/d3d/D3DSurfaceToSwBlit
+sun/java2d/d3d/D3DGeneralBlit
+sun/java2d/d3d/D3DSwToSurfaceScale
+sun/java2d/d3d/D3DSwToSurfaceTransform
+sun/java2d/d3d/D3DTextureToSurfaceBlit
+sun/java2d/d3d/D3DTextureToSurfaceScale
+sun/java2d/d3d/D3DTextureToSurfaceTransform
+sun/java2d/d3d/D3DMaskFill
+sun/java2d/pipe/BufferedMaskFill
+sun/java2d/d3d/D3DMaskBlit
+sun/java2d/pipe/BufferedMaskBlit
+sun/java2d/d3d/D3DSurfaceData$D3DWindowSurfaceData
+sun/java2d/pipe/hw/ExtendedBufferCapabilities$VSyncType
+sun/java2d/DefaultDisposerRecord
+sun/security/action/GetBooleanAction
+sun/java2d/d3d/D3DScreenUpdateManager$2
+sun/awt/windows/WColor
+sun/awt/windows/WFontPeer
+sun/awt/PlatformFont
+java/awt/peer/FontPeer
+sun/awt/FontConfiguration$1
+sun/awt/windows/WingDings
+sun/awt/windows/WingDings$Encoder
+sun/awt/Symbol
+sun/awt/Symbol$Encoder
+sun/awt/im/InputMethodManager
+sun/awt/im/ExecutableInputMethodManager
+sun/awt/windows/WInputMethodDescriptor
+java/awt/im/spi/InputMethodDescriptor
+sun/awt/im/InputMethodLocator
+sun/awt/im/ExecutableInputMethodManager$3
+sun/misc/Service
+sun/misc/Service$LazyIterator
+java/util/TreeSet
+java/util/NavigableSet
+java/util/SortedSet
+java/util/TreeMap
+java/util/NavigableMap
+java/util/SortedMap
+sun/misc/Launcher$1
+sun/misc/Launcher$2
+sun/misc/URLClassPath$2
+java/lang/ClassLoader$2
+sun/misc/URLClassPath$1
+java/net/URLClassLoader$3
+sun/misc/CompoundEnumeration
+sun/misc/URLClassPath$JarLoader$1
+sun/misc/FileURLMapper
+java/net/URLClassLoader$3$1
+sun/awt/SunToolkit$2
+sun/reflect/UnsafeObjectFieldAccessorImpl
+java/awt/peer/LightweightPeer
+sun/awt/windows/WLabelPeer
+java/awt/peer/LabelPeer
+sun/java2d/loops/RenderLoops
+sun/java2d/loops/GraphicsPrimitiveMgr$PrimitiveSpec
+sun/awt/windows/WFileDialogPeer
+java/awt/peer/FileDialogPeer
+java/awt/peer/DialogPeer
+sun/awt/windows/WPrintDialogPeer
+sun/awt/dnd/SunDropTargetEvent
+java/awt/PopupMenu
+java/awt/event/FocusEvent
+java/awt/Menu
+java/awt/MenuItem
+java/io/PrintWriter
+sun/awt/CausedFocusEvent$Cause
+java/awt/PointerInfo
+java/awt/image/ImageProducer
+javax/accessibility/AccessibleStateSet
+java/awt/Component$BaselineResizeBehavior
+java/awt/FontMetrics
+java/awt/im/InputMethodRequests
+java/awt/event/HierarchyEvent
+java/awt/SequencedEvent
+sun/awt/windows/WGlobalCursorManager
+sun/awt/PlatformFont$PlatformFontCache
+sun/nio/cs/Unicode
+sun/nio/cs/UTF_16LE$Encoder
+sun/nio/cs/UnicodeEncoder
+sun/nio/cs/UTF_16LE$Decoder
+sun/nio/cs/UnicodeDecoder
+sun/awt/event/IgnorePaintEvent
+java/awt/KeyboardFocusManager$HeavyweightFocusRequest
+java/util/LinkedList$ListItr
+java/util/ListIterator
+java/awt/DefaultKeyboardFocusManager$TypeAheadMarker
+java/awt/KeyboardFocusManager$LightweightFocusRequest
+sun/reflect/MethodAccessorGenerator
+sun/reflect/AccessorGenerator
+sun/reflect/ClassFileConstants
+sun/reflect/ByteVectorFactory
+sun/reflect/ByteVectorImpl
+sun/reflect/ByteVector
+sun/reflect/ClassFileAssembler
+sun/reflect/UTF8
+java/lang/Void
+sun/reflect/Label
+sun/reflect/Label$PatchInfo
+sun/reflect/MethodAccessorGenerator$1
+sun/reflect/ClassDefiner
+sun/reflect/ClassDefiner$1
+sun/java2d/pipe/hw/AccelDeviceEventNotifier
+javax/swing/JFrame
+javax/swing/WindowConstants
+javax/swing/RootPaneContainer
+javax/swing/TransferHandler$HasGetTransferHandler
+javax/swing/JLabel
+javax/swing/SwingConstants
+javax/swing/JComponent
+javax/swing/JComponent$1
+javax/swing/SwingUtilities
+javax/swing/JRootPane
+javax/swing/event/EventListenerList
+javax/swing/JPanel
+java/awt/FlowLayout
+javax/swing/UIManager
+javax/swing/UIManager$LookAndFeelInfo
+sun/awt/shell/Win32ShellFolderManager2
+sun/awt/shell/ShellFolderManager
+sun/awt/windows/WDesktopProperties
+sun/awt/windows/ThemeReader
+java/util/concurrent/locks/ReentrantReadWriteLock
+java/util/concurrent/locks/ReadWriteLock
+java/util/concurrent/locks/ReentrantReadWriteLock$NonfairSync
+java/util/concurrent/locks/ReentrantReadWriteLock$Sync
+java/util/concurrent/locks/ReentrantReadWriteLock$Sync$ThreadLocalHoldCounter
+java/util/concurrent/locks/ReentrantReadWriteLock$ReadLock
+java/util/concurrent/locks/ReentrantReadWriteLock$WriteLock
+sun/awt/windows/WDesktopProperties$WinPlaySound
+java/util/HashMap$EntrySet
+java/util/HashMap$EntryIterator
+java/awt/Toolkit$DesktopPropertyChangeSupport$1
+java/util/Collections$SynchronizedCollection
+java/util/IdentityHashMap$Values
+java/util/IdentityHashMap$ValueIterator
+sun/swing/SwingUtilities2
+sun/swing/SwingUtilities2$LSBCacheEntry
+javax/swing/UIManager$LAFState
+javax/swing/UIDefaults
+javax/swing/MultiUIDefaults
+javax/swing/UIManager$1
+javax/swing/plaf/metal/MetalLookAndFeel
+javax/swing/plaf/basic/BasicLookAndFeel
+javax/swing/LookAndFeel
+sun/swing/DefaultLookup
+javax/swing/plaf/metal/OceanTheme
+javax/swing/plaf/metal/DefaultMetalTheme
+javax/swing/plaf/metal/MetalTheme
+javax/swing/plaf/ColorUIResource
+javax/swing/plaf/UIResource
+sun/swing/PrintColorUIResource
+javax/swing/plaf/metal/DefaultMetalTheme$FontDelegate
+javax/swing/plaf/FontUIResource
+sun/swing/SwingLazyValue
+javax/swing/UIDefaults$LazyValue
+javax/swing/UIDefaults$ActiveValue
+javax/swing/plaf/InsetsUIResource
+sun/swing/SwingUtilities2$2
+javax/swing/plaf/basic/BasicLookAndFeel$2
+javax/swing/plaf/DimensionUIResource
+javax/swing/UIDefaults$LazyInputMap
+java/lang/Character$CharacterCache
+javax/swing/plaf/metal/MetalLookAndFeel$MetalLazyValue
+javax/swing/plaf/metal/MetalLookAndFeel$FontActiveValue
+sun/swing/SwingUtilities2$AATextInfo
+javax/swing/plaf/metal/MetalLookAndFeel$AATextListener
+java/beans/PropertyChangeListenerProxy
+java/util/EventListenerProxy
+sun/awt/EventListenerAggregate
+javax/swing/UIDefaults$ProxyLazyValue
+javax/swing/plaf/metal/OceanTheme$1
+javax/swing/plaf/metal/OceanTheme$2
+javax/swing/plaf/metal/OceanTheme$3
+javax/swing/plaf/metal/OceanTheme$4
+javax/swing/plaf/metal/OceanTheme$5
+javax/swing/plaf/metal/OceanTheme$6
+javax/swing/FocusManager
+javax/swing/LayoutFocusTraversalPolicy
+javax/swing/SortingFocusTraversalPolicy
+javax/swing/InternalFrameFocusTraversalPolicy
+javax/swing/SwingContainerOrderFocusTraversalPolicy
+javax/swing/SwingDefaultFocusTraversalPolicy
+javax/swing/LayoutComparator
+javax/swing/RepaintManager
+javax/swing/RepaintManager$DisplayChangedHandler
+javax/swing/SwingPaintEventDispatcher
+javax/swing/UIManager$2
+javax/swing/UIManager$3
+java/awt/event/InputMethodEvent
+com/sun/swing/internal/plaf/metal/resources/metal
+sun/util/ResourceBundleEnumeration
+com/sun/swing/internal/plaf/basic/resources/basic
+javax/swing/plaf/basic/BasicPanelUI
+javax/swing/plaf/PanelUI
+javax/swing/plaf/ComponentUI
+sun/reflect/misc/MethodUtil
+sun/reflect/misc/MethodUtil$1
+sun/awt/AppContext$PostShutdownEventRunnable
+sun/awt/AWTAutoShutdown$1
+java/util/jar/JarFile
+java/util/zip/ZipFile
+java/util/zip/ZipConstants
+java/util/jar/JavaUtilJarAccessImpl
+sun/misc/JavaUtilJarAccess
+sun/misc/JarIndex
+java/util/zip/ZipEntry
+java/util/jar/JarFile$JarFileEntry
+java/util/jar/JarEntry
+sun/misc/URLClassPath$JarLoader$2
+sun/net/www/protocol/jar/JarURLConnection
+java/net/JarURLConnection
+sun/net/www/protocol/jar/JarFileFactory
+sun/net/www/protocol/jar/URLJarFile$URLJarFileCloseController
+java/net/HttpURLConnection
+sun/net/www/protocol/jar/URLJarFile
+sun/net/www/protocol/jar/URLJarFile$URLJarFileEntry
+sun/net/www/protocol/jar/JarURLConnection$JarURLInputStream
+java/util/zip/ZipFile$ZipFileInputStream
+java/security/AllPermissionCollection
+java/lang/IllegalAccessException
+com/sun/java/swing/SwingUtilities3
+javax/swing/JPasswordField
+javax/swing/JTextField
+javax/swing/text/JTextComponent
+javax/swing/Scrollable
+javax/swing/JLayeredPane
+javax/swing/JRootPane$1
+javax/swing/ArrayTable
+javax/swing/JInternalFrame
+javax/swing/JRootPane$RootLayout
+javax/swing/BufferStrategyPaintManager
+javax/swing/RepaintManager$PaintManager
+javax/swing/plaf/metal/MetalRootPaneUI
+javax/swing/plaf/basic/BasicRootPaneUI
+javax/swing/plaf/RootPaneUI
+javax/swing/plaf/basic/BasicRootPaneUI$RootPaneInputMap
+javax/swing/plaf/ComponentInputMapUIResource
+javax/swing/ComponentInputMap
+javax/swing/InputMap
+javax/swing/plaf/InputMapUIResource
+javax/swing/KeyStroke
+java/awt/VKCollection
+sun/reflect/UnsafeQualifiedStaticIntegerFieldAccessorImpl
+javax/swing/plaf/basic/LazyActionMap
+javax/swing/plaf/ActionMapUIResource
+javax/swing/ActionMap
+javax/swing/plaf/metal/MetalLabelUI
+javax/swing/plaf/basic/BasicLabelUI
+javax/swing/plaf/LabelUI
+javax/swing/plaf/metal/DefaultMetalTheme$FontDelegate$1
+javax/swing/plaf/basic/BasicHTML
+javax/swing/SystemEventQueueUtilities
+javax/swing/SystemEventQueueUtilities$ComponentWorkRequest
+java/awt/Conditional
+sun/java2d/d3d/D3DScreenUpdateManager
+sun/java2d/d3d/D3DScreenUpdateManager$1$1
+java/awt/EventDispatchThread$HierarchyEventFilter
+sun/awt/windows/WEmbeddedFrame
+sun/awt/dnd/SunDragSourceContextPeer
+sun/java2d/pipe/hw/AccelSurface
+sun/java2d/pipe/BufferedTextPipe
+javax/swing/SystemEventQueueUtilities$SystemEventQueue
+sun/awt/NullComponentPeer
+sun/awt/GlobalCursorManager$NativeUpdater
+java/awt/SentEvent
+java/util/jar/Manifest
+java/io/ByteArrayInputStream
+java/util/jar/Attributes
+java/util/jar/Manifest$FastInputStream
+sun/nio/cs/UTF_8
+sun/nio/cs/UTF_8$Decoder
+sun/nio/cs/Surrogate$Generator
+java/util/jar/Attributes$Name
+sun/misc/ASCIICaseInsensitiveComparator
+java/util/jar/JarVerifier
+java/io/ByteArrayOutputStream
+sun/misc/ExtensionDependency
+java/lang/Package
+sun/security/util/ManifestEntryVerifier
+sun/security/provider/Sun
+java/security/Provider
+java/security/Provider$ServiceKey
+java/security/Provider$EngineDescription
+sun/security/provider/Sun$1
+java/security/Security
+java/security/Security$1
+sun/misc/FloatingDecimal
+sun/misc/FloatingDecimal$1
+java/util/regex/Pattern
+java/util/regex/Pattern$5
+java/util/regex/Pattern$Node
+java/util/regex/Pattern$LastNode
+java/util/regex/Pattern$GroupHead
+java/util/regex/Pattern$GroupTail
+java/util/regex/Pattern$BitClass
+java/util/regex/Pattern$BmpCharProperty
+java/util/regex/Pattern$CharProperty
+java/util/regex/Pattern$Ques
+java/util/regex/Pattern$BranchConn
+java/util/regex/Pattern$Branch
+java/util/regex/Pattern$Single
+java/util/regex/Pattern$CharPropertyNames
+java/util/regex/Pattern$CharPropertyNames$1
+java/util/regex/Pattern$CharPropertyNames$CharPropertyFactory
+java/util/regex/Pattern$CharPropertyNames$2
+java/util/regex/Pattern$CharPropertyNames$5
+java/util/regex/Pattern$CharPropertyNames$3
+java/util/regex/Pattern$CharPropertyNames$6
+java/util/regex/Pattern$CharPropertyNames$CloneableProperty
+java/util/regex/Pattern$CharPropertyNames$4
+java/util/regex/Pattern$CharPropertyNames$7
+java/util/regex/Pattern$CharPropertyNames$8
+java/util/regex/Pattern$CharPropertyNames$9
+java/util/regex/Pattern$CharPropertyNames$10
+java/util/regex/Pattern$CharPropertyNames$11
+java/util/regex/Pattern$CharPropertyNames$12
+java/util/regex/Pattern$CharPropertyNames$13
+java/util/regex/Pattern$CharPropertyNames$14
+java/util/regex/Pattern$CharPropertyNames$15
+java/util/regex/Pattern$CharPropertyNames$16
+java/util/regex/Pattern$CharPropertyNames$17
+java/util/regex/Pattern$CharPropertyNames$18
+java/util/regex/Pattern$CharPropertyNames$19
+java/util/regex/Pattern$CharPropertyNames$20
+java/util/regex/Pattern$CharPropertyNames$21
+java/util/regex/Pattern$Ctype
+java/util/regex/Pattern$Curly
+java/util/regex/Pattern$2
+java/util/regex/Pattern$Slice
+java/util/regex/Pattern$SliceNode
+java/util/regex/Pattern$Begin
+java/util/regex/Pattern$First
+java/util/regex/Pattern$Start
+java/util/regex/Pattern$TreeInfo
+java/lang/StrictMath
+sun/security/provider/NativePRNG
+sun/misc/BASE64Decoder
+sun/misc/CharacterDecoder
+sun/security/util/SignatureFileVerifier
+java/awt/event/KeyAdapter
+java/lang/NumberFormatException
+java/lang/IllegalArgumentException
+java/io/FileWriter
+java/net/Authenticator
+java/net/MalformedURLException
+javax/swing/text/Element
+javax/swing/text/Document
+javax/swing/text/PlainDocument
+javax/swing/text/AbstractDocument
+javax/swing/text/GapContent
+javax/swing/text/AbstractDocument$Content
+javax/swing/text/GapVector
+javax/swing/text/GapContent$MarkVector
+javax/swing/text/GapContent$MarkData
+javax/swing/text/StyleContext
+javax/swing/text/AbstractDocument$AttributeContext
+javax/swing/text/StyleConstants
+javax/swing/text/StyleConstants$CharacterConstants
+javax/swing/text/AttributeSet$CharacterAttribute
+javax/swing/text/StyleConstants$FontConstants
+javax/swing/text/AttributeSet$FontAttribute
+javax/swing/text/StyleConstants$ColorConstants
+javax/swing/text/AttributeSet$ColorAttribute
+javax/swing/text/StyleConstants$ParagraphConstants
+javax/swing/text/AttributeSet$ParagraphAttribute
+javax/swing/text/StyleContext$FontKey
+javax/swing/text/SimpleAttributeSet
+javax/swing/text/MutableAttributeSet
+javax/swing/text/AttributeSet
+javax/swing/text/SimpleAttributeSet$EmptyAttributeSet
+javax/swing/text/StyleContext$NamedStyle
+javax/swing/text/Style
+javax/swing/text/SimpleAttributeSet$1
+javax/swing/text/StyleContext$SmallAttributeSet
+javax/swing/text/AbstractDocument$BidiRootElement
+javax/swing/text/AbstractDocument$BranchElement
+javax/swing/text/AbstractDocument$AbstractElement
+javax/swing/tree/TreeNode
+javax/swing/text/AbstractDocument$1
+javax/swing/text/AbstractDocument$BidiElement
+javax/swing/text/AbstractDocument$LeafElement
+javax/swing/text/GapContent$StickyPosition
+javax/swing/text/Position
+javax/swing/text/StyleContext$KeyEnumeration
+javax/swing/text/GapContent$InsertUndo
+javax/swing/undo/AbstractUndoableEdit
+javax/swing/undo/UndoableEdit
+javax/swing/text/AbstractDocument$DefaultDocumentEvent
+javax/swing/event/DocumentEvent
+javax/swing/undo/CompoundEdit
+javax/swing/event/DocumentEvent$EventType
+javax/swing/text/Segment
+java/text/CharacterIterator
+javax/swing/text/Utilities
+javax/swing/text/SegmentCache
+javax/swing/text/SegmentCache$CachedSegment
+javax/swing/event/UndoableEditEvent
+javax/swing/text/AbstractDocument$ElementEdit
+javax/swing/event/DocumentEvent$ElementChange
+sun/misc/Cleaner
+javax/swing/JMenu
+javax/swing/MenuElement
+javax/swing/JMenuItem
+javax/swing/AbstractButton
+java/awt/ItemSelectable
+javax/swing/event/MenuListener
+javax/swing/JCheckBoxMenuItem
+javax/swing/Icon
+javax/swing/JButton
+java/net/URLClassLoader$2
+javax/swing/ImageIcon
+javax/swing/ImageIcon$1
+javax/swing/ImageIcon$2
+java/awt/MediaTracker
+sun/misc/SoftCache$ValueCell
+sun/awt/image/URLImageSource
+sun/awt/image/InputStreamImageSource
+sun/awt/image/ImageFetchable
+sun/awt/image/ToolkitImage
+sun/awt/image/NativeLibLoader
+javax/swing/ImageIcon$3
+java/awt/ImageMediaEntry
+java/awt/MediaEntry
+sun/awt/image/ImageRepresentation
+java/awt/image/ImageConsumer
+sun/awt/image/ImageWatched
+sun/awt/image/ImageWatched$Link
+sun/awt/image/ImageWatched$WeakLink
+sun/awt/image/ImageConsumerQueue
+sun/awt/image/ImageFetcher
+sun/awt/image/FetcherInfo
+sun/awt/image/ImageFetcher$1
+sun/awt/image/GifImageDecoder
+sun/awt/image/ImageDecoder
+sun/awt/image/GifFrame
+java/awt/image/Raster
+java/awt/image/DataBufferByte
+java/awt/image/DataBuffer
+java/awt/image/PixelInterleavedSampleModel
+java/awt/image/ComponentSampleModel
+java/awt/image/SampleModel
+sun/awt/image/ByteInterleavedRaster
+sun/awt/image/ByteComponentRaster
+sun/awt/image/SunWritableRaster
+java/awt/image/WritableRaster
+sun/awt/image/IntegerComponentRaster
+sun/awt/image/BytePackedRaster
+java/awt/Canvas
+sun/font/FontDesignMetrics
+sun/font/FontStrikeDesc
+sun/font/CompositeStrike
+sun/font/FontStrikeDisposer
+sun/font/StrikeCache$SoftDisposerRef
+sun/font/StrikeCache$DisposableStrike
+sun/font/TrueTypeFont$TTDisposerRecord
+sun/font/TrueTypeFont$1
+java/io/RandomAccessFile
+sun/nio/ch/FileChannelImpl
+java/nio/channels/FileChannel
+java/nio/channels/ByteChannel
+java/nio/channels/ReadableByteChannel
+java/nio/channels/Channel
+java/nio/channels/WritableByteChannel
+java/nio/channels/GatheringByteChannel
+java/nio/channels/ScatteringByteChannel
+java/nio/channels/spi/AbstractInterruptibleChannel
+java/nio/channels/InterruptibleChannel
+sun/nio/ch/Util
+sun/nio/ch/IOUtil
+sun/nio/ch/FileDispatcher
+sun/nio/ch/NativeDispatcher
+sun/nio/ch/Reflect
+java/nio/MappedByteBuffer
+sun/nio/ch/Reflect$1
+sun/nio/ch/NativeThreadSet
+java/nio/channels/spi/AbstractInterruptibleChannel$1
+sun/nio/ch/Interruptible
+sun/nio/ch/NativeThread
+sun/nio/ch/IOStatus
+sun/nio/ch/DirectBuffer
+java/nio/DirectByteBuffer
+java/nio/DirectByteBuffer$Deallocator
+java/nio/ByteBufferAsIntBufferB
+java/nio/IntBuffer
+sun/font/TrueTypeFont$DirectoryEntry
+java/nio/ByteBufferAsShortBufferB
+java/nio/ShortBuffer
+sun/nio/cs/UTF_16
+sun/nio/cs/UTF_16$Decoder
+sun/font/FileFontStrike
+sun/font/FileFont$FileFontDisposer
+sun/font/TrueTypeGlyphMapper
+sun/font/CMap
+sun/font/CMap$NullCMapClass
+sun/font/CMap$CMapFormat4
+java/nio/ByteBufferAsCharBufferB
+sun/font/FontDesignMetrics$KeyReference
+sun/awt/image/PNGImageDecoder
+sun/awt/image/PNGFilterInputStream
+java/util/zip/InflaterInputStream
+java/util/zip/Inflater
+java/awt/dnd/peer/DragSourceContextPeer
+javax/swing/Popup$HeavyWeightWindow
+sun/awt/ModalExclude
+javax/swing/JWindow
+com/sun/java/swing/plaf/windows/WindowsPopupWindow
+sun/awt/GlobalCursorManager
+sun/java2d/d3d/D3DSurfaceData$1Status
+sun/java2d/d3d/D3DSurfaceData$1
+sun/java2d/loops/SetDrawLineANY
+sun/java2d/loops/SetFillRectANY
+sun/java2d/loops/SetDrawRectANY
+sun/java2d/loops/SetDrawPolygonsANY
+sun/java2d/loops/SetDrawPathANY
+sun/java2d/loops/SetFillPathANY
+sun/java2d/loops/SetFillSpansANY
+sun/java2d/loops/DrawGlyphList$General
+sun/java2d/loops/DrawGlyphListAA$General
+sun/java2d/pipe/BufferedPaints
+sun/java2d/d3d/D3DScreenUpdateManager$3
+java/awt/image/DataBufferInt
+java/awt/image/SinglePixelPackedSampleModel
+sun/awt/image/IntegerInterleavedRaster
+sun/awt/image/OffScreenImage
+sun/java2d/SurfaceManagerFactory
+sun/java2d/d3d/D3DCachingSurfaceManager
+sun/awt/image/CachingSurfaceManager
+sun/awt/image/RasterListener
+sun/awt/image/BufImgSurfaceData
+sun/font/CompositeGlyphMapper
+sun/java2d/loops/FontInfo
+java/util/Date
+sun/util/calendar/CalendarSystem
+sun/util/calendar/Gregorian
+sun/util/calendar/BaseCalendar
+sun/util/calendar/AbstractCalendar
+java/util/TimeZone
+java/lang/InheritableThreadLocal
+sun/util/calendar/ZoneInfo
+sun/util/calendar/ZoneInfoFile
+sun/util/calendar/ZoneInfoFile$1
+java/util/TimeZone$1
+sun/util/calendar/Gregorian$Date
+sun/util/calendar/BaseCalendar$Date
+sun/util/calendar/CalendarDate
+sun/util/calendar/CalendarUtils
+java/util/TimeZone$DisplayNames
+sun/util/TimeZoneNameUtility
+sun/util/resources/LocaleData
+sun/util/resources/LocaleData$1
+sun/util/resources/LocaleData$LocaleDataResourceBundleControl
+sun/util/LocaleDataMetaInfo
+sun/util/resources/TimeZoneNames
+sun/util/resources/TimeZoneNamesBundle
+sun/util/resources/OpenListResourceBundle
+java/util/ResourceBundle$BundleReference
+sun/util/resources/TimeZoneNames_en
+java/util/spi/TimeZoneNameProvider
+java/util/spi/LocaleServiceProvider
+sun/util/LocaleServiceProviderPool
+sun/util/LocaleServiceProviderPool$1
+java/util/ServiceLoader
+java/util/ServiceLoader$LazyIterator
+java/util/ServiceLoader$1
+java/util/LinkedHashMap$EntryIterator
+java/net/ServerSocket
+java/net/InetAddress
+java/net/InetAddress$Cache
+java/net/InetAddress$Cache$Type
+java/net/InetAddressImplFactory
+java/net/Inet4AddressImpl
+java/net/InetAddressImpl
+java/net/InetAddress$1
+sun/net/spi/nameservice/NameService
+sun/net/util/IPAddressUtil
+java/util/regex/Matcher
+java/util/regex/MatchResult
+java/util/RandomAccessSubList
+java/util/SubList
+java/util/SubList$1
+java/util/AbstractList$ListItr
+java/net/Inet4Address
+java/net/SocksSocketImpl
+java/net/SocksConsts
+java/net/PlainSocketImpl
+java/net/SocketImpl
+java/net/SocketOptions
+java/net/InetSocketAddress
+java/net/SocketAddress
+java/util/Random
+java/util/concurrent/atomic/AtomicLong
+java/lang/InternalError
+java/io/StringReader
+java/io/FilterReader
+java/lang/reflect/Proxy
+java/lang/reflect/InvocationHandler
+java/lang/NoSuchFieldException
+java/lang/InstantiationException
+java/lang/ArrayIndexOutOfBoundsException
+java/lang/IndexOutOfBoundsException
+javax/swing/JDialog
+java/io/EOFException
+java/util/Vector$1
+javax/swing/filechooser/FileSystemView
+javax/swing/filechooser/FileSystemView$1
+javax/swing/event/SwingPropertyChangeSupport
+javax/swing/filechooser/WindowsFileSystemView
+java/util/zip/ZipFile$1
+java/util/zip/ZipFile$2
+java/util/jar/JarFile$1
+java/util/PropertyResourceBundle
+java/util/ResourceBundle$Control$1
+java/util/Hashtable$EntrySet
+java/util/Collections$SynchronizedSet
+java/lang/IllegalAccessError
+java/text/MessageFormat
+java/text/Format
+java/text/FieldPosition
+java/text/MessageFormat$Field
+java/text/Format$Field
+java/lang/CloneNotSupportedException
+sun/reflect/BootstrapConstructorAccessorImpl
+java/awt/event/ActionListener
+javax/swing/Timer
+javax/swing/Timer$DoPostEvent
+javax/swing/TimerQueue
+javax/swing/TimerQueue$1
+javax/swing/ToolTipManager
+java/awt/event/MouseAdapter
+javax/swing/ToolTipManager$insideTimerAction
+javax/swing/ToolTipManager$outsideTimerAction
+javax/swing/ToolTipManager$stillInsideTimerAction
+javax/swing/ToolTipManager$Actions
+sun/swing/UIAction
+javax/swing/Action
+javax/swing/ToolTipManager$MoveBeforeEnterListener
+java/awt/event/MouseMotionAdapter
+java/util/Hashtable$ValueCollection
+javax/swing/event/CaretListener
+javax/swing/JToolBar
+javax/swing/JSplitPane
+javax/swing/border/Border
+javax/swing/JToggleButton
+javax/swing/border/EmptyBorder
+javax/swing/border/AbstractBorder
+javax/swing/DefaultButtonModel
+javax/swing/ButtonModel
+javax/swing/AbstractButton$Handler
+javax/swing/event/ChangeListener
+java/awt/event/ItemListener
+javax/swing/plaf/metal/MetalButtonUI
+javax/swing/plaf/basic/BasicButtonUI
+javax/swing/plaf/ButtonUI
+javax/swing/plaf/metal/MetalBorders
+javax/swing/plaf/BorderUIResource$CompoundBorderUIResource
+javax/swing/border/CompoundBorder
+javax/swing/plaf/metal/MetalBorders$ButtonBorder
+javax/swing/plaf/basic/BasicBorders$MarginBorder
+javax/swing/plaf/basic/BasicButtonListener
+java/awt/AWTEventMulticaster
+java/awt/event/AdjustmentListener
+java/awt/event/TextListener
+javax/swing/event/AncestorListener
+java/beans/VetoableChangeListener
+javax/swing/ButtonGroup
+javax/swing/JToggleButton$ToggleButtonModel
+javax/swing/plaf/metal/MetalToggleButtonUI
+javax/swing/plaf/basic/BasicToggleButtonUI
+javax/swing/plaf/metal/MetalBorders$ToggleButtonBorder
+java/awt/CardLayout
+javax/swing/Box
+javax/swing/plaf/metal/MetalBorders$TextFieldBorder
+javax/swing/plaf/metal/MetalBorders$Flush3DBorder
+javax/swing/BoxLayout
+javax/swing/JMenuBar
+javax/swing/DefaultSingleSelectionModel
+javax/swing/SingleSelectionModel
+javax/swing/plaf/basic/BasicMenuBarUI
+javax/swing/plaf/MenuBarUI
+javax/swing/plaf/basic/DefaultMenuLayout
+javax/swing/plaf/metal/MetalBorders$MenuBarBorder
+javax/swing/plaf/basic/BasicMenuBarUI$Handler
+javax/swing/KeyboardManager
+javax/swing/event/MenuEvent
+javax/swing/JMenu$MenuChangeListener
+javax/swing/JMenuItem$MenuItemFocusListener
+javax/swing/plaf/basic/BasicMenuUI
+javax/swing/plaf/basic/BasicMenuItemUI
+javax/swing/plaf/MenuItemUI
+javax/swing/plaf/metal/MetalBorders$MenuItemBorder
+javax/swing/plaf/metal/MetalIconFactory
+javax/swing/plaf/metal/MetalIconFactory$MenuArrowIcon
+javax/swing/plaf/basic/BasicMenuUI$Handler
+javax/swing/event/MenuKeyListener
+javax/swing/plaf/basic/BasicMenuItemUI$Handler
+javax/swing/event/MenuDragMouseListener
+javax/swing/event/MouseInputListener
+javax/swing/event/ChangeEvent
+java/awt/event/ContainerEvent
+javax/swing/plaf/metal/MetalIconFactory$MenuItemArrowIcon
+javax/swing/JPopupMenu
+javax/swing/plaf/basic/BasicPopupMenuUI
+javax/swing/plaf/PopupMenuUI
+javax/swing/plaf/basic/BasicLookAndFeel$AWTEventHelper
+java/awt/event/AWTEventListenerProxy
+java/awt/Toolkit$SelectiveAWTEventListener
+java/awt/Toolkit$ToolkitEventMulticaster
+javax/swing/plaf/basic/BasicLookAndFeel$1
+javax/swing/plaf/metal/MetalBorders$PopupMenuBorder
+javax/swing/plaf/basic/BasicPopupMenuUI$BasicPopupMenuListener
+javax/swing/event/PopupMenuListener
+javax/swing/plaf/basic/BasicPopupMenuUI$BasicMenuKeyListener
+javax/swing/plaf/basic/BasicPopupMenuUI$MouseGrabber
+javax/swing/MenuSelectionManager
+javax/swing/plaf/basic/BasicPopupMenuUI$MenuKeyboardHelper
+javax/swing/plaf/basic/BasicPopupMenuUI$MenuKeyboardHelper$1
+java/awt/event/FocusAdapter
+javax/swing/JMenu$WinListener
+java/awt/event/WindowAdapter
+javax/swing/JPopupMenu$Separator
+javax/swing/JSeparator
+javax/swing/plaf/metal/MetalPopupMenuSeparatorUI
+javax/swing/plaf/metal/MetalSeparatorUI
+javax/swing/plaf/basic/BasicSeparatorUI
+javax/swing/plaf/SeparatorUI
+javax/swing/JComboBox
+javax/swing/event/ListDataListener
+javax/swing/event/CaretEvent
+javax/swing/text/TabExpander
+javax/swing/JScrollBar
+java/awt/Adjustable
+javax/swing/event/MouseInputAdapter
+javax/swing/JScrollBar$ModelListener
+javax/swing/DefaultBoundedRangeModel
+javax/swing/BoundedRangeModel
+javax/swing/plaf/metal/MetalScrollBarUI
+javax/swing/plaf/basic/BasicScrollBarUI
+javax/swing/plaf/ScrollBarUI
+javax/swing/plaf/metal/MetalBumps
+javax/swing/plaf/metal/MetalScrollButton
+javax/swing/plaf/basic/BasicArrowButton
+javax/swing/plaf/basic/BasicScrollBarUI$TrackListener
+javax/swing/plaf/basic/BasicScrollBarUI$ArrowButtonListener
+javax/swing/plaf/basic/BasicScrollBarUI$ModelListener
+javax/swing/plaf/metal/MetalScrollBarUI$ScrollBarListener
+javax/swing/plaf/basic/BasicScrollBarUI$PropertyChangeHandler
+javax/swing/plaf/basic/BasicScrollBarUI$Handler
+javax/swing/plaf/basic/BasicScrollBarUI$ScrollListener
+javax/swing/CellRendererPane
+javax/swing/border/MatteBorder
+sun/font/StandardGlyphVector
+java/awt/font/GlyphVector
+sun/font/StandardGlyphVector$GlyphStrike
+sun/font/CoreMetrics
+sun/font/FontLineMetrics
+java/awt/font/LineMetrics
+javax/swing/ComboBoxModel
+javax/swing/ListModel
+javax/swing/ListCellRenderer
+javax/swing/DefaultComboBoxModel
+javax/swing/MutableComboBoxModel
+javax/swing/AbstractListModel
+javax/swing/JComboBox$1
+javax/swing/AncestorNotifier
+javax/swing/plaf/metal/MetalComboBoxUI
+javax/swing/plaf/basic/BasicComboBoxUI
+javax/swing/plaf/ComboBoxUI
+javax/swing/plaf/metal/MetalComboBoxUI$MetalComboBoxLayoutManager
+javax/swing/plaf/basic/BasicComboBoxUI$ComboBoxLayoutManager
+javax/swing/plaf/basic/BasicComboPopup
+javax/swing/plaf/basic/ComboPopup
+javax/swing/plaf/basic/BasicComboPopup$EmptyListModelClass
+javax/swing/border/LineBorder
+javax/swing/plaf/basic/BasicComboPopup$1
+javax/swing/JList
+javax/swing/DropMode
+javax/swing/DefaultListSelectionModel
+javax/swing/ListSelectionModel
+javax/swing/plaf/basic/BasicListUI
+javax/swing/plaf/ListUI
+javax/swing/plaf/basic/BasicListUI$ListTransferHandler
+javax/swing/TransferHandler
+javax/swing/TransferHandler$TransferAction
+javax/swing/DefaultListCellRenderer$UIResource
+javax/swing/DefaultListCellRenderer
+javax/swing/TransferHandler$SwingDropTarget
+java/awt/dnd/DropTargetContext
+java/awt/datatransfer/SystemFlavorMap
+java/awt/datatransfer/FlavorMap
+java/awt/datatransfer/FlavorTable
+javax/swing/TransferHandler$DropHandler
+javax/swing/TransferHandler$TransferSupport
+javax/swing/plaf/basic/BasicListUI$Handler
+javax/swing/event/ListSelectionListener
+javax/swing/plaf/basic/DragRecognitionSupport$BeforeDrag
+javax/swing/plaf/basic/BasicComboPopup$Handler
+javax/swing/JScrollPane
+javax/swing/ScrollPaneConstants
+javax/swing/ScrollPaneLayout$UIResource
+javax/swing/ScrollPaneLayout
+javax/swing/JViewport
+javax/swing/ViewportLayout
+javax/swing/plaf/basic/BasicViewportUI
+javax/swing/plaf/ViewportUI
+javax/swing/JScrollPane$ScrollBar
+javax/swing/JViewport$ViewListener
+java/awt/event/ComponentAdapter
+javax/swing/plaf/metal/MetalScrollPaneUI
+javax/swing/plaf/basic/BasicScrollPaneUI
+javax/swing/plaf/ScrollPaneUI
+javax/swing/plaf/metal/MetalBorders$ScrollPaneBorder
+javax/swing/plaf/basic/BasicScrollPaneUI$Handler
+javax/swing/plaf/metal/MetalScrollPaneUI$1
+javax/swing/plaf/basic/BasicComboBoxRenderer$UIResource
+javax/swing/plaf/basic/BasicComboBoxRenderer
+javax/swing/plaf/metal/MetalComboBoxEditor$UIResource
+javax/swing/plaf/metal/MetalComboBoxEditor
+javax/swing/plaf/basic/BasicComboBoxEditor
+javax/swing/ComboBoxEditor
+javax/swing/plaf/basic/BasicComboBoxEditor$BorderlessTextField
+javax/swing/JTextField$NotifyAction
+javax/swing/text/TextAction
+javax/swing/AbstractAction
+javax/swing/text/JTextComponent$MutableCaretEvent
+javax/swing/plaf/metal/MetalTextFieldUI
+javax/swing/plaf/basic/BasicTextFieldUI
+javax/swing/plaf/basic/BasicTextUI
+javax/swing/text/ViewFactory
+javax/swing/plaf/TextUI
+javax/swing/plaf/basic/BasicTextUI$BasicCursor
+javax/swing/text/DefaultEditorKit
+javax/swing/text/EditorKit
+javax/swing/text/DefaultEditorKit$InsertContentAction
+javax/swing/text/DefaultEditorKit$DeletePrevCharAction
+javax/swing/text/DefaultEditorKit$DeleteNextCharAction
+javax/swing/text/DefaultEditorKit$ReadOnlyAction
+javax/swing/text/DefaultEditorKit$DeleteWordAction
+javax/swing/text/DefaultEditorKit$WritableAction
+javax/swing/text/DefaultEditorKit$CutAction
+javax/swing/text/DefaultEditorKit$CopyAction
+javax/swing/text/DefaultEditorKit$PasteAction
+javax/swing/text/DefaultEditorKit$VerticalPageAction
+javax/swing/text/DefaultEditorKit$PageAction
+javax/swing/text/DefaultEditorKit$InsertBreakAction
+javax/swing/text/DefaultEditorKit$BeepAction
+javax/swing/text/DefaultEditorKit$NextVisualPositionAction
+javax/swing/text/DefaultEditorKit$BeginWordAction
+javax/swing/text/DefaultEditorKit$EndWordAction
+javax/swing/text/DefaultEditorKit$PreviousWordAction
+javax/swing/text/DefaultEditorKit$NextWordAction
+javax/swing/text/DefaultEditorKit$BeginLineAction
+javax/swing/text/DefaultEditorKit$EndLineAction
+javax/swing/text/DefaultEditorKit$BeginParagraphAction
+javax/swing/text/DefaultEditorKit$EndParagraphAction
+javax/swing/text/DefaultEditorKit$BeginAction
+javax/swing/text/DefaultEditorKit$EndAction
+javax/swing/text/DefaultEditorKit$DefaultKeyTypedAction
+javax/swing/text/DefaultEditorKit$InsertTabAction
+javax/swing/text/DefaultEditorKit$SelectWordAction
+javax/swing/text/DefaultEditorKit$SelectLineAction
+javax/swing/text/DefaultEditorKit$SelectParagraphAction
+javax/swing/text/DefaultEditorKit$SelectAllAction
+javax/swing/text/DefaultEditorKit$UnselectAction
+javax/swing/text/DefaultEditorKit$ToggleComponentOrientationAction
+javax/swing/text/DefaultEditorKit$DumpModelAction
+javax/swing/plaf/basic/BasicTextUI$TextTransferHandler
+javax/swing/text/Position$Bias
+javax/swing/plaf/basic/BasicTextUI$RootView
+javax/swing/text/View
+javax/swing/plaf/basic/BasicTextUI$UpdateHandler
+javax/swing/event/DocumentListener
+javax/swing/plaf/basic/BasicTextUI$DragListener
+javax/swing/plaf/basic/BasicComboBoxEditor$UIResource
+javax/swing/plaf/basic/BasicTextUI$BasicCaret
+javax/swing/text/DefaultCaret
+javax/swing/text/Caret
+javax/swing/text/DefaultCaret$Handler
+java/awt/datatransfer/ClipboardOwner
+javax/swing/plaf/basic/BasicTextUI$BasicHighlighter
+javax/swing/text/DefaultHighlighter
+javax/swing/text/LayeredHighlighter
+javax/swing/text/Highlighter
+javax/swing/text/Highlighter$Highlight
+javax/swing/text/DefaultHighlighter$DefaultHighlightPainter
+javax/swing/text/LayeredHighlighter$LayerPainter
+javax/swing/text/Highlighter$HighlightPainter
+javax/swing/text/DefaultHighlighter$SafeDamager
+sun/swing/plaf/synth/SynthUI
+javax/swing/plaf/synth/SynthConstants
+javax/swing/text/FieldView
+javax/swing/text/PlainView
+javax/swing/text/JTextComponent$DefaultKeymap
+javax/swing/text/Keymap
+javax/swing/text/JTextComponent$KeymapWrapper
+javax/swing/text/JTextComponent$KeymapActionMap
+javax/swing/plaf/basic/BasicTextUI$FocusAction
+javax/swing/plaf/basic/BasicTextUI$TextActionWrapper
+javax/swing/JTextArea
+javax/swing/JEditorPane
+javax/swing/JTextField$ScrollRepainter
+javax/swing/plaf/metal/MetalComboBoxEditor$1
+javax/swing/plaf/metal/MetalComboBoxEditor$EditorBorder
+javax/swing/plaf/metal/MetalComboBoxUI$MetalPropertyChangeListener
+javax/swing/plaf/basic/BasicComboBoxUI$PropertyChangeHandler
+javax/swing/plaf/basic/BasicComboBoxUI$Handler
+javax/swing/plaf/metal/MetalComboBoxButton
+javax/swing/plaf/metal/MetalComboBoxIcon
+javax/swing/plaf/metal/MetalComboBoxButton$1
+javax/swing/plaf/basic/BasicComboBoxUI$DefaultKeySelectionManager
+javax/swing/JComboBox$KeySelectionManager
+javax/swing/JToolBar$DefaultToolBarLayout
+javax/swing/plaf/metal/MetalToolBarUI
+javax/swing/plaf/basic/BasicToolBarUI
+javax/swing/plaf/ToolBarUI
+javax/swing/plaf/metal/MetalBorders$ToolBarBorder
+javax/swing/plaf/metal/MetalLookAndFeel$MetalLazyValue$1
+javax/swing/plaf/metal/MetalBorders$RolloverButtonBorder
+javax/swing/plaf/metal/MetalBorders$RolloverMarginBorder
+javax/swing/plaf/basic/BasicBorders$RadioButtonBorder
+javax/swing/plaf/basic/BasicBorders$ButtonBorder
+javax/swing/plaf/basic/BasicBorders$RolloverMarginBorder
+javax/swing/plaf/metal/MetalToolBarUI$MetalDockingListener
+javax/swing/plaf/basic/BasicToolBarUI$DockingListener
+javax/swing/plaf/basic/BasicToolBarUI$Handler
+javax/swing/border/EtchedBorder
+javax/swing/JToolBar$Separator
+javax/swing/plaf/basic/BasicToolBarSeparatorUI
+sun/font/FontDesignMetrics$MetricsKey
+java/applet/Applet
+java/awt/Panel
+javax/swing/KeyboardManager$ComponentKeyStrokePair
+sun/awt/im/InputMethodContext
+java/awt/im/spi/InputMethodContext
+sun/awt/im/InputContext
+sun/awt/windows/WInputMethod
+sun/awt/im/InputMethodAdapter
+java/awt/im/spi/InputMethod
+java/util/Collections$UnmodifiableMap
+javax/swing/SizeRequirements
+javax/swing/plaf/basic/BasicGraphicsUtils
+java/awt/event/AdjustmentEvent
+java/awt/MenuBar
+java/awt/LightweightDispatcher$2
+java/io/StringWriter
+java/io/UnsupportedEncodingException
+java/lang/StringCoding$StringEncoder
+java/net/UnknownHostException
+java/net/Socket
+java/nio/channels/SocketChannel
+java/nio/channels/spi/AbstractSelectableChannel
+java/nio/channels/SelectableChannel
+java/net/SocketException
+java/net/SocketImplFactory
+java/net/Proxy
+java/net/SocksSocketImpl$5
+java/net/ProxySelector
+sun/net/spi/DefaultProxySelector
+sun/net/spi/DefaultProxySelector$1
+sun/net/NetProperties
+sun/net/NetProperties$1
+sun/net/spi/DefaultProxySelector$NonProxyInfo
+java/util/regex/ASCII
+java/util/regex/Pattern$GroupCurly
+java/net/Inet6Address
+java/net/URI
+java/net/URI$Parser
+java/net/Proxy$Type
+java/net/SocketTimeoutException
+java/io/InterruptedIOException
+javax/swing/UnsupportedLookAndFeelException
+java/lang/UnsatisfiedLinkError
+javax/swing/Box$Filler
+javax/swing/JComponent$2
+sun/net/ProgressMonitor
+sun/net/DefaultProgressMeteringPolicy
+sun/net/ProgressMeteringPolicy
+sun/net/www/MimeTable
+java/net/FileNameMap
+sun/net/www/MimeTable$1
+sun/net/www/MimeTable$2
+sun/net/www/MimeEntry
+java/net/URLConnection$1
+java/text/SimpleDateFormat
+java/text/DateFormat
+java/text/DateFormat$Field
+java/util/Calendar
+java/util/GregorianCalendar
+sun/util/resources/CalendarData
+sun/util/resources/LocaleNamesBundle
+sun/util/resources/CalendarData_en
+java/text/DateFormatSymbols
+java/text/spi/DateFormatSymbolsProvider
+sun/text/resources/FormatData
+sun/text/resources/FormatData_en
+sun/text/resources/FormatData_en_US
+java/text/NumberFormat
+java/text/spi/NumberFormatProvider
+java/text/DecimalFormatSymbols
+java/text/spi/DecimalFormatSymbolsProvider
+java/util/Currency
+java/util/Currency$1
+java/util/CurrencyData
+java/util/spi/CurrencyNameProvider
+sun/util/resources/CurrencyNames
+sun/util/resources/CurrencyNames_en_US
+java/text/DecimalFormat
+java/text/DigitList
+java/math/RoundingMode
+java/text/DontCareFieldPosition
+java/text/DontCareFieldPosition$1
+java/text/Format$FieldDelegate
+javax/swing/plaf/BorderUIResource
+javax/swing/BorderFactory
+javax/swing/border/BevelBorder
+javax/swing/plaf/metal/MetalIconFactory$TreeFolderIcon
+javax/swing/plaf/metal/MetalIconFactory$FolderIcon16
+java/awt/TrayIcon
+java/awt/EventDispatchThread$StopDispatchEvent
+java/util/zip/ZipInputStream
+java/io/PushbackInputStream
+java/util/zip/CRC32
+java/util/zip/Checksum
+java/lang/Thread$State
+javax/swing/SwingUtilities$SharedOwnerFrame
+javax/swing/JTable
+javax/swing/event/TableModelListener
+javax/swing/event/TableColumnModelListener
+javax/swing/event/CellEditorListener
+javax/swing/event/RowSorterListener
+com/sun/awt/AWTUtilities$Translucency
+com/sun/awt/AWTUtilities$1
+java/lang/ClassFormatError
+java/awt/GraphicsCallback$PaintCallback
+sun/awt/SunGraphicsCallback
+java/awt/Component$ProxyCapabilities
+sun/java2d/pipe/hw/ExtendedBufferCapabilities
+java/awt/BufferCapabilities$FlipContents
+java/awt/AttributeValue
+sun/awt/SubRegionShowable
+sun/print/PrinterGraphicsConfig
+sun/java2d/opengl/WGLGraphicsConfig
+sun/java2d/opengl/OGLGraphicsConfig
+javax/swing/JTabbedPane
+javax/swing/JTabbedPane$ModelListener
+javax/swing/plaf/metal/MetalTabbedPaneUI
+javax/swing/plaf/basic/BasicTabbedPaneUI
+javax/swing/plaf/TabbedPaneUI
+javax/swing/plaf/metal/MetalTabbedPaneUI$TabbedPaneLayout
+javax/swing/plaf/basic/BasicTabbedPaneUI$TabbedPaneLayout
+javax/swing/plaf/basic/BasicTabbedPaneUI$TabbedPaneScrollLayout
+javax/swing/plaf/basic/BasicTabbedPaneUI$Handler
+sun/swing/ImageIconUIResource
+javax/swing/GrayFilter
+java/awt/image/RGBImageFilter
+java/awt/image/ImageFilter
+java/awt/image/FilteredImageSource
+org/w3c/dom/Node
+org/xml/sax/SAXException
+javax/xml/parsers/ParserConfigurationException
+org/xml/sax/EntityResolver
+java/security/NoSuchAlgorithmException
+java/security/GeneralSecurityException
+java/util/zip/GZIPInputStream
+java/util/zip/DeflaterOutputStream
+org/xml/sax/InputSource
+javax/xml/parsers/DocumentBuilderFactory
+javax/xml/parsers/FactoryFinder
+javax/xml/parsers/SecuritySupport
+javax/xml/parsers/SecuritySupport$2
+javax/xml/parsers/SecuritySupport$5
+javax/xml/parsers/SecuritySupport$1
+javax/xml/parsers/SecuritySupport$4
+javax/xml/parsers/DocumentBuilder
+org/xml/sax/helpers/DefaultHandler
+org/xml/sax/DTDHandler
+org/xml/sax/ContentHandler
+org/xml/sax/ErrorHandler
+org/w3c/dom/Document
+org/xml/sax/SAXNotSupportedException
+org/xml/sax/Locator
+org/xml/sax/SAXNotRecognizedException
+org/xml/sax/SAXParseException
+org/w3c/dom/NodeList
+org/w3c/dom/events/EventTarget
+org/w3c/dom/traversal/DocumentTraversal
+org/w3c/dom/events/DocumentEvent
+org/w3c/dom/ranges/DocumentRange
+org/w3c/dom/Entity
+org/w3c/dom/Element
+org/w3c/dom/CharacterData
+org/w3c/dom/CDATASection
+org/w3c/dom/Text
+org/xml/sax/AttributeList
+org/w3c/dom/DOMException
+org/w3c/dom/Notation
+org/w3c/dom/DocumentType
+org/w3c/dom/Attr
+org/w3c/dom/EntityReference
+org/w3c/dom/ProcessingInstruction
+org/w3c/dom/DocumentFragment
+org/w3c/dom/Comment
+org/w3c/dom/events/Event
+org/w3c/dom/events/MutationEvent
+org/w3c/dom/traversal/TreeWalker
+org/w3c/dom/ranges/Range
+org/w3c/dom/traversal/NodeIterator
+org/w3c/dom/events/EventException
+org/w3c/dom/NamedNodeMap
+java/lang/StringIndexOutOfBoundsException
+java/awt/GridLayout
+javax/swing/plaf/metal/MetalRadioButtonUI
+javax/swing/plaf/basic/BasicRadioButtonUI
+javax/swing/plaf/basic/BasicBorders
+javax/swing/plaf/metal/MetalIconFactory$RadioButtonIcon
+java/awt/event/ItemEvent
+java/awt/CardLayout$Card
+javax/swing/JCheckBox
+javax/swing/event/ListSelectionEvent
+javax/swing/plaf/metal/MetalCheckBoxUI
+javax/swing/plaf/metal/MetalIconFactory$CheckBoxIcon
+java/lang/ExceptionInInitializerError
+com/sun/java/swing/plaf/windows/WindowsTabbedPaneUI
+javax/swing/JProgressBar
+javax/swing/JProgressBar$ModelListener
+javax/swing/plaf/metal/MetalProgressBarUI
+javax/swing/plaf/basic/BasicProgressBarUI
+javax/swing/plaf/ProgressBarUI
+javax/swing/plaf/BorderUIResource$LineBorderUIResource
+javax/swing/plaf/basic/BasicProgressBarUI$Handler
+javax/swing/tree/TreeModel
+javax/swing/table/TableCellRenderer
+javax/swing/table/JTableHeader
+javax/swing/event/TreeExpansionListener
+javax/swing/table/AbstractTableModel
+javax/swing/table/TableModel
+javax/swing/table/DefaultTableCellRenderer
+javax/swing/JTree
+javax/swing/tree/TreeSelectionModel
+javax/swing/tree/DefaultTreeCellRenderer
+javax/swing/tree/TreeCellRenderer
+javax/swing/table/TableCellEditor
+javax/swing/CellEditor
+javax/swing/JToolTip
+javax/swing/table/TableColumn
+javax/swing/table/DefaultTableColumnModel
+javax/swing/table/TableColumnModel
+javax/swing/table/DefaultTableModel
+javax/swing/event/TableModelEvent
+sun/swing/table/DefaultTableCellHeaderRenderer
+sun/swing/table/DefaultTableCellHeaderRenderer$EmptyIcon
+javax/swing/plaf/basic/BasicTableHeaderUI
+javax/swing/plaf/TableHeaderUI
+javax/swing/plaf/basic/BasicTableHeaderUI$1
+javax/swing/plaf/basic/BasicTableHeaderUI$MouseInputHandler
+javax/swing/DefaultCellEditor
+javax/swing/tree/TreeCellEditor
+javax/swing/AbstractCellEditor
+javax/swing/plaf/basic/BasicTableUI
+javax/swing/plaf/TableUI
+javax/swing/plaf/basic/BasicTableUI$TableTransferHandler
+javax/swing/plaf/basic/BasicTableUI$Handler
+javax/swing/tree/DefaultTreeSelectionModel
+javax/swing/tree/TreePath
+javax/swing/plaf/metal/MetalTreeUI
+javax/swing/plaf/basic/BasicTreeUI
+javax/swing/plaf/TreeUI
+javax/swing/plaf/basic/BasicTreeUI$Actions
+javax/swing/plaf/basic/BasicTreeUI$TreeTransferHandler
+javax/swing/plaf/metal/MetalTreeUI$LineListener
+javax/swing/plaf/basic/BasicTreeUI$Handler
+javax/swing/event/TreeModelListener
+javax/swing/event/TreeSelectionListener
+javax/swing/tree/VariableHeightLayoutCache
+javax/swing/tree/AbstractLayoutCache
+javax/swing/tree/RowMapper
+javax/swing/plaf/basic/BasicTreeUI$NodeDimensionsHandler
+javax/swing/tree/AbstractLayoutCache$NodeDimensions
+javax/swing/JTree$TreeModelHandler
+javax/swing/tree/VariableHeightLayoutCache$TreeStateNode
+javax/swing/tree/DefaultMutableTreeNode
+javax/swing/tree/MutableTreeNode
+javax/swing/tree/DefaultMutableTreeNode$1
+javax/swing/tree/DefaultMutableTreeNode$PreorderEnumeration
+javax/swing/event/TableColumnModelEvent
+java/text/ParseException
+java/text/NumberFormat$Field
+javax/swing/event/UndoableEditListener
+javax/swing/filechooser/FileFilter
+javax/swing/tree/DefaultTreeModel
+javax/swing/tree/DefaultTreeCellEditor
+javax/swing/tree/DefaultTreeCellEditor$1
+javax/swing/tree/DefaultTreeCellEditor$DefaultTextField
+javax/swing/DefaultCellEditor$1
+javax/swing/DefaultCellEditor$EditorDelegate
+javax/swing/tree/DefaultTreeCellEditor$EditorContainer
+javax/swing/JTree$TreeSelectionRedirector
+javax/swing/event/TreeModelEvent
+javax/swing/plaf/metal/MetalSplitPaneUI
+javax/swing/plaf/basic/BasicSplitPaneUI
+javax/swing/plaf/SplitPaneUI
+javax/swing/plaf/basic/BasicSplitPaneDivider
+javax/swing/plaf/basic/BasicBorders$SplitPaneBorder
+javax/swing/plaf/metal/MetalSplitPaneDivider
+javax/swing/plaf/basic/BasicSplitPaneDivider$DividerLayout
+javax/swing/plaf/basic/BasicSplitPaneDivider$MouseHandler
+javax/swing/plaf/basic/BasicBorders$SplitPaneDividerBorder
+javax/swing/plaf/basic/BasicSplitPaneUI$BasicHorizontalLayoutManager
+javax/swing/plaf/basic/BasicSplitPaneUI$1
+javax/swing/plaf/basic/BasicSplitPaneUI$Handler
+javax/swing/plaf/metal/MetalSplitPaneDivider$1
+javax/swing/plaf/basic/BasicSplitPaneDivider$OneTouchActionHandler
+javax/swing/plaf/metal/MetalSplitPaneDivider$2
+javax/swing/border/TitledBorder
+javax/swing/plaf/basic/BasicTextAreaUI
+java/util/Collections$UnmodifiableCollection$1
+java/net/NoRouteToHostException
+java/net/BindException
+javax/swing/tree/PathPlaceHolder
+javax/swing/event/TreeSelectionEvent
+javax/swing/JList$3
+javax/swing/JList$ListSelectionHandler
+javax/swing/JSlider
+javax/swing/JSlider$ModelListener
+javax/swing/plaf/metal/MetalSliderUI
+javax/swing/plaf/basic/BasicSliderUI
+javax/swing/plaf/SliderUI
+javax/swing/plaf/basic/BasicSliderUI$Actions
+javax/swing/plaf/metal/MetalIconFactory$HorizontalSliderThumbIcon
+javax/swing/plaf/metal/MetalIconFactory$VerticalSliderThumbIcon
+javax/swing/plaf/basic/BasicSliderUI$TrackListener
+javax/swing/plaf/basic/BasicSliderUI$Handler
+javax/swing/plaf/basic/BasicSliderUI$ScrollListener
+javax/swing/plaf/metal/MetalSliderUI$MetalPropertyListener
+javax/swing/plaf/basic/BasicSliderUI$PropertyChangeHandler
+sun/java2d/HeadlessGraphicsEnvironment
+java/util/Hashtable$KeySet
+sun/font/FontManager$2
+sun/java2d/SunGraphicsEnvironment$3
+sun/java2d/SunGraphicsEnvironment$4
+javax/swing/DefaultListModel
+javax/swing/event/ListDataEvent
+javax/sound/sampled/DataLine
+javax/sound/sampled/Line
+javax/sound/sampled/Line$Info
+javax/sound/sampled/DataLine$Info
+javax/sound/sampled/Control$Type
+javax/sound/sampled/FloatControl$Type
+javax/sound/sampled/LineUnavailableException
+javax/sound/sampled/UnsupportedAudioFileException
+javax/swing/JRadioButtonMenuItem
+javax/swing/JMenuItem$AccessibleJMenuItem
+javax/swing/AbstractButton$AccessibleAbstractButton
+javax/accessibility/AccessibleAction
+javax/accessibility/AccessibleValue
+javax/accessibility/AccessibleText
+javax/accessibility/AccessibleExtendedComponent
+javax/accessibility/AccessibleComponent
+javax/swing/JComponent$AccessibleJComponent
+java/awt/Container$AccessibleAWTContainer
+java/awt/Component$AccessibleAWTComponent
+javax/accessibility/AccessibleRelationSet
+javax/accessibility/AccessibleState
+javax/accessibility/AccessibleBundle
+javax/swing/plaf/basic/BasicCheckBoxMenuItemUI
+javax/swing/plaf/metal/MetalIconFactory$CheckBoxMenuItemIcon
+javax/swing/JCheckBoxMenuItem$AccessibleJCheckBoxMenuItem
+javax/swing/plaf/basic/BasicRadioButtonMenuItemUI
+javax/swing/plaf/metal/MetalIconFactory$RadioButtonMenuItemIcon
+sun/awt/image/ImageDecoder$1
+javax/swing/JTabbedPane$Page
+java/net/DatagramSocket
+java/net/MulticastSocket
+java/net/DatagramPacket
+sun/net/InetAddressCachePolicy$1
+sun/security/action/GetIntegerAction
+sun/net/InetAddressCachePolicy$2
+java/net/InetAddress$CacheEntry
+java/net/PlainDatagramSocketImpl
+java/text/Collator
+java/text/spi/CollatorProvider
+sun/text/resources/CollationData
+sun/text/resources/CollationData_en
+sun/util/EmptyListResourceBundle
+java/text/RuleBasedCollator
+java/text/CollationRules
+java/text/RBCollationTables
+java/text/RBTableBuilder
+java/text/RBCollationTables$BuildAPI
+sun/text/IntHashtable
+sun/text/UCompactIntArray
+sun/text/normalizer/NormalizerImpl
+sun/text/normalizer/ICUData
+sun/text/normalizer/NormalizerDataReader
+sun/text/normalizer/ICUBinary$Authenticate
+sun/text/normalizer/ICUBinary
+sun/text/normalizer/NormalizerImpl$FCDTrieImpl
+sun/text/normalizer/Trie$DataManipulate
+sun/text/normalizer/NormalizerImpl$NormTrieImpl
+sun/text/normalizer/NormalizerImpl$AuxTrieImpl
+sun/text/normalizer/IntTrie
+sun/text/normalizer/Trie
+sun/text/normalizer/CharTrie
+sun/text/normalizer/CharTrie$FriendAgent
+sun/text/normalizer/UnicodeSet
+sun/text/normalizer/UnicodeMatcher
+sun/text/normalizer/NormalizerImpl$DecomposeArgs
+java/text/MergeCollation
+java/text/PatternEntry$Parser
+java/text/PatternEntry
+java/text/EntryPair
+sun/text/ComposedCharIter
+sun/text/normalizer/UTF16
+sun/net/www/protocol/http/Handler
+java/security/SignatureException
+java/security/InvalidKeyException
+java/security/KeyException
+java/security/Signature
+java/io/ObjectInputStream$BlockDataInputStream
+java/io/ObjectInputStream$HandleTable
+java/io/ObjectInputStream$HandleTable$HandleList
+java/io/ObjectInputStream$ValidationList
+java/io/Bits
+java/io/ObjectStreamClass$Caches
+sun/security/provider/DSAPublicKey
+java/io/ObjectStreamClass$WeakClassKey
+java/security/interfaces/DSAKey
+java/security/PublicKey
+java/io/ObjectStreamClass$EntryFuture
+java/security/Key
+sun/reflect/SerializationConstructorAccessorImpl
+java/io/ObjectStreamClass$FieldReflectorKey
+java/io/ObjectStreamClass$FieldReflector
+sun/security/util/DerEncoder
+java/io/ObjectStreamClass$3
+java/io/ObjectStreamClass$4
+java/io/ObjectStreamClass$5
+java/security/MessageDigest
+sun/security/jca/GetInstance
+java/math/BigInteger
+java/io/ObjectStreamClass$ClassDataSlot
+sun/security/jca/ProviderConfig
+sun/security/util/DerInputStream
+sun/security/jca/ProviderList$3
+sun/security/util/DerInputBuffer
+sun/security/jca/ProviderList$1
+java/security/AlgorithmParameters
+java/security/AlgorithmParametersSpi
+sun/security/jca/ProviderList$2
+sun/security/jca/ProviderConfig$1
+sun/security/jca/ProviderConfig$3
+java/security/Provider$Service
+java/security/Provider$UString
+sun/security/provider/DSAParameters
+sun/security/jca/GetInstance$Instance
+sun/security/util/ByteArrayLexOrder
+sun/security/util/ByteArrayTagOrder
+sun/security/provider/DigestBase
+java/security/MessageDigest$Delegate
+sun/security/util/DerIndefLenConverter
+java/io/InvalidClassException
+java/io/ObjectOutputStream$BlockDataOutputStream
+java/io/ObjectInputStream$GetFieldImpl
+java/io/ObjectOutputStream$ReplaceTable
+sun/security/jca/ServiceId
+sun/security/jca/ProviderList$ServiceList
+sun/security/jca/ProviderList$ServiceList$1
+java/security/Signature$Delegate
+java/security/interfaces/DSAPrivateKey
+java/security/PrivateKey
+sun/security/provider/DSA$SHA1withDSA
+sun/security/provider/DSA
+java/security/spec/DSAParameterSpec
+java/security/spec/AlgorithmParameterSpec
+java/math/MutableBigInteger
+java/math/SignedMutableBigInteger
+java/awt/Window$1DisposeAction
+java/awt/EventQueue$1AWTInvocationLock
+javax/swing/SystemEventQueueUtilities$RunnableCanvas
+javax/swing/SystemEventQueueUtilities$RunnableCanvasGraphics
+sun/awt/image/VSyncedBSManager
+javax/swing/JTable$2
+javax/swing/JTable$Resizable3
+javax/swing/JTable$Resizable2
+javax/swing/JTable$5
+java/awt/DefaultKeyboardFocusManager$DefaultKeyboardFocusManagerSentEvent
+sun/nio/cs/UTF_16LE
+com/sun/java/swing/plaf/windows/WindowsLookAndFeel
+com/sun/java/swing/plaf/windows/XPStyle
+com/sun/java/swing/plaf/windows/XPStyle$SkinPainter
+sun/swing/CachedPainter
+com/sun/java/swing/plaf/windows/WindowsRootPaneUI
+com/sun/java/swing/plaf/windows/WindowsRootPaneUI$AltProcessor
+java/awt/SystemColor
+com/sun/java/swing/plaf/windows/WindowsTreeUI$ExpandedIcon
+com/sun/java/swing/plaf/windows/WindowsTreeUI$CollapsedIcon
+com/sun/java/swing/plaf/windows/DesktopProperty
+com/sun/java/swing/plaf/windows/WindowsLookAndFeel$XPColorValue
+com/sun/java/swing/plaf/windows/WindowsLookAndFeel$XPValue
+com/sun/java/swing/plaf/windows/TMSchema$Part
+com/sun/java/swing/plaf/windows/TMSchema$Control
+com/sun/java/swing/plaf/windows/TMSchema$Prop
+com/sun/java/swing/plaf/windows/WindowsLookAndFeel$XPColorValue$XPColorValueKey
+com/sun/java/swing/plaf/windows/XPStyle$Skin
+com/sun/java/swing/plaf/windows/WindowsLookAndFeel$WindowsFontProperty
+com/sun/java/swing/plaf/windows/WindowsLookAndFeel$FontDesktopProperty
+com/sun/java/swing/plaf/windows/WindowsLookAndFeel$TriggerDesktopProperty
+com/sun/java/swing/plaf/windows/DesktopProperty$WeakPCL
+com/sun/java/swing/plaf/windows/WindowsClassicLookAndFeel
+com/sun/java/swing/plaf/windows/TMSchema$State
+com/sun/java/swing/plaf/windows/WindowsLookAndFeel$LazyWindowsIcon
+com/sun/java/swing/plaf/windows/WindowsLookAndFeel$XPBorderValue
+com/sun/java/swing/plaf/windows/WindowsIconFactory
+com/sun/java/swing/plaf/windows/WindowsIconFactory$FrameButtonIcon
+com/sun/java/swing/plaf/windows/WindowsLookAndFeel$XPDLUValue
+com/sun/java/swing/plaf/windows/WindowsLookAndFeel$ActiveWindowsIcon
+sun/swing/SwingUtilities2$2$1
+sun/awt/image/ByteArrayImageSource
+com/sun/java/swing/plaf/windows/resources/windows
+com/sun/java/swing/plaf/windows/WindowsLabelUI
+sun/swing/ImageCache
+com/sun/java/swing/plaf/windows/WindowsButtonUI
+com/sun/java/swing/plaf/windows/WindowsToggleButtonUI
+javax/swing/plaf/basic/BasicBorders$FieldBorder
+com/sun/java/swing/plaf/windows/WindowsMenuBarUI
+javax/swing/plaf/basic/BasicBorders$MenuBarBorder
+com/sun/java/swing/plaf/windows/WindowsMenuBarUI$TakeFocus
+javax/swing/plaf/basic/BasicMenuBarUI$Actions
+com/sun/java/swing/plaf/windows/WindowsMenuUI
+com/sun/java/swing/plaf/windows/WindowsMenuUI$1
+com/sun/java/swing/plaf/windows/WindowsMenuItemUIAccessor
+com/sun/java/swing/plaf/windows/WindowsIconFactory$MenuArrowIcon
+javax/swing/plaf/basic/BasicIconFactory
+javax/swing/plaf/basic/BasicIconFactory$MenuItemCheckIcon
+com/sun/java/swing/plaf/windows/WindowsMenuUI$WindowsMouseInputHandler
+javax/swing/plaf/basic/BasicMenuUI$MouseInputHandler
+com/sun/java/swing/plaf/windows/WindowsMenuItemUI
+com/sun/java/swing/plaf/windows/WindowsMenuItemUI$1
+com/sun/java/swing/plaf/windows/WindowsIconFactory$MenuItemArrowIcon
+com/sun/java/swing/plaf/windows/WindowsIconFactory$MenuItemCheckIcon
+com/sun/java/swing/plaf/windows/WindowsPopupMenuUI
+javax/swing/Popup
+com/sun/java/swing/plaf/windows/WindowsPopupMenuUI$MnemonicListener
+com/sun/java/swing/plaf/windows/WindowsPopupMenuSeparatorUI
+javax/swing/plaf/basic/BasicPopupMenuSeparatorUI
+com/sun/java/swing/plaf/windows/WindowsScrollBarUI
+com/sun/java/swing/plaf/windows/WindowsScrollBarUI$Grid
+com/sun/java/swing/plaf/windows/WindowsScrollBarUI$WindowsArrowButton
+com/sun/java/swing/plaf/windows/WindowsComboBoxUI
+com/sun/java/swing/plaf/windows/WindowsComboBoxUI$1
+com/sun/java/swing/plaf/windows/WindowsComboBoxUI$2
+com/sun/java/swing/plaf/windows/WindowsComboBoxUI$WindowsComboBoxEditor
+com/sun/java/swing/plaf/windows/WindowsTextFieldUI
+com/sun/java/swing/plaf/windows/WindowsTextFieldUI$WindowsFieldCaret
+com/sun/java/swing/plaf/windows/WindowsComboBoxUI$3
+com/sun/java/swing/plaf/windows/WindowsToolBarUI
+com/sun/java/swing/plaf/windows/WindowsBorders
+com/sun/java/swing/plaf/windows/WindowsBorders$ToolBarBorder
+javax/swing/plaf/basic/BasicBorders$RolloverButtonBorder
+com/sun/java/swing/plaf/windows/WindowsToolBarSeparatorUI
+javax/swing/JRadioButton
+java/awt/GraphicsCallback
+java/awt/Component$FlipSubRegionBufferStrategy
+java/awt/Component$FlipBufferStrategy
+sun/java2d/d3d/D3DVolatileSurfaceManager
+java/awt/print/PrinterGraphics
+java/awt/PrintGraphics
+sun/net/InetAddressCachePolicy
+java/net/DatagramSocketImpl
+java/security/SignatureSpi
+java/io/ObjectInputStream$PeekInputStream
+java/security/interfaces/DSAPublicKey
+java/io/Externalizable
+java/io/ObjectStreamClass$1
+java/io/DataOutputStream
+java/io/ObjectStreamClass$MemberSignature
+java/security/interfaces/DSAParams
+java/security/MessageDigestSpi
+sun/security/jca/ProviderList
+sun/security/util/ObjectIdentifier
+java/io/ObjectStreamException
+java/io/ObjectInputStream$GetField
+java/io/ObjectOutputStream$HandleTable
+javax/swing/event/AncestorEvent
+sun/java2d/SurfaceManagerFactory$1
+java/awt/Component$BltSubRegionBufferStrategy
+java/awt/Component$BltBufferStrategy
+sun/awt/image/BufferedImageGraphicsConfig
+sun/awt/image/BufImgVolatileSurfaceManager
+java/io/ObjectStreamClass$2
+sun/security/x509/X509Key
+sun/security/util/DerOutputStream
+sun/security/util/DerValue
+java/io/ObjectInputStream$CallbackContext
+javax/swing/BufferStrategyPaintManager$BufferInfo
+sun/reflect/UnsafeQualifiedStaticLongFieldAccessorImpl
+sun/security/jca/Providers
+sun/security/provider/ByteArrayAccess
+sun/applet/Main
+sun/applet/AppletMessageHandler
+sun/applet/resources/MsgAppletViewer
+sun/applet/AppletSecurity
+sun/awt/AWTSecurityManager
+java/lang/SecurityManager
+java/security/DomainCombiner
+sun/applet/AppletSecurity$1
+java/lang/SecurityManager$1
+java/security/SecurityPermission
+java/util/PropertyPermission
+sun/applet/AppletViewer
+java/applet/AppletContext
+java/awt/print/Printable
+java/util/logging/LogManager$6
+sun/applet/StdAppletViewerFactory
+sun/applet/AppletViewerFactory
+sun/security/util/SecurityConstants
+java/awt/AWTPermission
+java/net/NetPermission
+java/net/SocketPermission
+javax/security/auth/AuthPermission
+sun/applet/AppletViewer$UserActionListener
+sun/applet/AppletViewerPanel
+sun/applet/AppletPanel
+java/applet/AppletStub
+sun/misc/MessageUtils
+sun/applet/AppletPanel$10
+java/security/Policy$1
+java/util/concurrent/atomic/AtomicReference
+sun/security/provider/PolicyFile$PolicyInfo
+java/util/Collections$SynchronizedRandomAccessList
+java/util/Collections$SynchronizedList
+sun/security/provider/PolicyFile$4
+sun/security/provider/PolicyFile$PolicyEntry
+sun/security/provider/PolicyParser
+sun/security/provider/PolicyFile$1
+sun/security/provider/PolicyFile$3
+sun/security/util/PropertyExpander
+sun/security/util/PolicyUtil
+java/io/StreamTokenizer
+sun/security/provider/PolicyParser$GrantEntry
+sun/security/provider/PolicyParser$PermissionEntry
+sun/security/provider/PolicyParser$ParsingException
+sun/security/provider/PolicyFile$7
+sun/security/provider/PolicyFile$8
+sun/security/provider/PolicyFile$SelfPermission
+java/net/SocketPermissionCollection
+java/util/PropertyPermissionCollection
+sun/applet/AppletPanel$9
+sun/applet/AppletClassLoader
+sun/applet/AppletClassLoader$4
+sun/applet/AppletThreadGroup
+sun/applet/AppContextCreator
+java/lang/Thread$1
+sun/applet/AppletPanel$1
+sun/awt/AppContext$3
+sun/awt/MostRecentThreadAppContext
+sun/awt/windows/WMenuBarPeer
+java/awt/peer/MenuBarPeer
+java/awt/peer/MenuComponentPeer
+sun/awt/windows/WMenuPeer
+java/awt/peer/MenuPeer
+java/awt/peer/MenuItemPeer
+sun/awt/windows/WMenuItemPeer
+sun/awt/windows/WMenuItemPeer$2
+sun/awt/windows/awtLocalization
+sun/awt/windows/WFontMetrics
+sun/applet/AppletViewer$1
+sun/applet/AppletViewer$1AppletEventListener
+sun/applet/AppletListener
+sun/awt/CausedFocusEvent
+sun/applet/AppletEvent
+java/util/concurrent/locks/LockSupport
+java/net/URLClassLoader$4
+sun/applet/AppletClassLoader$2
+javax/swing/JApplet
+java/lang/ClassLoader$1
+sun/security/provider/PolicyFile$6
+java/security/PermissionsEnumerator
+java/util/Collections$1
+sun/applet/AppletPanel$11
+javax/swing/SwingHeavyWeight
+sun/applet/AppletPanel$8
+sun/applet/AppletPanel$2
+sun/applet/AppletPanel$3
+sun/applet/AppletPanel$6
+java/beans/PropertyVetoException
+javax/swing/BufferStrategyPaintManager$1
+java/lang/ApplicationShutdownHooks$1
+sun/nio/cs/ISO_8859_1$Decoder
+sun/rmi/transport/proxy/RMIHttpToCGISocketFactory
+sun/rmi/runtime/Log$LoggerLog
+sun/rmi/transport/proxy/RMIMasterSocketFactory
+java/rmi/server/LogStream
+sun/rmi/runtime/Log$LoggerLog$1
+sun/nio/ch/FileChannelImpl$FileLockTable
+sun/nio/ch/FileChannelImpl$FileLockReference
+java/lang/ProcessEnvironment$EntryComparator
+java/lang/StringValue
+java/rmi/server/RMIServerSocketFactory
+java/lang/ProcessEnvironment
+java/lang/ProcessEnvironment$CheckedEntrySet$1
+sun/rmi/runtime/Log$LogFactory
+sun/nio/ch/FileKey
+sun/rmi/transport/proxy/RMIHttpToPortSocketFactory
+sun/rmi/runtime/Log
+java/nio/DirectIntBufferU
+java/util/logging/LogManager$3
+sun/nio/cs/ISO_8859_1$Encoder
+java/rmi/server/RMIClientSocketFactory
+java/util/logging/Formatter
+java/lang/ProcessEnvironment$CheckedEntry
+sun/nio/ch/FileChannelImpl$SharedFileLockTable
+sun/rmi/transport/proxy/RMIDirectSocketFactory
+sun/security/action/GetLongAction
+sun/rmi/runtime/Log$InternalStreamHandler
+java/lang/AssertionStatusDirectives
+java/lang/Process
+sun/nio/cs/ISO_8859_1
+java/nio/DoubleBuffer
+java/nio/channels/FileLock
+java/util/logging/SimpleFormatter
+java/util/TreeMap$Entry
+java/lang/ProcessBuilder
+sun/net/util/URLUtil
+sun/rmi/runtime/Log$LoggerLogFactory
+java/util/logging/StreamHandler
+java/nio/FloatBuffer
+java/lang/ProcessImpl
+sun/nio/ch/FileChannelImpl$1
+java/lang/ProcessImpl$1
+java/lang/ProcessEnvironment$CheckedEntrySet
+sun/nio/ch/FileLockImpl
+java/lang/ProcessEnvironment$NameComparator
+sun/nio/ch/FileChannelImpl$FileLockTable$Releaser
+java/net/PasswordAuthentication
+java/rmi/server/RMISocketFactory
+java/util/logging/ErrorManager
+# abce0ad3b4fa88bb
Index: AE/installer2/setup_win/JRE/lib/content-types.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/content-types.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/content-types.properties	(revision 613)
@@ -0,0 +1,272 @@
+#sun.net.www MIME content-types table; version 1.6, 05/04/99
+#
+# Property fields:
+#
+#   <description> ::= 'description' '=' <descriptive string>
+#    <extensions> ::= 'file_extensions' '=' <comma-delimited list, include '.'>
+#         <image> ::= 'icon' '=' <filename of icon image>
+#        <action> ::= 'browser' | 'application' | 'save' | 'unknown'
+#   <application> ::= 'application' '=' <command line template>
+#
+
+#
+# The "we don't know anything about this data" type(s).
+# Used internally to mark unrecognized types.
+#
+content/unknown: description=Unknown Content
+unknown/unknown: description=Unknown Data Type
+
+#
+# The template we should use for temporary files when launching an application
+# to view a document of given type.
+#
+temp.file.template: c:\\temp\\%s
+
+#
+# The "real" types.
+#
+application/octet-stream: \
+	description=Generic Binary Stream;\
+	file_extensions=.saveme,.dump,.hqx,.arc,.obj,.lib,.bin,.exe,.zip,.gz
+
+application/oda: \
+	description=ODA Document;\
+	file_extensions=.oda
+
+application/pdf: \
+	description=Adobe PDF Format;\
+	file_extensions=.pdf
+
+application/postscript: \
+	description=Postscript File;\
+	file_extensions=.eps,.ai,.ps;\
+	icon=ps
+
+application/rtf: \
+	description=Wordpad Document;\
+	file_extensions=.rtf;\
+	action=application;\
+	application=wordpad.exe %s
+
+application/x-dvi: \
+	description=TeX DVI File;\
+	file_extensions=.dvi
+
+application/x-hdf: \
+	description=Hierarchical Data Format;\
+	file_extensions=.hdf;\
+	action=save
+
+application/x-latex: \
+	description=LaTeX Source;\
+	file_extensions=.latex
+
+application/x-netcdf: \
+	description=Unidata netCDF Data Format;\
+	file_extensions=.nc,.cdf;\
+	action=save
+
+application/x-tex: \
+	description=TeX Source;\
+	file_extensions=.tex
+
+application/x-texinfo: \
+	description=Gnu Texinfo;\
+	file_extensions=.texinfo,.texi
+
+application/x-troff: \
+	description=Troff Source;\
+	file_extensions=.t,.tr,.roff
+
+application/x-troff-man: \
+	description=Troff Manpage Source;\
+	file_extensions=.man
+
+application/x-troff-me: \
+	description=Troff ME Macros;\
+	file_extensions=.me
+
+application/x-troff-ms: \
+	description=Troff MS Macros;\
+	file_extensions=.ms
+
+application/x-wais-source: \
+	description=Wais Source;\
+	file_extensions=.src,.wsrc
+
+application/zip: \
+	description=Zip File;\
+	file_extensions=.zip;\
+	icon=zip;\
+	action=save
+
+application/x-bcpio: \
+	description=Old Binary CPIO Archive;\
+	file_extensions=.bcpio;\
+	action=save
+
+application/x-cpio: \
+	description=Unix CPIO Archive;\
+	file_extensions=.cpio;\
+	action=save
+
+application/x-gtar: \
+	description=Gnu Tar Archive;\
+	file_extensions=.gtar;\
+	icon=tar;\
+	action=save
+
+application/x-shar: \
+	description=Shell Archive;\
+	file_extensions=.sh,.shar;\
+	action=save
+
+application/x-sv4cpio: \
+	description=SVR4 CPIO Archive;\
+	file_extensions=.sv4cpio;\
+	action=save
+
+application/x-sv4crc: \
+	description=SVR4 CPIO with CRC;\
+	file_extensions=.sv4crc;\
+	action=save
+
+application/x-tar: \
+	description=Tar Archive;\
+	file_extensions=.tar;\
+	icon=tar;\
+	action=save
+
+application/x-ustar: \
+	description=US Tar Archive;\
+	file_extensions=.ustar;\
+	action=save
+
+audio/basic: \
+	description=Basic Audio;\
+	file_extensions=.snd,.au;\
+	icon=audio
+
+audio/x-aiff: \
+	description=Audio Interchange Format File;\
+	file_extensions=.aifc,.aif,.aiff;\
+	icon=aiff
+
+audio/x-wav: \
+	description=Wav Audio;\
+	file_extensions=.wav;\
+	icon=wav;\
+	action=application;\
+	application=mplayer.exe %s
+
+image/gif: \
+	description=GIF Image;\
+	file_extensions=.gif;\
+	icon=gif;\
+	action=browser
+
+image/ief: \
+	description=Image Exchange Format;\
+	file_extensions=.ief
+
+image/jpeg: \
+	description=JPEG Image;\
+	file_extensions=.jfif,.jfif-tbnl,.jpe,.jpg,.jpeg;\
+	icon=jpeg;\
+	action=browser
+
+image/tiff: \
+	description=TIFF Image;\
+	file_extensions=.tif,.tiff;\
+	icon=tiff
+
+image/vnd.fpx: \
+	description=FlashPix Image;\
+	file_extensions=.fpx,.fpix
+
+image/x-cmu-rast: \
+	description=CMU Raster Image;\
+	file_extensions=.ras
+
+image/x-portable-anymap: \
+	description=PBM Anymap Image;\
+	file_extensions=.pnm
+
+image/x-portable-bitmap: \
+	description=PBM Bitmap Image;\
+	file_extensions=.pbm
+
+image/x-portable-graymap: \
+	description=PBM Graymap Image;\
+	file_extensions=.pgm
+
+image/x-portable-pixmap: \
+	description=PBM Pixmap Image;\
+	file_extensions=.ppm
+
+image/x-rgb: \
+	description=RGB Image;\
+	file_extensions=.rgb
+
+image/x-xbitmap: \
+	description=X Bitmap Image;\
+	file_extensions=.xbm,.xpm
+
+image/x-xwindowdump: \
+	description=X Window Dump Image;\
+	file_extensions=.xwd
+
+image/png: \
+	description=PNG Image;\
+	file_extensions=.png;\
+	icon=png;\
+	action=browser
+
+text/html: \
+	description=HTML Document;\
+	file_extensions=.htm,.html;\
+	icon=html
+
+text/plain: \
+	description=Plain Text;\
+	file_extensions=.text,.c,.cc,.c++,.h,.pl,.txt,.java,.el;\
+	icon=text;\
+	action=browser
+
+text/tab-separated-values: \
+	description=Tab Separated Values Text;\
+	file_extensions=.tsv
+
+text/x-setext: \
+	description=Structure Enhanced Text;\
+	file_extensions=.etx
+
+video/mpeg: \
+	description=MPEG Video Clip;\
+	file_extensions=.mpg,.mpe,.mpeg;\
+	icon=mpeg
+
+video/quicktime: \
+	description=QuickTime Video Clip;\
+	file_extensions=.mov,.qt
+
+application/x-troff-msvideo: \
+	description=AVI Video;\
+	file_extensions=.avi;\
+	icon=avi;\
+	action=application;\
+	application=mplayer.exe %s
+
+video/x-sgi-movie: \
+	description=SGI Movie;\
+	file_extensions=.movie,.mv
+
+message/rfc822: \
+	description=Internet Email Message;\
+	file_extensions=.mime
+
+application/xml: \
+	description=XML document;\
+	file_extensions=.xml
+
+
Index: AE/installer2/setup_win/JRE/lib/deploy/jqs/ff/chrome.manifest
===================================================================
--- AE/installer2/setup_win/JRE/lib/deploy/jqs/ff/chrome.manifest	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/deploy/jqs/ff/chrome.manifest	(revision 613)
@@ -0,0 +1,2 @@
+content	jqs	chrome/content/
+overlay	chrome://browser/content/browser.xul	chrome://jqs/content/overlay.xul
Index: AE/installer2/setup_win/JRE/lib/deploy/jqs/ff/chrome/content/overlay.js
===================================================================
--- AE/installer2/setup_win/JRE/lib/deploy/jqs/ff/chrome/content/overlay.js	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/deploy/jqs/ff/chrome/content/overlay.js	(revision 613)
@@ -0,0 +1,23 @@
+// @(#)overlay.js	1.4 10/03/29
+//
+// Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
+// ORACLE PROPRIETARY/CONFIDENTIAL.  Use is subject to license terms.
+//
+
+// get the JQS extension directory
+const id = "jqs@sun.com";
+var ext = Components.classes["@mozilla.org/extensions/manager;1"]
+                    .getService(Components.interfaces.nsIExtensionManager)
+                    .getInstallLocation(id)
+                    .getItemLocation(id); 
+
+// create an nsILocalFile for the executable
+var file = Components.classes["@mozilla.org/file/local;1"]
+                     .createInstance(Components.interfaces.nsILocalFile);
+
+// construct command line                     
+file.initWithPath(ext.path + "\\..\\..\\..\\..\\bin\\jqsnotify.exe");
+
+// and launch it
+file.launch();
+
Index: AE/installer2/setup_win/JRE/lib/deploy/jqs/ff/chrome/content/overlay.xul
===================================================================
--- AE/installer2/setup_win/JRE/lib/deploy/jqs/ff/chrome/content/overlay.xul	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/deploy/jqs/ff/chrome/content/overlay.xul	(revision 613)
@@ -0,0 +1,5 @@
+<?xml version="1.0"?>
+<overlay id="jqs-overlay"
+         xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
+  <script src="overlay.js"/>
+</overlay>
Index: AE/installer2/setup_win/JRE/lib/deploy/jqs/ff/install.rdf
===================================================================
--- AE/installer2/setup_win/JRE/lib/deploy/jqs/ff/install.rdf	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/deploy/jqs/ff/install.rdf	(revision 613)
@@ -0,0 +1,24 @@
+<?xml version="1.0"?>
+<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#" 
+     xmlns:em="http://www.mozilla.org/2004/em-rdf#">
+
+  <Description about="urn:mozilla:install-manifest">
+  
+    <em:id>jqs@sun.com</em:id>
+    <em:name>Java Quick Starter</em:name>
+    <em:version>1.0</em:version>
+    <em:description></em:description>
+    <em:creator></em:creator>
+
+    <!-- Firefox -->
+    <em:targetApplication>
+      <Description>
+        <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id>
+        <em:minVersion>1.5</em:minVersion>
+        <em:maxVersion>*</em:maxVersion>
+      </Description>
+    </em:targetApplication>
+
+  </Description>
+
+</RDF>
Index: AE/installer2/setup_win/JRE/lib/deploy/jqs/jqs.conf
===================================================================
--- AE/installer2/setup_win/JRE/lib/deploy/jqs/jqs.conf	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/deploy/jqs/jqs.conf	(revision 613)
@@ -0,0 +1,2075 @@
+# Copyright (c) 2008, Oracle and/or its affiliates. All rights reserved.
+# ORACLE PROPRIETARY/CONFIDENTIAL.  Use is subject to license terms.
+#
+
+# Java Quick Start minimal applets configuration file
+
+# Config file template, created by JQS profiler
+# set JAVA_HOME=
+refresh "${JAVA_HOME}\bin\client\classes.jsa" mapped
+refresh "${JAVA_HOME}\lib\content-types.properties"
+refresh "${JAVA_HOME}\lib\deploy.jar"
+refresh "${JAVA_HOME}\lib\ext\dnsns.jar"
+refresh "${JAVA_HOME}\lib\ext\localedata.jar"
+refresh "${JAVA_HOME}\lib\fontconfig.bfc"
+refresh "${JAVA_HOME}\lib\fonts\lucidabrightdemibold.ttf"
+refresh "${JAVA_HOME}\lib\fonts\lucidabrightdemiitalic.ttf"
+refresh "${JAVA_HOME}\lib\fonts\lucidabrightitalic.ttf"
+refresh "${JAVA_HOME}\lib\fonts\lucidabrightregular.ttf"
+refresh "${JAVA_HOME}\lib\fonts\lucidasansdemibold.ttf"
+refresh "${JAVA_HOME}\lib\fonts\lucidasansregular.ttf"
+refresh "${JAVA_HOME}\lib\fonts\lucidatypewriterbold.ttf"
+refresh "${JAVA_HOME}\lib\fonts\lucidatypewriterregular.ttf"
+refresh "${JAVA_HOME}\lib\javaws.jar"
+refresh "${JAVA_HOME}\lib\jsse.jar"
+refresh "${JAVA_HOME}\lib\logging.properties"
+refresh "${JAVA_HOME}\lib\meta-index"
+refresh "${JAVA_HOME}\lib\net.properties"
+refresh "${JAVA_HOME}\lib\plugin.jar"
+refresh "${JAVA_HOME}\lib\resources.jar"
+refresh "${JAVA_HOME}\lib\rt.jar"
+refresh "${JAVA_HOME}\lib\security\blacklist"
+refresh "${JAVA_HOME}\lib\security\java.policy"
+refresh "${JAVA_HOME}\lib\security\java.security"
+refresh "${JAVA_HOME}\lib\security\javaws.policy"
+refresh "${JAVA_HOME}\lib\tzmappings"
+refresh "${JAVA_HOME}\lib\zi\gmt"
+refreshlib "${JAVA_HOME}\bin\awt.dll"
+refreshlib "${JAVA_HOME}\bin\client\jvm.dll"
+refreshlib "${JAVA_HOME}\bin\dcpr.dll"
+refreshlib "${JAVA_HOME}\bin\deploy.dll"
+refreshlib "${JAVA_HOME}\bin\fontmanager.dll"
+refreshlib "${JAVA_HOME}\bin\hpi.dll"
+refreshlib "${JAVA_HOME}\bin\java.dll"
+refreshlib "${JAVA_HOME}\bin\javaw.exe"
+refreshlib "${JAVA_HOME}\bin\jp2native.dll"
+refreshlib "${JAVA_HOME}\bin\jpeg.dll"
+refreshlib "${JAVA_HOME}\bin\msvcr71.dll"
+refreshlib "${JAVA_HOME}\bin\net.dll"
+refreshlib "${JAVA_HOME}\bin\nio.dll"
+refreshlib "${JAVA_HOME}\bin\regutils.dll"
+refreshlib "${JAVA_HOME}\bin\verify.dll"
+refreshlib "${JAVA_HOME}\bin\zip.dll"
+
+profile
+[msvcr71.dll]
+config: refreshlib "${JAVA_HOME}\bin\msvcr71.dll"
+00000000-00048000
+00049000-0004d000
+0004e000-00056000
+
+[jvm.dll]
+config: refreshlib "${JAVA_HOME}\bin\client\jvm.dll"
+00000000-00078000
+00079000-00080000
+00082000-0008a000
+0008f000-00091000
+00092000-00093000
+0009d000-000a9000
+000ab000-000b0000
+000b1000-000b5000
+000b8000-000b9000
+000c0000-000c1000
+000c6000-000d1000
+000d4000-000d5000
+000d7000-000fd000
+000ff000-00107000
+00113000-00126000
+00133000-00135000
+0013c000-0013d000
+0013e000-00141000
+00142000-00144000
+0014e000-00159000
+0015d000-00161000
+00169000-0016d000
+0016e000-00183000
+00186000-0018b000
+00196000-0019e000
+0019f000-001b0000
+001b2000-001eb000
+001ef000-001f3000
+001f4000-0020c000
+0020d000-00219000
+0021b000-00227000
+00228000-00231000
+00232000-0023b000
+00243000-00249000
+0024b000-0024c000
+0024d000-00256000
+0025c000-0026d000
+0026e000-00271000
+
+[verify.dll]
+config: refreshlib "${JAVA_HOME}\bin\verify.dll"
+00000000-0000b000
+
+[java.dll]
+config: refreshlib "${JAVA_HOME}\bin\java.dll"
+00000000-0000c000
+0000d000-0000e000
+00010000-0001d000
+
+[hpi.dll]
+config: refreshlib "${JAVA_HOME}\bin\hpi.dll"
+00000000-00007000
+
+[zip.dll]
+config: refreshlib "${JAVA_HOME}\bin\zip.dll"
+00000000-00003000
+00004000-0000e000
+
+[awt.dll]
+config: refreshlib "${JAVA_HOME}\bin\awt.dll"
+00000000-00007000
+00008000-00010000
+00011000-00012000
+00013000-00014000
+00015000-00016000
+00019000-0001a000
+0001c000-0001d000
+0001e000-0001f000
+00020000-00022000
+00023000-00024000
+00027000-00029000
+0002a000-0002b000
+0002d000-0002f000
+00031000-00033000
+00034000-0003c000
+0003e000-0003f000
+00040000-00042000
+00045000-00046000
+00048000-00051000
+00056000-00058000
+00061000-00067000
+00068000-0007c000
+0007d000-00087000
+0008a000-0008c000
+0008d000-0008e000
+00093000-00095000
+00098000-000a5000
+000a6000-000a7000
+000a9000-000b9000
+000ba000-000ce000
+000cf000-000d1000
+000dc000-000e1000
+000e8000-000e9000
+000eb000-00125000
+00129000-0012c000
+0012d000-0012e000
+00130000-00133000
+00134000-00135000
+
+[rt.jar]
+config: refresh "${JAVA_HOME}\lib\rt.jar"
+00285f41-00285f5f
+00285f87-002867bd
+002867eb-002870da
+00287108-00287464
+00287493-0028850d
+0028853c-0028876c
+0028879b-00288c2b
+00288c54-00289335
+002e1abe-002e1adc
+002e1b0f-002e2361
+002e7dcb-002e7de9
+002e7e1c-002e8720
+002fd1d6-002fd1f4
+002fd227-002fda4f
+00301583-003015a1
+003015e3-00301e33
+003021a6-003021c4
+003021f7-00302be1
+0031af9a-0031afb8
+0031afdf-0031c487
+00324ecc-00324eea
+00324f1f-00325695
+0032c785-0032c7a3
+0032c7d8-0032cfe9
+00341999-003419b7
+003419ea-003421ca
+0034698e-003469ac
+003469df-00347310
+00353a8a-00353aa8
+00353add-00354356
+00355b3e-00355b5c
+00355b91-00356400
+00357357-00357375
+003573a6-00357819
+0035784b-00357ceb
+00357d23-003582e7
+00358321-003588d9
+00358909-00358ddb
+00358e0c-003592ed
+01289f35-01289f53
+01289f6c-0128a1ea
+0128a203-0128a4ee
+0128a514-0128aad8
+0128b315-0128b333
+0128b348-0128c40c
+0128d03b-0128d059
+0128d070-0128e556
+0128f083-0128f0a1
+0128f0c0-012902b9
+012906e5-01290703
+01290718-01291e43
+01291e63-01292209
+01294649-01294667
+01294691-0129477d
+012947ac-01294aec
+012953ef-0129540d
+01295431-0129559e
+01295c87-01295ca5
+01295cbb-01296bc7
+01297e16-01297e34
+01297e4e-01298222
+0129823b-01298f92
+01299106-01299124
+01299139-01299449
+0129945e-0129974d
+01299a41-01299a5f
+01299a81-01299b84
+01299bab-0129a008
+0129a024-0129a83e
+0129a861-0129b6fe
+0129d112-0129d130
+0129d151-0129db82
+0129de8c-0129deaa
+0129dec6-012a12c3
+012a12e3-012a1663
+012a2a6d-012a2a8b
+012a2aa7-012a45e2
+012a4ef5-012a4f13
+012a4f39-012a5227
+012a573b-012a5759
+012a577b-012a6446
+012a8407-012a8425
+012a8438-012aa6f0
+012aee59-012aee77
+012aee9b-012afa83
+012b4948-012b4966
+012b4983-012b5d32
+012b5d4d-012b5e1a
+012b65cb-012b65e9
+012b6613-012b6a63
+012b6a79-012b7a02
+012b7cdb-012b7cf9
+012b7d10-012b7e96
+012b7eb8-012b8e29
+012b9e9c-012b9eba
+012b9ece-012bb7bf
+012bc014-012bc032
+012bc04b-012bdd73
+012bf404-012bf422
+012bf43a-012c0fc2
+012c22d7-012c22f5
+012c230e-012c3130
+012c34b4-012c34d2
+012c34e9-012c48ff
+012c57db-012c57f9
+012c5815-012c716c
+012c74f9-012c7517
+012c752f-012c8a9e
+012c8ab9-012c911e
+012ccbb8-012ccbd6
+012ccbff-012cd00e
+012cd468-012cd486
+012cd4a8-012cd821
+012cdb62-012cdb80
+012cdba4-012cdd68
+012ce575-012ce593
+012ce5b8-012cf1fe
+012d58a4-012d58c2
+012d58ea-012d5a8c
+012d66a9-012d66c7
+012d66ea-012d7569
+012d758f-012d7665
+012d768d-012d8332
+012d834f-012da3d9
+012df0c2-012df0e0
+012df10f-012df2bd
+012e0496-012e04b4
+012e04d9-012e097e
+012e153e-012e155c
+012e1580-012e1ae4
+012e1b0d-012e2144
+012e2162-012e22a0
+012e22c5-012e2c93
+012e60db-012e60f9
+012e6122-012e68b4
+012e68d7-012e7b79
+012e7b98-012e80c5
+012e8a6a-012e8a88
+012e8ab2-012e8cdb
+012e8cf9-012edf1f
+012edf3d-012ee217
+012ee235-012ee48e
+012ee4ac-012ee788
+012ee7a6-012eea39
+012eea5e-012eebf8
+012eec24-012eedba
+012eedd6-012f3173
+012f3193-012f5205
+012f522b-012f576d
+012f578d-012f5fc2
+012f5fe1-012f6836
+012f684f-012f7fec
+012f800b-012f8978
+012f8990-012f9da7
+012f9dc7-012fa373
+012fa39a-012faa35
+012faa5b-012fb155
+012fb175-012fcd75
+012fcd96-012fd2f4
+012fd318-012fd6d0
+012fd6f3-012fdaeb
+012fdb08-012fe086
+012fe0a9-012fe800
+012fe82a-012ff33d
+012ff982-012ff9a0
+012ff9c0-012ffeed
+012fff07-01300c45
+01300c65-013010c5
+013011cc-013011ea
+01301218-01301576
+013015a2-0130195b
+0130197c-01302ede
+01302f0b-01303264
+0130328f-01303643
+01303666-01303965
+01303985-01303b6b
+01303b8d-01303ec9
+01303eef-01304494
+013044b9-01304aab
+01304aca-01305fe6
+01306006-01306506
+01306526-01306a52
+01306a78-013071f7
+0130721c-01307bc1
+01307bec-01308115
+0130813f-013086be
+013086e2-01308fa5
+01308fcb-013094fd
+0130981e-0130983c
+01309862-0130b24a
+0130ef98-0130efb6
+0130efda-0130f227
+0130f24b-0130f734
+0130f757-01311fec
+01316402-01316420
+0131643f-013173fb
+01318b3a-01318b58
+01318b7d-013192c3
+013193b9-013193d7
+013193f2-013199df
+013199fc-0131b31b
+0131b33b-0131b56c
+0131e6db-0131e6f9
+0131e716-0131e912
+0131f25c-0131f27a
+0131f298-01320cb6
+01320cdb-013211b0
+01324e9c-01324eba
+01324ed8-01324f90
+01324fb8-01325068
+01325088-01325195
+013251b3-013252bc
+013252db-013254a4
+013254c0-013256cd
+013257c3-013257e1
+01325802-013258b2
+013258cf-01325a2c
+01325a4e-01325ba5
+01325bc6-01325cb1
+01325cd3-01325d74
+01325d94-01325f2a
+01325f4f-013261a3
+013261c4-0132630c
+0132632c-0132644a
+01326deb-01326e09
+01326e28-01327584
+01327d6e-01327d8c
+01327db1-01327e88
+013285a5-013285c3
+013285e2-013297e4
+01366b91-01366baf
+01366bcf-01366d26
+01366d4b-013670d5
+013670ed-01367158
+0136e050-0136e06e
+0136e08f-0136e633
+0136f3aa-0136f3c8
+0136f3e6-0136f8aa
+0136f8c8-0136fa22
+01381474-01381492
+013814b0-0138160a
+01381735-01381753
+01381773-01381858
+013819e3-01381a01
+01381a1a-013820c4
+0138e936-0138e954
+0138e96e-01393dea
+01395389-013953a7
+013953c3-0139553b
+01395731-0139574f
+0139576b-01395be9
+0139f1b5-0139f1d3
+0139f1f2-013a062d
+013a0860-013a087e
+013a089a-013a0cd5
+013a19e0-013a19fe
+013a1a15-013a1c4e
+013a259b-013a25b9
+013a25da-013a2c87
+013e1fea-013e2008
+013e2032-013e2202
+013e30a2-013e30c0
+013e30ed-013e33ff
+013e387d-013e389b
+013e38b9-013e3eef
+013e4dce-013e4dec
+013e4e08-013e5f13
+013e5f36-013e612f
+013e6150-013e6a13
+013e6db8-013e6dd6
+013e6df4-013e7eba
+013e7edb-013e81b7
+013f566e-013f568c
+013f56ac-013f6693
+013f66b6-013f681f
+013f683d-013f6bd1
+013f8907-013f8925
+013f8942-013f8f6a
+013fb53c-013fb55a
+013fb587-013fba90
+013fbab1-013fc3f3
+01400914-01400932
+01400965-01400e43
+01401414-01401432
+0140145d-01402224
+01402252-014027b7
+01406c4a-01406c68
+01406c94-01407377
+014104f1-0141050f
+01410537-01410d78
+01410d9e-01410ef8
+014113f5-01411413
+01411438-014114bb
+014116e2-01411700
+0141172f-014118cb
+014118f7-01411a2e
+01411a59-01411b6f
+01414557-01414575
+0141459c-0141471f
+01414ace-01414aec
+01414b0c-01414b5a
+01414e7c-01414e9a
+01414ec6-01414ffc
+01416581-0141659f
+014165cc-014169b7
+014169e1-01416bc8
+01416bf1-01416dd5
+01416e00-01416f34
+0142bd32-0142bd50
+0142bd6a-0142c00f
+0142c02d-0142c51e
+0142c549-0142c8b3
+0142c8e0-0142ced8
+0142cf11-0142e1cd
+0142e1ed-0142ffd0
+0142ffe4-014317bd
+01432735-01432753
+01432772-014329f2
+01432a22-01432c7a
+01433335-01433353
+01433370-014345be
+01439e67-01439e85
+01439ea0-0143a1af
+0143a291-0143a2af
+0143a2d5-0143a770
+0143a78f-0143ab40
+0143ab5a-0143ade9
+0143b976-0143b994
+0143b9bc-0143bdcd
+0143c4b7-0143c4d5
+0143c4fb-0143df0a
+0143ea2c-0143ea4a
+0143ea73-0143ebdb
+0143ec01-0143ed56
+01440a53-01440a71
+01440a8e-01440f10
+0144e64c-0144e66a
+0144e6ac-0144eca4
+0144ecf6-0144f29f
+0144f2df-0144fb83
+01456de8-01456e06
+01456e21-01456e9b
+014573db-014573f9
+0145741d-01457a9f
+01458121-0145813f
+01458164-014584cf
+014584ee-01458ddb
+01459807-01459825
+0145984e-0145e6b0
+0145e6d6-0145e839
+0145e852-0145ffa1
+0146888f-014688ad
+014688d8-01468c09
+0146a5e5-0146a603
+0146a629-0146a708
+0146b483-0146b4a1
+0146b4be-0146caf4
+01475805-01475823
+0147583c-01475e60
+01475e77-0147611e
+01476133-01476d3e
+01476d57-0147702b
+01477046-01477521
+01485fd9-01485ff7
+01486029-014874a4
+01489942-01489960
+01489988-01489d34
+01489ea6-01489ec4
+01489ee7-01489fdd
+0148cfea-0148d008
+0148d03d-0148d9d9
+0148da09-0148eb38
+0149f11e-0149f13c
+0149f153-0149f28e
+0149f2a7-0149f576
+014a444e-014a446c
+014a4491-014a59b1
+014a59d3-014a5ad6
+014a7229-014a7247
+014a726a-014a72e7
+014a83e8-014a8406
+014a8430-014a8ba0
+014a91d0-014a91ee
+014a9227-014a9815
+014abe98-014abeb6
+014abeda-014ac0a4
+014ad86e-014ad88c
+014ad8c0-014adba3
+014adbc7-014aeefc
+014aef1d-014af155
+014af17f-014afc12
+014afc37-014b0466
+014b0fe0-014b0ffe
+014b1025-014b14d0
+014b85b4-014b85d2
+014b8605-014b86e3
+014b870c-014b8847
+014b8879-014b89fd
+014b8a30-014b8dd9
+014b8e03-014b8f21
+014b95d6-014b95f4
+014b963b-014ba56e
+014ba5b8-014bb139
+014bb16f-014bd7ab
+014c23b5-014c23d3
+014c23fb-014c24ae
+014c24e7-014c26cf
+014c2e37-014c2e55
+014c2e89-014c358a
+014c35b7-014c6015
+014c603a-014c6379
+014c639e-014c672a
+014c674f-014c6ade
+014c6b03-014c6ea9
+014c6ece-014c7279
+014c729e-014c7660
+014c7685-014c7a55
+014c7a78-014c8553
+014cfb96-014cfbb4
+014cfbd1-014d120f
+014d3520-014d353e
+014d3560-014d3ea7
+014d8a70-014d8a8e
+014d8ab2-014d8d6d
+014eac05-014eac23
+014eac42-014eaf2c
+014eb4c3-014eb4e1
+014eb50a-014eb97e
+014ec230-014ec24e
+014ec26f-014ec8a6
+014ed1e7-014ed205
+014ed22a-014edff8
+014f1864-014f1882
+014f18a6-014f1b9b
+014f3659-014f3677
+014f369d-014f39e9
+014f5554-014f5572
+014f559a-014f5765
+014f65a7-014f65c5
+014f65e8-014f75ce
+014f75f4-014f76fa
+014f7722-014f8567
+014f8584-014fa927
+01500181-0150019f
+015001ce-015003eb
+0152607b-01526099
+015260b9-01526707
+01526721-015276b4
+015276d4-01527c1f
+0152aba9-0152abc7
+0152abe7-0152add8
+0153118b-015311a9
+015311cf-015317d4
+01554785-015547a3
+015547c2-015550db
+01555896-015558b4
+015558de-01555a48
+01555a6d-01555ba3
+0155639e-015563bc
+015563db-0155775e
+01558099-015580b7
+015580d6-0155861f
+01558638-0155890a
+0155903b-01559059
+0155906f-0155a338
+0155cbb6-0155cbd4
+0155cbef-0155ccef
+0155f9bd-0155f9db
+0155f9fe-015615d7
+01561bd4-01561bf2
+01561c14-01562a5f
+01562a7f-015633a4
+015635ec-0156360a
+01563634-01564f0d
+01564f34-01565051
+01565070-0156531c
+01565339-015699f7
+0156cbe5-0156cc03
+0156cc24-0156d8af
+0156d8cd-0156e05a
+0156f54d-0156f56b
+0156f58e-01571490
+015714af-015717a4
+015717ca-015724a8
+015724ce-01572f39
+0157527d-0157529b
+015752ba-0157590c
+0157769a-015776b8
+015776de-01578a79
+01578a94-01578b63
+0157becc-0157beea
+0157bf12-0157c322
+0157c34f-0157c5a5
+0157c6d2-0157c6f0
+0157c724-0157d602
+0157d720-0157d73e
+0157d76b-0157da86
+0157dabd-0157df94
+0157e118-0157e136
+0157e163-0157e237
+0157eeab-0157eec9
+0157ef07-0157f026
+0157f4de-0157f4fc
+0157f534-0157f66c
+01585ad8-01585af6
+01585b27-01585dc8
+01585df9-015860d7
+0158610f-01586537
+0158681b-01586839
+01586868-0158a421
+0159b002-0159b020
+0159b03d-0159bd42
+0159bd67-0159bea4
+0159d0b8-0159d0d6
+0159d0ee-0159d180
+0159d609-0159d627
+0159d64b-0159d791
+0159e969-0159e987
+0159e9ad-0159eb36
+0159fac6-0159fae4
+0159fb07-0159fbe4
+015a1fcb-015a1fe9
+015a200c-015a21d9
+015a6509-015a6527
+015a6548-015a663e
+015b810d-015b812b
+015b814c-015b88df
+015ba6df-015ba6fd
+015ba728-015ba87e
+015bcd39-015bcd57
+015bcd6f-015bd0c0
+015c848b-015c84a9
+015c84dd-015c87d0
+015d1ae7-015d1b05
+015d1b24-015d1c55
+015d1d6a-015d1d88
+015d1da4-015d229e
+015de86e-015de88c
+015de8a8-015ded5f
+015e3164-015e3182
+015e31a3-015e362f
+015e4e40-015e4e5e
+015e4e84-015e4fc2
+016403e2-01640400
+01640428-016406c1
+0164698e-016469ac
+016469e0-01646adc
+01685201-0168521f
+0168523c-0168666e
+0168a45a-0168a478
+0168a4a4-0168b337
+01692873-01692891
+016928b7-01692a5d
+0169ff22-0169ff40
+0169ff66-016a02e1
+016a219b-016a21b9
+016a21e3-016a2625
+016a264d-016a2ab8
+016a3ae1-016a3aff
+016a3b2d-016a4170
+016a5c13-016a5c31
+016a5c57-016a5d00
+016a658b-016a65a9
+016a65d8-016a672e
+016be80a-016be828
+016be846-016bf08a
+016c4856-016c4874
+016c489a-016c49de
+016d1b13-016d1b31
+016d1b4a-016d22da
+016d22f1-016d25f4
+016d2609-016d341c
+016d3435-016d378d
+016d37a8-016d3d77
+016d75a9-016d75c7
+016d75ea-016d791c
+016d793a-016d87ba
+016dcacf-016dcaed
+016dcb19-016dd1f3
+016dd973-016dd991
+016dd9b6-016ddcee
+016ddd0c-016de241
+016dfc65-016dfc83
+016dfcac-016e00b8
+016e00dc-016e096f
+016e0997-016e1185
+016e11ac-016e1513
+016e1535-016e19aa
+016f78b3-016f78d1
+016f78fa-016f7cfb
+017029ee-01702a0c
+01702a29-01706d31
+01708472-01708490
+017084c5-01708c5d
+0172d079-0172d097
+0172d0c4-0172dc8e
+0172fba3-0172fbc1
+0172fc07-0172fde5
+0172fe15-01730aa9
+01730ac7-01731687
+0173c615-0173c633
+0173c655-0173d0d1
+0174b7e8-0174b806
+0174b82e-0174be6f
+0175ad93-0175adb1
+0175addb-0175b0f5
+0175b377-0175b395
+0175b3bb-0175b466
+017642c3-017642e1
+01764301-0176442e
+01769e1e-01769e3c
+01769e69-0176a02e
+0177f8fa-0177f918
+0177f942-0177fcef
+0177fd1e-017801b8
+01781cfb-01781d19
+01781d34-017854fa
+017861e7-01786205
+01786224-0178a8d5
+0178a8f8-0178aaae
+0178cfbc-0178cfda
+0178d000-0178e806
+01790560-0179057e
+0179059d-0179320c
+017969ce-017969ec
+01796a1a-0179744f
+0179ad6f-0179ad8d
+0179adc2-0179bb2e
+0179bb6a-0179becc
+0179bf08-0179c224
+017a1757-017a1775
+017a1798-017a1de1
+017a1e07-017a2391
+017a23b6-017a27b5
+017a27d8-017a3616
+017a3640-017a3aa4
+017a3acf-017a3f44
+017a3f70-017a43ec
+017a4412-017a4da1
+017a4dcd-017a6020
+017a604a-017a6275
+017a629b-017a6d7b
+017a6da7-017a7334
+017a735f-017a7ab9
+017a7ae4-017a7c52
+017a7c80-017a7d9e
+017a7dc5-017a931d
+017a9340-017a9cde
+017ad351-017ad36f
+017ad39a-017ada2a
+017b0273-017b0291
+017b02bd-017b06dd
+017d67fa-017d6818
+017d6864-017d728f
+017d72d9-017d7e2b
+017e0c78-017e0c96
+017e0cc1-017e12f9
+017eb16f-017eb18d
+017eb1c4-017ebcae
+017ec1bc-017ec1da
+017ec201-017ed1fb
+0187442b-01874449
+01874486-01874acb
+0187f9f4-0187fa12
+0187fa37-0187fc80
+018a180b-018a1829
+018a1843-018a249f
+0196eb59-0196eb77
+0196eb9e-019715af
+019715d4-01971dc4
+01976b8b-01976ba9
+01976bc9-01976e54
+01988261-0198827f
+019882aa-01988574
+0198fb47-0198fb65
+0198fb8f-0199022b
+019913fb-01991419
+01991439-01991760
+01991eb2-01991ed0
+01991eee-01993bab
+0199a06e-0199a08c
+0199a0b4-0199a473
+0199c653-0199c671
+0199c68f-019a12fb
+019a5604-019a5622
+019a564b-019a5ac9
+019a6de7-019a6e05
+019a6e32-019a79a4
+019aeb62-019aeb80
+019aeba7-019af802
+019d8440-019d845e
+019d848b-019d87c5
+01a15e4e-01a15e6c
+01a15e96-01a16257
+01a1627b-01a16526
+01a1a5af-01a1a5cd
+01a1a5f1-01a1a6d6
+01a25555-01a25573
+01a255aa-01a27282
+01a272c5-01a275a6
+01a27afd-01a27b1b
+01a27b52-01a27f19
+01a291fb-01a29219
+01a29248-01a2acc1
+01a87f63-01a87f81
+01a87fa8-01a887a5
+01a9e289-01a9e2a7
+01a9e2f1-01a9ecb1
+01a9ecf5-01a9f5e1
+01aa05b5-01aa05d3
+01aa061a-01aa0f47
+01ab952d-01ab954b
+01ab9572-01aba7b9
+01af1aa1-01af1abf
+01af1ae9-01af1c29
+01af1c58-01af1dfd
+01af1e27-01af1f0c
+01af784e-01af786c
+01af7887-01af7a87
+01af7ea6-01af7ec4
+01af7ee1-01af82a4
+01af8a1b-01af8a39
+01af8a62-01af8c1c
+01aff727-01aff745
+01aff76a-01aff86a
+01aff894-01aff9c2
+01b001ff-01b0021d
+01b00236-01b0044c
+01b027c2-01b027e0
+01b02802-01b0293e
+01b02955-01b032d8
+01b032fa-01b0442b
+01b0444c-01b0650e
+01b1b6f0-01b1b70e
+01b1b729-01b1b93f
+01b1baa5-01b1bac3
+01b1bae2-01b1bd87
+01b1bf9e-01b1bfbc
+01b1bfdb-01b1c122
+01b1c144-01b1c39c
+01b1c665-01b1c683
+01b1c69c-01b1dc64
+01b1dc7f-01b1e190
+01b1f8d0-01b1f8ee
+01b1f906-01b221eb
+01b22207-01b22a31
+01b22a48-01b230e4
+01b230fd-01b2373b
+01b23754-01b2440a
+01b25444-01b25462
+01b2547b-01b26c19
+01b28c05-01b28c23
+01b28c4a-01b29f44
+01b3032d-01b3034b
+01b3036f-01b30c76
+01b39d92-01b39db0
+01b39dde-01b3aea6
+01b3aed4-01b3cae8
+01b3cb0b-01b3f1dd
+01b59328-01b59346
+01b59371-01b594f4
+01b76ea0-01b76ebe
+01b76ee6-01b774f5
+01b89ada-01b89af8
+01b89b28-01b89d0a
+01b8aaed-01b8ab0b
+01b8ab41-01b8aff4
+01b8b029-01b8b659
+01b92589-01b925a7
+01b925c5-01b92809
+01b93d04-01b93d22
+01b93d3c-01b9438a
+01b943a4-01b94c75
+01b94c90-01b953bf
+01b953ea-01b95647
+01b95661-01b96a6a
+01b96a85-01b97156
+01b97176-01b97783
+01b9986a-01b99888
+01b998ad-01b9ae59
+01b9ae78-01b9b05b
+01b9b074-01b9b9ec
+01b9ba0a-01b9be42
+01b9be62-01b9c1f7
+01b9c21d-01b9eb3f
+01b9f07b-01b9f099
+01b9f0ce-01b9f448
+01b9ffae-01b9ffcc
+01b9ffea-01ba037b
+01ba0397-01ba05f3
+01ba060f-01ba09ef
+01ba0c32-01ba0c50
+01ba0c7c-01ba0e56
+01ba1098-01ba10b6
+01ba10d1-01ba1a45
+01ba1a63-01ba2127
+01ba214e-01ba2a3c
+01ba2a5d-01ba3086
+01ba30ad-01ba326a
+01ba3298-01ba3488
+01ba34b2-01ba3863
+01ba388b-01ba3bd0
+01ba3bf2-01ba483d
+01ba4857-01ba5be9
+01ba5c08-01ba715f
+01ba78a6-01ba78c4
+01ba78e9-01ba7d1f
+01ba9550-01ba956e
+01ba9597-01baa475
+01baa4a5-01baac58
+01baac75-01bab36f
+01bab388-01bab93a
+01bac55d-01bac57b
+01bac593-01bacfa5
+01bacfc1-01bafc1d
+01bb1200-01bb121e
+01bb123f-01bb20c2
+01bb20de-01bb2293
+01bb25bb-01bb25d9
+01bb25f7-01bb3007
+01bb301f-01bb32f7
+01bb3316-01bb3c52
+01bb3c72-01bb412c
+01bb4145-01bb42b8
+01bb42d1-01bb4552
+01bb628a-01bb62a8
+01bb62d0-01bb6769
+01bb6793-01bb6d6f
+01bb6d87-01bb7397
+01bbcea8-01bbcec6
+01bbceef-01bbe68e
+01bc5eff-01bc5f1d
+01bc5f42-01bc6836
+01bc6855-01bcc410
+01bcc88d-01bcc8ab
+01bcc8d3-01bccbd7
+01bcdd9a-01bcddb8
+01bcdddf-01bce0f3
+01bce120-01bce701
+01bce72d-01bceaa5
+01bcead2-01bcec74
+01bcec9a-01bcf21d
+01bcf23b-01bcf750
+01bd0598-01bd05b6
+01bd05db-01bd086e
+01bd1f69-01bd1f87
+01bd1fb2-01bd22f9
+01bd4d52-01bd4d70
+01bd4d98-01bd55fe
+01bd64ef-01bd650d
+01bd6535-01bd6d99
+01bd7e9d-01bd7ebb
+01bd7ef3-01bd8116
+01bd8c95-01bd8cb3
+01bd8cda-01bda6a3
+01bf8af5-01bf8b13
+01bf8b43-01bf8fcf
+01bf8ff6-01bfa3ab
+01bfb81d-01bfb83b
+01bfb85f-01bfd0d5
+01bfd0fe-01bfdec8
+01bfe218-01bfe236
+01bfe262-01bfe44e
+01bfeee9-01bfef07
+01bfef2f-01bff490
+01bff4b7-01bffc61
+01bffc92-01bffef6
+01bfff18-01c00003
+01c202b6-01c202d4
+01c202fa-01c2528e
+01c55710-01c5572e
+01c55758-01c55865
+01c5588f-01c5597e
+01c9862b-01c98649
+01c9867a-01c989c7
+01c98c39-01c98c57
+01c98c78-01c99d19
+01c99d41-01c9a8af
+01cd53f7-01cd5415
+01cd5438-01cd56db
+01cd8d01-01cd8d1f
+01cd8d4b-01cd8e3a
+01ce1e3b-01ce1e59
+01ce1e6f-01ce20de
+01ce48ed-01ce490b
+01ce492d-01ce4d1e
+01cfa96c-01cfa98a
+01cfa9a8-01cfaa7a
+01d23e4b-01d23e69
+01d23e9c-01d24188
+01d241b9-01d2442a
+01d3507a-01d35098
+01d350c1-01d351f8
+01d35225-01d3585b
+01d35c72-01d35c90
+01d35cbe-01d35fd3
+01d36fda-01d36ff8
+01d3702a-01d3895c
+01d3c4be-01d3c4dc
+01d3c50f-01d3c845
+01d3c878-01d3cb04
+01d3f1d6-01d3f1f4
+01d3f231-01d3f68d
+01d3f6be-01d46f6f
+01d48939-01d48957
+01d4898b-01d48b83
+01d48eca-01d48ee8
+01d48f1a-01d49b88
+01d4c621-01d4c63f
+01d4c670-01d4c73c
+01da9524-01da9542
+01da9563-01da9c62
+01daa518-01daa536
+01daa54f-01daa8c8
+01dd94d5-01dd94f3
+01dd950f-01dd9711
+01dd9732-01dd99b9
+01dd99d6-01dda07f
+01dda097-01dda2e2
+01dda408-01dda426
+01dda441-01dda88e
+01ddb5a3-01ddb5c1
+01ddb5e2-01ddb7da
+01ddc0ef-01ddc10d
+01ddc131-01ddc30b
+01ddcf51-01ddcf6f
+01ddcf97-01dde021
+01dde4e4-01dde502
+01dde534-01ddf194
+01ddf1be-01ddfe9e
+01de4dcd-01de4deb
+01de4e27-01de52c2
+01de52ec-01de617a
+01e1bbdb-01e1bbf9
+01e1bc23-01e1bd6d
+01e5f90d-01e5f92b
+01e5f952-01e5fc46
+01ea336c-01ea338a
+01ea33ba-01ea3e67
+01eb3976-01eb3994
+01eb39ca-01eb448d
+01eb88f4-01eb8912
+01eb8947-01eb94e7
+01ec757a-01ec7598
+01ec75ce-01ec7b0f
+01ec7b44-01ec81fe
+01ec9751-01ec976f
+01ec9791-01ec9bdb
+01ec9bfd-01ec9f5c
+01ecb39a-01ecb3b8
+01ecb3dc-01ecb5f6
+01ecb619-01ecb96a
+01ecccaf-01eccccd
+01ecccee-01eccf04
+01eccf26-01ecd291
+01ecd2b5-01ecd513
+01ecd536-01ecd89a
+01ed00a7-01ed00c5
+01ed00e3-01ed0350
+01ed19af-01ed19cd
+01ed19e7-01ed20ac
+01ed2a60-01ed2a7e
+01ed2a99-01ed3240
+01ee074c-01ee076a
+01ee0796-01ee09b6
+01f1bfe1-01f1bfff
+01f1c027-01f1c921
+01f1d9cb-01f1d9e9
+01f1da11-01f1e309
+01f2b363-01f2b381
+01f2b3b4-01f2b69b
+01f2b6c1-01f2b89b
+01f36718-01f36736
+01f36758-01f369c4
+01f474a9-01f474c7
+01f474eb-01f49278
+01f4a602-01f4a620
+01f4a64c-01f4a8b9
+01f4bcb7-01f4bcd5
+01f4bcfc-01f4c574
+01f4c864-01f4c882
+01f4c8a4-01f4c9b8
+01fd4bda-01fd4bf8
+01fd4c18-01fd6293
+01fd62b9-01fd8ca8
+01fd9f82-01fd9fa0
+01fd9fc2-01fdbdb5
+01fe0d8d-01fe0dab
+01fe0dd9-01fe0f72
+01fe0f9e-01fe279e
+01fe9690-01fe96ae
+01fe96dd-01fe9943
+01feb65c-01feb67a
+01feb6a2-01feba90
+01fec839-01fec857
+01fec876-01fecf16
+01feeddd-01feedfb
+01feee23-01fef5fd
+01fef628-01fefc3c
+01ff1ea9-01ff1ec7
+01ff1ef0-01ff293b
+01ff3522-01ff3540
+01ff3567-01ff5387
+0202c29f-0202c2bd
+0202c2ee-0202d843
+0202fc36-0202fc54
+0202fc78-020315a2
+02033722-02033740
+0203376b-020346e0
+02034dc9-02034de7
+02034e0e-020358c5
+020379d1-020379ef
+02037a10-020385c2
+0204be42-0204be60
+0204be76-0204c177
+0204ef46-0204ef64
+0204ef86-0204f3e7
+0204f8cc-0204f8ea
+0204f91a-0204fb7b
+0204fbb3-02050075
+020500aa-0205074e
+02050778-020516e0
+02051711-02051911
+02051938-02051d6a
+02051d92-02052649
+02052678-02052fb2
+02052fdb-02054b3b
+02054b58-020588b2
+020763d1-020763ef
+0207640f-02076ead
+0207700c-0207702a
+02077056-02077289
+020772a6-020776d9
+02079898-020798b6
+020798e4-020799fe
+02079d26-02079d44
+02079d76-0207a0d7
+0207a0fa-0207ae3c
+02096c17-02096c35
+02096c68-02096fb8
+02096fe9-020972b6
+020aa6ea-020aa708
+020aa731-020aa88e
+020aa8bb-020ab005
+020ab491-020ab4af
+020ab4dd-020ab857
+020acaab-020acac9
+020acafb-020ae71e
+020b2a31-020b2a4f
+020b2a82-020b2e1c
+020b2e4f-020b3133
+020b5df1-020b5e0f
+020b5e4c-020b6324
+020b6355-020beda2
+020c0b01-020c0b1f
+020c0b53-020c0db0
+020c1160-020c117e
+020c11b0-020c1f77
+020ddb0e-020ddb2c
+020ddb47-020e097b
+020e0d83-020e0da1
+020e0dc3-020e1f1d
+020e1f46-020e2739
+020e31ee-020e320c
+020e322f-020e5e10
+020e5f82-020e5fa0
+020e5fd4-020e6e81
+020e6eb8-020e807a
+020e80ab-020e8ebd
+020e8ef3-020e9fd9
+020ee28b-020ee2a9
+020ee2cc-020ee53b
+020ef001-020ef01f
+020ef04d-020ef9a3
+020ef9d0-020f104c
+020f1a7f-020f1a9d
+020f1aca-020f2358
+020f2bc0-020f2bde
+020f2c12-020f3ae2
+020f3b0d-020f3f9a
+020f4c7c-020f4c9a
+020f4cc9-020f54ed
+020f551b-020f5dad
+020f661a-020f6638
+020f6663-020f7546
+020f7570-020f810b
+020f8135-020f890e
+020f892d-020f935e
+020f98a0-020f98be
+020f98e7-020fabe6
+020fc099-020fc0b7
+020fc0e8-020fd7c2
+020fd7e3-020fe19a
+020fe604-020fe622
+020fe645-020ff266
+020ff292-020ff605
+020ff629-020ffeb0
+021062b1-021062cf
+021062f4-02106b90
+02106bb9-02107db8
+0210b88e-0210b8ac
+0210b8d2-0210bdfe
+0210be1c-0210d702
+0210ec9c-0210ecba
+0210ece0-0210fa23
+02110a5f-02110a7d
+02110aa6-02111b88
+021139c8-021139e6
+02113a01-02114f2c
+02116696-021166b4
+021166d8-02116d32
+02116d69-02117a5f
+02117a94-021184bf
+021184de-02119284
+0211a25e-0211a27c
+0211a29e-0211a5d1
+0211a5f1-0211da57
+0211e008-0211e026
+0211e04f-0211e29f
+0212610f-0212612d
+02126151-0212b8bf
+0212b8e3-0212ec3e
+0213f8dc-0213f8fa
+0213f91a-0213fe7d
+02163e5d-02163e7b
+02163ea4-0216423a
+021649ea-02164a08
+02164a28-02164d9e
+021650e4-02165102
+02165121-02165b29
+02165eb1-02165ecf
+02165ef8-02166296
+02166add-02166afb
+02166b25-02166dcc
+02167d44-02167d62
+02167d8f-0216843a
+0216846a-02168c30
+02168c60-0216941e
+0216944f-02169c1b
+02169c4c-0216a40f
+0216a448-0216a61f
+0216a647-0216cf13
+02176afc-02176b1a
+02176b44-02176dc9
+02242fbc-02242fda
+0224300a-02243c40
+0225b6ea-0225b708
+0225b73d-0225c44f
+0227799c-022779ba
+022779db-02277c0e
+023b45ea-023b4608
+023b4627-023b4e4d
+0244c164-0244c182
+0244c1a2-0244ce2f
+024bb9ae-024bb9cc
+024bb9ef-024bead6
+028bd62c-02a4aeee
+02d9f4b2-02f2cd74
+
+[fontmanager.dll]
+config: refreshlib "${JAVA_HOME}\bin\fontmanager.dll"
+00000000-00009000
+0000b000-0000c000
+0000f000-0002a000
+0002b000-0002c000
+0002d000-00035000
+00036000-00037000
+00038000-0003b000
+0004b000-00052000
+
+[fontconfig.bfc]
+config: refresh "${JAVA_HOME}\lib\fontconfig.bfc"
+00000000-00000d96
+
+[nio.dll]
+config: refreshlib "${JAVA_HOME}\bin\nio.dll"
+00000000-00008000
+
+[net.dll]
+config: refreshlib "${JAVA_HOME}\bin\net.dll"
+00000000-00009000
+0000a000-00012000
+
+[lucidasansregular.ttf]
+config: refresh "${JAVA_HOME}\lib\fonts\lucidasansregular.ttf"
+00000000-00000182
+000806a0-00080abe
+
+[lucidatypewriterregular.ttf]
+config: refresh "${JAVA_HOME}\lib\fonts\lucidatypewriterregular.ttf"
+00000000-0000013c
+00035dcc-00036177
+
+[lucidabrightregular.ttf]
+config: refresh "${JAVA_HOME}\lib\fonts\lucidabrightregular.ttf"
+00000000-00000152
+000434b8-0004382a
+
+[lucidasansdemibold.ttf]
+config: refresh "${JAVA_HOME}\lib\fonts\lucidasansdemibold.ttf"
+00000000-000000fc
+00000784-000007da
+00046ed8-00047323
+
+[lucidabrightitalic.ttf]
+config: refresh "${JAVA_HOME}\lib\fonts\lucidabrightitalic.ttf"
+00000000-00000152
+0000f2c8-0000f646
+
+[lucidatypewriterbold.ttf]
+config: refresh "${JAVA_HOME}\lib\fonts\lucidatypewriterbold.ttf"
+00000000-00000132
+000337b4-00033b68
+
+[lucidabrightdemibold.ttf]
+config: refresh "${JAVA_HOME}\lib\fonts\lucidabrightdemibold.ttf"
+00000000-00000152
+0000db04-0000de8e
+
+[lucidabrightdemiitalic.ttf]
+config: refresh "${JAVA_HOME}\lib\fonts\lucidabrightdemiitalic.ttf"
+00000000-00000152
+0000dc64-0000e009
+
+[resources.jar]
+config: refresh "${JAVA_HOME}\lib\resources.jar"
+000d37a9-000d37c7
+000d37ef-000d60b3
+000dc745-000dc763
+000dc77f-000f477f
+0010a99a-001107f4
+
+[dcpr.dll]
+config: refreshlib "${JAVA_HOME}\bin\dcpr.dll"
+00000000-00022000
+
+[javaw.exe]
+config: refreshlib "${JAVA_HOME}\bin\javaw.exe"
+00000000-00005000
+00006000-0001d000
+
+[javaws.jar]
+config: refresh "${JAVA_HOME}\lib\javaws.jar"
+00000000-000000ea
+00000107-00000209
+00002a5c-00002a7a
+00002a99-00002d75
+00002d98-000031e2
+000031fd-0000351f
+00003549-0000365f
+00003727-00003745
+00003768-00003b03
+00003b2d-00003c9f
+0000a877-0000a895
+0000a8c2-0000af96
+0000be60-0000be7e
+0000beab-0000c693
+0000d90f-0000d92d
+0000d949-000119c6
+000119e9-00011d26
+00011d57-00011d75
+00011d98-000126d6
+000126fe-00012cb3
+00012cdb-00013efd
+00013f25-00016a4a
+00016a72-00019967
+00019c75-00019c93
+00019cb6-00022199
+000221c3-00025b56
+00025b7a-00025e87
+00026983-000269a1
+000269c6-0002a918
+0002a93c-0002acbb
+0002b3d6-0002b3f4
+0002b41c-0002b815
+0002b83d-0002c101
+0002c129-0002e43f
+0002e464-0002e531
+0002e544-0002ea03
+0002ea2b-0002fef9
+0002ff1e-00030326
+0003034c-000307d3
+000307f7-00031021
+00031032-000316ae
+000316d2-00031bb8
+00031bdc-00038ff0
+00039014-0003dad2
+0003daf5-0003defe
+0003df2e-0003e135
+0003e156-00044cae
+00045af2-00045b10
+00045b2f-00045de0
+000467af-000467cd
+000467ea-0004dae0
+0004df65-0004df83
+0004df86-0004dfa4
+0004dfab-00056ef3
+00057321-0005733f
+00057367-0005ac2b
+0005ac5a-0005adf9
+0005ae14-0005b1c1
+0005b1da-00061e59
+00067e45-00067e63
+00067e89-0006811c
+00068475-00068493
+000684bf-000687f6
+0006881d-0006ac4f
+0006ac81-0006b68b
+0006bffd-0006c01b
+0006c044-0006da83
+0007d66b-0007d689
+0007d6b7-0007d8c2
+0007d8f0-0007dd27
+0007dd53-0007e5cd
+0007fb8f-0007fbad
+0007fbde-00080498
+000804bc-00081107
+000831c3-000831e1
+0008320f-00083e91
+00083eb8-00084d5e
+00084d82-000854dc
+00085b48-00085b66
+00085b8b-00086445
+00086476-00087021
+0008777c-0008779a
+000877c8-000879dc
+00087a02-00087d9e
+0008898d-000889ab
+000889d1-0008c048
+0008c709-0008c727
+0008c755-0008c9bb
+0008c9e9-0008ce93
+0008cebf-0008d898
+0008f0e7-0008f105
+0008f136-0008fadb
+0008faff-00090845
+000922d9-000922f7
+0009232e-000925d7
+000925fa-00093aa0
+00093ac7-00094b3c
+00094b60-000953b9
+00095aac-00095aca
+00095aef-00096547
+00096578-000972f1
+00097b9b-00097bb9
+00097be7-00097e5a
+00097e80-000982b4
+00098fcc-00098fea
+00099010-0009cdfb
+000a3afc-000a3b1a
+000a3b51-000a3e61
+000a3e84-000a4c7a
+000aa80d-000aa82b
+000aa84d-000ad3f8
+000ad41c-000adb49
+000adb6f-000ade21
+000ae5a7-000ae5c5
+000ae5e8-000ae860
+000ae881-000af36b
+000af398-000af68b
+000af6b8-000afae1
+000afb0e-000afe4c
+000afe79-000b0476
+000b0f55-000b0f73
+000b0f9e-000b47f7
+000bc720-000bc73e
+000bc76d-000bcdf1
+000bce1e-000be1f7
+000be21b-000be547
+000be56b-000c98de
+000d49b4-000d49d2
+000d49da-000dcbd6
+
+[deploy.jar]
+config: refresh "${JAVA_HOME}\lib\deploy.jar"
+00000027-00000045
+00000059-000000a3
+00008da9-00008dc7
+00008df1-00009481
+0000a71b-0000a739
+0000a763-0000aec1
+0000b20a-0000b228
+0000b24b-0000b72c
+0000b903-0000b921
+0000b943-0000bb7a
+0000bb9c-0000be74
+0000be98-0000c167
+0000c189-0000c463
+0000c656-0000c674
+0000c696-0000c863
+0000cd21-0000cd3f
+0000cd5f-000169aa
+0001726c-0001728a
+000172bf-00019498
+0001955d-0001957b
+000195a3-0001992d
+00019955-00019e2f
+00019e56-0001a402
+0001a429-0001a952
+0001a979-0001ac68
+0001aee3-0001af01
+0001af28-00028f82
+0002913f-0002915d
+0002918b-0002a7c4
+0002a800-0002cecb
+0002da64-0002da82
+0002daa4-0004125a
+00041283-00041408
+0004142b-0004816e
+0004cc3e-0004cc5c
+0004cc83-0004ea09
+0004f20f-0004f22d
+0004f254-0005534f
+00055ccd-00055ceb
+00055d10-00055e4e
+00056721-0005673f
+0005676a-00059212
+0005923b-000593d8
+00059452-00059470
+00059496-00059d80
+00059db9-00059dd7
+00059e0c-00060fa7
+00061a93-00061ab1
+00061ad6-00061c3d
+000625ee-0006260c
+00062637-00065028
+00065794-000657b2
+000657d8-0006782d
+0006b7ca-0006b7e8
+0006b813-0006b9ca
+0006e05a-0006e078
+0006e0ad-0006eba1
+0006ebda-0006f560
+0006f637-0006f655
+0006f686-0006f7ac
+0007003f-0007005d
+0007008c-00071f0f
+00071f40-0007243c
+00072fa5-00072fc3
+00072ff7-00073275
+000732a7-000751f5
+00079af3-00079b11
+00079b3c-00079d1c
+0007c9cf-0007c9ed
+0007ca22-0007d6b7
+0007d6f0-0007e1c3
+0007f369-0007f387
+0007f3c5-0007f6c1
+0007f6f5-000803b8
+0009f28b-0009f2a9
+0009f2d9-0009f7c3
+000b178c-000b17aa
+000b17d2-000b261c
+000b2baa-000b2bc8
+000b2bec-000b2c8c
+000b3295-000b32b3
+000b32dc-000d1a66
+0022d083-0022d0a1
+0022d0d2-0022d26f
+0024832d-0024834b
+00248379-002497be
+00249d85-00249da3
+00249dc8-00249ea2
+0024c1ca-0024c1e8
+0024c213-0024c967
+0025a760-0025a77e
+0025a7bc-0025adfa
+0025ae2b-0025c6ae
+00261254-00261272
+00261297-00261395
+00263a1d-00263a3b
+00263a66-0026427a
+00273bf1-00273c0f
+00273c4d-00274359
+0027438a-00275e6b
+0027ee32-0027ee50
+0027ee7b-0027f2d9
+0027f305-0027f3bd
+0028744e-0028746c
+00287498-002879de
+00287e07-00287e25
+00287e4a-00288215
+00288241-0028897b
+00288c3c-00288c5a
+00288c88-002896b7
+0028ca37-0028ca55
+0028ca7f-0028db09
+0028db36-0028e8eb
+002931fb-00293219
+0029323d-002932d4
+002932f6-002933cc
+0029b2a7-0029b2c5
+0029b2ea-0029b416
+0029c337-0029c355
+0029c378-0029d36e
+0029d399-0029d48b
+0029d4b1-0029d648
+0029d66c-0029dafc
+0029db2a-0029dbcc
+002a6145-002a6163
+002a616d-002a618b
+002a618f-002a96af
+002a9f53-002a9f71
+002a9f9e-002aa141
+002aa16e-002aa683
+002aa6b0-002aa87a
+002aa8a5-002ae84c
+002aeca8-002aecc6
+002aecf1-002af00e
+002af03b-002af148
+002af16f-002b0352
+002b094c-002b096a
+002b0998-002b101b
+002b33f4-002b3412
+002b3436-002b34d8
+002b8dda-002b8df8
+002b8e32-002b8f0c
+002b903e-002b905c
+002b9083-002b9721
+002ba80b-002ba829
+002ba84f-002bacac
+002bb097-002bb0b5
+002bb0de-002bb830
+002bb858-002bb8c9
+002bbfc9-002bbfe7
+002bc01a-002bd0ac
+002bd0d3-002c13de
+002c4081-002c409f
+002c40c7-002c48d2
+002c48f6-002c4f5c
+002c4f7e-002c5890
+002c5d38-002c5d56
+002c5d80-002c625b
+002c668d-002c66ab
+002c66d4-002cd46c
+002cd491-002cd602
+002cd896-002cd8b4
+002cd8e8-002cdca9
+002cdcc8-002cfaef
+002cfb13-002cfe4c
+002cfe73-002cfef0
+002d0366-002d0384
+002d03a7-002d21f4
+002d2217-002d3121
+002d3148-002d37a7
+002d37d5-002d3aca
+002d3aef-002d4846
+002d4c24-002d4c42
+002d4c68-002d5015
+002d5035-002d50d2
+002d50f7-002d55e1
+002d560d-002d5a37
+002d5a5b-002d67c1
+002d67e1-002d726c
+002d7293-002d766e
+002d7690-002d8f3f
+002d9394-002e867c
+002ea0a5-002ea0c3
+002ea0eb-002eaaa7
+002eaacb-002eb23a
+002eb25c-002ebcd9
+002ec226-002ec244
+002ec26e-002ec814
+002eccfc-002ecd1a
+002ecd43-002f0b3e
+002f0c52-002f0c70
+002f0c99-002f0fd6
+002f0ffa-002f1590
+002f1c1c-002f1c3a
+002f1c76-002f209e
+002f20db-002f250a
+002f253b-002f2dd0
+002f2e0d-002f323c
+002f3264-002f46a6
+002f4b98-002f4bb6
+002f4bea-002f503b
+002f505a-002f73c1
+002f73e5-002f7781
+002f7f71-002f7f8f
+002f7fb9-002f82cc
+002f84d0-002f84ee
+002f850f-002fa15b
+002fa17e-002fb338
+002fb35f-002fbade
+002fbb0c-002fbe9b
+002fbec0-002fcd25
+002fd1ab-002fd1c9
+002fd1ef-002fd658
+002fd678-002fd739
+002fd75e-002fdd23
+002fdd4f-002fe24f
+002fe273-002ff1df
+002ff1ff-002ffe4c
+002ffe73-003002ff
+00300321-0030202c
+0030250f-003117f7
+
+[deploy.dll]
+config: refreshlib "${JAVA_HOME}\bin\deploy.dll"
+00000000-00013000
+
+[regutils.dll]
+config: refreshlib "${JAVA_HOME}\bin\regutils.dll"
+00000000-00003000
+00006000-00008000
+00009000-0000b000
+00010000-00012000
+00014000-00016000
+00017000-0001c000
+0001d000-00022000
+00023000-00024000
+00027000-00031000
+
+[plugin.jar]
+config: refresh "${JAVA_HOME}\lib\plugin.jar"
+00000027-00000045
+00000059-000000a3
+000005e2-00000600
+00000638-00000840
+0000087f-00000bce
+00000c12-00000d64
+00000da8-000010b1
+0000146b-00001489
+000014ae-00001a2c
+00001a4e-00001edb
+00011f86-00011fa4
+00011fc7-000128e9
+00055055-00055073
+000550a7-00057168
+00059b5e-00059b7c
+00059b98-0005b81e
+0005d7e4-0005d802
+0005d827-0005d8b3
+000729f5-00072a13
+00072a4d-00072e9d
+00072ed5-000744dc
+00074505-000746b6
+00075d0e-00075d2c
+00075d4e-00077032
+0007705d-000772df
+0007730a-00078230
+00078259-00078b6b
+0007b31c-0007b33a
+0007b383-0007b7c8
+0007b811-0007bb45
+0007bb78-0007bf93
+0008104e-0008106c
+00081094-00081294
+00081af2-00081b10
+00081b42-0008258d
+0008ecc1-0008ecdf
+0008ed02-0008edd3
+00090727-00090745
+0009076b-00090e39
+00090e5f-000911d9
+000911ff-00091412
+00091669-00091687
+000916c3-000921dc
+00092200-000940de
+000a9faa-000a9fc8
+000a9fea-000aa5c7
+000ab71b-000ab739
+000ab75e-000ab891
+000abd4c-000abd6a
+000abda5-000ac103
+000acb53-000acb71
+000acb94-000ade21
+000ae83a-000ae858
+000ae87d-000b03c2
+000b03e0-000b080b
+000b0827-000b0b54
+000b0b75-000b109a
+000c67d3-000c67f1
+000c681f-000c75f7
+000c7ca3-000c7cc1
+000c7cec-000c9475
+000c9586-000c95a4
+000c95da-000ca529
+000ca566-000ca7d9
+000ca809-000cbe2e
+000cc008-000cc026
+000cc055-000cc2c3
+000cc2f0-000cc9b1
+000ccc39-000ccc57
+000ccc84-000cce84
+000cceaf-000cf07c
+000cf0ac-000cf779
+000d0519-000d0537
+000d055f-000d07c2
+000d0dfb-000d0e19
+000d0e42-000d1051
+000d108a-000d1aa3
+000d1aca-000d4e41
+000d542c-000d544a
+000d5476-000d63cb
+000d63f9-000d6ad0
+000d722c-000d724a
+000d727b-000d772a
+000d7ef5-000d7f13
+000d7f42-000d9910
+000d9cd5-000d9cf3
+000d9d1e-000d9ece
+000e2d8d-000e2dab
+000e2dd6-000e30a1
+000e34e4-000e3502
+000e352b-000e648d
+000e81e9-000e8207
+000e8244-000e8ba3
+000e8bc8-000ef6ed
+000ef8ca-000ef8e8
+000ef909-000efe7f
+000f020e-000f022c
+000f0258-000f0857
+000f0884-000f0a90
+000f0abd-000f12fa
+000f1327-000f172e
+000f175b-000f1b0d
+000f1b3a-000f1e5a
+000f242e-000f244c
+000f2480-000f2920
+000f2958-000f2f12
+000f2f3d-000f6734
+000f6765-000f7a72
+000f7a9b-000f7d60
+000f7d8a-000f80bc
+000f80e6-000f843e
+000f8468-000f881d
+000f8ce4-000f8d02
+000f8d2c-000f901f
+000f9049-000f9434
+000f9e17-000f9e35
+000f9e5e-000fa149
+000fa667-000fa685
+000fa6ae-000fa92a
+000fa953-000fabbf
+000fabe8-000faf90
+000fafb9-000fb419
+000fb8d2-000fb8f0
+000fb919-000fbdf9
+000fbe32-000fc0d5
+000fc79c-000fc7ba
+000fc7f3-000fdd3d
+000fdd7e-000fe3ba
+000fe8c9-000fe8e7
+000fe928-000fee09
+000ff2eb-000ff309
+000ff34a-000ff6e0
+001001e8-00100206
+00100245-00102984
+001029bc-00102cf6
+00102d2c-001033ae
+001033e5-00103e0e
+0010426e-0010428c
+001042b3-0010d4b8
+0011402b-00114049
+00114078-00114eb8
+00114edd-001153fa
+0011542a-00115fe9
+0011641e-0011643c
+0011645c-00116c19
+00116c38-00116e25
+00118df1-00118e0f
+00118e3e-00119930
+0011a1e7-0011a205
+0011a235-0011a502
+0011a530-0011b6d3
+0011d527-0011d545
+0011d571-0011e5a7
+0011e5d6-0011ead1
+00122727-00122745
+00122773-00122e08
+00124207-00124225
+00124260-00124908
+00124957-00124dc1
+00124e06-00125180
+001251cb-001254e5
+00128a59-00128a77
+00128acf-0012a572
+0012a5ca-0012af4f
+0012c744-0012c762
+0012c7b2-0012cf7f
+0012cfbd-0012fed4
+0012ff13-001300c2
+001300f2-00132957
+00133138-00133156
+00133192-00134bc9
+00134bff-00134db6
+00134dea-0013632b
+0013651a-00136538
+0013657b-0013687c
+0013758c-001375aa
+001375d6-00137e82
+00137eb1-00137f57
+00138a28-00138a46
+00138a78-00138ed9
+00138f0a-001398cc
+001398f8-00139ac2
+00139aec-00139f0f
+00139f39-0013a68b
+0013bf55-0013bf73
+0013bf9d-0013c3e8
+0013c421-0013c940
+0013c978-0013d5e3
+0013ee5e-0013ee7c
+0013eeb8-00140810
+0014084a-00141a7c
+00141aa4-001486cb
+001486fc-00148c19
+001492a7-001492c5
+001492f2-00149cfc
+00149d33-0014a35c
+001740de-001740fc
+00174128-001750e1
+00175108-001753ad
+001753de-0017580f
+00175835-00175d3c
+00175d65-001763a4
+001763d0-0017679e
+001767c8-00176b17
+00176b49-001772a7
+001772de-00177804
+00177831-00177c68
+00177c91-0017816a
+00178194-00178369
+00178e95-00178eb3
+00178ee0-001797ba
+001797e4-00179e7d
+00179eac-0017a2c3
+0017a2f2-0017a866
+0017a895-0017ac89
+0017acbd-0017af58
+0017af8b-0017b5f8
+0017b630-0017b8ae
+0017b8de-0017be35
+0017be66-0017c459
+0017c48c-0017c6b6
+0017c6e1-0017c8d4
+0017c900-0017caf5
+0017cb16-0017ce94
+0017cec3-0017d22f
+0017d25a-0017da5e
+0017da7c-0017eafa
+0017eb21-0017ec03
+0017ec2b-00180b78
+00180ba4-00181142
+00181173-001814d5
+001814ff-00181d08
+00181d37-0018212c
+00182157-0018272f
+0018274e-00182e17
+00182e4b-00183158
+0018317c-0018378f
+001837bd-00183b69
+00183b9e-00183f06
+00183f2f-00184509
+00184536-00184938
+00184963-00184cf7
+00184d23-00184f18
+00184f47-001851db
+00185207-00185c76
+00185ca4-00185e6e
+00185e99-0018616e
+001861a9-001864f3
+0018652f-0018654d
+00186592-00186c29
+00186c5f-00187485
+001874c2-00187a31
+00187a69-0018857d
+001885aa-00188712
+00188746-00188c9c
+0018999c-001899ba
+001899e5-00189e9a
+00189ec7-0018a250
+0018ac72-0018ac90
+0018acc0-0018b127
+0018b159-0018b3dc
+0018b6af-0018b6cd
+0018b6f1-0018cc6c
+0018d65f-0018d67d
+0018d6a3-0018e1a0
+0018f4be-0018f4dc
+0018f4ff-0018f6ed
+0018f710-0018f8fd
+0018f91e-001a1d4a
+001bd963-001cf485
+
+[jsse.jar]
+config: refresh "${JAVA_HOME}\lib\jsse.jar"
+000831ee-000889d9
+
+[dnsns.jar]
+config: refresh "${JAVA_HOME}\lib\ext\dnsns.jar"
+00001bce-00002032
+
+[blacklist]
+config: refresh "${JAVA_HOME}\lib\security\blacklist"
+00000000-0000005c
+
+[jp2native.dll]
+config: refreshlib "${JAVA_HOME}\bin\jp2native.dll"
+00000000-00005000
+
+[jpeg.dll]
+config: refreshlib "${JAVA_HOME}\bin\jpeg.dll"
+00000000-00001000
+00003000-0000f000
+00010000-00023000
+
+[localedata.jar]
+config: refresh "${JAVA_HOME}\lib\ext\localedata.jar"
+000c8d24-000cb1bd
+
Index: AE/installer2/setup_win/JRE/lib/deploy/jqs/jqsmessages.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/deploy/jqs/jqsmessages.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/deploy/jqs/jqsmessages.properties	(revision 613)
@@ -0,0 +1,48 @@
+#
+# @(#)messages.properties       1.6 05/05/18
+#
+# Copyright (c) 2007, Oracle and/or its affiliates. All rights reserved.
+# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
+#
+
+message.jqs.registered = JQS service successfully installed.
+error.jqs.register = Unable to install JQS service.
+
+message.jqs.unregistered = JQS service successfully removed.
+error.jqs.unregister = Unable to remove JQS service.
+
+message.jqs.enabled = JQS service enabled successfully.
+error.jqs.enable = Unable to enable JQS service.
+
+message.jqs.disabled = JQS service disabled successfully.
+error.jqs.disable = Unable to disable JQS service.
+
+message.jqs.paused = JQS service paused successfully.
+error.jqs.pause = Unable to pause JQS service.
+
+message.jqs.resumed = JQS service resumed successfully.
+error.jqs.resume = Unable to resume JQS service.
+
+error.no.admin.privileges = JQS requires Administrator privileges.
+
+
+# JQS usage: '\' is a joining of two sentence, which are connected including
+# the invisible character '\n'.
+message.jqs.usage = Usage: jqs <mode> [<options>] \
+\
+The following modes are supported: \
+  -help         print this help message and exit \
+  -register     install JQS service and register browser startup detectors \
+  -unregister   uninstall JQS service and unregister startup detectors \
+  -enable       enable JQS service \
+  -disable      disable JQS service \
+  -pause        pause prefetching \
+  -resume       resume prefetching \
+  -version      print version of the associated Java Runtime \
+\
+Options include: \
+  -config <config>      set JQS configuration file \
+  -profile <profile>    set JQS profile file \
+  -logfile <logfile>    set JQS log file \
+  -verbose <level>      verbose operation \
+\n
Index: AE/installer2/setup_win/JRE/lib/deploy/messages.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/deploy/messages.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/deploy/messages.properties	(revision 613)
@@ -0,0 +1,57 @@
+#
+# @(#)messages.properties	1.6 05/05/18
+#
+# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
+# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
+#
+
+error.internal.badmsg=internal error, unknown message
+error.badinst.nojre=Bad installation. No JRE found in configuration file
+error.badinst.execv=Bad installation. Error invoking Java VM (execv)
+error.badinst.sysexec=Bad installation. Error invoking Java VM (SysExec) 
+error.listener.failed=Splash: sysCreateListenerSocket failed
+error.accept.failed=Splash: accept failed
+error.recv.failed=Splash: recv failed
+error.invalid.port=Splash: didn't revive a valid port
+error.read=Read past end of buffer
+error.xmlparsing=XML Parsing error: wrong kind of token found
+error.splash.exit=Java Web Start splash screen process exiting .....\n
+error.winsock=tLast WinSock Error: 
+error.winsock.load=Couldn't load winsock.dll
+error.winsock.start=WSAStartup failed
+error.badinst.nohome=Bad installation: JAVAWS_HOME not set 
+error.splash.noimage=Splash: couldn't load splash screen image
+error.splash.socket=Splash: server socket failed
+error.splash.cmnd=Splash: unrecognized command
+error.splash.port=Splash: port not specified
+error.splash.send=Splash: send failed
+error.splash.timer=Splash: couldn't create shutdown timer
+error.splash.x11.open=Splash: Can't open X11 display
+error.splash.x11.connect=Splash: X11 connection failed
+# Javaws usage: '\' is a joining of two sentence,which are connected including
+# the invisible character '\n'.
+message.javaws.usage=\
+Usage:\tjavaws [run-options] <jnlp-file>	\
+      \tjavaws [control-options]		\
+						\
+where run-options include:			\
+  -verbose       \tdisplay additional output	\
+  -offline       \trun the application in offline mode	\
+  -system        \trun the application from the system cache only\
+  -Xnosplash     \trun without showing a splash screen	\
+  -J<option>     \tsupply option to the vm	\
+  -wait          \tstart java process and wait for its exit	\
+	\
+control-options include:	\
+  -viewer        \tshow the cache viewer in the java control panel\
+  -uninstall     \tremove all applications from the cache\
+  -uninstall <jnlp-file>              \tremove the application from the cache	\
+  -import [import-options] <jnlp-file>\timport the application to the cache		\
+									\
+import-options include:						\
+  -silent        \timport silently (with no user interface)	\
+  -system        \timport application into the system cache	\
+  -codebase <url>\tretrieve resources from the given codebase	\
+  -shortcut      \tinstall shortcuts as if user allowed prompt	\
+  -association   \tinstall associations as if user allowed prompt	\
+\n
Index: AE/installer2/setup_win/JRE/lib/deploy/messages_de.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/deploy/messages_de.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/deploy/messages_de.properties	(revision 613)
@@ -0,0 +1,57 @@
+#
+# @(#)messages.properties	1.6 05/05/18
+#
+# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
+# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
+#
+
+error.internal.badmsg=interner Fehler, unbekannte Nachricht
+error.badinst.nojre=Fehlerhafte Installation. Kein JRE in Konfigurationsdatei gefunden.
+error.badinst.execv=Fehlerhafte Installation. Fehler beim Aufruf von Java VM (execv)
+error.badinst.sysexec=Fehlerhafte Installation. Fehler beim Aufruf von Java VM (SysExec) 
+error.listener.failed=Eingangsbildschirm: Fehler sysCreateListenerSocket
+error.accept.failed=Eingangsbildschirm: Fehler accept
+error.recv.failed=Eingangsbildschirm: Fehler recv
+error.invalid.port=Eingangsbildschirm: Reaktivierung eines g\u00fcltigen Ports nicht m\u00f6glich
+error.read=\u00dcber das Pufferende hinausgelesen
+error.xmlparsing=XML-Analysefehler: falschen Token-Typ gefunden
+error.splash.exit=Der Prozess f\u00fcr den Eingangsbildschirm von Java Web Start wird beendet .....\n
+error.winsock=Fehler tLast WinSock: 
+error.winsock.load=winsock.dll konnte nicht geladen werden.
+error.winsock.start=Fehler WSAStartup
+error.badinst.nohome=Fehlerhafte Installation: JAVAWS_HOME ist nicht gesetzt. 
+error.splash.noimage=Eingangsbildschirm: Eingangsbildschirmbild konnte nicht geladen werden.
+error.splash.socket=Eingangsbildschirm: Fehler Server-Socket
+error.splash.cmnd=Eingangsbildschirm: Befehl nicht erkannt
+error.splash.port=Eingangsbildschirm: Port nicht angegeben
+error.splash.send=Eingangsbildschirm: Fehler send
+error.splash.timer=Eingangsbildschirm: Zeitgeber f\u00fcr das Herunterfahren konnte nicht erstellt werden.
+error.splash.x11.open=Eingangsbildschirm: X11-Bildschirm kann nicht ge\u00f6ffnet werden.
+error.splash.x11.connect=Eingangsbildschirm: Fehler X11-Verbindung
+# Javaws usage: '\' is a joining of two sentence,which are connected including
+# the invisible character '\n'.
+message.javaws.usage=\
+Verwendung:\tjavaws [Ausf\u00fchrungsoptionen] <jnlp-Datei>	\
+      \tjavaws [Steuerungsoptionen]		\
+						\
+zu den Ausf\u00fchrungsoptionen z\u00e4hlen:			\
+  -verbose       \tzus\u00e4tzliche Ausgabe anzeigen	\
+  -offline       \tAnwendung offline ausf\u00fchren	\
+  -system        \tAnwendung nur vom System-Cache ausf\u00fchren\
+  -Xnosplash     \tohne Begr\u00fc\u00dfungsbildschirmanzeige ausf\u00fchren	\
+  -J <Optionen>     \tOption an VM geben	\
+  -wait          \tJava-Prozess starten und auf Prozessbeendigung warten	\
+	\
+zu den Steuerungsoptionen z\u00e4hlen:	\
+  -viewer        \tCache-Viewer in Java-Systemsteuerung anzeigen\
+  -uninstall     \talle Anwendungen aus Cache entfernen\
+  -uninstall <jnlp-Datei>              \tAnwendung aus Cache entfernen	\
+  -import [Importoptionen] <jnlp-Datei>\tAnwendung in Cache importieren		\
+									\
+zu den Importoptionen z\u00e4hlen:						\
+  -silent        \tim Hintergrund importieren (ohne Benutzeroberfl\u00e4che)	\
+  -system        \tAnwendung in System-Cache importieren	\
+  -codebase <url>\tRessourcen aus der angegebenen Code-Basis abrufen	\
+  -shortcut      \tVerkn\u00fcpfungen wie vom Benutzer zugelassene Aufforderung installieren	\
+  -association   \tZuordnungen wie vom Benutzer zugelassene Aufforderung installieren	\
+\n
Index: AE/installer2/setup_win/JRE/lib/deploy/messages_es.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/deploy/messages_es.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/deploy/messages_es.properties	(revision 613)
@@ -0,0 +1,57 @@
+#
+# @(#)messages.properties	1.6 05/05/18
+#
+# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
+# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
+#
+
+error.internal.badmsg=Error interno, mensaje desconocido
+error.badinst.nojre=Instalaci\u00f3n incorrecta. No se ha encontrado JRE en el archivo de configuraci\u00f3n
+error.badinst.execv=Instalaci\u00f3n incorrecta. Error al llamar a la m\u00e1quina virtual Java (execv)
+error.badinst.sysexec=Instalaci\u00f3n incorrecta. Error al llamar a la m\u00e1quina virtual Java (SysExec) 
+error.listener.failed=Bienvenida: sysCreateListenerSocket no satisfactorio
+error.accept.failed=Bienvenida: accept no satisfactorio
+error.recv.failed=Bienvenida: recv no satisfactorio
+error.invalid.port=Bienvenida: no se ha activado un puerto v\u00e1lido
+error.read=Lectura m\u00e1s all\u00e1 del final de la memoria intermedia
+error.xmlparsing=Error de an\u00e1lisis de XML: se ha encontrado un tipo de s\u00edmbolo no v\u00e1lido
+error.splash.exit=Saliendo del proceso de la pantalla de bienvenida de Java Web Start...\n
+error.winsock=Error de WinSock tLast: 
+error.winsock.load=No se ha podido cargar winsock.dll
+error.winsock.start=WSAStartup no satisfactorio
+error.badinst.nohome=Instalaci\u00f3n incorrecta: JAVAWS_HOME no definido 
+error.splash.noimage=Bienvenida: no se ha podido cargar la imagen de la pantalla de bienvenida
+error.splash.socket=Bienvenida: error en el z\u00f3calo del servidor
+error.splash.cmnd=Bienvenida: comando no reconocido
+error.splash.port=Bienvenida: puerto no especificado
+error.splash.send=Bienvenida: env\u00edo no satisfactorio
+error.splash.timer=Bienvenida: no se ha podido crear el temporizador de apagado
+error.splash.x11.open=Bienvenida: no se ha podido abrir la pantalla X11
+error.splash.x11.connect=Bienvenida: conexi\u00f3n X11 no satisfactoria
+# Javaws usage: '\' is a joining of two sentence,which are connected including
+# the invisible character '\n'.
+message.javaws.usage=\
+Sintaxis:\tjavaws [opciones de ejecuci\u00f3n] <archivo-jnlp>	\
+      \tjavaws [opciones de control]		\
+						\
+las opciones de ejecuci\u00f3n pueden ser:			\
+  -verbose       \tmostrar salida adicional	\
+  -offline       \tejecutar la aplicaci\u00f3n sin conexi\u00f3n	\
+  -system        \tejecutar la aplicaci\u00f3n desde la cach\u00e9 del sistema \u00fanicamente\
+  -Xnosplash     \tejecutar sin mostrar pantalla de bienvenida	\
+  -J<option>   \tproporcionar opci\u00f3n a la m\u00e1quina virtual	\
+  -wait          \tiniciar proceso java y esperar a que se cierre	\
+	\
+las opciones de control pueden ser:	\
+  -viewer        \tmostrar el visor de cach\u00e9 en el panel de control java\
+  -uninstall     \teliminar todas las aplicaciones de la cach\u00e9\
+  -uninstall <archivo-jnlp>              \teliminar la aplicaci\u00f3n de la cach\u00e9	\
+  -import [opciones de importaci\u00f3n] <archivo-jnlp>\timportar la aplicaci\u00f3n a la cach\u00e9		\
+									\
+las opciones de importaci\u00f3n pueden ser:						\
+  -silent        \timportar autom\u00e1ticamente (sin interfaz de usuario)	\
+  -system        \timportar aplicaci\u00f3n a la cach\u00e9 del sistema	\
+  -codebase <url>\textraer recursos de la base de c\u00f3digos seleccionada	\
+  -shortcut      \tinstalar accesos directos como si el usuario hubiese aceptado un aviso	\
+  -association   \tinstalar asociaciones como si el usuario hubiese aceptado un aviso	\
+\n
Index: AE/installer2/setup_win/JRE/lib/deploy/messages_fr.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/deploy/messages_fr.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/deploy/messages_fr.properties	(revision 613)
@@ -0,0 +1,57 @@
+#
+# @(#)messages.properties	1.6 05/05/18
+#
+# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
+# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
+#
+
+error.internal.badmsg=erreur interne, message inconnu
+error.badinst.nojre=Installation incorrecte. JRE introuvable dans le fichier de configuration
+error.badinst.execv=Installation incorrecte. Erreur d'appel de la MV Java (execv)
+error.badinst.sysexec=Installation incorrecte. Erreur d'appel de la MV Java (SysExec) 
+error.listener.failed=Pr\u00e9sentation : \u00e9chec de sysCreateListenerSocket
+error.accept.failed=Pr\u00e9sentation : \u00e9chec d'accept
+error.recv.failed=Pr\u00e9sentation : \u00e9chec de recv
+error.invalid.port=Pr\u00e9sentation : impossible de r\u00e9activer un port valide
+error.read=Lecture apr\u00e8s fin de buffer
+error.xmlparsing=Erreur d'analyse XML : type incorrect de jeton
+error.splash.exit=Le processus d'affichage de l'\u00e9cran de pr\u00e9sentation de Java Web Start est en cours de fermeture .....\n
+error.winsock=Erreur Winsock tLast : 
+error.winsock.load=Impossible de charger winsock.dll
+error.winsock.start=Echec de WSAStartup
+error.badinst.nohome=Installation incorrecte : JAVAWS_HOME non d\u00e9fini 
+error.splash.noimage=Pr\u00e9sentation : impossible de charger l'image de l'\u00e9cran de pr\u00e9sentation
+error.splash.socket=Pr\u00e9sentation : \u00e9chec de socket de serveur
+error.splash.cmnd=Pr\u00e9sentation : commande inconnue
+error.splash.port=Pr\u00e9sentation : port non sp\u00e9cifi\u00e9
+error.splash.send=Pr\u00e9sentation : \u00e9chec d'envoi
+error.splash.timer=Pr\u00e9sentation : impossible de cr\u00e9er le temporisateur d'arr\u00eat
+error.splash.x11.open=Pr\u00e9sentation : impossible d'ouvrir l'affichage X11
+error.splash.x11.connect=Pr\u00e9sentation : \u00e9chec de la connexion X11
+# Javaws usage: '\' is a joining of two sentence,which are connected including
+# the invisible character '\n'.
+message.javaws.usage=\
+Syntaxe :\tjavaws [options d'ex\u00e9cution] <fichier-jnlp>	\
+      \tjavaws [options de contr\u00f4le]		\
+						\
+o\u00f9 les options d'ex\u00e9cution sont :			\
+  -verbose       \taffichage de la sortie suppl\u00e9mentaire	\
+  -offline       \tex\u00e9cution de l'application en mode hors ligne	\
+  -system        \tex\u00e9cution de l'application \u00e0 partir du cache syst\u00e8me uniquement\
+  -Xnosplash     \tex\u00e9cution sans affichage de l'\u00e9cran de bienvenue	\
+  -J <option>   \tsp\u00e9cification d'une option \u00e0 la machine virtuelle	\
+  -wait          \tlancement du processus java et attente de sa fermeture	\
+	\
+les options de contr\u00f4le sont :	\
+  -viewer        \taffichage du visionneur du cache dans le panneau de configuration Java\
+  -uninstall     \tsuppression de toutes les applications du cache\
+  -uninstall <fichier-jnlp>              \td\u00e9sinstallation de l'application dans le cache	\
+  -import [options d'importation] <fichier-jnlp>\timportation de l'application dans le cache		\
+									\
+les options d'importation sont :						\
+  -silent        \timportation silencieuse (sans interface utilisateur)	\
+  -system        \timportation de l'application dans le cache syst\u00e8me	\
+  -codebase <url>\textraction des ressources \u00e0 partir d'un code base sp\u00e9cifique	\
+  -shortcut      \tinstallation des raccourcis comme si l'utilisateur avait autoris\u00e9 l'op\u00e9ration	\
+  -association   \tinstallation des associations comme si l'utilisateur avait autoris\u00e9 l'op\u00e9ration	\
+\n
Index: AE/installer2/setup_win/JRE/lib/deploy/messages_it.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/deploy/messages_it.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/deploy/messages_it.properties	(revision 613)
@@ -0,0 +1,57 @@
+#
+# @(#)messages.properties	1.6 05/05/18
+#
+# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
+# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
+#
+
+error.internal.badmsg=errore interno, messaggio sconosciuto
+error.badinst.nojre=Installazione errata. Impossibile trovare il JRE nel file di configurazione
+error.badinst.execv=Installazione errata. Errore durante l'invocazione della Java VM (execv)
+error.badinst.sysexec=Installazione errata. Errore durante l'invocazione della Java VM (SysExec) 
+error.listener.failed=Apertura: sysCreateListenerSocket non riuscito
+error.accept.failed=Apertura: accept non riuscito
+error.recv.failed=Apertura: recv non riuscito
+error.invalid.port=Apertura: impossibile identificare una porta valida
+error.read=Tentativo di lettura dopo la fine del buffer
+error.xmlparsing=Errore nell'analisi XML: trovato un tipo di token errato
+error.splash.exit=Uscita dal processo di schermata iniziale di Java Web Start in corso...\n
+error.winsock=Errore WinSock tLast: 
+error.winsock.load=Impossibile caricare winsock.dll
+error.winsock.start=WSAStartup non riuscito
+error.badinst.nohome=Installazione errata: JAVAWS_HOME non impostato 
+error.splash.noimage=Apertura: impossibile caricare l'immagine della schermata iniziale
+error.splash.socket=Apertura: socket del server non riuscita
+error.splash.cmnd=Apertura: comando non riconosciuto
+error.splash.port=Apertura: porta non specificata
+error.splash.send=Apertura: send non riuscito
+error.splash.timer=Apertura: impossibile creare il timer per l'arresto
+error.splash.x11.open=Apertura: impossibile aprire il display X11
+error.splash.x11.connect=Apertura: connessione X11 non riuscita
+# Javaws usage: '\' is a joining of two sentence,which are connected including
+# the invisible character '\n'.
+message.javaws.usage=\
+Utilizzo:\tjavaws [opzioni di esecuzione] <file jnlp>	\
+      \tjavaws [opzioni di controllo]		\
+						\
+le opzioni di esecuzione sono:			\
+  -verbose       \tvisualizza output aggiuntivo	\
+  -offline       \tesegue l'applicazione in modalit\u00e0 non in linea	\
+  -system        \tesegue l'applicazione solo dalla cache del sistema\
+  -Xnosplash     \tesegue l'applicazione senza visualizzare la schermata iniziale	\
+  -J <opzioni>   \tspecifica le opzioni per la macchina virtuale	\
+  -wait          \tavvia il processo Java e ne attende il completamento	\
+	\
+le opzioni di controllo sono:	\
+  -viewer        \tapre il visualizzatore cache nel pannello di controllo di Java\
+  -uninstall     \trimuove tutte le applicazioni dalla cache\
+  -uninstall <file jnlp>              \trimuove l'applicazione dalla cache	\
+  -import [opzioni di importazione] <file jnlp>\timporta l'applicazione nella cache		\
+									\
+le opzioni di importazione sono:						\
+  -silent        \timporta in modalit\u00e0 invisibile all'utente (senza interfaccia utente)	\
+  -system        \timporta l'applicazione nella cache del sistema	\
+  -codebase <url>\trecupera le risorse dal codebase specificato	\
+  -shortcut      \tinstalla i collegamenti senza chiedere conferma all'utente	\
+  -association   \tinstalla le associazioni senza chiedere conferma all'utente	\
+\n
Index: AE/installer2/setup_win/JRE/lib/deploy/messages_ja.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/deploy/messages_ja.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/deploy/messages_ja.properties	(revision 613)
@@ -0,0 +1,57 @@
+#
+# @(#)messages.properties	1.6 05/05/18
+#
+# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
+# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
+#
+
+error.internal.badmsg=\u5185\u90e8\u30a8\u30e9\u30fc\u3001\u4e0d\u660e\u306a\u30e1\u30c3\u30bb\u30fc\u30b8
+error.badinst.nojre=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u6b63\u3057\u304f\u3042\u308a\u307e\u305b\u3093\u3002\u69cb\u6210\u30d5\u30a1\u30a4\u30eb\u5185\u306b JRE \u304c\u3042\u308a\u307e\u305b\u3093
+error.badinst.execv=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u6b63\u3057\u304f\u3042\u308a\u307e\u305b\u3093\u3002Java VM (execv) \u306e\u547c\u3073\u51fa\u3057\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f
+error.badinst.sysexec=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u6b63\u3057\u304f\u3042\u308a\u307e\u305b\u3093\u3002Java VM (SysExec) \u306e\u547c\u3073\u51fa\u3057\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f 
+error.listener.failed=\u30b9\u30d7\u30e9\u30c3\u30b7\u30e5 : sysCreateListenerSocket \u306b\u5931\u6557\u3057\u307e\u3057\u305f
+error.accept.failed=\u30b9\u30d7\u30e9\u30c3\u30b7\u30e5 : accept \u306b\u5931\u6557\u3057\u307e\u3057\u305f
+error.recv.failed=\u30b9\u30d7\u30e9\u30c3\u30b7\u30e5 : recv \u306b\u5931\u6557\u3057\u307e\u3057\u305f
+error.invalid.port=\u30b9\u30d7\u30e9\u30c3\u30b7\u30e5 : \u6709\u52b9\u306a\u30dd\u30fc\u30c8\u3092\u5fa9\u6d3b\u3055\u305b\u3089\u308c\u307e\u305b\u3093\u3067\u3057\u305f
+error.read=\u524d\u306e\u30d0\u30c3\u30d5\u30a1\u306e\u7d42\u308f\u308a\u3092\u8aad\u307f\u8fbc\u307f\u307e\u3057\u305f
+error.xmlparsing=XML \u69cb\u6587\u89e3\u6790\u30a8\u30e9\u30fc : \u8aa4\u3063\u305f\u30c8\u30fc\u30af\u30f3\u304c\u691c\u51fa\u3055\u308c\u307e\u3057\u305f
+error.splash.exit=Java Web Start \u30b9\u30d7\u30e9\u30c3\u30b7\u30e5\u753b\u9762\u51e6\u7406\u3092\u7d42\u4e86\u3057\u307e\u3059.....\n
+error.winsock=tLast WinSock \u30a8\u30e9\u30fc: 
+error.winsock.load=winsock.dll \u3092\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093
+error.winsock.start=WSAStartup \u306b\u5931\u6557\u3057\u307e\u3057\u305f
+error.badinst.nohome=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u304c\u6b63\u3057\u304f\u3042\u308a\u307e\u305b\u3093 : JAVAWS_HOME \u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093 
+error.splash.noimage=\u30b9\u30d7\u30e9\u30c3\u30b7\u30e5 : \u30b9\u30d7\u30e9\u30c3\u30b7\u30e5\u753b\u9762\u306e\u753b\u50cf\u3092\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093
+error.splash.socket=\u30b9\u30d7\u30e9\u30c3\u30b7\u30e5 : \u30b5\u30fc\u30d0\u30bd\u30b1\u30c3\u30c8\u304c\u58ca\u308c\u3066\u3044\u307e\u3059
+error.splash.cmnd=\u30b9\u30d7\u30e9\u30c3\u30b7\u30e5 : \u8a8d\u8b58\u3055\u308c\u306a\u3044\u30b3\u30de\u30f3\u30c9
+error.splash.port=\u30b9\u30d7\u30e9\u30c3\u30b7\u30e5 : \u30dd\u30fc\u30c8\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093
+error.splash.send=\u30b9\u30d7\u30e9\u30c3\u30b7\u30e5 : \u9001\u4fe1\u306b\u5931\u6557\u3057\u307e\u3057\u305f
+error.splash.timer=\u30b9\u30d7\u30e9\u30c3\u30b7\u30e5 : \u30b7\u30e3\u30c3\u30c8\u30c0\u30a6\u30f3\u30bf\u30a4\u30de\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093
+error.splash.x11.open=\u30b9\u30d7\u30e9\u30c3\u30b7\u30e5: X11 \u30c7\u30a3\u30b9\u30d7\u30ec\u30a4\u3092\u958b\u3051\u307e\u305b\u3093
+error.splash.x11.connect=\u30b9\u30d7\u30e9\u30c3\u30b7\u30e5 : X11 \u63a5\u7d9a\u306b\u5931\u6557\u3057\u307e\u3057\u305f
+# Javaws usage: '\' is a joining of two sentence,which are connected including
+# the invisible character '\n'.
+message.javaws.usage=\
+\u4f7f\u7528\u6cd5:\tjavaws [run-options] <jnlp-file>	\
+      \tjavaws [control-options]		\
+						\
+run-options \u306b\u306f\u6b21\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059:			\
+  -verbose       \t\u8ffd\u52a0\u306e\u51fa\u529b\u3092\u8868\u793a\u3059\u308b	\
+  -offline       \t\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u30aa\u30d5\u30e9\u30a4\u30f3\u30e2\u30fc\u30c9\u3067\u5b9f\u884c\u3059\u308b	\
+  -system        \t\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u30b7\u30b9\u30c6\u30e0\u30ad\u30e3\u30c3\u30b7\u30e5\u306e\u307f\u304b\u3089\u5b9f\u884c\u3059\u308b\
+  -Xnosplash     \t\u30b9\u30d7\u30e9\u30c3\u30b7\u30e5\u753b\u9762\u3092\u8868\u793a\u305b\u305a\u306b\u5b9f\u884c\u3059\u308b	\
+  -J<option>     \t\u30aa\u30d7\u30b7\u30e7\u30f3\u3092 VM \u306b\u4e0e\u3048\u308b	\
+  -wait          \tJava \u30d7\u30ed\u30bb\u30b9\u3092\u958b\u59cb\u3057\u3001\u305d\u306e\u7d42\u4e86\u3092\u5f85\u6a5f\u3059\u308b	\
+	\
+control-options \u306b\u306f\u6b21\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059:	\
+  -viewer        \t\u30ad\u30e3\u30c3\u30b7\u30e5\u30d3\u30e5\u30fc\u30a2\u3092 Java \u30b3\u30f3\u30c8\u30ed\u30fc\u30eb\u30d1\u30cd\u30eb\u306b\u8868\u793a\u3059\u308b\
+  -uninstall     \t\u3059\u3079\u3066\u306e\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u30ad\u30e3\u30c3\u30b7\u30e5\u304b\u3089\u524a\u9664\u3059\u308b\
+  -uninstall <jnlp-file>              \t\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u30ad\u30e3\u30c3\u30b7\u30e5\u304b\u3089\u524a\u9664\u3059\u308b	\
+  -import [import-options] <jnlp-file>\t\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u30a4\u30f3\u30dd\u30fc\u30c8\u3059\u308b		\
+									\
+import-options \u306b\u306f\u6b21\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3067\u304d\u307e\u3059:						\
+  -silent        \t\u30e1\u30c3\u30bb\u30fc\u30b8\u3092\u8868\u793a\u305b\u305a\u306b\u30a4\u30f3\u30dd\u30fc\u30c8\u3059\u308b (\u30e6\u30fc\u30b6\u30fc\u30a4\u30f3\u30bf\u30d5\u30a7\u30fc\u30b9\u306a\u3057)	\
+  -system        \t\u30a2\u30d7\u30ea\u30b1\u30fc\u30b7\u30e7\u30f3\u3092\u30b7\u30b9\u30c6\u30e0\u30ad\u30e3\u30c3\u30b7\u30e5\u306b\u30a4\u30f3\u30dd\u30fc\u30c8\u3059\u308b	\
+  -codebase <url>\t\u6307\u5b9a\u3055\u308c\u305f\u30b3\u30fc\u30c9\u30d9\u30fc\u30b9\u304b\u3089\u30ea\u30bd\u30fc\u30b9\u3092\u53d6\u5f97\u3059\u308b	\
+  -shortcut      \t\u30e6\u30fc\u30b6\u30fc\u304c\u30d7\u30ed\u30f3\u30d7\u30c8\u3092\u53d7\u3051\u5165\u308c\u305f\u3082\u306e\u3068\u3057\u3066\u30b7\u30e7\u30fc\u30c8\u30ab\u30c3\u30c8\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b	\
+  -association   \t\u30e6\u30fc\u30b6\u30fc\u304c\u30d7\u30ed\u30f3\u30d7\u30c8\u3092\u53d7\u3051\u5165\u308c\u305f\u3082\u306e\u3068\u3057\u3066\u95a2\u9023\u4ed8\u3051\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3059\u308b	\
+\n
Index: AE/installer2/setup_win/JRE/lib/deploy/messages_ko.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/deploy/messages_ko.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/deploy/messages_ko.properties	(revision 613)
@@ -0,0 +1,57 @@
+#
+# @(#)messages.properties	1.6 05/05/18
+#
+# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
+# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
+#
+
+error.internal.badmsg=\ub0b4\ubd80 \uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4. \uc54c \uc218 \uc5c6\ub294 \uba54\uc2dc\uc9c0\uc785\ub2c8\ub2e4.
+error.badinst.nojre=\uc124\uce58\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4. \uad6c\uc131 \ud30c\uc77c\uc5d0 JRE\uac00 \uc5c6\uc2b5\ub2c8\ub2e4.
+error.badinst.execv=\uc124\uce58\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4. Java VM (execv)\uc744 \ud638\ucd9c\ud558\ub294 \uc911 \uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4.
+error.badinst.sysexec=\uc124\uce58\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4. Java VM(SysExec)\uc744 \ud638\ucd9c\ud558\ub294 \uc911 \uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4. 
+error.listener.failed=\uc2a4\ud50c\ub798\uc2dc: sysCreateListenerSocket \uc2e4\ud328
+error.accept.failed=\uc2a4\ud50c\ub798\uc2dc: \uc2b9\uc778 \uc2e4\ud328
+error.recv.failed=\uc2a4\ud50c\ub798\uc2dc: recv \uc2e4\ud328
+error.invalid.port=\uc2a4\ud50c\ub798\uc2dc: \uc720\ud6a8\ud55c \ud3ec\ud2b8\ub97c \ubcf5\uc6d0\ud558\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4.
+error.read=\ubc84\ud37c \ub05d\uc744 \uc9c0\ub098\uc11c \uc77d\uc5c8\uc2b5\ub2c8\ub2e4.
+error.xmlparsing=XML \uad6c\ubb38 \ubd84\uc11d \uc624\ub958: \uc798\ubabb\ub41c \ud1a0\ud070 \uc720\ud615\uc774 \ubc1c\uacac\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
+error.splash.exit=Java Web Start \uc2a4\ud50c\ub798\uc2dc \ud654\uba74 \ucc98\ub9ac\ub97c \uc885\ub8cc\ud558\ub294 \uc911.....\n
+error.winsock=tLast WinSock \uc624\ub958: 
+error.winsock.load=winsock.dll\uc744 \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
+error.winsock.start=WSAStartup \uc2e4\ud328
+error.badinst.nohome=\uc124\uce58\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4. JAVAWS_HOME\uc774 \uc124\uc815\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4. 
+error.splash.noimage=\uc2a4\ud50c\ub798\uc2dc: \uc2a4\ud50c\ub798\uc2dc \ud654\uba74 \uc774\ubbf8\uc9c0\ub97c \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
+error.splash.socket=\uc2a4\ud50c\ub798\uc2dc: \uc11c\ubc84 \uc18c\ucf13 \uc2e4\ud328
+error.splash.cmnd=\uc2a4\ud50c\ub798\uc2dc: \uc778\uc2dd\ud560 \uc218 \uc5c6\ub294 \uba85\ub839\uc5b4
+error.splash.port=\uc2a4\ud50c\ub798\uc2dc: \ud3ec\ud2b8\uac00 \uc9c0\uc815\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4.
+error.splash.send=\uc2a4\ud50c\ub798\uc2dc: \ubcf4\ub0b4\uae30 \uc2e4\ud328
+error.splash.timer=\uc2a4\ud50c\ub798\uc2dc: \uc885\ub8cc \ud0c0\uc774\uba38\ub97c \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
+error.splash.x11.open=\uc2a4\ud50c\ub798\uc2dc: X11 \ub514\uc2a4\ud50c\ub808\uc774\ub97c \uc5f4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
+error.splash.x11.connect=\uc2a4\ud50c\ub798\uc2dc: X11 \uc5f0\uacb0 \uc2e4\ud328
+# Javaws usage: '\' is a joining of two sentence,which are connected including
+# the invisible character '\n'.
+message.javaws.usage=\
+\uc0ac\uc6a9\ubc95:\tjavaws [\uc2e4\ud589-\uc635\uc158] <jnlp-file>	\
+      \tjavaws [\ucee8\ud2b8\ub864-\uc635\uc158]		\
+						\
+\uc5ec\uae30\uc11c \uc2e4\ud589-\uc635\uc158\uc5d0\ub294 \ub2e4\uc74c\uc774 \ud3ec\ud568\ub429\ub2c8\ub2e4.			\
+  -verbose       \t\ucd94\uac00 \ucd9c\ub825 \ud45c\uc2dc	\
+  -offline       \t\uc624\ud504\ub77c\uc778 \ubaa8\ub4dc\ub85c \uc751\uc6a9 \ud504\ub85c\uadf8\ub7a8 \uc2e4\ud589	\
+  -system        \t\uc2dc\uc2a4\ud15c \uce90\uc2dc\uc5d0\uc11c\ub9cc \uc751\uc6a9 \ud504\ub85c\uadf8\ub7a8 \uc2e4\ud589\
+  -Xnosplash     \t\uc2dc\uc791 \ud654\uba74 \ud45c\uc2dc \uc5c6\uc774 \uc2e4\ud589	\
+  -J<option>     \tvm\uc5d0 \uc635\uc158 \uc81c\uacf5	\
+  -wait          \tjava \ud504\ub85c\uc138\uc2a4 \uc2dc\uc791 \ubc0f \uc885\ub8cc \ub300\uae30	\
+	\
+\ucee8\ud2b8\ub864-\uc635\uc158\uc5d0\ub294 \ub2e4\uc74c\uc774 \ud3ec\ud568\ub429\ub2c8\ub2e4.	\
+  -viewer        \tjava \uc81c\uc5b4\ud310\uc5d0\uc11c \uce90\uc2dc \ubdf0\uc5b4 \ud45c\uc2dc\
+  -uninstall     \t\uce90\uc2dc\uc5d0\uc11c \ubaa8\ub4e0 \uc751\uc6a9 \ud504\ub85c\uadf8\ub7a8 \uc81c\uac70\
+  -uninstall <jnlp-file>              \t\uce90\uc2dc\uc5d0\uc11c \uc751\uc6a9 \ud504\ub85c\uadf8\ub7a8 \uc81c\uac70	\
+  -import [\uac00\uc838\uc624\uae30-\uc635\uc158] <jnlp-file>\t\uce90\uc2dc\ub85c \uc751\uc6a9 \ud504\ub85c\uadf8\ub7a8 \uac00\uc838\uc624\uae30		\
+									\
+\uac00\uc838\uc624\uae30-\uc635\uc158\uc5d0\ub294 \ub2e4\uc74c\uc774 \ud3ec\ud568\ub429\ub2c8\ub2e4.						\
+  -silent        \t\uc790\ub3d9\uc73c\ub85c \uac00\uc838\uc624\uae30(\uc0ac\uc6a9\uc790 \uc778\ud130\ud398\uc774\uc2a4 \ud3ec\ud568 \uc548 \ud568)	\
+  -system        \t\uc2dc\uc2a4\ud15c \uce90\uc2dc\ub85c \uc751\uc6a9 \ud504\ub85c\uadf8\ub7a8 \uac00\uc838\uc624\uae30	\
+  -codebase <url>\t\uc81c\uacf5\ub41c \ucf54\ub4dc\ubca0\uc774\uc2a4\uc5d0\uc11c \uc790\uc6d0 \uac80\uc0c9	\
+  -shortcut      \t\uc0ac\uc6a9\uc790\uac00 \ud504\ub86c\ud504\ud2b8\ub97c \ud5c8\uc6a9\ud55c \uac83\uc73c\ub85c \uac04\uc8fc\ud558\uc5ec \ubc14\ub85c \uac00\uae30 \uc124\uce58	\
+  -association   \t\uc0ac\uc6a9\uc790\uac00 \ud504\ub86c\ud504\ud2b8\ub97c \ud5c8\uc6a9\ud55c \uac83\uc73c\ub85c \uac04\uc8fc\ud558\uc5ec \uc5f0\uad00 \uc124\uce58	\
+\n
Index: AE/installer2/setup_win/JRE/lib/deploy/messages_pt_BR.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/deploy/messages_pt_BR.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/deploy/messages_pt_BR.properties	(revision 613)
@@ -0,0 +1,33 @@
+#
+# @(#)messages_pt_BR.properties	1.3 10/04/22
+#
+# Copyright (c) 2010, Oracle and/or its affiliates. All rights reserved.
+# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
+#
+
+error.internal.badmsg=erro interno, mensagem desconhecida
+error.badinst.nojre=Instala\u00e7\u00e3o incorreta. Nenhum JRE encontrado no arquivo de configura\u00e7\u00e3o
+error.badinst.execv=Instala\u00e7\u00e3o incorreta. Erro ao chamar Java VM (execv)
+error.badinst.sysexec=Instala\u00e7\u00e3o incorreta. Erro ao chamar Java VM (SysExec) 
+error.listener.failed=Tela inicial: sysCreateListenerSocket falhou
+error.accept.failed=Tela inicial: accept falhou
+error.recv.failed=Tela inicial: recv falhou
+error.invalid.port=Tela inicial: n\u00e3o reativou uma porta v\u00e1lida
+error.read=Ler ap\u00f3s o final do buffer
+error.xmlparsing=Erro ao analisar XML: tipo incorreto de token encontrado
+error.splash.exit=Saindo do processamento da tela inicial do Java Web .....\n
+error.winsock=t\u00daltimo erro de WinSock: 
+error.winsock.load=N\u00e3o foi poss\u00edvel carregar winsock.dll
+error.winsock.start=WSAStartup falhou
+error.badinst.nohome=Instala\u00e7\u00e3o incorreta: JAVAWS_HOME n\u00e3o definido 
+error.splash.noimage=Tela inicial: n\u00e3o foi poss\u00edvel carregar a imagem da tela inicial
+error.splash.socket=Tela inicial: o soquete do servidor falhou
+error.splash.cmnd=Tela inicial: comando n\u00e3o reconhecido
+error.splash.port=Tela inicial: porta n\u00e3o especificada
+error.splash.send=Tela inicial: o envio falhou
+error.splash.timer=Tela inicial: n\u00e3o foi poss\u00edvel criar temporizador de encerramento
+error.splash.x11.open=Tela inicial: n\u00e3o \u00e9 poss\u00edvel abrir a exibi\u00e7\u00e3o X11
+error.splash.x11.connect=Tela inicial: a conex\u00e3o X11 falhou
+# Javaws usage: '\' is a joining of two sentence,which are connected including
+# the invisible character '\n'.
+message.javaws.usage=Uso:\tjavaws [run-options] <jnlp-file>	\tjavaws [control-options]		em que run-options inclui:			-verbose       \texibe sa\u00eddas adicionais	-offline       \texecuta o aplicativo no modo off-line	-system        \texecuta o aplicativo somente a partir do cache do sistema -Xnosplash     \texecuta sem mostra a tela inicial	-J<option>     \toferece op\u00e7\u00e3o a vm	-wait          \tinicia o processo java e espera ele fechar	control-options inclui:	-viewer        \texibe o visualizador de cache no painel de controle java -uninstall     \tremove todos os aplicativos do cache -uninstall <jnlp-file>              \tremove o aplicativo do cache	-import [import-options] <jnlp-file>\timporta o aplicativo para o cache		import-options inclui:						-silent        \timporta silenciosamente (sem interface de usu\u00e1rio)	-system        \timporta o aplicativo para o cache do sistema	-codebase <url>\trecupera os recursos da base de c\u00f3digo dada	-shortcut      \tinstala atalhos como se o usu\u00e1rio aceitasse a solicita\u00e7\u00e3o	-association   \tinstala associa\u00e7\u00f5es como se o usu\u00e1rio aceitasse a solicita\u00e7\u00e3o	\n
Index: AE/installer2/setup_win/JRE/lib/deploy/messages_sv.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/deploy/messages_sv.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/deploy/messages_sv.properties	(revision 613)
@@ -0,0 +1,57 @@
+#
+# @(#)messages.properties	1.6 05/05/18
+#
+# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
+# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
+#
+
+error.internal.badmsg=internt fel, ok\u00e4nt meddelande
+error.badinst.nojre=Felaktig installation. Ingen JRE har hittats i konfigurationsfilen
+error.badinst.execv=Felaktig installation. Fel n\u00e4r Java VM (execv) startades
+error.badinst.sysexec=Felaktig installation. Fel n\u00e4r Java VM (SysExec) startades 
+error.listener.failed=V\u00e4lkomstsk\u00e4rm: sysCreateListenerSocket misslyckades
+error.accept.failed=V\u00e4lkomstsk\u00e4rm: accepterande misslyckades
+error.recv.failed=V\u00e4lkomstsk\u00e4rm: mottagning misslyckades
+error.invalid.port=V\u00e4lkomstsk\u00e4rm: \u00e5terkallade inte en giltig port
+error.read=L\u00e4ste f\u00f6rbi slutet av bufferten
+error.xmlparsing=XML-analysfel: fel typ av nyckel hittades
+error.splash.exit=Java Web Start - v\u00e4lkomstsk\u00e4rmen avslutas .....\n
+error.winsock=tLast WinSock-fel: 
+error.winsock.load=Det gick inte att ladda winsock.dll
+error.winsock.start=WSAStartup misslyckades
+error.badinst.nohome=Felaktig installation: JAVAWS_HOME har inte st\u00e4llts in 
+error.splash.noimage=V\u00e4lkomstsk\u00e4rm: det gick inte att ladda bilden f\u00f6r v\u00e4lkomstsk\u00e4rmen
+error.splash.socket=V\u00e4lkomstsk\u00e4rm: serversockel misslyckades
+error.splash.cmnd=V\u00e4lkomstsk\u00e4rm: ok\u00e4nt kommando
+error.splash.port=V\u00e4lkomstsk\u00e4rm: porten angavs inte
+error.splash.send=V\u00e4lkomstsk\u00e4rm: skicka misslyckades
+error.splash.timer=V\u00e4lkomstsk\u00e4rm: det gick inte att st\u00e4nga av tidtagaren
+error.splash.x11.open=V\u00e4lkomstsk\u00e4rm: Det g\u00e5r inte att \u00f6ppna X11-visningen
+error.splash.x11.connect=V\u00e4lkomstsk\u00e4rm: X11-anslutning misslyckades
+# Javaws usage: '\' is a joining of two sentence,which are connected including
+# the invisible character '\n'.
+message.javaws.usage=\
+Anv\u00e4ndning:\tjavaws [k\u00f6rningsalternativ] <jnlp-fil>	\
+      \tjavaws [kontrollalternativ]		\
+						\
+d\u00e4r k\u00f6rningsalternativen omfattar f\u00f6ljande:			\
+  -verbose       \tvisa ytterligare text	\
+  -offline       \tk\u00f6r programmet i offlinel\u00e4ge	\
+  -system        \tk\u00f6r endast programmet fr\u00e5n systemcachen\
+  -Xnosplash     \tk\u00f6r utan att visa n\u00e5got startf\u00f6nster	\
+  -J<alternativ>   \tange alternativ f\u00f6r VM	\
+  -wait          \tstarta javaprocessen och v\u00e4nta tills den har slutf\u00f6rts	\
+	\
+kontrollalternativen omfattar f\u00f6ljande:	\
+  -viewer        \tvisa cache-l\u00e4saren i kontrollpanelen f\u00f6r java\
+  -uninstall     \tta bort alla program fr\u00e5n cachen\
+  -uninstall <jnlp-fil>              \tta bort programmet fr\u00e5n cachen	\
+  -import [importalternativ] <jnlp-fil>\timportera programmet till cachen		\
+									\
+importalternativen omfattar f\u00f6ljande:						\
+  -silent        \timportera tyst (utan anv\u00e4ndargr\u00e4nssnitt)	\
+  -system        \timportera programmet till systemcachen	\
+  -codebase <webbadress>\th\u00e4mta resurserna fr\u00e5n den angivna kodbasen	\
+  -shortcut      \tinstallera genv\u00e4gar som om anv\u00e4ndaren till\u00e5tit det	\
+  -association   \tinstallera associeringar som om anv\u00e4ndaren till\u00e5tit det	\
+\n
Index: AE/installer2/setup_win/JRE/lib/deploy/messages_zh_CN.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/deploy/messages_zh_CN.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/deploy/messages_zh_CN.properties	(revision 613)
@@ -0,0 +1,57 @@
+#
+# @(#)messages.properties	1.6 05/05/18
+#
+# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
+# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
+#
+
+error.internal.badmsg=\u5185\u90e8\u9519\u8bef\uff0c\u672a\u77e5\u6d88\u606f
+error.badinst.nojre=\u9519\u8bef\u5b89\u88c5\u3002\u914d\u7f6e\u6587\u4ef6\u4e2d\u672a\u627e\u5230 JRE
+error.badinst.execv=\u9519\u8bef\u5b89\u88c5\u3002\u8c03\u7528 Java VM (execv) \u9519\u8bef
+error.badinst.sysexec=\u9519\u8bef\u5b89\u88c5\u3002\u8c03\u7528 Java VM (SysExec) \u9519\u8bef 
+error.listener.failed=Splash\uff1asysCreateListenerSocket \u5931\u8d25
+error.accept.failed=Splash\uff1a\u63a5\u53d7\u5931\u8d25
+error.recv.failed=Splash\uff1a recv \u5931\u8d25
+error.invalid.port=Splash\uff1a\u6ca1\u6709\u56de\u590d\u5230\u6709\u6548\u7aef\u53e3
+error.read=\u8bfb\u53d6\u8d85\u51fa\u7f13\u51b2\u533a
+error.xmlparsing=XML \u89e3\u6790\u9519\u8bef\uff1a\u53d1\u73b0\u9519\u8bef\u6807\u8bb0\u7c7b\u578b
+error.splash.exit=Java Web Start \u95ea\u73b0\u5c4f\u5e55\u8fdb\u7a0b\u9000\u51fa.....\n
+error.winsock=tLast WinSock \u9519\u8bef\uff1a 
+error.winsock.load=\u65e0\u6cd5\u52a0\u8f7d winsock.dll
+error.winsock.start=WSAStartup \u5931\u8d25
+error.badinst.nohome=\u9519\u8bef\u5b89\u88c5\uff1aJAVAWS_HOME \u672a\u8bbe\u7f6e 
+error.splash.noimage=Splash\uff1a\u65e0\u6cd5\u52a0\u8f7d\u95ea\u73b0\u5c4f\u5e55\u56fe\u50cf
+error.splash.socket=Splash\uff1a\u670d\u52a1\u5668\u5957\u63a5\u5b57\u5931\u8d25
+error.splash.cmnd=Splash\uff1a\u65e0\u6cd5\u8bc6\u522b\u7684\u547d\u4ee4
+error.splash.port=Splash\uff1a\u672a\u6307\u5b9a\u7aef\u53e3
+error.splash.send=Splash\uff1a\u53d1\u9001\u5931\u8d25
+error.splash.timer=Splash\uff1a\u65e0\u6cd5\u521b\u5efa\u5173\u673a\u5b9a\u65f6\u5668
+error.splash.x11.open=Splash\uff1a\u65e0\u6cd5\u6253\u5f00 X11 \u663e\u793a
+error.splash.x11.connect=Splash\uff1aX11 \u8fde\u63a5\u5931\u8d25
+# Javaws usage: '\' is a joining of two sentence,which are connected including
+# the invisible character '\n'.
+message.javaws.usage=\
+\u7528\u6cd5:\tjavaws [\u8fd0\u884c\u9009\u9879] <jnlp \u6587\u4ef6>	\
+\tjavaws [\u63a7\u5236\u9009\u9879]		\
+						\
+\u5176\u4e2d\u8fd0\u884c\u9009\u9879\u5305\u62ec:			\
+-verbose       \t\u663e\u793a\u5176\u4ed6\u8f93\u51fa\u5185\u5bb9	\
+-offline       \t\u4ee5\u8131\u673a\u6a21\u5f0f\u8fd0\u884c\u5e94\u7528\u7a0b\u5e8f	\
+-system        \t\u4ec5\u4ece\u7cfb\u7edf\u9ad8\u901f\u7f13\u5b58\u8fd0\u884c\u5e94\u7528\u7a0b\u5e8f\
+-Xnosplash     \t\u8fd0\u884c\u65f6\u4e0d\u663e\u793a\u95ea\u73b0\u5c4f\u5e55	\
+-J<\u9009\u9879>     \t\u4e3a vm \u63d0\u4f9b\u9009\u9879	\
+-wait          \t\u542f\u52a8 Java \u8fdb\u7a0b\u5e76\u7b49\u5f85\u5176\u9000\u51fa	\
+	\
+\u63a7\u5236\u9009\u9879\u5305\u62ec:	\
+-viewer        \t\u5728 Java \u63a7\u5236\u9762\u677f\u4e2d\u663e\u793a\u9ad8\u901f\u7f13\u5b58\u67e5\u770b\u5668\
+-uninstall     \t\u4ece\u9ad8\u901f\u7f13\u5b58\u5220\u9664\u6240\u6709\u5e94\u7528\u7a0b\u5e8f\
+-uninstall <jnlp \u6587\u4ef6>              \t\u4ece\u9ad8\u901f\u7f13\u5b58\u5220\u9664\u5e94\u7528\u7a0b\u5e8f	\
+-import [\u5bfc\u5165\u9009\u9879] <jnlp \u6587\u4ef6>\t\u5c06\u5e94\u7528\u7a0b\u5e8f\u5bfc\u5165\u9ad8\u901f\u7f13\u5b58		\
+									\
+\u5bfc\u5165\u9009\u9879\u5305\u62ec:						\
+-silent        \t\u4ee5\u65e0\u63d0\u793a\u6a21\u5f0f\uff08\u4e0d\u51fa\u73b0\u7528\u6237\u754c\u9762\uff09\u5bfc\u5165	\
+-system        \t\u5c06\u5e94\u7528\u7a0b\u5e8f\u5bfc\u5165\u7cfb\u7edf\u9ad8\u901f\u7f13\u5b58	\
+-codebase <url>\t\u4ece\u7ed9\u5b9a\u7684\u4ee3\u7801\u4f4d\u7f6e\u68c0\u7d22\u8d44\u6e90	\
+-shortcut      \t\u4ee5\u7528\u6237\u63a5\u53d7\u63d0\u793a\u7684\u65b9\u5f0f\u5b89\u88c5\u5feb\u6377\u65b9\u5f0f	\
+-association   \t\u4ee5\u7528\u6237\u63a5\u53d7\u63d0\u793a\u7684\u65b9\u5f0f\u5b89\u88c5\u5173\u8054	\
+\n
Index: AE/installer2/setup_win/JRE/lib/deploy/messages_zh_HK.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/deploy/messages_zh_HK.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/deploy/messages_zh_HK.properties	(revision 613)
@@ -0,0 +1,57 @@
+#
+# @(#)messages.properties	1.6 05/05/18
+#
+# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
+# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
+#
+
+error.internal.badmsg=\u5167\u90e8\u932f\u8aa4\uff0c\u4e0d\u660e\u7684\u8a0a\u606f
+error.badinst.nojre=\u5b89\u88dd\u932f\u8aa4\u3002\u5728\u914d\u7f6e\u6a94\u4e2d\u627e\u4e0d\u5230 JRE
+error.badinst.execv=\u5b89\u88dd\u932f\u8aa4\u3002\u547c\u53eb Java VM (execv) \u6642\u767c\u751f\u932f\u8aa4
+error.badinst.sysexec=\u5b89\u88dd\u932f\u8aa4\u3002\u547c\u53eb Java VM (SysExec) \u6642\u767c\u751f\u932f\u8aa4 
+error.listener.failed=Splash\uff1asysCreateListenerSocket \u5931\u6557
+error.accept.failed=Splash\uff1a\u63a5\u53d7\u5931\u6557
+error.recv.failed=Splash\uff1arecv \u5931\u6557
+error.invalid.port=Splash\uff1a\u6709\u6548\u7684\u901a\u8a0a\u57e0\u5c1a\u672a\u56de\u5fa9
+error.read=\u8b80\u53d6\u8d85\u51fa\u7de9\u885d\u5340\u5c3e\u7aef
+error.xmlparsing=XML \u89e3\u6790\u932f\u8aa4\uff1a\u627e\u5230\u932f\u8aa4\u7684 token \u7a2e\u985e
+error.splash.exit=Java Web Start \u9583\u73fe\u87a2\u5e55\u7a0b\u5e8f\u7d50\u675f\u4e2d.....\n
+error.winsock=tLast WinSock \u932f\u8aa4\uff1a 
+error.winsock.load=\u7121\u6cd5\u8f09\u5165 winsock.dll
+error.winsock.start=WSAStartup \u5931\u6557
+error.badinst.nohome=\u5b89\u88dd\u932f\u8aa4\uff1a\u672a\u8a2d\u5b9a JAVAWS_HOME 
+error.splash.noimage=Splash\uff1a\u7121\u6cd5\u8f09\u5165\u9583\u73fe\u87a2\u5e55\u5f71\u50cf
+error.splash.socket=Splash\uff1a\u4f3a\u670d\u5668 socket \u5931\u6557
+error.splash.cmnd=Splash\uff1a\u7121\u6cd5\u8fa8\u8b58\u6307\u4ee4
+error.splash.port=Splash\uff1a\u672a\u6307\u5b9a\u901a\u8a0a\u57e0
+error.splash.send=Splash\uff1a\u9001\u51fa\u5931\u6557
+error.splash.timer=Splash\uff1a\u7121\u6cd5\u5efa\u7acb\u95dc\u6a5f\u8a08\u6642\u5668
+error.splash.x11.open=Splash\uff1a\u7121\u6cd5\u958b\u555f X11 \u986f\u793a\u756b\u9762
+error.splash.x11.connect=Splash\uff1aX11 \u9023\u7dda\u5931\u6557
+# Javaws usage: '\' is a joining of two sentence,which are connected including
+# the invisible character '\n'.
+message.javaws.usage=\
+\u7528\u6cd5\uff1a\tjavaws [\u57f7\u884c\u9078\u9805] <jnlp \u6a94\u6848>	\
+\tjavaws [\u63a7\u5236\u9078\u9805]		\
+						\
+\u5176\u4e2d\uff0c\u57f7\u884c\u9078\u9805\u5305\u62ec\uff1a			\
+-verbose       \t\u986f\u793a\u66f4\u8a73\u7d30\u7684\u8f38\u51fa	\
+-offline       \t\u5728\u96e2\u7dda\u6a21\u5f0f\u4e0b\u57f7\u884c\u61c9\u7528\u7a0b\u5f0f	\
+-system        \t\u50c5\u5f9e\u7cfb\u7d71\u5feb\u53d6\u57f7\u884c\u61c9\u7528\u7a0b\u5f0f\
+-Xnosplash     \t\u57f7\u884c\u6642\u4e0d\u986f\u793a\u8edf\u9ad4\u8cc7\u8a0a\u756b\u9762	\
+-J<\u9078\u9805>     \t\u70ba vm \u63d0\u4f9b\u9078\u9805	\
+-wait          \t\u555f\u52d5 Java \u7a0b\u5e8f\u4e26\u7b49\u5f85\u5176\u7d50\u675f	\
+	\
+\u63a7\u5236\u9078\u9805\u5305\u62ec\uff1a	\
+-viewer        \t\u5728 Java \u63a7\u5236\u9762\u677f\u4e2d\u986f\u793a\u5feb\u53d6\u6aa2\u8996\u5668\
+-uninstall     \t\u5f9e\u5feb\u53d6\u4e2d\u79fb\u9664\u6240\u6709\u61c9\u7528\u7a0b\u5f0f\
+-uninstall <jnlp \u6a94\u6848>              \t\u5f9e\u5feb\u53d6\u4e2d\u79fb\u9664\u61c9\u7528\u7a0b\u5f0f	\
+-import [\u532f\u5165\u9078\u9805] <jnlp \u6a94\u6848>\t\u5c07\u61c9\u7528\u7a0b\u5f0f\u532f\u5165\u5feb\u53d6		\
+									\
+\u532f\u5165\u9078\u9805\u5305\u62ec\uff1a						\
+-silent        \t\u532f\u5165\u6642\u4e0d\u51fa\u73fe\u8a0a\u606f (\u7121\u4f7f\u7528\u8005\u4ecb\u9762)	\
+-system        \t\u5c07\u61c9\u7528\u7a0b\u5f0f\u532f\u5165\u7cfb\u7d71\u5feb\u53d6	\
+-codebase <url>\t\u5f9e\u6307\u5b9a\u7684\u4ee3\u78bc\u5eab\u64f7\u53d6\u8cc7\u6e90	\
+-shortcut      \t\u4e0d\u8ad6\u4f7f\u7528\u8005\u662f\u5426\u56de\u61c9\u63d0\u793a\u90fd\u5b89\u88dd\u6377\u5f91	\
+-association   \t\u4e0d\u8ad6\u4f7f\u7528\u8005\u662f\u5426\u56de\u61c9\u63d0\u793a\u90fd\u5b89\u88dd\u95dc\u806f	\
+\n
Index: AE/installer2/setup_win/JRE/lib/deploy/messages_zh_TW.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/deploy/messages_zh_TW.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/deploy/messages_zh_TW.properties	(revision 613)
@@ -0,0 +1,57 @@
+#
+# @(#)messages.properties	1.6 05/05/18
+#
+# Copyright (c) 2004, Oracle and/or its affiliates. All rights reserved.
+# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
+#
+
+error.internal.badmsg=\u5167\u90e8\u932f\u8aa4\uff0c\u4e0d\u660e\u7684\u8a0a\u606f
+error.badinst.nojre=\u5b89\u88dd\u932f\u8aa4\u3002\u5728\u914d\u7f6e\u6a94\u4e2d\u627e\u4e0d\u5230 JRE
+error.badinst.execv=\u5b89\u88dd\u932f\u8aa4\u3002\u547c\u53eb Java VM (execv) \u6642\u767c\u751f\u932f\u8aa4
+error.badinst.sysexec=\u5b89\u88dd\u932f\u8aa4\u3002\u547c\u53eb Java VM (SysExec) \u6642\u767c\u751f\u932f\u8aa4 
+error.listener.failed=Splash\uff1asysCreateListenerSocket \u5931\u6557
+error.accept.failed=Splash\uff1a\u63a5\u53d7\u5931\u6557
+error.recv.failed=Splash\uff1arecv \u5931\u6557
+error.invalid.port=Splash\uff1a\u6709\u6548\u7684\u901a\u8a0a\u57e0\u5c1a\u672a\u56de\u5fa9
+error.read=\u8b80\u53d6\u8d85\u51fa\u7de9\u885d\u5340\u5c3e\u7aef
+error.xmlparsing=XML \u89e3\u6790\u932f\u8aa4\uff1a\u627e\u5230\u932f\u8aa4\u7684 token \u7a2e\u985e
+error.splash.exit=Java Web Start \u9583\u73fe\u87a2\u5e55\u7a0b\u5e8f\u7d50\u675f\u4e2d.....\n
+error.winsock=tLast WinSock \u932f\u8aa4\uff1a 
+error.winsock.load=\u7121\u6cd5\u8f09\u5165 winsock.dll
+error.winsock.start=WSAStartup \u5931\u6557
+error.badinst.nohome=\u5b89\u88dd\u932f\u8aa4\uff1a\u672a\u8a2d\u5b9a JAVAWS_HOME 
+error.splash.noimage=Splash\uff1a\u7121\u6cd5\u8f09\u5165\u9583\u73fe\u87a2\u5e55\u5f71\u50cf
+error.splash.socket=Splash\uff1a\u4f3a\u670d\u5668 socket \u5931\u6557
+error.splash.cmnd=Splash\uff1a\u7121\u6cd5\u8fa8\u8b58\u6307\u4ee4
+error.splash.port=Splash\uff1a\u672a\u6307\u5b9a\u901a\u8a0a\u57e0
+error.splash.send=Splash\uff1a\u9001\u51fa\u5931\u6557
+error.splash.timer=Splash\uff1a\u7121\u6cd5\u5efa\u7acb\u95dc\u6a5f\u8a08\u6642\u5668
+error.splash.x11.open=Splash\uff1a\u7121\u6cd5\u958b\u555f X11 \u986f\u793a\u756b\u9762
+error.splash.x11.connect=Splash\uff1aX11 \u9023\u7dda\u5931\u6557
+# Javaws usage: '\' is a joining of two sentence,which are connected including
+# the invisible character '\n'.
+message.javaws.usage=\
+\u7528\u6cd5\uff1a\tjavaws [\u57f7\u884c\u9078\u9805] <jnlp \u6a94\u6848>	\
+\tjavaws [\u63a7\u5236\u9078\u9805]		\
+						\
+\u5176\u4e2d\uff0c\u57f7\u884c\u9078\u9805\u5305\u62ec\uff1a			\
+-verbose       \t\u986f\u793a\u66f4\u8a73\u7d30\u7684\u8f38\u51fa	\
+-offline       \t\u5728\u96e2\u7dda\u6a21\u5f0f\u4e0b\u57f7\u884c\u61c9\u7528\u7a0b\u5f0f	\
+-system        \t\u50c5\u5f9e\u7cfb\u7d71\u5feb\u53d6\u57f7\u884c\u61c9\u7528\u7a0b\u5f0f\
+-Xnosplash     \t\u57f7\u884c\u6642\u4e0d\u986f\u793a\u8edf\u9ad4\u8cc7\u8a0a\u756b\u9762	\
+-J<\u9078\u9805>     \t\u70ba vm \u63d0\u4f9b\u9078\u9805	\
+-wait          \t\u555f\u52d5 Java \u7a0b\u5e8f\u4e26\u7b49\u5f85\u5176\u7d50\u675f	\
+	\
+\u63a7\u5236\u9078\u9805\u5305\u62ec\uff1a	\
+-viewer        \t\u5728 Java \u63a7\u5236\u9762\u677f\u4e2d\u986f\u793a\u5feb\u53d6\u6aa2\u8996\u5668\
+-uninstall     \t\u5f9e\u5feb\u53d6\u4e2d\u79fb\u9664\u6240\u6709\u61c9\u7528\u7a0b\u5f0f\
+-uninstall <jnlp \u6a94\u6848>              \t\u5f9e\u5feb\u53d6\u4e2d\u79fb\u9664\u61c9\u7528\u7a0b\u5f0f	\
+-import [\u532f\u5165\u9078\u9805] <jnlp \u6a94\u6848>\t\u5c07\u61c9\u7528\u7a0b\u5f0f\u532f\u5165\u5feb\u53d6		\
+									\
+\u532f\u5165\u9078\u9805\u5305\u62ec\uff1a						\
+-silent        \t\u532f\u5165\u6642\u4e0d\u51fa\u73fe\u8a0a\u606f (\u7121\u4f7f\u7528\u8005\u4ecb\u9762)	\
+-system        \t\u5c07\u61c9\u7528\u7a0b\u5f0f\u532f\u5165\u7cfb\u7d71\u5feb\u53d6	\
+-codebase <url>\t\u5f9e\u6307\u5b9a\u7684\u4ee3\u78bc\u5eab\u64f7\u53d6\u8cc7\u6e90	\
+-shortcut      \t\u4e0d\u8ad6\u4f7f\u7528\u8005\u662f\u5426\u56de\u61c9\u63d0\u793a\u90fd\u5b89\u88dd\u6377\u5f91	\
+-association   \t\u4e0d\u8ad6\u4f7f\u7528\u8005\u662f\u5426\u56de\u61c9\u63d0\u793a\u90fd\u5b89\u88dd\u95dc\u806f	\
+\n
Index: AE/installer2/setup_win/JRE/lib/ext/meta-index
===================================================================
--- AE/installer2/setup_win/JRE/lib/ext/meta-index	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/ext/meta-index	(revision 613)
@@ -0,0 +1,22 @@
+% VERSION 2
+% WARNING: this file is auto-generated; do not edit
+% UNSUPPORTED: this file and its format may change and/or
+%   may be removed in a future release
+# dnsns.jar
+META-INF/services/sun.net.spi.nameservice.NameServiceDescriptor
+sun/net
+# localedata.jar
+sun/text
+sun/util
+# sunjce_provider.jar
+com/sun/crypto/
+META-INF/JCE_RSA.RSA
+META-INF/JCE_RSA.SF
+# sunmscapi.jar
+sun/security
+META-INF/JCE_RSA.RSA
+META-INF/JCE_RSA.SF
+# sunpkcs11.jar
+sun/security
+META-INF/JCE_RSA.RSA
+META-INF/JCE_RSA.SF
Index: AE/installer2/setup_win/JRE/lib/flavormap.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/flavormap.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/flavormap.properties	(revision 613)
@@ -0,0 +1,76 @@
+# @(#)flavormap.properties	1.14 02/09/05
+#
+# This properties file is used to initialize the default
+# java.awt.datatransfer.SystemFlavorMap. It contains the Win32 platform-
+# specific, default mappings between common Win32 Clipboard atoms and platform-
+# independent MIME type strings, which will be converted into
+# java.awt.datatransfer.DataFlavors.
+#
+# These default mappings may be augmented by specifying the
+#
+#       AWT.DnD.flavorMapFileURL 
+#
+# property in the appropriate awt.properties file. The specified properties URL
+# will be loaded into the SystemFlavorMap.
+#
+# The standard format is:
+#
+# <native>=<MIME type>
+#
+# <native> should be a string identifier that the native platform will
+# recognize as a valid data format. <MIME type> should specify both a MIME
+# primary type and a MIME subtype separated by a '/'. The MIME type may include
+# parameters, where each parameter is a key/value pair separated by '=', and
+# where each parameter to the MIME type is separated by a ';'.
+#
+# Because SystemFlavorMap implements FlavorTable, developers are free to
+# duplicate both native keys and DataFlavor values. If a mapping contains a
+# duplicate key or value, earlier mappings which included this key or value
+# will be preferred.
+#
+# Mappings whose values specify DataFlavors with primary MIME types of
+# "text", and which support the charset parameter, should specify the exact
+# format in which the native platform expects the data. The "charset"
+# parameter specifies the char to byte encoding, the "eoln" parameter
+# specifies the end-of-line marker, and the "terminators" parameter specifies
+# the number of terminating NUL bytes. Note that "eoln" and "terminators"
+# are not standardized MIME type parameters. They are specific to this file
+# format ONLY. They will not appear in any of the DataFlavors returned by the
+# SystemFlavorMap at the Java level.
+#
+# If the "charset" parameter is omitted, or has zero length, the platform
+# default encoding is assumed. If the "eoln" parameter is omitted, or has
+# zero length, "\n" is assumed. If the "terminators" parameter is omitted,
+# or has a value less than zero, zero is assumed.
+#
+# Upon initialization, the data transfer subsystem will record the specified
+# details of the native text format, but the default SystemFlavorMap will
+# present a large set of synthesized DataFlavors which map, in both
+# directions, to the native. After receiving data from the application in one
+# of the synthetic DataFlavors, the data transfer subsystem will transform
+# the data stream into the format specified in this file before passing the
+# transformed stream to the native system.
+#
+# Mappings whose values specify DataFlavors with primary MIME types of
+# "text", but which do not support the charset parameter, will be treated as
+# opaque, 8-bit data. They will not undergo any transformation process, and
+# any "charset", "eoln", or "terminators" parameters specified in this file
+# will be ignored.
+#
+# See java.awt.datatransfer.DataFlavor.selectBestTextFlavor for a list of
+# text flavors which support the charset parameter.
+
+UNICODE\ TEXT=text/plain;charset=utf-16le;eoln="\r\n";terminators=2
+TEXT=text/plain;eoln="\r\n";terminators=1
+HTML\ Format=text/html;charset=utf-8;eoln="\r\n";terminators=1
+Rich\ Text\ Format=text/rtf
+HDROP=application/x-java-file-list;class=java.util.List
+PNG=image/x-java-image;class=java.awt.Image
+JFIF=image/x-java-image;class=java.awt.Image
+DIB=image/x-java-image;class=java.awt.Image
+ENHMETAFILE=image/x-java-image;class=java.awt.Image
+METAFILEPICT=image/x-java-image;class=java.awt.Image
+LOCALE=application/x-java-text-encoding;class="[B"
+UniformResourceLocator=application/x-java-url;class=java.net.URL
+UniformResourceLocator=text/uri-list;eoln="\r\n";terminators=1
+UniformResourceLocator=text/plain;eoln="\r\n";terminators=1
Index: AE/installer2/setup_win/JRE/lib/fontconfig.98.properties.src
===================================================================
--- AE/installer2/setup_win/JRE/lib/fontconfig.98.properties.src	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/fontconfig.98.properties.src	(revision 613)
@@ -0,0 +1,220 @@
+# @(#)fontconfig.98.properties	1.9 10/03/23
+#
+# Copyright (c) 2003, Oracle and/or its affiliates. All rights reserved.
+#
+
+# Version
+
+version=1
+
+# Component Font Mappings
+
+allfonts.chinese-ms936=SimSun
+allfonts.dingbats=Wingdings
+allfonts.lucida=Lucida Sans Regular
+allfonts.symbol=Symbol
+allfonts.thai=Lucida Sans Regular
+
+serif.plain.alphabetic=Times New Roman
+serif.plain.chinese-ms950=MingLiU
+serif.plain.hebrew=David
+serif.plain.japanese=\uff2d\uff33 \u660e\u671d
+serif.plain.korean=Batang
+
+serif.bold.alphabetic=Times New Roman Bold
+serif.bold.chinese-ms950=PMingLiU
+serif.bold.hebrew=David Bold
+serif.bold.japanese=\uff2d\uff33 \u660e\u671d
+serif.bold.korean=Batang
+
+serif.italic.alphabetic=Times New Roman Italic
+serif.italic.chinese-ms950=PMingLiU
+serif.italic.hebrew=David
+serif.italic.japanese=\uff2d\uff33 \u660e\u671d
+serif.italic.korean=Batang
+
+serif.bolditalic.alphabetic=Times New Roman Bold Italic
+serif.bolditalic.chinese-ms950=PMingLiU
+serif.bolditalic.hebrew=David Bold
+serif.bolditalic.japanese=\uff2d\uff33 \u660e\u671d
+serif.bolditalic.korean=Batang
+
+sansserif.plain.alphabetic=Arial
+sansserif.plain.chinese-ms950=MingLiU
+sansserif.plain.hebrew=David
+sansserif.plain.japanese=\uff2d\uff33 \u30b4\u30b7\u30c3\u30af
+sansserif.plain.korean=Gulim
+
+sansserif.bold.alphabetic=Arial Bold
+sansserif.bold.chinese-ms950=PMingLiU
+sansserif.bold.hebrew=David Bold
+sansserif.bold.japanese=\uff2d\uff33 \u30b4\u30b7\u30c3\u30af
+sansserif.bold.korean=Gulim
+
+sansserif.italic.alphabetic=Arial Italic
+sansserif.italic.chinese-ms950=PMingLiU
+sansserif.italic.hebrew=David
+sansserif.italic.japanese=\uff2d\uff33 \u30b4\u30b7\u30c3\u30af
+sansserif.italic.korean=Gulim
+
+sansserif.bolditalic.alphabetic=Arial Bold Italic
+sansserif.bolditalic.chinese-ms950=PMingLiU
+sansserif.bolditalic.hebrew=David Bold
+sansserif.bolditalic.japanese=\uff2d\uff33 \u30b4\u30b7\u30c3\u30af
+sansserif.bolditalic.korean=Gulim
+
+monospaced.plain.alphabetic=Courier New
+monospaced.plain.chinese-ms950=MingLiU
+monospaced.plain.hebrew=David
+monospaced.plain.japanese=\uff2d\uff33 \u30b4\u30b7\u30c3\u30af
+monospaced.plain.korean=GulimChe
+
+monospaced.bold.alphabetic=Courier New Bold
+monospaced.bold.chinese-ms950=PMingLiU
+monospaced.bold.hebrew=David Bold
+monospaced.bold.japanese=\uff2d\uff33 \u30b4\u30b7\u30c3\u30af
+monospaced.bold.korean=GulimChe
+
+monospaced.italic.alphabetic=Courier New Italic
+monospaced.italic.chinese-ms950=PMingLiU
+monospaced.italic.hebrew=David
+monospaced.italic.japanese=\uff2d\uff33 \u30b4\u30b7\u30c3\u30af
+monospaced.italic.korean=GulimChe
+
+monospaced.bolditalic.alphabetic=Courier New Bold Italic
+monospaced.bolditalic.chinese-ms950=PMingLiU
+monospaced.bolditalic.hebrew=David Bold
+monospaced.bolditalic.japanese=\uff2d\uff33 \u30b4\u30b7\u30c3\u30af
+monospaced.bolditalic.korean=GulimChe
+
+dialog.plain.alphabetic=Arial
+dialog.plain.chinese-ms950=MingLiU
+dialog.plain.hebrew=David
+dialog.plain.japanese=\uff2d\uff33 \u30b4\u30b7\u30c3\u30af
+dialog.plain.korean=Gulim
+
+dialog.bold.alphabetic=Arial Bold
+dialog.bold.chinese-ms950=PMingLiU
+dialog.bold.hebrew=David Bold
+dialog.bold.japanese=\uff2d\uff33 \u30b4\u30b7\u30c3\u30af
+dialog.bold.korean=Gulim
+
+dialog.italic.alphabetic=Arial Italic
+dialog.italic.chinese-ms950=PMingLiU
+dialog.italic.hebrew=David
+dialog.italic.japanese=\uff2d\uff33 \u30b4\u30b7\u30c3\u30af
+dialog.italic.korean=Gulim
+
+dialog.bolditalic.alphabetic=Arial Bold Italic
+dialog.bolditalic.chinese-ms950=PMingLiU
+dialog.bolditalic.hebrew=David Bold
+dialog.bolditalic.japanese=\uff2d\uff33 \u30b4\u30b7\u30c3\u30af
+dialog.bolditalic.korean=Gulim
+
+dialoginput.plain.alphabetic=Courier New
+dialoginput.plain.chinese-ms950=MingLiU
+dialoginput.plain.hebrew=David
+dialoginput.plain.japanese=\uff2d\uff33 \u30b4\u30b7\u30c3\u30af
+dialoginput.plain.korean=Gulim
+
+dialoginput.bold.alphabetic=Courier New Bold
+dialoginput.bold.chinese-ms950=PMingLiU
+dialoginput.bold.hebrew=David Bold
+dialoginput.bold.japanese=\uff2d\uff33 \u30b4\u30b7\u30c3\u30af
+dialoginput.bold.korean=Gulim
+
+dialoginput.italic.alphabetic=Courier New Italic
+dialoginput.italic.chinese-ms950=PMingLiU
+dialoginput.italic.hebrew=David
+dialoginput.italic.japanese=\uff2d\uff33 \u30b4\u30b7\u30c3\u30af
+dialoginput.italic.korean=Gulim
+
+dialoginput.bolditalic.alphabetic=Courier New Bold Italic
+dialoginput.bolditalic.chinese-ms950=PMingLiU
+dialoginput.bolditalic.hebrew=David Bold
+dialoginput.bolditalic.japanese=\uff2d\uff33 \u30b4\u30b7\u30c3\u30af
+dialoginput.bolditalic.korean=Gulim
+
+# Search Sequences
+
+sequence.allfonts=alphabetic/default,dingbats,symbol
+
+sequence.serif.GBK=alphabetic/1252,chinese-ms936,dingbats,symbol
+sequence.sansserif.GBK=alphabetic/1252,chinese-ms936,dingbats,symbol
+sequence.monospaced.GBK=chinese-ms936,alphabetic/1252,dingbats,symbol
+sequence.dialog.GBK=alphabetic/1252,chinese-ms936,dingbats,symbol
+sequence.dialoginput.GBK=alphabetic/1252,chinese-ms936,dingbats,symbol
+
+sequence.serif.x-windows-950=alphabetic/1252,chinese-ms950,dingbats,symbol
+sequence.sansserif.x-windows-950=alphabetic/1252,chinese-ms950,dingbats,symbol
+sequence.monospaced.x-windows-950=chinese-ms950,alphabetic/1252,dingbats,symbol
+sequence.dialog.x-windows-950=alphabetic/1252,chinese-ms950,dingbats,symbol
+sequence.dialoginput.x-windows-950=alphabetic/1252,chinese-ms950,dingbats,symbol
+
+sequence.allfonts.windows-1255=hebrew,alphabetic/1252,dingbats,symbol
+
+sequence.serif.windows-31j=alphabetic/1252,japanese,dingbats,symbol
+sequence.sansserif.windows-31j=alphabetic/1252,japanese,dingbats,symbol
+sequence.monospaced.windows-31j=japanese,alphabetic/1252,dingbats,symbol
+sequence.dialog.windows-31j=alphabetic/1252,japanese,dingbats,symbol
+sequence.dialoginput.windows-31j=alphabetic/1252,japanese,dingbats,symbol
+
+sequence.serif.x-windows-949=alphabetic/1252,korean,dingbats,symbol
+sequence.sansserif.x-windows-949=alphabetic/1252,korean,dingbats,symbol
+sequence.monospaced.x-windows-949=korean,alphabetic/1252,dingbats,symbol
+sequence.dialog.x-windows-949=alphabetic/1252,korean,dingbats,symbol
+sequence.dialoginput.x-windows-949=alphabetic/1252,korean,dingbats,symbol
+
+sequence.allfonts.x-windows-874=alphabetic/1252,thai,dingbats,symbol
+
+sequence.fallback=lucida
+
+# Exclusion Ranges
+
+exclusion.alphabetic=0700-1e9f,1f00-20ab,20ad-f8ff
+exclusion.hebrew=0041-005a,0060-007a,007f-00ff,20ac-20ac
+
+# Monospaced to Proportional width variant mapping
+# (Experimental private syntax)
+proportional.\uff2d\uff33_\u30b4\u30b7\u30c3\u30af=\uff2d\uff33 \uff30\u30b4\u30b7\u30c3\u30af
+proportional.\uff2d\uff33_\u660e\u671d=\uff2d\uff33 \uff30\u660e\u671d
+proportional.MingLiU=PMingLiU
+
+# Font File Names
+
+filename.Arial=ARIAL.TTF
+filename.Arial_Bold=ARIALBD.TTF
+filename.Arial_Italic=ARIALI.TTF
+filename.Arial_Bold_Italic=ARIALBI.TTF
+
+filename.Courier_New=COUR.TTF
+filename.Courier_New_Bold=COURBD.TTF
+filename.Courier_New_Italic=COURI.TTF
+filename.Courier_New_Bold_Italic=COURBI.TTF
+
+filename.Times_New_Roman=TIMES.TTF
+filename.Times_New_Roman_Bold=TIMESBD.TTF
+filename.Times_New_Roman_Italic=TIMESI.TTF
+filename.Times_New_Roman_Bold_Italic=TIMESBI.TTF
+
+filename.SimSun=SIMSUN.TTF
+
+filename.MingLiU=MINGLIU.TTC
+filename.PMingLiU=MINGLIU.TTC
+
+filename.David=DAVID.TTF
+filename.David_Bold=DAVIDBD.TTF
+
+filename.\uff2d\uff33_\u660e\u671d=MSMINCHO.TTC
+filename.\uff2d\uff33_\uff30\u660e\u671d=MSMINCHO.TTC
+filename.\uff2d\uff33_\u30b4\u30b7\u30c3\u30af=MSGOTHIC.TTC
+filename.\uff2d\uff33_\uff30\u30b4\u30b7\u30c3\u30af=MSGOTHIC.TTC
+
+filename.Gulim=gulim.TTC
+filename.Batang=batang.TTC
+filename.GulimChe=gulim.TTC
+
+filename.Lucida_Sans_Regular=LucidaSansRegular.ttf
+filename.Symbol=SYMBOL.TTF
+filename.Wingdings=WINGDING.TTF
+
Index: AE/installer2/setup_win/JRE/lib/fontconfig.properties.src
===================================================================
--- AE/installer2/setup_win/JRE/lib/fontconfig.properties.src	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/fontconfig.properties.src	(revision 613)
@@ -0,0 +1,271 @@
+# @(#)fontconfig.properties	1.8 10/03/23
+#
+# Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
+#
+
+# Version
+
+version=1
+
+# Component Font Mappings
+
+allfonts.chinese-ms936=SimSun
+allfonts.chinese-ms936-extb=SimSun-ExtB
+allfonts.chinese-gb18030=SimSun-18030
+allfonts.chinese-gb18030-extb=SimSun-ExtB
+allfonts.chinese-hkscs=MingLiU_HKSCS
+allfonts.chinese-ms950-extb=MingLiU-ExtB
+allfonts.devanagari=Mangal
+allfonts.dingbats=Wingdings
+allfonts.lucida=Lucida Sans Regular
+allfonts.symbol=Symbol
+allfonts.thai=Lucida Sans Regular
+
+serif.plain.alphabetic=Times New Roman
+serif.plain.chinese-ms950=MingLiU
+serif.plain.chinese-ms950-extb=MingLiU-ExtB
+serif.plain.hebrew=David
+serif.plain.japanese=MS Mincho
+serif.plain.korean=Batang
+
+serif.bold.alphabetic=Times New Roman Bold
+serif.bold.chinese-ms950=PMingLiU
+serif.bold.chinese-ms950-extb=PMingLiU-ExtB
+serif.bold.hebrew=David Bold
+serif.bold.japanese=MS Mincho
+serif.bold.korean=Batang
+
+serif.italic.alphabetic=Times New Roman Italic
+serif.italic.chinese-ms950=PMingLiU
+serif.italic.chinese-ms950-extb=PMingLiU-ExtB
+serif.italic.hebrew=David
+serif.italic.japanese=MS Mincho
+serif.italic.korean=Batang
+
+serif.bolditalic.alphabetic=Times New Roman Bold Italic
+serif.bolditalic.chinese-ms950=PMingLiU
+serif.bolditalic.chinese-ms950-extb=PMingLiU-ExtB
+serif.bolditalic.hebrew=David Bold
+serif.bolditalic.japanese=MS Mincho
+serif.bolditalic.korean=Batang
+
+sansserif.plain.alphabetic=Arial
+sansserif.plain.chinese-ms950=MingLiU
+sansserif.plain.chinese-ms950-extb=MingLiU-ExtB
+sansserif.plain.hebrew=David
+sansserif.plain.japanese=MS Gothic
+sansserif.plain.korean=Gulim
+
+sansserif.bold.alphabetic=Arial Bold
+sansserif.bold.chinese-ms950=PMingLiU
+sansserif.bold.chinese-ms950-extb=PMingLiU-ExtB
+sansserif.bold.hebrew=David Bold
+sansserif.bold.japanese=MS Gothic
+sansserif.bold.korean=Gulim
+
+sansserif.italic.alphabetic=Arial Italic
+sansserif.italic.chinese-ms950=PMingLiU
+sansserif.italic.chinese-ms950-extb=PMingLiU-ExtB
+sansserif.italic.hebrew=David
+sansserif.italic.japanese=MS Gothic
+sansserif.italic.korean=Gulim
+
+sansserif.bolditalic.alphabetic=Arial Bold Italic
+sansserif.bolditalic.chinese-ms950=PMingLiU
+sansserif.bolditalic.chinese-ms950-extb=PMingLiU-ExtB
+sansserif.bolditalic.hebrew=David Bold
+sansserif.bolditalic.japanese=MS Gothic
+sansserif.bolditalic.korean=Gulim
+
+monospaced.plain.alphabetic=Courier New
+monospaced.plain.chinese-ms950=MingLiU
+monospaced.plain.chinese-ms950-extb=MingLiU-ExtB
+monospaced.plain.hebrew=David
+monospaced.plain.japanese=MS Gothic
+monospaced.plain.korean=GulimChe
+
+monospaced.bold.alphabetic=Courier New Bold
+monospaced.bold.chinese-ms950=PMingLiU
+monospaced.bold.chinese-ms950-extb=PMingLiU-ExtB
+monospaced.bold.hebrew=David Bold
+monospaced.bold.japanese=MS Gothic
+monospaced.bold.korean=GulimChe
+
+monospaced.italic.alphabetic=Courier New Italic
+monospaced.italic.chinese-ms950=PMingLiU
+monospaced.italic.chinese-ms950-extb=PMingLiU-ExtB
+monospaced.italic.hebrew=David
+monospaced.italic.japanese=MS Gothic
+monospaced.italic.korean=GulimChe
+
+monospaced.bolditalic.alphabetic=Courier New Bold Italic
+monospaced.bolditalic.chinese-ms950=PMingLiU
+monospaced.bolditalic.chinese-ms950-extb=PMingLiU-ExtB
+monospaced.bolditalic.hebrew=David Bold
+monospaced.bolditalic.japanese=MS Gothic
+monospaced.bolditalic.korean=GulimChe
+
+dialog.plain.alphabetic=Arial
+dialog.plain.chinese-ms950=MingLiU
+dialog.plain.chinese-ms950-extb=MingLiU-ExtB
+dialog.plain.hebrew=David
+dialog.plain.japanese=MS Gothic
+dialog.plain.korean=Gulim
+
+dialog.bold.alphabetic=Arial Bold
+dialog.bold.chinese-ms950=PMingLiU
+dialog.bold.chinese-ms950-extb=PMingLiU-ExtB
+dialog.bold.hebrew=David Bold
+dialog.bold.japanese=MS Gothic
+dialog.bold.korean=Gulim
+
+dialog.italic.alphabetic=Arial Italic
+dialog.italic.chinese-ms950=PMingLiU
+dialog.italic.chinese-ms950-extb=PMingLiU-ExtB
+dialog.italic.hebrew=David
+dialog.italic.japanese=MS Gothic
+dialog.italic.korean=Gulim
+
+dialog.bolditalic.alphabetic=Arial Bold Italic
+dialog.bolditalic.chinese-ms950=PMingLiU
+dialog.bolditalic.chinese-ms950-extb=PMingLiU-ExtB
+dialog.bolditalic.hebrew=David Bold
+dialog.bolditalic.japanese=MS Gothic
+dialog.bolditalic.korean=Gulim
+
+dialoginput.plain.alphabetic=Courier New
+dialoginput.plain.chinese-ms950=MingLiU
+dialoginput.plain.chinese-ms950-extb=MingLiU-ExtB
+dialoginput.plain.hebrew=David
+dialoginput.plain.japanese=MS Gothic
+dialoginput.plain.korean=Gulim
+
+dialoginput.bold.alphabetic=Courier New Bold
+dialoginput.bold.chinese-ms950=PMingLiU
+dialoginput.bold.chinese-ms950-extb=PMingLiU-ExtB
+dialoginput.bold.hebrew=David Bold
+dialoginput.bold.japanese=MS Gothic
+dialoginput.bold.korean=Gulim
+
+dialoginput.italic.alphabetic=Courier New Italic
+dialoginput.italic.chinese-ms950=PMingLiU
+dialoginput.italic.chinese-ms950-extb=PMingLiU-ExtB
+dialoginput.italic.hebrew=David
+dialoginput.italic.japanese=MS Gothic
+dialoginput.italic.korean=Gulim
+
+dialoginput.bolditalic.alphabetic=Courier New Bold Italic
+dialoginput.bolditalic.chinese-ms950=PMingLiU
+dialoginput.bolditalic.chinese-ms950-extb=PMingLiU-ExtB
+dialoginput.bolditalic.hebrew=David Bold
+dialoginput.bolditalic.japanese=MS Gothic
+dialoginput.bolditalic.korean=Gulim
+
+# Search Sequences
+
+sequence.allfonts=alphabetic/default,dingbats,symbol
+
+sequence.serif.GBK=alphabetic,chinese-ms936,dingbats,symbol,chinese-ms936-extb
+sequence.sansserif.GBK=alphabetic,chinese-ms936,dingbats,symbol,chinese-ms936-extb
+sequence.monospaced.GBK=chinese-ms936,alphabetic,dingbats,symbol,chinese-ms936-extb
+sequence.dialog.GBK=alphabetic,chinese-ms936,dingbats,symbol,chinese-ms936-extb
+sequence.dialoginput.GBK=alphabetic,chinese-ms936,dingbats,symbol,chinese-ms936-extb
+
+sequence.serif.GB18030=alphabetic,chinese-gb18030,dingbats,symbol,chinese-gb18030-extb
+sequence.sansserif.GB18030=alphabetic,chinese-gb18030,dingbats,symbol,chinese-gb18030-extb
+sequence.monospaced.GB18030=chinese-gb18030,alphabetic,dingbats,symbol,chinese-gb18030-extb
+sequence.dialog.GB18030=alphabetic,chinese-gb18030,dingbats,symbol,chinese-gb18030-extb
+sequence.dialoginput.GB18030=alphabetic,chinese-gb18030,dingbats,symbol,chinese-gb18030-extb
+
+sequence.serif.x-windows-950=alphabetic,chinese-ms950,dingbats,symbol,chinese-ms950-extb
+sequence.sansserif.x-windows-950=alphabetic,chinese-ms950,dingbats,symbol,chinese-ms950-extb
+sequence.monospaced.x-windows-950=chinese-ms950,alphabetic,dingbats,symbol,chinese-ms950-extb
+sequence.dialog.x-windows-950=alphabetic,chinese-ms950,dingbats,symbol,chinese-ms950-extb
+sequence.dialoginput.x-windows-950=alphabetic,chinese-ms950,dingbats,symbol,chinese-ms950-extb
+
+sequence.serif.x-MS950-HKSCS=alphabetic,chinese-ms950,chinese-hkscs,dingbats,symbol,chinese-ms950-extb
+sequence.sansserif.x-MS950-HKSCS=alphabetic,chinese-ms950,chinese-hkscs,dingbats,symbol,chinese-ms950-extb
+sequence.monospaced.x-MS950-HKSCS=chinese-ms950,alphabetic,chinese-hkscs,dingbats,symbol,chinese-ms950-extb
+sequence.dialog.x-MS950-HKSCS=alphabetic,chinese-ms950,chinese-hkscs,dingbats,symbol,chinese-ms950-extb
+sequence.dialoginput.x-MS950-HKSCS=alphabetic,chinese-ms950,chinese-hkscs,dingbats,symbol,chinese-ms950-extb
+
+sequence.allfonts.UTF-8.hi=alphabetic/1252,devanagari,dingbats,symbol
+sequence.allfonts.UTF-8.ja=alphabetic,japanese,devanagari,dingbats,symbol
+
+sequence.allfonts.windows-1255=hebrew,alphabetic/1252,dingbats,symbol
+
+sequence.serif.windows-31j=alphabetic,japanese,dingbats,symbol
+sequence.sansserif.windows-31j=alphabetic,japanese,dingbats,symbol
+sequence.monospaced.windows-31j=japanese,alphabetic,dingbats,symbol
+sequence.dialog.windows-31j=alphabetic,japanese,dingbats,symbol
+sequence.dialoginput.windows-31j=alphabetic,japanese,dingbats,symbol
+
+sequence.serif.x-windows-949=alphabetic,korean,dingbats,symbol
+sequence.sansserif.x-windows-949=alphabetic,korean,dingbats,symbol
+sequence.monospaced.x-windows-949=korean,alphabetic,dingbats,symbol
+sequence.dialog.x-windows-949=alphabetic,korean,dingbats,symbol
+sequence.dialoginput.x-windows-949=alphabetic,korean,dingbats,symbol
+
+sequence.allfonts.x-windows-874=alphabetic,thai,dingbats,symbol
+
+sequence.fallback=lucida,\
+                  chinese-ms950,chinese-hkscs,chinese-ms936,chinese-gb18030,\
+                  japanese,korean,chinese-ms950-extb,chinese-ms936-extb
+
+# Exclusion Ranges
+
+exclusion.alphabetic=0700-1e9f,1f00-20ab,20ad-f8ff
+exclusion.chinese-gb18030=0390-03d6,2200-22ef,2701-27be
+exclusion.hebrew=0041-005a,0060-007a,007f-00ff,20ac-20ac
+
+# Monospaced to Proportional width variant mapping
+# (Experimental private syntax)
+proportional.MS_Gothic=MS PGothic
+proportional.MS_Mincho=MS PMincho
+proportional.MingLiU=PMingLiU
+proportional.MingLiU-ExtB=PMingLiU-ExtB
+
+# Font File Names
+
+filename.Arial=ARIAL.TTF
+filename.Arial_Bold=ARIALBD.TTF
+filename.Arial_Italic=ARIALI.TTF
+filename.Arial_Bold_Italic=ARIALBI.TTF
+
+filename.Courier_New=COUR.TTF
+filename.Courier_New_Bold=COURBD.TTF
+filename.Courier_New_Italic=COURI.TTF
+filename.Courier_New_Bold_Italic=COURBI.TTF
+
+filename.Times_New_Roman=TIMES.TTF
+filename.Times_New_Roman_Bold=TIMESBD.TTF
+filename.Times_New_Roman_Italic=TIMESI.TTF
+filename.Times_New_Roman_Bold_Italic=TIMESBI.TTF
+
+filename.SimSun=SIMSUN.TTC
+filename.SimSun-18030=SIMSUN18030.TTC
+filename.SimSun-ExtB=SIMSUNB.TTF
+
+filename.MingLiU=MINGLIU.TTC
+filename.MingLiU-ExtB=MINGLIUB.TTC
+filename.PMingLiU=MINGLIU.TTC
+filename.PMingLiU-ExtB=MINGLIUB.TTC
+filename.MingLiU_HKSCS=hkscsm3u.ttf
+
+filename.David=DAVID.TTF
+filename.David_Bold=DAVIDBD.TTF
+
+filename.MS_Mincho=MSMINCHO.TTC
+filename.MS_PMincho=MSMINCHO.TTC
+filename.MS_Gothic=MSGOTHIC.TTC
+filename.MS_PGothic=MSGOTHIC.TTC
+
+filename.Gulim=gulim.TTC
+filename.Batang=batang.TTC
+filename.GulimChe=gulim.TTC
+
+filename.Lucida_Sans_Regular=LucidaSansRegular.ttf
+filename.Mangal=MANGAL.TTF
+filename.Symbol=SYMBOL.TTF
+filename.Wingdings=WINGDING.TTF
+
Index: AE/installer2/setup_win/JRE/lib/i386/jvm.cfg
===================================================================
--- AE/installer2/setup_win/JRE/lib/i386/jvm.cfg	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/i386/jvm.cfg	(revision 613)
@@ -0,0 +1,24 @@
+#
+# @(#)jvm.cfg	1.9 10/03/23
+# 
+# Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
+# ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
+# 
+# 
+#
+#
+# List of JVMs that can be used as an option to java, javac, etc.
+# Order is important -- first in this list is the default JVM.
+# NOTE that this both this file and its format are UNSUPPORTED and
+# WILL GO AWAY in a future release.
+#
+# You may also select a JVM in an arbitrary location with the
+# "-XXaltjvm=<jvm_dir>" option, but that too is unsupported
+# and may not be available in a future release.
+#
+-client KNOWN
+-server KNOWN
+-hotspot ALIASED_TO -client
+-classic WARN
+-native ERROR
+-green ERROR
Index: AE/installer2/setup_win/JRE/lib/images/cursors/cursors.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/images/cursors/cursors.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/images/cursors/cursors.properties	(revision 613)
@@ -0,0 +1,41 @@
+#
+# @(#)cursors.properties	1.5 99/07/12
+#
+# Cursors Properties file
+#
+# Names GIF89 sources for Custom Cursors and their associated HotSpots
+#
+# Note: the syntax of the property name is significant and is parsed
+# by java.awt.Cursor
+#
+# The syntax is: Cursor.<name>.<geom>.File=win32_<filename>
+#                Cursor.<name>.<geom>.HotSpot=<x>,<y>
+#	         Cursor.<name>.<geom>.Name=<localized name>
+#
+Cursor.CopyDrop.32x32.File=win32_CopyDrop32x32.gif
+Cursor.CopyDrop.32x32.HotSpot=0,0
+Cursor.CopyDrop.32x32.Name=CopyDrop32x32
+#
+Cursor.MoveDrop.32x32.File=win32_MoveDrop32x32.gif
+Cursor.MoveDrop.32x32.HotSpot=0,0
+Cursor.MoveDrop.32x32.Name=MoveDrop32x32
+#
+Cursor.LinkDrop.32x32.File=win32_LinkDrop32x32.gif
+Cursor.LinkDrop.32x32.HotSpot=0,0
+Cursor.LinkDrop.32x32.Name=LinkDrop32x32
+#
+Cursor.CopyNoDrop.32x32.File=win32_CopyNoDrop32x32.gif
+Cursor.CopyNoDrop.32x32.HotSpot=6,2
+Cursor.CopyNoDrop.32x32.Name=CopyNoDrop32x32
+#
+Cursor.MoveNoDrop.32x32.File=win32_MoveNoDrop32x32.gif
+Cursor.MoveNoDrop.32x32.HotSpot=6,2
+Cursor.MoveNoDrop.32x32.Name=MoveNoDrop32x32
+#
+Cursor.LinkNoDrop.32x32.File=win32_LinkNoDrop32x32.gif
+Cursor.LinkNoDrop.32x32.HotSpot=6,2
+Cursor.LinkNoDrop.32x32.Name=LinkNoDrop32x32
+#
+Cursor.Invalid.32x32.File=invalid32x32.gif
+Cursor.Invalid.32x32.HotSpot=6,2
+Cursor.Invalid.32x32.Name=Invalid32x32
Index: AE/installer2/setup_win/JRE/lib/jvm.hprof.txt
===================================================================
--- AE/installer2/setup_win/JRE/lib/jvm.hprof.txt	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/jvm.hprof.txt	(revision 613)
@@ -0,0 +1,60 @@
+Header for -agentlib:hprof (or -Xrunhprof) ASCII Output (JDK 5.0 JVMTI based)
+
+@(#)jvm.hprof.txt	1.5 06/01/28
+
+ Copyright (c) 2006 Sun Microsystems, Inc. All  Rights Reserved.
+
+WARNING!  This file format is under development, and is subject to
+change without notice.
+
+This file contains the following types of records:
+
+THREAD START
+THREAD END      mark the lifetime of Java threads
+
+TRACE           represents a Java stack trace.  Each trace consists
+                of a series of stack frames.  Other records refer to
+                TRACEs to identify (1) where object allocations have
+                taken place, (2) the frames in which GC roots were
+                found, and (3) frequently executed methods.
+
+HEAP DUMP       is a complete snapshot of all live objects in the Java
+                heap.  Following distinctions are made:
+
+                ROOT    root set as determined by GC
+                CLS     classes 
+                OBJ     instances
+                ARR     arrays
+
+SITES           is a sorted list of allocation sites.  This identifies
+                the most heavily allocated object types, and the TRACE
+                at which those allocations occurred.
+
+CPU SAMPLES     is a statistical profile of program execution.  The VM
+                periodically samples all running threads, and assigns
+                a quantum to active TRACEs in those threads.  Entries
+                in this record are TRACEs ranked by the percentage of
+                total quanta they consumed; top-ranked TRACEs are
+                typically hot spots in the program.
+
+CPU TIME        is a profile of program execution obtained by measuring
+                the time spent in individual methods (excluding the time
+                spent in callees), as well as by counting the number of
+                times each method is called. Entries in this record are
+                TRACEs ranked by the percentage of total CPU time. The
+                "count" field indicates the number of times each TRACE 
+                is invoked.
+
+MONITOR TIME    is a profile of monitor contention obtained by measuring
+                the time spent by a thread waiting to enter a monitor.
+                Entries in this record are TRACEs ranked by the percentage
+                of total monitor contention time and a brief description
+                of the monitor.  The "count" field indicates the number of 
+                times the monitor was contended at that TRACE.
+
+MONITOR DUMP    is a complete snapshot of all the monitors and threads in 
+                the System.
+
+HEAP DUMP, SITES, CPU SAMPLES|TIME and MONITOR DUMP|TIME records are generated 
+at program exit.  They can also be obtained during program execution by typing 
+Ctrl-\ (on Solaris) or by typing Ctrl-Break (on Win32).
Index: AE/installer2/setup_win/JRE/lib/logging.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/logging.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/logging.properties	(revision 613)
@@ -0,0 +1,54 @@
+############################################################
+#  	Default Logging Configuration File
+#
+# You can use a different file by specifying a filename
+# with the java.util.logging.config.file system property.  
+# For example java -Djava.util.logging.config.file=myfile
+############################################################
+
+############################################################
+#  	Global properties
+############################################################
+
+# "handlers" specifies a comma separated list of log Handler 
+# classes.  These handlers will be installed during VM startup.
+# Note that these classes must be on the system classpath.
+# By default we only configure a ConsoleHandler, which will only
+# show messages at the INFO and above levels.
+handlers= java.util.logging.ConsoleHandler
+
+# To also add the FileHandler, use the following line instead.
+#handlers= java.util.logging.FileHandler, java.util.logging.ConsoleHandler
+
+# Default global logging level.
+# This specifies which kinds of events are logged across
+# all loggers.  For any given facility this global level
+# can be overriden by a facility specific level
+# Note that the ConsoleHandler also has a separate level
+# setting to limit messages printed to the console.
+.level= INFO
+
+############################################################
+# Handler specific properties.
+# Describes specific configuration info for Handlers.
+############################################################
+
+# default file output is in user's home directory.
+java.util.logging.FileHandler.pattern = %h/java%u.log
+java.util.logging.FileHandler.limit = 50000
+java.util.logging.FileHandler.count = 1
+java.util.logging.FileHandler.formatter = java.util.logging.XMLFormatter
+
+# Limit the message that are printed on the console to INFO and above.
+java.util.logging.ConsoleHandler.level = INFO
+java.util.logging.ConsoleHandler.formatter = java.util.logging.SimpleFormatter
+
+
+############################################################
+# Facility specific properties.
+# Provides extra control for each logger.
+############################################################
+
+# For example, set the com.xyz.foo logger to only log SEVERE
+# messages:
+com.xyz.foo.level = SEVERE
Index: AE/installer2/setup_win/JRE/lib/management/jmxremote.access
===================================================================
--- AE/installer2/setup_win/JRE/lib/management/jmxremote.access	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/management/jmxremote.access	(revision 613)
@@ -0,0 +1,79 @@
+######################################################################
+#     Default Access Control File for Remote JMX(TM) Monitoring
+######################################################################
+#
+# Access control file for Remote JMX API access to monitoring.
+# This file defines the allowed access for different roles.  The
+# password file (jmxremote.password by default) defines the roles and their
+# passwords.  To be functional, a role must have an entry in
+# both the password and the access files.
+#
+# The default location of this file is $JRE/lib/management/jmxremote.access
+# You can specify an alternate location by specifying a property in 
+# the management config file $JRE/lib/management/management.properties
+# (See that file for details)
+#
+# The file format for password and access files is syntactically the same
+# as the Properties file format.  The syntax is described in the Javadoc
+# for java.util.Properties.load.
+# A typical access file has multiple lines, where each line is blank,
+# a comment (like this one), or an access control entry.
+#
+# An access control entry consists of a role name, and an
+# associated access level.  The role name is any string that does not
+# itself contain spaces or tabs.  It corresponds to an entry in the
+# password file (jmxremote.password).  The access level is one of the
+# following:
+#       "readonly" grants access to read attributes of MBeans.
+#                   For monitoring, this means that a remote client in this
+#                   role can read measurements but cannot perform any action
+#                   that changes the environment of the running program.
+#       "readwrite" grants access to read and write attributes of MBeans,
+#                   to invoke operations on them, and optionally
+#                   to create or remove them. This access should be granted
+#                   only to trusted clients, since they can potentially
+#                   interfere with the smooth operation of a running program.
+#
+# The "readwrite" access level can optionally be followed by the "create" and/or
+# "unregister" keywords.  The "unregister" keyword grants access to unregister
+# (delete) MBeans.  The "create" keyword grants access to create MBeans of a
+# particular class or of any class matching a particular pattern.  Access
+# should only be granted to create MBeans of known and trusted classes.
+#
+# For example, the following entry would grant readwrite access
+# to "controlRole", as well as access to create MBeans of the class
+# javax.management.monitor.CounterMonitor and to unregister any MBean:
+#  controlRole readwrite \
+#              create javax.management.monitor.CounterMonitorMBean \
+#              unregister
+# or equivalently:
+#  controlRole readwrite unregister create javax.management.monitor.CounterMBean
+#
+# The following entry would grant readwrite access as well as access to create
+# MBeans of any class in the packages javax.management.monitor and
+# javax.management.timer:
+#  controlRole readwrite \
+#              create javax.management.monitor.*,javax.management.timer.* \
+#              unregister
+#
+# The \ character is defined in the Properties file syntax to allow continuation
+# lines as shown here.  A * in a class pattern matches a sequence of characters
+# other than dot (.), so javax.management.monitor.* matches
+# javax.management.monitor.CounterMonitor but not
+# javax.management.monitor.foo.Bar.
+#
+# A given role should have at most one entry in this file.  If a role
+# has no entry, it has no access.
+# If multiple entries are found for the same role name, then the last
+# access entry is used.
+#
+#
+# Default access control entries:
+# o The "monitorRole" role has readonly access.  
+# o The "controlRole" role has readwrite access and can create the standard
+#   Timer and Monitor MBeans defined by the JMX API.
+
+monitorRole   readonly
+controlRole   readwrite \
+              create javax.management.monitor.*,javax.management.timer.* \
+              unregister
Index: AE/installer2/setup_win/JRE/lib/management/jmxremote.password.template
===================================================================
--- AE/installer2/setup_win/JRE/lib/management/jmxremote.password.template	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/management/jmxremote.password.template	(revision 613)
@@ -0,0 +1,64 @@
+# ----------------------------------------------------------------------
+#           Template for jmxremote.password
+#
+# o Copy this template to jmxremote.password
+# o Set the user/password entries in jmxremote.password
+# o Change the permission of jmxremote.password to read-only
+#   by the owner.
+#
+# See below for the location of jmxremote.password file.
+# ----------------------------------------------------------------------
+
+##############################################################
+#        Password File for Remote JMX Monitoring
+##############################################################
+#
+# Password file for Remote JMX API access to monitoring.  This
+# file defines the different roles and their passwords.  The access
+# control file (jmxremote.access by default) defines the allowed
+# access for each role.  To be functional, a role must have an entry
+# in both the password and the access files.
+#
+# Default location of this file is $JRE/lib/management/jmxremote.password
+# You can specify an alternate location by specifying a property in 
+# the management config file $JRE/lib/management/management.properties
+# or by specifying a system property (See that file for details).
+
+
+##############################################################
+#    File permissions of the jmxremote.password file
+##############################################################
+#      Since there are cleartext passwords stored in this file,
+#      this file must be readable by ONLY the owner,
+#      otherwise the program will exit with an error. 
+#
+# The file format for password and access files is syntactically the same
+# as the Properties file format.  The syntax is described in the Javadoc
+# for java.util.Properties.load.
+# Typical password file has multiple  lines, where each line is blank,
+# a comment (like this one), or a password entry.
+#
+#
+# A password entry consists of a role name and an associated
+# password.  The role name is any string that does not itself contain
+# spaces or tabs.  The password is again any string that does not
+# contain spaces or tabs.  Note that passwords appear in the clear in
+# this file, so it is a good idea not to use valuable passwords.
+#
+# A given role should have at most one entry in this file.  If a role
+# has no entry, it has no access.
+# If multiple entries are found for the same role name, then the last one
+# is used.
+#
+# In a typical installation, this file can be read by anybody on the
+# local machine, and possibly by people on other machines.
+# For # security, you should either restrict the access to this file,
+# or specify another, less accessible file in the management config file
+# as described above.
+#
+# Following are two commented-out entries.  The "measureRole" role has
+# password "QED".  The "controlRole" role has password "R&D".
+#
+# monitorRole  QED
+# controlRole   R&D
+
Index: AE/installer2/setup_win/JRE/lib/management/management.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/management/management.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/management/management.properties	(revision 613)
@@ -0,0 +1,318 @@
+#####################################################################
+#	Default Configuration File for Java Platform Management
+#####################################################################
+#
+# The Management Configuration file (in java.util.Properties format)
+# will be read if one of the following system properties is set:
+#    -Dcom.sun.management.jmxremote.port=<port-number>
+# or -Dcom.sun.management.snmp.port=<port-number>
+# or -Dcom.sun.management.config.file=<this-file>
+#
+# The default Management Configuration file is:
+#
+#       $JRE/lib/management/management.properties
+#
+# Another location for the Management Configuration File can be specified
+# by the following property on the Java command line:
+#
+#    -Dcom.sun.management.config.file=<this-file>
+#
+# If -Dcom.sun.management.config.file=<this-file> is set, the port
+# number for the management agent can be specified in the config file
+# using the following lines:
+#
+# ################ Management Agent Port #########################
+#
+# For setting the JMX RMI agent port use the following line
+# com.sun.management.jmxremote.port=<port-number>
+#
+# For setting the SNMP agent port use the following line
+# com.sun.management.snmp.port=<port-number>
+
+#####################################################################
+#                   Optional Instrumentation
+#####################################################################
+#
+# By default only the basic instrumentation with low overhead is on.
+# The following properties allow to selectively turn on optional
+# instrumentation which are off by default and may have some
+# additional overhead.
+#
+# com.sun.management.enableThreadContentionMonitoring
+#
+#      This option enables thread contention monitoring if the
+#      Java virtual machine supports such instrumentation.
+#      Refer to the specification for the java.lang.management.ThreadMBean
+#      interface - see isThreadContentionMonitoringSupported() method.
+#
+
+# To enable thread contention monitoring, uncomment the following line
+# com.sun.management.enableThreadContentionMonitoring
+
+#####################################################################
+#			SNMP Management Properties
+#####################################################################
+#
+# If the system property -Dcom.sun.management.snmp.port=<port-number>
+# is set then
+#	- The SNMP agent (with the Java virtual machine MIB) is started
+#	  that listens on the specified port for incoming SNMP requests.
+#	- the following properties for read for SNMP management.
+#
+# The configuration can be specified only at startup time.
+# Later changes to the above system property (e.g. via setProperty method), this
+# config file, or the ACL file has no effect to the running SNMP agent.
+#
+
+#
+# ##################### SNMP Trap Port #########################
+#
+# com.sun.management.snmp.trap=<trap-destination-port-number>
+#      Specifies the remote port number at which managers are expected
+#      to listen for trap. For each host defined in the ACL file,
+#      the SNMP agent will send traps at <host>:<trap-destination-port-number>
+#      Default for this property is 162.
+#
+
+# To set port for sending traps to a different port use the following line
+# com.sun.management.snmp.trap=<trap-destination-port-number>
+
+#
+# ################ SNMP listen interface #########################
+#
+# com.sun.management.snmp.interface=<InetAddress>
+#      Specifies the local interface on which the SNMP agent will bind.
+#      This is useful when running on machines which have several
+#      interfaces defined. It makes it possible to listen to a specific
+#      subnet accessible through that interface.
+#      Default for this property is "localhost".
+#
+#      The format of the value for that property is any string accepted
+#      by java.net.InetAddress.getByName(String).
+#
+
+# For restricting the port on which SNMP agent listens use the following line
+# com.sun.management.snmp.interface=<InetAddress>
+
+#
+# #################### SNMP ACL file #########################
+#
+# com.sun.management.snmp.acl=true|false
+#      Default for this property is true. (Case for true/false ignored)
+#      If this property is specified as false then the ACL file
+#      is not checked:  all manager hosts are allowed all access.
+#
+
+# For SNMP without checking ACL file uncomment the following line
+# com.sun.management.snmp.acl=false
+
+#
+# com.sun.management.snmp.acl.file=filepath
+#      Specifies location for ACL file
+#      This is optional - default location is
+#      $JRE/lib/management/snmp.acl
+#
+#      If the property "com.sun.management.snmp.acl" is set to false,
+#      then this property and the ACL file are ignored.
+#      Otherwise the ACL file must exist and be in the valid format.
+#      If the ACL file is empty or non existent then no access is allowed.
+#
+#      The SNMP agent will read the ACL file at startup time.
+#      Modification to the ACL file has no effect to any running SNMP
+#      agents which read that ACL file at startup.
+#
+
+# For a non-default acl file location use the following line
+# com.sun.management.snmp.acl.file=filepath
+
+#####################################################################
+#			RMI Management Properties
+#####################################################################
+#
+# If system property -Dcom.sun.management.jmxremote.port=<port-number>
+# is set then
+#     - A MBean server is started
+#     - JRE Platform MBeans are registered in the MBean server
+#     - RMI connector is published  in a private readonly registry at
+#       specified port using a well known name, "jmxrmi"
+#     - the following properties are read for JMX remote management.
+#
+# The configuration can be specified only at startup time.
+# Later changes to above system property (e.g. via setProperty method),
+# this config file, the password file, or the access file have no effect to the
+# running MBean server, the connector, or the registry.
+#
+
+#
+# ########## RMI connector settings for local management ##########
+#
+# com.sun.management.jmxremote.local.only=true|false
+#      Default for this property is true. (Case for true/false ignored)
+#      If this property is specified as true then the local JMX RMI connector
+#      server will only accept connection requests from clients running on
+#      the host where the out-of-the-box JMX management agent is running.
+#      In order to ensure backwards compatibility this property could be
+#      set to false. However, deploying the local management agent in this
+#      way is discouraged because the local JMX RMI connector server will
+#      accept connection requests from any client either local or remote.
+#      For remote management the remote JMX RMI connector server should
+#      be used instead with authentication and SSL/TLS encryption enabled.
+#
+
+# For allowing the local management agent accept local
+# and remote connection requests use the following line
+# com.sun.management.jmxremote.local.only=false
+
+#
+# ###################### RMI SSL #############################
+#
+# com.sun.management.jmxremote.ssl=true|false
+#      Default for this property is true. (Case for true/false ignored)
+#      If this property is specified as false then SSL is not used.
+#
+
+# For RMI monitoring without SSL use the following line
+# com.sun.management.jmxremote.ssl=false
+
+# com.sun.management.jmxremote.ssl.config.file=filepath
+#      Specifies the location of the SSL configuration file. A properties
+#      file can be used to supply the keystore and truststore location and
+#      password settings thus avoiding to pass them as cleartext in the
+#      command-line.
+#
+#      The current implementation of the out-of-the-box management agent will
+#      look up and use the properties specified below to configure the SSL
+#      keystore and truststore, if present:
+#          javax.net.ssl.keyStore=<keystore-location>
+#          javax.net.ssl.keyStorePassword=<keystore-password>
+#          javax.net.ssl.trustStore=<truststore-location>
+#          javax.net.ssl.trustStorePassword=<truststore-password>
+#      Any other properties in the file will be ignored. This will allow us
+#      to extend the property set in the future if required by the default
+#      SSL implementation.
+#
+#      If the property "com.sun.management.jmxremote.ssl" is set to false,
+#      then this property is ignored.
+#
+
+# For supplying the keystore settings in a file use the following line
+# com.sun.management.jmxremote.ssl.config.file=filepath
+
+# com.sun.management.jmxremote.ssl.enabled.cipher.suites=<cipher-suites>
+#      The value of this property is a string that is a comma-separated list
+#      of SSL/TLS cipher suites to enable. This property can be specified in
+#      conjunction with the previous property "com.sun.management.jmxremote.ssl"
+#      in order to control which particular SSL/TLS cipher suites are enabled
+#      for use by accepted connections. If this property is not specified then
+#      the SSL/TLS RMI Server Socket Factory uses the SSL/TLS cipher suites that
+#      are enabled by default.
+#
+
+# com.sun.management.jmxremote.ssl.enabled.protocols=<protocol-versions>
+#      The value of this property is a string that is a comma-separated list
+#      of SSL/TLS protocol versions to enable. This property can be specified in
+#      conjunction with the previous property "com.sun.management.jmxremote.ssl"
+#      in order to control which particular SSL/TLS protocol versions are
+#      enabled for use by accepted connections. If this property is not
+#      specified then the SSL/TLS RMI Server Socket Factory uses the SSL/TLS
+#      protocol versions that are enabled by default.
+#
+
+# com.sun.management.jmxremote.ssl.need.client.auth=true|false
+#      Default for this property is false. (Case for true/false ignored)
+#      If this property is specified as true in conjunction with the previous
+#      property "com.sun.management.jmxremote.ssl" then the SSL/TLS RMI Server
+#      Socket Factory will require client authentication.
+#
+
+# For RMI monitoring with SSL client authentication use the following line
+# com.sun.management.jmxremote.ssl.need.client.auth=true
+
+# com.sun.management.jmxremote.registry.ssl=true|false
+#      Default for this property is false. (Case for true/false ignored)
+#      If this property is specified as true then the RMI registry used
+#      to bind the RMIServer remote object is protected with SSL/TLS
+#      RMI Socket Factories that can be configured with the properties:
+#          com.sun.management.jmxremote.ssl.config.file
+#          com.sun.management.jmxremote.ssl.enabled.cipher.suites
+#          com.sun.management.jmxremote.ssl.enabled.protocols
+#          com.sun.management.jmxremote.ssl.need.client.auth
+#      If the two properties below are true at the same time, i.e.
+#          com.sun.management.jmxremote.ssl=true
+#          com.sun.management.jmxremote.registry.ssl=true
+#      then the RMIServer remote object and the RMI registry are
+#      both exported with the same SSL/TLS RMI Socket Factories.
+#
+
+# For using an SSL/TLS protected RMI registry use the following line
+# com.sun.management.jmxremote.registry.ssl=true
+
+#
+# ################ RMI User authentication ################
+#
+# com.sun.management.jmxremote.authenticate=true|false
+#      Default for this property is true. (Case for true/false ignored)
+#      If this property is specified as false then no authentication is
+#      performed and all users are allowed all access.
+#
+
+# For RMI monitoring without any checking use the following line
+# com.sun.management.jmxremote.authenticate=false
+
+#
+# ################ RMI Login configuration ###################
+#
+# com.sun.management.jmxremote.login.config=<config-name>
+#      Specifies the name of a JAAS login configuration entry to use when
+#      authenticating users of RMI monitoring.
+#
+#      Setting this property is optional - the default login configuration
+#      specifies a file-based authentication that uses the password file.
+#
+#      When using this property to override the default login configuration
+#      then the named configuration entry must be in a file that gets loaded
+#      by JAAS. In addition, the login module(s) specified in the configuration
+#      should use the name and/or password callbacks to acquire the user's
+#      credentials. See the NameCallback and PasswordCallback classes in the
+#      javax.security.auth.callback package for more details.
+#
+#      If the property "com.sun.management.jmxremote.authenticate" is set to
+#      false, then this property and the password & access files are ignored.
+#
+
+# For a non-default login configuration use the following line
+# com.sun.management.jmxremote.login.config=<config-name>
+
+#
+# ################ RMI Password file location ##################
+#
+# com.sun.management.jmxremote.password.file=filepath
+#      Specifies location for password file
+#      This is optional - default location is
+#      $JRE/lib/management/jmxremote.password
+#
+#      If the property "com.sun.management.jmxremote.authenticate" is set to
+#      false, then this property and the password & access files are ignored.
+#      Otherwise the password file must exist and be in the valid format.
+#      If the password file is empty or non-existent then no access is allowed.
+#
+
+# For a non-default password file location use the following line
+# com.sun.management.jmxremote.password.file=filepath
+
+#
+# ################ RMI Access file location #####################
+#
+# com.sun.management.jmxremote.access.file=filepath
+#      Specifies location for access  file
+#      This is optional - default location is
+#      $JRE/lib/management/jmxremote.access
+#
+#      If the property "com.sun.management.jmxremote.authenticate" is set to
+#      false, then this property and the password & access files are ignored.
+#      Otherwise, the access file must exist and be in the valid format.
+#      If the access file is empty or non-existent then no access is allowed.
+#
+
+# For a non-default password file location use the following line
+# com.sun.management.jmxremote.access.file=filepath
Index: AE/installer2/setup_win/JRE/lib/management/snmp.acl.template
===================================================================
--- AE/installer2/setup_win/JRE/lib/management/snmp.acl.template	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/management/snmp.acl.template	(revision 613)
@@ -0,0 +1,110 @@
+# ----------------------------------------------------------------------
+#           Template for SNMP Access Control List File
+#
+# o Copy this template to snmp.acl
+# o Set access control for SNMP support
+# o Change the permission of snmp.acl to be read-only
+#   by the owner.
+#
+# See below for the location of snmp.acl file.
+# ----------------------------------------------------------------------
+
+############################################################
+#            SNMP Access Control List File  
+############################################################
+#
+# Default location of this file is $JRE/lib/management/snmp.acl.
+# You can specify an alternate location by specifying a property in 
+# the management config file $JRE/lib/management/management.properties
+# or by specifying a system property (See that file for details).
+#
+
+
+##############################################################
+#        File permissions of the snmp.acl file
+##############################################################
+# 
+#      Since there are cleartext community strings stored in this file,
+#      this ACL file must be readable by ONLY the owner,
+#      otherwise the program will exit with an error. 
+#
+##############################################################
+#		Format of the acl group
+##############################################################
+#
+# communities: a list of SNMP community strings to which the
+#              access control applies separated by commas.
+#
+# access: either "read-only" or "read-write".
+#
+# managers: a list of hosts to be granted the access rights.
+#    Each can be expressed as any one of the following:
+#    - hostname: hubble
+#    - ip v4 and v6 addresses: 123.456.789.12 , fe80::a00:20ff:fe9b:ea82
+#    - ip v4 and v6 netmask prefix notation: 123.456.789.0/24, 
+#         fe80::a00:20ff:fe9b:ea82/64  
+#      see RFC 2373 (http://www.ietf.org/rfc/rfc2373.txt)
+#
+# An example of two community groups for multiple hosts:
+#    acl = {
+#     {
+#       communities = public, private
+#       access = read-only
+#       managers = hubble, snowbell, nanak
+#     }
+#     {
+#       communities = jerry
+#       access = read-write
+#       managers = hubble, telescope
+#     }
+#    }
+# 
+##############################################################
+#                   Format of the trap group
+##############################################################
+#
+# trap-community: a single SNMP community string that will be included
+#                 in  the traps sent to the hosts.
+#
+# hosts: a list of hosts to which the SNMP agent will send traps.
+#
+# An example of two trap community definitions for multiple hosts:
+#    trap = {
+#      {
+#        trap-community = public
+#        hosts = hubble, snowbell
+#      }
+#      {
+#        trap-community = private
+#        hosts = telescope
+#      }
+#    }
+#
+############################################################
+#
+#  Update the community strings (public and private) below
+#  before copying this template file
+# 	
+# Common SNMP ACL Example
+# ------------------------
+#
+# o Only localhost can connect, and access rights
+#   are limited to read-only
+# o Traps are sent to localhost only
+#
+#
+# acl = {
+#  {
+#    communities = public, private
+#    access = read-only
+#    managers = localhost
+#  }
+# }
+# 
+# 
+# trap = {
+#   {
+#     trap-community = public
+#     hosts = localhost 
+#   }
+# }
Index: AE/installer2/setup_win/JRE/lib/meta-index
===================================================================
--- AE/installer2/setup_win/JRE/lib/meta-index	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/meta-index	(revision 613)
@@ -0,0 +1,117 @@
+% VERSION 2
+% WARNING: this file is auto-generated; do not edit
+% UNSUPPORTED: this file and its format may change and/or
+%   may be removed in a future release
+! alt-rt.jar
+java/util
+java/lang
+# charsets.jar
+META-INF/services/java.nio.charset.spi.CharsetProvider
+sun/nio
+sun/io
+# jce.jar
+javax/crypto
+sun/security
+META-INF/JCE_RSA.RSA
+META-INF/JCE_RSA.SF
+! jsse.jar
+com/sun/security/
+sun/net
+javax/security
+javax/net
+com/sun/net/
+! management-agent.jar
+@ resources.jar
+com/sun/java/util/jar/pack/
+META-INF/services/javax.print.PrintServiceLookup
+com/sun/corba/
+META-INF/services/javax.sound.midi.spi.SoundbankReader
+sun/print
+META-INF/services/javax.sound.midi.spi.MidiFileReader
+javax/swing
+META-INF/services/javax.sound.sampled.spi.AudioFileReader
+META-INF/services/javax.sound.midi.spi.MidiDeviceProvider
+sun/net
+META-INF/services/javax.sound.sampled.spi.AudioFileWriter
+com/sun/imageio/
+com/sun/servicetag/
+META-INF/services/java.sql.Driver
+META-INF/mimetypes.default
+sun/org
+META-INF/services/javax.sound.midi.spi.MidiFileWriter
+sun/rmi
+javax/sql
+META-INF/services/javax.script.ScriptEngineFactory
+com/sun/rowset/
+META-INF/services/javax.print.StreamPrintServiceFactory
+META-INF/mailcap.default
+sun/text
+javax/xml
+META-INF/services/javax.sound.sampled.spi.MixerProvider
+com/sun/java/swing/
+com/sun/jndi/
+com/sun/xml/
+com/sun/org/
+META-INF/services/javax.sound.sampled.spi.FormatConversionProvider
+! rt.jar
+com/sun/java/util/jar/pack/
+com/sun/beans/
+org/ietf/
+com/sun/java/browser/
+sun/jkernel
+sun/font
+sun/awt
+com/sun/rmi/
+org/w3c/
+com/sun/activation/
+sun/rmi
+sun/beans
+com/sun/script/
+sun/management
+sun/applet
+com/sun/rowset/
+sun/io
+sun/audio
+sun/text
+sunw/util/
+sun/reflect
+sunw/io/
+com/sun/java/swing/
+com/sun/xml/
+com/sun/accessibility/
+sun/instrument
+java/
+com/sun/corba/
+com/sun/media/
+sun/swing
+sun/print
+sun/dc
+com/sun/management/
+com/sun/awt/
+sun/security
+sun/jdbc
+sun/net
+com/sun/jmx/
+sun/nio
+com/sun/demo/
+com/sun/servicetag/
+com/sun/imageio/
+sun/corba
+com/sun/net/
+com/sun/swing/
+sun/org
+com/sun/istack/
+org/jcp/
+com/sun/naming/
+org/omg/
+org/xml/
+sun/tools
+com/sun/security/
+com/sun/image/
+sun/util
+com/sun/jndi/
+com/sun/java_cup/
+sun/misc
+com/sun/org/
+javax/
+sun/java2d
Index: AE/installer2/setup_win/JRE/lib/net.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/net.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/net.properties	(revision 613)
@@ -0,0 +1,74 @@
+############################################################
+#  	Default Networking Configuration File
+#
+# This file may contain default values for the networking system properties.
+# These values are only used when the system properties are not specified
+# on the command line or set programatically.
+# For now, only the various proxy settings can be configured here.
+############################################################
+
+# Whether or not the DefaultProxySelector will default to System Proxy
+# settings when they do exist.
+# Set it to 'true' to enable this feature and check for platform
+# specific proxy settings
+# Note that the system properties that do explicitely set proxies
+# (like http.proxyHost) do take precedence over the system settings
+# even if java.net.useSystemProxies is set to true.
+ 
+java.net.useSystemProxies=false
+
+#------------------------------------------------------------------------
+# Proxy configuration for the various protocol handlers.
+# DO NOT uncomment these lines if you have set java.net.useSystemProxies
+# to true as the protocol specific properties will take precedence over
+# system settings.
+#------------------------------------------------------------------------
+
+# HTTP Proxy settings. proxyHost is the name of the proxy server
+# (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
+# value is 80) and nonProxyHosts is a '|' separated list of hostnames which
+# should be accessed directly, ignoring the proxy server (default value is
+# localhost & 127.0.0.1).
+#
+# http.proxyHost=
+# http.proxyPort=80
+# http.nonProxyHosts=localhost|127.0.0.1
+#
+# HTTPS Proxy Settings. proxyHost is the name of the proxy server
+# (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
+# value is 443). The HTTPS protocol handlers uses the http nonProxyHosts list.
+#
+# https.proxyHost=
+# https.proxyPort=443
+#
+# FTP Proxy settings. proxyHost is the name of the proxy server
+# (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
+# value is 80) and nonProxyHosts is a '|' separated list of hostnames which
+# should be accessed directly, ignoring the proxy server (default value is
+# localhost & 127.0.0.1).
+#
+# ftp.proxyHost=
+# ftp.proxyPort=80
+# ftp.nonProxyHosts=localhost|127.0.0.1
+#
+# Gopher Proxy settings. proxyHost is the name of the proxy server
+# (e.g. proxy.mydomain.com), proxyPort is the port number to use (default
+# value is 80)
+#
+# gopher.proxyHost=
+# gopher.proxyPort=80
+#
+# Socks proxy settings. socksProxyHost is the name of the proxy server
+# (e.g. socks.domain.com), socksProxyPort is the port number to use
+# (default value is 1080)
+#
+# socksProxyHost=
+# socksProxyPort=1080
+#
+# HTTP Keep Alive settings. remainingData is the maximum amount of data
+# in kilobytes that will be cleaned off the underlying socket so that it 
+# can be reused (default value is 512K), queuedConnections is the maximum 
+# number of Keep Alive connections to be on the queue for clean up (default
+# value is 10).
+# http.KeepAlive.remainingData=512
+# http.KeepAlive.queuedConnections=10
Index: AE/installer2/setup_win/JRE/lib/psfont.properties.ja
===================================================================
--- AE/installer2/setup_win/JRE/lib/psfont.properties.ja	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/psfont.properties.ja	(revision 613)
@@ -0,0 +1,107 @@
+#
+# @(#)psfont.properties.ja	1.4 00/10/27
+#
+# Copyright 1996, 1997 by Sun Microsystems, Inc.,
+# 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
+# All rights reserved.
+#
+# This software is the confidential and proprietary information
+# of Sun Microsystems, Inc. ("Confidential Information").  You
+# shall not disclose such Confidential Information and shall use
+# it only in accordance with the terms of the license agreement
+# you entered into with Sun.
+#
+
+#
+#	Japanese PostScript printer property file
+#
+font.num=16
+#
+serif=serif
+timesroman=serif
+sansserif=sansserif
+helvetica=sansserif
+monospaced=monospaced
+courier=monospaced
+dialog=sansserif
+dialoginput=monospaced
+#
+serif.latin1.plain=Times-Roman
+serif.latin1.italic=Times-Italic
+serif.latin1.bolditalic=Times-BoldItalic
+serif.latin1.bold=Times-Bold
+#
+sansserif.latin1.plain=Helvetica
+sansserif.latin1.italic=Helvetica-Oblique
+sansserif.latin1.bolditalic=Helvetica-BoldOblique
+sansserif.latin1.bold=Helvetica-Bold
+#
+monospaced.latin1.plain=Courier
+monospaced.latin1.italic=Courier-Oblique
+monospaced.latin1.bolditalic=Courier-BoldOblique
+monospaced.latin1.bold=Courier-Bold
+#
+serif.x11jis0208.plain=Ryumin-Light-H
+serif.x11jis0208.italic=Ryumin-Light-H
+serif.x11jis0208.bolditalic=Ryumin-Light-H
+serif.x11jis0208.bold=Ryumin-Light-H
+#
+sansserif.x11jis0208.plain=GothicBBB-Medium-H
+sansserif.x11jis0208.italic=GothicBBB-Medium-H
+sansserif.x11jis0208.bolditalic=GothicBBB-Medium-H
+sansserif.x11jis0208.bold=GothicBBB-Medium-H
+#
+monospaced.x11jis0208.plain=GothicBBB-Medium-H
+monospaced.x11jis0208.italic=GothicBBB-Medium-H
+monospaced.x11jis0208.bolditalic=GothicBBB-Medium-H
+monospaced.x11jis0208.bold=GothicBBB-Medium-H
+#
+serif.x11jis0201.plain=Ryumin-Light.Hankaku
+serif.x11jis0201.italic=Ryumin-Light.Hankaku
+serif.x11jis0201.bolditalic=Ryumin-Light.Hankaku
+serif.x11jis0201.bold=Ryumin-Light.Hankaku
+#
+sansserif.x11jis0201.plain=GothicBBB-Medium.Hankaku
+sansserif.x11jis0201.italic=GothicBBB-Medium.Hankaku
+sansserif.x11jis0201.bolditalic=GothicBBB-Medium.Hankaku
+sansserif.x11jis0201.bold=GothicBBB-Medium.Hankaku
+#
+monospaced.x11jis0201.plain=GothicBBB-Medium.Hankaku
+monospaced.x11jis0201.italic=GothicBBB-Medium.Hankaku
+monospaced.x11jis0201.bolditalic=GothicBBB-Medium.Hankaku
+monospaced.x11jis0201.bold=GothicBBB-Medium.Hankaku
+#
+Helvetica=0
+Helvetica-Bold=1
+Helvetica-Oblique=2
+Helvetica-BoldOblique=3
+Times-Roman=4
+Times-Bold=5
+Times-Italic=6
+Times-BoldItalic=7
+Courier=8
+Courier-Bold=9
+Courier-Oblique=10
+Courier-BoldOblique=11
+GothicBBB-Medium-H=12
+Ryumin-Light-H=13
+GothicBBB-Medium.Hankaku=14
+Ryumin-Light.Hankaku=15
+#
+font.0=Helvetica ISOF
+font.1=Helvetica-Bold ISOF
+font.2=Helvetica-Oblique ISOF
+font.3=Helvetica-BoldOblique ISOF
+font.4=Times-Roman ISOF
+font.5=Times-Bold ISOF
+font.6=Times-Italic ISOF
+font.7=Times-BoldItalic ISOF
+font.8=Courier ISOF
+font.9=Courier-Bold ISOF
+font.10=Courier-Oblique ISOF
+font.11=Courier-BoldOblique ISOF
+font.12=GothicBBB-Medium-H findfont
+font.13=Ryumin-Light-H findfont
+font.14=GothicBBB-Medium.Hankaku findfont
+font.15=Ryumin-Light.Hankaku findfont
+#
Index: AE/installer2/setup_win/JRE/lib/psfontj2d.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/psfontj2d.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/psfontj2d.properties	(revision 613)
@@ -0,0 +1,312 @@
+#
+# @(#)psfontj2d.properties	1.1 99/11/04
+#
+# Copyright 1999 by Sun Microsystems, Inc.,
+# 901 San Antonio Road, Palo Alto, California, 94303, U.S.A.
+# All rights reserved.
+#
+# This software is the confidential and proprietary information
+# of Sun Microsystems, Inc. ("Confidential Information").  You
+# shall not disclose such Confidential Information and shall use
+# it only in accordance with the terms of the license agreement
+# you entered into with Sun.
+#
+
+#
+#	PostScript printer property file for Java 2D printing.
+#
+# WARNING: This is an internal implementation file, not a public file.
+# Any customisation or reliance on the existence of this file and its
+# contents or syntax is discouraged and unsupported.
+# It may be incompatibly changed or removed without any notice.
+#
+#
+font.num=35
+#
+# Legacy logical font family names and logical font aliases should all
+# map to the primary logical font names.
+#
+serif=serif
+times=serif
+timesroman=serif
+sansserif=sansserif
+helvetica=sansserif
+dialog=sansserif
+dialoginput=monospaced
+monospaced=monospaced
+courier=monospaced
+#
+# Next, physical fonts which can be safely mapped to standard postscript fonts
+# These keys generally map to a value which is the same as the key, so
+# the key/value is just a way to say the font has a mapping.
+# Sometimes however we map more than one screen font to the same PS font.
+#
+avantgarde=avantgarde_book
+avantgarde_book=avantgarde_book
+avantgarde_demi=avantgarde_demi
+avantgarde_book_oblique=avantgarde_book_oblique
+avantgarde_demi_oblique=avantgarde_demi_oblique
+#
+itcavantgarde=avantgarde_book
+itcavantgarde=avantgarde_book
+itcavantgarde_demi=avantgarde_demi
+itcavantgarde_oblique=avantgarde_book_oblique
+itcavantgarde_demi_oblique=avantgarde_demi_oblique
+#
+bookman=bookman_light
+bookman_light=bookman_light
+bookman_demi=bookman_demi
+bookman_light_italic=bookman_light_italic
+bookman_demi_italic=bookman_demi_italic
+#
+# Exclude "helvetica" on its own as that's a legacy name for a logical font
+helvetica_bold=helvetica_bold
+helvetica_oblique=helvetica_oblique
+helvetica_bold_oblique=helvetica_bold_oblique
+#
+itcbookman_light=bookman_light
+itcbookman_demi=bookman_demi
+itcbookman_light_italic=bookman_light_italic
+itcbookman_demi_italic=bookman_demi_italic
+#
+# Exclude "courier" on its own as that's a legacy name for a logical font
+courier_bold=courier_bold
+courier_oblique=courier_oblique
+courier_bold_oblique=courier_bold_oblique
+#
+courier_new=courier
+courier_new_bold=courier_bold
+#
+monotype_century_schoolbook=newcenturyschoolbook
+monotype_century_schoolbook_bold=newcenturyschoolbook_bold
+monotype_century_schoolbook_italic=newcenturyschoolbook_italic
+monotype_century_schoolbook_bold_italic=newcenturyschoolbook_bold_italic
+#
+newcenturyschoolbook=newcenturyschoolbook
+newcenturyschoolbook_bold=newcenturyschoolbook_bold
+newcenturyschoolbook_italic=newcenturyschoolbook_italic
+newcenturyschoolbook_bold_italic=newcenturyschoolbook_bold_italic
+#
+palatino=palatino
+palatino_bold=palatino_bold
+palatino_italic=palatino_italic
+palatino_bold_italic=palatino_bold_italic
+#
+# Exclude "times" on its own as that's a legacy name for a logical font
+times_bold=times_roman_bold
+times_italic=times_roman_italic
+times_bold_italic=times_roman_bold_italic
+#
+times_roman=times_roman
+times_roman_bold=times_roman_bold
+times_roman_italic=times_roman_italic
+times_roman_bold_italic=times_roman_bold_italic
+#
+times_new_roman=times_roman
+times_new_roman_bold=times_roman_bold
+times_new_roman_italic=times_roman_italic
+times_new_roman_bold_italic=times_roman_bold_italic
+#
+zapfchancery_italic=zapfchancery_italic
+itczapfchancery_italic=zapfchancery_italic
+#
+# Next the mapping of the font name + charset + style to Postscript font name
+# for the logical fonts.
+#
+serif.latin1.plain=Times-Roman
+serif.latin1.bold=Times-Bold
+serif.latin1.italic=Times-Italic
+serif.latin1.bolditalic=Times-BoldItalic
+serif.symbol.plain=Symbol
+serif.dingbats.plain=ZapfDingbats
+serif.symbol.bold=Symbol
+serif.dingbats.bold=ZapfDingbats
+serif.symbol.italic=Symbol
+serif.dingbats.italic=ZapfDingbats
+serif.symbol.bolditalic=Symbol
+serif.dingbats.bolditalic=ZapfDingbats
+#
+sansserif.latin1.plain=Helvetica
+sansserif.latin1.bold=Helvetica-Bold
+sansserif.latin1.italic=Helvetica-Oblique
+sansserif.latin1.bolditalic=Helvetica-BoldOblique
+sansserif.symbol.plain=Symbol
+sansserif.dingbats.plain=ZapfDingbats
+sansserif.symbol.bold=Symbol
+sansserif.dingbats.bold=ZapfDingbats
+sansserif.symbol.italic=Symbol
+sansserif.dingbats.italic=ZapfDingbats
+sansserif.symbol.bolditalic=Symbol
+sansserif.dingbats.bolditalic=ZapfDingbats
+#
+monospaced.latin1.plain=Courier
+monospaced.latin1.bold=Courier-Bold
+monospaced.latin1.italic=Courier-Oblique
+monospaced.latin1.bolditalic=Courier-BoldOblique
+monospaced.symbol.plain=Symbol
+monospaced.dingbats.plain=ZapfDingbats
+monospaced.symbol.bold=Symbol
+monospaced.dingbats.bold=ZapfDingbats
+monospaced.symbol.italic=Symbol
+monospaced.dingbats.italic=ZapfDingbats
+monospaced.symbol.bolditalic=Symbol
+monospaced.dingbats.bolditalic=ZapfDingbats
+#
+# Next the mapping of the font name + charset + style to Postscript font name
+# for the physical fonts. Since these always report style as plain, the
+# style key is always plain. So we map using the face name to the correct
+# style for the postscript font. This is possible since the face names can
+# be replied upon to be different for each style.
+# However an application may try to create a Font applying a style to an
+# physical name. We want to map to the correct Postscript font there too
+# if possible but we do not map cases where the application tries to
+# augment a style (eg ask for a bold version of a bold font)
+# Defer to the 2D package to attempt create an artificially styled version
+#
+avantgarde_book.latin1.plain=AvantGarde-Book
+avantgarde_demi.latin1.plain=AvantGarde-Demi
+avantgarde_book_oblique.latin1.plain=AvantGarde-BookOblique
+avantgarde_demi_oblique.latin1.plain=AvantGarde-DemiOblique
+#
+avantgarde_book.latin1.bold=AvantGarde-Demi
+avantgarde_book.latin1.italic=AvantGarde-BookOblique
+avantgarde_book.latin1.bolditalic=AvantGarde-DemiOblique
+avantgarde_demi.latin1.italic=AvantGarde-DemiOblique
+avantgarde_book_oblique.latin1.bold=AvantGarde-DemiOblique
+#
+bookman_light.latin1.plain=Bookman-Light
+bookman_demi.latin1.plain=Bookman-Demi
+bookman_light_italic.latin1.plain=Bookman-LightItalic
+bookman_demi_italic.latin1.plain=Bookman-DemiItalic
+#
+bookman_light.latin1.bold=Bookman-Demi
+bookman_light.latin1.italic=Bookman-LightItalic
+bookman_light.latin1.bolditalic=Bookman-DemiItalic
+bookman_light_bold.latin1.italic=Bookman-DemiItalic
+bookman_light_italic.latin1.bold=Bookman-DemiItalic
+#
+courier.latin1.plain=Courier
+courier_bold.latin1.plain=Courier-Bold
+courier_oblique.latin1.plain=Courier-Oblique
+courier_bold_oblique.latin1.plain=Courier-BoldOblique
+courier.latin1.bold=Courier-Bold
+courier.latin1.italic=Courier-Oblique
+courier.latin1.bolditalic=Courier-BoldOblique
+courier_bold.latin1.italic=Courier-BoldOblique
+courier_italic.latin1.bold=Courier-BoldOblique
+#
+helvetica_bold.latin1.plain=Helvetica-Bold
+helvetica_oblique.latin1.plain=Helvetica-Oblique
+helvetica_bold_oblique.latin1.plain=Helvetica-BoldOblique
+helvetica.latin1.bold=Helvetica-Bold
+helvetica.latin1.italic=Helvetica-Oblique
+helvetica.latin1.bolditalic=Helvetica-BoldOblique
+helvetica_bold.latin1.italic=Helvetica-BoldOblique
+helvetica_italic.latin1.bold=Helvetica-BoldOblique
+#
+newcenturyschoolbook.latin1.plain=NewCenturySchlbk-Roman
+newcenturyschoolbook_bold.latin1.plain=NewCenturySchlbk-Bold
+newcenturyschoolbook_italic.latin1.plain=NewCenturySchlbk-Italic
+newcenturyschoolbook_bold_italic.latin1.plain=NewCenturySchlbk-BoldItalic
+newcenturyschoolbook.latin1.bold=NewCenturySchlbk-Bold
+newcenturyschoolbook.latin1.italic=NewCenturySchlbk-Italic
+newcenturyschoolbook.latin1.bolditalic=NewCenturySchlbk-BoldItalic
+newcenturyschoolbook_bold.latin1.italic=NewCenturySchlbk-BoldItalic
+newcenturyschoolbook_italic.latin1.bold=NewCenturySchlbk-BoldItalic
+#
+palatino.latin1.plain=Palatino-Roman
+palatino_bold.latin1.plain=Palatino-Bold
+palatino_italic.latin1.plain=Palatino-Italic
+palatino_bold_italic.latin1.plain=Palatino-BoldItalic
+palatino.latin1.bold=Palatino-Bold
+palatino.latin1.italic=Palatino-Italic
+palatino.latin1.bolditalic=Palatino-BoldItalic
+palatino_bold.latin1.italic=Palatino-BoldItalic
+palatino_italic.latin1.bold=Palatino-BoldItalic
+#
+times_roman.latin1.plain=Times-Roman
+times_roman_bold.latin1.plain=Times-Bold
+times_roman_italic.latin1.plain=Times-Italic
+times_roman_bold_italic.latin1.plain=Times-BoldItalic
+times_roman.latin1.bold=Times-Bold
+times_roman.latin1.italic=Times-Italic
+times_roman.latin1.bolditalic=Times-BoldItalic
+times_roman_bold.latin1.italic=Times-BoldItalic
+times_roman_italic.latin1.bold=Times-BoldItalic
+#
+zapfchancery_italic.latin1.plain=ZapfChancery-MediumItalic
+#
+# Finally the mappings of PS font names to indexes.
+#
+AvantGarde-Book=0
+AvantGarde-BookOblique=1
+AvantGarde-Demi=2
+AvantGarde-DemiOblique=3
+Bookman-Demi=4
+Bookman-DemiItalic=5
+Bookman-Light=6
+Bookman-LightItalic=7
+Courier=8
+Courier-Bold=9
+Courier-BoldOblique=10
+Courier-Oblique=11
+Helvetica=12
+Helvetica-Bold=13
+Helvetica-BoldOblique=14
+Helvetica-Narrow=15
+Helvetica-Narrow-Bold=16
+Helvetica-Narrow-BoldOblique=17
+Helvetica-Narrow-Oblique=18
+Helvetica-Oblique=19
+NewCenturySchlbk-Bold=20
+NewCenturySchlbk-BoldItalic=21
+NewCenturySchlbk-Italic=22
+NewCenturySchlbk-Roman=23
+Palatino-Bold=24
+Palatino-BoldItalic=25
+Palatino-Italic=26
+Palatino-Roman=27
+Symbol=28
+Times-Bold=29
+Times-BoldItalic=30
+Times-Italic=31
+Times-Roman=32
+ZapfDingbats=33
+ZapfChancery-MediumItalic=34
+#
+font.0=AvantGarde-Book ISOF
+font.1=AvantGarde-BookOblique ISOF
+font.2=AvantGarde-Demi ISOF
+font.3=AvantGarde-DemiOblique ISOF
+font.4=Bookman-Demi ISOF
+font.5=Bookman-DemiItalic ISOF
+font.6=Bookman-Light ISOF
+font.7=Bookman-LightItalic ISOF
+font.8=Courier ISOF
+font.9=Courier-Bold ISOF
+font.10=Courier-BoldOblique ISOF
+font.11=Courier-Oblique ISOF
+font.12=Helvetica ISOF
+font.13=Helvetica-Bold ISOF
+font.14=Helvetica-BoldOblique ISOF
+font.15=Helvetica-Narrow ISOF
+font.16=Helvetica-Narrow-Bold ISOF
+font.17=Helvetica-Narrow-BoldOblique ISOF
+font.18=Helvetica-Narrow-Oblique ISOF
+font.19=Helvetica-Oblique ISOF
+font.20=NewCenturySchlbk-Bold ISOF
+font.21=NewCenturySchlbk-BoldItalic ISOF
+font.22=NewCenturySchlbk-Italic ISOF
+font.23=NewCenturySchlbk-Roman ISOF
+font.24=Palatino-Bold ISOF
+font.25=Palatino-BoldItalic ISOF
+font.26=Palatino-Italic ISOF
+font.27=Palatino-Roman ISOF
+font.28=Symbol findfont
+font.29=Times-Bold ISOF
+font.30=Times-BoldItalic ISOF
+font.31=Times-Italic ISOF
+font.32=Times-Roman ISOF
+font.33=ZapfDingbats findfont
+font.34=ZapfChancery-MediumItalic ISOF
+#
Index: AE/installer2/setup_win/JRE/lib/security/blacklist
===================================================================
--- AE/installer2/setup_win/JRE/lib/security/blacklist	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/security/blacklist	(revision 613)
@@ -0,0 +1,2 @@
+# JNLPAppletLauncher applet-launcher.jar
+SHA1-Digest-Manifest: 5Bo5/eg892hQ9mgbUW56iDmsp1k=
Index: AE/installer2/setup_win/JRE/lib/security/java.policy
===================================================================
--- AE/installer2/setup_win/JRE/lib/security/java.policy	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/security/java.policy	(revision 613)
@@ -0,0 +1,48 @@
+
+// Standard extensions get all permissions by default
+
+grant codeBase "file:${{java.ext.dirs}}/*" {
+	permission java.security.AllPermission;
+};
+
+// default permissions granted to all domains
+
+grant { 
+	// Allows any thread to stop itself using the java.lang.Thread.stop()
+	// method that takes no argument.
+	// Note that this permission is granted by default only to remain
+	// backwards compatible.
+	// It is strongly recommended that you either remove this permission
+	// from this policy file or further restrict it to code sources
+	// that you specify, because Thread.stop() is potentially unsafe.
+	// See "http://java.sun.com/notes" for more information.
+	permission java.lang.RuntimePermission "stopThread";
+
+	// allows anyone to listen on un-privileged ports
+	permission java.net.SocketPermission "localhost:1024-", "listen";
+
+	// "standard" properies that can be read by anyone
+
+	permission java.util.PropertyPermission "java.version", "read";
+	permission java.util.PropertyPermission "java.vendor", "read";
+	permission java.util.PropertyPermission "java.vendor.url", "read";
+	permission java.util.PropertyPermission "java.class.version", "read";
+	permission java.util.PropertyPermission "os.name", "read";
+	permission java.util.PropertyPermission "os.version", "read";
+	permission java.util.PropertyPermission "os.arch", "read";
+	permission java.util.PropertyPermission "file.separator", "read";
+	permission java.util.PropertyPermission "path.separator", "read";
+	permission java.util.PropertyPermission "line.separator", "read";
+
+	permission java.util.PropertyPermission "java.specification.version", "read";
+	permission java.util.PropertyPermission "java.specification.vendor", "read";
+	permission java.util.PropertyPermission "java.specification.name", "read";
+
+	permission java.util.PropertyPermission "java.vm.specification.version", "read";
+	permission java.util.PropertyPermission "java.vm.specification.vendor", "read";
+	permission java.util.PropertyPermission "java.vm.specification.name", "read";
+	permission java.util.PropertyPermission "java.vm.version", "read";
+	permission java.util.PropertyPermission "java.vm.vendor", "read";
+	permission java.util.PropertyPermission "java.vm.name", "read";
+};
+
Index: AE/installer2/setup_win/JRE/lib/security/java.security
===================================================================
--- AE/installer2/setup_win/JRE/lib/security/java.security	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/security/java.security	(revision 613)
@@ -0,0 +1,261 @@
+#
+# This is the "master security properties file".
+#
+# In this file, various security properties are set for use by
+# java.security classes. This is where users can statically register
+# Cryptography Package Providers ("providers" for short). The term
+# "provider" refers to a package or set of packages that supply a
+# concrete implementation of a subset of the cryptography aspects of
+# the Java Security API. A provider may, for example, implement one or
+# more digital signature algorithms or message digest algorithms.
+#
+# Each provider must implement a subclass of the Provider class.
+# To register a provider in this master security properties file,
+# specify the Provider subclass name and priority in the format
+#
+#    security.provider.<n>=<className>
+#
+# This declares a provider, and specifies its preference
+# order n. The preference order is the order in which providers are
+# searched for requested algorithms (when no specific provider is
+# requested). The order is 1-based; 1 is the most preferred, followed
+# by 2, and so on.
+#
+# <className> must specify the subclass of the Provider class whose
+# constructor sets the values of various properties that are required
+# for the Java Security API to look up the algorithms or other
+# facilities implemented by the provider.
+#
+# There must be at least one provider specification in java.security.
+# There is a default provider that comes standard with the JDK. It
+# is called the "SUN" provider, and its Provider subclass
+# named Sun appears in the sun.security.provider package. Thus, the
+# "SUN" provider is registered via the following:
+#
+#    security.provider.1=sun.security.provider.Sun
+#
+# (The number 1 is used for the default provider.)
+#
+# Note: Providers can be dynamically registered instead by calls to
+# either the addProvider or insertProviderAt method in the Security
+# class.
+
+#
+# List of providers and their preference orders (see above):
+#
+security.provider.1=sun.security.provider.Sun
+security.provider.2=sun.security.rsa.SunRsaSign
+security.provider.3=com.sun.net.ssl.internal.ssl.Provider
+security.provider.4=com.sun.crypto.provider.SunJCE
+security.provider.5=sun.security.jgss.SunProvider
+security.provider.6=com.sun.security.sasl.Provider
+security.provider.7=org.jcp.xml.dsig.internal.dom.XMLDSigRI
+security.provider.8=sun.security.smartcardio.SunPCSC
+security.provider.9=sun.security.mscapi.SunMSCAPI
+
+#
+# Select the source of seed data for SecureRandom. By default an
+# attempt is made to use the entropy gathering device specified by 
+# the securerandom.source property. If an exception occurs when
+# accessing the URL then the traditional system/thread activity 
+# algorithm is used. 
+#
+# On Solaris and Linux systems, if file:/dev/urandom is specified and it
+# exists, a special SecureRandom implementation is activated by default.
+# This "NativePRNG" reads random bytes directly from /dev/urandom.
+#
+# On Windows systems, the URLs file:/dev/random and file:/dev/urandom
+# enables use of the Microsoft CryptoAPI seed functionality.
+#
+securerandom.source=file:/dev/urandom
+#
+# The entropy gathering device is described as a URL and can also
+# be specified with the system property "java.security.egd". For example,
+#   -Djava.security.egd=file:/dev/urandom
+# Specifying this system property will override the securerandom.source 
+# setting.
+
+#
+# Class to instantiate as the javax.security.auth.login.Configuration
+# provider.
+#
+login.configuration.provider=com.sun.security.auth.login.ConfigFile
+
+#
+# Default login configuration file
+#
+#login.config.url.1=file:${user.home}/.java.login.config
+
+#
+# Class to instantiate as the system Policy. This is the name of the class
+# that will be used as the Policy object.
+#
+policy.provider=sun.security.provider.PolicyFile
+
+# The default is to have a single system-wide policy file,
+# and a policy file in the user's home directory.
+policy.url.1=file:${java.home}/lib/security/java.policy
+policy.url.2=file:${user.home}/.java.policy
+
+# whether or not we expand properties in the policy file
+# if this is set to false, properties (${...}) will not be expanded in policy
+# files.
+policy.expandProperties=true
+
+# whether or not we allow an extra policy to be passed on the command line
+# with -Djava.security.policy=somefile. Comment out this line to disable
+# this feature.
+policy.allowSystemProperty=true
+
+# whether or not we look into the IdentityScope for trusted Identities
+# when encountering a 1.1 signed JAR file. If the identity is found
+# and is trusted, we grant it AllPermission.
+policy.ignoreIdentityScope=false
+
+#
+# Default keystore type.
+#
+keystore.type=jks
+
+#
+# Class to instantiate as the system scope:
+#
+system.scope=sun.security.provider.IdentityDatabase
+
+#
+# List of comma-separated packages that start with or equal this string
+# will cause a security exception to be thrown when
+# passed to checkPackageAccess unless the
+# corresponding RuntimePermission ("accessClassInPackage."+package) has
+# been granted.
+package.access=sun.,com.sun.xml.internal.ws.,com.sun.xml.internal.bind.,com.sun.imageio.
+
+#
+# List of comma-separated packages that start with or equal this string
+# will cause a security exception to be thrown when
+# passed to checkPackageDefinition unless the
+# corresponding RuntimePermission ("defineClassInPackage."+package) has
+# been granted.
+#
+# by default, no packages are restricted for definition, and none of
+# the class loaders supplied with the JDK call checkPackageDefinition.
+#
+#package.definition=
+
+#
+# Determines whether this properties file can be appended to
+# or overridden on the command line via -Djava.security.properties
+#
+security.overridePropertiesFile=true
+
+#
+# Determines the default key and trust manager factory algorithms for 
+# the javax.net.ssl package.
+#
+ssl.KeyManagerFactory.algorithm=SunX509
+ssl.TrustManagerFactory.algorithm=PKIX
+
+#
+# The Java-level namelookup cache policy for successful lookups:
+#
+# any negative value: caching forever
+# any positive value: the number of seconds to cache an address for
+# zero: do not cache
+#
+# default value is forever (FOREVER). For security reasons, this
+# caching is made forever when a security manager is set. When a security
+# manager is not set, the default behavior is to cache for 30 seconds.
+#
+# NOTE: setting this to anything other than the default value can have
+#       serious security implications. Do not set it unless 
+#       you are sure you are not exposed to DNS spoofing attack.
+#
+#networkaddress.cache.ttl=-1 
+
+# The Java-level namelookup cache policy for failed lookups:
+#
+# any negative value: cache forever
+# any positive value: the number of seconds to cache negative lookup results
+# zero: do not cache
+#
+# In some Microsoft Windows networking environments that employ
+# the WINS name service in addition to DNS, name service lookups
+# that fail may take a noticeably long time to return (approx. 5 seconds).
+# For this reason the default caching policy is to maintain these
+# results for 10 seconds. 
+#
+#
+networkaddress.cache.negative.ttl=10
+
+#
+# Properties to configure OCSP for certificate revocation checking
+#
+
+# Enable OCSP 
+#
+# By default, OCSP is not used for certificate revocation checking.
+# This property enables the use of OCSP when set to the value "true".
+#
+# NOTE: SocketPermission is required to connect to an OCSP responder.
+#
+# Example,
+#   ocsp.enable=true
+ 
+#
+# Location of the OCSP responder
+#
+# By default, the location of the OCSP responder is determined implicitly
+# from the certificate being validated. This property explicitly specifies
+# the location of the OCSP responder. The property is used when the
+# Authority Information Access extension (defined in RFC 3280) is absent
+# from the certificate or when it requires overriding.
+#
+# Example,
+#   ocsp.responderURL=http://ocsp.example.net:80
+ 
+#
+# Subject name of the OCSP responder's certificate
+#
+# By default, the certificate of the OCSP responder is that of the issuer
+# of the certificate being validated. This property identifies the certificate
+# of the OCSP responder when the default does not apply. Its value is a string 
+# distinguished name (defined in RFC 2253) which identifies a certificate in 
+# the set of certificates supplied during cert path validation. In cases where 
+# the subject name alone is not sufficient to uniquely identify the certificate
+# then both the "ocsp.responderCertIssuerName" and
+# "ocsp.responderCertSerialNumber" properties must be used instead. When this
+# property is set then those two properties are ignored.
+#
+# Example,
+#   ocsp.responderCertSubjectName="CN=OCSP Responder, O=XYZ Corp"
+
+#
+# Issuer name of the OCSP responder's certificate
+#
+# By default, the certificate of the OCSP responder is that of the issuer
+# of the certificate being validated. This property identifies the certificate
+# of the OCSP responder when the default does not apply. Its value is a string
+# distinguished name (defined in RFC 2253) which identifies a certificate in
+# the set of certificates supplied during cert path validation. When this 
+# property is set then the "ocsp.responderCertSerialNumber" property must also 
+# be set. When the "ocsp.responderCertSubjectName" property is set then this 
+# property is ignored.
+#
+# Example,
+#   ocsp.responderCertIssuerName="CN=Enterprise CA, O=XYZ Corp"
+ 
+#
+# Serial number of the OCSP responder's certificate
+#
+# By default, the certificate of the OCSP responder is that of the issuer
+# of the certificate being validated. This property identifies the certificate
+# of the OCSP responder when the default does not apply. Its value is a string
+# of hexadecimal digits (colon or space separators may be present) which
+# identifies a certificate in the set of certificates supplied during cert path
+# validation. When this property is set then the "ocsp.responderCertIssuerName"
+# property must also be set. When the "ocsp.responderCertSubjectName" property
+# is set then this property is ignored.
+#
+# Example,
+#   ocsp.responderCertSerialNumber=2A:FF:00
+ 
Index: AE/installer2/setup_win/JRE/lib/security/javaws.policy
===================================================================
--- AE/installer2/setup_win/JRE/lib/security/javaws.policy	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/security/javaws.policy	(revision 613)
@@ -0,0 +1,6 @@
+// @(#)javaws.policy	1.7 00/09/18
+
+grant codeBase "file:${jnlpx.home}/javaws.jar" {
+    permission java.security.AllPermission;
+};
+
Index: AE/installer2/setup_win/JRE/lib/security/trusted.libraries
===================================================================
--- AE/installer2/setup_win/JRE/lib/security/trusted.libraries	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/security/trusted.libraries	(revision 613)
@@ -0,0 +1,501 @@
+# javafx-rt-windows-i586__V1.2.1_b28.jar
+SHA1-Digest-Manifest: NJO6IRnZizWr+AIFDnLWc90BwzY=
+
+# javafx-rt-windows-i586__V1.2.2_b5.jar
+SHA1-Digest-Manifest: 6do0Efqo8i7NAvVYZ6b/U3ZPYgE=
+
+# javafx-rt-natives-windows-i586__V1.2.1_b28.jar
+SHA1-Digest-Manifest: pImEWhMxOFFKGmXjnnwynHXM7CU=
+
+# javafx-rt-natives-windows-i586__V1.2.2_b5.jar
+SHA1-Digest-Manifest: 9HL24tWCvSreKEll3BwJWdkI+Ek=
+
+# jogl__V1.1.1a.jar
+SHA1-Digest-Manifest: PjIv7SwT7j6GiBCsXQzIFX2mqXQ=
+
+# gluegen-rt__V1.0b06a.jar
+SHA1-Digest-Manifest: FczEBfUR1EXNH1T9qzDTgDSU5+0=
+
+#JOGL demo runtimes
+
+# jogl.all.jar
+SHA1-Digest-Manifest: PqsWZOzLJR+btL9Z8o8fkij/kQ4=
+
+# gluegen-rt.jar
+SHA1-Digest-Manifest: blhixqDG/fiTK/n6UCFjpLakhEA=
+
+# gluegen-rt-natives-windows-i586.jar
+SHA1-Digest-Manifest: BvDhRfhMJzpFqiz07T8eNyd0oxQ=
+
+# nativewindow.all.jar
+SHA1-Digest-Manifest: fn9HQw0B5l6r/Pr1Fecmpcdn2WE=
+
+# nativewindow-natives-windows-i586.jar
+SHA1-Digest-Manifest: qK678TXlv3+pzgVv99yhAXLbe+0=
+
+# jogl-natives-windows-i586.jar
+SHA1-Digest-Manifest: YGRIjHLZewXvlXva6hdd5fNZJec=
+
+# JavaFX 1.2.3
+
+# applet-launcher__V1.2.3_b36.jar
+SHA1-Digest-Manifest: OOuvnw6gjlS+hnOkgN/m5dwnM2I=
+
+# gluegen-rt-natives-macosx-x86_64__V1.2.3_b36.jar
+SHA1-Digest-Manifest: wMHIhbDW2pV3FMtLovrtTeFS2mk=
+
+# gluegen-rt-natives-windows-amd64__V1.2.3_b36.jar
+SHA1-Digest-Manifest: gjXZ5Ri8rlrXLwgEMlTbGQyvn2g=
+
+# javafx-jmc-natives-windows-i586__V1.2.3_b36.jar
+SHA1-Digest-Manifest: 9S6TuE6s0q/rKqiuHJzFT0ZQtmU=
+
+# javafx-rt-linux-i586__V1.2.3_b36.jar
+SHA1-Digest-Manifest: QEq6Nw6e6/QrF7nYtFmzpIF8BM0=
+
+# javafx-rt-macosx-universal__V1.2.3_b36.jar
+SHA1-Digest-Manifest: o4cb6scwRNIy3XMB8Ab5tmA9rb0=
+
+# javafx-rt-natives-linux-i586__V1.2.3_b36.jar
+SHA1-Digest-Manifest: vXwKtrz2/cikSpQMAgPg1TDV6PA=
+
+# javafx-rt-natives-macosx-i386__V1.2.3_b36.jar
+SHA1-Digest-Manifest: h5ltxynZ0fi4we5KgIxB80GEzCM=
+
+# javafx-rt-natives-macosx-ppc__V1.2.3_b36.jar
+SHA1-Digest-Manifest: PVxJI4eVpS1dFDjXBxy7fc7v8lc=
+
+# javafx-rt-natives-macosx-universal__V1.2.3_b36.jar
+SHA1-Digest-Manifest: r8V4Gqem5ZeuX5QXLGnLe6tAdQc=
+
+# javafx-rt-natives-macosx-x86_64__V1.2.3_b36.jar
+SHA1-Digest-Manifest: y9r/A7kwQ0TUg8SxB7VN3XINX7Q=
+
+# javafx-rt-natives-solaris-i586__V1.2.3_b36.jar
+SHA1-Digest-Manifest: SkGpiaIF9D/raOU2wujdFV5arcw=
+
+# javafx-rt-natives-windows-i586__V1.2.3_b36.jar
+SHA1-Digest-Manifest: i6GJuM3BFTv2zB9832BDcomJdh0=
+
+# javafx-rt-solaris-i586__V1.2.3_b36.jar
+SHA1-Digest-Manifest: rIFZ9EiOkhGoOwwIGoA5sdTGRco=
+
+# javafx-rt-windows-i586__V1.2.3_b36.jar
+SHA1-Digest-Manifest: 2ZgfDdKO9oXdtOjCSXuf4Ebns2g=
+
+# javafx-sdk__V1.2.3_b36.jar
+SHA1-Digest-Manifest: jK25cZMHwlj2Cv782PTnDVjq7NI=
+
+# jogl-natives-windows-amd64__V1.2.3_b36.jar
+SHA1-Digest-Manifest: 8Hi0hkOkeUh6cSo7g0uAjOfWLdE=
+
+# JavaFX 1.1.1
+
+# applet-launcher__V1.1.1.jar
+SHA1-Digest-Manifest: hTyO9kp8tuzFK7CrOPQ6EzdRoa0=
+
+# Decora-D3D-natives-windows-i586__V1.1.1.jar
+SHA1-Digest-Manifest: Ux6RcIym1mRlLwZbEKupmzMC3hM=
+
+# Decora-D3D__V1.1.1.jar
+SHA1-Digest-Manifest: xZGhjDUMbo0Brvm8j+ItkZzIgZw=
+
+# Decora-HW__V1.1.1.jar
+SHA1-Digest-Manifest: iEOXErJj5l3OnfiK1oJMpqUkl5M=
+
+# Decora-OGL__V1.1.1.jar
+SHA1-Digest-Manifest: h9WQlfnKa+eEyuDHvgzjF2lBulk=
+
+# Decora-SSE-natives-macosx__V1.1.1.jar
+SHA1-Digest-Manifest: OiggXWJlpazyg53Sx0aZIrVJ+pQ=
+
+# Decora-SSE-natives-windows-i586__V1.1.1.jar
+SHA1-Digest-Manifest: wCwBn7ZAeUwwkPLdtxy6E00CNxw=
+
+# Decora-SSE__V1.1.1.jar
+SHA1-Digest-Manifest: S2TjeQlty/kyqeWj6iujApee4ao=
+
+# javafx-rt__V1.1.1.jar
+SHA1-Digest-Manifest: mJTSiNiD1Ay3qCikncf5gCFMCcg=
+
+# javafx-sdk__V1.1.1.jar
+SHA1-Digest-Manifest: Suv17PwWjdn+fIBNii4rlg07+sg=
+
+# jmc-natives-linux-i586__V1.1.1.jar
+SHA1-Digest-Manifest: egG01BcXZDNSFXc0UmY/5KCPFBg=
+
+# jmc-natives-macosx__V1.1.1.jar
+SHA1-Digest-Manifest: xHDcFKyfqbTqKu/A4J46IGh8KTY=
+
+# jmc-natives-windows-i586__V1.1.1.jar
+SHA1-Digest-Manifest: HEWh+/BIvemIdr/uvzXD4WDFszo=
+
+# jmc__V1.1.1.jar
+SHA1-Digest-Manifest: hEBWAiaU9ci8hbXVO/rGFla1O/k=
+
+# JavaFX 1.1.1
+
+# applet-launcher__V1.0.1.jar
+SHA1-Digest-Manifest: hTyO9kp8tuzFK7CrOPQ6EzdRoa0=
+
+# Decora-D3D-natives-windows-i586__V1.0.1.jar
+SHA1-Digest-Manifest: WofMHjbwtcAxjD1k8zmGC7+XeKE=
+
+# Decora-D3D__V1.0.1.jar
+SHA1-Digest-Manifest: mmWLypbCUuEmnVwnW4HClyp9DiY=
+
+# Decora-HW__V1.0.1.jar
+SHA1-Digest-Manifest: VpYSLoPYsd/dgYY3BYRpclTqICE=
+
+# Decora-OGL__V1.0.1.jar
+SHA1-Digest-Manifest: gg/uCcXncs95F/11NbQaGVKGZDc=
+
+# Decora-SSE-natives-macosx__V1.0.1.jar
+SHA1-Digest-Manifest: 25WUe8j0holZLVNZ6J0dlenWLnA=
+
+# Decora-SSE-natives-windows-i586__V1.0.1.jar
+SHA1-Digest-Manifest: iMbn+qYZiOq9dBMrh5aM5sAjV+U=
+
+# Decora-SSE__V1.0.1.jar
+SHA1-Digest-Manifest: zU7Q5PdTcG4mU/t0HM2AQPlQRxI=
+
+# javafx-rt__V1.0.1.jar
+SHA1-Digest-Manifest: vRnWH+sW7qdfqVIQO3UbQONT2/Q=
+
+# javafx-sdk__V1.0.1.jar
+SHA1-Digest-Manifest: oJmS2A6RPXYWTbShmj6dWWR6z0I=
+
+# jmc-natives-linux-i586__V1.0.1.jar
+SHA1-Digest-Manifest: Ao+ymKBvdK//VDOCOBh3S1aLEDE=
+
+# jmc-natives-macosx__V1.0.1.jar
+SHA1-Digest-Manifest: Clwx6bIHT/brAaEN3VMW62fIx0I=
+
+# jmc-natives-windows-i586__V1.0.1.jar
+SHA1-Digest-Manifest: CxM4ACDvHPiCGkSAu7nlGK83JXg=
+
+# jmc__V1.0.1.jar
+SHA1-Digest-Manifest: lmyYM5nl1uTK2uv8pDrQVl11GDs=
+
+# JOGL
+
+# Decora-JOGL__V1.1.1.jar
+SHA1-Digest-Manifest: QXg5+L9XdO/VbpxannGooFMZqr8=
+
+# Decora-JOGL__V1.1.0.jar
+SHA1-Digest-Manifest: QXg5+L9XdO/VbpxannGooFMZqr8=
+
+# jogl-natives-linux-amd64__V1.1.1a.jar
+SHA1-Digest-Manifest: SUiAPpzP+vtFJeDBcindWcycMFM=
+
+# jogl-natives-linux-amd64__V1.1.1.jar
+SHA1-Digest-Manifest: SUiAPpzP+vtFJeDBcindWcycMFM=
+
+# jogl-natives-linux-i586__V1.1.1a.jar
+SHA1-Digest-Manifest: tn35V1kzlxL9PZ5Mv/AvFUBw0Zo=
+
+# jogl-natives-linux-i586__V1.1.1.jar
+SHA1-Digest-Manifest: tn35V1kzlxL9PZ5Mv/AvFUBw0Zo=
+
+# jogl-natives-macosx-ppc__V1.1.1a.jar
+SHA1-Digest-Manifest: 8YT24q39X4vHXF817zCaO1iYeZU=
+
+# jogl-natives-macosx-ppc__V1.1.1.jar
+SHA1-Digest-Manifest: 8YT24q39X4vHXF817zCaO1iYeZU=
+
+# jogl-natives-macosx-universal__V1.1.1a.jar
+SHA1-Digest-Manifest: eHTos/pIVmVIEfzJ5xHVCpJY80s=
+
+# jogl-natives-macosx-universal__V1.1.1.jar
+SHA1-Digest-Manifest: eHTos/pIVmVIEfzJ5xHVCpJY80s=
+
+# jogl-natives-solaris-amd64__V1.1.1a.jar
+SHA1-Digest-Manifest: 7SEftCV0w9AwtqKdOJ5QHxnAZi0=
+
+# jogl-natives-solaris-amd64__V1.1.1.jar
+SHA1-Digest-Manifest: 7SEftCV0w9AwtqKdOJ5QHxnAZi0=
+
+# jogl-natives-solaris-i586__V1.1.1a.jar
+SHA1-Digest-Manifest: wp7uBYOhtJqebnRLHDaYzdSzNyE=
+
+# jogl-natives-solaris-i586__V1.1.1.jar
+SHA1-Digest-Manifest: wp7uBYOhtJqebnRLHDaYzdSzNyE=
+
+# jogl-natives-solaris-sparc__V1.1.1a.jar
+SHA1-Digest-Manifest: ebzpfUb1SrjSA2z68e/Gyr6sZ4s=
+
+# jogl-natives-solaris-sparc__V1.1.1.jar
+SHA1-Digest-Manifest: ebzpfUb1SrjSA2z68e/Gyr6sZ4s=
+
+# jogl-natives-solaris-sparcv9__V1.1.1a.jar
+SHA1-Digest-Manifest: L24pQzJnoowcul7Ldk9xVrHTyX8=
+
+# jogl-natives-solaris-sparcv9__V1.1.1.jar
+SHA1-Digest-Manifest: L24pQzJnoowcul7Ldk9xVrHTyX8=
+
+# jogl-natives-windows-amd64__V1.1.1a.jar
+SHA1-Digest-Manifest: 8Hi0hkOkeUh6cSo7g0uAjOfWLdE=
+
+# jogl-natives-windows-amd64__V1.1.1.jar
+SHA1-Digest-Manifest: 8Hi0hkOkeUh6cSo7g0uAjOfWLdE=
+
+# jogl-natives-windows-i586__V1.1.1a.jar
+SHA1-Digest-Manifest: DpR2pVidgnI/EISDCDWTh7CKHyE=
+
+# jogl-natives-windows-i586__V1.1.1.jar
+SHA1-Digest-Manifest: DpR2pVidgnI/EISDCDWTh7CKHyE=
+
+# jogl__V1.1.1a.jar
+SHA1-Digest-Manifest: IXfEDj4Oowy+OExU9tqNX/yEyG4=
+
+# jogl__V1.1.1.jar
+SHA1-Digest-Manifest: IXfEDj4Oowy+OExU9tqNX/yEyG4=
+
+# gluegen-rt-natives-linux-amd64__V1.0b06a.jar
+SHA1-Digest-Manifest: mWCR2AdEmq+9jv/tF6vfwSyWSj4=
+
+# gluegen-rt-natives-linux-amd64__V1.0b06.jar
+SHA1-Digest-Manifest: mWCR2AdEmq+9jv/tF6vfwSyWSj4=
+
+# gluegen-rt-natives-linux-i586__V1.0b06a.jar
+SHA1-Digest-Manifest: JWQd/xBC5HbRKdKNyfIozuicFmw=
+
+# gluegen-rt-natives-linux-i586__V1.0b06.jar
+SHA1-Digest-Manifest: JWQd/xBC5HbRKdKNyfIozuicFmw=
+
+# gluegen-rt-natives-macosx-ppc__V1.0b06a.jar
+SHA1-Digest-Manifest: 9mFUUvSDvRBHHFIYJ2QMFP1WT1A=
+
+# gluegen-rt-natives-macosx-ppc__V1.0b06.jar
+SHA1-Digest-Manifest: 9mFUUvSDvRBHHFIYJ2QMFP1WT1A=
+
+# gluegen-rt-natives-macosx-universal__V1.0b06a.jar
+SHA1-Digest-Manifest: s8ypudj+MrTd0hVcsKEPgwufiG8=
+
+# gluegen-rt-natives-macosx-universal__V1.0b06.jar
+SHA1-Digest-Manifest: s8ypudj+MrTd0hVcsKEPgwufiG8=
+
+# gluegen-rt-natives-solaris-amd64__V1.0b06a.jar
+SHA1-Digest-Manifest: 4pPw3F54UCrStkbIMdmMcjYD7Qs=
+
+# gluegen-rt-natives-solaris-amd64__V1.0b06.jar
+SHA1-Digest-Manifest: 4pPw3F54UCrStkbIMdmMcjYD7Qs=
+
+# gluegen-rt-natives-solaris-i586__V1.0b06a.jar
+SHA1-Digest-Manifest: DK8g47UGc+yWngVQuFR9VepP/dQ=
+
+# gluegen-rt-natives-solaris-i586__V1.0b06.jar
+SHA1-Digest-Manifest: DK8g47UGc+yWngVQuFR9VepP/dQ=
+
+# gluegen-rt-natives-solaris-sparc__V1.0b06a.jar
+SHA1-Digest-Manifest: e3TVJSMsoVj+C3bJv6MomiO+MYE=
+
+# gluegen-rt-natives-solaris-sparc__V1.0b06.jar
+SHA1-Digest-Manifest: e3TVJSMsoVj+C3bJv6MomiO+MYE=
+
+# gluegen-rt-natives-solaris-sparcv9__V1.0b06a.jar
+SHA1-Digest-Manifest: tNm5RTcuzyeUsy+SYCGdBqKYIfg=
+
+# gluegen-rt-natives-solaris-sparcv9__V1.0b06.jar
+SHA1-Digest-Manifest: tNm5RTcuzyeUsy+SYCGdBqKYIfg=
+
+# gluegen-rt-natives-windows-amd64__V1.0b06a.jar
+SHA1-Digest-Manifest: gjXZ5Ri8rlrXLwgEMlTbGQyvn2g=
+
+# gluegen-rt-natives-windows-amd64__V1.0b06.jar
+SHA1-Digest-Manifest: gjXZ5Ri8rlrXLwgEMlTbGQyvn2g=
+
+# gluegen-rt-natives-windows-i586__V1.0b06a.jar
+SHA1-Digest-Manifest: bOJKwYthgnr872NcgEFH+NhFR5I=
+
+# gluegen-rt-natives-windows-i586__V1.0b06.jar
+SHA1-Digest-Manifest: bOJKwYthgnr872NcgEFH+NhFR5I=
+
+# gluegen-rt__V1.0b06a.jar
+SHA1-Digest-Manifest: NFtC8B0eIsy6/C4RBDuy2o/ks6U=
+
+# gluegen-rt__V1.0b06.jar
+SHA1-Digest-Manifest: NFtC8B0eIsy6/C4RBDuy2o/ks6U=
+
+# More gluegen
+
+# applet-launcher.jar
+SHA1-Digest-Manifest: VSuZT2pgKojO7ezuoXEeiY0zAqg=
+
+# gluegen-rt.jar
+SHA1-Digest-Manifest: C/DWE9KsfkQQGaVajAT55sRB3lI=
+
+# gluegen-rt-natives-windows-i586.jar
+SHA1-Digest-Manifest: bOJKwYthgnr872NcgEFH+NhFR5I=
+
+# gluegen-rt-natives-windows-amd64.jar
+SHA1-Digest-Manifest: gjXZ5Ri8rlrXLwgEMlTbGQyvn2g=
+
+# gluegen-rt-natives-linux-i586.jar
+SHA1-Digest-Manifest: JWQd/xBC5HbRKdKNyfIozuicFmw=
+
+# gluegen-rt-natives-linux-amd64.jar
+SHA1-Digest-Manifest: mWCR2AdEmq+9jv/tF6vfwSyWSj4=
+
+# gluegen-rt-natives-solaris-sparc.jar
+SHA1-Digest-Manifest: e3TVJSMsoVj+C3bJv6MomiO+MYE=
+
+# gluegen-rt-natives-solaris-sparcv9.jar
+SHA1-Digest-Manifest: tNm5RTcuzyeUsy+SYCGdBqKYIfg=
+
+# gluegen-rt-natives-solaris-i586.jar
+SHA1-Digest-Manifest: DK8g47UGc+yWngVQuFR9VepP/dQ=
+
+# gluegen-rt-natives-solaris-amd64.jar
+SHA1-Digest-Manifest: 4pPw3F54UCrStkbIMdmMcjYD7Qs=
+
+# gluegen-rt-natives-macosx-ppc.jar
+SHA1-Digest-Manifest: 9mFUUvSDvRBHHFIYJ2QMFP1WT1A=
+
+# gluegen-rt-natives-macosx-universal.jar
+SHA1-Digest-Manifest: s8ypudj+MrTd0hVcsKEPgwufiG8=
+
+# Java3D
+
+# j3dcore.jar
+SHA1-Digest-Manifest: q32LO2ymMouhLGPGEXHj8iMPxwg=
+
+# j3dutils.jar
+SHA1-Digest-Manifest: +I6h46PtfnHlqHToM4vtBYf6Sbo=
+
+# vecmath.jar
+SHA1-Digest-Manifest: wyoyLOQXl3La0idGTL9FnhKGCog=
+
+# joalmixer.jar
+SHA1-Digest-Manifest: eBxwVnJ+C3+NzTRYANHNfBt0kDQ=
+
+# j3dcore-ogl-chk_dll.jar
+SHA1-Digest-Manifest: 1g2aqFVC/bqOdYlKCNpHj4sUe1o=
+
+# j3dcore-ogl_dll.jar
+SHA1-Digest-Manifest: QdsPocZVWIgacy1LuCk7XdGRKOs=
+
+# j3dcore-d3d_dll.jar
+SHA1-Digest-Manifest: V6pU8vAFm2TwjixnqC5+/hH6oT4=
+
+# j3dcore-ogl_dll.jar
+SHA1-Digest-Manifest: 6zUjjFktd9psN2IZZ69HdglgwXw=
+
+# lib_j3dcore-ogl_so.jar
+SHA1-Digest-Manifest: 1xOpin2wIE3lH1e6FcWmbn+bh6c=
+
+# lib_j3dcore-ogl_so.jar
+SHA1-Digest-Manifest: nnI8Tgc7cVDRhzFOenDKX7GFZys=
+
+# lib_j3dcore-ogl_so.jar
+SHA1-Digest-Manifest: UJpK8iCpFZOxGelUSyCAzDG4lwI=
+
+# lib_j3dcore-ogl_so.jar
+SHA1-Digest-Manifest: 2xPyjuYHhwcnm7V6JhSSeltZTjU=
+
+# lib_j3dcore-ogl_so.jar
+SHA1-Digest-Manifest: 6oRfkNGiY8mSNkzWGedWblV9EYs=
+
+# lib_j3dcore-ogl_so.jar
+SHA1-Digest-Manifest: 4j8WUb+zOjDPJ+ouqGfUQD9eHyc=
+
+# JOAL
+
+# joal.jar
+SHA1-Digest-Manifest: tLSVOd35UBG6O3ygs1ytgT2GsO0=
+
+# joal-natives-windows-i586.jar
+SHA1-Digest-Manifest: dkSxLL1wf2da/hzCXfxqxTfJ/aw=
+
+# joal-natives-linux-i586.jar
+SHA1-Digest-Manifest: r6K92Av4Gx/2pmerOTZeljg+vk4=
+
+# joal-natives-macosx-ppc.jar
+SHA1-Digest-Manifest: C5NqjEYh8dpmbALIeWq/L3s11pU=
+
+# joal-natives-macosx-universal.jar
+SHA1-Digest-Manifest: 5Bjpp545tA7weKeJFMsEgvFZ/3Y=
+
+# JOGL
+
+# jogl.jar
+SHA1-Digest-Manifest: 9KZFJDUedKxFjaClCYSnCMkWkzE=
+
+# jogl-natives-windows-i586.jar
+SHA1-Digest-Manifest: /makispaP+1cPqT1Xx0ASDuMc3k=
+
+# jogl-natives-windows-amd64.jar
+SHA1-Digest-Manifest: Y3gCUCqiVLrv/yJafRn+SaSjfNA=
+
+# jogl-natives-linux-i586.jar
+SHA1-Digest-Manifest: nLbh5AychWVdsvSrpDrPtOWdqvI=
+
+# jogl-natives-linux-amd64.jar
+SHA1-Digest-Manifest: mR+Wm79PMOTzQ/jT9WQ6v/zOE5o=
+
+# jogl-natives-solaris-sparc.jar
+SHA1-Digest-Manifest: FLWXSu8+vJcnTK7gsx4zzpzeGAE=
+
+# jogl-natives-solaris-sparcv9.jar
+SHA1-Digest-Manifest: JevoWvBagJ5VPWVtlfVvdxfH/G4=
+
+# jogl-natives-solaris-i586.jar
+SHA1-Digest-Manifest: iEd4mKOgu0DIfXB/aCZ4yke++Uw=
+
+# jogl-natives-solaris-amd64.jar
+SHA1-Digest-Manifest: AHlneDM3JVHHCb2k6BRrw8Q1H1w=
+
+# jogl-natives-macosx-ppc.jar
+SHA1-Digest-Manifest: YxBfWuqSMEN9DISnFso/9PN9CcY=
+
+# jogl-natives-macosx-universal.jar
+SHA1-Digest-Manifest: NddWCXHa2FBLkpcVxTRPfskhI1g=
+
+# gluegen-rt.jar
+SHA1-Digest-Manifest: C/DWE9KsfkQQGaVajAT55sRB3lI=
+
+# gluegen-rt-natives-windows-i586.jar
+SHA1-Digest-Manifest: bOJKwYthgnr872NcgEFH+NhFR5I=
+
+# gluegen-rt-natives-windows-amd64.jar
+SHA1-Digest-Manifest: gjXZ5Ri8rlrXLwgEMlTbGQyvn2g=
+
+# gluegen-rt-natives-linux-i586.jar
+SHA1-Digest-Manifest: JWQd/xBC5HbRKdKNyfIozuicFmw=
+
+# gluegen-rt-natives-linux-amd64.jar
+SHA1-Digest-Manifest: mWCR2AdEmq+9jv/tF6vfwSyWSj4=
+
+# gluegen-rt-natives-solaris-sparc.jar
+SHA1-Digest-Manifest: e3TVJSMsoVj+C3bJv6MomiO+MYE=
+
+# gluegen-rt-natives-solaris-sparcv9.jar
+SHA1-Digest-Manifest: tNm5RTcuzyeUsy+SYCGdBqKYIfg=
+
+# gluegen-rt-natives-solaris-i586.jar
+SHA1-Digest-Manifest: DK8g47UGc+yWngVQuFR9VepP/dQ=
+
+# gluegen-rt-natives-solaris-amd64.jar
+SHA1-Digest-Manifest: 4pPw3F54UCrStkbIMdmMcjYD7Qs=
+
+# gluegen-rt-natives-macosx-ppc.jar
+SHA1-Digest-Manifest: 9mFUUvSDvRBHHFIYJ2QMFP1WT1A=
+
+# gluegen-rt-natives-macosx-universal.jar
+SHA1-Digest-Manifest: s8ypudj+MrTd0hVcsKEPgwufiG8=
+
+# joal.jar
+SHA1-Digest-Manifest: tLSVOd35UBG6O3ygs1ytgT2GsO0=
+
+# joal-natives-windows-i586.jar
+SHA1-Digest-Manifest: dkSxLL1wf2da/hzCXfxqxTfJ/aw=
+
+# joal-natives-linux-i586.jar
+SHA1-Digest-Manifest: r6K92Av4Gx/2pmerOTZeljg+vk4=
+
+# joal-natives-macosx-ppc.jar
+SHA1-Digest-Manifest: C5NqjEYh8dpmbALIeWq/L3s11pU=
+
+# joal-natives-macosx-universal.jar
+SHA1-Digest-Manifest: 5Bjpp545tA7weKeJFMsEgvFZ/3Y=
+
Index: AE/installer2/setup_win/JRE/lib/servicetag/registration.xml
===================================================================
--- AE/installer2/setup_win/JRE/lib/servicetag/registration.xml	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/servicetag/registration.xml	(revision 613)
@@ -0,0 +1,31 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<registration_data version="1.0">
+   <environment>
+      <hostname>ci-nb2</hostname>
+      <hostId/>
+      <osName>Windows 7</osName>
+      <osVersion>6.1</osVersion>
+      <osArchitecture>x86</osArchitecture>
+      <systemModel>3323A2G</systemModel>
+      <systemManufacturer>LENOVO</systemManufacturer>
+      <cpuManufacturer>GenuineIntel</cpuManufacturer>
+      <serialNumber>R9529L5</serialNumber>
+   </environment>
+   <registry urn="urn:st:24881618-e184-4cb8-8421-e6343194abd3" version="1.0">
+      <service_tag>
+         <instance_urn>urn:st:637e3aab-821e-4e10-9414-a9b1fa37beed</instance_urn>
+         <product_name>Java SE 6 Runtime Environment</product_name>
+         <product_version>1.6.0_21</product_version>
+         <product_urn>urn:uuid:92d1de8c-1e59-42c6-a280-1c379526bcbc</product_urn>
+         <product_parent_urn>urn:uuid:fdc90b21-018d-4cab-b866-612c7c119ed3</product_parent_urn>
+         <product_parent>Java Platform Standard Edition 6 (Java SE 6)</product_parent>
+         <product_defined_inst_id>id=1.6.0_21-b07 x86,dir=C:\Program Files (x86)\Java\jre6</product_defined_inst_id>
+         <product_vendor>Sun Microsystems</product_vendor>
+         <platform_arch>x86</platform_arch>
+         <timestamp>2010-07-28 12:02:05 GMT</timestamp>
+         <container>global</container>
+         <source>Windows JRE installer</source>
+         <installer_uid>-1</installer_uid>
+      </service_tag>
+   </registry>
+</registration_data>
Index: AE/installer2/setup_win/JRE/lib/sound.properties
===================================================================
--- AE/installer2/setup_win/JRE/lib/sound.properties	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/sound.properties	(revision 613)
@@ -0,0 +1,39 @@
+############################################################
+#               Sound Configuration File
+############################################################
+#
+# This properties file is used to specify default service
+# providers for javax.sound.midi.MidiSystem and
+# javax.sound.sampled.AudioSystem.
+#
+# The following keys are recognized by MidiSystem methods:
+#
+# javax.sound.midi.Receiver
+# javax.sound.midi.Sequencer
+# javax.sound.midi.Synthesizer
+# javax.sound.midi.Transmitter
+#
+# The following keys are recognized by AudioSystem methods:
+#
+# javax.sound.sampled.Clip
+# javax.sound.sampled.Port
+# javax.sound.sampled.SourceDataLine
+# javax.sound.sampled.TargetDataLine
+#
+# The values specify the full class name of the service
+# provider, or the device name.
+#
+# See the class descriptions for details.
+#
+# Example 1:
+# Use MyDeviceProvider as default for SourceDataLines:
+# javax.sound.sampled.SourceDataLine=com.xyz.MyDeviceProvider
+#
+# Example 2:
+# Specify the default Synthesizer by its name "InternalSynth".
+# javax.sound.midi.Synthesizer=#InternalSynth
+#
+# Example 3:
+# Specify the default Receiver by provider and name:
+# javax.sound.midi.Receiver=com.sun.media.sound.MidiProvider#SunMIDI1
+#
Index: AE/installer2/setup_win/JRE/lib/tzmappings
===================================================================
--- AE/installer2/setup_win/JRE/lib/tzmappings	(revision 613)
+++ AE/installer2/setup_win/JRE/lib/tzmappings	(revision 613)
@@ -0,0 +1,193 @@
+#
+# @(#)tzmappings	1.14 10/03/11
+# 
+# This file describes mapping information between Windows and Java
+# time zones.
+# Format: Each line should include a colon separated fields of Windows
+# time zone registry key, time zone mapID, locale (which is most
+# likely used in the time zone), and Java time zone ID. Blank lines
+# and lines that start with '#' are ignored. Data lines must be sorted
+# by mapID (ASCII order).
+#
+#                            NOTE
+# This table format is not a public interface of any Java
+# platforms. No applications should depend on this file in any form.
+# 
+# This table has been generated by a program and should not be edited
+# manually.
+#
+Romance:-1,64::Europe/Paris:
+Romance Standard Time:-1,64::Europe/Paris:
+Warsaw:-1,65::Europe/Warsaw:
+Central Europe:-1,66::Europe/Prague:
+Central Europe Standard Time:-1,66::Europe/Prague:
+Prague Bratislava:-1,66::Europe/Prague:
+W. Central Africa Standard Time:-1,66:AO:Africa/Luanda:
+FLE:-1,67:FI:Europe/Helsinki:
+FLE Standard Time:-1,67:FI:Europe/Helsinki:
+GFT:-1,67::Europe/Athens:
+GFT Standard Time:-1,67::Europe/Athens:
+GTB:-1,67::Europe/Athens:
+GTB Standard Time:-1,67::Europe/Athens:
+Israel:-1,70::Asia/Jerusalem:
+Israel Standard Time:-1,70::Asia/Jerusalem:
+Arab:-1,71::Asia/Riyadh:
+Arab Standard Time:-1,71::Asia/Riyadh:
+Arabic Standard Time:-1,71:IQ:Asia/Baghdad:
+E. Africa:-1,71:KE:Africa/Nairobi:
+E. Africa Standard Time:-1,71:KE:Africa/Nairobi:
+Saudi Arabia:-1,71::Asia/Riyadh:
+Saudi Arabia Standard Time:-1,71::Asia/Riyadh:
+Iran:-1,72::Asia/Tehran:
+Iran Standard Time:-1,72::Asia/Tehran:
+Afghanistan:-1,73::Asia/Kabul:
+Afghanistan Standard Time:-1,73::Asia/Kabul:
+India:-1,74::Asia/Calcutta:
+India Standard Time:-1,74::Asia/Calcutta:
+Myanmar Standard Time:-1,74::Asia/Rangoon:
+Nepal Standard Time:-1,74::Asia/Katmandu:
+Sri Lanka:-1,74:LK:Asia/Colombo:
+Sri Lanka Standard Time:-1,74:LK:Asia/Colombo:
+Beijing:-1,75::Asia/Shanghai:
+China:-1,75::Asia/Shanghai:
+China Standard Time:-1,75::Asia/Shanghai:
+AUS Central:-1,76::Australia/Darwin:
+AUS Central Standard Time:-1,76::Australia/Darwin:
+Cen. Australia:-1,76::Australia/Adelaide:
+Cen. Australia Standard Time:-1,76::Australia/Adelaide:
+Vladivostok:-1,77::Asia/Vladivostok:
+Vladivostok Standard Time:-1,77::Asia/Vladivostok:
+West Pacific:-1,77:GU:Pacific/Guam:
+West Pacific Standard Time:-1,77:GU:Pacific/Guam:
+E. South America:-1,80::America/Sao_Paulo:
+E. South America Standard Time:-1,80::America/Sao_Paulo:
+Greenland Standard Time:-1,80:GL:America/Godthab:
+Newfoundland:-1,81::America/St_Johns:
+Newfoundland Standard Time:-1,81::America/St_Johns:
+Pacific SA:-1,82::America/Santiago:
+Pacific SA Standard Time:-1,82::America/Santiago:
+SA Western:-1,82:BO:America/La_Paz:
+SA Western Standard Time:-1,82:BO:America/La_Paz:
+SA Pacific:-1,83::America/Bogota:
+SA Pacific Standard Time:-1,83::America/Bogota:
+US Eastern:-1,84::America/Indianapolis:
+US Eastern Standard Time:-1,84::America/Indianapolis:
+Central America Standard Time:-1,85::America/Regina:
+Mexico:-1,85::America/Mexico_City:
+Mexico Standard Time:-1,85::America/Mexico_City:
+Canada Central:-1,86::America/Regina:
+Canada Central Standard Time:-1,86::America/Regina:
+US Mountain:-1,87::America/Phoenix:
+US Mountain Standard Time:-1,87::America/Phoenix:
+GMT:0,1::Europe/London:
+GMT Standard Time:0,1::Europe/London:
+Ekaterinburg:10,11::Asia/Yekaterinburg:
+Ekaterinburg Standard Time:10,11::Asia/Yekaterinburg:
+West Asia:10,11:UZ:Asia/Tashkent:
+West Asia Standard Time:10,11:UZ:Asia/Tashkent:
+Central Asia:12,13::Asia/Almaty:
+Central Asia Standard Time:12,13::Asia/Almaty:
+N. Central Asia Standard Time:12,13::Asia/Novosibirsk:
+Bangkok:14,15::Asia/Bangkok:
+Bangkok Standard Time:14,15::Asia/Bangkok:
+North Asia Standard Time:14,15::Asia/Krasnoyarsk:
+SE Asia:14,15::Asia/Bangkok:
+SE Asia Standard Time:14,15::Asia/Bangkok:
+North Asia East Standard Time:16,17:RU:Asia/Irkutsk:
+Singapore:16,17:SG:Asia/Singapore:
+Singapore Standard Time:16,17:SG:Asia/Singapore:
+Taipei:16,17::Asia/Taipei:
+Taipei Standard Time:16,17::Asia/Taipei:
+W. Australia:16,17:AU:Australia/Perth:
+W. Australia Standard Time:16,17:AU:Australia/Perth:
+Korea:18,19:KR:Asia/Seoul:
+Korea Standard Time:18,19:KR:Asia/Seoul:
+Tokyo:18,19::Asia/Tokyo:
+Tokyo Standard Time:18,19::Asia/Tokyo:
+Yakutsk:18,19:RU:Asia/Yakutsk:
+Yakutsk Standard Time:18,19:RU:Asia/Yakutsk:
+Central European:2,3:CS:Europe/Belgrade:
+Central European Standard Time:2,3:CS:Europe/Belgrade:
+W. Europe:2,3::Europe/Berlin:
+W. Europe Standard Time:2,3::Europe/Berlin:
+Tasmania:20,-1::Australia/Hobart:
+Tasmania Standard Time:20,-1::Australia/Hobart:
+AUS Eastern:20,21::Australia/Sydney:
+AUS Eastern Standard Time:20,21::Australia/Sydney:
+E. Australia:20,21::Australia/Brisbane:
+E. Australia Standard Time:20,21::Australia/Brisbane:
+Sydney Standard Time:20,21::Australia/Sydney:
+Tasmania Standard Time:20,65::Australia/Hobart:
+Central Pacific:22,23::Pacific/Guadalcanal:
+Central Pacific Standard Time:22,23::Pacific/Guadalcanal:
+Dateline:24,25::GMT-1200:
+Dateline Standard Time:24,25::GMT-1200:
+Fiji:24,25::Pacific/Fiji:
+Fiji Standard Time:24,25::Pacific/Fiji:
+Samoa:26,27::Pacific/Apia:
+Samoa Standard Time:26,27::Pacific/Apia:
+Hawaiian:28,29::Pacific/Honolulu:
+Hawaiian Standard Time:28,29::Pacific/Honolulu:
+Alaskan:30,31::America/Anchorage:
+Alaskan Standard Time:30,31::America/Anchorage:
+Pacific:32,33::America/Los_Angeles:
+Pacific Standard Time:32,33::America/Los_Angeles:
+Mexico Standard Time 2:34,35:MX:America/Chihuahua:
+Mountain:34,35::America/Denver:
+Mountain Standard Time:34,35::America/Denver:
+Central:36,37::America/Chicago:
+Central Standard Time:36,37::America/Chicago:
+Eastern:38,39::America/New_York:
+Eastern Standard Time:38,39::America/New_York:
+E. Europe:4,5:BY:Europe/Minsk:
+E. Europe Standard Time:4,5:BY:Europe/Minsk:
+Egypt:4,68::Africa/Cairo:
+Egypt Standard Time:4,68::Africa/Cairo:
+South Africa:4,69::Africa/Harare:
+South Africa Standard Time:4,69::Africa/Harare:
+Atlantic:40,41::America/Halifax:
+Atlantic Standard Time:40,41::America/Halifax:
+SA Eastern:42,43:GF:America/Cayenne:
+SA Eastern Standard Time:42,43:GF:America/Cayenne:
+Mid-Atlantic:44,45::Atlantic/South_Georgia:
+Mid-Atlantic Standard Time:44,45::Atlantic/South_Georgia:
+Azores:46,47::Atlantic/Azores:
+Azores Standard Time:46,47::Atlantic/Azores:
+Cape Verde Standard Time:46,47::Atlantic/Cape_Verde:
+Russian:6,7::Europe/Moscow:
+Russian Standard Time:6,7::Europe/Moscow:
+New Zealand:78,79::Pacific/Auckland:
+New Zealand Standard Time:78,79::Pacific/Auckland:
+Tonga Standard Time:78,79::Pacific/Tongatapu:
+Arabian:8,9::Asia/Muscat:
+Arabian Standard Time:8,9::Asia/Muscat:
+Caucasus:8,9:AM:Asia/Yerevan:
+Caucasus Standard Time:8,9:AM:Asia/Yerevan:
+GMT Standard Time:88,89::GMT:
+Greenwich:88,89::GMT:
+Greenwich Standard Time:88,89::GMT:
+Argentina Standard Time:900,900::America/Buenos_Aires:
+Azerbaijan Standard Time:901,901:AZ:Asia/Baku:
+Bangladesh Standard Time:902,902::Asia/Dhaka:
+Central Brazilian Standard Time:903,903:BR:America/Manaus:
+Central Standard Time (Mexico):904,904::America/Mexico_City:
+Georgian Standard Time:905,905:GE:Asia/Tbilisi:
+Jordan Standard Time:906,906:JO:Asia/Amman:
+Kamchatka Standard Time:907,907:RU:Asia/Kamchatka:
+Mauritius Standard Time:908,908:MU:Indian/Mauritius:
+Middle East Standard Time:909,909:LB:Asia/Beirut:
+Montevideo Standard Time:910,910:UY:America/Montevideo:
+Morocco Standard Time:911,911:MA:Africa/Casablanca:
+Mountain Standard Time (Mexico):912,912:MX:America/Chihuahua:
+Namibia Standard Time:913,913:NA:Africa/Windhoek:
+Pacific Standard Time (Mexico):914,914:MX:America/Tijuana:
+Pakistan Standard Time:915,915::Asia/Karachi:
+Paraguay Standard Time:916,916:PY:America/Asuncion:
+UTC:917,917::UTC:
+UTC+12:918,918::GMT+1200:
+UTC-02:919,919::GMT-0200:
+UTC-11:920,920::GMT-1100:
+Ulaanbaatar Standard Time:921,921::Asia/Ulaanbaatar:
+Venezuela Standard Time:922,922::America/Caracas:
+Western Brazilian Standard Time:923,923:BR:America/Rio_Branco:
+Armenian Standard Time:924,924:AM:Asia/Yerevan:
