[Libreoffice-commits] core.git: Branch 'distro/collabora/cp-5.1' - 14 commits - configure.ac cui/source desktop/source distro-configs/CPOSX.conf Makefile.in pyuno/Package_python_shell.mk Repository.mk scp2/source setup_native/source solenv/bin sysui/desktop

Tor Lillqvist tml at collabora.com
Sat Jun 11 10:59:26 UTC 2016


 Makefile.in                                      |   10 
 Repository.mk                                    |    4 
 configure.ac                                     |    2 
 cui/source/dialogs/about.cxx                     |    2 
 desktop/source/app/officeipcthread.cxx           |    5 
 distro-configs/CPOSX.conf                        |    1 
 pyuno/Package_python_shell.mk                    |    4 
 scp2/source/ooo/scpaction_ooo.scp                |   25 
 setup_native/source/packinfo/DS_Store            |binary
 setup_native/source/packinfo/VolumeIcon.icns     |binary
 setup_native/source/packinfo/osxdndinstall.png   |binary
 setup_native/source/packinfo/sla.r               | 1428 +++++++++++++++++++++++
 solenv/bin/macosx-codesign-app-bundle            |  123 -
 solenv/bin/modules/installer/simplepackage.pm    |   14 
 sysui/desktop/freedesktop/freedesktop-menus.spec |    3 
 sysui/desktop/icons/main.icns                    |binary
 sysui/desktop/share/create_tree.sh               |    8 
 17 files changed, 1535 insertions(+), 94 deletions(-)

New commits:
commit dd647d591d43188602858c45bc6342f60b021a1f
Author: Tor Lillqvist <tml at collabora.com>
Date:   Fri Sep 19 12:47:02 2014 +0300

    Unzip the InfoPlist.strings files into correct locations
    
    Not sure how useful it is to only provide translations for the ODF
    document format names, though.
    
    Change-Id: I22a2e5b896e077ca3067a30635f7cdf67c2f5e7c
    (cherry picked from commit 16f62d80c38f3920a40fc078edecad905ba2b196)
    (cherry picked from commit 4094a45c3b3c0c366e9ba9d51825f5627e21967d)

diff --git a/Makefile.in b/Makefile.in
index 86ce1e2..7a13f35 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -304,9 +304,15 @@ ifeq ($(OS_FOR_BUILD),WNT)
 else
 	@$(SRCDIR)/solenv/bin/ooinstall $(TESTINSTALLDIR)
 ifneq ($(MACOSX_CODESIGNING_IDENTITY),)
-# The InfoPlist_*.zip files in "bin" are totally pointless and should
-# not be there. I am too lazy at the moment to figure out how to
-# prevent them from ending up there.
+# Unzip bin/InfoPlist_*.zip files into corresponding Resources/*.lproj directories.
+	set -x; for F in $(TESTINSTALLDIR)/LibreOffice$(if $(ENABLE_RELEASE_BUILD),,Dev).app/Contents/bin/InfoPlist_*.zip; do \
+		bn=`basename $$F .zip`; \
+		lang=$${bn#InfoPlist_}; \
+		lproj=$(TESTINSTALLDIR)/LibreOffice$(if $(ENABLE_RELEASE_BUILD),,Dev).app/Contents/Resources/$$lang.lproj; \
+		mkdir $$lproj; \
+		(cd $$lproj; unzip $$F); \
+	done
+# And remove the "bin" folder which should not be there
 	rm -rf $(TESTINSTALLDIR)/LibreOffice$(if $(ENABLE_RELEASE_BUILD),,Dev).app/Contents/bin
 	@$(SRCDIR)/solenv/bin/macosx-codesign-app-bundle $(TESTINSTALLDIR)/LibreOffice$(if $(ENABLE_RELEASE_BUILD),,Dev).app
 endif
commit 265aae6898d5359b207ab1984bab76861f9f977b
Author: Tor Lillqvist <tml at collabora.com>
Date:   Mon Sep 15 21:50:35 2014 +0300

    We don't want those bin/InfoPlist_*.zip files in the app bundle
    
    (cherry picked from commit 7956d38fa3c0db77b9b2b41f870bd3587e3dc1af)
    
    Conflicts:
    	Makefile.in
    
    Change-Id: I29eefa599f175d98303fca8f5ccf1c8fe85b0bbc
    (cherry picked from commit e3e3a1f3300975858caf4dff17ffb8775a6ef015)

diff --git a/Makefile.in b/Makefile.in
index 9803706..86ce1e2 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -304,6 +304,10 @@ ifeq ($(OS_FOR_BUILD),WNT)
 else
 	@$(SRCDIR)/solenv/bin/ooinstall $(TESTINSTALLDIR)
 ifneq ($(MACOSX_CODESIGNING_IDENTITY),)
+# The InfoPlist_*.zip files in "bin" are totally pointless and should
+# not be there. I am too lazy at the moment to figure out how to
+# prevent them from ending up there.
+	rm -rf $(TESTINSTALLDIR)/LibreOffice$(if $(ENABLE_RELEASE_BUILD),,Dev).app/Contents/bin
 	@$(SRCDIR)/solenv/bin/macosx-codesign-app-bundle $(TESTINSTALLDIR)/LibreOffice$(if $(ENABLE_RELEASE_BUILD),,Dev).app
 endif
 endif
commit b36267edb632577ca5e6deb219d5da4d5b8e9bef
Author: Andras Timar <andras.timar at collabora.com>
Date:   Mon May 2 11:14:00 2016 +0200

    do not localize Collabora Office URL
    
    Change-Id: I1eb33d3ce649ff8ca1158e96fe6c6bc1a3ab75ea
    (cherry picked from commit 9189450fa042526ee5380a2b9004b8a1a32a9e48)

diff --git a/cui/source/dialogs/about.cxx b/cui/source/dialogs/about.cxx
index 38dad7f..3aed215 100644
--- a/cui/source/dialogs/about.cxx
+++ b/cui/source/dialogs/about.cxx
@@ -126,7 +126,7 @@ IMPL_LINK_TYPED( AboutDialog, HandleClick, Button*, pButton, void )
     else if ( aDialogButton == WEBSITE_BUTTON )
     {
         sURL = officecfg::Office::Common::Help::StartCenter::InfoURL::get();
-        localizeWebserviceURI(sURL);
+        // localizeWebserviceURI(sURL);
     }
 
     // If the URL is empty, don't do anything
commit 0ad525cf7838d8899447b1f6e642a9807ea22e36
Author: Tor Lillqvist <tml at collabora.com>
Date:   Tue Jun 30 19:42:45 2015 +0300

    tdf#92191: Don't use any IPC pipe in a sandboxed OS X app
    
    Creating the pipe fails when sandboxed. This caused us to not start
    the OfficeIPCThread, and that then meant that the file open requests
    coming in through VCL_NSApplication's application:openFile: method in
    vclnsapp.mm were not processed properly.
    
    The OS takes care of not starting multiple LO apps simultaneously
    anyway, so we don't really need any pipe, I hope.
    
    Conflicts:
    	desktop/source/app/officeipcthread.cxx
    
    Change-Id: Ia920520ce2928787313f83199028f9c9942f61f3
    (cherry picked from commit 00b16b98f91bbef6b2dc22c8bac0608f73297e24)

diff --git a/desktop/source/app/officeipcthread.cxx b/desktop/source/app/officeipcthread.cxx
index 1ead4e2..efada59 100644
--- a/desktop/source/app/officeipcthread.cxx
+++ b/desktop/source/app/officeipcthread.cxx
@@ -531,6 +531,10 @@ OfficeIPCThread::Status OfficeIPCThread::EnableOfficeIPCThread()
         if ( aUserInstallPathHashCode.isEmpty() )
             return IPC_STATUS_BOOTSTRAP_ERROR; // Something completely broken, we cannot create a valid hash code!
 
+#if HAVE_FEATURE_MACOSX_SANDBOX
+        nPipeMode = PIPEMODE_CREATED;
+#else
+
         OUString aPipeIdent( "SingleOfficeIPC_" + aUserInstallPathHashCode );
 
         do
@@ -574,6 +578,7 @@ OfficeIPCThread::Status OfficeIPCThread::EnableOfficeIPCThread()
             }
 
         } while ( nPipeMode == PIPEMODE_DONTKNOW );
+#endif
     }
 
     if ( nPipeMode == PIPEMODE_CREATED )
commit 3769b24d1445f516023f535e4222f3aa7d8b9ea3
Author: Andras Timar <andras.timar at collabora.com>
Date:   Sun May 17 14:32:02 2015 +0200

    Don't package ui-previewer in App Store case
    
    Change-Id: I122c65d7f6dec7588ea2624e291e9dfe04dff22c
    (cherry picked from commit 0c1e534ee642a3802f4ab896fc36d2aa0153ac3f)

diff --git a/Repository.mk b/Repository.mk
index 04519cb..101334b 100644
--- a/Repository.mk
+++ b/Repository.mk
@@ -147,7 +147,9 @@ $(eval $(call gb_Helper_register_executables_for_install,OOO,ooo, \
 	gengal \
 	$(if $(filter TRUE-TRUE,$(USING_X11)-$(ENABLE_NPAPI_FROM_BROWSER)),pluginapp.bin) \
 	$(if $(filter WNT,$(OS)),,uri-encode) \
-	ui-previewer \
+	$(if $(ENABLE_MACOSX_SANDBOX),, \
+		ui-previewer \
+	) \
 	$(if $(filter WNT,$(OS)), \
 		senddoc \
 	) \
commit 8326a44fb0692984ede27f4019ad00559a63a6b9
Author: Andras Timar <andras.timar at collabora.com>
Date:   Thu Jul 2 16:26:50 2015 +0200

    put python starter shell script to Resources folder of OS X app
    
    Change-Id: Iaed947b9168fbd1e2d2c79da724426b56bd8a830
    (cherry picked from commit 783ae75d8f979bd91169082dee2d14cfb2254f53)

diff --git a/pyuno/Package_python_shell.mk b/pyuno/Package_python_shell.mk
index e8c3fa6..f75cda3 100644
--- a/pyuno/Package_python_shell.mk
+++ b/pyuno/Package_python_shell.mk
@@ -9,6 +9,10 @@
 
 $(eval $(call gb_Package_Package,python_shell,$(call gb_CustomTarget_get_workdir,pyuno/python_shell)))
 
+ifeq ($(OS),MACOSX)
+$(eval $(call gb_Package_add_file,python_shell,$(LIBO_ETC_FOLDER)/python,python.sh))
+else
 $(eval $(call gb_Package_add_file,python_shell,$(LIBO_BIN_FOLDER)/python,python.sh))
+endif
 
 # vim: set noet sw=4 ts=4:
commit 6583d52f0287d88fbb79ee10e4e4fcc516c5b38e
Author: Andras Timar <andras.timar at collabora.com>
Date:   Mon Aug 24 10:07:45 2015 +0200

    enable breeze and sifr
    
    Change-Id: Id46452b5121077de7d5368257b538a85d1ef7dae
    (cherry picked from commit ace78a2e440cc71ba69179c2c715e1d96981a8cb)

diff --git a/configure.ac b/configure.ac
index bb57116..c531082 100644
--- a/configure.ac
+++ b/configure.ac
@@ -12792,7 +12792,7 @@ if test "$enable_mpl_subset" = "yes"; then
     fi
     for theme in $WITH_THEMES; do
         case $theme in
-        breeze|crystal|default|hicontrast|human|oxygen|sifr)
+        crystal|default|hicontrast|human|oxygen)
             AC_MSG_ERROR([need to disable icon themes from '$WITH_THEMES': $theme present, use --with-theme=tango]) ;;
         *) : ;;
         esac
commit ccf572e5e4a0a2fe1c3f5b9a166e2d5e4277c83a
Author: Andras Timar <andras.timar at collabora.com>
Date:   Wed Mar 2 11:09:50 2016 +0100

    don't package 'install' script because it's not for end users
    
    Change-Id: I64ea8d8722c9da252c6142a862e9363759d38ba3
    (cherry picked from commit 74d90488662c55fd5f31b203e02b228137b42076)

diff --git a/scp2/source/ooo/scpaction_ooo.scp b/scp2/source/ooo/scpaction_ooo.scp
index 8f5c9a3..2b3a724 100644
--- a/scp2/source/ooo/scpaction_ooo.scp
+++ b/scp2/source/ooo/scpaction_ooo.scp
@@ -36,14 +36,6 @@ ScpAction scp_Copy_Readme_Txt
 End
 #endif
 
-#if !defined(WNT) && !defined(MACOSX) && defined(WITH_RPM)
-ScpAction scp_Copy_Install
-    Copy = "scripts/install";
-    Name = "install";
-    UnixRights = 755;
-End
-#endif
-
 #if defined(WNT) && defined(_gcc3)
 #if defined(MINGW_GCCDLL)
 ScpAction SCP_COPY_MINGW_GCCS
commit e2a4ac9783408104607bca9bd00f6f333ffe54a2
Author: Andras Timar <andras.timar at collabora.com>
Date:   Tue Nov 3 18:08:54 2015 +0100

    sysui: Collabora Office branding
    
    Change-Id: Idfe91c87631956072f1e44d09168de6cd91aed6b
    (cherry picked from commit dd8b7bfc252400153b5ec1b52c045c346ad853fe)

diff --git a/sysui/desktop/freedesktop/freedesktop-menus.spec b/sysui/desktop/freedesktop/freedesktop-menus.spec
index 9c952a5..2d1cd73 100755
--- a/sysui/desktop/freedesktop/freedesktop-menus.spec
+++ b/sysui/desktop/freedesktop/freedesktop-menus.spec
@@ -24,6 +24,7 @@ Name: %pkgprefix-freedesktop-menus
 #BuildRequires: perl
 Group: Office
 License: LGPLv3 with MPLv2, ALv2 and others
+Provides: collaboraoffice-desktop-integration
 Provides: libreoffice-desktop-integration
 Conflicts: %pkgprefix-suse-menus
 Conflicts: %pkgprefix-debian-menus
@@ -387,7 +388,7 @@ done
 # glibc breaks rpm unless rpm is build with internal glob-matching (issue 49374)
 # https://bugzilla.redhat.com/beta/show_bug.cgi?id=134362
 %defattr(-, root, root)
-%if "%unixfilename" != "libreoffice%productversion" && "%unixfilename" != "libreofficedev%productversion"
+%if "%unixfilename" != "collaboraoffice%productversion" && "%unixfilename" != "collaboraofficedev%productversion"
 # compat symlinks
 %attr(0755,root,root) /opt/%unixfilename
 %endif
diff --git a/sysui/desktop/share/create_tree.sh b/sysui/desktop/share/create_tree.sh
index 86d2837..a9e3b4f 100755
--- a/sysui/desktop/share/create_tree.sh
+++ b/sysui/desktop/share/create_tree.sh
@@ -65,14 +65,14 @@ office_root=${office_prefix}/${PREFIX}
 #this symlink is needed to have the API boostrap functions running right
 ln -sf "${office_root}/program/soffice" "${DESTDIR}/${PREFIXDIR}/bin/${PREFIX}"
 
-if test "${PREFIX}" != libreoffice${PRODUCTVERSION} -a "${PREFIX}" != libreofficedev${PRODUCTVERSION}  ; then
+if test "${PREFIX}" != collaboraoffice${PRODUCTVERSION} -a "${PREFIX}" != collaboraofficedev${PRODUCTVERSION}  ; then
     # compat symlinks
     mkdir -p "${DESTDIR}${office_prefix}"
-    ln -sf libreoffice${PRODUCTVERSION} "${DESTDIR}${office_root}"
-    ln -sf /${PREFIXDIR}/bin/${PREFIX} "${DESTDIR}/${PREFIXDIR}/bin/libreoffice${PRODUCTVERSION}"
+    ln -sf collaboraoffice${PRODUCTVERSION} "${DESTDIR}${office_root}"
+    ln -sf /${PREFIXDIR}/bin/${PREFIX} "${DESTDIR}/${PREFIXDIR}/bin/collaboraoffice${PRODUCTVERSION}"
 fi
 
-test "${PREFIX}" = libreofficedev${PRODUCTVERSION} && mime_def_file="libreofficedev${PRODUCTVERSION}.xml" || mime_def_file="libreoffice${PRODUCTVERSION}.xml"
+test "${PREFIX}" = collaboraofficedev${PRODUCTVERSION} && mime_def_file="collaboraofficedev${PRODUCTVERSION}.xml" || mime_def_file="collaboraoffice${PRODUCTVERSION}.xml"
 mkdir -p "${DESTDIR}/${PREFIXDIR}/share/mime/packages"
 cp openoffice.org.xml "${DESTDIR}/${PREFIXDIR}/share/mime/packages/$mime_def_file"
 chmod 0644 "${DESTDIR}/${PREFIXDIR}/share/mime/packages/$mime_def_file"
commit b184947a1c6d6924c78db6ac1f724880388c38af
Author: Andras Timar <andras.timar at collabora.com>
Date:   Mon Nov 2 20:50:29 2015 +0100

    OS X: codesign
    
    Change-Id: I6971a7c4f5f230dc6ac01c91e4183c24f847e061
    (cherry picked from commit 74f4fad849ca2812d67ff326217f37f8d41bbf01)

diff --git a/solenv/bin/macosx-codesign-app-bundle b/solenv/bin/macosx-codesign-app-bundle
index 93f3116..ff6397a 100755
--- a/solenv/bin/macosx-codesign-app-bundle
+++ b/solenv/bin/macosx-codesign-app-bundle
@@ -1,8 +1,9 @@
-#!/bin/bash -x
+#!/bin/bash
 
-# Script to sign executables, dylibs and frameworks in an app bundle
-# plus the bundle itself. Called from
-# the test-install target in Makefile.in
+# Script to sign dylibs and frameworks in an app bundle plus the
+# bundle itself. Called from
+# installer::simplepackage::create_package() in
+# solenv/bin/modules/installer/simplepackage.pm
 
 test `uname` = Darwin || { echo This is for OS X only; exit 1; }
 
@@ -18,97 +19,91 @@ for V in \
     fi
 done
 
-APP_BUNDLE="$1"
+echo "codesigning using MACSOX_CODESIGNING_IDENTITY=[${MACOSX_CODESIGNING_IDENTITY?}]"
 
-if test -n "$ENABLE_MACOSX_SANDBOX"; then
-    # In a sandboxed build executables need the entitlements
-    entitlements="--entitlements $BUILDDIR/lo.xcent"
-    # We use --enable-canonical-installation-tree-structure so all
-    # data files in Resources are included in the app bundle signature
-    # through that. I think.
-    other_files=''
-else
-    # In a non-sandboxed build (distributed outside the App Store)
-    # we traditionally have use --resource-rules. Let's not touch that?
-    resource_rules="--resource-rules $SRCDIR/setup_native/source/mac/CodesignRules.plist"
-    # And there we then want to sign data files, too, hmm.
-    other_files="\
- -or -name '*.fodt' -or -name 'schema.strings' -or -name 'schema.xml' \
- -or -name '*.jar' -or -name '*.jnilib' -or -name 'LICENSE' -or -name 'LICENSE.html' \
- -or -name '*.applescript' -or -name '*.odt'"
-fi
+APP_BUNDLE="$1"
 
 # Sign dylibs
 #
+# Executables get signed right after linking, see
+# solenv/gbuild/platform/macosx.mk. But many of our dylibs are built
+# by ad-hoc or 3rd-party mechanisms, so we can't easily sign them
+# right after linking. So do it here.
+#
 # The dylibs in the Python framework are called *.so. Go figure
 #
 # On Mavericks also would like to have data files signed...
 # add some where it makes sense. Make a depth-first search to sign the contents
 # of e.g. the spotlight plugin before attempting to sign the plugin itself
 
-find "$APP_BUNDLE" \( -name '*.dylib' -or -name '*.dylib.*' -or -name '*.so' \
-        $other_files \) ! -type l |
+find -d "$APP_BUNDLE" \( -name '*.dylib' -or -name '*.so' -or -name '*.fodt' -or -name '*.odt' \
+        -or -name 'schema.strings' -or -name 'schema.xml' -or -name '*.mdimporter' \
+        -or -name '*.jar' -or -name '*.jnilib' -or -name 'LICENSE' -or -name 'LICENSE.html' \
+        -or -name '*.applescript' \) ! -type l | grep -v "LibreOfficePython\.framework" | \
 while read file; do
     id=`echo ${file#${APP_BUNDLE}/Contents/} | sed -e 's,/,.,g'`
-    codesign --verbose --identifier=$MACOSX_BUNDLE_IDENTIFIER.$id --sign "$MACOSX_CODESIGNING_IDENTITY" "$file"
+    codesign --verbose --identifier=$MACOSX_BUNDLE_IDENTIFIER.$id --sign "$MACOSX_CODESIGNING_IDENTITY" "$file" || exit 1
 done
 
-# Sign executables
-
-find "$APP_BUNDLE/Contents/MacOS" -type f |
-while read file; do
-    id=`echo ${file#${APP_BUNDLE}/Contents/} | sed -e 's,/,.,g'`
-    codesign --force --verbose --identifier=$MACOSX_BUNDLE_IDENTIFIER.$id --sign "$MACOSX_CODESIGNING_IDENTITY" $entitlements "$file"
+find "$APP_BUNDLE" -name '*.dylib.*' ! -type l | \
+while read dylib; do \
+    id=`basename "$dylib"`; \
+    id=`echo $id | sed -e 's/dylib.*/dylib/'`; \
+    codesign --verbose --identifier=$MACOSX_BUNDLE_IDENTIFIER.$id --sign "$MACOSX_CODESIGNING_IDENTITY" "$dylib" || exit 1
 done
 
-# Sign included bundles. First .app ones (i.e. the Python.app inside
-# the LibreOfficePython.framework. Be generic for kicks...)
-
-find "$APP_BUNDLE" -name '*.app' -type d |
-while read app; do
-    fn=`basename "$app"`
-    fn=${fn%.*}
-    # Assume the app has a XML (and not binary) Info.plist
-    id=`grep -A 1 '<key>CFBundleIdentifier</key>' "$app/Contents/Info.plist" | tail -1 | sed -e 's,.*<string>,,' -e 's,</string>.*,,'`
-    codesign --verbose --identifier=$id --sign "$MACOSX_CODESIGNING_IDENTITY" $entitlements "$app"
+# The executables have already been signed by
+# gb_LinkTarget__command_dynamiclink in
+# solenv/gbuild/platform/macosx.mk, but sign the handful of scripts remaining
+# in MacOS
+# (<https://developer.apple.com/library/mac/technotes/tn2206/_index.html> "OS X
+# Code Signing In Depth" suggests we should get rid of them rather sooner than
+# later, but they appear to be OK for now):
+
+for i in gengal python senddoc unoinfo
+do
+    if [ -f "$APP_BUNDLE/Contents/MacOS/$i" ]
+    then
+        codesign --verbose --identifier="$MACOSX_BUNDLE_IDENTIFIER.$i" \
+            --sign "$MACOSX_CODESIGNING_IDENTITY" "$APP_BUNDLE/Contents/MacOS/$i" \
+        || exit 1
+    fi
 done
 
-# Then .framework ones. Again, be generic just for kicks.
+# Sign frameworks.
+#
+# Yeah, we don't bundle any other framework than our Python one, and
+# it has just one version, so this generic search is mostly for
+# completeness.
 
-find "$APP_BUNDLE" -name '*.framework' -type d |
-while read framework; do
-    fn=`basename "$framework"`
+find "$APP_BUNDLE" -name '*.framework' -type d -print0 | \
+while IFS= read -r -d '' framework; do \
+    fn=$(basename "$framework")
     fn=${fn%.*}
-    for version in "$framework"/Versions/*; do
+    for version in "$framework"/Versions/*; do \
         if test ! -L "$version" -a -d "$version"; then
-	    # Assume the framework has a XML (and not binary) Info.plist
-	    id=`grep -A 1 '<key>CFBundleIdentifier</key>' "$version/Resources/Info.plist" | tail -1 | sed -e 's,.*<string>,,' -e 's,</string>.*,,'`
-            codesign --verbose --identifier=$id --sign "$MACOSX_CODESIGNING_IDENTITY" "$version"
-        fi
-    done
-done
-
-# Then mdimporters
-
-find "$APP_BUNDLE" -name '*.mdimporter' -type d |
-while read bundle; do
-    codesign --verbose --prefix=$MACOSX_BUNDLE_IDENTIFIER. --sign "$MACOSX_CODESIGNING_IDENTITY" "$bundle"
+            codesign --force --verbose --prefix=$MACOSX_BUNDLE_IDENTIFIER. --sign "$MACOSX_CODESIGNING_IDENTITY" "$version/$fn" || exit 1
+            codesign --force --verbose --prefix=$MACOSX_BUNDLE_IDENTIFIER. --sign "$MACOSX_CODESIGNING_IDENTITY" "$version" || exit 1
+        fi; \
+    done; \
 done
 
-# Sign the app bundle as a whole which means (re-)signing the
-# CFBundleExecutable from Info.plist, i.e. soffice, plus the contents
+# Sign the app bundle as a whole which means finally signing the
+# CFBundleExecutable from Info.plist, i.e. soffice (which is exempted from the
+# on-the-go executable signing in gb_LinkTarget__command_dynamiclink in
+# solenv/gbuild/platform/macosx.mk), plus the contents
 # of the Resources tree (which unless you used
 # --enable-canonical-installation-tree-structure is not much, far from
 # all of our non-code "resources").
 #
 # At this stage we also attach the entitlements in the sandboxing case
-#
-# Also omit some files from the Bundle's seal via the resource-rules
-# (bootstraprc and similar that the user might adjust and image files)
-# See also https://developer.apple.com/library/mac/technotes/tn2206/
 
 id=`echo ${MACOSX_APP_NAME} | tr ' ' '-'`
 
-codesign --force --verbose --identifier="${MACOSX_BUNDLE_IDENTIFIER}" $resource_rules --sign "$MACOSX_CODESIGNING_IDENTITY" $entitlements "$APP_BUNDLE"
+if test -n "$ENABLE_MACOSX_SANDBOX"; then
+    entitlements="--entitlements $BUILDDIR/lo.xcent"
+fi
+
+codesign --force --verbose --identifier="${MACOSX_BUNDLE_IDENTIFIER}.$id" --sign "$MACOSX_CODESIGNING_IDENTITY" $entitlements "$APP_BUNDLE" || exit 1
 
 exit 0
commit 5bfaeb57bc5553d4a26f239fa5e5399a7e70bf24
Author: Andras Timar <andras.timar at collabora.com>
Date:   Mon Nov 2 20:47:19 2015 +0100

    OS X: use own com.collaboraoffice identifier
    
    Change-Id: I0421b032a1da1692871673c550a42f35c75f6bdb
    (cherry picked from commit 7a7c03bbb5a78c7a25e9b4dae203ee4436c654f1)

diff --git a/distro-configs/CPOSX.conf b/distro-configs/CPOSX.conf
index bbb0154..060ddc9 100644
--- a/distro-configs/CPOSX.conf
+++ b/distro-configs/CPOSX.conf
@@ -16,4 +16,5 @@
 --without-system-postgresql
 --disable-gtk
 --with-package-format=dmg
+--with-macosx-bundle-identifier=com.collaboraoffice
 --with-lang=ar as ast bg bn-IN br ca ca-valencia cy cs da de el en-US en-GB es et eu fi fr ga gd gl gu he hi hr hu id is it ja km kn ko lt lv ml mr nb nl nn oc or pa-IN pl pt pt-BR ro ru sk sl sr sr-Latn sv ta te tr uk vi zh-CN zh-TW
commit f77614d2874cd09b66c9179003716d48e72f3bc1
Author: Andras Timar <andras.timar at collabora.com>
Date:   Sun Nov 1 22:14:50 2015 +0100

    Collabora Office OS X packaging
    
    - added EULA (sla.r) in special OS X resource fork format
    - added volume icon which does not work ATM, TODO later
    - new dmg background image and adjusted .DS_Store
    - fixes to tolerate space in app bundle name
    
    Change-Id: I3f341bfcd5bea88681e57b314f6069be107c5c2b
    (cherry picked from commit 26d77ceefcb59a95fff71c730d798d6b59021fc0)

diff --git a/scp2/source/ooo/scpaction_ooo.scp b/scp2/source/ooo/scpaction_ooo.scp
index d5f1ba2..8f5c9a3 100644
--- a/scp2/source/ooo/scpaction_ooo.scp
+++ b/scp2/source/ooo/scpaction_ooo.scp
@@ -68,6 +68,13 @@ ScpAction scp_Copy_Dmg_Background_Image
     Subdir = ".background";
 End
 
+ScpAction scp_Copy_Dmg_Volume_Icon
+    Copy = "VolumeIcon.icns";
+    Name = ".VolumeIcon.icns";
+    UnixRights = 444;
+    Styles = ();
+End
+
 ScpAction scp_Copy_Ds_Store
     Copy = "DS_Store";
     DevVersionCopy = "DS_Store_Dev";
diff --git a/setup_native/source/packinfo/DS_Store b/setup_native/source/packinfo/DS_Store
index fec0edc..7c875f7 100644
Binary files a/setup_native/source/packinfo/DS_Store and b/setup_native/source/packinfo/DS_Store differ
diff --git a/setup_native/source/packinfo/VolumeIcon.icns b/setup_native/source/packinfo/VolumeIcon.icns
new file mode 100644
index 0000000..1c7cef6
Binary files /dev/null and b/setup_native/source/packinfo/VolumeIcon.icns differ
diff --git a/setup_native/source/packinfo/osxdndinstall.png b/setup_native/source/packinfo/osxdndinstall.png
index af22449..cd25912 100644
Binary files a/setup_native/source/packinfo/osxdndinstall.png and b/setup_native/source/packinfo/osxdndinstall.png differ
diff --git a/setup_native/source/packinfo/sla.r b/setup_native/source/packinfo/sla.r
new file mode 100644
index 0000000..6cf55e5
--- /dev/null
+++ b/setup_native/source/packinfo/sla.r
@@ -0,0 +1,1428 @@
+data 'TMPL' (128, "LPic") {
+	$"1344 6566 6175 6C74 204C 616E 6775 6167"            /* .Default Languag */
+	$"6520 4944 4457 5244 0543 6F75 6E74 4F43"            /* e IDDWRD.CountOC */
+	$"4E54 042A 2A2A 2A4C 5354 430B 7379 7320"            /* NT.****LSTC.sys  */
+	$"6C61 6E67 2049 4444 5752 441E 6C6F 6361"            /* lang IDDWRD.loca */
+	$"6C20 7265 7320 4944 2028 6F66 6673 6574"            /* l res ID (offset */
+	$"2066 726F 6D20 3530 3030 4457 5244 1032"            /*  from 5000DWRD.2 */
+	$"2D62 7974 6520 6C61 6E67 7561 6765 3F44"            /* -byte language?D */
+	$"5752 4404 2A2A 2A2A 4C53 5445"                      /* WRD.****LSTE */
+};
+
+data 'STR#' (5000, "English buttons") {
+	$"0006 0D45 6E67 6C69 7368 2074 6573 7431"            /* ...English test1 */
+	$"0541 6772 6565 0844 6973 6167 7265 6505"            /* .Agree.Disagree. */
+	$"5072 696E 7407 5361 7665 2E2E 2E7A 4966"            /* Print.Save...zIf */
+	$"2079 6F75 2061 6772 6565 2077 6974 6820"            /*  you agree with  */
+	$"7468 6520 7465 726D 7320 6F66 2074 6869"            /* the terms of thi */
+	$"7320 6C69 6365 6E73 652C 2063 6C69 636B"            /* s license, click */
+	$"2022 4167 7265 6522 2074 6F20 6163 6365"            /*  "Agree" to acce */
+	$"7373 2074 6865 2073 6F66 7477 6172 652E"            /* ss the software. */
+	$"2020 4966 2079 6F75 2064 6F20 6E6F 7420"            /*   If you do not  */
+	$"6167 7265 652C 2070 7265 7373 2022 4469"            /* agree, press "Di */
+	$"7361 6772 6565 2E22"                                /* sagree." */
+};
+
+data 'STR#' (5001, "German") {
+	$"0006 0744 6575 7473 6368 0B41 6B7A 6570"            /* ...Deutsch.Akzep */
+	$"7469 6572 656E 0841 626C 6568 6E65 6E07"            /* tieren.Ablehnen. */
+	$"4472 7563 6B65 6E0A 5369 6368 6572 6E2E"            /* DruckenÂSichern. */
+	$"2E2E E74B 6C69 636B 656E 2053 6965 2069"            /* ..çKlicken Sie i */
+	$"6E20 D241 6B7A 6570 7469 6572 656E D32C"            /* n ÒAkzeptierenÓ, */
+	$"2077 656E 6E20 5369 6520 6D69 7420 6465"            /*  wenn Sie mit de */
+	$"6E20 4265 7374 696D 6D75 6E67 656E 2064"            /* n Bestimmungen d */
+	$"6573 2053 6F66 7477 6172 652D 4C69 7A65"            /* es Software-Lize */
+	$"6E7A 7665 7274 7261 6773 2065 696E 7665"            /* nzvertrags einve */
+	$"7273 7461 6E64 656E 2073 696E 642E 2046"            /* rstanden sind. F */
+	$"616C 6C73 206E 6963 6874 2C20 6269 7474"            /* alls nicht, bitt */
+	$"6520 D241 626C 6568 6E65 6ED3 2061 6E6B"            /* e ÒAblehnenÓ ank */
+	$"6C69 636B 656E 2E20 5369 6520 6B9A 6E6E"            /* licken. Sie kšnn */
+	$"656E 2064 6965 2053 6F66 7477 6172 6520"            /* en die Software  */
+	$"6E75 7220 696E 7374 616C 6C69 6572 656E"            /* nur installieren */
+	$"2C20 7765 6E6E 2053 6965 20D2 416B 7A65"            /* , wenn Sie ÒAkze */
+	$"7074 6965 7265 6ED3 2061 6E67 656B 6C69"            /* ptierenÓ angekli */
+	$"636B 7420 6861 6265 6E2E"                           /* ckt haben. */
+};
+
+data 'STR#' (5002, "English") {
+	$"0006 0745 6E67 6C69 7368 0541 6772 6565"            /* ...English.Agree */
+	$"0844 6973 6167 7265 6505 5072 696E 7407"            /* .Disagree.Print. */
+	$"5361 7665 2E2E 2E7B 4966 2079 6F75 2061"            /* Save...{If you a */
+	$"6772 6565 2077 6974 6820 7468 6520 7465"            /* gree with the te */
+	$"726D 7320 6F66 2074 6869 7320 6C69 6365"            /* rms of this lice */
+	$"6E73 652C 2070 7265 7373 2022 4167 7265"            /* nse, press "Agre */
+	$"6522 2074 6F20 696E 7374 616C 6C20 7468"            /* e" to install th */
+	$"6520 736F 6674 7761 7265 2E20 2049 6620"            /* e software.  If  */
+	$"796F 7520 646F 206E 6F74 2061 6772 6565"            /* you do not agree */
+	$"2C20 7072 6573 7320 2244 6973 6167 7265"            /* , press "Disagre */
+	$"6522 2E"                                            /* e". */
+};
+
+data 'STR#' (5003, "Spanish") {
+	$"0006 0745 7370 6196 6F6C 0741 6365 7074"            /* ...Espa–ol.Acept */
+	$"6172 0A4E 6F20 6163 6570 7461 7208 496D"            /* arÂNo aceptar.Im */
+	$"7072 696D 6972 0A47 7561 7264 6172 2E2E"            /* primirÂGuardar.. */
+	$"2EC0 5369 2065 7374 8720 6465 2061 6375"            /* .ÀSi est‡ de acu */
+	$"6572 646F 2063 6F6E 206C 6F73 2074 8E72"            /* erdo con los tŽr */
+	$"6D69 6E6F 7320 6465 2065 7374 6120 6C69"            /* minos de esta li */
+	$"6365 6E63 6961 2C20 7075 6C73 6520 2241"            /* cencia, pulse "A */
+	$"6365 7074 6172 2220 7061 7261 2069 6E73"            /* ceptar" para ins */
+	$"7461 6C61 7220 656C 2073 6F66 7477 6172"            /* talar el softwar */
+	$"652E 2045 6E20 656C 2073 7570 7565 7374"            /* e. En el supuest */
+	$"6F20 6465 2071 7565 206E 6F20 6573 748E"            /* o de que no estŽ */
+	$"2064 6520 6163 7565 7264 6F20 636F 6E20"            /*  de acuerdo con  */
+	$"6C6F 7320 748E 726D 696E 6F73 2064 6520"            /* los tŽrminos de  */
+	$"6573 7461 206C 6963 656E 6369 612C 2070"            /* esta licencia, p */
+	$"756C 7365 2022 4E6F 2061 6365 7074 6172"            /* ulse "No aceptar */
+	$"2E22"                                               /* ." */
+};
+
+data 'STR#' (5004, "French") {
+	$"0006 0846 7261 6E8D 6169 7308 4163 6365"            /* ...Franais.Acce */
+	$"7074 6572 0752 6566 7573 6572 0849 6D70"            /* pter.Refuser.Imp */
+	$"7269 6D65 720E 456E 7265 6769 7374 7265"            /* rimer.Enregistre */
+	$"722E 2E2E BA53 6920 766F 7573 2061 6363"            /* r...ºSi vous acc */
+	$"6570 7465 7A20 6C65 7320 7465 726D 6573"            /* eptez les termes */
+	$"2064 6520 6C61 2070 728E 7365 6E74 6520"            /*  de la prŽsente  */
+	$"6C69 6365 6E63 652C 2063 6C69 7175 657A"            /* licence, cliquez */
+	$"2073 7572 2022 4163 6365 7074 6572 2220"            /*  sur "Accepter"  */
+	$"6166 696E 2064 2769 6E73 7461 6C6C 6572"            /* afin d'installer */
+	$"206C 6520 6C6F 6769 6369 656C 2E20 5369"            /*  le logiciel. Si */
+	$"2076 6F75 7320 6E27 9074 6573 2070 6173"            /*  vous n'tes pas */
+	$"2064 2761 6363 6F72 6420 6176 6563 206C"            /*  d'accord avec l */
+	$"6573 2074 6572 6D65 7320 6465 206C 6120"            /* es termes de la  */
+	$"6C69 6365 6E63 652C 2063 6C69 7175 657A"            /* licence, cliquez */
+	$"2073 7572 2022 5265 6675 7365 7222 2E"              /*  sur "Refuser". */
+};
+
+data 'STR#' (5005, "Italian") {
+	$"0006 0849 7461 6C69 616E 6F07 4163 6365"            /* ...Italiano.Acce */
+	$"7474 6F07 5269 6669 7574 6F06 5374 616D"            /* tto.Rifiuto.Stam */
+	$"7061 0B52 6567 6973 7472 612E 2E2E 7F53"            /* pa.Registra....S */
+	$"6520 6163 6365 7474 6920 6C65 2063 6F6E"            /* e accetti le con */
+	$"6469 7A69 6F6E 6920 6469 2071 7565 7374"            /* dizioni di quest */
+	$"6120 6C69 6365 6E7A 612C 2066 6169 2063"            /* a licenza, fai c */
+	$"6C69 6320 7375 2022 4163 6365 7474 6F22"            /* lic su "Accetto" */
+	$"2070 6572 2069 6E73 7461 6C6C 6172 6520"            /*  per installare  */
+	$"696C 2073 6F66 7477 6172 652E 2041 6C74"            /* il software. Alt */
+	$"7269 6D65 6E74 6920 6661 6920 636C 6963"            /* rimenti fai clic */
+	$"2073 7520 2252 6966 6975 746F 222E"                 /*  su "Rifiuto". */
+};
+
+data 'STR#' (5006, "Japanese") {
+	$"0006 084A 6170 616E 6573 650A 93AF 88D3"            /* ...Japanese“¯ˆÓ */
+	$"82B5 82DC 82B7 0C93 AF88 D382 B582 DC82"            /* ‚µ‚Ü‚·.“¯ˆÓ‚µ‚Ü‚ */
+	$"B982 F108 88F3 8DFC 82B7 82E9 0795 DB91"            /* ¹‚ñ.ˆóü‚·‚é.•Û‘ */
+	$"B62E 2E2E B496 7B83 5C83 7483 6783 4583"            /* ¶...´–{ƒ\ƒtƒgƒEƒ */
+	$"4783 418E 6797 708B 9691 F88C 5F96 F182"            /* GƒAŽg—p‹–‘øŒ_–ñ‚ */
+	$"CC8F F08C 8F82 C993 AF88 D382 B382 EA82"            /* ÌðŒ‚É“¯ˆÓ‚³‚ê‚ */
+	$"E98F EA8D 8782 C982 CD81 4183 5C83 7483"            /* éê‡‚ɂ́Aƒ\ƒtƒ */
+	$"6783 4583 4783 4182 F083 4383 9383 5883"            /* gƒEƒGƒA‚ðƒCƒ“ƒXƒ */
+	$"6781 5B83 8B82 B782 E982 BD82 DF82 C981"            /* g[ƒ‹‚·‚邽‚߂Ɂ */
+	$"7593 AF88 D382 B582 DC82 B781 7682 F089"            /* u“¯ˆÓ‚µ‚Ü‚·v‚ð‰ */
+	$"9F82 B582 C482 AD82 BE82 B382 A281 4281"            /* Ÿ‚µ‚Ä‚­‚¾‚³‚¢B */
+	$"4093 AF88 D382 B382 EA82 C882 A28F EA8D"            /* @“¯ˆÓ‚³‚ê‚È‚¢ê */
+	$"8782 C982 CD81 4181 7593 AF88 D382 B582"            /* ‡‚ɂ́Au“¯ˆÓ‚µ‚ */
+	$"DC82 B982 F181 7682 F089 9F82 B582 C482"            /* Ü‚¹‚ñv‚ð‰Ÿ‚µ‚Ä‚ */
+	$"AD82 BE82 B382 A281 42"                             /* ­‚¾‚³‚¢B */
+};
+
+data 'STR#' (5007, "Dutch") {
+	$"0006 0A4E 6564 6572 6C61 6E64 7302 4A61"            /* ..ÂNederlands.Ja */
+	$"034E 6565 0550 7269 6E74 0942 6577 6161"            /* .Nee.PrintÆBewaa */
+	$"722E 2E2E A449 6E64 6965 6E20 7520 616B"            /* r...¤Indien u ak */
+	$"6B6F 6F72 6420 6761 6174 206D 6574 2064"            /* koord gaat met d */
+	$"6520 766F 6F72 7761 6172 6465 6E20 7661"            /* e voorwaarden va */
+	$"6E20 6465 7A65 206C 6963 656E 7469 652C"            /* n deze licentie, */
+	$"206B 756E 7420 7520 6F70 2027 4A61 2720"            /*  kunt u op 'Ja'  */
+	$"6B6C 696B 6B65 6E20 6F6D 2064 6520 7072"            /* klikken om de pr */
+	$"6F67 7261 6D6D 6174 7575 7220 7465 2069"            /* ogrammatuur te i */
+	$"6E73 7461 6C6C 6572 656E 2E20 496E 6469"            /* nstalleren. Indi */
+	$"656E 2075 206E 6965 7420 616B 6B6F 6F72"            /* en u niet akkoor */
+	$"6420 6761 6174 2C20 6B6C 696B 7420 7520"            /* d gaat, klikt u  */
+	$"6F70 2027 4E65 6527 2E"                             /* op 'Nee'. */
+};
+
+data 'STR#' (5008, "Swedish") {
+	$"0006 0653 7665 6E73 6B08 476F 646B 8A6E"            /* ...Svensk.GodkŠn */
+	$"6E73 0641 7662 9A6A 7308 536B 7269 7620"            /* ns.Avbšjs.Skriv  */
+	$"7574 0853 7061 7261 2E2E 2E93 4F6D 2044"            /* ut.Spara...“Om D */
+	$"7520 676F 646B 8A6E 6E65 7220 6C69 6365"            /* u godkŠnner lice */
+	$"6E73 7669 6C6C 6B6F 7265 6E20 6B6C 6963"            /* nsvillkoren klic */
+	$"6B61 2070 8C20 2247 6F64 6B8A 6E6E 7322"            /* ka pŒ "GodkŠnns" */
+	$"2066 9A72 2061 7474 2069 6E73 7461 6C6C"            /*  fšr att install */
+	$"6572 6120 7072 6F67 7261 6D70 726F 6475"            /* era programprodu */
+	$"6B74 656E 2E20 4F6D 2044 7520 696E 7465"            /* kten. Om Du inte */
+	$"2067 6F64 6B8A 6E6E 6572 206C 6963 656E"            /*  godkŠnner licen */
+	$"7376 696C 6C6B 6F72 656E 2C20 6B6C 6963"            /* svillkoren, klic */
+	$"6B61 2070 8C20 2241 7662 9A6A 7322 2E"              /* ka pŒ "Avbšjs". */
+};
+
+data 'STR#' (5009, "Brazilian Portuguese") {
+	$"0006 1150 6F72 7475 6775 9073 2C20 4272"            /* ...Portugus, Br */
+	$"6173 696C 0943 6F6E 636F 7264 6172 0944"            /* asilÆConcordarÆD */
+	$"6973 636F 7264 6172 0849 6D70 7269 6D69"            /* iscordar.Imprimi */
+	$"7209 5361 6C76 6172 2E2E 2E8C 5365 2065"            /* rÆSalvar...ŒSe e */
+	$"7374 8720 6465 2061 636F 7264 6F20 636F"            /* st‡ de acordo co */
+	$"6D20 6F73 2074 6572 6D6F 7320 6465 7374"            /* m os termos dest */
+	$"6120 6C69 6365 6E8D 612C 2070 7265 7373"            /* a licena, press */
+	$"696F 6E65 2022 436F 6E63 6F72 6461 7222"            /* ione "Concordar" */
+	$"2070 6172 6120 696E 7374 616C 6172 206F"            /*  para instalar o */
+	$"2073 6F66 7477 6172 652E 2053 6520 6E8B"            /*  software. Se n‹ */
+	$"6F20 6573 7487 2064 6520 6163 6F72 646F"            /* o est‡ de acordo */
+	$"2C20 7072 6573 7369 6F6E 6520 2244 6973"            /* , pressione "Dis */
+	$"636F 7264 6172 222E"                                /* cordar". */
+};
+
+data 'STR#' (5010, "Simplified Chinese") {
+	$"0006 1253 696D 706C 6966 6965 6420 4368"            /* ...Simplified Ch */
+	$"696E 6573 6504 CDAC D2E2 06B2 BBCD ACD2"            /* inese.ͬÒâ.²»Í¬Ò */
+	$"E204 B4F2 D3A1 06B4 E6B4 A2A1 AD54 C8E7"            /* â.´òÓ¡.´æ´¢¡­TÈç */
+	$"B9FB C4FA CDAC D2E2 B1BE D0ED BFC9 D0AD"            /* ¹ûÄúͬÒâ±¾Ðí¿ÉЭ */
+	$"D2E9 B5C4 CCF5 BFEE A3AC C7EB B0B4 A1B0"            /* ÒéµÄÌõ¿î£¬Çë°´¡° */
+	$"CDAC D2E2 A1B1 C0B4 B0B2 D7B0 B4CB C8ED"            /* ͬÒ⡱À´°²×°´ËÈí */
+	$"BCFE A1A3 C8E7 B9FB C4FA B2BB CDAC D2E2"            /* ¼þ¡£Èç¹ûÄú²»Í¬Òâ */
+	$"A3AC C7EB B0B4 A1B0 B2BB CDAC D2E2 A1B1"            /* £¬Çë°´¡°²»Í¬Ò⡱ */
+	$"A1A3"                                               /* ¡£ */
+};
+
+data 'STR#' (5011, "Traditional Chinese") {
+	$"0006 1354 7261 6469 7469 6F6E 616C 2043"            /* ...Traditional C */
+	$"6869 6E65 7365 04A6 50B7 4E06 A4A3 A650"            /* hinese.¦P·N.¤£¦P */
+	$"B74E 04A6 43A6 4C06 C078 A673 A14B 50A6"            /* ·N.¦C¦L.Àx¦s¡KP¦ */
+	$"70AA 47B1 7AA6 50B7 4EA5 BBB3 5CA5 69C3"            /* pªG±z¦P·N¥»³\¥ià */
+	$"D2B8 CCAA BAB1 F8B4 DAA1 41BD D0AB F6A1"            /* Ҹ̪º±ø´Ú¡A½Ð«ö¡ */
+	$"A7A6 50B7 4EA1 A8A5 48A6 77B8 CBB3 6EC5"            /* §¦P·N¡¨¥H¦w¸Ë³nÅ */
+	$"E9A1 43A6 70AA 47A4 A3A6 50B7 4EA1 41BD"            /* é¡C¦pªG¤£¦P·N¡A½ */
+	$"D0AB F6A1 A7A4 A3A6 50B7 4EA1 A8A1 43"              /* Ыö¡§¤£¦P·N¡¨¡C */
+};
+
+data 'STR#' (5012, "Danish") {
+	$"0006 0544 616E 736B 0445 6E69 6705 5565"            /* ...Dansk.Enig.Ue */
+	$"6E69 6707 5564 736B 7269 760A 4172 6B69"            /* nig.UdskrivÂArki */
+	$"7665 722E 2E2E 9848 7669 7320 6475 2061"            /* ver...˜Hvis du a */
+	$"6363 6570 7465 7265 7220 6265 7469 6E67"            /* ccepterer beting */
+	$"656C 7365 726E 6520 6920 6C69 6365 6E73"            /* elserne i licens */
+	$"6166 7461 6C65 6E2C 2073 6B61 6C20 6475"            /* aftalen, skal du */
+	$"206B 6C69 6B6B 6520 708C 20D2 456E 6967"            /*  klikke pŒ ÒEnig */
+	$"D320 666F 7220 6174 2069 6E73 7461 6C6C"            /* Ó for at install */
+	$"6572 6520 736F 6674 7761 7265 6E2E 204B"            /* ere softwaren. K */
+	$"6C69 6B20 708C 20D2 5565 6E69 67D3 2066"            /* lik pŒ ÒUenigÓ f */
+	$"6F72 2061 7420 616E 6E75 6C6C 6572 6520"            /* or at annullere  */
+	$"696E 7374 616C 6C65 7269 6E67 656E 2E"              /* installeringen. */
+};
+
+data 'STR#' (5013, "Finnish") {
+	$"0006 0553 756F 6D69 0848 7976 8A6B 7379"            /* ...Suomi.HyvŠksy */
+	$"6E0A 456E 2068 7976 8A6B 7379 0754 756C"            /* nÂEn hyvŠksy.Tul */
+	$"6F73 7461 0954 616C 6C65 6E6E 61C9 6F48"            /* ostaÆTallennaÉoH */
+	$"7976 8A6B 7379 206C 6973 656E 7373 6973"            /* yvŠksy lisenssis */
+	$"6F70 696D 756B 7365 6E20 6568 646F 7420"            /* opimuksen ehdot  */
+	$"6F73 6F69 7474 616D 616C 6C61 20D5 4879"            /* osoittamalla ÕHy */
+	$"768A 6B73 79D5 2E20 4A6F 7320 6574 2068"            /* vŠksyÕ. Jos et h */
+	$"7976 8A6B 7379 2073 6F70 696D 756B 7365"            /* yvŠksy sopimukse */
+	$"6E20 6568 746F 6A61 2C20 6F73 6F69 7461"            /* n ehtoja, osoita */
+	$"20D5 456E 2068 7976 8A6B 7379 D52E"                 /*  ÕEn hyvŠksyÕ. */
+};
+
+data 'STR#' (5014, "French Canadian") {
+	$"0006 1146 7261 6E8D 6169 7320 6361 6E61"            /* ...Franais cana */
+	$"6469 656E 0841 6363 6570 7465 7207 5265"            /* dien.Accepter.Re */
+	$"6675 7365 7208 496D 7072 696D 6572 0E45"            /* fuser.Imprimer.E */
+	$"6E72 6567 6973 7472 6572 2E2E 2EBA 5369"            /* nregistrer...ºSi */
+	$"2076 6F75 7320 6163 6365 7074 657A 206C"            /*  vous acceptez l */
+	$"6573 2074 6572 6D65 7320 6465 206C 6120"            /* es termes de la  */
+	$"7072 8E73 656E 7465 206C 6963 656E 6365"            /* prŽsente licence */
+	$"2C20 636C 6971 7565 7A20 7375 7220 2241"            /* , cliquez sur "A */
+	$"6363 6570 7465 7222 2061 6669 6E20 6427"            /* ccepter" afin d' */
+	$"696E 7374 616C 6C65 7220 6C65 206C 6F67"            /* installer le log */
+	$"6963 6965 6C2E 2053 6920 766F 7573 206E"            /* iciel. Si vous n */
+	$"2790 7465 7320 7061 7320 6427 6163 636F"            /* 'tes pas d'acco */
+	$"7264 2061 7665 6320 6C65 7320 7465 726D"            /* rd avec les term */
+	$"6573 2064 6520 6C61 206C 6963 656E 6365"            /* es de la licence */
+	$"2C20 636C 6971 7565 7A20 7375 7220 2252"            /* , cliquez sur "R */
+	$"6566 7573 6572 222E"                                /* efuser". */
+};
+
+data 'STR#' (5015, "Korean") {
+	$"0006 064B 6F72 6561 6E04 B5BF C0C7 09B5"            /* ...Korean.µ¿ÀÇƵ */
+	$"BFC0 C720 BEC8 C7D4 06C7 C1B8 B0C6 AE07"            /* ¿ÀÇ ¾ÈÇÔ.ÇÁ¸°Æ®. */
+	$"C0FA C0E5 2E2E 2E7E BBE7 BFEB 20B0 E8BE"            /* ÀúÀå...~»ç¿ë °è¾ */
+	$"E0BC ADC0 C720 B3BB BFEB BFA1 20B5 BFC0"            /* ༭ÀÇ ³»¿ë¿¡ µ¿À */
+	$"C7C7 CFB8 E92C 2022 B5BF C0C7 2220 B4DC"            /* ÇÇϸé, "µ¿ÀÇ" ´Ü */
+	$"C3DF B8A6 20B4 ADB7 AF20 BCD2 C7C1 C6AE"            /* Ã߸¦ ´­·¯ ¼ÒÇÁÆ® */
+	$"BFFE BEEE B8A6 20BC B3C4 A1C7 CFBD CABD"            /* ¿þ¾î¸¦ ¼³Ä¡ÇϽʽ */
+	$"C3BF C02E 20B5 BFC0 C7C7 CFC1 F620 BECA"            /* ÿÀ. µ¿ÀÇÇÏÁö ¾Ê */
+	$"B4C2 B4D9 B8E9 2C20 22B5 BFC0 C720 BEC8"            /* ´Â´Ù¸é, "µ¿ÀÇ ¾È */
+	$"C7D4 2220 B4DC C3DF B8A6 20B4 A9B8 A3BD"            /* ÇÔ" ´ÜÃ߸¦ ´©¸£½ */
+	$"CABD C3BF C02E"                                     /* ʽÿÀ. */
+};
+
+data 'STR#' (5016, "Norwegian") {
+	$"0006 054E 6F72 736B 0445 6E69 6709 496B"            /* ...Norsk.EnigÆIk */
+	$"6B65 2065 6E69 6708 536B 7269 7620 7574"            /* ke enig.Skriv ut */
+	$"0A41 726B 6976 6572 2E2E 2EA3 4876 6973"            /* ÂArkiver...£Hvis */
+	$"2044 6520 6572 2065 6E69 6720 6920 6265"            /*  De er enig i be */
+	$"7374 656D 6D65 6C73 656E 6520 6920 6465"            /* stemmelsene i de */
+	$"6E6E 6520 6C69 7365 6E73 6176 7461 6C65"            /* nne lisensavtale */
+	$"6E2C 206B 6C69 6B6B 6572 2044 6520 708C"            /* n, klikker De pΠ*/
+	$"2022 456E 6967 222D 6B6E 6170 7065 6E20"            /*  "Enig"-knappen  */
+	$"666F 7220 8C20 696E 7374 616C 6C65 7265"            /* for Πinstallere */
+	$"2070 726F 6772 616D 7661 7265 6E2E 2048"            /*  programvaren. H */
+	$"7669 7320 4465 2069 6B6B 6520 6572 2065"            /* vis De ikke er e */
+	$"6E69 672C 206B 6C69 6B6B 6572 2044 6520"            /* nig, klikker De  */
+	$"708C 2022 496B 6B65 2065 6E69 6722 2E"              /* pΠ"Ikke enig". */
+};
+
+data 'TEXT' (5000) {
+    $"456E 6420 5573 6572 204C 6963 656E 7365"            /* End User License */
+    $"2061 6E64 2053 7562 7363 7269 7074 696F"            /*  and Subscriptio */
+    $"6E20 4167 7265 656D 656E 740D 436F 6C6C"            /* n Agreement.Coll */
+    $"6162 6F72 6120 4F66 6669 6365 2028 D253"            /* abora Office (ÒS */
+    $"6F66 7477 6172 65D3 290D 0D0D 416E 2069"            /* oftwareÓ)...An i */
+    $"6E64 6976 6964 7561 6C20 6163 7469 6E67"            /* ndividual acting */
+    $"206F 6E20 7468 6569 7220 6F77 6E20 6265"            /*  on their own be */
+    $"6861 6C66 206F 7220 6F6E 2062 6568 616C"            /* half or on behal */
+    $"6620 6F66 2061 6E79 2063 6F72 706F 7261"            /* f of any corpora */
+    $"7465 2065 6E74 6974 7920 7768 6963 6820"            /* te entity which  */
+    $"656D 706C 6F79 7320 7468 656D 206F 7220"            /* employs them or  */
+    $"7768 6963 6820 7468 6579 2072 6570 7265"            /* which they repre */
+    $"7365 6E74 2028 D261 6E20 4F72 6761 6E69"            /* sent (Òan Organi */
+    $"7361 7469 6F6E D329 2072 6570 7265 7365"            /* sationÓ) represe */
+    $"6E74 7320 7468 6174 2068 6520 6F72 2073"            /* nts that he or s */
+    $"6865 2068 6173 2074 6865 2061 7574 686F"            /* he has the autho */
+    $"7269 7479 2074 6F20 656E 7465 7220 696E"            /* rity to enter in */
+    $"746F 2074 6869 7320 6167 7265 656D 656E"            /* to this agreemen */
+    $"7420 6F6E 2062 6568 616C 6620 6F66 2074"            /* t on behalf of t */
+    $"6861 7420 4F72 6761 6E69 7361 7469 6F6E"            /* hat Organisation */
+    $"2E20 496E 2074 6869 7320 4C69 6365 6E63"            /* . In this Licenc */
+    $"6520 4167 7265 656D 656E 742C 20D2 596F"            /* e Agreement, ÒYo */
+    $"75D3 2069 6E63 6C75 6465 7320 626F 7468"            /* uÓ includes both */
+    $"2074 6865 2072 6561 6465 7220 616E 6420"            /*  the reader and  */
+    $"616E 7920 4F72 6761 6E69 7361 7469 6F6E"            /* any Organisation */
+    $"2E0D 0D50 4C45 4153 4520 5245 4144 2054"            /* ...PLEASE READ T */
+    $"4849 5320 4147 5245 454D 454E 5420 4341"            /* HIS AGREEMENT CA */
+    $"5245 4655 4C4C 592E 2042 5920 5055 5243"            /* REFULLY. BY PURC */
+    $"4841 5349 4E47 2C20 494E 5354 414C 4C49"            /* HASING, INSTALLI */
+    $"4E47 2041 4E44 2F4F 5220 5553 494E 4720"            /* NG AND/OR USING  */
+    $"5448 4520 434F 4C4C 4142 4F52 4120 4F46"            /* THE COLLABORA OF */
+    $"4649 4345 2053 4F46 5457 4152 4520 2849"            /* FICE SOFTWARE (I */
+    $"4E43 4C55 4449 4E47 2049 5453 2043 4F4D"            /* NCLUDING ITS COM */
+    $"504F 4E45 4E54 5329 2C20 594F 5520 4147"            /* PONENTS), YOU AG */
+    $"5245 4520 544F 2054 4845 2054 4552 4D53"            /* REE TO THE TERMS */
+    $"204F 4620 5448 4953 204C 4943 454E 4345"            /*  OF THIS LICENCE */
+    $"2041 4E44 2053 5542 5343 5249 5054 494F"            /*  AND SUBSCRIPTIO */
+    $"4E20 4147 5245 454D 454E 5420 414E 4420"            /* N AGREEMENT AND  */
+    $"4143 4B4E 4F57 4C45 4447 4520 5448 4154"            /* ACKNOWLEDGE THAT */
+    $"2059 4F55 2048 4156 4520 5245 4144 2041"            /*  YOU HAVE READ A */
+    $"4E44 2055 4E44 4552 5354 414E 4420 5448"            /* ND UNDERSTAND TH */
+    $"4953 2041 4752 4545 4D45 4E54 2E20 0D0D"            /* IS AGREEMENT. .. */
+    $"4946 2059 4F55 2044 4F20 4E4F 5420 4147"            /* IF YOU DO NOT AG */
+    $"5245 4520 5749 5448 2054 4845 5345 2054"            /* REE WITH THESE T */
+    $"4552 4D53 2050 4C45 4153 4520 444F 204E"            /* ERMS PLEASE DO N */
+    $"4F54 2044 4F57 4E4C 4F41 442C 2049 4E53"            /* OT DOWNLOAD, INS */
+    $"5441 4C4C 204F 5220 5553 4520 5448 4520"            /* TALL OR USE THE  */
+    $"534F 4654 5741 5245 204F 5220 5355 4253"            /* SOFTWARE OR SUBS */
+    $"4352 4950 5449 4F4E 2053 4552 5649 4345"            /* CRIPTION SERVICE */
+    $"532E 200D 0D50 4152 5449 4553 2E20 5468"            /* S. ..PARTIES. Th */
+    $"6973 2073 6F66 7477 6172 6520 6C69 6365"            /* is software lice */
+    $"6E63 6520 616E 6420 7375 6273 6372 6970"            /* nce and subscrip */
+    $"7469 6F6E 2061 6772 6565 6D65 6E74 2028"            /* tion agreement ( */
+    $"D241 6772 6565 6D65 6E74 D329 2069 7320"            /* ÒAgreementÓ) is  */
+    $"6120 6C65 6761 6C6C 7920 6269 6E64 696E"            /* a legally bindin */
+    $"6720 6167 7265 656D 656E 7420 6265 7477"            /* g agreement betw */
+    $"6565 6E20 596F 7520 616E 6420 436F 6C6C"            /* een You and Coll */
+    $"6162 6F72 6120 5072 6F64 7563 7469 7669"            /* abora Productivi */
+    $"7479 204C 696D 6974 6564 2C20 696E 636F"            /* ty Limited, inco */
+    $"7270 6F72 6174 6564 2061 6E64 2072 6567"            /* rporated and reg */
+    $"6973 7465 7265 6420 696E 2045 6E67 6C61"            /* istered in Engla */
+    $"6E64 2061 6E64 2057 616C 6573 2077 6974"            /* nd and Wales wit */
+    $"6820 636F 6D70 616E 7920 6E75 6D62 6572"            /* h company number */
+    $"2030 3836 3434 3933 3120 7768 6F73 6520"            /*  08644931 whose  */
+    $"7265 6769 7374 6572 6564 206F 6666 6963"            /* registered offic */
+    $"6520 6973 2061 7420 4B65 7474 2048 6F75"            /* e is at Kett Hou */
+    $"7365 2C20 5374 6174 696F 6E20 526F 6164"            /* se, Station Road */
+    $"2C20 4361 6D62 7269 6467 652C 2043 4231"            /* , Cambridge, CB1 */
+    $"2032 4A48 2C20 556E 6974 6564 204B 696E"            /*  2JH, United Kin */
+    $"6764 6F6D 2028 D243 6F6C 6C61 626F 7261"            /* gdom (ÒCollabora */
+    $"D329 2061 6E64 2077 6865 7265 2061 7070"            /* Ó) and where app */
+    $"6C69 6361 626C 6520 7265 6665 7265 6E63"            /* licable referenc */
+    $"6573 2074 6F20 436F 6C6C 6162 6F72 6120"            /* es to Collabora  */
+    $"7368 616C 6C20 616C 736F 2072 6566 6572"            /* shall also refer */
+    $"2074 6F20 6974 7320 6175 7468 6F72 6973"            /*  to its authoris */
+    $"6564 2072 6573 656C 6C65 7273 2061 6E64"            /* ed resellers and */
+    $"2074 6869 7264 2070 6172 7479 2064 6973"            /*  third party dis */
+    $"7472 6962 7574 6F72 7320 6672 6F6D 2074"            /* tributors from t */
+    $"696D 6520 746F 2074 696D 652E 200D 0D53"            /* ime to time. ..S */
+    $"4F46 5457 4152 452E 2054 6865 2053 6F66"            /* OFTWARE. The Sof */
+    $"7477 6172 6520 616E 6420 6561 6368 206F"            /* tware and each o */
+    $"6620 6974 7320 636F 6D70 6F6E 656E 7473"            /* f its components */
+    $"2061 7265 206F 776E 6564 2062 7920 436F"            /*  are owned by Co */
+    $"6C6C 6162 6F72 6120 6F72 206F 7468 6572"            /* llabora or other */
+    $"206C 6963 656E 736F 7273 2061 6E64 2061"            /*  licensors and a */
+    $"7265 2070 726F 7465 6374 6564 2061 7320"            /* re protected as  */
+    $"636F 7079 7269 6768 7465 6420 776F 726B"            /* copyrighted work */
+    $"7320 6F66 2061 7574 686F 7273 6869 702C"            /* s of authorship, */
+    $"2061 6E64 2061 7265 2061 6C73 6F20 7072"            /*  and are also pr */
+    $"6F74 6563 7465 6420 756E 6465 7220 6170"            /* otected under ap */
+    $"706C 6963 6162 6C65 2064 6174 6162 6173"            /* plicable databas */
+    $"6520 616E 6420 6F74 6865 7220 6170 706C"            /* e and other appl */
+    $"6963 6162 6C65 206C 6177 732E 2054 6F20"            /* icable laws. To  */
+    $"7468 6520 6578 7465 6E74 2074 6861 7420"            /* the extent that  */
+    $"7468 6579 2061 7265 206E 6F74 2061 6363"            /* they are not acc */
+    $"6F6D 7061 6E69 6564 2062 7920 6120 7365"            /* ompanied by a se */
+    $"7061 7261 7465 2043 6F6C 6C61 626F 7261"            /* parate Collabora */
+    $"2073 6F66 7477 6172 6520 6C69 6365 6E63"            /*  software licenc */
+    $"6520 6167 7265 656D 656E 742C 2061 6E79"            /* e agreement, any */
+    $"206D 6F64 6966 6963 6174 696F 6E2C 2075"            /*  modification, u */
+    $"7064 6174 6520 6F72 2075 7067 7261 6465"            /* pdate or upgrade */
+    $"2074 6F20 7468 6520 536F 6674 7761 7265"            /*  to the Software */
+    $"2074 6861 7420 596F 7520 6D61 7920 646F"            /*  that You may do */
+    $"776E 6C6F 6164 206F 7220 7265 6365 6976"            /* wnload or receiv */
+    $"652C 2077 6865 7468 6572 2061 7320 5375"            /* e, whether as Su */
+    $"6273 6372 6970 7469 6F6E 2053 6572 7669"            /* bscription Servi */
+    $"6365 7320 6465 7461 696C 6564 2062 656C"            /* ces detailed bel */
+    $"6F77 206F 7220 6F74 6865 7277 6973 652C"            /* ow or otherwise, */
+    $"2069 7320 696E 636C 7564 6564 2061 7320"            /*  is included as  */
+    $"536F 6674 7761 7265 2061 6E64 2067 6F76"            /* Software and gov */
+    $"6572 6E65 6420 6279 2074 6865 20D2 4C69"            /* erned by the ÒLi */
+    $"6365 6E73 6573 D320 6865 6164 696E 6720"            /* censesÓ heading  */
+    $"6265 6C6F 7720 616E 6420 6765 6E65 7261"            /* below and genera */
+    $"6C6C 7920 6279 2074 6869 7320 4167 7265"            /* lly by this Agre */
+    $"656D 656E 742E 0D0D 4C49 4345 4E43 4553"            /* ement...LICENCES */
+    $"2E20 5072 6F76 6964 6564 2074 6861 7420"            /* . Provided that  */
+    $"596F 7520 6861 7665 2073 7562 7363 7269"            /* You have subscri */
+    $"6265 6420 746F 2074 6865 2053 7562 7363"            /* bed to the Subsc */
+    $"7269 7074 696F 6E20 5365 7276 6963 6573"            /* ription Services */
+    $"2061 7320 6465 7461 696C 6564 2062 656C"            /*  as detailed bel */
+    $"6F77 2061 6E64 2059 6F75 7220 636F 6D70"            /* ow and Your comp */
+    $"6C69 616E 6365 2077 6974 6820 7468 6520"            /* liance with the  */
+    $"6F74 6865 7220 7465 726D 7320 616E 6420"            /* other terms and  */
+    $"636F 6E64 6974 696F 6E73 206F 6620 7468"            /* conditions of th */
+    $"6973 2041 6772 6565 6D65 6E74 2C20 436F"            /* is Agreement, Co */
+    $"6C6C 6162 6F72 6120 6772 616E 7473 2074"            /* llabora grants t */
+    $"6F20 596F 7520 6120 7065 7270 6574 7561"            /* o You a perpetua */
+    $"6C2C 206E 6F6E 2D74 7261 6E73 6665 7261"            /* l, non-transfera */
+    $"626C 652C 2077 6F72 6C64 7769 6465 206C"            /* ble, worldwide l */
+    $"6963 656E 6365 2028 D24C 6963 656E 6365"            /* icence (ÒLicence */
+    $"D329 2074 6F20 7265 7072 6F64 7563 6520"            /* Ó) to reproduce  */
+    $"616E 6420 7573 6520 636F 7069 6573 206F"            /* and use copies o */
+    $"6620 7468 6520 536F 6674 7761 7265 2077"            /* f the Software w */
+    $"6974 6869 6E20 596F 7572 204F 7267 616E"            /* ithin Your Organ */
+    $"697A 6174 696F 6E2E 2054 6865 2053 6F66"            /* ization. The Sof */
+    $"7477 6172 6520 6973 206C 6963 656E 7365"            /* tware is license */
+    $"6420 286E 6F74 2073 6F6C 6429 2074 6F20"            /* d (not sold) to  */
+    $"596F 752E 2041 6363 6F72 6469 6E67 6C79"            /* You. Accordingly */
+    $"206E 6F20 7469 746C 6520 746F 206F 7220"            /*  no title to or  */
+    $"6F77 6E65 7273 6869 7020 6F66 2074 6865"            /* ownership of the */
+    $"2053 6F66 7477 6172 6520 6973 2074 7261"            /*  Software is tra */
+    $"6E73 6665 7272 6564 2074 6F20 596F 752E"            /* nsferred to You. */
+    $"2059 6F75 2073 686F 756C 6420 616C 736F"            /*  You should also */
+    $"2062 6520 6177 6172 6520 7468 6174 2069"            /*  be aware that i */
+    $"6E20 6164 6469 7469 6F6E 2074 6F20 7468"            /* n addition to th */
+    $"6973 2067 7261 6E74 206F 6620 4C69 6365"            /* is grant of Lice */
+    $"6E63 652C 206D 616E 7920 6F66 2074 6865"            /* nce, many of the */
+    $"2069 6E64 6976 6964 7561 6C20 636F 6D70"            /*  individual comp */
+    $"6F6E 656E 7473 206F 6620 7468 6520 536F"            /* onents of the So */
+    $"6674 7761 7265 2061 7265 2073 7562 6A65"            /* ftware are subje */
+    $"6374 2074 6F20 6F70 656E 2073 6F75 7263"            /* ct to open sourc */
+    $"6520 6C69 6365 6E63 6573 2C20 6173 2064"            /* e licences, as d */
+    $"6574 6169 6C65 6420 6675 7274 6865 7220"            /* etailed further  */
+    $"6265 6C6F 7720 756E 6465 7220 D24F 7065"            /* below under ÒOpe */
+    $"6E20 536F 7572 6365 204C 6963 656E 6365"            /* n Source Licence */
+    $"7320 616E 6420 4C69 6D69 7461 7469 6F6E"            /* s and Limitation */
+    $"73D3 2E0D 0D53 5542 5343 5249 5054 494F"            /* sÓ...SUBSCRIPTIO */
+    $"4E20 5345 5256 4943 4553 2E20 5468 6520"            /* N SERVICES. The  */
+    $"4C69 6365 6E63 6520 746F 2072 6570 726F"            /* Licence to repro */
+    $"6475 6365 2061 6E64 2075 7365 2061 2063"            /* duce and use a c */
+    $"6F70 7920 6F66 2074 6865 2053 6F66 7477"            /* opy of the Softw */
+    $"6172 6520 6973 2067 7261 6E74 6564 2073"            /* are is granted s */
+    $"7562 6A65 6374 2074 6F20 7468 6520 696E"            /* ubject to the in */
+    $"6974 6961 6C20 7075 7263 6861 7365 2062"            /* itial purchase b */
+    $"7920 596F 7520 6F66 2053 6F66 7477 6172"            /* y You of Softwar */
+    $"6520 6D61 696E 7465 6E61 6E63 6520 616E"            /* e maintenance an */
+    $"642F 6F72 2073 7570 706F 7274 2073 6572"            /* d/or support ser */
+    $"7669 6365 7320 656E 7469 746C 656D 656E"            /* vices entitlemen */
+    $"7473 2028 D253 7562 7363 7269 7074 696F"            /* ts (ÒSubscriptio */
+    $"6E20 5365 7276 6963 6573 2045 6E74 6974"            /* n Services Entit */
+    $"6C65 6D65 6E74 73D3 2920 6571 7569 7661"            /* lementsÓ) equiva */
+    $"6C65 6E74 2069 6E20 6E75 6D62 6572 2074"            /* lent in number t */
+    $"6F20 7468 6520 746F 7461 6C20 6E75 6D62"            /* o the total numb */
+    $"6572 206F 6620 756E 6974 7320 6F66 2074"            /* er of units of t */
+    $"6865 2053 6F66 7477 6172 6520 7468 6174"            /* he Software that */
+    $"2079 6F75 2069 6E74 656E 6420 746F 2064"            /*  you intend to d */
+    $"6570 6C6F 792C 2069 6E73 7461 6C6C 206F"            /* eploy, install o */
+    $"7220 7573 6520 696E 2059 6F75 7220 4F72"            /* r use in Your Or */
+    $"6761 6E69 7A61 7469 6F6E 2E0D 5468 6520"            /* ganization..The  */
+    $"5375 6273 6372 6970 7469 6F6E 2053 6572"            /* Subscription Ser */
+    $"7669 6365 7320 456E 7469 746C 656D 656E"            /* vices Entitlemen */
+    $"7473 2065 6E74 6974 6C65 2059 6F75 2064"            /* ts entitle You d */
+    $"7572 696E 6720 7468 6520 7375 6273 6372"            /* uring the subscr */
+    $"6970 7469 6F6E 2070 6572 696F 6420 746F"            /* iption period to */
+    $"206D 616B 6520 7573 6520 6F66 2074 6865"            /*  make use of the */
+    $"2066 6F6C 6C6F 7769 6E67 2073 6572 7669"            /*  following servi */
+    $"6365 7320 28D2 5375 6273 6372 6970 7469"            /* ces (ÒSubscripti */
+    $"6F6E 2053 6572 7669 6365 73D3 293A 0D61"            /* on ServicesÓ):.a */
+    $"2920 2069 6E20 7468 6520 6361 7365 206F"            /* )  in the case o */
+    $"6620 6D61 696E 7465 6E61 6E63 6520 7365"            /* f maintenance se */
+    $"7276 6963 6573 2C20 746F 2061 6E79 2073"            /* rvices, to any s */
+    $"6563 7572 6974 7920 6669 7865 7320 616E"            /* ecurity fixes an */
+    $"6420 536F 6674 7761 7265 2075 7064 6174"            /* d Software updat */
+    $"6573 2077 6869 6368 206D 6179 2062 6520"            /* es which may be  */
+    $"6973 7375 6564 2062 7920 436F 6C6C 6162"            /* issued by Collab */
+    $"6F72 612C 2069 6E63 6C75 6469 6E67 2065"            /* ora, including e */
+    $"7869 7374 696E 6720 6669 7865 7320 6672"            /* xisting fixes fr */
+    $"6F6D 2074 6865 2073 7570 706F 7274 2073"            /* om the support s */
+    $"6572 7669 6365 7320 7365 7420 6F75 7420"            /* ervices set out  */
+    $"6174 2028 6229 2C20 6F6E 2074 6865 2074"            /* at (b), on the t */
+    $"6572 6D73 2073 6574 206F 7574 2069 6E20"            /* erms set out in  */
+    $"7468 6973 2041 6772 6565 6D65 6E74 2061"            /* this Agreement a */
+    $"6E64 2066 726F 6D20 7469 6D65 2074 6F20"            /* nd from time to  */
+    $"7469 6D65 2061 7420 6874 7470 3A2F 2F77"            /* time at http://w */
+    $"7777 2E43 6F6C 6C61 626F 7261 4F66 6669"            /* ww.CollaboraOffi */
+    $"6365 2E63 6F6D 2F0D 6229 2020 696E 2074"            /* ce.com/.b)  in t */
+    $"6865 2063 6173 6520 6F66 2073 7570 706F"            /* he case of suppo */
+    $"7274 2073 6572 7669 6365 732C 2074 6F20"            /* rt services, to  */
+    $"6665 6520 6261 7365 6420 7465 6368 6E69"            /* fee based techni */
+    $"6361 6C20 7375 7070 6F72 7420 6F6E 2074"            /* cal support on t */
+    $"6865 2074 6572 6D73 2073 6574 206F 7574"            /* he terms set out */
+    $"2069 6E20 7468 6973 2041 6772 6565 6D65"            /*  in this Agreeme */
+    $"6E74 2C20 6F72 2061 6E79 2073 6570 6172"            /* nt, or any separ */
+    $"6174 6520 6167 7265 656D 656E 742C 2061"            /* ate agreement, a */
+    $"6E64 2066 726F 6D20 7469 6D65 2074 6F20"            /* nd from time to  */
+    $"7469 6D65 2061 7420 6874 7470 3A2F 2F77"            /* time at http://w */
+    $"7777 2E43 6F6C 6C61 626F 7261 4F66 6669"            /* ww.CollaboraOffi */
+    $"6365 2E63 6F6D 2F2E 200D 416C 6C20 5375"            /* ce.com/. .All Su */
+    $"6273 6372 6970 7469 6F6E 2053 6572 7669"            /* bscription Servi */
+    $"6365 7320 7769 6C6C 2062 6520 7375 7070"            /* ces will be supp */
+    $"6C69 6564 2069 6E20 6120 7072 6F66 6573"            /* lied in a profes */
+    $"7369 6F6E 616C 206D 616E 6E65 7220 696E"            /* sional manner in */
+    $"2061 6363 6F72 6461 6E63 6520 7769 7468"            /*  accordance with */
+    $"2067 656E 6572 616C 6C79 2061 6363 6570"            /*  generally accep */
+    $"7465 6420 696E 6475 7374 7279 2073 7461"            /* ted industry sta */
+    $"6E64 6172 6473 2E20 0D55 6E6C 6573 7320"            /* ndards. .Unless  */
+    $"7468 6520 5375 6273 6372 6970 7469 6F6E"            /* the Subscription */
+    $"2053 6572 7669 6365 7320 616E 6420 5375"            /*  Services and Su */
+    $"6273 6372 6970 7469 6F6E 2053 6572 7669"            /* bscription Servi */
+    $"6365 7320 456E 7469 746C 656D 656E 7473"            /* ces Entitlements */
+    $"2061 7265 2073 6574 206F 7574 2069 6E20"            /*  are set out in  */
+    $"6120 7365 7061 7261 7465 2063 6F6E 7472"            /* a separate contr */
+    $"6163 7420 7769 7468 2043 6F6C 6C61 626F"            /* act with Collabo */
+    $"7261 2C20 7468 6579 2061 7265 206F 6666"            /* ra, they are off */
+    $"6572 6564 2074 6F20 596F 7520 7375 626A"            /* ered to You subj */
+    $"6563 7420 746F 2074 6865 2074 6572 6D73"            /* ect to the terms */
+    $"2073 6574 206F 7574 2069 6E20 7468 6973"            /*  set out in this */
+    $"2041 6772 6565 6D65 6E74 2E20 0D0D 4946"            /*  Agreement. ..IF */
+    $"2054 4845 2053 5542 5343 5249 5054 494F"            /*  THE SUBSCRIPTIO */
+    $"4E20 5345 5256 4943 4553 2045 4E54 4954"            /* N SERVICES ENTIT */
+    $"4C45 4D45 4E54 5320 5045 5249 4F44 2045"            /* LEMENTS PERIOD E */
+    $"5850 4952 4553 2041 4E44 2049 5320 4E4F"            /* XPIRES AND IS NO */
+    $"5420 5245 4E45 5745 4420 5749 5448 494E"            /* T RENEWED WITHIN */
+    $"2033 3020 4441 5953 2C20 4143 4345 5353"            /*  30 DAYS, ACCESS */
+    $"2054 4F20 5355 4253 4352 4950 5449 4F4E"            /*  TO SUBSCRIPTION */
+    $"2053 4552 5649 4345 5320 4953 2054 4552"            /*  SERVICES IS TER */
+    $"4D49 4E41 5445 442E 2049 4620 5749 5448"            /* MINATED. IF WITH */
+    $"494E 2054 4845 2053 5542 5343 5249 5054"            /* IN THE SUBSCRIPT */
+    $"494F 4E20 5345 5256 4943 4553 2045 4E54"            /* ION SERVICES ENT */
+    $"4954 4C45 4D45 4E54 2050 4552 494F 4420"            /* ITLEMENT PERIOD  */
+    $"594F 5520 5749 5348 2054 4F20 494E 4352"            /* YOU WISH TO INCR */
+    $"4541 5345 2054 4845 204E 554D 4245 5220"            /* EASE THE NUMBER  */
+    $"4F46 2043 4F50 4945 5320 4F46 2054 4845"            /* OF COPIES OF THE */
+    $"2053 4F46 5457 4152 4520 594F 5552 204F"            /*  SOFTWARE YOUR O */
+    $"5247 414E 4953 4154 494F 4E20 4953 2055"            /* RGANISATION IS U */
+    $"5349 4E47 2C20 594F 5520 4D55 5354 2050"            /* SING, YOU MUST P */
+    $"5552 4348 4153 4520 4144 4449 5449 4F4E"            /* URCHASE ADDITION */
+    $"414C 2055 4E49 5453 204F 4620 5355 4253"            /* AL UNITS OF SUBS */
+    $"4352 4950 5449 4F4E 2053 4552 5649 4345"            /* CRIPTION SERVICE */
+    $"5320 454E 5449 544C 454D 454E 5453 2045"            /* S ENTITLEMENTS E */
+    $"5155 4956 414C 454E 5420 544F 2054 4845"            /* QUIVALENT TO THE */
+    $"204E 554D 4245 5220 4F46 2041 4444 4954"            /*  NUMBER OF ADDIT */
+    $"494F 4E41 4C20 534F 4654 5741 5245 2043"            /* IONAL SOFTWARE C */
+    $"4F50 4945 5320 594F 5520 5749 5348 2054"            /* OPIES YOU WISH T */
+    $"4F20 494E 5354 414C 4C2E 2055 504F 4E20"            /* O INSTALL. UPON  */
+    $"5245 4E45 5741 4C20 4F46 2059 4F55 5220"            /* RENEWAL OF YOUR  */
+    $"5355 4253 4352 4950 5449 4F4E 2053 4552"            /* SUBSCRIPTION SER */
+    $"5649 4345 5320 454E 5449 544C 454D 454E"            /* VICES ENTITLEMEN */
+    $"5453 2C20 594F 5552 2053 5542 4D49 5353"            /* TS, YOUR SUBMISS */
+    $"494F 4E20 4F46 2041 2050 5552 4348 4153"            /* ION OF A PURCHAS */
+    $"4520 4F52 4445 5220 4F52 2050 4159 4D45"            /* E ORDER OR PAYME */
+    $"4E54 204F 4620 4645 4553 2046 4F52 2053"            /* NT OF FEES FOR S */
+    $"5542 5343 5249 5054 494F 4E20 5345 5256"            /* UBSCRIPTION SERV */
+    $"4943 4553 2045 4E54 4954 4C45 4D45 4E54"            /* ICES ENTITLEMENT */
+    $"5320 5749 4C4C 2042 4520 4445 454D 4544"            /* S WILL BE DEEMED */
+    $"2054 4F20 4245 2041 2052 4550 5245 5345"            /*  TO BE A REPRESE */
+    $"4E54 4154 494F 4E20 4F46 2054 4845 204E"            /* NTATION OF THE N */
+    $"554D 4245 5220 4F46 2043 4F50 4945 5320"            /* UMBER OF COPIES  */
+    $"4F46 2054 4845 2053 4F46 5457 4152 4520"            /* OF THE SOFTWARE  */
+    $"494E 5354 414C 4C45 4420 4154 2059 4F55"            /* INSTALLED AT YOU */
+    $"5220 4F52 4741 4E49 5341 5449 4F4E 2041"            /* R ORGANISATION A */
+    $"5420 5448 4154 2054 494D 452E 2043 4F4C"            /* T THAT TIME. COL */
+    $"4C41 424F 5241 2052 4553 4552 5645 5320"            /* LABORA RESERVES  */
+    $"5448 4520 5249 4748 5420 4154 2049 5453"            /* THE RIGHT AT ITS */
+    $"2045 4E54 4952 4520 4449 5343 5245 5449"            /*  ENTIRE DISCRETI */
+    $"4F4E 2054 4F20 4341 5252 5920 4F55 5420"            /* ON TO CARRY OUT  */
+    $"4120 4C49 4345 4E43 4520 434F 4D50 4C49"            /* A LICENCE COMPLI */
+    $"414E 4345 2041 5544 4954 2041 5420 414E"            /* ANCE AUDIT AT AN */
+    $"5920 5449 4D45 2E0D 090D 484F 4D45 2055"            /* Y TIME..Æ.HOME U */
+    $"5345 2E20 436F 6C6C 6162 6F72 6120 6772"            /* SE. Collabora gr */
+    $"616E 7473 2070 7269 6D61 7279 2075 7365"            /* ants primary use */
+    $"7273 206F 6620 5375 6273 6372 6970 7469"            /* rs of Subscripti */
+    $"6F6E 2053 6572 7669 6365 7320 456E 7469"            /* on Services Enti */
+    $"746C 656D 656E 7473 2061 6E64 2074 6865"            /* tlements and the */
+    $"6972 2069 6D6D 6564 6961 7465 2066 616D"            /* ir immediate fam */
+    $"696C 7920 6D65 6D62 6572 7320 6120 4C69"            /* ily members a Li */
+    $"6365 6E73 6520 746F 2072 6570 726F 6475"            /* cense to reprodu */
+    $"6365 2061 6E64 2075 7365 2063 6F70 6965"            /* ce and use copie */
+    $"7320 6F66 2074 6865 2053 6F66 7477 6172"            /* s of the Softwar */
+    $"6520 666F 7220 486F 6D65 2055 7365 2061"            /* e for Home Use a */
+    $"7320 6465 7461 696C 6564 2062 656C 6F77"            /* s detailed below */
+    $"2075 6E6C 6573 7320 6F74 6865 7277 6973"            /*  unless otherwis */
+    $"6520 7072 6F68 6962 6974 6564 2062 7920"            /* e prohibited by  */
+    $"616E 7920 6170 706C 6963 6162 6C65 206C"            /* any applicable l */
+    $"6177 732C 2070 6F6C 6963 6965 7320 6F72"            /* aws, policies or */
+    $"2072 6567 756C 6174 696F 6E73 2E20 486F"            /*  regulations. Ho */
+    $"6D65 2055 7365 2069 7320 7573 6167 6520"            /* me Use is usage  */
+    $"6F75 7473 6964 6520 7468 6520 7363 6F70"            /* outside the scop */
+    $"6520 6F66 206E 6F72 6D61 6C20 6275 7369"            /* e of normal busi */
+    $"6E65 7373 2074 6861 7420 6F63 6375 7273"            /* ness that occurs */
+    $"2070 7269 6D61 7269 6C79 2069 6E73 6964"            /*  primarily insid */
+    $"6520 7468 6520 686F 6D65 2E0D 0D4C 4943"            /* e the home...LIC */
+    $"454E 5345 2043 4F4D 504C 4941 4E43 4520"            /* ENSE COMPLIANCE  */
+    $"4155 4449 542E 2043 6F6C 6C61 626F 7261"            /* AUDIT. Collabora */
+    $"206D 6179 2C20 7570 6F6E 2066 6966 7465"            /*  may, upon fifte */
+    $"656E 2028 3135 2920 6461 7973 D520 6164"            /* en (15) daysÕ ad */
+    $"7661 6E63 6520 6E6F 7469 6365 2061 6E64"            /* vance notice and */
+    $"2061 7420 6974 7320 6578 7065 6E73 652C"            /*  at its expense, */
+    $"2063 6F6E 6475 6374 2061 6E20 616E 6E75"            /*  conduct an annu */
+    $"616C 2061 7564 6974 2069 6620 596F 7520"            /* al audit if You  */
+    $"6172 6520 616E 204F 7267 616E 6973 6174"            /* are an Organisat */
+    $"696F 6E2C 2064 7572 696E 6720 796F 7572"            /* ion, during your */
+    $"206E 6F72 6D61 6C20 6275 7369 6E65 7373"            /*  normal business */
+    $"2068 6F75 7273 2C20 6F66 2059 6F75 7220"            /*  hours, of Your  */
+    $"7573 6520 6F66 2074 6865 2053 6F66 7477"            /* use of the Softw */
+    $"6172 6520 746F 2076 6572 6966 7920 636F"            /* are to verify co */
+    $"6D70 6C69 616E 6365 2077 6974 6820 7468"            /* mpliance with th */
+    $"6973 2041 6772 6565 6D65 6E74 2061 6E64"            /* is Agreement and */
+    $"2069 6E20 7061 7274 6963 756C 6172 2059"            /*  in particular Y */
+    $"6F75 7220 636F 6D6D 6974 6D65 6E74 2075"            /* our commitment u */
+    $"6E64 6572 2074 6865 204C 6963 656E 7365"            /* nder the License */
+    $"2068 6572 6569 6E20 746F 2070 7572 6368"            /*  herein to purch */
+    $"6173 6520 616E 2065 7175 6976 616C 656E"            /* ase an equivalen */
+    $"7420 6E75 6D62 6572 2075 6E69 7473 206F"            /* t number units o */
+    $"6620 5375 6273 6372 6970 7469 6F6E 2053"            /* f Subscription S */
+    $"6572 7669 6365 7320 456E 7469 746C 656D"            /* ervices Entitlem */
+    $"656E 7473 2E20 596F 7520 6167 7265 6520"            /* ents. You agree  */
+    $"746F 206B 6565 7020 7265 636F 7264 7320"            /* to keep records  */
+    $"7375 6666 6963 6965 6E74 2074 6F20 6365"            /* sufficient to ce */
+    $"7274 6966 7920 796F 7572 2063 6F6D 706C"            /* rtify your compl */
+    $"6961 6E63 6520 7769 7468 2074 6869 7320"            /* iance with this  */
+    $"4167 7265 656D 656E 742E 2055 706F 6E20"            /* Agreement. Upon  */
+    $"436F 6C6C 6162 6F72 61D5 7320 6F72 2069"            /* CollaboraÕs or i */
+    $"7473 2061 7574 686F 7269 7A65 6420 7265"            /* ts authorized re */
+    $"7072 6573 656E 7461 7469 7665 D573 2072"            /* presentativeÕs r */
+    $"6561 736F 6E61 626C 6520 7772 6974 7465"            /* easonable writte */
+    $"6E20 636F 6D6D 6974 6D65 6E74 2873 2920"            /* n commitment(s)  */
+    $"746F 2073 6166 6567 7561 7264 2079 6F75"            /* to safeguard you */
+    $"7220 636F 6E66 6964 656E 7469 616C 2069"            /* r confidential i */
+    $"6E66 6F72 6D61 7469 6F6E 2C20 796F 7520"            /* nformation, you  */
+    $"7368 616C 6C20 6675 6C6C 7920 636F 6F70"            /* shall fully coop */
+    $"6572 6174 6520 7769 7468 2073 7563 6820"            /* erate with such  */
+    $"6175 6469 7420 616E 6420 7072 6F76 6964"            /* audit and provid */
+    $"6520 616E 7920 6E65 6365 7373 6172 7920"            /* e any necessary  */
+    $"6173 7369 7374 616E 6365 2061 6E64 2061"            /* assistance and a */
+    $"6363 6573 7320 746F 2072 6563 6F72 6473"            /* ccess to records */
+    $"2061 6E64 2063 6F6D 7075 7465 7273 2E20"            /*  and computers.  */
+    $"4966 2061 6E20 6175 6469 7420 7265 7665"            /* If an audit reve */
+    $"616C 7320 7468 6174 2079 6F75 2068 6176"            /* als that you hav */
+    $"6520 6F72 2061 7420 616E 7920 7469 6D65"            /* e or at any time */
+    $"2068 6164 2075 6E6C 6963 656E 7365 6420"            /*  had unlicensed  */
+    $"696E 7374 616C 6C61 7469 6F6E 2C20 7573"            /* installation, us */
+    $"6520 6F66 2C20 6F72 2061 6363 6573 7320"            /* e of, or access  */
+    $"746F 2074 6865 2053 6F66 7477 6172 652C"            /* to the Software, */
+    $"2059 6F75 2077 696C 6C20 7072 6F6D 7074"            /*  You will prompt */
+    $"6C79 2061 6371 7569 7265 2073 7566 6669"            /* ly acquire suffi */
+    $"6369 656E 7420 5375 6273 6372 6970 7469"            /* cient Subscripti */
+    $"6F6E 2053 6572 7669 6365 7320 456E 7469"            /* on Services Enti */
+    $"746C 656D 656E 7473 2074 6F20 636F 7665"            /* tlements to cove */
+    $"7220 616E 7920 7368 6F72 7461 6765 2E20"            /* r any shortage.  */
+    $"4966 2061 2073 686F 7274 6167 6520 6F66"            /* If a shortage of */
+    $"2035 2520 6F72 206D 6F72 6520 6973 2066"            /*  5% or more is f */
+    $"6F75 6E64 2C20 796F 7520 6D75 7374 2072"            /* ound, you must r */
+    $"6569 6D62 7572 7365 2043 6F6C 6C61 626F"            /* eimburse Collabo */
+    $"7261 2066 6F72 2074 6865 2063 6F73 7473"            /* ra for the costs */
+    $"2069 6E63 7572 7265 6420 696E 2074 6865"            /*  incurred in the */
+    $"2061 7564 6974 2061 6E64 2061 6371 7569"            /*  audit and acqui */
+    $"7265 2074 6865 206E 6563 6573 7361 7279"            /* re the necessary */
+    $"2061 6464 6974 696F 6E61 6C20 5375 6273"            /*  additional Subs */
+    $"6372 6970 7469 6F6E 2053 6572 7669 6365"            /* cription Service */
+    $"7320 456E 7469 746C 656D 656E 7473 2077"            /* s Entitlements w */
+    $"6974 6869 6E20 3330 2064 6179 732E 200D"            /* ithin 30 days. . */
+    $"0D45 5641 4C55 4154 494F 4E20 4C49 4345"            /* .EVALUATION LICE */
+    $"4E43 452E 2041 6E20 6576 616C 7561 7469"            /* NCE. An evaluati */
+    $"6F6E 206C 6963 656E 6365 2069 7320 6772"            /* on licence is gr */
+    $"616E 7465 6420 7768 656E 2059 6F75 2064"            /* anted when You d */
+    $"6570 6C6F 792C 2069 6E73 7461 6C6C 206F"            /* eploy, install o */
+    $"7220 7573 6520 616E 2065 7661 6C75 6174"            /* r use an evaluat */
+    $"696F 6E20 7665 7273 696F 6E20 6F66 2074"            /* ion version of t */
+    $"6865 2053 6F66 7477 6172 6520 6F72 2059"            /* he Software or Y */
+    $"6F75 2061 7265 2067 7261 6E74 6564 2061"            /* ou are granted a */
+    $"2074 696D 6520 6C69 6D69 7465 642C 206E"            /*  time limited, n */
+    $"6F6E 2D65 7863 6C75 7369 7665 2061 6E64"            /* on-exclusive and */
+    $"206E 6F6E 2D74 7261 6E73 6665 7261 626C"            /*  non-transferabl */
+    $"6520 6C69 6365 6E63 6520 6279 2043 6F6C"            /* e licence by Col */
+    $"6C61 626F 7261 2066 6F72 2065 7661 6C75"            /* labora for evalu */
+    $"6174 696F 6E20 7075 7270 6F73 6573 2E20"            /* ation purposes.  */
+    $"5468 6520 536F 6674 7761 7265 2069 7320"            /* The Software is  */
+    $"6C69 6365 6E73 6564 2074 6F20 596F 7520"            /* licensed to You  */
+    $"666F 7220 7468 6520 736F 6C65 2070 7572"            /* for the sole pur */
+    $"706F 7365 206F 6620 6576 616C 7561 7469"            /* pose of evaluati */
+    $"6E67 2074 6865 2053 6F66 7477 6172 6520"            /* ng the Software  */
+    $"616E 6420 6F6E 6C79 2066 6F72 2061 2073"            /* and only for a s */
+    $"7065 6369 6669 6564 2065 7661 6C75 6174"            /* pecified evaluat */
+    $"696F 6E20 7065 7269 6F64 206F 6620 3330"            /* ion period of 30 */
+    $"2064 6179 732E 2041 6674 6572 2033 3020"            /*  days. After 30  */
+    $"6461 7973 2059 6F75 206D 7573 7420 6569"            /* days You must ei */
+    $"7468 6572 2070 7572 6368 6173 6520 616E"            /* ther purchase an */
+    $"2065 7175 6976 616C 656E 7420 5375 6273"            /*  equivalent Subs */
+    $"6372 6970 7469 6F6E 2053 6572 7669 6365"            /* cription Service */
+    $"7320 456E 7469 746C 656D 656E 7420 6672"            /* s Entitlement fr */
+    $"6F6D 2043 6F6C 6C61 626F 7261 2C20 6F72"            /* om Collabora, or */
+    $"2064 6573 7472 6F79 2061 6E64 2073 746F"            /*  destroy and sto */
+    $"7020 7573 696E 6720 7468 6520 536F 6674"            /* p using the Soft */
+    $"7761 7265 2E20 4966 2059 6F75 2070 7572"            /* ware. If You pur */
+    $"6368 6173 6520 7468 6520 5375 6273 6372"            /* chase the Subscr */
+    $"6970 7469 6F6E 2053 6572 7669 6365 2045"            /* iption Service E */
+    $"6E74 6974 6C65 6D65 6E74 2062 6566 6F72"            /* ntitlement befor */
+    $"6520 7468 6520 6578 7069 7261 7469 6F6E"            /* e the expiration */
+    $"206F 6620 7468 6520 6576 616C 7561 7469"            /*  of the evaluati */
+    $"6F6E 2074 696D 652C 2059 6F75 2068 6176"            /* on time, You hav */
+    $"6520 6120 7661 6C69 6420 6C69 6365 6E63"            /* e a valid licenc */
+    $"6520 616E 6420 596F 7520 646F 206E 6F74"            /* e and You do not */
+    $"206E 6565 6420 746F 2064 6573 7472 6F79"            /*  need to destroy */
+    $"2074 6865 2053 6F66 7477 6172 652E 200D"            /*  the Software. . */
+    $"0D4F 5045 4E20 534F 5552 4345 204C 4943"            /* .OPEN SOURCE LIC */
+    $"454E 4345 532F 4C49 4D49 5441 5449 4F4E"            /* ENCES/LIMITATION */
+    $"532E 2054 6865 2069 6E64 6976 6964 7561"            /* S. The individua */
+    $"6C20 636F 6D70 6F6E 656E 7473 2069 6E63"            /* l components inc */
+    $"6C75 6465 6420 696E 2074 6865 2053 6F66"            /* luded in the Sof */
+    $"7477 6172 6520 6172 6520 6C69 6365 6E73"            /* tware are licens */
+    $"6564 2070 7269 6D61 7269 6C79 2070 7572"            /* ed primarily pur */
+    $"7375 616E 7420 746F 204D 6F7A 696C 6C61"            /* suant to Mozilla */
+    $"2050 7562 6C69 6320 4C69 6365 6E73 6520"            /*  Public License  */
+    $"7632 2E30 206F 7065 6E20 736F 7572 6365"            /* v2.0 open source */
+    $"206C 6963 656E 6365 2069 6E20 6164 6469"            /*  licence in addi */
+    $"7469 6F6E 2074 6F20 6F74 6865 7220 6F70"            /* tion to other op */
+    $"656E 2073 6F75 7263 6520 6C69 6365 6E63"            /* en source licenc */
+    $"6573 2069 6465 6E74 6966 6965 6420 696E"            /* es identified in */
+    $"2074 6865 2064 6F63 756D 656E 7461 7469"            /*  the documentati */
+    $"6F6E 206F 7220 6C6F 6361 7465 6420 696E"            /* on or located in */
+    $"2074 6865 2073 6F75 7263 6520 636F 6465"            /*  the source code */
+    $"206F 7220 6269 6E61 7279 2063 6F64 6520"            /*  or binary code  */
+    $"666F 7220 7468 6520 636F 6D70 6F6E 656E"            /* for the componen */
+    $"742E 2041 7320 7375 6368 2074 6865 2073"            /* t. As such the s */
+    $"6F75 7263 6520 636F 6465 2066 6F72 6D20"            /* ource code form  */
+    $"6F66 2074 6865 2053 6F66 7477 6172 6520"            /* of the Software  */
+    $"6973 206D 6164 6520 6176 6169 6C61 626C"            /* is made availabl */
+    $"6520 6174 2061 6C6C 2074 696D 6573 2075"            /* e at all times u */
+    $"6E64 6572 2074 6865 2074 6572 6D73 206F"            /* nder the terms o */
+    $"6620 7375 6368 206C 6963 656E 6365 732E"            /* f such licences. */
+    $"200D 5768 696C 7374 2074 6869 7320 4167"            /*  .Whilst this Ag */
+    $"7265 656D 656E 7420 696E 206E 6F20 7761"            /* reement in no wa */
+    $"7920 6C69 6D69 7473 2059 6F75 7220 7269"            /* y limits Your ri */
+    $"6768 7473 2075 6E64 6572 2073 7563 6820"            /* ghts under such  */
+    $"6C69 6365 6E63 6573 2C20 6E6F 7220 6973"            /* licences, nor is */
+    $"2069 6E74 656E 6465 6420 746F 2073 7570"            /*  intended to sup */
+    $"6572 7365 6465 206F 7220 636F 6E66 6C69"            /* ersede or confli */
+    $"6374 2077 6974 6820 7468 6520 6C69 6365"            /* ct with the lice */
+    $"6E63 6520 7465 726D 7320 6F72 206F 626C"            /* nce terms or obl */
+    $"6967 6174 696F 6E73 2066 6F72 2075 7365"            /* igations for use */
+    $"206F 6620 616E 7920 696E 6469 7669 6475"            /*  of any individu */
+    $"616C 206F 7065 6E20 736F 7572 6365 2063"            /* al open source c */
+    $"6F6D 706F 6E65 6E74 2C20 7468 6520 4D6F"            /* omponent, the Mo */
+    $"7A69 6C6C 6120 5075 626C 6963 204C 6963"            /* zilla Public Lic */
+    $"656E 7365 2076 322E 3020 6861 7320 6265"            /* ense v2.0 has be */
+    $"656E 2075 7469 6C69 7365 6420 746F 206C"            /* en utilised to l */
+    $"6963 656E 7365 2074 6865 206D 616A 6F72"            /* icense the major */
+    $"6974 7920 6F66 2074 6865 2063 6F6D 706F"            /* ity of the compo */
+    $"6E65 6E74 7320 636F 6D70 7269 7369 6E67"            /* nents comprising */
+    $"2074 6865 2053 6F66 7477 6172 6520 6265"            /*  the Software be */
+    $"6361 7573 6520 6974 2069 6D70 6F73 6573"            /* cause it imposes */
+    $"2028 6173 2069 7320 7365 7420 6F75 7420"            /*  (as is set out  */
+    $"696E 2070 6172 6167 7261 7068 2033 2E32"            /* in paragraph 3.2 */
+    $"2862 2920 6F66 2069 7429 2073 7065 6369"            /* (b) of it) speci */
+    $"6669 6320 636F 6E64 6974 696F 6E73 206F"            /* fic conditions o */
+    $"6E20 7468 6520 6672 6565 2064 6973 7472"            /* n the free distr */
+    $"6962 7574 696F 6E20 6F66 2073 7563 6820"            /* ibution of such  */
+    $"736F 6674 7761 7265 2069 6E20 6974 7320"            /* software in its  */
+    $"6578 6563 7574 6162 6C65 2066 6F72 6D2E"            /* executable form. */
+    $"2020 200D 200D 4D41 494E 5445 4E41 4E43"            /*    . .MAINTENANC */
+    $"4520 5345 5256 4943 4553 2E20 0D31 2920"            /* E SERVICES. .1)  */
+    $"4279 2070 7572 6368 6173 696E 6720 6D61"            /* By purchasing ma */
+    $"696E 7465 6E61 6E63 6520 7365 7276 6963"            /* intenance servic */
+    $"6573 2059 6F75 2061 7265 2065 6E74 6974"            /* es You are entit */
+    $"6C65 6420 746F 2069 6E73 7461 6C6C 2061"            /* led to install a */
+    $"6E64 2075 7365 2061 6C6C 2075 7067 7261"            /* nd use all upgra */
+    $"6465 7320 616E 6420 7570 6461 7465 7320"            /* des and updates  */
+    $"6D61 6465 2063 6F6D 6D65 7263 6961 6C6C"            /* made commerciall */
+    $"7920 6176 6169 6C61 626C 6520 6279 2043"            /* y available by C */
+    $"6F6C 6C61 626F 7261 2064 7572 696E 6720"            /* ollabora during  */
+    $"7468 6520 7065 7269 6F64 2063 6F76 6572"            /* the period cover */
+    $"6564 2062 7920 7468 6520 6D61 696E 7465"            /* ed by the mainte */
+    $"6E61 6E63 6520 7365 7276 6963 6573 2073"            /* nance services s */
+    $"7562 7363 7269 7074 696F 6E2C 2075 7020"            /* ubscription, up  */
+    $"746F 2074 6865 206E 756D 6265 7220 6F66"            /* to the number of */
+    $"2069 6E73 7461 6C6C 6174 696F 6E73 2066"            /*  installations f */
+    $"6F72 2077 6869 6368 2059 6F75 2068 6176"            /* or which You hav */
+    $"6520 7075 7263 6861 7365 206D 6169 6E74"            /* e purchase maint */
+    $"656E 616E 6365 2073 6572 7669 6365 732E"            /* enance services. */
+    $"200D 0D32 2920 416E 7920 D275 7064 6174"            /*  ..2) Any Òupdat */
+    $"65D3 206D 6561 6E73 2061 2066 6978 206F"            /* eÓ means a fix o */
+    $"7220 636F 6D70 696C 6174 696F 6E20 6F66"            /* r compilation of */
+    $"2066 6978 6573 2072 656C 6561 7365 6420"            /*  fixes released  */
+    $"6279 2043 6F6C 6C61 626F 7261 2074 6F20"            /* by Collabora to  */
+    $"636F 7272 6563 7420 6F70 6572 6174 696F"            /* correct operatio */
+    $"6E61 6C20 6572 726F 7273 2028 6120 6465"            /* nal errors (a de */
+    $"6665 6374 2074 6861 7420 7072 6576 656E"            /* fect that preven */
+    $"7473 2069 7420 6672 6F6D 206F 7065 7261"            /* ts it from opera */
+    $"7469 6E67 2073 7562 7374 616E 7469 616C"            /* ting substantial */
+    $"6C79 2061 7320 696E 7465 6E64 6564 2C20"            /* ly as intended,  */
+    $"7768 6572 6520 7375 6368 2069 6E74 656E"            /* where such inten */
+    $"7420 7368 616C 6C20 6265 2064 6564 7563"            /* t shall be deduc */
+    $"6564 2062 6173 6564 206F 6E20 6120 636F"            /* ed based on a co */
+    $"6D70 6574 656E 7420 696E 7370 6563 7469"            /* mpetent inspecti */
+    $"6F6E 206F 6620 7468 6520 736F 7572 6365"            /* on of the source */
+    $"2063 6F64 6520 616E 6420 646F 6375 6D65"            /*  code and docume */
+    $"6E74 6174 696F 6E29 2069 6E20 7468 6520"            /* ntation) in the  */
+    $"536F 6674 7761 7265 2E20 416E 20D2 7570"            /* Software. An Òup */
+    $"6772 6164 65D3 206D 6561 6E73 2061 6E79"            /* gradeÓ means any */
+    $"206E 6577 2076 6572 7369 6F6E 206F 6620"            /*  new version of  */
+    $"7468 6520 536F 6674 7761 7265 2077 6869"            /* the Software whi */
+    $"6368 2062 6561 7273 2074 6865 2073 616D"            /* ch bears the sam */
+    $"6520 7072 6F64 7563 7420 6E61 6D65 2C20"            /* e product name,  */
+    $"696E 636C 7564 696E 6720 7665 7273 696F"            /* including versio */
+    $"6E20 6368 616E 6765 7320 6576 6964 656E"            /* n changes eviden */
+    $"6365 6420 6279 2061 206E 756D 6265 7220"            /* ced by a number  */
+    $"696D 6D65 6469 6174 656C 7920 6166 7465"            /* immediately afte */
+    $"7220 7468 6520 6E61 6D65 206F 6620 7468"            /* r the name of th */
+    $"6520 536F 6674 7761 7265 2E20 0D0D 3329"            /* e Software. ..3) */
+    $"2049 6620 6120 7175 6573 7469 6F6E 2061"            /*  If a question a */
+    $"7269 7365 7320 6173 2074 6F20 7768 6574"            /* rises as to whet */
+    $"6865 7220 6120 7265 6C65 6173 6520 6279"            /* her a release by */
+    $"2043 6F6C 6C61 626F 7261 2069 7320 616E"            /*  Collabora is an */
+    $"2075 7067 7261 6465 206F 7220 616E 2075"            /*  upgrade or an u */
+    $"7064 6174 6520 6F72 2061 206E 6577 2053"            /* pdate or a new S */
+    $"6F66 7477 6172 6520 7072 6F64 7563 742C"            /* oftware product, */
+    $"2043 6F6C 6C61 626F 7261 D573 206F 7069"            /*  CollaboraÕs opi */
+    $"6E69 6F6E 2077 696C 6C20 7072 6576 6169"            /* nion will prevai */
+    $"6C20 7072 6F76 6964 6564 2074 6861 7420"            /* l provided that  */
+    $"436F 6C6C 6162 6F72 6120 7472 6561 7473"            /* Collabora treats */
+    $"2074 6865 2070 726F 6475 6374 206F 6666"            /*  the product off */
+    $"6572 696E 6720 7468 6520 7361 6D65 2066"            /* ering the same f */
+    $"6F72 2069 7473 2065 6E64 2075 7365 7273"            /* or its end users */
+    $"2067 656E 6572 616C 6C79 2E0D 0D34 2920"            /*  generally...4)  */
+    $"4966 2043 6F6C 6C61 626F 7261 2063 6F6D"            /* If Collabora com */
+    $"6D65 7263 6961 6C6C 7920 7265 6C65 6173"            /* mercially releas */
+    $"6573 2061 6E79 2075 7067 7261 6465 206F"            /* es any upgrade o */
+    $"7220 7570 6461 7465 732C 2069 7420 7769"            /* r updates, it wi */
+    $"6C6C 206D 616B 6520 7375 6368 2075 7067"            /* ll make such upg */
+    $"7261 6465 7320 6F72 2075 7064 6174 6573"            /* rades or updates */
+    $"2061 7661 696C 6162 6C65 2074 6F20 596F"            /*  available to Yo */
+    $"7520 7769 7468 696E 2061 2072 6561 736F"            /* u within a reaso */
+    $"6E61 626C 6520 7065 7269 6F64 206F 6620"            /* nable period of  */
+    $"7469 6D65 2061 6674 6572 2074 6865 7920"            /* time after they  */
+    $"6265 636F 6D65 2063 6F6D 6D65 7263 6961"            /* become commercia */
+    $"6C6C 7920 6176 6169 6C61 626C 652C 2061"            /* lly available, a */
+    $"6C74 686F 7567 6820 436F 6C6C 6162 6F72"            /* lthough Collabor */
+    $"6120 6361 6E6E 6F74 2067 7561 7261 6E74"            /* a cannot guarant */
+    $"6565 2061 6E79 2073 7065 6369 6669 6320"            /* ee any specific  */
+    $"7475 726E 6172 6F75 6E64 2074 696D 6573"            /* turnaround times */
+    $"2061 6E64 2F6F 7220 7265 6775 6C61 7220"            /*  and/or regular  */
+    $"7265 6C65 6173 6520 696E 7465 7276 616C"            /* release interval */
+    $"732E 200D 0D35 2920 4174 2069 7473 2073"            /* s. ..5) At its s */
+    $"6F6C 6520 6469 7363 7265 7469 6F6E 2043"            /* ole discretion C */
+    $"6F6C 6C61 626F 7261 2077 696C 6C20 6465"            /* ollabora will de */
+    $"7465 726D 696E 6520 7768 6574 6865 7220"            /* termine whether  */
+    $"746F 2065 6C69 6D69 6E61 7465 2061 6E20"            /* to eliminate an  */
+    $"6F70 6572 6174 696F 6E61 6C20 6572 726F"            /* operational erro */
+    $"7220 6279 206D 6561 6E73 206F 6620 6973"            /* r by means of is */
+    $"7375 696E 6720 616E 2075 7064 6174 652E"            /* suing an update. */
+    $"2043 6F6C 6C61 626F 7261 2077 696C 6C20"            /*  Collabora will  */
+    $"696E 666F 726D 2079 6F75 2062 7920 656D"            /* inform you by em */
+    $"6169 6C20 2874 6F20 7468 6520 6164 6472"            /* ail (to the addr */
+    $"6573 7320 6769 7665 6E20 6F6E 2072 6567"            /* ess given on reg */
+    $"6973 7472 6174 696F 6E20 6F66 2074 6865"            /* istration of the */
+    $"206D 6169 6E74 656E 616E 6365 2073 6572"            /*  maintenance ser */
+    $"7669 6365 7329 2061 7320 736F 6F6E 2061"            /* vices) as soon a */
+    $"7320 6E65 7720 7570 6461 7465 7320 6172"            /* s new updates ar */
+    $"6520 7265 6C65 6173 6564 2061 7420 7468"            /* e released at th */
+    $"6520 436F 6C6C 6162 6F72 6120 7765 6273"            /* e Collabora webs */
+    $"6974 652E 0D0D 3629 204D 6169 6E74 656E"            /* ite...6) Mainten */
+    $"616E 6365 2073 6572 7669 6365 7320 646F"            /* ance services do */
+    $"206E 6F74 2069 6E63 6C75 6465 2069 6E74"            /*  not include int */
+    $"6567 7261 7469 6F6E 2073 6572 7669 6365"            /* egration service */
+    $"732C 2069 6E73 7461 6C6C 6174 696F 6E20"            /* s, installation  */
+    $"6F66 2075 7067 7261 6465 7320 6F72 2075"            /* of upgrades or u */
+    $"7064 6174 6573 2C20 7375 7070 6F72 7420"            /* pdates, support  */
+    $"7365 7276 6963 6573 206F 7220 616E 7920"            /* services or any  */
+    $"6F74 6865 7220 6265 6E65 6669 7473 206E"            /* other benefits n */
+    $"6F74 2065 7870 7265 7373 6C79 2064 6573"            /* ot expressly des */
+    $"6372 6962 6564 2069 6E20 7468 6973 2041"            /* cribed in this A */
+    $"6772 6565 6D65 6E74 2E0D 0D53 5550 504F"            /* greement...SUPPO */
+    $"5254 2053 4552 5649 4345 530D 4279 2070"            /* RT SERVICES.By p */
+    $"7572 6368 6173 696E 6720 616E 2065 6E74"            /* urchasing an ent */
+    $"6974 6C65 6D65 6E74 2074 6F20 D44C 6576"            /* itlement to ÔLev */
+    $"656C 2033 D520 7465 6368 6E69 6361 6C20"            /* el 3Õ technical  */
+    $"7375 7070 6F72 7420 7365 7276 6963 6573"            /* support services */
+    $"2077 696C 6C20 6265 2070 726F 7669 6465"            /*  will be provide */
+    $"6420 6F6E 2063 6572 7461 696E 2074 6572"            /* d on certain ter */
+    $"6D73 2077 6869 6368 2069 6E63 6C75 6465"            /* ms which include */
+    $"3A0D 2D20 616C 6C6F 6361 7469 6F6E 206F"            /* :.- allocation o */
+    $"6620 6120 7365 7665 7269 7479 206C 6576"            /* f a severity lev */
+    $"656C 2066 6F72 2065 6163 6820 7375 7070"            /* el for each supp */
+    $"6F72 7420 6361 7365 2061 6E64 2061 6E79"            /* ort case and any */
+    $"2076 6172 6961 7469 6F6E 7320 6F6E 2074"            /*  variations on t */
+    $"6869 733B 0D2D 2043 6F6C 6C61 626F 7261"            /* his;.- Collabora */
+    $"D573 2077 6F72 6B20 6176 6169 6C61 6269"            /* Õs work availabi */
+    $"6C69 7479 2074 696D 6573 2C20 696E 6974"            /* lity times, init */
+    $"6961 6C20 7265 7370 6F6E 7365 2074 696D"            /* ial response tim */
+    $"6520 616E 6420 7468 6520 636F 6D6D 756E"            /* e and the commun */
+    $"6963 6174 696F 6E20 6672 6571 7565 6E63"            /* ication frequenc */
+    $"7920 666F 7220 6561 6368 2073 7570 706F"            /* y for each suppo */
+    $"7274 2063 6173 6520 6261 7365 6420 6F6E"            /* rt case based on */
+    $"2073 7563 6820 616C 6C6F 6361 7465 6420"            /*  such allocated  */
+    $"6361 7365 2073 6576 6572 6974 7920 6C65"            /* case severity le */
+    $"7665 6C3B 200D 2D20 596F 7572 206C 696D"            /* vel; .- Your lim */
+    $"6974 206F 6E20 7468 6520 6E75 6D62 6572"            /* it on the number */
+    $"206F 6620 7375 7070 6F72 7420 6361 7365"            /*  of support case */
+    $"7320 7468 6174 2059 6F75 2063 616E 2072"            /* s that You can r */
+    $"6570 6F72 7420 666F 7220 6561 6368 2073"            /* eport for each s */
+    $"7563 6820 616C 6C6F 6361 7465 6420 6361"            /* uch allocated ca */
+    $"7365 2073 6576 6572 6974 7920 6C65 7665"            /* se severity leve */
+    $"6C20 2861 6C74 686F 7567 6820 666F 7220"            /* l (although for  */
+    $"7468 6520 6176 6F69 6461 6E63 6520 6F66"            /* the avoidance of */
+    $"2064 6F75 6274 2C20 616E 7920 756E 7573"            /*  doubt, any unus */
+    $"6564 206C 696D 6974 2063 616E 6E6F 7420"            /* ed limit cannot  */
+    $"6265 2072 6566 756E 6465 6420 616E 6420"            /* be refunded and  */
+    $"6578 7069 7265 7320 6174 2074 6865 2065"            /* expires at the e */
+    $"6E64 206F 6620 7468 6520 5375 6273 6372"            /* nd of the Subscr */
+    $"6970 7469 6F6E 2053 6572 7669 6365 7320"            /* iption Services  */
+    $"456E 7469 746C 656D 656E 7420 7065 7269"            /* Entitlement peri */
+    $"6F64 2075 6E6C 6573 7320 6F74 6865 7277"            /* od unless otherw */
+    $"6973 6520 6167 7265 6564 292E 200D 5468"            /* ise agreed). .Th */
+    $"6520 7370 6563 6966 6963 2074 6572 6D73"            /* e specific terms */
+    $"2061 7265 2073 7562 6A65 6374 2074 6F20"            /*  are subject to  */
+    $"6368 616E 6765 2066 726F 6D20 7469 6D65"            /* change from time */
+    $"2074 6F20 7469 6D65 2061 6E64 2061 6363"            /*  to time and acc */
+    $"6F72 6469 6E67 6C79 2061 7265 2073 6574"            /* ordingly are set */
+    $"206F 7574 2061 7420 6874 7470 3A2F 2F77"            /*  out at http://w */
+    $"7777 2E43 6F6C 6C61 626F 7261 4F66 6669"            /* ww.CollaboraOffi */
+    $"6365 2E63 6F6D 2F2C 2075 6E6C 6573 7320"            /* ce.com/, unless  */
+    $"7365 7061 7261 7465 6C79 2061 6772 6565"            /* separately agree */
+    $"6420 7769 7468 2059 6F75 2073 7563 6820"            /* d with You such  */
+    $"6173 2069 6E20 6120 7075 7263 6861 7365"            /* as in a purchase */
+    $"206F 7264 6572 2E20 596F 7520 6172 6520"            /*  order. You are  */
+    $"7572 6765 6420 746F 2063 6865 636B 2074"            /* urged to check t */
+    $"6865 7365 2074 6572 6D73 2061 6761 696E"            /* hese terms again */
+    $"206E 6F77 2062 6566 6F72 6520 7072 6F63"            /*  now before proc */
+    $"6565 6469 6E67 2077 6974 6820 616E 7920"            /* eeding with any  */
+    $"7075 7263 6861 7365 206F 6620 5375 6273"            /* purchase of Subs */
+    $"6372 6970 7469 6F6E 2053 6572 7669 6365"            /* cription Service */
+    $"7320 456E 7469 746C 656D 656E 7473 2E20"            /* s Entitlements.  */
+    $"0D41 6C74 6572 6E61 7469 7665 6C79 2C20"            /* .Alternatively,  */
+    $"436F 6C6C 6162 6F72 6120 616C 736F 2065"            /* Collabora also e */
+    $"6E74 6974 6C65 2059 6F75 2074 6F20 7075"            /* ntitle You to pu */
+    $"7263 6861 7365 2074 6865 2073 7570 706F"            /* rchase the suppo */
+    $"7274 2073 6572 7669 6365 7320 656E 7469"            /* rt services enti */
+    $"746C 656D 656E 7420 6672 6F6D 2061 2072"            /* tlement from a r */
+    $"6573 656C 6C65 7220 6F72 206F 7468 6572"            /* eseller or other */
+    $"2069 6E74 6572 6D65 6469 6172 7920 7261"            /*  intermediary ra */
+    $"7468 6572 2074 6861 6E20 6672 6F6D 2043"            /* ther than from C */
+    $"6F6C 6C61 626F 7261 2064 6972 6563 746C"            /* ollabora directl */
+    $"792E 2049 6620 596F 7520 6861 7665 2070"            /* y. If You have p */
+    $"7572 6368 6173 6564 2074 6865 2073 6572"            /* urchased the ser */
+    $"7669 6365 7320 656E 7469 746C 656D 656E"            /* vices entitlemen */
+    $"7420 6672 6F6D 2073 7563 6820 6120 7061"            /* t from such a pa */
+    $"7274 7920 706C 6561 7365 2063 6865 636B"            /* rty please check */
+    $"2077 6974 6820 7468 656D 2069 6620 616E"            /*  with them if an */
+    $"7920 7375 7070 6F72 7420 7365 7276 6963"            /* y support servic */
+    $"6520 656E 7469 746C 656D 656E 7420 7465"            /* e entitlement te */
+    $"726D 7320 6861 7665 2062 6565 6E20 7365"            /* rms have been se */
+    $"7061 7261 7465 6C79 206E 6567 6F74 6961"            /* parately negotia */
+    $"7465 6420 6265 7477 6565 6E20 7468 656D"            /* ted between them */
+    $"2061 6E64 2043 6F6C 6C61 626F 7261 2C20"            /*  and Collabora,  */
+    $"6173 2061 6E79 2073 7563 6820 7465 726D"            /* as any such term */
+    $"7320 6172 6520 6465 656D 6564 2074 6F20"            /* s are deemed to  */
+    $"6265 2069 6E63 6F72 706F 7261 7465 6420"            /* be incorporated  */
+    $"696E 746F 2074 6869 7320 4167 7265 656D"            /* into this Agreem */
+    $"656E 7420 616E 6420 7368 616C 6C20 7461"            /* ent and shall ta */
+    $"6B65 2070 7265 6365 6465 6E63 6520 6F76"            /* ke precedence ov */
+    $"6572 2061 6E79 2063 6F6E 666C 6963 7469"            /* er any conflicti */
+    $"6E67 2074 6572 6D73 2073 6574 206F 7574"            /* ng terms set out */
+    $"2061 7420 6874 7470 3A2F 2F77 7777 2E43"            /*  at http://www.C */
+    $"6F6C 6C61 626F 7261 4F66 6669 6365 2E63"            /* ollaboraOffice.c */
+    $"6F6D 2F20 6F72 206F 6E20 6120 7075 7263"            /* om/ or on a purc */
+    $"6861 7365 206F 7264 6572 2E0D 4C49 4D49"            /* hase order..LIMI */
+    $"5441 5449 4F4E 5320 414E 4420 4558 434C"            /* TATIONS AND EXCL */
+    $"5553 494F 4E53 0D31 2920 436F 6C6C 6162"            /* USIONS.1) Collab */
+    $"6F72 6120 6F66 6665 7273 206E 6F20 7269"            /* ora offers no ri */
+    $"6768 7473 206F 7468 6572 2074 6861 6E20"            /* ghts other than  */
+    $"7468 6F73 6520 6578 7072 6573 736C 7920"            /* those expressly  */
+    $"6772 616E 7465 6420 746F 2059 6F75 2069"            /* granted to You i */
+    $"6E20 7468 6973 2041 6772 6565 6D65 6E74"            /* n this Agreement */
+    $"2E20 4578 6365 7074 2061 7320 6167 7265"            /* . Except as agre */
+    $"6564 2074 6F20 756E 6465 7220 6120 7365"            /* ed to under a se */
+    $"7061 7261 7465 2077 7269 7474 656E 2061"            /* parate written a */
+    $"6772 6565 6D65 6E74 2077 6974 6820 436F"            /* greement with Co */
+    $"6C6C 6162 6F72 6120 6F72 2069 6E20 7468"            /* llabora or in th */
+    $"6520 6C69 6365 6E63 6520 7465 726D 7320"            /* e licence terms  */
+    $"6163 636F 6D70 616E 7969 6E67 2061 2070"            /* accompanying a p */
+    $"6172 7469 6375 6C61 7220 636F 6D70 6F6E"            /* articular compon */
+    $"656E 742C 2074 6F20 7468 6520 6D61 7869"            /* ent, to the maxi */
+    $"6D75 6D20 6578 7465 6E74 2070 6572 6D69"            /* mum extent permi */
+    $"7474 6564 2075 6E64 6572 2061 7070 6C69"            /* tted under appli */
+    $"6361 626C 6520 6C61 7720 2861 6E64 206E"            /* cable law (and n */
+    $"6F74 2061 7070 6C69 6361 626C 6520 746F"            /* ot applicable to */
+    $"2063 6C61 696D 7320 7265 6C61 7469 6E67"            /*  claims relating */
+    $"2074 6F20 6465 6174 6820 6F72 2070 6572"            /*  to death or per */
+    $"736F 6E61 6C20 696E 6A75 7279 2063 6175"            /* sonal injury cau */
+    $"7365 6420 6279 206E 6567 6C69 6765 6E63"            /* sed by negligenc */
+    $"6520 6F72 2066 7261 7564 756C 656E 7420"            /* e or fraudulent  */
+    $"6D69 7372 6570 7265 7365 6E74 6174 696F"            /* misrepresentatio */
+    $"6E29 2074 6865 2053 6F66 7477 6172 6520"            /* n) the Software  */
+    $"6973 2070 726F 7669 6465 6420 616E 6420"            /* is provided and  */
+    $"6C69 6365 6E73 6564 2022 6173 2069 7322"            /* licensed "as is" */
+    $"2077 6974 686F 7574 2061 6E79 2077 6172"            /*  without any war */
+    $"7261 6E74 6965 7320 6F66 2061 6E79 206B"            /* ranties of any k */
+    $"696E 642C 2065 7870 7265 7373 206F 7220"            /* ind, express or  */
+    $"696D 706C 6965 642C 2069 6E63 6C75 6469"            /* implied, includi */
+    $"6E67 2061 6E79 2069 6D70 6C69 6564 2077"            /* ng any implied w */
+    $"6172 7261 6E74 6965 7320 6F66 2071 7561"            /* arranties of qua */
+    $"6C69 7479 2C20 7469 746C 652C 206E 6F6E"            /* lity, title, non */
+    $"2D69 6E66 7269 6E67 656D 656E 742C 206E"            /* -infringement, n */
+    $"6F6E 2D69 6E74 6572 7275 7074 696F 6E20"            /* on-interruption  */

... etc. - the rest is truncated


More information about the Libreoffice-commits mailing list