You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hop.apache.org by gi...@apache.org on 2021/06/15 15:49:17 UTC

[incubator-hop-website] branch asf-site updated: Website updated to 3cc3085e

This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/incubator-hop-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 9f5cd31  Website updated to 3cc3085e
9f5cd31 is described below

commit 9f5cd31c163e0b22182c1c6331f4c825f659c072
Author: jenkins <bu...@apache.org>
AuthorDate: Tue Jun 15 15:49:13 2021 +0000

    Website updated to 3cc3085e
---
 .../latest/apache-release/creating-a-release.html  |  35 +-
 .../latest/apache-release/promoting-a-release.html |  26 +-
 .../latest/pipeline/transforms/metastructure.html  |   2 +-
 sitemap-dev-manual.xml                             |  40 +-
 sitemap-manual.xml                                 | 866 ++++++++++-----------
 sitemap-tech-manual.xml                            |  16 +-
 6 files changed, 491 insertions(+), 494 deletions(-)

diff --git a/dev-manual/latest/apache-release/creating-a-release.html b/dev-manual/latest/apache-release/creating-a-release.html
index b898189..5645bfc 100644
--- a/dev-manual/latest/apache-release/creating-a-release.html
+++ b/dev-manual/latest/apache-release/creating-a-release.html
@@ -7,14 +7,35 @@ git push upstream releaseX.XX:releaseX.XX
 git tag -a X.XX-rcX
 git push upstream tag X.XX-rcX</code></pre> </div> </div> </div> </div> <div class="sect1"> <h2 id="_creating_the_release_artifacts"><a class="anchor" href="#_creating_the_release_artifacts"></a>Creating the release artifacts</h2> <div class="sectionbody"> <div class="paragraph"> <p>Checkout the tag to a clean folder to avoid files that are ignored by git and remove the git folder. Next up is creating the tar.gz file</p> </div> <div class="listingblock"> <div class="content"> <pre class= [...]
 rm -rf apache-hop-X.XX-incubating/.git
-tar -czvf apache-hop-X.XX-incubating-rcX.tar.gz apache-hop-X.XX-incubating</code></pre> </div> </div> </div> </div> <div class="sect1"> <h2 id="_sign_the_artifacts"><a class="anchor" href="#_sign_the_artifacts"></a>Sign the artifacts</h2> <div class="sectionbody"> <div class="paragraph"> <p>This part assumes you already have created and registered keys to sign the artifacts, for more information on creating and adding your keys see <a href="#CreatingAKey">here</a></p> </div> <div class=" [...]
-sha512sum apache-hop-X.XX-incubating-rcX.tar.gz &gt; apache-hop-X.XX-incubating-rcX.tar.gz.sha512</code></pre> </div> </div> </div> </div> <div class="sect1"> <h2 id="_staging_the_files"><a class="anchor" href="#_staging_the_files"></a>Staging the files</h2> <div class="sectionbody"> <div class="paragraph"> <p>First step is to check out the SVN directory, and create a new directory</p> </div> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class= [...]
+tar -czvf apache-hop-X.XX-incubating-src.tar.gz apache-hop-X.XX-incubating</code></pre> </div> </div> </div> </div> <div class="sect1"> <h2 id="_sign_the_artifacts"><a class="anchor" href="#_sign_the_artifacts"></a>Sign the artifacts</h2> <div class="sectionbody"> <div class="paragraph"> <p>This part assumes you already have created and registered keys to sign the artifacts, for more information on creating and adding your keys see <a href="#CreatingAKey">here</a></p> </div> <div class=" [...]
+sha512sum apache-hop-X.XX-incubating-src.tar.gz &gt; apache-hop-X.XX-incubating-src.tar.gz.sha512
+
+# Validate
+gpg --verify apache-hop-X.XX-incubating-src.tar.gz.asc
+sha512sum -c apache-hop-X.XX-incubating-src.tar.gz.sha512</code></pre> </div> </div> </div> </div> <div class="sect1"> <h2 id="_creating_the_client"><a class="anchor" href="#_creating_the_client"></a>Creating the client</h2> <div class="sectionbody"> <div class="paragraph"> <p>The client included in the release has to be build using the source code in the release. Use the source you just prepared to generate the client.</p> </div> <div class="listingblock"> <div class="content"> <pre cla [...]
+cd apache-hop-X.XX-incubating/
+
+# Run Build
+mvn -T 4 clean install -DskipTests=true
+
+# Copy client back (and rename)
+cp assemblies/client/target/hop-client-X.XX.zip ../apache-hop-client-X.XX-incubating.zip
+
+# Go back to root of your working dir
+cd ..</code></pre> </div> </div> <div class="paragraph"> <p>As we now added a new binary file we also need to sign and create a sha512 for it.</p> </div> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash"># Create keyfile and sha512
+gpg --armor --default-key username@apache.org --output apache-hop-client-X.XX-incubating.zip.asc --detach-sig apache-hop-client-X.XX-incubating.zip
+sha512sum apache-hop-client-X.XX-incubating.zip &gt; apache-hop-client-X.XX-incubating.zip.sha512
+
+# Validate
+gpg --verify apache-hop-client-X.XX-incubating.zip.asc
+sha512sum -c apache-hop-client-X.XX-incubating.zip.sha512</code></pre> </div> </div> </div> </div> <div class="sect1"> <h2 id="_staging_the_files"><a class="anchor" href="#_staging_the_files"></a>Staging the files</h2> <div class="sectionbody"> <div class="paragraph"> <p>First step is to check out the SVN directory, and create a new directory</p> </div> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">sv [...]
 cd hop_release
-svn mkdir apache-hop-x.xx-incubating-rcx</code></pre> </div> </div> <div class="paragraph"> <p>Now copy over the following files in this new directory</p> </div> <div class="listingblock"> <div class="content"> <pre>apache-hop-X.XX-incubating-rcX.tar.gz.sha512
-apache-hop-X.XX-incubating-rcX.tar.gz.asc
-apache-hop-X.XX-incubating-rcX.tar.gz</pre> </div> </div> <div class="paragraph"> <p>Final checks before adding these files</p> </div> <div class="ulist"> <ul> <li> <p>check chekcsum</p> </li> <li> <p>check pgp signature</p> </li> </ul> </div> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">cd apache-hop-x.xx-incubating-rcx
-gpg --verify apache-hop-X.XX-incubating-rcX.tar.gz.asc
-sha512sum -c apache-hop-X.XX-incubating-rcX.tar.gz.sha512</code></pre> </div> </div> <div class="paragraph"> <p>Add and commit the files to svn</p> </div> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">svn add *
+svn mkdir apache-hop-x.xx-incubating-rcx</code></pre> </div> </div> <div class="paragraph"> <p>Now copy over the following files in this new directory</p> </div> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">apache-hop-X.XX-incubating-src.tar.gz.sha512
+apache-hop-X.XX-incubating-src.tar.gz.asc
+apache-hop-X.XX-incubating-src.tar.gz
+apache-hop-client-X.XX-incubating.zip.sha512
+apache-hop-client-X.XX-incubating.zip.asc
+apache-hop-client-X.XX-incubating.zip</code></pre> </div> </div> <div class="paragraph"> <p>Add and commit the files to svn</p> </div> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">svn add *
 svn status
 svn commit -m 'Add release files for Apache hop X.XX-rcX'</code></pre> </div> </div> <div class="paragraph"> <p>Check if the files are uploaded <a href="https://dist.apache.org/repos/dist/dev/incubator/hop/">here</a></p> </div> </div> </div> <div class="sect1"> <h2 id="_send_mail_to_dev_list_to_announce_new_release_candidate"><a class="anchor" href="#_send_mail_to_dev_list_to_announce_new_release_candidate"></a>Send mail to dev list to announce new release candidate</h2> <div class="sect [...]
 TO: dev@hop.apache.org
diff --git a/dev-manual/latest/apache-release/promoting-a-release.html b/dev-manual/latest/apache-release/promoting-a-release.html
index 7937ce8..ea3fde4 100644
--- a/dev-manual/latest/apache-release/promoting-a-release.html
+++ b/dev-manual/latest/apache-release/promoting-a-release.html
@@ -12,31 +12,7 @@ mv apache-hop-X.XX-incubating-rcX.tar.gz.sha512 apache-hop-X.XX-incubating.tar.g
 #Remove rcx from sha512
 vi apache-hop-X.XX-incubating.tar.gz.sha512
 #Remove rcx and save</code></pre> </div> </div> <div class="paragraph"> <p>Test if both key and sha512 still work</p> </div> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">gpg --verify apache-hop-X.XX-incubating.tar.gz.asc
-sha512sum -c apache-hop-X.XX-incubating.tar.gz.sha512</code></pre> </div> </div> </div> </div> <div class="sect1"> <h2 id="_creating_the_client"><a class="anchor" href="#_creating_the_client"></a>Creating the client</h2> <div class="sectionbody"> <div class="paragraph"> <p>The client included in the release has to be build using the source code in the release. Copy the source you just prepared to a temp location to generate the client.</p> </div> <div class="listingblock"> <div class="co [...]
-mkdir /tmp/client_build
-cp apache-hop-x.xx-incubating.tar.gz /tmp/client_build/
-cd /tmp/client_build
-
-# Extract
-tar -xvf apache-hop-X.XX-incubating.tar.gz
-cd apache-hop-X.XX-incubating
-
-# Run Build
-mvn -T 4 clean install -DskipTests=true
-
-# Copy client back (and rename)
-cp assemblies/client/target/hop-client-X.XX.zip SVN_LOCATION/hop_public_release/X.XX/apache-hop-client-X.XX-incubating.zip
-
-# Switch back to your SVN folder
-cd SVN_LOCATION/hop_public_release/X.XX/</code></pre> </div> </div> <div class="paragraph"> <p>As we now added a new binary file we also need to sign and create a sha512 for it.</p> </div> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash"># Create keyfile and sha512
-gpg --armor --default-key username@apache.org --output apache-hop-client-X.XX-incubating.zip.asc --detach-sig apache-hop-client-X.XX-incubating.zip
-sha512sum apache-hop-client-X.XX-incubating-.zip &gt; apache-hop-client-X.XX-incubating.zip.sha512
-
-# Validate
-gpg --verify apache-hop-client-X.XX-incubating.zip.asc
-sha512sum -c apache-hop-client-X.XX-incubating.zip.sha512</code></pre> </div> </div> <div class="paragraph"> <p>Commit everything to SVN</p> </div> <div class="listingblock"> <div class="content"> <pre class="highlightjs highlight"><code class="language-bash hljs" data-lang="bash">svn add *
-svn status
-svn commit -m 'Add release files for Apache Hop X.XX'</code></pre> </div> </div> </div> </div> <div class="sect1"> <h2 id="_creating_dockerhub_artifacts"><a class="anchor" href="#_creating_dockerhub_artifacts"></a>Creating Dockerhub Artifacts</h2> <div class="sectionbody"> <div class="paragraph"> <p>To create the docker images you can use the build used to create the client, go to the folder with the code and do following steps</p> </div> <div class="listingblock"> <div class="content">  [...]
+sha512sum -c apache-hop-X.XX-incubating.tar.gz.sha512</code></pre> </div> </div> </div> </div> <div class="sect1"> <h2 id="_creating_dockerhub_artifacts"><a class="anchor" href="#_creating_dockerhub_artifacts"></a>Creating Dockerhub Artifacts</h2> <div class="sectionbody"> <div class="paragraph"> <p>To create the docker images you can use the build used to create the client, go to the folder with the code and do following steps</p> </div> <div class="listingblock"> <div class="content">  [...]
 unzip ./assemblies/web/target/hop.war -d ./assemblies/web/target/webapp
 unzip ./assemblies/plugins/dist/target/hop-assemblies-*.zip -d ./assemblies/plugins/dist/target/
 
diff --git a/manual/latest/pipeline/transforms/metastructure.html b/manual/latest/pipeline/transforms/metastructure.html
index 8a7e684..4723ada 100644
--- a/manual/latest/pipeline/transforms/metastructure.html
+++ b/manual/latest/pipeline/transforms/metastructure.html
@@ -1,4 +1,4 @@
-<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Metadata structure of stream :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/manual/latest/pipeline/transforms/metastructure.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../../../_/css/site-54cd9f3f1b.css"> </head> <body class="article"> <div class="cookie-banner" id="cookie [...]
+<!doctype html> <html lang="en"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width,initial-scale=1"> <title>Metadata structure of stream :: Apache Hop (Incubating)</title> <link rel="canonical" href="https://hop.apache.org/manual/latest/pipeline/transforms/metastructure.html"> <meta name="generator" content="Antora 2.3.4"> <link rel="stylesheet" href="../../../../_/css/site-54cd9f3f1b.css"> </head> <body class="article"> <div class="cookie-banner" id="cookie [...]
             (function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
             (i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
             m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
diff --git a/sitemap-dev-manual.xml b/sitemap-dev-manual.xml
index 67dff05..7266e10 100644
--- a/sitemap-dev-manual.xml
+++ b/sitemap-dev-manual.xml
@@ -2,82 +2,82 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/apache-release/checking-a-release.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/apache-release/creating-a-release.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/apache-release/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/apache-release/promoting-a-release.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/getting-started.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/hopweb/developer-guide.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/hopweb/hopweb-antipatterns.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/hopweb/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/integration-testing.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/internationalisation.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/metadata-plugins.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/plugin-development.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/plugin-samples.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/porting-kettle-plugins.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/sdk/hop-sdk.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/sdk/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/setup-dev-environment.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/start-your-own-plugin.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/dev-manual/latest/svg-files.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 </urlset>
diff --git a/sitemap-manual.xml b/sitemap-manual.xml
index d7b7848..767fd60 100644
--- a/sitemap-manual.xml
+++ b/sitemap-manual.xml
@@ -2,1734 +2,1734 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 <url>
 <loc>https://hop.apache.org/manual/latest/best-practices/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/concepts.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/as400.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/cache.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/clickhouse.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/db2.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/derby.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/doris.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/exasol.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/firebird.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/googlebigquery.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/greenplum.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/h2.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/hypersonic.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/infinidb.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/infobright.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/informix.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/ingres.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/interbase.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/kingbasees.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/mariadb.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/monetdb.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/mssql.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/mssqlnative.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/mysql.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/netezza.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/oracle.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/oraclerdb.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/postgresql.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/redshift.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/sapdb.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/snowflake.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/sqlbase.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/sqlite.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/sybase.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/sybaseiq.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/teradata.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/universe.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/vectorwise.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/database/databases/vertica.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/faq/faq.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/getting-started/hop-concepts.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/getting-started/hop-download-install.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/getting-started/hop-gui-pipelines.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/getting-started/hop-gui-workflows.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/getting-started/hop-gui.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/getting-started/hop-next-steps.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/getting-started/hop-tools.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/getting-started/hop-what-is-hop.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/getting-started/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/file-dialog.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/hop-gui-git.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/hop-web.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/perspective-data-orchestration.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/perspective-file-explorer.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/perspective-metadata.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/perspective-neo4j.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/perspective-plugin.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/perspective-search.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/perspectives.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-gui/shortcuts.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-run/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-search/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-server/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-server/rest-api.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-server/web-service.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-tools/hop-conf/hop-conf-cloud-aws-s3.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-tools/hop-conf/hop-conf-cloud-azure-blob-storage.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-tools/hop-conf/hop-conf-cloud-google-cloud-storage.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-tools/hop-conf/hop-conf-cloud-google-drive.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-tools/hop-conf/hop-conf-projects.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-tools/hop-conf/hop-conf-run-hpl-hwf.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-tools/hop-conf/hop-conf.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-tools/hop-encrypt.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-tools/hop-search.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/hop-tools/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/image-testpage.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/logging/logging-basics.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/logging/logging-reflection.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/metadata-types/beam-file-definition.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/metadata-types/cassandra/cassandra-connection.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/metadata-types/data-set.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/metadata-types/hop-server.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/metadata-types/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/metadata-types/mongodb-connection.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/metadata-types/neo4j/neo4j-connection.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/metadata-types/neo4j/neo4j-graphmodel.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/metadata-types/partition-schema.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/metadata-types/pipeline-log.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/metadata-types/pipeline-probe.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/metadata-types/pipeline-run-config.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/metadata-types/pipeline-unit-test.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/metadata-types/rdbms-connection.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/metadata-types/splunk-connection.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/metadata-types/web-service.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/metadata-types/workflow-log.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/metadata-types/workflow-run-config.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/password/passwords.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/password/passwords/aespasswords.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/create-pipeline.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/hop-pipeline-editor.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/metadata-injection.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/partitioning.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/pipeline-run-configurations/beam-dataflow-pipeline-engine.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/pipeline-run-configurations/beam-direct-pipeline-engine.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/pipeline-run-configurations/beam-flink-pipeline-engine.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/pipeline-run-configurations/beam-spark-pipeline-engine.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/pipeline-run-configurations/native-local-pipeline-engine.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/pipeline-run-configurations/native-remote-pipeline-engine.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/pipeline-run-configurations/pipeline-run-configurations.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/pipeline-unit-testing.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/pipelines.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/run-preview-debug-pipeline.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/abort.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/addchecksum.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/addconstant.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/addfieldschangesequence.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/addsequence.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/addxml.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/analyticquery.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/append.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/avro-decode.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/avro-file-input.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/azure-event-hubs-listener.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/azure-event-hubs-writer.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/beambigqueryinput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/beambigqueryoutput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/beamgcppublisher.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/beamgcpsubscriber.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/beaminput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/beamkafkaconsume.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/beamkafkaproduce.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/beamoutput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/beamtimestamp.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/beamwindow.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/blockingtransform.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/blockuntiltransformsfinish.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/calculator.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/calldbproc.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/cassandra-input.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/cassandra-output.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/changefileencoding.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/checkfilelocked.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/checkwebserviceavailable.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/clonerow.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/closure.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/coalesce.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/columnexists.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/combinationlookup.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/concatfields.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/copyrowstoresult.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/creditcardvalidator.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/csvinput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/cubeinput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/cubeoutput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/databasejoin.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/databaselookup.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/datagrid.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/delay.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/delete.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/detectemptystream.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/dimensionlookup.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/dropboxinput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/dropboxoutput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/dummy.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/dynamicsqlrow.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/edi2xml.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/emailinput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/enhancedjsonoutput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/excelinput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/excelwriter.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/execprocess.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/execsql.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/execsqlrow.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/exectests.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/fake.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/fileexists.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/filemetadata.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/filesfromresult.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/filestoresult.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/filter.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/filterrows.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/fuzzymatch.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/generaterandomvalue.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/getdatafromxml.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/getfilenames.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/getfilesrowcount.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/getrecordsfromstream.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/getrowsfromresult.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/getserversequence.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/getsubfolders.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/getsystemdata.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/gettablenames.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/getvariable.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/googleanalytics.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/googlesheetsinput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/googlesheetsoutput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/groupby.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/http.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/httppost.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/identifylastrow.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/ifnull.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/injector.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/insertupdate.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/javafilter.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/javascript.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/joinrows.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/jsoninput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/jsonoutput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/kafkaconsumer.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/kafkaproducer.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/ldapinput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/ldapoutput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/loadfileinput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/mail.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/mailvalidator.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/mapping-input.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/mapping-output.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/memgroupby.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/mergejoin.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/mergerows.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/metainject.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/metastructure.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/monetdbbulkloader.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/mongodbinput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/mongodboutput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/mqttpublisher.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/mqttsubscriber.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/multimerge.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/neo4j-cypher.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/neo4j-gencsv.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/neo4j-getloginfo.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/neo4j-graphoutput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/neo4j-import.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/neo4j-output.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/neo4j-split-graph.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/nullif.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/numberrange.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/parquet-file-input.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/parquet-file-output.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/pgpdecryptstream.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/pgpencryptstream.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/pipelineexecutor.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/postgresbulkloader.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/processfiles.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/propertyinput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/propertyoutput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/regexeval.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/replacestring.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/reservoirsampling.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/rest.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/rowdenormaliser.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/rowflattener.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/rowgenerator.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/rownormaliser.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/runssh.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/salesforce-connection.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/salesforce-fields.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/salesforce-settings.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/salesforcedelete.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/salesforceinput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/salesforceinsert.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/salesforceupdate.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/salesforceupsert.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/samplerows.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/sasinput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/selectvalues.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/setvalueconstant.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/setvaluefield.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/setvariable.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/simple-mapping.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/sort.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/sortedmerge.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/splitfields.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/splitfieldtorows.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/splunkinput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/sqlfileoutput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/sstable-output.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/streamlookup.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/streamschemamerge.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/stringcut.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/stringoperations.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/switchcase.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/synchronizeaftermerge.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/tablecompare.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/tableexists.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/tableinput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/tableoutput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/terafast.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/textfileinput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/textfileoutput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/tokenreplacement.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/uniquerows.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/uniquerowsbyhashset.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/update.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/userdefinedjavaclass.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/userdefinedjavaexpression.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/valuemapper.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/webservices.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/workflowexecutor.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/writetolog.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/xmlinputstream.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/xmljoin.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/xmloutput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/xsdvalidator.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/xslt.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/yamlinput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/pipeline/transforms/zipfile.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/external-plugins.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/plugins.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/projects.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/plugins/projects/projects.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/projects/advanced.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/projects/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/projects/metadata.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/projects/projects-environments.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/samples/samples.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/snippets/hop-concepts/action.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/snippets/hop-concepts/environment.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/snippets/hop-concepts/hop-projects-environments.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/snippets/hop-concepts/hop.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/snippets/hop-concepts/item-types.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/snippets/hop-concepts/lazy-loading.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/snippets/hop-concepts/metadata.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/snippets/hop-concepts/pipeline.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/snippets/hop-concepts/project.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/snippets/hop-concepts/transform.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/snippets/hop-concepts/workflow.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/snippets/hop-tools/hop-conf.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/snippets/hop-tools/hop-encrypt.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/snippets/hop-tools/hop-gui.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/snippets/hop-tools/hop-run.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/snippets/hop-tools/hop-search.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/snippets/hop-tools/hop-server.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/snippets/hop-tools/hop-tools.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/snippets/hop-tools/hop-translator.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/technology/azure/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/technology/cassandra/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/technology/google/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/technology/neo4j/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/technology/technology.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/variables.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/vfs.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/vfs/aws-s3-vfs.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/vfs/azure-blob-storage-vfs.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/vfs/google-cloud-storage-vfs.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/vfs/google-drive-vfs.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/abort.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/addresultfilenames.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/as400command.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/cassandra-exec-cql.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/checkdbconnection.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/checkfilelocked.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/columnsexist.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/copyfiles.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/copymoveresultfilenames.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/createfile.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/createfolder.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/delay.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/deletefile.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/deletefiles.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/deletefolders.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/deleteresultfilenames.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/dostounix.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/dtdvalidator.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/dummy.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/eval.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/evalfilesmetrics.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/evaluatetablecontent.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/filecompare.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/fileexists.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/filesexist.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/folderisempty.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/folderscompare.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/ftp.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/ftpdelete.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/ftpput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/ftpsget.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/ftpsput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/getpop.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/http.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/mail.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/mailvalidator.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/movefiles.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/msgboxinfo.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/mssqlbulkload.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/mysqlbulkfile.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/mysqlbulkload.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/neo4j-checkconnections.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/neo4j-cypherscript.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/pgpdecryptfiles.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/pgpencryptfiles.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/pgpfiles.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/pgpverify.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/ping.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/pipeline.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/repeat-end.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/repeat.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/runpipelinetests.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/sendnagiospassivecheck.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/setvariables.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/sftp.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/sftpput.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/shell.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/simpleeval.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/snmptrap.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/sql.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/start.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/success.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/tableexists.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/telnet.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/truncatetables.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/unzip.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/waitforfile.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/waitforsql.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/webserviceavailable.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/workflow.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/writetofile.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/writetolog.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/xmlwellformed.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/xsdvalidator.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/xslt.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/actions/zipfile.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/create-workflow.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/run-debug-workflow.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/workflow-run-configurations/native-remote-workflow-engine.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/workflow-run-configurations/workflow-run-configurations.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/manual/latest/workflow/workflows.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 </urlset>
diff --git a/sitemap-tech-manual.xml b/sitemap-tech-manual.xml
index 5ef79c6..274f5d6 100644
--- a/sitemap-tech-manual.xml
+++ b/sitemap-tech-manual.xml
@@ -2,34 +2,34 @@
 <urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
 <url>
 <loc>https://hop.apache.org/tech-manual/latest/docker-container.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/tech-manual/latest/getting-started.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/tech-manual/latest/hop-logo-and-icons.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/tech-manual/latest/hop-vs-kettle/hop-vs-kettle.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/tech-manual/latest/hop-vs-kettle/if-you-know-kettle.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/tech-manual/latest/hop-vs-kettle/import-kettle-projects.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/tech-manual/latest/hop-vs-kettle/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 <url>
 <loc>https://hop.apache.org/tech-manual/latest/index.html</loc>
-<lastmod>2021-06-13T19:49:40.576Z</lastmod>
+<lastmod>2021-06-15T15:48:28.452Z</lastmod>
 </url>
 </urlset>