Build metadata GHS-composite-S2 R2020A

This section covers mirroring locally the UK section of the cloud-free composite Sentinel-2 mosaic created by the European Commission. Official website is over at:

https://ghsl.jrc.ec.europa.eu/ghs_s2composite.php

And paper for the dataset is:

Corbane, C., Politis, P., Kempeneers, P., Simonetti, D., Soille, P., Burger, A., … & Kemper, T. (2020). A global cloud free pixel-based image composite from Sentinel-2 data. Data in Brief, 105737.

try:
    from download import download
except:
    !pip install download
    from download import download
import sys
sys.path.insert(0, "../")
import utils
import rasterio
import rioxarray
import pandas
import geopandas
from shapely.geometry import box
from datetime import datetime

Local/remote paths

The base URL for the dataset’s FTP is:

base_url = ("http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/"\
            "GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/"\
            "GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/"
           )
base_url
'http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/'

Tile listing

According to Corbane et al. (2020), the dataset is split on UTM tiles, each of them further subdivided on small GeoTIFF files.

The tiles required to cover Great Britain are:

gb_utm_tiles = ["30U", "31U", "29V", "30V"]

And all of the UTM tiles covered by the dataset can be accessed from the official FTP site:

%time utm_tiles = pandas.read_html(base_url, skiprows=2)[0].iloc[:-1, :]
CPU times: user 171 ms, sys: 11.2 ms, total: 182 ms
Wall time: 1min 13s

This gives us the full list of tables available. However, tiles on the 1 do not appear on the official page map, so we will remove them. The final object is a list we can easily iterate over:

utm_tile_ids = [i for i in utm_tiles["Parent Directory"] \
                if not (i[0]=="1" and len(i)==3)]

Virtual rasters

Each UTM tile has a .vrt file, a XML file that lists each component. For example, for the 30U tile, it is available at:

p = f"{base_url}{utm_tile_ids[0]}{utm_tile_ids[0].strip('/')}_UTM.vrt"
p
'http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/2K_UTM.vrt'

Since rasterio supports .vrt files, we can inspect it:

%time tile30U = rasterio.open(p)
CPU times: user 3.97 ms, sys: 3.96 ms, total: 7.93 ms
Wall time: 613 ms

You can get a full list of the components of the virtual raster with files:

tile30U.files
['/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/2K_UTM.vrt',
 '/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/2K_UTM.vrt.ovr',
 '/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/2K_UTM.vrt.ovr.ovr',
 '/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/2K_UTM.vrt.ovr.ovr.ovr',
 '/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/2K_UTM.vrt.ovr.ovr.ovr.ovr',
 '/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/2K_UTM.vrt.ovr.ovr.ovr.ovr.ovr',
 '/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/2K_UTM.vrt.ovr.ovr.ovr.ovr.ovr.ovr',
 '/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/2K_UTM.vrt.ovr.ovr.ovr.ovr.ovr.ovr.ovr',
 '/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/2K_UTM.vrt.ovr.ovr.ovr.ovr.ovr.ovr.ovr.ovr',
 '/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/2K_UTM.vrt.ovr.ovr.ovr.ovr.ovr.ovr.ovr.ovr.ovr',
 '/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/S2_percentile_30_UTM_721-0000069888-0000000000.tif',
 '/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/S2_percentile_30_UTM_721-0000046592-0000046592.tif',
 '/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/S2_percentile_30_UTM_721-0000046592-0000023296.tif',
 '/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/S2_percentile_30_UTM_721-0000046592-0000000000.tif',
 '/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/S2_percentile_30_UTM_721-0000023296-0000046592.tif',
 '/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/S2_percentile_30_UTM_721-0000023296-0000023296.tif',
 '/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/S2_percentile_30_UTM_721-0000023296-0000000000.tif',
 '/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/S2_percentile_30_UTM_721-0000000000-0000046592.tif',
 '/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/S2_percentile_30_UTM_721-0000000000-0000023296.tif',
 '/vsicurl/http://jeodpp.jrc.ec.europa.eu/ftp/jrc-opendata/GHSL/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A/GHS_composite_S2_L1C_2017-2018_GLOBE_R2020A_UTM_10/V1-0/2K/S2_percentile_30_UTM_721-0000000000-0000000000.tif']

Build index GeoJSON

Here we build a GeoJSON file with every single GeoTIFF file that makes up the mosaic of all tiles. The strategy is:

  1. Loop over UTM tiles

  2. For each UTM, read .vrt and pull out GeoTIFF components

  3. For each GeoTIFF, extract:

    • URL

    • CRS

    • UTM tile

    • Corners

    • Polygon with corners

  4. Build GeoDataFrame for each UTM and convert to EPSG:4326

  5. Concatenate all tables into a single one

  6. Write out

Much of the heavy-lifting for each tile is done on utils.parse_tile_meta, the rest of is done in the following loop:

%%time
outfile = "GHS-composite-S2.geojson"
! rm -rf $outfile
meta = []
for tile in utm_tile_ids:
    tile_meta = utils.parse_tile_meta(tile)
    meta.append(tile_meta.to_crs(epsg=4326))
meta = pandas.concat(meta).reset_index(drop=True)
meta.to_file(outfile, driver="GeoJSON")
29/10/2020 14:35:41 | Working on tile 2K
29/10/2020 14:35:42 | 10 files to process
	29/10/2020 14:35:42 | Working on file S2_percentile_30_UTM_721-0000069888-0000000000.tif
	29/10/2020 14:35:43 | Working on file S2_percentile_30_UTM_721-0000046592-0000046592.tif
	29/10/2020 14:35:43 | Working on file S2_percentile_30_UTM_721-0000046592-0000023296.tif
	29/10/2020 14:35:44 | Working on file S2_percentile_30_UTM_721-0000046592-0000000000.tif
	29/10/2020 14:35:44 | Working on file S2_percentile_30_UTM_721-0000023296-0000046592.tif
	29/10/2020 14:35:45 | Working on file S2_percentile_30_UTM_721-0000023296-0000023296.tif
	29/10/2020 14:35:46 | Working on file S2_percentile_30_UTM_721-0000023296-0000000000.tif
	29/10/2020 14:35:47 | Working on file S2_percentile_30_UTM_721-0000000000-0000046592.tif
	29/10/2020 14:35:47 | Working on file S2_percentile_30_UTM_721-0000000000-0000023296.tif
	29/10/2020 14:35:48 | Working on file S2_percentile_30_UTM_721-0000000000-0000000000.tif
29/10/2020 14:35:49 | Working on tile 2L
29/10/2020 14:35:55 | 1 files to process
	29/10/2020 14:35:55 | Working on file 2L_UTM.tif
29/10/2020 14:35:58 | Working on tile 2Q
29/10/2020 14:36:05 | 1 files to process
	29/10/2020 14:36:05 | Working on file 2Q_UTM.tif
29/10/2020 14:36:07 | Working on tile 2U
29/10/2020 14:36:13 | 1 files to process
	29/10/2020 14:36:13 | Working on file 2U_UTM.tif
29/10/2020 14:36:17 | Working on tile 2V
29/10/2020 14:36:23 | 8 files to process
	29/10/2020 14:36:23 | Working on file S2_percentile_30_UTM_121-0000069888-0000023296.tif
	29/10/2020 14:36:24 | Working on file S2_percentile_30_UTM_121-0000069888-0000000000.tif
	29/10/2020 14:36:27 | Working on file S2_percentile_30_UTM_121-0000046592-0000023296.tif
	29/10/2020 14:36:32 | Working on file S2_percentile_30_UTM_121-0000046592-0000000000.tif
	29/10/2020 14:36:37 | Working on file S2_percentile_30_UTM_121-0000023296-0000023296.tif
	29/10/2020 14:36:38 | Working on file S2_percentile_30_UTM_121-0000023296-0000000000.tif
	29/10/2020 14:36:39 | Working on file S2_percentile_30_UTM_121-0000000000-0000023296.tif
	29/10/2020 14:36:39 | Working on file S2_percentile_30_UTM_121-0000000000-0000000000.tif
29/10/2020 14:36:42 | Working on tile 2W
29/10/2020 14:36:52 | 8 files to process
	29/10/2020 14:36:52 | Working on file S2_percentile_30_UTM_61-0000069888-0000023296.tif
	29/10/2020 14:36:52 | Working on file S2_percentile_30_UTM_61-0000069888-0000000000.tif
	29/10/2020 14:36:54 | Working on file S2_percentile_30_UTM_61-0000046592-0000023296.tif
	29/10/2020 14:36:58 | Working on file S2_percentile_30_UTM_61-0000046592-0000000000.tif
	29/10/2020 14:37:01 | Working on file S2_percentile_30_UTM_61-0000023296-0000023296.tif
	29/10/2020 14:37:03 | Working on file S2_percentile_30_UTM_61-0000023296-0000000000.tif
	29/10/2020 14:37:06 | Working on file S2_percentile_30_UTM_61-0000000000-0000023296.tif
	29/10/2020 14:37:09 | Working on file S2_percentile_30_UTM_61-0000000000-0000000000.tif
29/10/2020 14:37:12 | Working on tile 3K
29/10/2020 14:37:24 | 3 files to process
	29/10/2020 14:37:24 | Working on file S2_percentile_30_UTM_722-0000046592-0000000000.tif
	29/10/2020 14:37:26 | Working on file S2_percentile_30_UTM_722-0000023296-0000000000.tif
	29/10/2020 14:37:27 | Working on file S2_percentile_30_UTM_722-0000000000-0000000000.tif
29/10/2020 14:37:28 | Working on tile 3L
29/10/2020 14:37:37 | 3 files to process
	29/10/2020 14:37:37 | Working on file S2_percentile_30_UTM_662-0000069888-0000023296.tif
	29/10/2020 14:37:38 | Working on file S2_percentile_30_UTM_662-0000069888-0000000000.tif
	29/10/2020 14:37:39 | Working on file S2_percentile_30_UTM_662-0000046592-0000000000.tif
29/10/2020 14:37:40 | Working on tile 3U
29/10/2020 14:37:47 | 6 files to process
	29/10/2020 14:37:47 | Working on file S2_percentile_30_UTM_182-0000046592-0000023296.tif
	29/10/2020 14:37:48 | Working on file S2_percentile_30_UTM_182-0000046592-0000000000.tif
	29/10/2020 14:37:49 | Working on file S2_percentile_30_UTM_182-0000023296-0000023296.tif
	29/10/2020 14:37:50 | Working on file S2_percentile_30_UTM_182-0000023296-0000000000.tif
	29/10/2020 14:37:51 | Working on file S2_percentile_30_UTM_182-0000000000-0000023296.tif
	29/10/2020 14:37:53 | Working on file S2_percentile_30_UTM_182-0000000000-0000000000.tif
29/10/2020 14:37:54 | Working on tile 3V
29/10/2020 14:38:05 | 8 files to process
	29/10/2020 14:38:05 | Working on file S2_percentile_30_UTM_122-0000069888-0000023296.tif
	29/10/2020 14:38:07 | Working on file S2_percentile_30_UTM_122-0000069888-0000000000.tif
	29/10/2020 14:38:08 | Working on file S2_percentile_30_UTM_122-0000046592-0000023296.tif
	29/10/2020 14:38:09 | Working on file S2_percentile_30_UTM_122-0000046592-0000000000.tif
	29/10/2020 14:38:10 | Working on file S2_percentile_30_UTM_122-0000023296-0000023296.tif
	29/10/2020 14:38:10 | Working on file S2_percentile_30_UTM_122-0000023296-0000000000.tif
	29/10/2020 14:38:11 | Working on file S2_percentile_30_UTM_122-0000000000-0000023296.tif
	29/10/2020 14:38:12 | Working on file S2_percentile_30_UTM_122-0000000000-0000000000.tif
29/10/2020 14:38:13 | Working on tile 3W
	3W_UTM.vrt contains no GeoTIFF, attempting 3W.vrt
29/10/2020 14:38:15 | 8 files to process
	29/10/2020 14:38:15 | Working on file S2_percentile_30_UTM_62-0000069888-0000023296.tif
	29/10/2020 14:38:16 | Working on file S2_percentile_30_UTM_62-0000069888-0000000000.tif
	29/10/2020 14:38:17 | Working on file S2_percentile_30_UTM_62-0000046592-0000023296.tif
	29/10/2020 14:38:17 | Working on file S2_percentile_30_UTM_62-0000046592-0000000000.tif
	29/10/2020 14:38:18 | Working on file S2_percentile_30_UTM_62-0000023296-0000023296.tif
	29/10/2020 14:38:20 | Working on file S2_percentile_30_UTM_62-0000023296-0000000000.tif
	29/10/2020 14:38:21 | Working on file S2_percentile_30_UTM_62-0000000000-0000023296.tif
	29/10/2020 14:38:21 | Working on file S2_percentile_30_UTM_62-0000000000-0000000000.tif
29/10/2020 14:38:22 | Working on tile 4L
29/10/2020 14:38:29 | 3 files to process
	29/10/2020 14:38:29 | Working on file S2_percentile_30_UTM_663-0000023296-0000046592.tif
	29/10/2020 14:38:30 | Working on file S2_percentile_30_UTM_663-0000000000-0000046592.tif
	29/10/2020 14:38:30 | Working on file S2_percentile_30_UTM_663-0000000000-0000023296.tif
29/10/2020 14:38:31 | Working on tile 4M
29/10/2020 14:38:41 | 4 files to process
	29/10/2020 14:38:41 | Working on file S2_percentile_30_UTM_603-0000069888-0000046592.tif
	29/10/2020 14:38:42 | Working on file S2_percentile_30_UTM_603-0000069888-0000023296.tif
	29/10/2020 14:38:42 | Working on file S2_percentile_30_UTM_603-0000046592-0000046592.tif
	29/10/2020 14:38:43 | Working on file S2_percentile_30_UTM_603-0000046592-0000023296.tif
29/10/2020 14:38:44 | Working on tile 4N
29/10/2020 14:38:49 | 4 files to process
	29/10/2020 14:38:49 | Working on file S2_percentile_30_UTM_543-0000069888-0000046592.tif
	29/10/2020 14:38:50 | Working on file S2_percentile_30_UTM_543-0000069888-0000023296.tif
	29/10/2020 14:38:51 | Working on file S2_percentile_30_UTM_543-0000046592-0000046592.tif
	29/10/2020 14:38:52 | Working on file S2_percentile_30_UTM_543-0000046592-0000023296.tif
29/10/2020 14:38:52 | Working on tile 4Q
29/10/2020 14:38:59 | 8 files to process
	29/10/2020 14:38:59 | Working on file S2_percentile_30_UTM_423-0000046592-0000046592.tif
	29/10/2020 14:39:00 | Working on file S2_percentile_30_UTM_423-0000046592-0000023296.tif
	29/10/2020 14:39:01 | Working on file S2_percentile_30_UTM_423-0000023296-0000046592.tif
	29/10/2020 14:39:02 | Working on file S2_percentile_30_UTM_423-0000023296-0000023296.tif
	29/10/2020 14:39:04 | Working on file S2_percentile_30_UTM_423-0000023296-0000000000.tif
	29/10/2020 14:39:05 | Working on file S2_percentile_30_UTM_423-0000000000-0000046592.tif
	29/10/2020 14:39:06 | Working on file S2_percentile_30_UTM_423-0000000000-0000023296.tif
	29/10/2020 14:39:07 | Working on file S2_percentile_30_UTM_423-0000000000-0000000000.tif
29/10/2020 14:39:08 | Working on tile 4U
29/10/2020 14:39:13 | 4 files to process
	29/10/2020 14:39:13 | Working on file S2_percentile_30_UTM_183-0000023296-0000023296.tif
	29/10/2020 14:39:14 | Working on file S2_percentile_30_UTM_183-0000023296-0000000000.tif
	29/10/2020 14:39:15 | Working on file S2_percentile_30_UTM_183-0000000000-0000023296.tif
	29/10/2020 14:39:17 | Working on file S2_percentile_30_UTM_183-0000000000-0000000000.tif
29/10/2020 14:39:18 | Working on tile 4V
29/10/2020 14:39:27 | 8 files to process
	29/10/2020 14:39:27 | Working on file S2_percentile_30_UTM_123-0000069888-0000023296.tif
	29/10/2020 14:39:28 | Working on file S2_percentile_30_UTM_123-0000069888-0000000000.tif
	29/10/2020 14:39:29 | Working on file S2_percentile_30_UTM_123-0000046592-0000023296.tif
	29/10/2020 14:39:30 | Working on file S2_percentile_30_UTM_123-0000046592-0000000000.tif
	29/10/2020 14:39:31 | Working on file S2_percentile_30_UTM_123-0000023296-0000023296.tif
	29/10/2020 14:39:31 | Working on file S2_percentile_30_UTM_123-0000023296-0000000000.tif
	29/10/2020 14:39:32 | Working on file S2_percentile_30_UTM_123-0000000000-0000023296.tif
	29/10/2020 14:39:33 | Working on file S2_percentile_30_UTM_123-0000000000-0000000000.tif
29/10/2020 14:39:34 | Working on tile 4W
29/10/2020 14:39:43 | 8 files to process
	29/10/2020 14:39:43 | Working on file S2_percentile_30_UTM_63-0000069888-0000023296.tif
	29/10/2020 14:39:44 | Working on file S2_percentile_30_UTM_63-0000069888-0000000000.tif
	29/10/2020 14:39:45 | Working on file S2_percentile_30_UTM_63-0000046592-0000023296.tif
	29/10/2020 14:39:45 | Working on file S2_percentile_30_UTM_63-0000046592-0000000000.tif
	29/10/2020 14:39:46 | Working on file S2_percentile_30_UTM_63-0000023296-0000023296.tif
	29/10/2020 14:39:47 | Working on file S2_percentile_30_UTM_63-0000023296-0000000000.tif
	29/10/2020 14:39:47 | Working on file S2_percentile_30_UTM_63-0000000000-0000023296.tif
	29/10/2020 14:39:48 | Working on file S2_percentile_30_UTM_63-0000000000-0000000000.tif
29/10/2020 14:39:49 | Working on tile 5K
29/10/2020 14:39:56 | 4 files to process
	29/10/2020 14:39:56 | Working on file S2_percentile_30_UTM_724-0000023296-0000046592.tif
	29/10/2020 14:39:57 | Working on file S2_percentile_30_UTM_724-0000000000-0000046592.tif
	29/10/2020 14:39:58 | Working on file S2_percentile_30_UTM_724-0000000000-0000023296.tif
	29/10/2020 14:39:59 | Working on file S2_percentile_30_UTM_724-0000000000-0000000000.tif
29/10/2020 14:40:00 | Working on tile 5L
29/10/2020 14:40:11 | 9 files to process
	29/10/2020 14:40:11 | Working on file S2_percentile_30_UTM_664-0000069888-0000046592.tif
	29/10/2020 14:40:12 | Working on file S2_percentile_30_UTM_664-0000069888-0000023296.tif
	29/10/2020 14:40:13 | Working on file S2_percentile_30_UTM_664-0000046592-0000046592.tif
	29/10/2020 14:40:13 | Working on file S2_percentile_30_UTM_664-0000023296-0000046592.tif
	29/10/2020 14:40:14 | Working on file S2_percentile_30_UTM_664-0000023296-0000023296.tif
	29/10/2020 14:40:15 | Working on file S2_percentile_30_UTM_664-0000023296-0000000000.tif
	29/10/2020 14:40:16 | Working on file S2_percentile_30_UTM_664-0000000000-0000046592.tif
	29/10/2020 14:40:16 | Working on file S2_percentile_30_UTM_664-0000000000-0000023296.tif
	29/10/2020 14:40:17 | Working on file S2_percentile_30_UTM_664-0000000000-0000000000.tif
29/10/2020 14:40:19 | Working on tile 5M
29/10/2020 14:40:25 | 6 files to process
	29/10/2020 14:40:25 | Working on file S2_percentile_30_UTM_604-0000069888-0000046592.tif
	29/10/2020 14:40:27 | Working on file S2_percentile_30_UTM_604-0000069888-0000023296.tif
	29/10/2020 14:40:28 | Working on file S2_percentile_30_UTM_604-0000069888-0000000000.tif
	29/10/2020 14:40:29 | Working on file S2_percentile_30_UTM_604-0000046592-0000046592.tif
	29/10/2020 14:40:30 | Working on file S2_percentile_30_UTM_604-0000046592-0000023296.tif
	29/10/2020 14:40:31 | Working on file S2_percentile_30_UTM_604-0000046592-0000000000.tif
29/10/2020 14:40:31 | Working on tile 5Q
29/10/2020 14:40:39 | 6 files to process
	29/10/2020 14:40:39 | Working on file S2_percentile_30_UTM_424-0000069888-0000046592.tif
	29/10/2020 14:40:40 | Working on file S2_percentile_30_UTM_424-0000046592-0000046592.tif
	29/10/2020 14:40:41 | Working on file S2_percentile_30_UTM_424-0000046592-0000023296.tif
	29/10/2020 14:40:41 | Working on file S2_percentile_30_UTM_424-0000046592-0000000000.tif
	29/10/2020 14:40:42 | Working on file S2_percentile_30_UTM_424-0000023296-0000023296.tif
	29/10/2020 14:40:45 | Working on file S2_percentile_30_UTM_424-0000023296-0000000000.tif
29/10/2020 14:40:47 | Working on tile 5U
	5U_UTM.vrt contains no GeoTIFF, attempting 5U.vrt
29/10/2020 14:40:50 | 3 files to process
	29/10/2020 14:40:50 | Working on file S2_percentile_30_UTM_184-0000023296-0000000000.tif
	29/10/2020 14:40:51 | Working on file S2_percentile_30_UTM_184-0000000000-0000023296.tif
	29/10/2020 14:40:52 | Working on file S2_percentile_30_UTM_184-0000000000-0000000000.tif
29/10/2020 14:40:53 | Working on tile 5V
29/10/2020 14:41:00 | 8 files to process
	29/10/2020 14:41:00 | Working on file S2_percentile_30_UTM_124-0000069888-0000023296.tif
	29/10/2020 14:41:01 | Working on file S2_percentile_30_UTM_124-0000069888-0000000000.tif
	29/10/2020 14:41:02 | Working on file S2_percentile_30_UTM_124-0000046592-0000023296.tif
	29/10/2020 14:41:03 | Working on file S2_percentile_30_UTM_124-0000046592-0000000000.tif
	29/10/2020 14:41:04 | Working on file S2_percentile_30_UTM_124-0000023296-0000023296.tif
	29/10/2020 14:41:05 | Working on file S2_percentile_30_UTM_124-0000023296-0000000000.tif
	29/10/2020 14:41:07 | Working on file S2_percentile_30_UTM_124-0000000000-0000023296.tif
	29/10/2020 14:41:07 | Working on file S2_percentile_30_UTM_124-0000000000-0000000000.tif
29/10/2020 14:41:08 | Working on tile 5W
29/10/2020 14:41:16 | 8 files to process
	29/10/2020 14:41:16 | Working on file S2_percentile_30_UTM_64-0000069888-0000023296.tif
	29/10/2020 14:41:17 | Working on file S2_percentile_30_UTM_64-0000069888-0000000000.tif
	29/10/2020 14:41:17 | Working on file S2_percentile_30_UTM_64-0000046592-0000023296.tif
	29/10/2020 14:41:18 | Working on file S2_percentile_30_UTM_64-0000046592-0000000000.tif
	29/10/2020 14:41:19 | Working on file S2_percentile_30_UTM_64-0000023296-0000023296.tif
	29/10/2020 14:41:20 | Working on file S2_percentile_30_UTM_64-0000023296-0000000000.tif
	29/10/2020 14:41:20 | Working on file S2_percentile_30_UTM_64-0000000000-0000023296.tif
	29/10/2020 14:41:21 | Working on file S2_percentile_30_UTM_64-0000000000-0000000000.tif
29/10/2020 14:41:22 | Working on tile 6K
	6K_UTM.vrt contains no GeoTIFF, attempting 6K.vrt
29/10/2020 14:41:24 | 4 files to process
	29/10/2020 14:41:24 | Working on file S2_percentile_30_UTM_725-0000023296-0000023296.tif
	29/10/2020 14:41:25 | Working on file S2_percentile_30_UTM_725-0000023296-0000000000.tif
	29/10/2020 14:41:26 | Working on file S2_percentile_30_UTM_725-0000000000-0000023296.tif
	29/10/2020 14:41:27 | Working on file S2_percentile_30_UTM_725-0000000000-0000000000.tif
29/10/2020 14:41:28 | Working on tile 6L
	6L_UTM.vrt contains no GeoTIFF, attempting 6L.vrt
29/10/2020 14:41:32 | 7 files to process
	29/10/2020 14:41:32 | Working on file S2_percentile_30_UTM_665-0000046592-0000023296.tif
	29/10/2020 14:41:33 | Working on file S2_percentile_30_UTM_665-0000046592-0000000000.tif
	29/10/2020 14:41:34 | Working on file S2_percentile_30_UTM_665-0000023296-0000046592.tif
	29/10/2020 14:41:34 | Working on file S2_percentile_30_UTM_665-0000023296-0000023296.tif
	29/10/2020 14:41:35 | Working on file S2_percentile_30_UTM_665-0000023296-0000000000.tif
	29/10/2020 14:41:36 | Working on file S2_percentile_30_UTM_665-0000000000-0000023296.tif
	29/10/2020 14:41:37 | Working on file S2_percentile_30_UTM_665-0000000000-0000000000.tif
29/10/2020 14:41:38 | Working on tile 6V
29/10/2020 14:41:46 | 8 files to process
	29/10/2020 14:41:46 | Working on file S2_percentile_30_UTM_125-0000069888-0000023296.tif
	29/10/2020 14:41:47 | Working on file S2_percentile_30_UTM_125-0000069888-0000000000.tif
	29/10/2020 14:41:48 | Working on file S2_percentile_30_UTM_125-0000046592-0000023296.tif
	29/10/2020 14:41:49 | Working on file S2_percentile_30_UTM_125-0000046592-0000000000.tif
	29/10/2020 14:41:50 | Working on file S2_percentile_30_UTM_125-0000023296-0000023296.tif
	29/10/2020 14:41:51 | Working on file S2_percentile_30_UTM_125-0000023296-0000000000.tif
	29/10/2020 14:41:52 | Working on file S2_percentile_30_UTM_125-0000000000-0000023296.tif
	29/10/2020 14:41:53 | Working on file S2_percentile_30_UTM_125-0000000000-0000000000.tif
29/10/2020 14:41:54 | Working on tile 6W
	6W_UTM.vrt contains no GeoTIFF, attempting 6W.vrt
29/10/2020 14:41:57 | 8 files to process
	29/10/2020 14:41:57 | Working on file S2_percentile_30_UTM_65-0000069888-0000023296.tif
	29/10/2020 14:41:58 | Working on file S2_percentile_30_UTM_65-0000069888-0000000000.tif
	29/10/2020 14:41:59 | Working on file S2_percentile_30_UTM_65-0000046592-0000023296.tif
	29/10/2020 14:42:00 | Working on file S2_percentile_30_UTM_65-0000046592-0000000000.tif
	29/10/2020 14:42:01 | Working on file S2_percentile_30_UTM_65-0000023296-0000023296.tif
	29/10/2020 14:42:02 | Working on file S2_percentile_30_UTM_65-0000023296-0000000000.tif
	29/10/2020 14:42:04 | Working on file S2_percentile_30_UTM_65-0000000000-0000023296.tif
	29/10/2020 14:42:04 | Working on file S2_percentile_30_UTM_65-0000000000-0000000000.tif
29/10/2020 14:42:06 | Working on tile 7L
29/10/2020 14:42:13 | 8 files to process
	29/10/2020 14:42:13 | Working on file S2_percentile_30_UTM_666-0000046592-0000046592.tif
	29/10/2020 14:42:14 | Working on file S2_percentile_30_UTM_666-0000046592-0000023296.tif
	29/10/2020 14:42:15 | Working on file S2_percentile_30_UTM_666-0000023296-0000046592.tif
	29/10/2020 14:42:16 | Working on file S2_percentile_30_UTM_666-0000023296-0000023296.tif
	29/10/2020 14:42:17 | Working on file S2_percentile_30_UTM_666-0000023296-0000000000.tif
	29/10/2020 14:42:18 | Working on file S2_percentile_30_UTM_666-0000000000-0000046592.tif
	29/10/2020 14:42:18 | Working on file S2_percentile_30_UTM_666-0000000000-0000023296.tif
	29/10/2020 14:42:19 | Working on file S2_percentile_30_UTM_666-0000000000-0000000000.tif
29/10/2020 14:42:20 | Working on tile 7M
29/10/2020 14:42:26 | 2 files to process
	29/10/2020 14:42:26 | Working on file S2_percentile_30_UTM_606-0000069888-0000046592.tif
	29/10/2020 14:42:27 | Working on file S2_percentile_30_UTM_606-0000069888-0000023296.tif
29/10/2020 14:42:28 | Working on tile 7V
	7V_UTM.vrt contains no GeoTIFF, attempting 7V.vrt
29/10/2020 14:42:31 | 8 files to process
	29/10/2020 14:42:31 | Working on file S2_percentile_30_UTM_126-0000069888-0000023296.tif
	29/10/2020 14:42:32 | Working on file S2_percentile_30_UTM_126-0000069888-0000000000.tif
	29/10/2020 14:42:33 | Working on file S2_percentile_30_UTM_126-0000046592-0000023296.tif
	29/10/2020 14:42:34 | Working on file S2_percentile_30_UTM_126-0000046592-0000000000.tif
	29/10/2020 14:42:35 | Working on file S2_percentile_30_UTM_126-0000023296-0000023296.tif
	29/10/2020 14:42:36 | Working on file S2_percentile_30_UTM_126-0000023296-0000000000.tif
	29/10/2020 14:42:37 | Working on file S2_percentile_30_UTM_126-0000000000-0000023296.tif
	29/10/2020 14:42:38 | Working on file S2_percentile_30_UTM_126-0000000000-0000000000.tif
29/10/2020 14:42:39 | Working on tile 7W
29/10/2020 14:42:47 | 8 files to process
	29/10/2020 14:42:47 | Working on file S2_percentile_30_UTM_66-0000069888-0000023296.tif
	29/10/2020 14:42:48 | Working on file S2_percentile_30_UTM_66-0000069888-0000000000.tif
	29/10/2020 14:42:49 | Working on file S2_percentile_30_UTM_66-0000046592-0000023296.tif
	29/10/2020 14:42:51 | Working on file S2_percentile_30_UTM_66-0000046592-0000000000.tif
	29/10/2020 14:42:52 | Working on file S2_percentile_30_UTM_66-0000023296-0000023296.tif
	29/10/2020 14:42:53 | Working on file S2_percentile_30_UTM_66-0000023296-0000000000.tif
	29/10/2020 14:42:54 | Working on file S2_percentile_30_UTM_66-0000000000-0000023296.tif
	29/10/2020 14:42:55 | Working on file S2_percentile_30_UTM_66-0000000000-0000000000.tif
29/10/2020 14:42:56 | Working on tile 8K
29/10/2020 14:43:02 | 3 files to process
	29/10/2020 14:43:02 | Working on file S2_percentile_30_UTM_727-0000069888-0000046592.tif
	29/10/2020 14:43:03 | Working on file S2_percentile_30_UTM_727-0000046592-0000046592.tif
	29/10/2020 14:43:04 | Working on file S2_percentile_30_UTM_727-0000023296-0000046592.tif
29/10/2020 14:43:05 | Working on tile 8U
29/10/2020 14:43:11 | 5 files to process
	29/10/2020 14:43:11 | Working on file S2_percentile_UTM_187-0000046592-0000023296.tif
	29/10/2020 14:43:12 | Working on file S2_percentile_UTM_187-0000023296-0000023296.tif
	29/10/2020 14:43:13 | Working on file S2_percentile_UTM_187-0000023296-0000000000.tif
	29/10/2020 14:43:14 | Working on file S2_percentile_UTM_187-0000000000-0000023296.tif
	29/10/2020 14:43:15 | Working on file S2_percentile_UTM_187-0000000000-0000000000.tif
29/10/2020 14:43:16 | Working on tile 8V
29/10/2020 14:43:23 | 8 files to process
	29/10/2020 14:43:23 | Working on file S2_percentile_UTM_127-0000069888-0000023296.tif
	29/10/2020 14:43:24 | Working on file S2_percentile_UTM_127-0000069888-0000000000.tif
	29/10/2020 14:43:25 | Working on file S2_percentile_UTM_127-0000046592-0000023296.tif
	29/10/2020 14:43:26 | Working on file S2_percentile_UTM_127-0000046592-0000000000.tif
	29/10/2020 14:43:27 | Working on file S2_percentile_UTM_127-0000023296-0000023296.tif
	29/10/2020 14:43:28 | Working on file S2_percentile_UTM_127-0000023296-0000000000.tif
	29/10/2020 14:43:30 | Working on file S2_percentile_UTM_127-0000000000-0000023296.tif
	29/10/2020 14:43:31 | Working on file S2_percentile_UTM_127-0000000000-0000000000.tif
29/10/2020 14:43:32 | Working on tile 8W
29/10/2020 14:43:40 | 8 files to process
	29/10/2020 14:43:40 | Working on file S2_percentile_30_UTM_67-0000069888-0000023296.tif
	29/10/2020 14:43:41 | Working on file S2_percentile_30_UTM_67-0000069888-0000000000.tif
	29/10/2020 14:43:41 | Working on file S2_percentile_30_UTM_67-0000046592-0000023296.tif
	29/10/2020 14:43:42 | Working on file S2_percentile_30_UTM_67-0000046592-0000000000.tif
	29/10/2020 14:43:43 | Working on file S2_percentile_30_UTM_67-0000023296-0000023296.tif
	29/10/2020 14:43:43 | Working on file S2_percentile_30_UTM_67-0000023296-0000000000.tif
	29/10/2020 14:43:44 | Working on file S2_percentile_30_UTM_67-0000000000-0000023296.tif
	29/10/2020 14:43:45 | Working on file S2_percentile_30_UTM_67-0000000000-0000000000.tif
29/10/2020 14:43:46 | Working on tile 9J
	9J_UTM.vrt contains no GeoTIFF, attempting 9J.vrt
29/10/2020 14:43:49 | 9 files to process
	29/10/2020 14:43:49 | Working on file S2_percentile_30_UTM_788-0000046592-0000046592.tif
	29/10/2020 14:43:50 | Working on file S2_percentile_30_UTM_788-0000046592-0000023296.tif
	29/10/2020 14:43:51 | Working on file S2_percentile_30_UTM_788-0000046592-0000000000.tif
	29/10/2020 14:43:52 | Working on file S2_percentile_30_UTM_788-0000023296-0000046592.tif
	29/10/2020 14:43:54 | Working on file S2_percentile_30_UTM_788-0000023296-0000023296.tif
	29/10/2020 14:43:55 | Working on file S2_percentile_30_UTM_788-0000023296-0000000000.tif
	29/10/2020 14:43:55 | Working on file S2_percentile_30_UTM_788-0000000000-0000046592.tif
	29/10/2020 14:43:56 | Working on file S2_percentile_30_UTM_788-0000000000-0000023296.tif
	29/10/2020 14:43:57 | Working on file S2_percentile_30_UTM_788-0000000000-0000000000.tif
29/10/2020 14:43:58 | Working on tile 9U
29/10/2020 14:44:06 | 8 files to process
	29/10/2020 14:44:06 | Working on file S2_percentile_UTM_188-0000069888-0000023296.tif
	29/10/2020 14:44:07 | Working on file S2_percentile_UTM_188-0000069888-0000000000.tif
	29/10/2020 14:44:08 | Working on file S2_percentile_UTM_188-0000046592-0000023296.tif
	29/10/2020 14:44:08 | Working on file S2_percentile_UTM_188-0000046592-0000000000.tif
	29/10/2020 14:44:09 | Working on file S2_percentile_UTM_188-0000023296-0000023296.tif
	29/10/2020 14:44:10 | Working on file S2_percentile_UTM_188-0000023296-0000000000.tif
	29/10/2020 14:44:11 | Working on file S2_percentile_UTM_188-0000000000-0000023296.tif
	29/10/2020 14:44:12 | Working on file S2_percentile_UTM_188-0000000000-0000000000.tif
29/10/2020 14:44:14 | Working on tile 9V
29/10/2020 14:44:26 | 8 files to process
	29/10/2020 14:44:26 | Working on file S2_percentile_UTM_128-0000069888-0000023296.tif
	29/10/2020 14:44:27 | Working on file S2_percentile_UTM_128-0000069888-0000000000.tif
	29/10/2020 14:44:28 | Working on file S2_percentile_UTM_128-0000046592-0000023296.tif
	29/10/2020 14:44:30 | Working on file S2_percentile_UTM_128-0000046592-0000000000.tif
	29/10/2020 14:44:33 | Working on file S2_percentile_UTM_128-0000023296-0000023296.tif
	29/10/2020 14:44:37 | Working on file S2_percentile_UTM_128-0000023296-0000000000.tif
	29/10/2020 14:44:40 | Working on file S2_percentile_UTM_128-0000000000-0000023296.tif
	29/10/2020 14:44:41 | Working on file S2_percentile_UTM_128-0000000000-0000000000.tif
29/10/2020 14:44:42 | Working on tile 9W
29/10/2020 14:44:48 | 8 files to process
	29/10/2020 14:44:48 | Working on file S2_percentile_30_UTM_68-0000069888-0000023296.tif
	29/10/2020 14:44:49 | Working on file S2_percentile_30_UTM_68-0000069888-0000000000.tif
	29/10/2020 14:44:50 | Working on file S2_percentile_30_UTM_68-0000046592-0000023296.tif
	29/10/2020 14:44:53 | Working on file S2_percentile_30_UTM_68-0000046592-0000000000.tif
	29/10/2020 14:44:54 | Working on file S2_percentile_30_UTM_68-0000023296-0000023296.tif
	29/10/2020 14:44:54 | Working on file S2_percentile_30_UTM_68-0000023296-0000000000.tif
	29/10/2020 14:44:55 | Working on file S2_percentile_30_UTM_68-0000000000-0000023296.tif
	29/10/2020 14:44:56 | Working on file S2_percentile_30_UTM_68-0000000000-0000000000.tif
29/10/2020 14:44:56 | Working on tile 10S
29/10/2020 14:45:07 | 11 files to process
	29/10/2020 14:45:07 | Working on file S2_percentile_UTM_309-0000069888-0000046592.tif
	29/10/2020 14:45:08 | Working on file S2_percentile_UTM_309-0000069888-0000023296.tif
	29/10/2020 14:45:09 | Working on file S2_percentile_UTM_309-0000046592-0000046592.tif
	29/10/2020 14:45:10 | Working on file S2_percentile_UTM_309-0000046592-0000023296.tif
	29/10/2020 14:45:10 | Working on file S2_percentile_UTM_309-0000046592-0000000000.tif
	29/10/2020 14:45:11 | Working on file S2_percentile_UTM_309-0000023296-0000046592.tif
	29/10/2020 14:45:11 | Working on file S2_percentile_UTM_309-0000023296-0000023296.tif
	29/10/2020 14:45:12 | Working on file S2_percentile_UTM_309-0000023296-0000000000.tif
	29/10/2020 14:45:13 | Working on file S2_percentile_UTM_309-0000000000-0000046592.tif
	29/10/2020 14:45:13 | Working on file S2_percentile_UTM_309-0000000000-0000023296.tif
	29/10/2020 14:45:14 | Working on file S2_percentile_UTM_309-0000000000-0000000000.tif
29/10/2020 14:45:15 | Working on tile 10T
29/10/2020 14:45:20 | 12 files to process
	29/10/2020 14:45:20 | Working on file S2_percentile_UTM_249-0000069888-0000046592.tif
	29/10/2020 14:45:21 | Working on file S2_percentile_UTM_249-0000069888-0000023296.tif
	29/10/2020 14:45:22 | Working on file S2_percentile_UTM_249-0000069888-0000000000.tif
	29/10/2020 14:45:23 | Working on file S2_percentile_UTM_249-0000046592-0000046592.tif
	29/10/2020 14:45:24 | Working on file S2_percentile_UTM_249-0000046592-0000023296.tif
	29/10/2020 14:45:25 | Working on file S2_percentile_UTM_249-0000046592-0000000000.tif
	29/10/2020 14:45:26 | Working on file S2_percentile_UTM_249-0000023296-0000046592.tif
	29/10/2020 14:45:26 | Working on file S2_percentile_UTM_249-0000023296-0000023296.tif
	29/10/2020 14:45:27 | Working on file S2_percentile_UTM_249-0000023296-0000000000.tif
	29/10/2020 14:45:28 | Working on file S2_percentile_UTM_249-0000000000-0000046592.tif
	29/10/2020 14:45:29 | Working on file S2_percentile_UTM_249-0000000000-0000023296.tif
	29/10/2020 14:45:30 | Working on file S2_percentile_UTM_249-0000000000-0000000000.tif
29/10/2020 14:45:31 | Working on tile 10U
29/10/2020 14:45:39 | 8 files to process
	29/10/2020 14:45:39 | Working on file S2_percentile_UTM_189-0000069888-0000023296.tif
	29/10/2020 14:45:40 | Working on file S2_percentile_UTM_189-0000069888-0000000000.tif
	29/10/2020 14:45:41 | Working on file S2_percentile_UTM_189-0000046592-0000023296.tif
	29/10/2020 14:45:41 | Working on file S2_percentile_UTM_189-0000046592-0000000000.tif
	29/10/2020 14:45:42 | Working on file S2_percentile_UTM_189-0000023296-0000023296.tif
	29/10/2020 14:45:43 | Working on file S2_percentile_UTM_189-0000023296-0000000000.tif
	29/10/2020 14:45:44 | Working on file S2_percentile_UTM_189-0000000000-0000023296.tif
	29/10/2020 14:45:44 | Working on file S2_percentile_UTM_189-0000000000-0000000000.tif
29/10/2020 14:45:45 | Working on tile 10V
29/10/2020 14:45:54 | 8 files to process
	29/10/2020 14:45:54 | Working on file S2_percentile_UTM_129-0000069888-0000023296.tif
	29/10/2020 14:45:55 | Working on file S2_percentile_UTM_129-0000069888-0000000000.tif
	29/10/2020 14:45:56 | Working on file S2_percentile_UTM_129-0000046592-0000023296.tif
	29/10/2020 14:45:56 | Working on file S2_percentile_UTM_129-0000046592-0000000000.tif
	29/10/2020 14:45:57 | Working on file S2_percentile_UTM_129-0000023296-0000023296.tif
	29/10/2020 14:45:58 | Working on file S2_percentile_UTM_129-0000023296-0000000000.tif
	29/10/2020 14:45:59 | Working on file S2_percentile_UTM_129-0000000000-0000023296.tif
	29/10/2020 14:46:00 | Working on file S2_percentile_UTM_129-0000000000-0000000000.tif
29/10/2020 14:46:00 | Working on tile 10W
29/10/2020 14:46:09 | 8 files to process
	29/10/2020 14:46:09 | Working on file S2_percentile_30_UTM_69-0000069888-0000023296.tif
	29/10/2020 14:46:09 | Working on file S2_percentile_30_UTM_69-0000069888-0000000000.tif
	29/10/2020 14:46:10 | Working on file S2_percentile_30_UTM_69-0000046592-0000023296.tif
	29/10/2020 14:46:11 | Working on file S2_percentile_30_UTM_69-0000046592-0000000000.tif
	29/10/2020 14:46:11 | Working on file S2_percentile_30_UTM_69-0000023296-0000023296.tif
	29/10/2020 14:46:12 | Working on file S2_percentile_30_UTM_69-0000023296-0000000000.tif
	29/10/2020 14:46:13 | Working on file S2_percentile_30_UTM_69-0000000000-0000023296.tif
	29/10/2020 14:46:14 | Working on file S2_percentile_30_UTM_69-0000000000-0000000000.tif
29/10/2020 14:46:15 | Working on tile 10X
	10X_UTM.vrt contains no GeoTIFF, attempting 10X.vrt
29/10/2020 14:46:18 | 8 files to process
	29/10/2020 14:46:18 | Working on file S2_percentile_30_UTM_12-0000116480-0000023296.tif
	29/10/2020 14:46:19 | Working on file S2_percentile_30_UTM_12-0000116480-0000000000.tif
	29/10/2020 14:46:19 | Working on file S2_percentile_30_UTM_12-0000093184-0000023296.tif
	29/10/2020 14:46:20 | Working on file S2_percentile_30_UTM_12-0000093184-0000000000.tif
	29/10/2020 14:46:21 | Working on file S2_percentile_30_UTM_12-0000069888-0000000000.tif
	29/10/2020 14:46:22 | Working on file S2_percentile_30_UTM_12-0000046592-0000000000.tif
	29/10/2020 14:46:23 | Working on file S2_percentile_30_UTM_12-0000023296-0000000000.tif
	29/10/2020 14:46:24 | Working on file S2_percentile_30_UTM_12-0000000000-0000000000.tif
29/10/2020 14:46:25 | Working on tile 11R
29/10/2020 14:46:30 | 10 files to process
	29/10/2020 14:46:30 | Working on file S2_percentile_UTM_370-0000069888-0000046592.tif
	29/10/2020 14:46:31 | Working on file S2_percentile_UTM_370-0000046592-0000046592.tif
	29/10/2020 14:46:32 | Working on file S2_percentile_UTM_370-0000046592-0000023296.tif
	29/10/2020 14:46:33 | Working on file S2_percentile_UTM_370-0000046592-0000000000.tif
	29/10/2020 14:46:34 | Working on file S2_percentile_UTM_370-0000023296-0000046592.tif
	29/10/2020 14:46:35 | Working on file S2_percentile_UTM_370-0000023296-0000023296.tif
	29/10/2020 14:46:36 | Working on file S2_percentile_UTM_370-0000023296-0000000000.tif
	29/10/2020 14:46:37 | Working on file S2_percentile_UTM_370-0000000000-0000046592.tif
	29/10/2020 14:46:38 | Working on file S2_percentile_UTM_370-0000000000-0000023296.tif
	29/10/2020 14:46:38 | Working on file S2_percentile_UTM_370-0000000000-0000000000.tif
29/10/2020 14:46:39 | Working on tile 11S
	11S_UTM.vrt contains no GeoTIFF, attempting 11S.vrt
29/10/2020 14:46:42 | 12 files to process
	29/10/2020 14:46:42 | Working on file S2_percentile_UTM_310-0000069888-0000046592.tif
	29/10/2020 14:46:43 | Working on file S2_percentile_UTM_310-0000069888-0000023296.tif
	29/10/2020 14:46:44 | Working on file S2_percentile_UTM_310-0000069888-0000000000.tif
	29/10/2020 14:46:45 | Working on file S2_percentile_UTM_310-0000046592-0000046592.tif
	29/10/2020 14:46:46 | Working on file S2_percentile_UTM_310-0000046592-0000023296.tif
	29/10/2020 14:46:47 | Working on file S2_percentile_UTM_310-0000046592-0000000000.tif
	29/10/2020 14:46:48 | Working on file S2_percentile_UTM_310-0000023296-0000046592.tif
	29/10/2020 14:46:49 | Working on file S2_percentile_UTM_310-0000023296-0000023296.tif
	29/10/2020 14:46:50 | Working on file S2_percentile_UTM_310-0000023296-0000000000.tif
	29/10/2020 14:46:52 | Working on file S2_percentile_UTM_310-0000000000-0000046592.tif
	29/10/2020 14:46:54 | Working on file S2_percentile_UTM_310-0000000000-0000023296.tif
	29/10/2020 14:46:55 | Working on file S2_percentile_UTM_310-0000000000-0000000000.tif
29/10/2020 14:46:56 | Working on tile 11T
29/10/2020 14:47:04 | 12 files to process
	29/10/2020 14:47:04 | Working on file S2_percentile_UTM_250-0000069888-0000046592.tif
	29/10/2020 14:47:04 | Working on file S2_percentile_UTM_250-0000069888-0000023296.tif
	29/10/2020 14:47:06 | Working on file S2_percentile_UTM_250-0000069888-0000000000.tif
	29/10/2020 14:47:07 | Working on file S2_percentile_UTM_250-0000046592-0000046592.tif
	29/10/2020 14:47:08 | Working on file S2_percentile_UTM_250-0000046592-0000023296.tif
	29/10/2020 14:47:09 | Working on file S2_percentile_UTM_250-0000046592-0000000000.tif
	29/10/2020 14:47:10 | Working on file S2_percentile_UTM_250-0000023296-0000046592.tif
	29/10/2020 14:47:11 | Working on file S2_percentile_UTM_250-0000023296-0000023296.tif
	29/10/2020 14:47:12 | Working on file S2_percentile_UTM_250-0000023296-0000000000.tif
	29/10/2020 14:47:13 | Working on file S2_percentile_UTM_250-0000000000-0000046592.tif
	29/10/2020 14:47:13 | Working on file S2_percentile_UTM_250-0000000000-0000023296.tif
	29/10/2020 14:47:14 | Working on file S2_percentile_UTM_250-0000000000-0000000000.tif
29/10/2020 14:47:15 | Working on tile 11U
29/10/2020 14:47:23 | 8 files to process
	29/10/2020 14:47:23 | Working on file S2_percentile_UTM_190-0000069888-0000023296.tif
	29/10/2020 14:47:24 | Working on file S2_percentile_UTM_190-0000069888-0000000000.tif
	29/10/2020 14:47:25 | Working on file S2_percentile_UTM_190-0000046592-0000023296.tif
	29/10/2020 14:47:26 | Working on file S2_percentile_UTM_190-0000046592-0000000000.tif
	29/10/2020 14:47:27 | Working on file S2_percentile_UTM_190-0000023296-0000023296.tif
	29/10/2020 14:47:28 | Working on file S2_percentile_UTM_190-0000023296-0000000000.tif
	29/10/2020 14:47:29 | Working on file S2_percentile_UTM_190-0000000000-0000023296.tif
	29/10/2020 14:47:29 | Working on file S2_percentile_UTM_190-0000000000-0000000000.tif
29/10/2020 14:47:30 | Working on tile 11V
29/10/2020 14:47:36 | 8 files to process
	29/10/2020 14:47:36 | Working on file S2_percentile_UTM_130-0000069888-0000023296.tif
	29/10/2020 14:47:36 | Working on file S2_percentile_UTM_130-0000069888-0000000000.tif
	29/10/2020 14:47:37 | Working on file S2_percentile_UTM_130-0000046592-0000023296.tif
	29/10/2020 14:47:38 | Working on file S2_percentile_UTM_130-0000046592-0000000000.tif
	29/10/2020 14:47:39 | Working on file S2_percentile_UTM_130-0000023296-0000023296.tif
	29/10/2020 14:47:39 | Working on file S2_percentile_UTM_130-0000023296-0000000000.tif
	29/10/2020 14:47:40 | Working on file S2_percentile_UTM_130-0000000000-0000023296.tif
	29/10/2020 14:47:41 | Working on file S2_percentile_UTM_130-0000000000-0000000000.tif
29/10/2020 14:47:42 | Working on tile 11W
29/10/2020 14:47:50 | 8 files to process
	29/10/2020 14:47:50 | Working on file S2_percentile_30_UTM_70-0000069888-0000023296.tif
	29/10/2020 14:47:51 | Working on file S2_percentile_30_UTM_70-0000069888-0000000000.tif
	29/10/2020 14:47:51 | Working on file S2_percentile_30_UTM_70-0000046592-0000023296.tif
	29/10/2020 14:47:52 | Working on file S2_percentile_30_UTM_70-0000046592-0000000000.tif
	29/10/2020 14:47:53 | Working on file S2_percentile_30_UTM_70-0000023296-0000023296.tif
	29/10/2020 14:47:54 | Working on file S2_percentile_30_UTM_70-0000023296-0000000000.tif
	29/10/2020 14:47:56 | Working on file S2_percentile_30_UTM_70-0000000000-0000023296.tif
	29/10/2020 14:47:56 | Working on file S2_percentile_30_UTM_70-0000000000-0000000000.tif
29/10/2020 14:47:57 | Working on tile 11X
	11X_UTM.vrt contains no GeoTIFF, attempting 11X.vrt
29/10/2020 14:48:00 | 8 files to process
	29/10/2020 14:48:00 | Working on file S2_percentile_30_UTM_13-0000116480-0000023296.tif
	29/10/2020 14:48:00 | Working on file S2_percentile_30_UTM_13-0000116480-0000000000.tif
	29/10/2020 14:48:01 | Working on file S2_percentile_30_UTM_13-0000093184-0000023296.tif
	29/10/2020 14:48:02 | Working on file S2_percentile_30_UTM_13-0000093184-0000000000.tif
	29/10/2020 14:48:04 | Working on file S2_percentile_30_UTM_13-0000069888-0000000000.tif
	29/10/2020 14:48:05 | Working on file S2_percentile_30_UTM_13-0000046592-0000000000.tif
	29/10/2020 14:48:06 | Working on file S2_percentile_30_UTM_13-0000023296-0000000000.tif
	29/10/2020 14:48:07 | Working on file S2_percentile_30_UTM_13-0000000000-0000000000.tif
29/10/2020 14:48:08 | Working on tile 12J
29/10/2020 14:48:13 | 2 files to process
	29/10/2020 14:48:13 | Working on file S2_percentile_30_UTM_791-0000023296-0000046592.tif
	29/10/2020 14:48:14 | Working on file S2_percentile_30_UTM_791-0000023296-0000023296.tif
29/10/2020 14:48:15 | Working on tile 12Q
29/10/2020 14:48:22 | 8 files to process
	29/10/2020 14:48:22 | Working on file S2_percentile_30_UTM_431-0000046592-0000046592.tif
	29/10/2020 14:48:23 | Working on file S2_percentile_30_UTM_431-0000046592-0000023296.tif
	29/10/2020 14:48:25 | Working on file S2_percentile_30_UTM_431-0000046592-0000000000.tif
	29/10/2020 14:48:26 | Working on file S2_percentile_30_UTM_431-0000023296-0000046592.tif
	29/10/2020 14:48:27 | Working on file S2_percentile_30_UTM_431-0000023296-0000023296.tif
	29/10/2020 14:48:28 | Working on file S2_percentile_30_UTM_431-0000000000-0000046592.tif
	29/10/2020 14:48:29 | Working on file S2_percentile_30_UTM_431-0000000000-0000023296.tif
	29/10/2020 14:48:30 | Working on file S2_percentile_30_UTM_431-0000000000-0000000000.tif
29/10/2020 14:48:30 | Working on tile 12R
29/10/2020 14:48:39 | 12 files to process
	29/10/2020 14:48:39 | Working on file S2_percentile_UTM_371-0000069888-0000046592.tif
	29/10/2020 14:48:39 | Working on file S2_percentile_UTM_371-0000069888-0000023296.tif
	29/10/2020 14:48:40 | Working on file S2_percentile_UTM_371-0000069888-0000000000.tif
	29/10/2020 14:48:41 | Working on file S2_percentile_UTM_371-0000046592-0000046592.tif
	29/10/2020 14:48:42 | Working on file S2_percentile_UTM_371-0000046592-0000023296.tif
	29/10/2020 14:48:43 | Working on file S2_percentile_UTM_371-0000046592-0000000000.tif
	29/10/2020 14:48:43 | Working on file S2_percentile_UTM_371-0000023296-0000046592.tif
	29/10/2020 14:48:44 | Working on file S2_percentile_UTM_371-0000023296-0000023296.tif
	29/10/2020 14:48:45 | Working on file S2_percentile_UTM_371-0000023296-0000000000.tif
	29/10/2020 14:48:46 | Working on file S2_percentile_UTM_371-0000000000-0000046592.tif
	29/10/2020 14:48:47 | Working on file S2_percentile_UTM_371-0000000000-0000023296.tif
	29/10/2020 14:48:48 | Working on file S2_percentile_UTM_371-0000000000-0000000000.tif
29/10/2020 14:48:49 | Working on tile 12S
	12S_UTM.vrt contains no GeoTIFF, attempting 12S.vrt
29/10/2020 14:48:52 | 12 files to process
	29/10/2020 14:48:52 | Working on file S2_percentile_UTM_311-0000069888-0000046592.tif
	29/10/2020 14:48:55 | Working on file S2_percentile_UTM_311-0000069888-0000023296.tif
	29/10/2020 14:48:56 | Working on file S2_percentile_UTM_311-0000069888-0000000000.tif
	29/10/2020 14:48:57 | Working on file S2_percentile_UTM_311-0000046592-0000046592.tif
	29/10/2020 14:48:58 | Working on file S2_percentile_UTM_311-0000046592-0000023296.tif
	29/10/2020 14:48:59 | Working on file S2_percentile_UTM_311-0000046592-0000000000.tif
	29/10/2020 14:48:59 | Working on file S2_percentile_UTM_311-0000023296-0000046592.tif
	29/10/2020 14:49:00 | Working on file S2_percentile_UTM_311-0000023296-0000023296.tif
	29/10/2020 14:49:01 | Working on file S2_percentile_UTM_311-0000023296-0000000000.tif
	29/10/2020 14:49:02 | Working on file S2_percentile_UTM_311-0000000000-0000046592.tif
	29/10/2020 14:49:03 | Working on file S2_percentile_UTM_311-0000000000-0000023296.tif
	29/10/2020 14:49:03 | Working on file S2_percentile_UTM_311-0000000000-0000000000.tif
29/10/2020 14:49:04 | Working on tile 12T
29/10/2020 14:49:14 | 12 files to process
	29/10/2020 14:49:14 | Working on file S2_percentile_UTM_251-0000069888-0000046592.tif
	29/10/2020 14:49:15 | Working on file S2_percentile_UTM_251-0000069888-0000023296.tif
	29/10/2020 14:49:16 | Working on file S2_percentile_UTM_251-0000069888-0000000000.tif
	29/10/2020 14:49:18 | Working on file S2_percentile_UTM_251-0000046592-0000046592.tif
	29/10/2020 14:49:18 | Working on file S2_percentile_UTM_251-0000046592-0000023296.tif
	29/10/2020 14:49:19 | Working on file S2_percentile_UTM_251-0000046592-0000000000.tif
	29/10/2020 14:49:20 | Working on file S2_percentile_UTM_251-0000023296-0000046592.tif
	29/10/2020 14:49:21 | Working on file S2_percentile_UTM_251-0000023296-0000023296.tif
	29/10/2020 14:49:22 | Working on file S2_percentile_UTM_251-0000023296-0000000000.tif
	29/10/2020 14:49:23 | Working on file S2_percentile_UTM_251-0000000000-0000046592.tif
	29/10/2020 14:49:24 | Working on file S2_percentile_UTM_251-0000000000-0000023296.tif
	29/10/2020 14:49:25 | Working on file S2_percentile_UTM_251-0000000000-0000000000.tif
29/10/2020 14:49:26 | Working on tile 12U
29/10/2020 14:49:31 | 8 files to process
	29/10/2020 14:49:31 | Working on file S2_percentile_UTM_191-0000069888-0000023296.tif
	29/10/2020 14:49:32 | Working on file S2_percentile_UTM_191-0000069888-0000000000.tif
	29/10/2020 14:49:33 | Working on file S2_percentile_UTM_191-0000046592-0000023296.tif
	29/10/2020 14:49:35 | Working on file S2_percentile_UTM_191-0000046592-0000000000.tif
	29/10/2020 14:49:37 | Working on file S2_percentile_UTM_191-0000023296-0000023296.tif
	29/10/2020 14:49:39 | Working on file S2_percentile_UTM_191-0000023296-0000000000.tif
	29/10/2020 14:49:41 | Working on file S2_percentile_UTM_191-0000000000-0000023296.tif
	29/10/2020 14:49:42 | Working on file S2_percentile_UTM_191-0000000000-0000000000.tif
29/10/2020 14:49:43 | Working on tile 12V
29/10/2020 14:49:49 | 8 files to process
	29/10/2020 14:49:49 | Working on file S2_percentile_UTM_131-0000069888-0000023296.tif
	29/10/2020 14:49:50 | Working on file S2_percentile_UTM_131-0000069888-0000000000.tif
	29/10/2020 14:49:51 | Working on file S2_percentile_UTM_131-0000046592-0000023296.tif
	29/10/2020 14:49:51 | Working on file S2_percentile_UTM_131-0000046592-0000000000.tif
	29/10/2020 14:49:52 | Working on file S2_percentile_UTM_131-0000023296-0000023296.tif
	29/10/2020 14:49:54 | Working on file S2_percentile_UTM_131-0000023296-0000000000.tif
	29/10/2020 14:49:57 | Working on file S2_percentile_UTM_131-0000000000-0000023296.tif
	29/10/2020 14:50:00 | Working on file S2_percentile_UTM_131-0000000000-0000000000.tif
29/10/2020 14:50:03 | Working on tile 12W
29/10/2020 14:50:12 | 8 files to process
	29/10/2020 14:50:12 | Working on file S2_percentile_30_UTM_71-0000069888-0000023296.tif
	29/10/2020 14:50:13 | Working on file S2_percentile_30_UTM_71-0000069888-0000000000.tif
	29/10/2020 14:50:14 | Working on file S2_percentile_30_UTM_71-0000046592-0000023296.tif
	29/10/2020 14:50:14 | Working on file S2_percentile_30_UTM_71-0000046592-0000000000.tif
	29/10/2020 14:50:15 | Working on file S2_percentile_30_UTM_71-0000023296-0000023296.tif
	29/10/2020 14:50:16 | Working on file S2_percentile_30_UTM_71-0000023296-0000000000.tif
	29/10/2020 14:50:16 | Working on file S2_percentile_30_UTM_71-0000000000-0000023296.tif
	29/10/2020 14:50:17 | Working on file S2_percentile_30_UTM_71-0000000000-0000000000.tif
29/10/2020 14:50:18 | Working on tile 12X
29/10/2020 14:50:26 | 6 files to process
	29/10/2020 14:50:26 | Working on file S2_percentile_30_UTM_14-0000116480-0000000000.tif
	29/10/2020 14:50:27 | Working on file S2_percentile_30_UTM_14-0000093184-0000000000.tif
	29/10/2020 14:50:28 | Working on file S2_percentile_30_UTM_14-0000069888-0000000000.tif
	29/10/2020 14:50:29 | Working on file S2_percentile_30_UTM_14-0000046592-0000000000.tif
	29/10/2020 14:50:30 | Working on file S2_percentile_30_UTM_14-0000023296-0000000000.tif
	29/10/2020 14:50:30 | Working on file S2_percentile_30_UTM_14-0000000000-0000000000.tif
29/10/2020 14:50:31 | Working on tile 13Q
	13Q_UTM.vrt contains no GeoTIFF, attempting 13Q.vrt
29/10/2020 14:50:34 | 11 files to process
	29/10/2020 14:50:34 | Working on file S2_percentile_30_UTM_432-0000069888-0000046592.tif
	29/10/2020 14:50:35 | Working on file S2_percentile_30_UTM_432-0000069888-0000023296.tif
	29/10/2020 14:50:36 | Working on file S2_percentile_30_UTM_432-0000046592-0000046592.tif
	29/10/2020 14:50:36 | Working on file S2_percentile_30_UTM_432-0000046592-0000023296.tif
	29/10/2020 14:50:37 | Working on file S2_percentile_30_UTM_432-0000046592-0000000000.tif
	29/10/2020 14:50:38 | Working on file S2_percentile_30_UTM_432-0000023296-0000046592.tif
	29/10/2020 14:50:39 | Working on file S2_percentile_30_UTM_432-0000023296-0000023296.tif
	29/10/2020 14:50:39 | Working on file S2_percentile_30_UTM_432-0000023296-0000000000.tif
	29/10/2020 14:50:40 | Working on file S2_percentile_30_UTM_432-0000000000-0000046592.tif
	29/10/2020 14:50:41 | Working on file S2_percentile_30_UTM_432-0000000000-0000023296.tif
	29/10/2020 14:50:42 | Working on file S2_percentile_30_UTM_432-0000000000-0000000000.tif
29/10/2020 14:50:43 | Working on tile 13R
	13R_UTM.vrt contains no GeoTIFF, attempting 13R.vrt
29/10/2020 14:50:45 | 12 files to process
	29/10/2020 14:50:45 | Working on file S2_percentile_UTM_372-0000069888-0000046592.tif
	29/10/2020 14:50:47 | Working on file S2_percentile_UTM_372-0000069888-0000023296.tif
	29/10/2020 14:50:48 | Working on file S2_percentile_UTM_372-0000069888-0000000000.tif
	29/10/2020 14:50:48 | Working on file S2_percentile_UTM_372-0000046592-0000046592.tif
	29/10/2020 14:50:49 | Working on file S2_percentile_UTM_372-0000046592-0000023296.tif
	29/10/2020 14:50:50 | Working on file S2_percentile_UTM_372-0000046592-0000000000.tif
	29/10/2020 14:50:51 | Working on file S2_percentile_UTM_372-0000023296-0000046592.tif
	29/10/2020 14:50:53 | Working on file S2_percentile_UTM_372-0000023296-0000023296.tif
	29/10/2020 14:50:53 | Working on file S2_percentile_UTM_372-0000023296-0000000000.tif
	29/10/2020 14:50:54 | Working on file S2_percentile_UTM_372-0000000000-0000046592.tif
	29/10/2020 14:50:55 | Working on file S2_percentile_UTM_372-0000000000-0000023296.tif
	29/10/2020 14:50:56 | Working on file S2_percentile_UTM_372-0000000000-0000000000.tif
29/10/2020 14:50:57 | Working on tile 13S
29/10/2020 14:51:05 | 12 files to process
	29/10/2020 14:51:05 | Working on file S2_percentile_30_UTM_312-0000069888-0000046592.tif
	29/10/2020 14:51:06 | Working on file S2_percentile_30_UTM_312-0000069888-0000023296.tif
	29/10/2020 14:51:07 | Working on file S2_percentile_30_UTM_312-0000069888-0000000000.tif
	29/10/2020 14:51:08 | Working on file S2_percentile_30_UTM_312-0000046592-0000046592.tif
	29/10/2020 14:51:09 | Working on file S2_percentile_30_UTM_312-0000046592-0000023296.tif
	29/10/2020 14:51:10 | Working on file S2_percentile_30_UTM_312-0000046592-0000000000.tif
	29/10/2020 14:51:11 | Working on file S2_percentile_30_UTM_312-0000023296-0000046592.tif
	29/10/2020 14:51:11 | Working on file S2_percentile_30_UTM_312-0000023296-0000023296.tif
	29/10/2020 14:51:12 | Working on file S2_percentile_30_UTM_312-0000023296-0000000000.tif
	29/10/2020 14:51:13 | Working on file S2_percentile_30_UTM_312-0000000000-0000046592.tif
	29/10/2020 14:51:14 | Working on file S2_percentile_30_UTM_312-0000000000-0000023296.tif
	29/10/2020 14:51:15 | Working on file S2_percentile_30_UTM_312-0000000000-0000000000.tif
29/10/2020 14:51:16 | Working on tile 13T
29/10/2020 14:51:24 | 12 files to process
	29/10/2020 14:51:24 | Working on file S2_percentile_UTM_252-0000069888-0000046592.tif
	29/10/2020 14:51:24 | Working on file S2_percentile_UTM_252-0000069888-0000023296.tif
	29/10/2020 14:51:25 | Working on file S2_percentile_UTM_252-0000069888-0000000000.tif
	29/10/2020 14:51:26 | Working on file S2_percentile_UTM_252-0000046592-0000046592.tif
	29/10/2020 14:51:27 | Working on file S2_percentile_UTM_252-0000046592-0000023296.tif
	29/10/2020 14:51:28 | Working on file S2_percentile_UTM_252-0000046592-0000000000.tif
	29/10/2020 14:51:29 | Working on file S2_percentile_UTM_252-0000023296-0000046592.tif
	29/10/2020 14:51:29 | Working on file S2_percentile_UTM_252-0000023296-0000023296.tif
	29/10/2020 14:51:30 | Working on file S2_percentile_UTM_252-0000023296-0000000000.tif
	29/10/2020 14:51:31 | Working on file S2_percentile_UTM_252-0000000000-0000046592.tif
	29/10/2020 14:51:31 | Working on file S2_percentile_UTM_252-0000000000-0000023296.tif
	29/10/2020 14:51:32 | Working on file S2_percentile_UTM_252-0000000000-0000000000.tif
29/10/2020 14:51:33 | Working on tile 13U
29/10/2020 14:51:41 | 8 files to process
	29/10/2020 14:51:41 | Working on file S2_percentile_UTM_192-0000069888-0000023296.tif
	29/10/2020 14:51:42 | Working on file S2_percentile_UTM_192-0000069888-0000000000.tif
	29/10/2020 14:51:42 | Working on file S2_percentile_UTM_192-0000046592-0000023296.tif
	29/10/2020 14:51:43 | Working on file S2_percentile_UTM_192-0000046592-0000000000.tif
	29/10/2020 14:51:44 | Working on file S2_percentile_UTM_192-0000023296-0000023296.tif
	29/10/2020 14:51:45 | Working on file S2_percentile_UTM_192-0000023296-0000000000.tif
	29/10/2020 14:51:46 | Working on file S2_percentile_UTM_192-0000000000-0000023296.tif
	29/10/2020 14:51:47 | Working on file S2_percentile_UTM_192-0000000000-0000000000.tif
29/10/2020 14:51:48 | Working on tile 13V
29/10/2020 14:51:53 | 8 files to process
	29/10/2020 14:51:53 | Working on file S2_percentile_UTM_132-0000069888-0000023296.tif
	29/10/2020 14:51:54 | Working on file S2_percentile_UTM_132-0000069888-0000000000.tif
	29/10/2020 14:51:55 | Working on file S2_percentile_UTM_132-0000046592-0000023296.tif
	29/10/2020 14:51:56 | Working on file S2_percentile_UTM_132-0000046592-0000000000.tif
	29/10/2020 14:51:57 | Working on file S2_percentile_UTM_132-0000023296-0000023296.tif
	29/10/2020 14:51:58 | Working on file S2_percentile_UTM_132-0000023296-0000000000.tif
	29/10/2020 14:51:59 | Working on file S2_percentile_UTM_132-0000000000-0000023296.tif
	29/10/2020 14:51:59 | Working on file S2_percentile_UTM_132-0000000000-0000000000.tif
29/10/2020 14:52:00 | Working on tile 13W
29/10/2020 14:52:05 | 8 files to process
	29/10/2020 14:52:05 | Working on file S2_percentile_30_UTM_72-0000069888-0000023296.tif
	29/10/2020 14:52:06 | Working on file S2_percentile_30_UTM_72-0000069888-0000000000.tif
	29/10/2020 14:52:08 | Working on file S2_percentile_30_UTM_72-0000046592-0000023296.tif
	29/10/2020 14:52:10 | Working on file S2_percentile_30_UTM_72-0000046592-0000000000.tif
	29/10/2020 14:52:12 | Working on file S2_percentile_30_UTM_72-0000023296-0000023296.tif
	29/10/2020 14:52:13 | Working on file S2_percentile_30_UTM_72-0000023296-0000000000.tif
	29/10/2020 14:52:14 | Working on file S2_percentile_30_UTM_72-0000000000-0000023296.tif
	29/10/2020 14:52:15 | Working on file S2_percentile_30_UTM_72-0000000000-0000000000.tif
29/10/2020 14:52:18 | Working on tile 13X
29/10/2020 14:52:42 | 6 files to process
	29/10/2020 14:52:42 | Working on file S2_percentile_30_UTM_15-0000116480-0000000000.tif
	29/10/2020 14:52:47 | Working on file S2_percentile_30_UTM_15-0000093184-0000000000.tif
	29/10/2020 14:52:48 | Working on file S2_percentile_30_UTM_15-0000069888-0000000000.tif
	29/10/2020 14:52:49 | Working on file S2_percentile_30_UTM_15-0000046592-0000000000.tif
	29/10/2020 14:52:49 | Working on file S2_percentile_30_UTM_15-0000023296-0000000000.tif
	29/10/2020 14:52:50 | Working on file S2_percentile_30_UTM_15-0000000000-0000000000.tif
29/10/2020 14:52:50 | Working on tile 14P
	14P_UTM.vrt contains no GeoTIFF, attempting 14P.vrt
29/10/2020 14:52:52 | 3 files to process
	29/10/2020 14:52:52 | Working on file S2_percentile_30_UTM_493-0000000000-0000046592.tif
	29/10/2020 14:52:53 | Working on file S2_percentile_30_UTM_493-0000000000-0000023296.tif
	29/10/2020 14:52:55 | Working on file S2_percentile_30_UTM_493-0000000000-0000000000.tif
29/10/2020 14:52:57 | Working on tile 14Q
	14Q_UTM.vrt contains no GeoTIFF, attempting 14Q.vrt
29/10/2020 14:52:59 | 12 files to process
	29/10/2020 14:52:59 | Working on file S2_percentile_30_UTM_433-0000069888-0000046592.tif
	29/10/2020 14:53:03 | Working on file S2_percentile_30_UTM_433-0000069888-0000023296.tif
	29/10/2020 14:53:06 | Working on file S2_percentile_30_UTM_433-0000069888-0000000000.tif
	29/10/2020 14:53:11 | Working on file S2_percentile_30_UTM_433-0000046592-0000046592.tif
	29/10/2020 14:53:13 | Working on file S2_percentile_30_UTM_433-0000046592-0000023296.tif
	29/10/2020 14:53:15 | Working on file S2_percentile_30_UTM_433-0000046592-0000000000.tif
	29/10/2020 14:53:16 | Working on file S2_percentile_30_UTM_433-0000023296-0000046592.tif
	29/10/2020 14:53:16 | Working on file S2_percentile_30_UTM_433-0000023296-0000023296.tif
	29/10/2020 14:53:17 | Working on file S2_percentile_30_UTM_433-0000023296-0000000000.tif
	29/10/2020 14:53:18 | Working on file S2_percentile_30_UTM_433-0000000000-0000046592.tif
	29/10/2020 14:53:20 | Working on file S2_percentile_30_UTM_433-0000000000-0000023296.tif
	29/10/2020 14:53:20 | Working on file S2_percentile_30_UTM_433-0000000000-0000000000.tif
29/10/2020 14:53:21 | Working on tile 14R
29/10/2020 14:53:26 | 12 files to process
	29/10/2020 14:53:26 | Working on file S2_percentile_UTM_373-0000069888-0000046592.tif
	29/10/2020 14:53:27 | Working on file S2_percentile_UTM_373-0000069888-0000023296.tif
	29/10/2020 14:53:27 | Working on file S2_percentile_UTM_373-0000069888-0000000000.tif
	29/10/2020 14:53:28 | Working on file S2_percentile_UTM_373-0000046592-0000046592.tif
	29/10/2020 14:53:29 | Working on file S2_percentile_UTM_373-0000046592-0000023296.tif
	29/10/2020 14:53:29 | Working on file S2_percentile_UTM_373-0000046592-0000000000.tif
	29/10/2020 14:53:30 | Working on file S2_percentile_UTM_373-0000023296-0000046592.tif
	29/10/2020 14:53:31 | Working on file S2_percentile_UTM_373-0000023296-0000023296.tif
	29/10/2020 14:53:32 | Working on file S2_percentile_UTM_373-0000023296-0000000000.tif
	29/10/2020 14:53:32 | Working on file S2_percentile_UTM_373-0000000000-0000046592.tif
	29/10/2020 14:53:33 | Working on file S2_percentile_UTM_373-0000000000-0000023296.tif
	29/10/2020 14:53:34 | Working on file S2_percentile_UTM_373-0000000000-0000000000.tif
29/10/2020 14:53:34 | Working on tile 14S
29/10/2020 14:53:39 | 12 files to process
	29/10/2020 14:53:39 | Working on file S2_percentile_UTM_313-0000069888-0000046592.tif
	29/10/2020 14:53:40 | Working on file S2_percentile_UTM_313-0000069888-0000023296.tif
	29/10/2020 14:53:40 | Working on file S2_percentile_UTM_313-0000069888-0000000000.tif
	29/10/2020 14:53:41 | Working on file S2_percentile_UTM_313-0000046592-0000046592.tif
	29/10/2020 14:53:42 | Working on file S2_percentile_UTM_313-0000046592-0000023296.tif
	29/10/2020 14:53:42 | Working on file S2_percentile_UTM_313-0000046592-0000000000.tif
	29/10/2020 14:53:43 | Working on file S2_percentile_UTM_313-0000023296-0000046592.tif
	29/10/2020 14:53:44 | Working on file S2_percentile_UTM_313-0000023296-0000023296.tif
	29/10/2020 14:53:44 | Working on file S2_percentile_UTM_313-0000023296-0000000000.tif
	29/10/2020 14:53:45 | Working on file S2_percentile_UTM_313-0000000000-0000046592.tif
	29/10/2020 14:53:45 | Working on file S2_percentile_UTM_313-0000000000-0000023296.tif
	29/10/2020 14:53:46 | Working on file S2_percentile_UTM_313-0000000000-0000000000.tif
29/10/2020 14:53:47 | Working on tile 14T
29/10/2020 14:53:53 | 12 files to process
	29/10/2020 14:53:53 | Working on file S2_percentile_UTM_253-0000069888-0000046592.tif
	29/10/2020 14:53:54 | Working on file S2_percentile_UTM_253-0000069888-0000023296.tif
	29/10/2020 14:53:54 | Working on file S2_percentile_UTM_253-0000069888-0000000000.tif
	29/10/2020 14:53:55 | Working on file S2_percentile_UTM_253-0000046592-0000046592.tif
	29/10/2020 14:53:55 | Working on file S2_percentile_UTM_253-0000046592-0000023296.tif
	29/10/2020 14:53:56 | Working on file S2_percentile_UTM_253-0000046592-0000000000.tif
	29/10/2020 14:53:58 | Working on file S2_percentile_UTM_253-0000023296-0000046592.tif
	29/10/2020 14:53:58 | Working on file S2_percentile_UTM_253-0000023296-0000023296.tif
	29/10/2020 14:53:59 | Working on file S2_percentile_UTM_253-0000023296-0000000000.tif
	29/10/2020 14:54:00 | Working on file S2_percentile_UTM_253-0000000000-0000046592.tif
	29/10/2020 14:54:00 | Working on file S2_percentile_UTM_253-0000000000-0000023296.tif
	29/10/2020 14:54:01 | Working on file S2_percentile_UTM_253-0000000000-0000000000.tif
29/10/2020 14:54:02 | Working on tile 14U
29/10/2020 14:54:08 | 8 files to process
	29/10/2020 14:54:08 | Working on file S2_percentile_UTM_193-0000069888-0000023296.tif
	29/10/2020 14:54:09 | Working on file S2_percentile_UTM_193-0000069888-0000000000.tif
	29/10/2020 14:54:09 | Working on file S2_percentile_UTM_193-0000046592-0000023296.tif
	29/10/2020 14:54:10 | Working on file S2_percentile_UTM_193-0000046592-0000000000.tif
	29/10/2020 14:54:11 | Working on file S2_percentile_UTM_193-0000023296-0000023296.tif
	29/10/2020 14:54:11 | Working on file S2_percentile_UTM_193-0000023296-0000000000.tif
	29/10/2020 14:54:12 | Working on file S2_percentile_UTM_193-0000000000-0000023296.tif
	29/10/2020 14:54:13 | Working on file S2_percentile_UTM_193-0000000000-0000000000.tif
29/10/2020 14:54:14 | Working on tile 14V
	14V_UTM.vrt contains no GeoTIFF, attempting 14V.vrt
29/10/2020 14:54:16 | 8 files to process
	29/10/2020 14:54:16 | Working on file S2_percentile_UTM_133-0000069888-0000023296.tif
	29/10/2020 14:54:17 | Working on file S2_percentile_UTM_133-0000069888-0000000000.tif
	29/10/2020 14:54:18 | Working on file S2_percentile_UTM_133-0000046592-0000023296.tif
	29/10/2020 14:54:18 | Working on file S2_percentile_UTM_133-0000046592-0000000000.tif
	29/10/2020 14:54:19 | Working on file S2_percentile_UTM_133-0000023296-0000023296.tif
	29/10/2020 14:54:20 | Working on file S2_percentile_UTM_133-0000023296-0000000000.tif
	29/10/2020 14:54:20 | Working on file S2_percentile_UTM_133-0000000000-0000023296.tif
	29/10/2020 14:54:21 | Working on file S2_percentile_UTM_133-0000000000-0000000000.tif
29/10/2020 14:54:22 | Working on tile 14W
29/10/2020 14:54:28 | 8 files to process
	29/10/2020 14:54:28 | Working on file S2_percentile_30_UTM_73-0000069888-0000023296.tif
	29/10/2020 14:54:29 | Working on file S2_percentile_30_UTM_73-0000069888-0000000000.tif
	29/10/2020 14:54:29 | Working on file S2_percentile_30_UTM_73-0000046592-0000023296.tif
	29/10/2020 14:54:30 | Working on file S2_percentile_30_UTM_73-0000046592-0000000000.tif
	29/10/2020 14:54:31 | Working on file S2_percentile_30_UTM_73-0000023296-0000023296.tif
	29/10/2020 14:54:31 | Working on file S2_percentile_30_UTM_73-0000023296-0000000000.tif
	29/10/2020 14:54:32 | Working on file S2_percentile_30_UTM_73-0000000000-0000023296.tif
	29/10/2020 14:54:32 | Working on file S2_percentile_30_UTM_73-0000000000-0000000000.tif
29/10/2020 14:54:33 | Working on tile 14X
29/10/2020 14:54:39 | 6 files to process
	29/10/2020 14:54:39 | Working on file S2_percentile_30_UTM_16-0000116480-0000000000.tif
	29/10/2020 14:54:40 | Working on file S2_percentile_30_UTM_16-0000093184-0000000000.tif
	29/10/2020 14:54:40 | Working on file S2_percentile_30_UTM_16-0000069888-0000000000.tif
	29/10/2020 14:54:41 | Working on file S2_percentile_30_UTM_16-0000046592-0000000000.tif
	29/10/2020 14:54:41 | Working on file S2_percentile_30_UTM_16-0000023296-0000000000.tif
	29/10/2020 14:54:42 | Working on file S2_percentile_30_UTM_16-0000000000-0000000000.tif
29/10/2020 14:54:43 | Working on tile 15M
29/10/2020 14:54:52 | 5 files to process
	29/10/2020 14:54:52 | Working on file S2_percentile_30_UTM_614-0000023296-0000046592.tif
	29/10/2020 14:54:52 | Working on file S2_percentile_30_UTM_614-0000023296-0000023296.tif
	29/10/2020 14:54:53 | Working on file S2_percentile_30_UTM_614-0000000000-0000046592.tif
	29/10/2020 14:54:54 | Working on file S2_percentile_30_UTM_614-0000000000-0000023296.tif
	29/10/2020 14:54:55 | Working on file S2_percentile_30_UTM_614-0000000000-0000000000.tif
29/10/2020 14:54:55 | Working on tile 15N
	15N_UTM.vrt contains no GeoTIFF, attempting 15N.vrt
29/10/2020 14:54:58 | 5 files to process
	29/10/2020 14:54:58 | Working on file S2_percentile_30_UTM_554-0000069888-0000046592.tif
	29/10/2020 14:54:58 | Working on file S2_percentile_30_UTM_554-0000069888-0000023296.tif
	29/10/2020 14:54:59 | Working on file S2_percentile_30_UTM_554-0000069888-0000000000.tif
	29/10/2020 14:55:00 | Working on file S2_percentile_30_UTM_554-0000046592-0000023296.tif
	29/10/2020 14:55:00 | Working on file S2_percentile_30_UTM_554-0000046592-0000000000.tif
29/10/2020 14:55:01 | Working on tile 15P
	15P_UTM.vrt contains no GeoTIFF, attempting 15P.vrt
29/10/2020 14:55:03 | 6 files to process
	29/10/2020 14:55:03 | Working on file S2_percentile_30_UTM_494-0000023296-0000046592.tif
	29/10/2020 14:55:07 | Working on file S2_percentile_30_UTM_494-0000023296-0000023296.tif
	29/10/2020 14:55:09 | Working on file S2_percentile_30_UTM_494-0000023296-0000000000.tif
	29/10/2020 14:55:09 | Working on file S2_percentile_30_UTM_494-0000000000-0000046592.tif
	29/10/2020 14:55:10 | Working on file S2_percentile_30_UTM_494-0000000000-0000023296.tif
	29/10/2020 14:55:11 | Working on file S2_percentile_30_UTM_494-0000000000-0000000000.tif
29/10/2020 14:55:11 | Working on tile 15Q
29/10/2020 14:55:18 | 12 files to process
	29/10/2020 14:55:18 | Working on file S2_percentile_30_UTM_434-0000069888-0000046592.tif
	29/10/2020 14:55:19 | Working on file S2_percentile_30_UTM_434-0000069888-0000023296.tif
	29/10/2020 14:55:20 | Working on file S2_percentile_30_UTM_434-0000069888-0000000000.tif
	29/10/2020 14:55:21 | Working on file S2_percentile_30_UTM_434-0000046592-0000046592.tif
	29/10/2020 14:55:22 | Working on file S2_percentile_30_UTM_434-0000046592-0000023296.tif
	29/10/2020 14:55:23 | Working on file S2_percentile_30_UTM_434-0000046592-0000000000.tif
	29/10/2020 14:55:24 | Working on file S2_percentile_30_UTM_434-0000023296-0000046592.tif
	29/10/2020 14:55:25 | Working on file S2_percentile_30_UTM_434-0000023296-0000023296.tif
	29/10/2020 14:55:26 | Working on file S2_percentile_30_UTM_434-0000023296-0000000000.tif
	29/10/2020 14:55:28 | Working on file S2_percentile_30_UTM_434-0000000000-0000046592.tif
	29/10/2020 14:55:29 | Working on file S2_percentile_30_UTM_434-0000000000-0000023296.tif
	29/10/2020 14:55:30 | Working on file S2_percentile_30_UTM_434-0000000000-0000000000.tif
29/10/2020 14:55:31 | Working on tile 15R
	15R_UTM.vrt contains no GeoTIFF, attempting 15R.vrt
29/10/2020 14:55:38 | 12 files to process
	29/10/2020 14:55:38 | Working on file S2_percentile_30_UTM_374-0000069888-0000046592.tif
	29/10/2020 14:55:40 | Working on file S2_percentile_30_UTM_374-0000069888-0000023296.tif
	29/10/2020 14:55:41 | Working on file S2_percentile_30_UTM_374-0000069888-0000000000.tif
	29/10/2020 14:55:41 | Working on file S2_percentile_30_UTM_374-0000046592-0000046592.tif
	29/10/2020 14:55:42 | Working on file S2_percentile_30_UTM_374-0000046592-0000023296.tif
	29/10/2020 14:55:43 | Working on file S2_percentile_30_UTM_374-0000046592-0000000000.tif
	29/10/2020 14:55:44 | Working on file S2_percentile_30_UTM_374-0000023296-0000046592.tif
	29/10/2020 14:55:45 | Working on file S2_percentile_30_UTM_374-0000023296-0000023296.tif
	29/10/2020 14:55:45 | Working on file S2_percentile_30_UTM_374-0000023296-0000000000.tif
	29/10/2020 14:55:46 | Working on file S2_percentile_30_UTM_374-0000000000-0000046592.tif
	29/10/2020 14:55:47 | Working on file S2_percentile_30_UTM_374-0000000000-0000023296.tif
	29/10/2020 14:55:48 | Working on file S2_percentile_30_UTM_374-0000000000-0000000000.tif
29/10/2020 14:55:49 | Working on tile 15S
	15S_UTM.vrt contains no GeoTIFF, attempting 15S.vrt
29/10/2020 14:55:51 | 12 files to process
	29/10/2020 14:55:51 | Working on file S2_percentile_UTM_314-0000069888-0000046592.tif
	29/10/2020 14:55:52 | Working on file S2_percentile_UTM_314-0000069888-0000023296.tif
	29/10/2020 14:55:53 | Working on file S2_percentile_UTM_314-0000069888-0000000000.tif
	29/10/2020 14:55:53 | Working on file S2_percentile_UTM_314-0000046592-0000046592.tif
	29/10/2020 14:55:54 | Working on file S2_percentile_UTM_314-0000046592-0000023296.tif
	29/10/2020 14:55:55 | Working on file S2_percentile_UTM_314-0000046592-0000000000.tif
	29/10/2020 14:55:55 | Working on file S2_percentile_UTM_314-0000023296-0000046592.tif
	29/10/2020 14:55:56 | Working on file S2_percentile_UTM_314-0000023296-0000023296.tif
	29/10/2020 14:55:57 | Working on file S2_percentile_UTM_314-0000023296-0000000000.tif
	29/10/2020 14:55:58 | Working on file S2_percentile_UTM_314-0000000000-0000046592.tif
	29/10/2020 14:55:58 | Working on file S2_percentile_UTM_314-0000000000-0000023296.tif
	29/10/2020 14:55:59 | Working on file S2_percentile_UTM_314-0000000000-0000000000.tif
29/10/2020 14:56:00 | Working on tile 15T
29/10/2020 14:56:07 | 12 files to process
	29/10/2020 14:56:07 | Working on file S2_percentile_30_UTM_254-0000069888-0000046592.tif
	29/10/2020 14:56:07 | Working on file S2_percentile_30_UTM_254-0000069888-0000023296.tif
	29/10/2020 14:56:08 | Working on file S2_percentile_30_UTM_254-0000069888-0000000000.tif
	29/10/2020 14:56:09 | Working on file S2_percentile_30_UTM_254-0000046592-0000046592.tif
	29/10/2020 14:56:09 | Working on file S2_percentile_30_UTM_254-0000046592-0000023296.tif
	29/10/2020 14:56:10 | Working on file S2_percentile_30_UTM_254-0000046592-0000000000.tif
	29/10/2020 14:56:11 | Working on file S2_percentile_30_UTM_254-0000023296-0000046592.tif
	29/10/2020 14:56:11 | Working on file S2_percentile_30_UTM_254-0000023296-0000023296.tif
	29/10/2020 14:56:12 | Working on file S2_percentile_30_UTM_254-0000023296-0000000000.tif
	29/10/2020 14:56:12 | Working on file S2_percentile_30_UTM_254-0000000000-0000046592.tif
	29/10/2020 14:56:13 | Working on file S2_percentile_30_UTM_254-0000000000-0000023296.tif
	29/10/2020 14:56:14 | Working on file S2_percentile_30_UTM_254-0000000000-0000000000.tif
29/10/2020 14:56:15 | Working on tile 15U
29/10/2020 14:56:21 | 8 files to process
	29/10/2020 14:56:21 | Working on file S2_percentile_UTM_194-0000069888-0000023296.tif
	29/10/2020 14:56:22 | Working on file S2_percentile_UTM_194-0000069888-0000000000.tif
	29/10/2020 14:56:23 | Working on file S2_percentile_UTM_194-0000046592-0000023296.tif
	29/10/2020 14:56:24 | Working on file S2_percentile_UTM_194-0000046592-0000000000.tif
	29/10/2020 14:56:25 | Working on file S2_percentile_UTM_194-0000023296-0000023296.tif
	29/10/2020 14:56:26 | Working on file S2_percentile_UTM_194-0000023296-0000000000.tif
	29/10/2020 14:56:26 | Working on file S2_percentile_UTM_194-0000000000-0000023296.tif
	29/10/2020 14:56:27 | Working on file S2_percentile_UTM_194-0000000000-0000000000.tif
29/10/2020 14:56:28 | Working on tile 15V
29/10/2020 14:56:36 | 8 files to process
	29/10/2020 14:56:36 | Working on file S2_percentile_30_UTM_134-0000069888-0000023296.tif
	29/10/2020 14:56:37 | Working on file S2_percentile_30_UTM_134-0000069888-0000000000.tif
	29/10/2020 14:56:37 | Working on file S2_percentile_30_UTM_134-0000046592-0000023296.tif
	29/10/2020 14:56:38 | Working on file S2_percentile_30_UTM_134-0000046592-0000000000.tif
	29/10/2020 14:56:39 | Working on file S2_percentile_30_UTM_134-0000023296-0000023296.tif
	29/10/2020 14:56:39 | Working on file S2_percentile_30_UTM_134-0000023296-0000000000.tif
	29/10/2020 14:56:40 | Working on file S2_percentile_30_UTM_134-0000000000-0000023296.tif
	29/10/2020 14:56:41 | Working on file S2_percentile_30_UTM_134-0000000000-0000000000.tif
29/10/2020 14:56:42 | Working on tile 15W
29/10/2020 14:56:48 | 8 files to process
	29/10/2020 14:56:48 | Working on file S2_percentile_30_UTM_74-0000069888-0000023296.tif
	29/10/2020 14:56:49 | Working on file S2_percentile_30_UTM_74-0000069888-0000000000.tif
	29/10/2020 14:56:50 | Working on file S2_percentile_30_UTM_74-0000046592-0000023296.tif
	29/10/2020 14:56:50 | Working on file S2_percentile_30_UTM_74-0000046592-0000000000.tif
	29/10/2020 14:56:51 | Working on file S2_percentile_30_UTM_74-0000023296-0000023296.tif
	29/10/2020 14:56:52 | Working on file S2_percentile_30_UTM_74-0000023296-0000000000.tif
	29/10/2020 14:56:52 | Working on file S2_percentile_30_UTM_74-0000000000-0000023296.tif
	29/10/2020 14:56:53 | Working on file S2_percentile_30_UTM_74-0000000000-0000000000.tif
29/10/2020 14:56:54 | Working on tile 15X
29/10/2020 14:57:05 | 6 files to process
	29/10/2020 14:57:05 | Working on file S2_percentile_30_UTM_17-0000116480-0000000000.tif
	29/10/2020 14:57:06 | Working on file S2_percentile_30_UTM_17-0000093184-0000000000.tif
	29/10/2020 14:57:07 | Working on file S2_percentile_30_UTM_17-0000069888-0000000000.tif
	29/10/2020 14:57:08 | Working on file S2_percentile_30_UTM_17-0000046592-0000000000.tif
	29/10/2020 14:57:08 | Working on file S2_percentile_30_UTM_17-0000023296-0000000000.tif
	29/10/2020 14:57:09 | Working on file S2_percentile_30_UTM_17-0000000000-0000000000.tif
29/10/2020 14:57:10 | Working on tile 16M
	16M_UTM.vrt contains no GeoTIFF, attempting 16M.vrt
29/10/2020 14:57:20 | 6 files to process
	29/10/2020 14:57:20 | Working on file S2_percentile_30_UTM_615-0000023296-0000046592.tif
	29/10/2020 14:57:21 | Working on file S2_percentile_30_UTM_615-0000023296-0000023296.tif
	29/10/2020 14:57:21 | Working on file S2_percentile_30_UTM_615-0000023296-0000000000.tif
	29/10/2020 14:57:22 | Working on file S2_percentile_30_UTM_615-0000000000-0000046592.tif
	29/10/2020 14:57:23 | Working on file S2_percentile_30_UTM_615-0000000000-0000023296.tif
	29/10/2020 14:57:24 | Working on file S2_percentile_30_UTM_615-0000000000-0000000000.tif
29/10/2020 14:57:25 | Working on tile 16P
29/10/2020 14:57:32 | 11 files to process
	29/10/2020 14:57:32 | Working on file S2_percentile_30_UTM_495-0000069888-0000046592.tif
	29/10/2020 14:57:33 | Working on file S2_percentile_30_UTM_495-0000069888-0000023296.tif
	29/10/2020 14:57:34 | Working on file S2_percentile_30_UTM_495-0000046592-0000046592.tif
	29/10/2020 14:57:35 | Working on file S2_percentile_30_UTM_495-0000046592-0000023296.tif
	29/10/2020 14:57:35 | Working on file S2_percentile_30_UTM_495-0000046592-0000000000.tif
	29/10/2020 14:57:36 | Working on file S2_percentile_30_UTM_495-0000023296-0000046592.tif
	29/10/2020 14:57:37 | Working on file S2_percentile_30_UTM_495-0000023296-0000023296.tif
	29/10/2020 14:57:38 | Working on file S2_percentile_30_UTM_495-0000023296-0000000000.tif
	29/10/2020 14:57:41 | Working on file S2_percentile_30_UTM_495-0000000000-0000046592.tif
	29/10/2020 14:57:49 | Working on file S2_percentile_30_UTM_495-0000000000-0000023296.tif
	29/10/2020 14:57:58 | Working on file S2_percentile_30_UTM_495-0000000000-0000000000.tif
29/10/2020 14:57:59 | Working on tile 16Q
29/10/2020 14:58:05 | 12 files to process
	29/10/2020 14:58:05 | Working on file S2_percentile_30_UTM_435-0000069888-0000046592.tif
	29/10/2020 14:58:06 | Working on file S2_percentile_30_UTM_435-0000069888-0000023296.tif
	29/10/2020 14:58:06 | Working on file S2_percentile_30_UTM_435-0000069888-0000000000.tif
	29/10/2020 14:58:07 | Working on file S2_percentile_30_UTM_435-0000046592-0000046592.tif
	29/10/2020 14:58:08 | Working on file S2_percentile_30_UTM_435-0000046592-0000023296.tif
	29/10/2020 14:58:08 | Working on file S2_percentile_30_UTM_435-0000046592-0000000000.tif
	29/10/2020 14:58:09 | Working on file S2_percentile_30_UTM_435-0000023296-0000046592.tif
	29/10/2020 14:58:09 | Working on file S2_percentile_30_UTM_435-0000023296-0000023296.tif
	29/10/2020 14:58:10 | Working on file S2_percentile_30_UTM_435-0000023296-0000000000.tif
	29/10/2020 14:58:11 | Working on file S2_percentile_30_UTM_435-0000000000-0000046592.tif
	29/10/2020 14:58:12 | Working on file S2_percentile_30_UTM_435-0000000000-0000023296.tif
	29/10/2020 14:58:13 | Working on file S2_percentile_30_UTM_435-0000000000-0000000000.tif
29/10/2020 14:58:14 | Working on tile 16R
	16R_UTM.vrt contains no GeoTIFF, attempting 16R.vrt
29/10/2020 14:58:16 | 12 files to process
	29/10/2020 14:58:16 | Working on file S2_percentile_30_UTM_375-0000069888-0000046592.tif
	29/10/2020 14:58:17 | Working on file S2_percentile_30_UTM_375-0000069888-0000023296.tif
	29/10/2020 14:58:18 | Working on file S2_percentile_30_UTM_375-0000069888-0000000000.tif
	29/10/2020 14:58:18 | Working on file S2_percentile_30_UTM_375-0000046592-0000046592.tif
	29/10/2020 14:58:19 | Working on file S2_percentile_30_UTM_375-0000046592-0000023296.tif
	29/10/2020 14:58:20 | Working on file S2_percentile_30_UTM_375-0000046592-0000000000.tif
	29/10/2020 14:58:20 | Working on file S2_percentile_30_UTM_375-0000023296-0000046592.tif
	29/10/2020 14:58:21 | Working on file S2_percentile_30_UTM_375-0000023296-0000023296.tif
	29/10/2020 14:58:22 | Working on file S2_percentile_30_UTM_375-0000023296-0000000000.tif
	29/10/2020 14:58:22 | Working on file S2_percentile_30_UTM_375-0000000000-0000046592.tif
	29/10/2020 14:58:23 | Working on file S2_percentile_30_UTM_375-0000000000-0000023296.tif
	29/10/2020 14:58:24 | Working on file S2_percentile_30_UTM_375-0000000000-0000000000.tif
29/10/2020 14:58:24 | Working on tile 16S
	16S_UTM.vrt contains no GeoTIFF, attempting 16S.vrt
29/10/2020 14:58:27 | 12 files to process
	29/10/2020 14:58:27 | Working on file S2_percentile_UTM_315-0000069888-0000046592.tif
	29/10/2020 14:58:28 | Working on file S2_percentile_UTM_315-0000069888-0000023296.tif
	29/10/2020 14:58:29 | Working on file S2_percentile_UTM_315-0000069888-0000000000.tif
	29/10/2020 14:58:29 | Working on file S2_percentile_UTM_315-0000046592-0000046592.tif
	29/10/2020 14:58:30 | Working on file S2_percentile_UTM_315-0000046592-0000023296.tif
	29/10/2020 14:58:30 | Working on file S2_percentile_UTM_315-0000046592-0000000000.tif
	29/10/2020 14:58:31 | Working on file S2_percentile_UTM_315-0000023296-0000046592.tif
	29/10/2020 14:58:32 | Working on file S2_percentile_UTM_315-0000023296-0000023296.tif
	29/10/2020 14:58:33 | Working on file S2_percentile_UTM_315-0000023296-0000000000.tif
	29/10/2020 14:58:33 | Working on file S2_percentile_UTM_315-0000000000-0000046592.tif
	29/10/2020 14:58:34 | Working on file S2_percentile_UTM_315-0000000000-0000023296.tif
	29/10/2020 14:58:35 | Working on file S2_percentile_UTM_315-0000000000-0000000000.tif
29/10/2020 14:58:35 | Working on tile 16T
	16T_UTM.vrt contains no GeoTIFF, attempting 16T.vrt
29/10/2020 14:58:38 | 12 files to process
	29/10/2020 14:58:38 | Working on file S2_percentile_UTM_255-0000069888-0000046592.tif
	29/10/2020 14:58:39 | Working on file S2_percentile_UTM_255-0000069888-0000023296.tif
	29/10/2020 14:58:39 | Working on file S2_percentile_UTM_255-0000069888-0000000000.tif
	29/10/2020 14:58:40 | Working on file S2_percentile_UTM_255-0000046592-0000046592.tif
	29/10/2020 14:58:40 | Working on file S2_percentile_UTM_255-0000046592-0000023296.tif
	29/10/2020 14:58:41 | Working on file S2_percentile_UTM_255-0000046592-0000000000.tif
	29/10/2020 14:58:41 | Working on file S2_percentile_UTM_255-0000023296-0000046592.tif
	29/10/2020 14:58:42 | Working on file S2_percentile_UTM_255-0000023296-0000023296.tif
	29/10/2020 14:58:43 | Working on file S2_percentile_UTM_255-0000023296-0000000000.tif
	29/10/2020 14:58:43 | Working on file S2_percentile_UTM_255-0000000000-0000046592.tif
	29/10/2020 14:58:44 | Working on file S2_percentile_UTM_255-0000000000-0000023296.tif
	29/10/2020 14:58:44 | Working on file S2_percentile_UTM_255-0000000000-0000000000.tif
29/10/2020 14:58:45 | Working on tile 16U
29/10/2020 14:58:50 | 8 files to process
	29/10/2020 14:58:50 | Working on file S2_percentile_UTM_195-0000069888-0000023296.tif
	29/10/2020 14:58:51 | Working on file S2_percentile_UTM_195-0000069888-0000000000.tif
	29/10/2020 14:58:51 | Working on file S2_percentile_UTM_195-0000046592-0000023296.tif
	29/10/2020 14:58:52 | Working on file S2_percentile_UTM_195-0000046592-0000000000.tif
	29/10/2020 14:58:52 | Working on file S2_percentile_UTM_195-0000023296-0000023296.tif
	29/10/2020 14:58:53 | Working on file S2_percentile_UTM_195-0000023296-0000000000.tif
	29/10/2020 14:58:54 | Working on file S2_percentile_UTM_195-0000000000-0000023296.tif
	29/10/2020 14:58:54 | Working on file S2_percentile_UTM_195-0000000000-0000000000.tif
29/10/2020 14:58:55 | Working on tile 16V
29/10/2020 14:59:00 | 8 files to process
	29/10/2020 14:59:00 | Working on file S2_percentile_UTM_135-0000069888-0000023296.tif
	29/10/2020 14:59:01 | Working on file S2_percentile_UTM_135-0000069888-0000000000.tif
	29/10/2020 14:59:02 | Working on file S2_percentile_UTM_135-0000046592-0000023296.tif
	29/10/2020 14:59:03 | Working on file S2_percentile_UTM_135-0000046592-0000000000.tif
	29/10/2020 14:59:03 | Working on file S2_percentile_UTM_135-0000023296-0000023296.tif
	29/10/2020 14:59:04 | Working on file S2_percentile_UTM_135-0000023296-0000000000.tif
	29/10/2020 14:59:04 | Working on file S2_percentile_UTM_135-0000000000-0000023296.tif
	29/10/2020 14:59:05 | Working on file S2_percentile_UTM_135-0000000000-0000000000.tif
29/10/2020 14:59:06 | Working on tile 16W
29/10/2020 14:59:12 | 8 files to process
	29/10/2020 14:59:12 | Working on file S2_percentile_30_UTM_75-0000069888-0000023296.tif
	29/10/2020 14:59:12 | Working on file S2_percentile_30_UTM_75-0000069888-0000000000.tif
	29/10/2020 14:59:13 | Working on file S2_percentile_30_UTM_75-0000046592-0000023296.tif
	29/10/2020 14:59:13 | Working on file S2_percentile_30_UTM_75-0000046592-0000000000.tif
	29/10/2020 14:59:14 | Working on file S2_percentile_30_UTM_75-0000023296-0000023296.tif
	29/10/2020 14:59:14 | Working on file S2_percentile_30_UTM_75-0000023296-0000000000.tif
	29/10/2020 14:59:15 | Working on file S2_percentile_30_UTM_75-0000000000-0000023296.tif
	29/10/2020 14:59:16 | Working on file S2_percentile_30_UTM_75-0000000000-0000000000.tif
29/10/2020 14:59:16 | Working on tile 16X
	16X_UTM.vrt contains no GeoTIFF, attempting 16X.vrt
29/10/2020 14:59:19 | 8 files to process
	29/10/2020 14:59:19 | Working on file S2_percentile_30_UTM_18-0000116480-0000023296.tif
	29/10/2020 14:59:19 | Working on file S2_percentile_30_UTM_18-0000116480-0000000000.tif
	29/10/2020 14:59:20 | Working on file S2_percentile_30_UTM_18-0000093184-0000023296.tif
	29/10/2020 14:59:20 | Working on file S2_percentile_30_UTM_18-0000093184-0000000000.tif
	29/10/2020 14:59:21 | Working on file S2_percentile_30_UTM_18-0000069888-0000000000.tif
	29/10/2020 14:59:21 | Working on file S2_percentile_30_UTM_18-0000046592-0000000000.tif
	29/10/2020 14:59:22 | Working on file S2_percentile_30_UTM_18-0000023296-0000000000.tif
	29/10/2020 14:59:23 | Working on file S2_percentile_30_UTM_18-0000000000-0000000000.tif
29/10/2020 14:59:23 | Working on tile 17L
29/10/2020 14:59:29 | 7 files to process
	29/10/2020 14:59:29 | Working on file S2_percentile_30_UTM_676-0000069888-0000046592.tif
	29/10/2020 14:59:30 | Working on file S2_percentile_30_UTM_676-0000046592-0000046592.tif
	29/10/2020 14:59:30 | Working on file S2_percentile_30_UTM_676-0000046592-0000023296.tif
	29/10/2020 14:59:31 | Working on file S2_percentile_30_UTM_676-0000023296-0000046592.tif
	29/10/2020 14:59:33 | Working on file S2_percentile_30_UTM_676-0000023296-0000023296.tif
	29/10/2020 14:59:34 | Working on file S2_percentile_30_UTM_676-0000000000-0000046592.tif
	29/10/2020 14:59:35 | Working on file S2_percentile_30_UTM_676-0000000000-0000023296.tif
29/10/2020 14:59:36 | Working on tile 17M
29/10/2020 14:59:41 | 12 files to process
	29/10/2020 14:59:41 | Working on file S2_percentile_30_UTM_616-0000069888-0000046592.tif
	29/10/2020 14:59:42 | Working on file S2_percentile_30_UTM_616-0000069888-0000023296.tif
	29/10/2020 14:59:43 | Working on file S2_percentile_30_UTM_616-0000069888-0000000000.tif
	29/10/2020 14:59:44 | Working on file S2_percentile_30_UTM_616-0000046592-0000046592.tif
	29/10/2020 14:59:45 | Working on file S2_percentile_30_UTM_616-0000046592-0000023296.tif
	29/10/2020 14:59:46 | Working on file S2_percentile_30_UTM_616-0000046592-0000000000.tif
	29/10/2020 14:59:47 | Working on file S2_percentile_30_UTM_616-0000023296-0000046592.tif
	29/10/2020 14:59:49 | Working on file S2_percentile_30_UTM_616-0000023296-0000023296.tif
	29/10/2020 14:59:50 | Working on file S2_percentile_30_UTM_616-0000023296-0000000000.tif
	29/10/2020 14:59:51 | Working on file S2_percentile_30_UTM_616-0000000000-0000046592.tif
	29/10/2020 14:59:52 | Working on file S2_percentile_30_UTM_616-0000000000-0000023296.tif
	29/10/2020 14:59:53 | Working on file S2_percentile_30_UTM_616-0000000000-0000000000.tif
29/10/2020 14:59:57 | Working on tile 17N
29/10/2020 15:00:09 | 10 files to process
	29/10/2020 15:00:09 | Working on file S2_percentile_30_UTM_556-0000069888-0000046592.tif
	29/10/2020 15:00:10 | Working on file S2_percentile_30_UTM_556-0000069888-0000023296.tif
	29/10/2020 15:00:10 | Working on file S2_percentile_30_UTM_556-0000069888-0000000000.tif
	29/10/2020 15:00:11 | Working on file S2_percentile_30_UTM_556-0000046592-0000046592.tif
	29/10/2020 15:00:12 | Working on file S2_percentile_30_UTM_556-0000046592-0000023296.tif
	29/10/2020 15:00:13 | Working on file S2_percentile_30_UTM_556-0000023296-0000046592.tif
	29/10/2020 15:00:15 | Working on file S2_percentile_30_UTM_556-0000023296-0000023296.tif
	29/10/2020 15:00:15 | Working on file S2_percentile_30_UTM_556-0000000000-0000046592.tif
	29/10/2020 15:00:16 | Working on file S2_percentile_30_UTM_556-0000000000-0000023296.tif
	29/10/2020 15:00:17 | Working on file S2_percentile_30_UTM_556-0000000000-0000000000.tif
29/10/2020 15:00:18 | Working on tile 17P
	17P_UTM.vrt contains no GeoTIFF, attempting 17P.vrt
29/10/2020 15:00:20 | 12 files to process
	29/10/2020 15:00:20 | Working on file S2_percentile_30_UTM_496-0000069888-0000046592.tif
	29/10/2020 15:00:21 | Working on file S2_percentile_30_UTM_496-0000069888-0000023296.tif
	29/10/2020 15:00:22 | Working on file S2_percentile_30_UTM_496-0000069888-0000000000.tif
	29/10/2020 15:00:22 | Working on file S2_percentile_30_UTM_496-0000046592-0000046592.tif
	29/10/2020 15:00:24 | Working on file S2_percentile_30_UTM_496-0000046592-0000023296.tif
	29/10/2020 15:00:26 | Working on file S2_percentile_30_UTM_496-0000046592-0000000000.tif
	29/10/2020 15:00:28 | Working on file S2_percentile_30_UTM_496-0000023296-0000046592.tif
	29/10/2020 15:00:32 | Working on file S2_percentile_30_UTM_496-0000023296-0000023296.tif
	29/10/2020 15:00:33 | Working on file S2_percentile_30_UTM_496-0000023296-0000000000.tif
	29/10/2020 15:00:34 | Working on file S2_percentile_30_UTM_496-0000000000-0000046592.tif
	29/10/2020 15:00:35 | Working on file S2_percentile_30_UTM_496-0000000000-0000023296.tif
	29/10/2020 15:00:37 | Working on file S2_percentile_30_UTM_496-0000000000-0000000000.tif
29/10/2020 15:00:38 | Working on tile 17Q
29/10/2020 15:00:50 | 12 files to process
	29/10/2020 15:00:50 | Working on file S2_percentile_30_UTM_436-0000069888-0000046592.tif
	29/10/2020 15:00:51 | Working on file S2_percentile_30_UTM_436-0000069888-0000023296.tif
	29/10/2020 15:00:52 | Working on file S2_percentile_30_UTM_436-0000069888-0000000000.tif
	29/10/2020 15:00:53 | Working on file S2_percentile_30_UTM_436-0000046592-0000046592.tif
	29/10/2020 15:00:55 | Working on file S2_percentile_30_UTM_436-0000046592-0000023296.tif
	29/10/2020 15:00:58 | Working on file S2_percentile_30_UTM_436-0000046592-0000000000.tif
	29/10/2020 15:01:01 | Working on file S2_percentile_30_UTM_436-0000023296-0000046592.tif
	29/10/2020 15:01:02 | Working on file S2_percentile_30_UTM_436-0000023296-0000023296.tif
	29/10/2020 15:01:03 | Working on file S2_percentile_30_UTM_436-0000023296-0000000000.tif
	29/10/2020 15:01:04 | Working on file S2_percentile_30_UTM_436-0000000000-0000046592.tif
	29/10/2020 15:01:04 | Working on file S2_percentile_30_UTM_436-0000000000-0000023296.tif
	29/10/2020 15:01:05 | Working on file S2_percentile_30_UTM_436-0000000000-0000000000.tif
29/10/2020 15:01:06 | Working on tile 17R
	17R_UTM.vrt contains no GeoTIFF, attempting 17R.vrt
29/10/2020 15:01:09 | 12 files to process
	29/10/2020 15:01:09 | Working on file S2_percentile_UTM_376-0000069888-0000046592.tif
	29/10/2020 15:01:09 | Working on file S2_percentile_UTM_376-0000069888-0000023296.tif
	29/10/2020 15:01:10 | Working on file S2_percentile_UTM_376-0000069888-0000000000.tif
	29/10/2020 15:01:11 | Working on file S2_percentile_UTM_376-0000046592-0000046592.tif
	29/10/2020 15:01:11 | Working on file S2_percentile_UTM_376-0000046592-0000023296.tif
	29/10/2020 15:01:13 | Working on file S2_percentile_UTM_376-0000046592-0000000000.tif
	29/10/2020 15:01:14 | Working on file S2_percentile_UTM_376-0000023296-0000046592.tif
	29/10/2020 15:01:15 | Working on file S2_percentile_UTM_376-0000023296-0000023296.tif
	29/10/2020 15:01:16 | Working on file S2_percentile_UTM_376-0000023296-0000000000.tif
	29/10/2020 15:01:17 | Working on file S2_percentile_UTM_376-0000000000-0000046592.tif
	29/10/2020 15:01:18 | Working on file S2_percentile_UTM_376-0000000000-0000023296.tif
	29/10/2020 15:01:19 | Working on file S2_percentile_UTM_376-0000000000-0000000000.tif
29/10/2020 15:01:20 | Working on tile 17S
29/10/2020 15:01:27 | 12 files to process
	29/10/2020 15:01:27 | Working on file S2_percentile_UTM_316-0000069888-0000046592.tif
	29/10/2020 15:01:27 | Working on file S2_percentile_UTM_316-0000069888-0000023296.tif
	29/10/2020 15:01:28 | Working on file S2_percentile_UTM_316-0000069888-0000000000.tif
	29/10/2020 15:01:29 | Working on file S2_percentile_UTM_316-0000046592-0000046592.tif
	29/10/2020 15:01:30 | Working on file S2_percentile_UTM_316-0000046592-0000023296.tif
	29/10/2020 15:01:31 | Working on file S2_percentile_UTM_316-0000046592-0000000000.tif
	29/10/2020 15:01:31 | Working on file S2_percentile_UTM_316-0000023296-0000046592.tif
	29/10/2020 15:01:32 | Working on file S2_percentile_UTM_316-0000023296-0000023296.tif
	29/10/2020 15:01:33 | Working on file S2_percentile_UTM_316-0000023296-0000000000.tif
	29/10/2020 15:01:34 | Working on file S2_percentile_UTM_316-0000000000-0000046592.tif
	29/10/2020 15:01:34 | Working on file S2_percentile_UTM_316-0000000000-0000023296.tif
	29/10/2020 15:01:35 | Working on file S2_percentile_UTM_316-0000000000-0000000000.tif
29/10/2020 15:01:36 | Working on tile 17T
29/10/2020 15:01:42 | 12 files to process
	29/10/2020 15:01:42 | Working on file S2_percentile_UTM_256-0000069888-0000046592.tif
	29/10/2020 15:01:43 | Working on file S2_percentile_UTM_256-0000069888-0000023296.tif
	29/10/2020 15:01:45 | Working on file S2_percentile_UTM_256-0000069888-0000000000.tif
	29/10/2020 15:01:46 | Working on file S2_percentile_UTM_256-0000046592-0000046592.tif
	29/10/2020 15:01:46 | Working on file S2_percentile_UTM_256-0000046592-0000023296.tif
	29/10/2020 15:01:47 | Working on file S2_percentile_UTM_256-0000046592-0000000000.tif
	29/10/2020 15:01:48 | Working on file S2_percentile_UTM_256-0000023296-0000046592.tif
	29/10/2020 15:01:48 | Working on file S2_percentile_UTM_256-0000023296-0000023296.tif
	29/10/2020 15:01:49 | Working on file S2_percentile_UTM_256-0000023296-0000000000.tif
	29/10/2020 15:01:50 | Working on file S2_percentile_UTM_256-0000000000-0000046592.tif
	29/10/2020 15:01:50 | Working on file S2_percentile_UTM_256-0000000000-0000023296.tif
	29/10/2020 15:01:51 | Working on file S2_percentile_UTM_256-0000000000-0000000000.tif
29/10/2020 15:01:52 | Working on tile 17U
29/10/2020 15:01:59 | 8 files to process
	29/10/2020 15:01:59 | Working on file S2_percentile_30_UTM_196-0000069888-0000023296.tif
	29/10/2020 15:02:00 | Working on file S2_percentile_30_UTM_196-0000069888-0000000000.tif
	29/10/2020 15:02:02 | Working on file S2_percentile_30_UTM_196-0000046592-0000023296.tif
	29/10/2020 15:02:03 | Working on file S2_percentile_30_UTM_196-0000046592-0000000000.tif
	29/10/2020 15:02:03 | Working on file S2_percentile_30_UTM_196-0000023296-0000023296.tif
	29/10/2020 15:02:04 | Working on file S2_percentile_30_UTM_196-0000023296-0000000000.tif
	29/10/2020 15:02:05 | Working on file S2_percentile_30_UTM_196-0000000000-0000023296.tif
	29/10/2020 15:02:06 | Working on file S2_percentile_30_UTM_196-0000000000-0000000000.tif
29/10/2020 15:02:07 | Working on tile 17V
29/10/2020 15:02:13 | 8 files to process
	29/10/2020 15:02:13 | Working on file S2_percentile_UTM_136-0000069888-0000023296.tif
	29/10/2020 15:02:14 | Working on file S2_percentile_UTM_136-0000069888-0000000000.tif
	29/10/2020 15:02:18 | Working on file S2_percentile_UTM_136-0000046592-0000023296.tif
	29/10/2020 15:02:21 | Working on file S2_percentile_UTM_136-0000046592-0000000000.tif
	29/10/2020 15:02:22 | Working on file S2_percentile_UTM_136-0000023296-0000023296.tif
	29/10/2020 15:02:23 | Working on file S2_percentile_UTM_136-0000023296-0000000000.tif
	29/10/2020 15:02:23 | Working on file S2_percentile_UTM_136-0000000000-0000023296.tif
	29/10/2020 15:02:24 | Working on file S2_percentile_UTM_136-0000000000-0000000000.tif
29/10/2020 15:02:25 | Working on tile 17W
	17W_UTM.vrt contains no GeoTIFF, attempting 17W.vrt
29/10/2020 15:02:27 | 8 files to process
	29/10/2020 15:02:27 | Working on file S2_percentile_30_UTM_76-0000069888-0000023296.tif
	29/10/2020 15:02:28 | Working on file S2_percentile_30_UTM_76-0000069888-0000000000.tif
	29/10/2020 15:02:29 | Working on file S2_percentile_30_UTM_76-0000046592-0000023296.tif
	29/10/2020 15:02:29 | Working on file S2_percentile_30_UTM_76-0000046592-0000000000.tif
	29/10/2020 15:02:32 | Working on file S2_percentile_30_UTM_76-0000023296-0000023296.tif
	29/10/2020 15:02:33 | Working on file S2_percentile_30_UTM_76-0000023296-0000000000.tif
	29/10/2020 15:02:35 | Working on file S2_percentile_30_UTM_76-0000000000-0000023296.tif
	29/10/2020 15:02:37 | Working on file S2_percentile_30_UTM_76-0000000000-0000000000.tif
29/10/2020 15:02:40 | Working on tile 17X
	17X_UTM.vrt contains no GeoTIFF, attempting 17X.vrt
29/10/2020 15:02:43 | 8 files to process
	29/10/2020 15:02:43 | Working on file S2_percentile_30_UTM_19-0000116480-0000023296.tif
	29/10/2020 15:02:43 | Working on file S2_percentile_30_UTM_19-0000116480-0000000000.tif
	29/10/2020 15:02:44 | Working on file S2_percentile_30_UTM_19-0000093184-0000023296.tif
	29/10/2020 15:02:44 | Working on file S2_percentile_30_UTM_19-0000093184-0000000000.tif
	29/10/2020 15:02:45 | Working on file S2_percentile_30_UTM_19-0000069888-0000000000.tif
	29/10/2020 15:02:47 | Working on file S2_percentile_30_UTM_19-0000046592-0000000000.tif
	29/10/2020 15:02:48 | Working on file S2_percentile_30_UTM_19-0000023296-0000000000.tif
	29/10/2020 15:02:49 | Working on file S2_percentile_30_UTM_19-0000000000-0000000000.tif
29/10/2020 15:02:50 | Working on tile 18F
29/10/2020 15:02:58 | 8 files to process
	29/10/2020 15:02:58 | Working on file S2_percentile_30_UTM_977-0000069888-0000023296.tif
	29/10/2020 15:02:59 | Working on file S2_percentile_30_UTM_977-0000069888-0000000000.tif
	29/10/2020 15:03:00 | Working on file S2_percentile_30_UTM_977-0000046592-0000023296.tif
	29/10/2020 15:03:00 | Working on file S2_percentile_30_UTM_977-0000046592-0000000000.tif
	29/10/2020 15:03:01 | Working on file S2_percentile_30_UTM_977-0000023296-0000023296.tif
	29/10/2020 15:03:02 | Working on file S2_percentile_30_UTM_977-0000023296-0000000000.tif
	29/10/2020 15:03:03 | Working on file S2_percentile_30_UTM_977-0000000000-0000023296.tif
	29/10/2020 15:03:03 | Working on file S2_percentile_30_UTM_977-0000000000-0000000000.tif
29/10/2020 15:03:04 | Working on tile 18G
29/10/2020 15:03:10 | 12 files to process
	29/10/2020 15:03:10 | Working on file S2_percentile_30_UTM_917-0000069888-0000046592.tif
	29/10/2020 15:03:11 | Working on file S2_percentile_30_UTM_917-0000069888-0000023296.tif
	29/10/2020 15:03:12 | Working on file S2_percentile_30_UTM_917-0000069888-0000000000.tif
	29/10/2020 15:03:12 | Working on file S2_percentile_30_UTM_917-0000046592-0000046592.tif
	29/10/2020 15:03:13 | Working on file S2_percentile_30_UTM_917-0000046592-0000023296.tif
	29/10/2020 15:03:14 | Working on file S2_percentile_30_UTM_917-0000046592-0000000000.tif
	29/10/2020 15:03:14 | Working on file S2_percentile_30_UTM_917-0000023296-0000046592.tif
	29/10/2020 15:03:15 | Working on file S2_percentile_30_UTM_917-0000023296-0000023296.tif
	29/10/2020 15:03:16 | Working on file S2_percentile_30_UTM_917-0000023296-0000000000.tif
	29/10/2020 15:03:16 | Working on file S2_percentile_30_UTM_917-0000000000-0000046592.tif
	29/10/2020 15:03:17 | Working on file S2_percentile_30_UTM_917-0000000000-0000023296.tif
	29/10/2020 15:03:18 | Working on file S2_percentile_30_UTM_917-0000000000-0000000000.tif
29/10/2020 15:03:18 | Working on tile 18H
29/10/2020 15:03:27 | 12 files to process
	29/10/2020 15:03:27 | Working on file S2_percentile_30_UTM_857-0000069888-0000046592.tif
	29/10/2020 15:03:29 | Working on file S2_percentile_30_UTM_857-0000069888-0000023296.tif
	29/10/2020 15:03:30 | Working on file S2_percentile_30_UTM_857-0000069888-0000000000.tif
	29/10/2020 15:03:31 | Working on file S2_percentile_30_UTM_857-0000046592-0000046592.tif
	29/10/2020 15:03:31 | Working on file S2_percentile_30_UTM_857-0000046592-0000023296.tif
	29/10/2020 15:03:32 | Working on file S2_percentile_30_UTM_857-0000046592-0000000000.tif
	29/10/2020 15:03:33 | Working on file S2_percentile_30_UTM_857-0000023296-0000046592.tif
	29/10/2020 15:03:34 | Working on file S2_percentile_30_UTM_857-0000023296-0000023296.tif
	29/10/2020 15:03:37 | Working on file S2_percentile_30_UTM_857-0000023296-0000000000.tif
	29/10/2020 15:03:39 | Working on file S2_percentile_30_UTM_857-0000000000-0000046592.tif
	29/10/2020 15:03:41 | Working on file S2_percentile_30_UTM_857-0000000000-0000023296.tif
	29/10/2020 15:03:42 | Working on file S2_percentile_30_UTM_857-0000000000-0000000000.tif
29/10/2020 15:03:43 | Working on tile 18J
29/10/2020 15:03:49 | 7 files to process
	29/10/2020 15:03:49 | Working on file S2_percentile_30_UTM_797-0000069888-0000046592.tif
	29/10/2020 15:03:50 | Working on file S2_percentile_30_UTM_797-0000069888-0000023296.tif
	29/10/2020 15:03:51 | Working on file S2_percentile_30_UTM_797-0000046592-0000046592.tif
	29/10/2020 15:03:51 | Working on file S2_percentile_30_UTM_797-0000046592-0000023296.tif
	29/10/2020 15:03:52 | Working on file S2_percentile_30_UTM_797-0000023296-0000046592.tif
	29/10/2020 15:03:53 | Working on file S2_percentile_30_UTM_797-0000023296-0000023296.tif
	29/10/2020 15:03:53 | Working on file S2_percentile_30_UTM_797-0000000000-0000046592.tif
29/10/2020 15:03:54 | Working on tile 18K
29/10/2020 15:04:01 | 7 files to process
	29/10/2020 15:04:01 | Working on file S2_percentile_30_UTM_737-0000069888-0000046592.tif
	29/10/2020 15:04:02 | Working on file S2_percentile_30_UTM_737-0000046592-0000046592.tif
	29/10/2020 15:04:03 | Working on file S2_percentile_30_UTM_737-0000023296-0000046592.tif
	29/10/2020 15:04:04 | Working on file S2_percentile_30_UTM_737-0000023296-0000023296.tif
	29/10/2020 15:04:04 | Working on file S2_percentile_30_UTM_737-0000000000-0000046592.tif
	29/10/2020 15:04:05 | Working on file S2_percentile_30_UTM_737-0000000000-0000023296.tif
	29/10/2020 15:04:06 | Working on file S2_percentile_30_UTM_737-0000000000-0000000000.tif
29/10/2020 15:04:07 | Working on tile 18L
29/10/2020 15:04:13 | 12 files to process
	29/10/2020 15:04:13 | Working on file S2_percentile_30_UTM_677-0000069888-0000046592.tif
	29/10/2020 15:04:14 | Working on file S2_percentile_30_UTM_677-0000069888-0000023296.tif
	29/10/2020 15:04:15 | Working on file S2_percentile_30_UTM_677-0000069888-0000000000.tif
	29/10/2020 15:04:16 | Working on file S2_percentile_30_UTM_677-0000046592-0000046592.tif
	29/10/2020 15:04:16 | Working on file S2_percentile_30_UTM_677-0000046592-0000023296.tif
	29/10/2020 15:04:17 | Working on file S2_percentile_30_UTM_677-0000046592-0000000000.tif
	29/10/2020 15:04:18 | Working on file S2_percentile_30_UTM_677-0000023296-0000046592.tif
	29/10/2020 15:04:19 | Working on file S2_percentile_30_UTM_677-0000023296-0000023296.tif
	29/10/2020 15:04:21 | Working on file S2_percentile_30_UTM_677-0000023296-0000000000.tif
	29/10/2020 15:04:22 | Working on file S2_percentile_30_UTM_677-0000000000-0000046592.tif
	29/10/2020 15:04:23 | Working on file S2_percentile_30_UTM_677-0000000000-0000023296.tif
	29/10/2020 15:04:24 | Working on file S2_percentile_30_UTM_677-0000000000-0000000000.tif
29/10/2020 15:04:25 | Working on tile 18M
29/10/2020 15:04:31 | 12 files to process
	29/10/2020 15:04:31 | Working on file S2_percentile_30_UTM_617-0000069888-0000046592.tif
	29/10/2020 15:04:34 | Working on file S2_percentile_30_UTM_617-0000069888-0000023296.tif
	29/10/2020 15:04:35 | Working on file S2_percentile_30_UTM_617-0000069888-0000000000.tif
	29/10/2020 15:04:36 | Working on file S2_percentile_30_UTM_617-0000046592-0000046592.tif
	29/10/2020 15:04:37 | Working on file S2_percentile_30_UTM_617-0000046592-0000023296.tif
	29/10/2020 15:04:37 | Working on file S2_percentile_30_UTM_617-0000046592-0000000000.tif
	29/10/2020 15:04:38 | Working on file S2_percentile_30_UTM_617-0000023296-0000046592.tif
	29/10/2020 15:04:39 | Working on file S2_percentile_30_UTM_617-0000023296-0000023296.tif
	29/10/2020 15:04:40 | Working on file S2_percentile_30_UTM_617-0000023296-0000000000.tif
	29/10/2020 15:04:40 | Working on file S2_percentile_30_UTM_617-0000000000-0000046592.tif
	29/10/2020 15:04:41 | Working on file S2_percentile_30_UTM_617-0000000000-0000023296.tif
	29/10/2020 15:04:42 | Working on file S2_percentile_30_UTM_617-0000000000-0000000000.tif
29/10/2020 15:04:43 | Working on tile 18N
29/10/2020 15:04:49 | 12 files to process
	29/10/2020 15:04:49 | Working on file S2_percentile_30_UTM_557-0000069888-0000046592.tif
	29/10/2020 15:04:50 | Working on file S2_percentile_30_UTM_557-0000069888-0000023296.tif
	29/10/2020 15:04:50 | Working on file S2_percentile_30_UTM_557-0000069888-0000000000.tif
	29/10/2020 15:04:51 | Working on file S2_percentile_30_UTM_557-0000046592-0000046592.tif
	29/10/2020 15:04:52 | Working on file S2_percentile_30_UTM_557-0000046592-0000023296.tif
	29/10/2020 15:04:53 | Working on file S2_percentile_30_UTM_557-0000046592-0000000000.tif
	29/10/2020 15:04:54 | Working on file S2_percentile_30_UTM_557-0000023296-0000046592.tif
	29/10/2020 15:04:55 | Working on file S2_percentile_30_UTM_557-0000023296-0000023296.tif
	29/10/2020 15:04:55 | Working on file S2_percentile_30_UTM_557-0000023296-0000000000.tif
	29/10/2020 15:04:56 | Working on file S2_percentile_30_UTM_557-0000000000-0000046592.tif
	29/10/2020 15:04:57 | Working on file S2_percentile_30_UTM_557-0000000000-0000023296.tif
	29/10/2020 15:04:58 | Working on file S2_percentile_30_UTM_557-0000000000-0000000000.tif
29/10/2020 15:04:59 | Working on tile 18P
	18P_UTM.vrt contains no GeoTIFF, attempting 18P.vrt
29/10/2020 15:05:01 | 12 files to process
	29/10/2020 15:05:01 | Working on file S2_percentile_30_UTM_497-0000069888-0000046592.tif
	29/10/2020 15:05:02 | Working on file S2_percentile_30_UTM_497-0000069888-0000023296.tif
	29/10/2020 15:05:03 | Working on file S2_percentile_30_UTM_497-0000069888-0000000000.tif
	29/10/2020 15:05:05 | Working on file S2_percentile_30_UTM_497-0000046592-0000046592.tif
	29/10/2020 15:05:08 | Working on file S2_percentile_30_UTM_497-0000046592-0000023296.tif
	29/10/2020 15:05:08 | Working on file S2_percentile_30_UTM_497-0000046592-0000000000.tif
	29/10/2020 15:05:09 | Working on file S2_percentile_30_UTM_497-0000023296-0000046592.tif
	29/10/2020 15:05:10 | Working on file S2_percentile_30_UTM_497-0000023296-0000023296.tif
	29/10/2020 15:05:10 | Working on file S2_percentile_30_UTM_497-0000023296-0000000000.tif
	29/10/2020 15:05:11 | Working on file S2_percentile_30_UTM_497-0000000000-0000046592.tif
	29/10/2020 15:05:12 | Working on file S2_percentile_30_UTM_497-0000000000-0000023296.tif
	29/10/2020 15:05:12 | Working on file S2_percentile_30_UTM_497-0000000000-0000000000.tif
29/10/2020 15:05:13 | Working on tile 18Q
	18Q_UTM.vrt contains no GeoTIFF, attempting 18Q.vrt
29/10/2020 15:05:16 | 12 files to process
	29/10/2020 15:05:16 | Working on file S2_percentile_30_UTM_437-0000069888-0000046592.tif
	29/10/2020 15:05:17 | Working on file S2_percentile_30_UTM_437-0000069888-0000023296.tif
	29/10/2020 15:05:18 | Working on file S2_percentile_30_UTM_437-0000069888-0000000000.tif
	29/10/2020 15:05:19 | Working on file S2_percentile_30_UTM_437-0000046592-0000046592.tif
	29/10/2020 15:05:20 | Working on file S2_percentile_30_UTM_437-0000046592-0000023296.tif
	29/10/2020 15:05:21 | Working on file S2_percentile_30_UTM_437-0000046592-0000000000.tif
	29/10/2020 15:05:22 | Working on file S2_percentile_30_UTM_437-0000023296-0000046592.tif
	29/10/2020 15:05:22 | Working on file S2_percentile_30_UTM_437-0000023296-0000023296.tif
	29/10/2020 15:05:23 | Working on file S2_percentile_30_UTM_437-0000023296-0000000000.tif
	29/10/2020 15:05:24 | Working on file S2_percentile_30_UTM_437-0000000000-0000046592.tif
	29/10/2020 15:05:24 | Working on file S2_percentile_30_UTM_437-0000000000-0000023296.tif
	29/10/2020 15:05:25 | Working on file S2_percentile_30_UTM_437-0000000000-0000000000.tif
29/10/2020 15:05:26 | Working on tile 18R
29/10/2020 15:05:33 | 9 files to process
	29/10/2020 15:05:33 | Working on file S2_percentile_UTM_377-0000069888-0000046592.tif
	29/10/2020 15:05:34 | Working on file S2_percentile_UTM_377-0000069888-0000023296.tif
	29/10/2020 15:05:35 | Working on file S2_percentile_UTM_377-0000069888-0000000000.tif
	29/10/2020 15:05:36 | Working on file S2_percentile_UTM_377-0000046592-0000046592.tif
	29/10/2020 15:05:36 | Working on file S2_percentile_UTM_377-0000046592-0000023296.tif
	29/10/2020 15:05:37 | Working on file S2_percentile_UTM_377-0000046592-0000000000.tif
	29/10/2020 15:05:38 | Working on file S2_percentile_UTM_377-0000023296-0000023296.tif
	29/10/2020 15:05:39 | Working on file S2_percentile_UTM_377-0000023296-0000000000.tif
	29/10/2020 15:05:40 | Working on file S2_percentile_UTM_377-0000000000-0000000000.tif
29/10/2020 15:05:40 | Working on tile 18S
	18S_UTM.vrt contains no GeoTIFF, attempting 18S.vrt
29/10/2020 15:05:43 | 11 files to process
	29/10/2020 15:05:43 | Working on file S2_percentile_UTM_317-0000069888-0000023296.tif
	29/10/2020 15:05:44 | Working on file S2_percentile_UTM_317-0000069888-0000000000.tif
	29/10/2020 15:05:44 | Working on file S2_percentile_UTM_317-0000046592-0000046592.tif
	29/10/2020 15:05:45 | Working on file S2_percentile_UTM_317-0000046592-0000023296.tif
	29/10/2020 15:05:46 | Working on file S2_percentile_UTM_317-0000046592-0000000000.tif
	29/10/2020 15:05:47 | Working on file S2_percentile_UTM_317-0000023296-0000046592.tif
	29/10/2020 15:05:47 | Working on file S2_percentile_UTM_317-0000023296-0000023296.tif
	29/10/2020 15:05:48 | Working on file S2_percentile_UTM_317-0000023296-0000000000.tif
	29/10/2020 15:05:49 | Working on file S2_percentile_UTM_317-0000000000-0000046592.tif
	29/10/2020 15:05:49 | Working on file S2_percentile_UTM_317-0000000000-0000023296.tif
	29/10/2020 15:05:50 | Working on file S2_percentile_UTM_317-0000000000-0000000000.tif
29/10/2020 15:05:51 | Working on tile 18T
29/10/2020 15:05:57 | 12 files to process
	29/10/2020 15:05:57 | Working on file S2_percentile_UTM_257-0000069888-0000046592.tif
	29/10/2020 15:05:58 | Working on file S2_percentile_UTM_257-0000069888-0000023296.tif
	29/10/2020 15:05:59 | Working on file S2_percentile_UTM_257-0000069888-0000000000.tif
	29/10/2020 15:06:00 | Working on file S2_percentile_UTM_257-0000046592-0000046592.tif
	29/10/2020 15:06:00 | Working on file S2_percentile_UTM_257-0000046592-0000023296.tif
	29/10/2020 15:06:01 | Working on file S2_percentile_UTM_257-0000046592-0000000000.tif
	29/10/2020 15:06:01 | Working on file S2_percentile_UTM_257-0000023296-0000046592.tif
	29/10/2020 15:06:02 | Working on file S2_percentile_UTM_257-0000023296-0000023296.tif
	29/10/2020 15:06:03 | Working on file S2_percentile_UTM_257-0000023296-0000000000.tif
	29/10/2020 15:06:04 | Working on file S2_percentile_UTM_257-0000000000-0000046592.tif
	29/10/2020 15:06:04 | Working on file S2_percentile_UTM_257-0000000000-0000023296.tif
	29/10/2020 15:06:05 | Working on file S2_percentile_UTM_257-0000000000-0000000000.tif
29/10/2020 15:06:06 | Working on tile 18U
29/10/2020 15:06:12 | 8 files to process
	29/10/2020 15:06:12 | Working on file S2_percentile_30_UTM_197-0000069888-0000023296.tif
	29/10/2020 15:06:12 | Working on file S2_percentile_30_UTM_197-0000069888-0000000000.tif
	29/10/2020 15:06:13 | Working on file S2_percentile_30_UTM_197-0000046592-0000023296.tif
	29/10/2020 15:06:14 | Working on file S2_percentile_30_UTM_197-0000046592-0000000000.tif
	29/10/2020 15:06:14 | Working on file S2_percentile_30_UTM_197-0000023296-0000023296.tif
	29/10/2020 15:06:15 | Working on file S2_percentile_30_UTM_197-0000023296-0000000000.tif
	29/10/2020 15:06:16 | Working on file S2_percentile_30_UTM_197-0000000000-0000023296.tif
	29/10/2020 15:06:17 | Working on file S2_percentile_30_UTM_197-0000000000-0000000000.tif
29/10/2020 15:06:17 | Working on tile 18V
29/10/2020 15:06:24 | 8 files to process
	29/10/2020 15:06:24 | Working on file S2_percentile_UTM_137-0000069888-0000023296.tif
	29/10/2020 15:06:25 | Working on file S2_percentile_UTM_137-0000069888-0000000000.tif
	29/10/2020 15:06:25 | Working on file S2_percentile_UTM_137-0000046592-0000023296.tif
	29/10/2020 15:06:26 | Working on file S2_percentile_UTM_137-0000046592-0000000000.tif
	29/10/2020 15:06:27 | Working on file S2_percentile_UTM_137-0000023296-0000023296.tif
	29/10/2020 15:06:27 | Working on file S2_percentile_UTM_137-0000023296-0000000000.tif
	29/10/2020 15:06:28 | Working on file S2_percentile_UTM_137-0000000000-0000023296.tif
	29/10/2020 15:06:29 | Working on file S2_percentile_UTM_137-0000000000-0000000000.tif
29/10/2020 15:06:30 | Working on tile 18W
	18W_UTM.vrt contains no GeoTIFF, attempting 18W.vrt
29/10/2020 15:06:32 | 8 files to process
	29/10/2020 15:06:32 | Working on file S2_percentile_30_UTM_77-0000069888-0000023296.tif
	29/10/2020 15:06:33 | Working on file S2_percentile_30_UTM_77-0000069888-0000000000.tif
	29/10/2020 15:06:34 | Working on file S2_percentile_30_UTM_77-0000046592-0000023296.tif
	29/10/2020 15:06:34 | Working on file S2_percentile_30_UTM_77-0000046592-0000000000.tif
	29/10/2020 15:06:35 | Working on file S2_percentile_30_UTM_77-0000023296-0000023296.tif
	29/10/2020 15:06:35 | Working on file S2_percentile_30_UTM_77-0000023296-0000000000.tif
	29/10/2020 15:06:36 | Working on file S2_percentile_30_UTM_77-0000000000-0000023296.tif
	29/10/2020 15:06:37 | Working on file S2_percentile_30_UTM_77-0000000000-0000000000.tif
29/10/2020 15:06:37 | Working on tile 18X
29/10/2020 15:06:44 | 6 files to process
	29/10/2020 15:06:44 | Working on file S2_percentile_30_UTM_20-0000116480-0000000000.tif
	29/10/2020 15:06:45 | Working on file S2_percentile_30_UTM_20-0000093184-0000000000.tif
	29/10/2020 15:06:46 | Working on file S2_percentile_30_UTM_20-0000069888-0000000000.tif
	29/10/2020 15:06:47 | Working on file S2_percentile_30_UTM_20-0000046592-0000000000.tif
	29/10/2020 15:06:49 | Working on file S2_percentile_30_UTM_20-0000023296-0000000000.tif
	29/10/2020 15:06:53 | Working on file S2_percentile_30_UTM_20-0000000000-0000000000.tif
29/10/2020 15:06:54 | Working on tile 19F
29/10/2020 15:07:00 | 8 files to process
	29/10/2020 15:07:00 | Working on file S2_percentile_30_UTM_978-0000069888-0000023296.tif
	29/10/2020 15:07:01 | Working on file S2_percentile_30_UTM_978-0000069888-0000000000.tif
	29/10/2020 15:07:02 | Working on file S2_percentile_30_UTM_978-0000046592-0000023296.tif
	29/10/2020 15:07:06 | Working on file S2_percentile_30_UTM_978-0000046592-0000000000.tif
	29/10/2020 15:07:08 | Working on file S2_percentile_30_UTM_978-0000023296-0000023296.tif
	29/10/2020 15:07:09 | Working on file S2_percentile_30_UTM_978-0000023296-0000000000.tif
	29/10/2020 15:07:10 | Working on file S2_percentile_30_UTM_978-0000000000-0000023296.tif
	29/10/2020 15:07:12 | Working on file S2_percentile_30_UTM_978-0000000000-0000000000.tif
29/10/2020 15:07:13 | Working on tile 19G
29/10/2020 15:07:22 | 12 files to process
	29/10/2020 15:07:22 | Working on file S2_percentile_30_UTM_918-0000069888-0000046592.tif
	29/10/2020 15:07:23 | Working on file S2_percentile_30_UTM_918-0000069888-0000023296.tif
	29/10/2020 15:07:23 | Working on file S2_percentile_30_UTM_918-0000069888-0000000000.tif
	29/10/2020 15:07:24 | Working on file S2_percentile_30_UTM_918-0000046592-0000046592.tif
	29/10/2020 15:07:24 | Working on file S2_percentile_30_UTM_918-0000046592-0000023296.tif
	29/10/2020 15:07:25 | Working on file S2_percentile_30_UTM_918-0000046592-0000000000.tif
	29/10/2020 15:07:26 | Working on file S2_percentile_30_UTM_918-0000023296-0000046592.tif
	29/10/2020 15:07:26 | Working on file S2_percentile_30_UTM_918-0000023296-0000023296.tif
	29/10/2020 15:07:27 | Working on file S2_percentile_30_UTM_918-0000023296-0000000000.tif
	29/10/2020 15:07:28 | Working on file S2_percentile_30_UTM_918-0000000000-0000046592.tif
	29/10/2020 15:07:29 | Working on file S2_percentile_30_UTM_918-0000000000-0000023296.tif
	29/10/2020 15:07:29 | Working on file S2_percentile_30_UTM_918-0000000000-0000000000.tif
29/10/2020 15:07:30 | Working on tile 19H
	19H_UTM.vrt contains no GeoTIFF, attempting 19H.vrt
29/10/2020 15:07:34 | 12 files to process
	29/10/2020 15:07:34 | Working on file S2_percentile_30_UTM_858-0000069888-0000046592.tif
	29/10/2020 15:07:37 | Working on file S2_percentile_30_UTM_858-0000069888-0000023296.tif
	29/10/2020 15:07:38 | Working on file S2_percentile_30_UTM_858-0000069888-0000000000.tif
	29/10/2020 15:07:39 | Working on file S2_percentile_30_UTM_858-0000046592-0000046592.tif
	29/10/2020 15:07:40 | Working on file S2_percentile_30_UTM_858-0000046592-0000023296.tif
	29/10/2020 15:07:40 | Working on file S2_percentile_30_UTM_858-0000046592-0000000000.tif
	29/10/2020 15:07:41 | Working on file S2_percentile_30_UTM_858-0000023296-0000046592.tif
	29/10/2020 15:07:42 | Working on file S2_percentile_30_UTM_858-0000023296-0000023296.tif
	29/10/2020 15:07:43 | Working on file S2_percentile_30_UTM_858-0000023296-0000000000.tif
	29/10/2020 15:07:44 | Working on file S2_percentile_30_UTM_858-0000000000-0000046592.tif
	29/10/2020 15:07:44 | Working on file S2_percentile_30_UTM_858-0000000000-0000023296.tif
	29/10/2020 15:07:46 | Working on file S2_percentile_30_UTM_858-0000000000-0000000000.tif
29/10/2020 15:07:49 | Working on tile 19J
29/10/2020 15:08:06 | 12 files to process
	29/10/2020 15:08:06 | Working on file S2_percentile_30_UTM_798-0000069888-0000046592.tif
	29/10/2020 15:08:07 | Working on file S2_percentile_30_UTM_798-0000069888-0000023296.tif
	29/10/2020 15:08:07 | Working on file S2_percentile_30_UTM_798-0000069888-0000000000.tif
	29/10/2020 15:08:08 | Working on file S2_percentile_30_UTM_798-0000046592-0000046592.tif
	29/10/2020 15:08:09 | Working on file S2_percentile_30_UTM_798-0000046592-0000023296.tif
	29/10/2020 15:08:09 | Working on file S2_percentile_30_UTM_798-0000046592-0000000000.tif
	29/10/2020 15:08:10 | Working on file S2_percentile_30_UTM_798-0000023296-0000046592.tif
	29/10/2020 15:08:11 | Working on file S2_percentile_30_UTM_798-0000023296-0000023296.tif
	29/10/2020 15:08:11 | Working on file S2_percentile_30_UTM_798-0000023296-0000000000.tif
	29/10/2020 15:08:12 | Working on file S2_percentile_30_UTM_798-0000000000-0000046592.tif
	29/10/2020 15:08:13 | Working on file S2_percentile_30_UTM_798-0000000000-0000023296.tif
	29/10/2020 15:08:17 | Working on file S2_percentile_30_UTM_798-0000000000-0000000000.tif
29/10/2020 15:08:18 | Working on tile 19K
29/10/2020 15:08:26 | 12 files to process
	29/10/2020 15:08:26 | Working on file S2_percentile_30_UTM_738-0000069888-0000046592.tif
	29/10/2020 15:08:27 | Working on file S2_percentile_30_UTM_738-0000069888-0000023296.tif
	29/10/2020 15:08:27 | Working on file S2_percentile_30_UTM_738-0000069888-0000000000.tif
	29/10/2020 15:08:28 | Working on file S2_percentile_30_UTM_738-0000046592-0000046592.tif
	29/10/2020 15:08:29 | Working on file S2_percentile_30_UTM_738-0000046592-0000023296.tif
	29/10/2020 15:08:30 | Working on file S2_percentile_30_UTM_738-0000046592-0000000000.tif
	29/10/2020 15:08:31 | Working on file S2_percentile_30_UTM_738-0000023296-0000046592.tif
	29/10/2020 15:08:32 | Working on file S2_percentile_30_UTM_738-0000023296-0000023296.tif
	29/10/2020 15:08:32 | Working on file S2_percentile_30_UTM_738-0000023296-0000000000.tif
	29/10/2020 15:08:33 | Working on file S2_percentile_30_UTM_738-0000000000-0000046592.tif
	29/10/2020 15:08:34 | Working on file S2_percentile_30_UTM_738-0000000000-0000023296.tif
	29/10/2020 15:08:35 | Working on file S2_percentile_30_UTM_738-0000000000-0000000000.tif
29/10/2020 15:08:35 | Working on tile 19L
29/10/2020 15:08:42 | 12 files to process
	29/10/2020 15:08:42 | Working on file S2_percentile_30_UTM_678-0000069888-0000046592.tif
	29/10/2020 15:08:44 | Working on file S2_percentile_30_UTM_678-0000069888-0000023296.tif
	29/10/2020 15:08:46 | Working on file S2_percentile_30_UTM_678-0000069888-0000000000.tif
	29/10/2020 15:08:46 | Working on file S2_percentile_30_UTM_678-0000046592-0000046592.tif
	29/10/2020 15:08:47 | Working on file S2_percentile_30_UTM_678-0000046592-0000023296.tif
	29/10/2020 15:08:48 | Working on file S2_percentile_30_UTM_678-0000046592-0000000000.tif
	29/10/2020 15:08:49 | Working on file S2_percentile_30_UTM_678-0000023296-0000046592.tif
	29/10/2020 15:08:49 | Working on file S2_percentile_30_UTM_678-0000023296-0000023296.tif
	29/10/2020 15:08:50 | Working on file S2_percentile_30_UTM_678-0000023296-0000000000.tif
	29/10/2020 15:08:51 | Working on file S2_percentile_30_UTM_678-0000000000-0000046592.tif
	29/10/2020 15:08:52 | Working on file S2_percentile_30_UTM_678-0000000000-0000023296.tif
	29/10/2020 15:08:53 | Working on file S2_percentile_30_UTM_678-0000000000-0000000000.tif
29/10/2020 15:08:53 | Working on tile 19M
	19M_UTM.vrt contains no GeoTIFF, attempting 19M.vrt
29/10/2020 15:08:56 | 12 files to process
	29/10/2020 15:08:56 | Working on file S2_percentile_30_UTM_618-0000069888-0000046592.tif
	29/10/2020 15:08:57 | Working on file S2_percentile_30_UTM_618-0000069888-0000023296.tif
	29/10/2020 15:08:57 | Working on file S2_percentile_30_UTM_618-0000069888-0000000000.tif
	29/10/2020 15:08:58 | Working on file S2_percentile_30_UTM_618-0000046592-0000046592.tif
	29/10/2020 15:08:59 | Working on file S2_percentile_30_UTM_618-0000046592-0000023296.tif
	29/10/2020 15:08:59 | Working on file S2_percentile_30_UTM_618-0000046592-0000000000.tif
	29/10/2020 15:09:00 | Working on file S2_percentile_30_UTM_618-0000023296-0000046592.tif
	29/10/2020 15:09:01 | Working on file S2_percentile_30_UTM_618-0000023296-0000023296.tif
	29/10/2020 15:09:02 | Working on file S2_percentile_30_UTM_618-0000023296-0000000000.tif
	29/10/2020 15:09:02 | Working on file S2_percentile_30_UTM_618-0000000000-0000046592.tif
	29/10/2020 15:09:03 | Working on file S2_percentile_30_UTM_618-0000000000-0000023296.tif
	29/10/2020 15:09:04 | Working on file S2_percentile_30_UTM_618-0000000000-0000000000.tif
29/10/2020 15:09:05 | Working on tile 19N
29/10/2020 15:09:13 | 12 files to process
	29/10/2020 15:09:13 | Working on file S2_percentile_30_UTM_558-0000069888-0000046592.tif
	29/10/2020 15:09:14 | Working on file S2_percentile_30_UTM_558-0000069888-0000023296.tif
	29/10/2020 15:09:15 | Working on file S2_percentile_30_UTM_558-0000069888-0000000000.tif
	29/10/2020 15:09:15 | Working on file S2_percentile_30_UTM_558-0000046592-0000046592.tif
	29/10/2020 15:09:16 | Working on file S2_percentile_30_UTM_558-0000046592-0000023296.tif
	29/10/2020 15:09:17 | Working on file S2_percentile_30_UTM_558-0000046592-0000000000.tif
	29/10/2020 15:09:18 | Working on file S2_percentile_30_UTM_558-0000023296-0000046592.tif
	29/10/2020 15:09:18 | Working on file S2_percentile_30_UTM_558-0000023296-0000023296.tif
	29/10/2020 15:09:19 | Working on file S2_percentile_30_UTM_558-0000023296-0000000000.tif
	29/10/2020 15:09:20 | Working on file S2_percentile_30_UTM_558-0000000000-0000046592.tif
	29/10/2020 15:09:20 | Working on file S2_percentile_30_UTM_558-0000000000-0000023296.tif
	29/10/2020 15:09:21 | Working on file S2_percentile_30_UTM_558-0000000000-0000000000.tif
29/10/2020 15:09:22 | Working on tile 19P
29/10/2020 15:09:27 | 12 files to process
	29/10/2020 15:09:27 | Working on file S2_percentile_30_UTM_498-0000069888-0000046592.tif
	29/10/2020 15:09:28 | Working on file S2_percentile_30_UTM_498-0000069888-0000023296.tif
	29/10/2020 15:09:29 | Working on file S2_percentile_30_UTM_498-0000069888-0000000000.tif
	29/10/2020 15:09:29 | Working on file S2_percentile_30_UTM_498-0000046592-0000046592.tif
	29/10/2020 15:09:30 | Working on file S2_percentile_30_UTM_498-0000046592-0000023296.tif
	29/10/2020 15:09:31 | Working on file S2_percentile_30_UTM_498-0000046592-0000000000.tif
	29/10/2020 15:09:31 | Working on file S2_percentile_30_UTM_498-0000023296-0000046592.tif
	29/10/2020 15:09:32 | Working on file S2_percentile_30_UTM_498-0000023296-0000023296.tif
	29/10/2020 15:09:33 | Working on file S2_percentile_30_UTM_498-0000023296-0000000000.tif
	29/10/2020 15:09:34 | Working on file S2_percentile_30_UTM_498-0000000000-0000046592.tif
	29/10/2020 15:09:35 | Working on file S2_percentile_30_UTM_498-0000000000-0000023296.tif
	29/10/2020 15:09:35 | Working on file S2_percentile_30_UTM_498-0000000000-0000000000.tif
29/10/2020 15:09:36 | Working on tile 19Q
	19Q_UTM.vrt contains no GeoTIFF, attempting 19Q.vrt
29/10/2020 15:09:40 | 12 files to process
	29/10/2020 15:09:40 | Working on file S2_percentile_30_UTM_438-0000069888-0000046592.tif
	29/10/2020 15:09:41 | Working on file S2_percentile_30_UTM_438-0000069888-0000023296.tif
	29/10/2020 15:09:43 | Working on file S2_percentile_30_UTM_438-0000069888-0000000000.tif
	29/10/2020 15:09:44 | Working on file S2_percentile_30_UTM_438-0000046592-0000046592.tif
	29/10/2020 15:09:45 | Working on file S2_percentile_30_UTM_438-0000046592-0000023296.tif
	29/10/2020 15:09:46 | Working on file S2_percentile_30_UTM_438-0000046592-0000000000.tif
	29/10/2020 15:09:47 | Working on file S2_percentile_30_UTM_438-0000023296-0000046592.tif
	29/10/2020 15:09:47 | Working on file S2_percentile_30_UTM_438-0000023296-0000023296.tif
	29/10/2020 15:09:48 | Working on file S2_percentile_30_UTM_438-0000023296-0000000000.tif
	29/10/2020 15:09:49 | Working on file S2_percentile_30_UTM_438-0000000000-0000046592.tif
	29/10/2020 15:09:50 | Working on file S2_percentile_30_UTM_438-0000000000-0000023296.tif
	29/10/2020 15:09:51 | Working on file S2_percentile_30_UTM_438-0000000000-0000000000.tif
29/10/2020 15:09:52 | Working on tile 19T
29/10/2020 15:10:02 | 12 files to process
	29/10/2020 15:10:02 | Working on file S2_percentile_UTM_258-0000069888-0000046592.tif
	29/10/2020 15:10:04 | Working on file S2_percentile_UTM_258-0000069888-0000023296.tif
	29/10/2020 15:10:07 | Working on file S2_percentile_UTM_258-0000069888-0000000000.tif
	29/10/2020 15:10:10 | Working on file S2_percentile_UTM_258-0000046592-0000046592.tif
	29/10/2020 15:10:11 | Working on file S2_percentile_UTM_258-0000046592-0000023296.tif
	29/10/2020 15:10:13 | Working on file S2_percentile_UTM_258-0000046592-0000000000.tif
	29/10/2020 15:10:15 | Working on file S2_percentile_UTM_258-0000023296-0000046592.tif
	29/10/2020 15:10:16 | Working on file S2_percentile_UTM_258-0000023296-0000023296.tif
	29/10/2020 15:10:17 | Working on file S2_percentile_UTM_258-0000023296-0000000000.tif
	29/10/2020 15:10:20 | Working on file S2_percentile_UTM_258-0000000000-0000046592.tif
	29/10/2020 15:10:21 | Working on file S2_percentile_UTM_258-0000000000-0000023296.tif
	29/10/2020 15:10:24 | Working on file S2_percentile_UTM_258-0000000000-0000000000.tif
29/10/2020 15:10:24 | Working on tile 19U
	19U_UTM.vrt contains no GeoTIFF, attempting 19U.vrt
29/10/2020 15:10:27 | 9 files to process
	29/10/2020 15:10:27 | Working on file S2_percentile_30_UTM_198-0000069888-0000046592.tif
	29/10/2020 15:10:27 | Working on file S2_percentile_30_UTM_198-0000069888-0000023296.tif
	29/10/2020 15:10:29 | Working on file S2_percentile_30_UTM_198-0000069888-0000000000.tif
	29/10/2020 15:10:30 | Working on file S2_percentile_30_UTM_198-0000046592-0000023296.tif
	29/10/2020 15:10:31 | Working on file S2_percentile_30_UTM_198-0000046592-0000000000.tif
	29/10/2020 15:10:32 | Working on file S2_percentile_30_UTM_198-0000023296-0000023296.tif
	29/10/2020 15:10:33 | Working on file S2_percentile_30_UTM_198-0000023296-0000000000.tif
	29/10/2020 15:10:35 | Working on file S2_percentile_30_UTM_198-0000000000-0000023296.tif
	29/10/2020 15:10:37 | Working on file S2_percentile_30_UTM_198-0000000000-0000000000.tif
29/10/2020 15:10:38 | Working on tile 19V
29/10/2020 15:10:45 | 8 files to process
	29/10/2020 15:10:45 | Working on file S2_percentile_30_UTM_138-0000069888-0000023296.tif
	29/10/2020 15:10:46 | Working on file S2_percentile_30_UTM_138-0000069888-0000000000.tif
	29/10/2020 15:10:47 | Working on file S2_percentile_30_UTM_138-0000046592-0000023296.tif
	29/10/2020 15:10:48 | Working on file S2_percentile_30_UTM_138-0000046592-0000000000.tif
	29/10/2020 15:10:49 | Working on file S2_percentile_30_UTM_138-0000023296-0000023296.tif
	29/10/2020 15:10:50 | Working on file S2_percentile_30_UTM_138-0000023296-0000000000.tif
	29/10/2020 15:10:52 | Working on file S2_percentile_30_UTM_138-0000000000-0000023296.tif
	29/10/2020 15:10:53 | Working on file S2_percentile_30_UTM_138-0000000000-0000000000.tif
29/10/2020 15:10:54 | Working on tile 19W
29/10/2020 15:11:01 | 8 files to process
	29/10/2020 15:11:01 | Working on file S2_percentile_30_UTM_78-0000069888-0000023296.tif
	29/10/2020 15:11:02 | Working on file S2_percentile_30_UTM_78-0000069888-0000000000.tif
	29/10/2020 15:11:02 | Working on file S2_percentile_30_UTM_78-0000046592-0000023296.tif
	29/10/2020 15:11:03 | Working on file S2_percentile_30_UTM_78-0000046592-0000000000.tif
	29/10/2020 15:11:04 | Working on file S2_percentile_30_UTM_78-0000023296-0000023296.tif
	29/10/2020 15:11:04 | Working on file S2_percentile_30_UTM_78-0000023296-0000000000.tif
	29/10/2020 15:11:05 | Working on file S2_percentile_30_UTM_78-0000000000-0000023296.tif
	29/10/2020 15:11:06 | Working on file S2_percentile_30_UTM_78-0000000000-0000000000.tif
29/10/2020 15:11:07 | Working on tile 19X
29/10/2020 15:11:18 | 6 files to process
	29/10/2020 15:11:18 | Working on file S2_percentile_30_UTM_21-0000116480-0000000000.tif
	29/10/2020 15:11:18 | Working on file S2_percentile_30_UTM_21-0000093184-0000000000.tif
	29/10/2020 15:11:21 | Working on file S2_percentile_30_UTM_21-0000069888-0000000000.tif
	29/10/2020 15:11:22 | Working on file S2_percentile_30_UTM_21-0000046592-0000000000.tif
	29/10/2020 15:11:23 | Working on file S2_percentile_30_UTM_21-0000023296-0000000000.tif
	29/10/2020 15:11:23 | Working on file S2_percentile_30_UTM_21-0000000000-0000000000.tif
29/10/2020 15:11:24 | Working on tile 20F
29/10/2020 15:11:30 | 8 files to process
	29/10/2020 15:11:30 | Working on file S2_percentile_30_UTM_979-0000069888-0000023296.tif
	29/10/2020 15:11:31 | Working on file S2_percentile_30_UTM_979-0000069888-0000000000.tif
	29/10/2020 15:11:32 | Working on file S2_percentile_30_UTM_979-0000046592-0000023296.tif
	29/10/2020 15:11:32 | Working on file S2_percentile_30_UTM_979-0000046592-0000000000.tif
	29/10/2020 15:11:33 | Working on file S2_percentile_30_UTM_979-0000023296-0000023296.tif
	29/10/2020 15:11:34 | Working on file S2_percentile_30_UTM_979-0000023296-0000000000.tif
	29/10/2020 15:11:34 | Working on file S2_percentile_30_UTM_979-0000000000-0000023296.tif
	29/10/2020 15:11:35 | Working on file S2_percentile_30_UTM_979-0000000000-0000000000.tif
29/10/2020 15:11:36 | Working on tile 20G
29/10/2020 15:11:42 | 10 files to process
	29/10/2020 15:11:42 | Working on file S2_percentile_30_UTM_919-0000069888-0000023296.tif
	29/10/2020 15:11:43 | Working on file S2_percentile_30_UTM_919-0000069888-0000000000.tif
	29/10/2020 15:11:44 | Working on file S2_percentile_30_UTM_919-0000046592-0000023296.tif
	29/10/2020 15:11:44 | Working on file S2_percentile_30_UTM_919-0000046592-0000000000.tif
	29/10/2020 15:11:45 | Working on file S2_percentile_30_UTM_919-0000023296-0000046592.tif
	29/10/2020 15:11:45 | Working on file S2_percentile_30_UTM_919-0000023296-0000023296.tif
	29/10/2020 15:11:46 | Working on file S2_percentile_30_UTM_919-0000023296-0000000000.tif
	29/10/2020 15:11:47 | Working on file S2_percentile_30_UTM_919-0000000000-0000046592.tif
	29/10/2020 15:11:47 | Working on file S2_percentile_30_UTM_919-0000000000-0000023296.tif
	29/10/2020 15:11:48 | Working on file S2_percentile_30_UTM_919-0000000000-0000000000.tif
29/10/2020 15:11:49 | Working on tile 20H
29/10/2020 15:11:57 | 12 files to process
	29/10/2020 15:11:57 | Working on file S2_percentile_30_UTM_859-0000069888-0000046592.tif
	29/10/2020 15:11:58 | Working on file S2_percentile_30_UTM_859-0000069888-0000023296.tif
	29/10/2020 15:11:59 | Working on file S2_percentile_30_UTM_859-0000069888-0000000000.tif
	29/10/2020 15:11:59 | Working on file S2_percentile_30_UTM_859-0000046592-0000046592.tif
	29/10/2020 15:12:00 | Working on file S2_percentile_30_UTM_859-0000046592-0000023296.tif
	29/10/2020 15:12:01 | Working on file S2_percentile_30_UTM_859-0000046592-0000000000.tif
	29/10/2020 15:12:02 | Working on file S2_percentile_30_UTM_859-0000023296-0000046592.tif
	29/10/2020 15:12:03 | Working on file S2_percentile_30_UTM_859-0000023296-0000023296.tif
	29/10/2020 15:12:04 | Working on file S2_percentile_30_UTM_859-0000023296-0000000000.tif
	29/10/2020 15:12:04 | Working on file S2_percentile_30_UTM_859-0000000000-0000046592.tif
	29/10/2020 15:12:05 | Working on file S2_percentile_30_UTM_859-0000000000-0000023296.tif
	29/10/2020 15:12:05 | Working on file S2_percentile_30_UTM_859-0000000000-0000000000.tif
29/10/2020 15:12:07 | Working on tile 20J
29/10/2020 15:12:13 | 12 files to process
	29/10/2020 15:12:13 | Working on file S2_percentile_30_UTM_799-0000069888-0000046592.tif
	29/10/2020 15:12:14 | Working on file S2_percentile_30_UTM_799-0000069888-0000023296.tif
	29/10/2020 15:12:14 | Working on file S2_percentile_30_UTM_799-0000069888-0000000000.tif
	29/10/2020 15:12:15 | Working on file S2_percentile_30_UTM_799-0000046592-0000046592.tif
	29/10/2020 15:12:16 | Working on file S2_percentile_30_UTM_799-0000046592-0000023296.tif
	29/10/2020 15:12:17 | Working on file S2_percentile_30_UTM_799-0000046592-0000000000.tif
	29/10/2020 15:12:17 | Working on file S2_percentile_30_UTM_799-0000023296-0000046592.tif
	29/10/2020 15:12:18 | Working on file S2_percentile_30_UTM_799-0000023296-0000023296.tif
	29/10/2020 15:12:19 | Working on file S2_percentile_30_UTM_799-0000023296-0000000000.tif
	29/10/2020 15:12:19 | Working on file S2_percentile_30_UTM_799-0000000000-0000046592.tif
	29/10/2020 15:12:20 | Working on file S2_percentile_30_UTM_799-0000000000-0000023296.tif
	29/10/2020 15:12:21 | Working on file S2_percentile_30_UTM_799-0000000000-0000000000.tif
29/10/2020 15:12:22 | Working on tile 20K
29/10/2020 15:12:28 | 12 files to process
	29/10/2020 15:12:28 | Working on file S2_percentile_30_UTM_739-0000069888-0000046592.tif
	29/10/2020 15:12:29 | Working on file S2_percentile_30_UTM_739-0000069888-0000023296.tif
	29/10/2020 15:12:30 | Working on file S2_percentile_30_UTM_739-0000069888-0000000000.tif
	29/10/2020 15:12:31 | Working on file S2_percentile_30_UTM_739-0000046592-0000046592.tif
	29/10/2020 15:12:33 | Working on file S2_percentile_30_UTM_739-0000046592-0000023296.tif
	29/10/2020 15:12:34 | Working on file S2_percentile_30_UTM_739-0000046592-0000000000.tif
	29/10/2020 15:12:34 | Working on file S2_percentile_30_UTM_739-0000023296-0000046592.tif
	29/10/2020 15:12:35 | Working on file S2_percentile_30_UTM_739-0000023296-0000023296.tif
	29/10/2020 15:12:36 | Working on file S2_percentile_30_UTM_739-0000023296-0000000000.tif
	29/10/2020 15:12:36 | Working on file S2_percentile_30_UTM_739-0000000000-0000046592.tif
	29/10/2020 15:12:37 | Working on file S2_percentile_30_UTM_739-0000000000-0000023296.tif
	29/10/2020 15:12:38 | Working on file S2_percentile_30_UTM_739-0000000000-0000000000.tif
29/10/2020 15:12:38 | Working on tile 20L
29/10/2020 15:12:45 | 12 files to process
	29/10/2020 15:12:45 | Working on file S2_percentile_30_UTM_679-0000069888-0000046592.tif
	29/10/2020 15:12:46 | Working on file S2_percentile_30_UTM_679-0000069888-0000023296.tif
	29/10/2020 15:12:46 | Working on file S2_percentile_30_UTM_679-0000069888-0000000000.tif
	29/10/2020 15:12:48 | Working on file S2_percentile_30_UTM_679-0000046592-0000046592.tif
	29/10/2020 15:12:52 | Working on file S2_percentile_30_UTM_679-0000046592-0000023296.tif
	29/10/2020 15:12:53 | Working on file S2_percentile_30_UTM_679-0000046592-0000000000.tif
	29/10/2020 15:12:54 | Working on file S2_percentile_30_UTM_679-0000023296-0000046592.tif
	29/10/2020 15:12:54 | Working on file S2_percentile_30_UTM_679-0000023296-0000023296.tif
	29/10/2020 15:12:55 | Working on file S2_percentile_30_UTM_679-0000023296-0000000000.tif
	29/10/2020 15:12:56 | Working on file S2_percentile_30_UTM_679-0000000000-0000046592.tif
	29/10/2020 15:12:57 | Working on file S2_percentile_30_UTM_679-0000000000-0000023296.tif
	29/10/2020 15:13:00 | Working on file S2_percentile_30_UTM_679-0000000000-0000000000.tif
29/10/2020 15:13:02 | Working on tile 20M
	20M_UTM.vrt contains no GeoTIFF, attempting 20M.vrt
29/10/2020 15:13:05 | 12 files to process
	29/10/2020 15:13:05 | Working on file S2_percentile_30_UTM_619-0000069888-0000046592.tif
	29/10/2020 15:13:06 | Working on file S2_percentile_30_UTM_619-0000069888-0000023296.tif
	29/10/2020 15:13:06 | Working on file S2_percentile_30_UTM_619-0000069888-0000000000.tif
	29/10/2020 15:13:07 | Working on file S2_percentile_30_UTM_619-0000046592-0000046592.tif
	29/10/2020 15:13:08 | Working on file S2_percentile_30_UTM_619-0000046592-0000023296.tif
	29/10/2020 15:13:09 | Working on file S2_percentile_30_UTM_619-0000046592-0000000000.tif
	29/10/2020 15:13:10 | Working on file S2_percentile_30_UTM_619-0000023296-0000046592.tif
	29/10/2020 15:13:10 | Working on file S2_percentile_30_UTM_619-0000023296-0000023296.tif
	29/10/2020 15:13:11 | Working on file S2_percentile_30_UTM_619-0000023296-0000000000.tif
	29/10/2020 15:13:15 | Working on file S2_percentile_30_UTM_619-0000000000-0000046592.tif
	29/10/2020 15:13:21 | Working on file S2_percentile_30_UTM_619-0000000000-0000023296.tif
	29/10/2020 15:13:23 | Working on file S2_percentile_30_UTM_619-0000000000-0000000000.tif
29/10/2020 15:13:24 | Working on tile 20N
	20N_UTM.vrt contains no GeoTIFF, attempting 20N.vrt
29/10/2020 15:13:27 | 12 files to process
	29/10/2020 15:13:27 | Working on file S2_percentile_30_UTM_559-0000069888-0000046592.tif
	29/10/2020 15:13:27 | Working on file S2_percentile_30_UTM_559-0000069888-0000023296.tif
	29/10/2020 15:13:28 | Working on file S2_percentile_30_UTM_559-0000069888-0000000000.tif
	29/10/2020 15:13:29 | Working on file S2_percentile_30_UTM_559-0000046592-0000046592.tif
	29/10/2020 15:13:29 | Working on file S2_percentile_30_UTM_559-0000046592-0000023296.tif
	29/10/2020 15:13:30 | Working on file S2_percentile_30_UTM_559-0000046592-0000000000.tif
	29/10/2020 15:13:31 | Working on file S2_percentile_30_UTM_559-0000023296-0000046592.tif
	29/10/2020 15:13:32 | Working on file S2_percentile_30_UTM_559-0000023296-0000023296.tif
	29/10/2020 15:13:33 | Working on file S2_percentile_30_UTM_559-0000023296-0000000000.tif
	29/10/2020 15:13:33 | Working on file S2_percentile_30_UTM_559-0000000000-0000046592.tif
	29/10/2020 15:13:34 | Working on file S2_percentile_30_UTM_559-0000000000-0000023296.tif
	29/10/2020 15:13:35 | Working on file S2_percentile_30_UTM_559-0000000000-0000000000.tif
29/10/2020 15:13:36 | Working on tile 20P
29/10/2020 15:13:42 | 12 files to process
	29/10/2020 15:13:42 | Working on file S2_percentile_30_UTM_499-0000069888-0000046592.tif
	29/10/2020 15:13:43 | Working on file S2_percentile_30_UTM_499-0000069888-0000023296.tif
	29/10/2020 15:13:44 | Working on file S2_percentile_30_UTM_499-0000069888-0000000000.tif
	29/10/2020 15:13:44 | Working on file S2_percentile_30_UTM_499-0000046592-0000046592.tif
	29/10/2020 15:13:45 | Working on file S2_percentile_30_UTM_499-0000046592-0000023296.tif
	29/10/2020 15:13:46 | Working on file S2_percentile_30_UTM_499-0000046592-0000000000.tif
	29/10/2020 15:13:47 | Working on file S2_percentile_30_UTM_499-0000023296-0000046592.tif
	29/10/2020 15:13:49 | Working on file S2_percentile_30_UTM_499-0000023296-0000023296.tif
	29/10/2020 15:13:50 | Working on file S2_percentile_30_UTM_499-0000023296-0000000000.tif
	29/10/2020 15:13:50 | Working on file S2_percentile_30_UTM_499-0000000000-0000046592.tif
	29/10/2020 15:13:51 | Working on file S2_percentile_30_UTM_499-0000000000-0000023296.tif
	29/10/2020 15:13:52 | Working on file S2_percentile_30_UTM_499-0000000000-0000000000.tif
29/10/2020 15:13:52 | Working on tile 20Q
29/10/2020 15:13:59 | 9 files to process
	29/10/2020 15:13:59 | Working on file S2_percentile_30_UTM_439-0000069888-0000046592.tif
	29/10/2020 15:13:59 | Working on file S2_percentile_30_UTM_439-0000069888-0000023296.tif
	29/10/2020 15:14:00 | Working on file S2_percentile_30_UTM_439-0000069888-0000000000.tif
	29/10/2020 15:14:01 | Working on file S2_percentile_30_UTM_439-0000046592-0000046592.tif
	29/10/2020 15:14:02 | Working on file S2_percentile_30_UTM_439-0000046592-0000023296.tif
	29/10/2020 15:14:02 | Working on file S2_percentile_30_UTM_439-0000046592-0000000000.tif
	29/10/2020 15:14:03 | Working on file S2_percentile_30_UTM_439-0000023296-0000046592.tif
	29/10/2020 15:14:04 | Working on file S2_percentile_30_UTM_439-0000023296-0000000000.tif
	29/10/2020 15:14:04 | Working on file S2_percentile_30_UTM_439-0000000000-0000000000.tif
29/10/2020 15:14:05 | Working on tile 20T
	20T_UTM.vrt contains no GeoTIFF, attempting 20T.vrt
29/10/2020 15:14:08 | 10 files to process
	29/10/2020 15:14:08 | Working on file S2_percentile_UTM_259-0000069888-0000000000.tif
	29/10/2020 15:14:09 | Working on file S2_percentile_UTM_259-0000046592-0000046592.tif
	29/10/2020 15:14:09 | Working on file S2_percentile_UTM_259-0000046592-0000023296.tif
	29/10/2020 15:14:10 | Working on file S2_percentile_UTM_259-0000046592-0000000000.tif
	29/10/2020 15:14:11 | Working on file S2_percentile_UTM_259-0000023296-0000046592.tif
	29/10/2020 15:14:12 | Working on file S2_percentile_UTM_259-0000023296-0000023296.tif
	29/10/2020 15:14:13 | Working on file S2_percentile_UTM_259-0000023296-0000000000.tif
	29/10/2020 15:14:13 | Working on file S2_percentile_UTM_259-0000000000-0000046592.tif
	29/10/2020 15:14:14 | Working on file S2_percentile_UTM_259-0000000000-0000023296.tif
	29/10/2020 15:14:15 | Working on file S2_percentile_UTM_259-0000000000-0000000000.tif
29/10/2020 15:14:16 | Working on tile 20U
29/10/2020 15:14:22 | 8 files to process
	29/10/2020 15:14:22 | Working on file S2_percentile_30_UTM_199-0000069888-0000023296.tif
	29/10/2020 15:14:23 | Working on file S2_percentile_30_UTM_199-0000069888-0000000000.tif
	29/10/2020 15:14:23 | Working on file S2_percentile_30_UTM_199-0000046592-0000023296.tif
	29/10/2020 15:14:24 | Working on file S2_percentile_30_UTM_199-0000046592-0000000000.tif
	29/10/2020 15:14:25 | Working on file S2_percentile_30_UTM_199-0000023296-0000023296.tif
	29/10/2020 15:14:26 | Working on file S2_percentile_30_UTM_199-0000023296-0000000000.tif
	29/10/2020 15:14:26 | Working on file S2_percentile_30_UTM_199-0000000000-0000023296.tif
	29/10/2020 15:14:27 | Working on file S2_percentile_30_UTM_199-0000000000-0000000000.tif
29/10/2020 15:14:28 | Working on tile 20V
	20V_UTM.vrt contains no GeoTIFF, attempting 20V.vrt
29/10/2020 15:14:30 | 8 files to process
	29/10/2020 15:14:30 | Working on file S2_percentile_UTM_139-0000069888-0000023296.tif
	29/10/2020 15:14:31 | Working on file S2_percentile_UTM_139-0000069888-0000000000.tif
	29/10/2020 15:14:32 | Working on file S2_percentile_UTM_139-0000046592-0000023296.tif
	29/10/2020 15:14:34 | Working on file S2_percentile_UTM_139-0000046592-0000000000.tif
	29/10/2020 15:14:35 | Working on file S2_percentile_UTM_139-0000023296-0000023296.tif
	29/10/2020 15:14:35 | Working on file S2_percentile_UTM_139-0000023296-0000000000.tif
	29/10/2020 15:14:36 | Working on file S2_percentile_UTM_139-0000000000-0000023296.tif
	29/10/2020 15:14:37 | Working on file S2_percentile_UTM_139-0000000000-0000000000.tif
29/10/2020 15:14:38 | Working on tile 20W
29/10/2020 15:14:43 | 8 files to process
	29/10/2020 15:14:43 | Working on file S2_percentile_30_UTM_79-0000069888-0000023296.tif
	29/10/2020 15:14:44 | Working on file S2_percentile_30_UTM_79-0000069888-0000000000.tif
	29/10/2020 15:14:45 | Working on file S2_percentile_30_UTM_79-0000046592-0000023296.tif
	29/10/2020 15:14:46 | Working on file S2_percentile_30_UTM_79-0000046592-0000000000.tif
	29/10/2020 15:14:47 | Working on file S2_percentile_30_UTM_79-0000023296-0000023296.tif
	29/10/2020 15:14:47 | Working on file S2_percentile_30_UTM_79-0000023296-0000000000.tif
	29/10/2020 15:14:48 | Working on file S2_percentile_30_UTM_79-0000000000-0000023296.tif
	29/10/2020 15:14:48 | Working on file S2_percentile_30_UTM_79-0000000000-0000000000.tif
29/10/2020 15:14:49 | Working on tile 20X
	20X_UTM.vrt contains no GeoTIFF, attempting 20X.vrt
29/10/2020 15:14:52 | 10 files to process
	29/10/2020 15:14:52 | Working on file S2_percentile_30_UTM_22-0000116480-0000000000.tif
	29/10/2020 15:14:52 | Working on file S2_percentile_30_UTM_22-0000093184-0000000000.tif
	29/10/2020 15:14:53 | Working on file S2_percentile_30_UTM_22-0000069888-0000023296.tif
	29/10/2020 15:14:54 | Working on file S2_percentile_30_UTM_22-0000069888-0000000000.tif
	29/10/2020 15:14:54 | Working on file S2_percentile_30_UTM_22-0000046592-0000023296.tif
	29/10/2020 15:14:55 | Working on file S2_percentile_30_UTM_22-0000046592-0000000000.tif
	29/10/2020 15:14:55 | Working on file S2_percentile_30_UTM_22-0000023296-0000023296.tif
	29/10/2020 15:14:56 | Working on file S2_percentile_30_UTM_22-0000023296-0000000000.tif
	29/10/2020 15:14:56 | Working on file S2_percentile_30_UTM_22-0000000000-0000023296.tif
	29/10/2020 15:14:57 | Working on file S2_percentile_30_UTM_22-0000000000-0000000000.tif
29/10/2020 15:14:58 | Working on tile 21F
29/10/2020 15:15:08 | 7 files to process
	29/10/2020 15:15:08 | Working on file S2_percentile_30_UTM_980-0000069888-0000023296.tif
	29/10/2020 15:15:09 | Working on file S2_percentile_30_UTM_980-0000069888-0000000000.tif
	29/10/2020 15:15:09 | Working on file S2_percentile_30_UTM_980-0000046592-0000023296.tif
	29/10/2020 15:15:10 | Working on file S2_percentile_30_UTM_980-0000046592-0000000000.tif
	29/10/2020 15:15:11 | Working on file S2_percentile_30_UTM_980-0000023296-0000023296.tif
	29/10/2020 15:15:12 | Working on file S2_percentile_30_UTM_980-0000023296-0000000000.tif
	29/10/2020 15:15:12 | Working on file S2_percentile_30_UTM_980-0000000000-0000023296.tif
29/10/2020 15:15:13 | Working on tile 21H
	21H_UTM.vrt contains no GeoTIFF, attempting 21H.vrt
29/10/2020 15:15:15 | 12 files to process
	29/10/2020 15:15:15 | Working on file S2_percentile_30_UTM_860-0000069888-0000046592.tif
	29/10/2020 15:15:16 | Working on file S2_percentile_30_UTM_860-0000069888-0000023296.tif
	29/10/2020 15:15:17 | Working on file S2_percentile_30_UTM_860-0000069888-0000000000.tif
	29/10/2020 15:15:17 | Working on file S2_percentile_30_UTM_860-0000046592-0000046592.tif
	29/10/2020 15:15:18 | Working on file S2_percentile_30_UTM_860-0000046592-0000023296.tif
	29/10/2020 15:15:19 | Working on file S2_percentile_30_UTM_860-0000046592-0000000000.tif
	29/10/2020 15:15:19 | Working on file S2_percentile_30_UTM_860-0000023296-0000046592.tif
	29/10/2020 15:15:20 | Working on file S2_percentile_30_UTM_860-0000023296-0000023296.tif
	29/10/2020 15:15:21 | Working on file S2_percentile_30_UTM_860-0000023296-0000000000.tif
	29/10/2020 15:15:21 | Working on file S2_percentile_30_UTM_860-0000000000-0000046592.tif
	29/10/2020 15:15:22 | Working on file S2_percentile_30_UTM_860-0000000000-0000023296.tif
	29/10/2020 15:15:23 | Working on file S2_percentile_30_UTM_860-0000000000-0000000000.tif
29/10/2020 15:15:24 | Working on tile 21J
29/10/2020 15:15:30 | 12 files to process
	29/10/2020 15:15:30 | Working on file S2_percentile_30_UTM_800-0000069888-0000046592.tif
	29/10/2020 15:15:31 | Working on file S2_percentile_30_UTM_800-0000069888-0000023296.tif
	29/10/2020 15:15:31 | Working on file S2_percentile_30_UTM_800-0000069888-0000000000.tif
	29/10/2020 15:15:32 | Working on file S2_percentile_30_UTM_800-0000046592-0000046592.tif
	29/10/2020 15:15:33 | Working on file S2_percentile_30_UTM_800-0000046592-0000023296.tif
	29/10/2020 15:15:34 | Working on file S2_percentile_30_UTM_800-0000046592-0000000000.tif
	29/10/2020 15:15:34 | Working on file S2_percentile_30_UTM_800-0000023296-0000046592.tif
	29/10/2020 15:15:35 | Working on file S2_percentile_30_UTM_800-0000023296-0000023296.tif
	29/10/2020 15:15:36 | Working on file S2_percentile_30_UTM_800-0000023296-0000000000.tif
	29/10/2020 15:15:37 | Working on file S2_percentile_30_UTM_800-0000000000-0000046592.tif
	29/10/2020 15:15:37 | Working on file S2_percentile_30_UTM_800-0000000000-0000023296.tif
	29/10/2020 15:15:38 | Working on file S2_percentile_30_UTM_800-0000000000-0000000000.tif
29/10/2020 15:15:40 | Working on tile 21K
	21K_UTM.vrt contains no GeoTIFF, attempting 21K.vrt
29/10/2020 15:15:43 | 12 files to process
	29/10/2020 15:15:43 | Working on file S2_percentile_30_UTM_740-0000069888-0000046592.tif
	29/10/2020 15:15:43 | Working on file S2_percentile_30_UTM_740-0000069888-0000023296.tif
	29/10/2020 15:15:44 | Working on file S2_percentile_30_UTM_740-0000069888-0000000000.tif
	29/10/2020 15:15:45 | Working on file S2_percentile_30_UTM_740-0000046592-0000046592.tif
	29/10/2020 15:15:45 | Working on file S2_percentile_30_UTM_740-0000046592-0000023296.tif
	29/10/2020 15:15:46 | Working on file S2_percentile_30_UTM_740-0000046592-0000000000.tif
	29/10/2020 15:15:47 | Working on file S2_percentile_30_UTM_740-0000023296-0000046592.tif
	29/10/2020 15:15:48 | Working on file S2_percentile_30_UTM_740-0000023296-0000023296.tif
	29/10/2020 15:15:48 | Working on file S2_percentile_30_UTM_740-0000023296-0000000000.tif
	29/10/2020 15:15:49 | Working on file S2_percentile_30_UTM_740-0000000000-0000046592.tif
	29/10/2020 15:15:50 | Working on file S2_percentile_30_UTM_740-0000000000-0000023296.tif
	29/10/2020 15:15:50 | Working on file S2_percentile_30_UTM_740-0000000000-0000000000.tif
29/10/2020 15:15:51 | Working on tile 21L
29/10/2020 15:15:57 | 12 files to process
	29/10/2020 15:15:57 | Working on file S2_percentile_30_UTM_680-0000069888-0000046592.tif
	29/10/2020 15:15:58 | Working on file S2_percentile_30_UTM_680-0000069888-0000023296.tif
	29/10/2020 15:15:58 | Working on file S2_percentile_30_UTM_680-0000069888-0000000000.tif
	29/10/2020 15:15:59 | Working on file S2_percentile_30_UTM_680-0000046592-0000046592.tif
	29/10/2020 15:15:59 | Working on file S2_percentile_30_UTM_680-0000046592-0000023296.tif
	29/10/2020 15:16:00 | Working on file S2_percentile_30_UTM_680-0000046592-0000000000.tif
	29/10/2020 15:16:01 | Working on file S2_percentile_30_UTM_680-0000023296-0000046592.tif
	29/10/2020 15:16:01 | Working on file S2_percentile_30_UTM_680-0000023296-0000023296.tif
	29/10/2020 15:16:02 | Working on file S2_percentile_30_UTM_680-0000023296-0000000000.tif
	29/10/2020 15:16:03 | Working on file S2_percentile_30_UTM_680-0000000000-0000046592.tif
	29/10/2020 15:16:03 | Working on file S2_percentile_30_UTM_680-0000000000-0000023296.tif
	29/10/2020 15:16:04 | Working on file S2_percentile_30_UTM_680-0000000000-0000000000.tif
29/10/2020 15:16:05 | Working on tile 21M
29/10/2020 15:16:12 | 12 files to process
	29/10/2020 15:16:12 | Working on file S2_percentile_30_UTM_620-0000069888-0000046592.tif
	29/10/2020 15:16:12 | Working on file S2_percentile_30_UTM_620-0000069888-0000023296.tif
	29/10/2020 15:16:13 | Working on file S2_percentile_30_UTM_620-0000069888-0000000000.tif
	29/10/2020 15:16:14 | Working on file S2_percentile_30_UTM_620-0000046592-0000046592.tif
	29/10/2020 15:16:14 | Working on file S2_percentile_30_UTM_620-0000046592-0000023296.tif
	29/10/2020 15:16:15 | Working on file S2_percentile_30_UTM_620-0000046592-0000000000.tif
	29/10/2020 15:16:16 | Working on file S2_percentile_30_UTM_620-0000023296-0000046592.tif
	29/10/2020 15:16:16 | Working on file S2_percentile_30_UTM_620-0000023296-0000023296.tif
	29/10/2020 15:16:17 | Working on file S2_percentile_30_UTM_620-0000023296-0000000000.tif
	29/10/2020 15:16:18 | Working on file S2_percentile_30_UTM_620-0000000000-0000046592.tif
	29/10/2020 15:16:18 | Working on file S2_percentile_30_UTM_620-0000000000-0000023296.tif
	29/10/2020 15:16:19 | Working on file S2_percentile_30_UTM_620-0000000000-0000000000.tif
29/10/2020 15:16:20 | Working on tile 21N
	21N_UTM.vrt contains no GeoTIFF, attempting 21N.vrt
29/10/2020 15:16:23 | 12 files to process
	29/10/2020 15:16:23 | Working on file S2_percentile_30_UTM_560-0000069888-0000046592.tif
	29/10/2020 15:16:23 | Working on file S2_percentile_30_UTM_560-0000069888-0000023296.tif
	29/10/2020 15:16:24 | Working on file S2_percentile_30_UTM_560-0000069888-0000000000.tif
	29/10/2020 15:16:25 | Working on file S2_percentile_30_UTM_560-0000046592-0000046592.tif
	29/10/2020 15:16:25 | Working on file S2_percentile_30_UTM_560-0000046592-0000023296.tif
	29/10/2020 15:16:26 | Working on file S2_percentile_30_UTM_560-0000046592-0000000000.tif
	29/10/2020 15:16:27 | Working on file S2_percentile_30_UTM_560-0000023296-0000046592.tif
	29/10/2020 15:16:28 | Working on file S2_percentile_30_UTM_560-0000023296-0000023296.tif
	29/10/2020 15:16:28 | Working on file S2_percentile_30_UTM_560-0000023296-0000000000.tif
	29/10/2020 15:16:29 | Working on file S2_percentile_30_UTM_560-0000000000-0000046592.tif
	29/10/2020 15:16:30 | Working on file S2_percentile_30_UTM_560-0000000000-0000023296.tif
	29/10/2020 15:16:30 | Working on file S2_percentile_30_UTM_560-0000000000-0000000000.tif
29/10/2020 15:16:31 | Working on tile 21P
	21P_UTM.vrt contains no GeoTIFF, attempting 21P.vrt
29/10/2020 15:16:35 | 9 files to process
	29/10/2020 15:16:35 | Working on file S2_percentile_30_UTM_500-0000069888-0000023296.tif
	29/10/2020 15:16:36 | Working on file S2_percentile_30_UTM_500-0000069888-0000000000.tif
	29/10/2020 15:16:37 | Working on file S2_percentile_30_UTM_500-0000046592-0000023296.tif
	29/10/2020 15:16:37 | Working on file S2_percentile_30_UTM_500-0000046592-0000000000.tif
	29/10/2020 15:16:38 | Working on file S2_percentile_30_UTM_500-0000023296-0000023296.tif
	29/10/2020 15:16:39 | Working on file S2_percentile_30_UTM_500-0000023296-0000000000.tif
	29/10/2020 15:16:40 | Working on file S2_percentile_30_UTM_500-0000000000-0000046592.tif
	29/10/2020 15:16:40 | Working on file S2_percentile_30_UTM_500-0000000000-0000023296.tif
	29/10/2020 15:16:41 | Working on file S2_percentile_30_UTM_500-0000000000-0000000000.tif
29/10/2020 15:16:42 | Working on tile 21T
29/10/2020 15:16:48 | 7 files to process
	29/10/2020 15:16:48 | Working on file S2_percentile_UTM_260-0000046592-0000000000.tif
	29/10/2020 15:16:49 | Working on file S2_percentile_UTM_260-0000023296-0000046592.tif
	29/10/2020 15:16:49 | Working on file S2_percentile_UTM_260-0000023296-0000023296.tif
	29/10/2020 15:16:50 | Working on file S2_percentile_UTM_260-0000023296-0000000000.tif
	29/10/2020 15:16:51 | Working on file S2_percentile_UTM_260-0000000000-0000046592.tif
	29/10/2020 15:16:52 | Working on file S2_percentile_UTM_260-0000000000-0000023296.tif
	29/10/2020 15:16:53 | Working on file S2_percentile_UTM_260-0000000000-0000000000.tif
29/10/2020 15:16:54 | Working on tile 21U
29/10/2020 15:17:09 | 8 files to process
	29/10/2020 15:17:09 | Working on file S2_percentile_30_UTM_200-0000069888-0000023296.tif
	29/10/2020 15:17:14 | Working on file S2_percentile_30_UTM_200-0000069888-0000000000.tif
	29/10/2020 15:17:20 | Working on file S2_percentile_30_UTM_200-0000046592-0000023296.tif
	29/10/2020 15:17:25 | Working on file S2_percentile_30_UTM_200-0000046592-0000000000.tif
	29/10/2020 15:17:26 | Working on file S2_percentile_30_UTM_200-0000023296-0000023296.tif
	29/10/2020 15:17:27 | Working on file S2_percentile_30_UTM_200-0000023296-0000000000.tif
	29/10/2020 15:17:27 | Working on file S2_percentile_30_UTM_200-0000000000-0000023296.tif
	29/10/2020 15:17:28 | Working on file S2_percentile_30_UTM_200-0000000000-0000000000.tif
29/10/2020 15:17:29 | Working on tile 21W
29/10/2020 15:17:35 | 8 files to process
	29/10/2020 15:17:35 | Working on file S2_percentile_30_UTM_80-0000069888-0000023296.tif
	29/10/2020 15:17:36 | Working on file S2_percentile_30_UTM_80-0000069888-0000000000.tif
	29/10/2020 15:17:37 | Working on file S2_percentile_30_UTM_80-0000046592-0000023296.tif
	29/10/2020 15:17:37 | Working on file S2_percentile_30_UTM_80-0000046592-0000000000.tif
	29/10/2020 15:17:38 | Working on file S2_percentile_30_UTM_80-0000023296-0000023296.tif
	29/10/2020 15:17:39 | Working on file S2_percentile_30_UTM_80-0000023296-0000000000.tif
	29/10/2020 15:17:39 | Working on file S2_percentile_30_UTM_80-0000000000-0000023296.tif
	29/10/2020 15:17:40 | Working on file S2_percentile_30_UTM_80-0000000000-0000000000.tif
29/10/2020 15:17:41 | Working on tile 21X
29/10/2020 15:17:49 | 6 files to process
	29/10/2020 15:17:49 | Working on file S2_percentile_30_UTM_23-0000116480-0000000000.tif
	29/10/2020 15:17:53 | Working on file S2_percentile_30_UTM_23-0000093184-0000000000.tif
	29/10/2020 15:17:59 | Working on file S2_percentile_30_UTM_23-0000069888-0000000000.tif
	29/10/2020 15:18:00 | Working on file S2_percentile_30_UTM_23-0000046592-0000000000.tif
	29/10/2020 15:18:01 | Working on file S2_percentile_30_UTM_23-0000023296-0000000000.tif
	29/10/2020 15:18:02 | Working on file S2_percentile_30_UTM_23-0000000000-0000000000.tif
29/10/2020 15:18:04 | Working on tile 22H
29/10/2020 15:18:17 | 7 files to process
	29/10/2020 15:18:17 | Working on file S2_percentile_30_UTM_861-0000069888-0000000000.tif
	29/10/2020 15:18:18 | Working on file S2_percentile_30_UTM_861-0000046592-0000000000.tif
	29/10/2020 15:18:19 | Working on file S2_percentile_30_UTM_861-0000023296-0000023296.tif
	29/10/2020 15:18:20 | Working on file S2_percentile_30_UTM_861-0000023296-0000000000.tif
	29/10/2020 15:18:21 | Working on file S2_percentile_30_UTM_861-0000000000-0000046592.tif
	29/10/2020 15:18:22 | Working on file S2_percentile_30_UTM_861-0000000000-0000023296.tif
	29/10/2020 15:18:22 | Working on file S2_percentile_30_UTM_861-0000000000-0000000000.tif
29/10/2020 15:18:23 | Working on tile 22J
	22J_UTM.vrt contains no GeoTIFF, attempting 22J.vrt
29/10/2020 15:18:25 | 12 files to process
	29/10/2020 15:18:25 | Working on file S2_percentile_30_UTM_801-0000069888-0000046592.tif
	29/10/2020 15:18:26 | Working on file S2_percentile_30_UTM_801-0000069888-0000023296.tif
	29/10/2020 15:18:27 | Working on file S2_percentile_30_UTM_801-0000069888-0000000000.tif
	29/10/2020 15:18:27 | Working on file S2_percentile_30_UTM_801-0000046592-0000046592.tif
	29/10/2020 15:18:28 | Working on file S2_percentile_30_UTM_801-0000046592-0000023296.tif
	29/10/2020 15:18:29 | Working on file S2_percentile_30_UTM_801-0000046592-0000000000.tif
	29/10/2020 15:18:29 | Working on file S2_percentile_30_UTM_801-0000023296-0000046592.tif
	29/10/2020 15:18:30 | Working on file S2_percentile_30_UTM_801-0000023296-0000023296.tif
	29/10/2020 15:18:31 | Working on file S2_percentile_30_UTM_801-0000023296-0000000000.tif
	29/10/2020 15:18:31 | Working on file S2_percentile_30_UTM_801-0000000000-0000046592.tif
	29/10/2020 15:18:32 | Working on file S2_percentile_30_UTM_801-0000000000-0000023296.tif
	29/10/2020 15:18:33 | Working on file S2_percentile_30_UTM_801-0000000000-0000000000.tif
29/10/2020 15:18:33 | Working on tile 22K
29/10/2020 15:18:41 | 12 files to process
	29/10/2020 15:18:41 | Working on file S2_percentile_30_UTM_741-0000069888-0000046592.tif
	29/10/2020 15:18:42 | Working on file S2_percentile_30_UTM_741-0000069888-0000023296.tif
	29/10/2020 15:18:43 | Working on file S2_percentile_30_UTM_741-0000069888-0000000000.tif
	29/10/2020 15:18:44 | Working on file S2_percentile_30_UTM_741-0000046592-0000046592.tif
	29/10/2020 15:18:45 | Working on file S2_percentile_30_UTM_741-0000046592-0000023296.tif
	29/10/2020 15:18:46 | Working on file S2_percentile_30_UTM_741-0000046592-0000000000.tif
	29/10/2020 15:18:47 | Working on file S2_percentile_30_UTM_741-0000023296-0000046592.tif
	29/10/2020 15:18:49 | Working on file S2_percentile_30_UTM_741-0000023296-0000023296.tif
	29/10/2020 15:18:52 | Working on file S2_percentile_30_UTM_741-0000023296-0000000000.tif
	29/10/2020 15:18:56 | Working on file S2_percentile_30_UTM_741-0000000000-0000046592.tif
	29/10/2020 15:19:00 | Working on file S2_percentile_30_UTM_741-0000000000-0000023296.tif
	29/10/2020 15:19:00 | Working on file S2_percentile_30_UTM_741-0000000000-0000000000.tif
29/10/2020 15:19:01 | Working on tile 22L
29/10/2020 15:19:07 | 12 files to process
	29/10/2020 15:19:07 | Working on file S2_percentile_30_UTM_681-0000069888-0000046592.tif
	29/10/2020 15:19:08 | Working on file S2_percentile_30_UTM_681-0000069888-0000023296.tif
	29/10/2020 15:19:08 | Working on file S2_percentile_30_UTM_681-0000069888-0000000000.tif
	29/10/2020 15:19:09 | Working on file S2_percentile_30_UTM_681-0000046592-0000046592.tif
	29/10/2020 15:19:10 | Working on file S2_percentile_30_UTM_681-0000046592-0000023296.tif
	29/10/2020 15:19:10 | Working on file S2_percentile_30_UTM_681-0000046592-0000000000.tif
	29/10/2020 15:19:11 | Working on file S2_percentile_30_UTM_681-0000023296-0000046592.tif
	29/10/2020 15:19:12 | Working on file S2_percentile_30_UTM_681-0000023296-0000023296.tif
	29/10/2020 15:19:12 | Working on file S2_percentile_30_UTM_681-0000023296-0000000000.tif
	29/10/2020 15:19:13 | Working on file S2_percentile_30_UTM_681-0000000000-0000046592.tif
	29/10/2020 15:19:14 | Working on file S2_percentile_30_UTM_681-0000000000-0000023296.tif
	29/10/2020 15:19:14 | Working on file S2_percentile_30_UTM_681-0000000000-0000000000.tif
29/10/2020 15:19:15 | Working on tile 22M
29/10/2020 15:19:21 | 12 files to process
	29/10/2020 15:19:21 | Working on file S2_percentile_30_UTM_621-0000069888-0000046592.tif
	29/10/2020 15:19:22 | Working on file S2_percentile_30_UTM_621-0000069888-0000023296.tif
	29/10/2020 15:19:23 | Working on file S2_percentile_30_UTM_621-0000069888-0000000000.tif
	29/10/2020 15:19:24 | Working on file S2_percentile_30_UTM_621-0000046592-0000046592.tif
	29/10/2020 15:19:24 | Working on file S2_percentile_30_UTM_621-0000046592-0000023296.tif
	29/10/2020 15:19:25 | Working on file S2_percentile_30_UTM_621-0000046592-0000000000.tif
	29/10/2020 15:19:26 | Working on file S2_percentile_30_UTM_621-0000023296-0000046592.tif
	29/10/2020 15:19:27 | Working on file S2_percentile_30_UTM_621-0000023296-0000023296.tif
	29/10/2020 15:19:28 | Working on file S2_percentile_30_UTM_621-0000023296-0000000000.tif
	29/10/2020 15:19:28 | Working on file S2_percentile_30_UTM_621-0000000000-0000046592.tif
	29/10/2020 15:19:29 | Working on file S2_percentile_30_UTM_621-0000000000-0000023296.tif
	29/10/2020 15:19:30 | Working on file S2_percentile_30_UTM_621-0000000000-0000000000.tif
29/10/2020 15:19:30 | Working on tile 22N
29/10/2020 15:19:37 | 12 files to process
	29/10/2020 15:19:37 | Working on file S2_percentile_30_UTM_561-0000069888-0000046592.tif
	29/10/2020 15:19:38 | Working on file S2_percentile_30_UTM_561-0000069888-0000023296.tif
	29/10/2020 15:19:39 | Working on file S2_percentile_30_UTM_561-0000069888-0000000000.tif
	29/10/2020 15:19:40 | Working on file S2_percentile_30_UTM_561-0000046592-0000046592.tif
	29/10/2020 15:19:42 | Working on file S2_percentile_30_UTM_561-0000046592-0000023296.tif
	29/10/2020 15:19:42 | Working on file S2_percentile_30_UTM_561-0000046592-0000000000.tif
	29/10/2020 15:19:43 | Working on file S2_percentile_30_UTM_561-0000023296-0000046592.tif
	29/10/2020 15:19:44 | Working on file S2_percentile_30_UTM_561-0000023296-0000023296.tif
	29/10/2020 15:19:45 | Working on file S2_percentile_30_UTM_561-0000023296-0000000000.tif
	29/10/2020 15:19:45 | Working on file S2_percentile_30_UTM_561-0000000000-0000046592.tif
	29/10/2020 15:19:46 | Working on file S2_percentile_30_UTM_561-0000000000-0000023296.tif
	29/10/2020 15:19:47 | Working on file S2_percentile_30_UTM_561-0000000000-0000000000.tif
29/10/2020 15:19:48 | Working on tile 22T
29/10/2020 15:19:54 | 4 files to process
	29/10/2020 15:19:54 | Working on file S2_percentile_30_UTM_261-0000023296-0000023296.tif
	29/10/2020 15:19:55 | Working on file S2_percentile_30_UTM_261-0000023296-0000000000.tif
	29/10/2020 15:19:55 | Working on file S2_percentile_30_UTM_261-0000000000-0000023296.tif
	29/10/2020 15:19:56 | Working on file S2_percentile_30_UTM_261-0000000000-0000000000.tif
29/10/2020 15:19:57 | Working on tile 22U
	22U_UTM.vrt contains no GeoTIFF, attempting 22U.vrt
29/10/2020 15:19:59 | 7 files to process
	29/10/2020 15:19:59 | Working on file S2_percentile_UTM_201-0000069888-0000023296.tif
	29/10/2020 15:20:00 | Working on file S2_percentile_UTM_201-0000069888-0000000000.tif
	29/10/2020 15:20:01 | Working on file S2_percentile_UTM_201-0000046592-0000023296.tif
	29/10/2020 15:20:02 | Working on file S2_percentile_UTM_201-0000046592-0000000000.tif
	29/10/2020 15:20:03 | Working on file S2_percentile_UTM_201-0000023296-0000023296.tif
	29/10/2020 15:20:06 | Working on file S2_percentile_UTM_201-0000023296-0000000000.tif
	29/10/2020 15:20:08 | Working on file S2_percentile_UTM_201-0000000000-0000000000.tif
29/10/2020 15:20:08 | Working on tile 22V
29/10/2020 15:20:14 | 5 files to process
	29/10/2020 15:20:14 | Working on file S2_percentile_30_UTM_141-0000046592-0000023296.tif
	29/10/2020 15:20:16 | Working on file S2_percentile_30_UTM_141-0000023296-0000023296.tif
	29/10/2020 15:20:18 | Working on file S2_percentile_30_UTM_141-0000023296-0000000000.tif
	29/10/2020 15:20:19 | Working on file S2_percentile_30_UTM_141-0000000000-0000023296.tif
	29/10/2020 15:20:19 | Working on file S2_percentile_30_UTM_141-0000000000-0000000000.tif
29/10/2020 15:20:20 | Working on tile 22W
29/10/2020 15:20:26 | 8 files to process
	29/10/2020 15:20:26 | Working on file S2_percentile_30_UTM_81-0000069888-0000023296.tif
	29/10/2020 15:20:26 | Working on file S2_percentile_30_UTM_81-0000069888-0000000000.tif
	29/10/2020 15:20:27 | Working on file S2_percentile_30_UTM_81-0000046592-0000023296.tif
	29/10/2020 15:20:27 | Working on file S2_percentile_30_UTM_81-0000046592-0000000000.tif
	29/10/2020 15:20:28 | Working on file S2_percentile_30_UTM_81-0000023296-0000023296.tif
	29/10/2020 15:20:29 | Working on file S2_percentile_30_UTM_81-0000023296-0000000000.tif
	29/10/2020 15:20:29 | Working on file S2_percentile_30_UTM_81-0000000000-0000023296.tif
	29/10/2020 15:20:30 | Working on file S2_percentile_30_UTM_81-0000000000-0000000000.tif
29/10/2020 15:20:31 | Working on tile 22X
29/10/2020 15:20:39 | 6 files to process
	29/10/2020 15:20:39 | Working on file S2_percentile_30_UTM_24-0000116480-0000000000.tif
	29/10/2020 15:20:40 | Working on file S2_percentile_30_UTM_24-0000093184-0000000000.tif
	29/10/2020 15:20:41 | Working on file S2_percentile_30_UTM_24-0000069888-0000000000.tif
	29/10/2020 15:20:42 | Working on file S2_percentile_30_UTM_24-0000046592-0000000000.tif
	29/10/2020 15:20:43 | Working on file S2_percentile_30_UTM_24-0000023296-0000000000.tif
	29/10/2020 15:20:44 | Working on file S2_percentile_30_UTM_24-0000000000-0000000000.tif
29/10/2020 15:20:44 | Working on tile 23J
29/10/2020 15:20:52 | 9 files to process
	29/10/2020 15:20:52 | Working on file S2_percentile_30_UTM_802-0000069888-0000000000.tif
	29/10/2020 15:20:53 | Working on file S2_percentile_30_UTM_802-0000046592-0000023296.tif
	29/10/2020 15:20:54 | Working on file S2_percentile_30_UTM_802-0000046592-0000000000.tif
	29/10/2020 15:20:55 | Working on file S2_percentile_30_UTM_802-0000023296-0000046592.tif
	29/10/2020 15:20:58 | Working on file S2_percentile_30_UTM_802-0000023296-0000023296.tif
	29/10/2020 15:21:03 | Working on file S2_percentile_30_UTM_802-0000023296-0000000000.tif
	29/10/2020 15:21:04 | Working on file S2_percentile_30_UTM_802-0000000000-0000046592.tif
	29/10/2020 15:21:05 | Working on file S2_percentile_30_UTM_802-0000000000-0000023296.tif
	29/10/2020 15:21:06 | Working on file S2_percentile_30_UTM_802-0000000000-0000000000.tif
29/10/2020 15:21:07 | Working on tile 23K
29/10/2020 15:21:14 | 12 files to process
	29/10/2020 15:21:14 | Working on file S2_percentile_30_UTM_742-0000069888-0000046592.tif
	29/10/2020 15:21:15 | Working on file S2_percentile_30_UTM_742-0000069888-0000023296.tif
	29/10/2020 15:21:16 | Working on file S2_percentile_30_UTM_742-0000069888-0000000000.tif
	29/10/2020 15:21:17 | Working on file S2_percentile_30_UTM_742-0000046592-0000046592.tif
	29/10/2020 15:21:18 | Working on file S2_percentile_30_UTM_742-0000046592-0000023296.tif
	29/10/2020 15:21:19 | Working on file S2_percentile_30_UTM_742-0000046592-0000000000.tif
	29/10/2020 15:21:20 | Working on file S2_percentile_30_UTM_742-0000023296-0000046592.tif
	29/10/2020 15:21:20 | Working on file S2_percentile_30_UTM_742-0000023296-0000023296.tif
	29/10/2020 15:21:21 | Working on file S2_percentile_30_UTM_742-0000023296-0000000000.tif
	29/10/2020 15:21:24 | Working on file S2_percentile_30_UTM_742-0000000000-0000046592.tif
	29/10/2020 15:21:29 | Working on file S2_percentile_30_UTM_742-0000000000-0000023296.tif
	29/10/2020 15:21:30 | Working on file S2_percentile_30_UTM_742-0000000000-0000000000.tif
29/10/2020 15:21:31 | Working on tile 23L
29/10/2020 15:21:37 | 12 files to process
	29/10/2020 15:21:37 | Working on file S2_percentile_30_UTM_682-0000069888-0000046592.tif
	29/10/2020 15:21:38 | Working on file S2_percentile_30_UTM_682-0000069888-0000023296.tif
	29/10/2020 15:21:39 | Working on file S2_percentile_30_UTM_682-0000069888-0000000000.tif
	29/10/2020 15:21:40 | Working on file S2_percentile_30_UTM_682-0000046592-0000046592.tif
	29/10/2020 15:21:42 | Working on file S2_percentile_30_UTM_682-0000046592-0000023296.tif
	29/10/2020 15:21:43 | Working on file S2_percentile_30_UTM_682-0000046592-0000000000.tif
	29/10/2020 15:21:44 | Working on file S2_percentile_30_UTM_682-0000023296-0000046592.tif
	29/10/2020 15:21:45 | Working on file S2_percentile_30_UTM_682-0000023296-0000023296.tif
	29/10/2020 15:21:46 | Working on file S2_percentile_30_UTM_682-0000023296-0000000000.tif
	29/10/2020 15:21:46 | Working on file S2_percentile_30_UTM_682-0000000000-0000046592.tif
	29/10/2020 15:21:47 | Working on file S2_percentile_30_UTM_682-0000000000-0000023296.tif
	29/10/2020 15:21:48 | Working on file S2_percentile_30_UTM_682-0000000000-0000000000.tif
29/10/2020 15:21:49 | Working on tile 23M
29/10/2020 15:22:01 | 12 files to process
	29/10/2020 15:22:01 | Working on file S2_percentile_30_UTM_622-0000069888-0000046592.tif
	29/10/2020 15:22:03 | Working on file S2_percentile_30_UTM_622-0000069888-0000023296.tif
	29/10/2020 15:22:03 | Working on file S2_percentile_30_UTM_622-0000069888-0000000000.tif
	29/10/2020 15:22:04 | Working on file S2_percentile_30_UTM_622-0000046592-0000046592.tif
	29/10/2020 15:22:05 | Working on file S2_percentile_30_UTM_622-0000046592-0000023296.tif
	29/10/2020 15:22:05 | Working on file S2_percentile_30_UTM_622-0000046592-0000000000.tif
	29/10/2020 15:22:06 | Working on file S2_percentile_30_UTM_622-0000023296-0000046592.tif
	29/10/2020 15:22:07 | Working on file S2_percentile_30_UTM_622-0000023296-0000023296.tif
	29/10/2020 15:22:08 | Working on file S2_percentile_30_UTM_622-0000023296-0000000000.tif
	29/10/2020 15:22:09 | Working on file S2_percentile_30_UTM_622-0000000000-0000046592.tif
	29/10/2020 15:22:11 | Working on file S2_percentile_30_UTM_622-0000000000-0000023296.tif
	29/10/2020 15:22:12 | Working on file S2_percentile_30_UTM_622-0000000000-0000000000.tif
29/10/2020 15:22:14 | Working on tile 23V
29/10/2020 15:22:20 | 6 files to process
	29/10/2020 15:22:20 | Working on file S2_percentile_30_UTM_142-0000046592-0000023296.tif
	29/10/2020 15:22:21 | Working on file S2_percentile_30_UTM_142-0000046592-0000000000.tif
	29/10/2020 15:22:22 | Working on file S2_percentile_30_UTM_142-0000023296-0000023296.tif
	29/10/2020 15:22:23 | Working on file S2_percentile_30_UTM_142-0000023296-0000000000.tif
	29/10/2020 15:22:23 | Working on file S2_percentile_30_UTM_142-0000000000-0000023296.tif
	29/10/2020 15:22:25 | Working on file S2_percentile_30_UTM_142-0000000000-0000000000.tif
29/10/2020 15:22:26 | Working on tile 23W
29/10/2020 15:22:46 | 8 files to process
	29/10/2020 15:22:46 | Working on file S2_percentile_30_UTM_82-0000069888-0000023296.tif
	29/10/2020 15:22:46 | Working on file S2_percentile_30_UTM_82-0000069888-0000000000.tif
	29/10/2020 15:22:47 | Working on file S2_percentile_30_UTM_82-0000046592-0000023296.tif
	29/10/2020 15:22:47 | Working on file S2_percentile_30_UTM_82-0000046592-0000000000.tif
	29/10/2020 15:22:48 | Working on file S2_percentile_30_UTM_82-0000023296-0000023296.tif
	29/10/2020 15:22:48 | Working on file S2_percentile_30_UTM_82-0000023296-0000000000.tif
	29/10/2020 15:22:49 | Working on file S2_percentile_30_UTM_82-0000000000-0000023296.tif
	29/10/2020 15:22:49 | Working on file S2_percentile_30_UTM_82-0000000000-0000000000.tif
29/10/2020 15:22:50 | Working on tile 23X
	23X_UTM.vrt contains no GeoTIFF, attempting 23X.vrt
29/10/2020 15:22:52 | 10 files to process
	29/10/2020 15:22:52 | Working on file S2_percentile_30_UTM_25-0000116480-0000000000.tif
	29/10/2020 15:22:53 | Working on file S2_percentile_30_UTM_25-0000093184-0000000000.tif
	29/10/2020 15:22:54 | Working on file S2_percentile_30_UTM_25-0000069888-0000023296.tif
	29/10/2020 15:22:54 | Working on file S2_percentile_30_UTM_25-0000069888-0000000000.tif
	29/10/2020 15:22:55 | Working on file S2_percentile_30_UTM_25-0000046592-0000023296.tif
	29/10/2020 15:22:55 | Working on file S2_percentile_30_UTM_25-0000046592-0000000000.tif
	29/10/2020 15:22:57 | Working on file S2_percentile_30_UTM_25-0000023296-0000023296.tif
	29/10/2020 15:22:58 | Working on file S2_percentile_30_UTM_25-0000023296-0000000000.tif
	29/10/2020 15:22:59 | Working on file S2_percentile_30_UTM_25-0000000000-0000023296.tif
	29/10/2020 15:23:00 | Working on file S2_percentile_30_UTM_25-0000000000-0000000000.tif
29/10/2020 15:23:01 | Working on tile 24F
	24F_UTM.vrt contains no GeoTIFF, attempting 24F.vrt
29/10/2020 15:23:04 | 4 files to process
	29/10/2020 15:23:04 | Working on file S2_percentile_30_UTM_983-0000069888-0000023296.tif
	29/10/2020 15:23:05 | Working on file S2_percentile_30_UTM_983-0000069888-0000000000.tif
	29/10/2020 15:23:06 | Working on file S2_percentile_30_UTM_983-0000046592-0000023296.tif
	29/10/2020 15:23:07 | Working on file S2_percentile_30_UTM_983-0000046592-0000000000.tif
29/10/2020 15:23:07 | Working on tile 24K
29/10/2020 15:23:14 | 12 files to process
	29/10/2020 15:23:14 | Working on file S2_percentile_30_UTM_743-0000069888-0000046592.tif
	29/10/2020 15:23:14 | Working on file S2_percentile_30_UTM_743-0000069888-0000023296.tif
	29/10/2020 15:23:15 | Working on file S2_percentile_30_UTM_743-0000069888-0000000000.tif
	29/10/2020 15:23:15 | Working on file S2_percentile_30_UTM_743-0000046592-0000046592.tif
	29/10/2020 15:23:16 | Working on file S2_percentile_30_UTM_743-0000046592-0000023296.tif
	29/10/2020 15:23:17 | Working on file S2_percentile_30_UTM_743-0000046592-0000000000.tif
	29/10/2020 15:23:17 | Working on file S2_percentile_30_UTM_743-0000023296-0000046592.tif
	29/10/2020 15:23:18 | Working on file S2_percentile_30_UTM_743-0000023296-0000023296.tif
	29/10/2020 15:23:19 | Working on file S2_percentile_30_UTM_743-0000023296-0000000000.tif
	29/10/2020 15:23:20 | Working on file S2_percentile_30_UTM_743-0000000000-0000046592.tif
	29/10/2020 15:23:20 | Working on file S2_percentile_30_UTM_743-0000000000-0000023296.tif
	29/10/2020 15:23:21 | Working on file S2_percentile_30_UTM_743-0000000000-0000000000.tif
29/10/2020 15:23:21 | Working on tile 24L
	24L_UTM.vrt contains no GeoTIFF, attempting 24L.vrt
29/10/2020 15:23:24 | 12 files to process
	29/10/2020 15:23:24 | Working on file S2_percentile_30_UTM_683-0000069888-0000046592.tif
	29/10/2020 15:23:25 | Working on file S2_percentile_30_UTM_683-0000069888-0000023296.tif
	29/10/2020 15:23:25 | Working on file S2_percentile_30_UTM_683-0000069888-0000000000.tif
	29/10/2020 15:23:26 | Working on file S2_percentile_30_UTM_683-0000046592-0000046592.tif
	29/10/2020 15:23:26 | Working on file S2_percentile_30_UTM_683-0000046592-0000023296.tif
	29/10/2020 15:23:28 | Working on file S2_percentile_30_UTM_683-0000046592-0000000000.tif
	29/10/2020 15:23:30 | Working on file S2_percentile_30_UTM_683-0000023296-0000046592.tif
	29/10/2020 15:23:31 | Working on file S2_percentile_30_UTM_683-0000023296-0000023296.tif
	29/10/2020 15:23:32 | Working on file S2_percentile_30_UTM_683-0000023296-0000000000.tif
	29/10/2020 15:23:33 | Working on file S2_percentile_30_UTM_683-0000000000-0000046592.tif
	29/10/2020 15:23:33 | Working on file S2_percentile_30_UTM_683-0000000000-0000023296.tif
	29/10/2020 15:23:34 | Working on file S2_percentile_30_UTM_683-0000000000-0000000000.tif
29/10/2020 15:23:36 | Working on tile 24M
	24M_UTM.vrt contains no GeoTIFF, attempting 24M.vrt
29/10/2020 15:23:40 | 10 files to process
	29/10/2020 15:23:40 | Working on file S2_percentile_30_UTM_623-0000069888-0000046592.tif
	29/10/2020 15:23:44 | Working on file S2_percentile_30_UTM_623-0000069888-0000023296.tif
	29/10/2020 15:23:50 | Working on file S2_percentile_30_UTM_623-0000069888-0000000000.tif
	29/10/2020 15:23:53 | Working on file S2_percentile_30_UTM_623-0000046592-0000046592.tif
	29/10/2020 15:23:54 | Working on file S2_percentile_30_UTM_623-0000046592-0000023296.tif
	29/10/2020 15:23:55 | Working on file S2_percentile_30_UTM_623-0000046592-0000000000.tif
	29/10/2020 15:23:56 | Working on file S2_percentile_30_UTM_623-0000023296-0000046592.tif
	29/10/2020 15:23:57 | Working on file S2_percentile_30_UTM_623-0000023296-0000023296.tif
	29/10/2020 15:23:58 | Working on file S2_percentile_30_UTM_623-0000023296-0000000000.tif
	29/10/2020 15:23:59 | Working on file S2_percentile_30_UTM_623-0000000000-0000000000.tif
29/10/2020 15:24:00 | Working on tile 24V
29/10/2020 15:24:23 | 7 files to process
	29/10/2020 15:24:23 | Working on file S2_percentile_30_UTM_143-0000069888-0000000000.tif
	29/10/2020 15:24:24 | Working on file S2_percentile_30_UTM_143-0000046592-0000023296.tif
	29/10/2020 15:24:25 | Working on file S2_percentile_30_UTM_143-0000046592-0000000000.tif
	29/10/2020 15:24:26 | Working on file S2_percentile_30_UTM_143-0000023296-0000023296.tif
	29/10/2020 15:24:26 | Working on file S2_percentile_30_UTM_143-0000023296-0000000000.tif
	29/10/2020 15:24:27 | Working on file S2_percentile_30_UTM_143-0000000000-0000023296.tif
	29/10/2020 15:24:28 | Working on file S2_percentile_30_UTM_143-0000000000-0000000000.tif
29/10/2020 15:24:28 | Working on tile 24W
29/10/2020 15:24:34 | 8 files to process
	29/10/2020 15:24:34 | Working on file S2_percentile_30_UTM_83-0000069888-0000023296.tif
	29/10/2020 15:24:34 | Working on file S2_percentile_30_UTM_83-0000069888-0000000000.tif
	29/10/2020 15:24:35 | Working on file S2_percentile_30_UTM_83-0000046592-0000023296.tif
	29/10/2020 15:24:35 | Working on file S2_percentile_30_UTM_83-0000046592-0000000000.tif
	29/10/2020 15:24:36 | Working on file S2_percentile_30_UTM_83-0000023296-0000023296.tif
	29/10/2020 15:24:37 | Working on file S2_percentile_30_UTM_83-0000023296-0000000000.tif
	29/10/2020 15:24:38 | Working on file S2_percentile_30_UTM_83-0000000000-0000023296.tif
	29/10/2020 15:24:38 | Working on file S2_percentile_30_UTM_83-0000000000-0000000000.tif
29/10/2020 15:24:39 | Working on tile 24X
29/10/2020 15:24:47 | 6 files to process
	29/10/2020 15:24:47 | Working on file S2_percentile_30_UTM_26-0000116480-0000000000.tif
	29/10/2020 15:24:48 | Working on file S2_percentile_30_UTM_26-0000093184-0000000000.tif
	29/10/2020 15:24:48 | Working on file S2_percentile_30_UTM_26-0000069888-0000000000.tif
	29/10/2020 15:24:49 | Working on file S2_percentile_30_UTM_26-0000046592-0000000000.tif
	29/10/2020 15:24:50 | Working on file S2_percentile_30_UTM_26-0000023296-0000000000.tif
	29/10/2020 15:24:51 | Working on file S2_percentile_30_UTM_26-0000000000-0000000000.tif
29/10/2020 15:24:52 | Working on tile 25F
29/10/2020 15:24:58 | 5 files to process
	29/10/2020 15:24:58 | Working on file S2_percentile_30_UTM_984-0000069888-0000023296.tif
	29/10/2020 15:24:59 | Working on file S2_percentile_30_UTM_984-0000069888-0000000000.tif
	29/10/2020 15:24:59 | Working on file S2_percentile_30_UTM_984-0000046592-0000023296.tif
	29/10/2020 15:25:00 | Working on file S2_percentile_30_UTM_984-0000046592-0000000000.tif
	29/10/2020 15:25:01 | Working on file S2_percentile_30_UTM_984-0000023296-0000023296.tif
29/10/2020 15:25:02 | Working on tile 25K
	25K_UTM.vrt contains no GeoTIFF, attempting 25K.vrt
29/10/2020 15:25:04 | 2 files to process
	29/10/2020 15:25:04 | Working on file S2_percentile_30_UTM_744-0000023296-0000000000.tif
	29/10/2020 15:25:07 | Working on file S2_percentile_30_UTM_744-0000000000-0000000000.tif
29/10/2020 15:25:08 | Working on tile 25L
	25L_UTM.vrt contains no GeoTIFF, attempting 25L.vrt
29/10/2020 15:25:10 | 8 files to process
	29/10/2020 15:25:10 | Working on file S2_percentile_30_UTM_684-0000069888-0000000000.tif
	29/10/2020 15:25:11 | Working on file S2_percentile_30_UTM_684-0000046592-0000000000.tif
	29/10/2020 15:25:11 | Working on file S2_percentile_30_UTM_684-0000023296-0000046592.tif
	29/10/2020 15:25:12 | Working on file S2_percentile_30_UTM_684-0000023296-0000023296.tif
	29/10/2020 15:25:13 | Working on file S2_percentile_30_UTM_684-0000023296-0000000000.tif
	29/10/2020 15:25:13 | Working on file S2_percentile_30_UTM_684-0000000000-0000046592.tif
	29/10/2020 15:25:14 | Working on file S2_percentile_30_UTM_684-0000000000-0000023296.tif
	29/10/2020 15:25:14 | Working on file S2_percentile_30_UTM_684-0000000000-0000000000.tif
29/10/2020 15:25:15 | Working on tile 25M
29/10/2020 15:25:20 | 6 files to process
	29/10/2020 15:25:20 | Working on file S2_percentile_30_UTM_624-0000069888-0000046592.tif
	29/10/2020 15:25:21 | Working on file S2_percentile_30_UTM_624-0000069888-0000023296.tif
	29/10/2020 15:25:21 | Working on file S2_percentile_30_UTM_624-0000069888-0000000000.tif
	29/10/2020 15:25:22 | Working on file S2_percentile_30_UTM_624-0000046592-0000023296.tif
	29/10/2020 15:25:22 | Working on file S2_percentile_30_UTM_624-0000046592-0000000000.tif
	29/10/2020 15:25:23 | Working on file S2_percentile_30_UTM_624-0000023296-0000000000.tif
29/10/2020 15:25:24 | Working on tile 25S
29/10/2020 15:25:29 | 12 files to process
	29/10/2020 15:25:29 | Working on file S2_percentile_30_UTM_324-0000069888-0000046592.tif
	29/10/2020 15:25:30 | Working on file S2_percentile_30_UTM_324-0000069888-0000023296.tif
	29/10/2020 15:25:31 | Working on file S2_percentile_30_UTM_324-0000069888-0000000000.tif
	29/10/2020 15:25:31 | Working on file S2_percentile_30_UTM_324-0000046592-0000046592.tif
	29/10/2020 15:25:32 | Working on file S2_percentile_30_UTM_324-0000046592-0000023296.tif
	29/10/2020 15:25:32 | Working on file S2_percentile_30_UTM_324-0000046592-0000000000.tif
	29/10/2020 15:25:33 | Working on file S2_percentile_30_UTM_324-0000023296-0000046592.tif
	29/10/2020 15:25:33 | Working on file S2_percentile_30_UTM_324-0000023296-0000023296.tif
	29/10/2020 15:25:34 | Working on file S2_percentile_30_UTM_324-0000023296-0000000000.tif
	29/10/2020 15:25:35 | Working on file S2_percentile_30_UTM_324-0000000000-0000046592.tif
	29/10/2020 15:25:35 | Working on file S2_percentile_30_UTM_324-0000000000-0000023296.tif
	29/10/2020 15:25:36 | Working on file S2_percentile_30_UTM_324-0000000000-0000000000.tif
29/10/2020 15:25:37 | Working on tile 25W
29/10/2020 15:25:42 | 8 files to process
	29/10/2020 15:25:42 | Working on file S2_percentile_30_UTM_84-0000069888-0000023296.tif
	29/10/2020 15:25:43 | Working on file S2_percentile_30_UTM_84-0000069888-0000000000.tif
	29/10/2020 15:25:43 | Working on file S2_percentile_30_UTM_84-0000046592-0000023296.tif
	29/10/2020 15:25:44 | Working on file S2_percentile_30_UTM_84-0000046592-0000000000.tif
	29/10/2020 15:25:45 | Working on file S2_percentile_30_UTM_84-0000023296-0000023296.tif
	29/10/2020 15:25:45 | Working on file S2_percentile_30_UTM_84-0000023296-0000000000.tif
	29/10/2020 15:25:46 | Working on file S2_percentile_30_UTM_84-0000000000-0000023296.tif
	29/10/2020 15:25:46 | Working on file S2_percentile_30_UTM_84-0000000000-0000000000.tif
29/10/2020 15:25:47 | Working on tile 25X
	25X_UTM.vrt contains no GeoTIFF, attempting 25X.vrt
29/10/2020 15:25:50 | 8 files to process
	29/10/2020 15:25:50 | Working on file S2_percentile_30_UTM_27-0000116480-0000023296.tif
	29/10/2020 15:25:51 | Working on file S2_percentile_30_UTM_27-0000116480-0000000000.tif
	29/10/2020 15:25:52 | Working on file S2_percentile_30_UTM_27-0000093184-0000023296.tif
	29/10/2020 15:25:53 | Working on file S2_percentile_30_UTM_27-0000093184-0000000000.tif
	29/10/2020 15:25:53 | Working on file S2_percentile_30_UTM_27-0000069888-0000000000.tif
	29/10/2020 15:25:54 | Working on file S2_percentile_30_UTM_27-0000046592-0000000000.tif
	29/10/2020 15:25:55 | Working on file S2_percentile_30_UTM_27-0000023296-0000000000.tif
	29/10/2020 15:25:56 | Working on file S2_percentile_30_UTM_27-0000000000-0000000000.tif
29/10/2020 15:25:57 | Working on tile 26K
29/10/2020 15:26:11 | 8 files to process
	29/10/2020 15:26:11 | Working on file S2_percentile_30_UTM_745-0000069888-0000046592.tif
	29/10/2020 15:26:12 | Working on file S2_percentile_30_UTM_745-0000069888-0000023296.tif
	29/10/2020 15:26:13 | Working on file S2_percentile_30_UTM_745-0000046592-0000046592.tif
	29/10/2020 15:26:14 | Working on file S2_percentile_30_UTM_745-0000046592-0000023296.tif
	29/10/2020 15:26:14 | Working on file S2_percentile_30_UTM_745-0000023296-0000046592.tif
	29/10/2020 15:26:15 | Working on file S2_percentile_30_UTM_745-0000023296-0000023296.tif
	29/10/2020 15:26:16 | Working on file S2_percentile_30_UTM_745-0000000000-0000046592.tif
	29/10/2020 15:26:16 | Working on file S2_percentile_30_UTM_745-0000000000-0000023296.tif
29/10/2020 15:26:17 | Working on tile 26Q
29/10/2020 15:26:26 | 12 files to process
	29/10/2020 15:26:26 | Working on file S2_percentile_30_UTM_445-0000069888-0000046592.tif
	29/10/2020 15:26:26 | Working on file S2_percentile_30_UTM_445-0000069888-0000023296.tif
	29/10/2020 15:26:27 | Working on file S2_percentile_30_UTM_445-0000069888-0000000000.tif
	29/10/2020 15:26:28 | Working on file S2_percentile_30_UTM_445-0000046592-0000046592.tif
	29/10/2020 15:26:29 | Working on file S2_percentile_30_UTM_445-0000046592-0000023296.tif
	29/10/2020 15:26:30 | Working on file S2_percentile_30_UTM_445-0000046592-0000000000.tif
	29/10/2020 15:26:31 | Working on file S2_percentile_30_UTM_445-0000023296-0000046592.tif
	29/10/2020 15:26:32 | Working on file S2_percentile_30_UTM_445-0000023296-0000023296.tif
	29/10/2020 15:26:32 | Working on file S2_percentile_30_UTM_445-0000023296-0000000000.tif
	29/10/2020 15:26:33 | Working on file S2_percentile_30_UTM_445-0000000000-0000046592.tif
	29/10/2020 15:26:34 | Working on file S2_percentile_30_UTM_445-0000000000-0000023296.tif
	29/10/2020 15:26:35 | Working on file S2_percentile_30_UTM_445-0000000000-0000000000.tif
29/10/2020 15:26:35 | Working on tile 26S
29/10/2020 15:26:45 | 12 files to process
	29/10/2020 15:26:45 | Working on file S2_percentile_30_UTM_325-0000069888-0000046592.tif
	29/10/2020 15:26:45 | Working on file S2_percentile_30_UTM_325-0000069888-0000023296.tif
	29/10/2020 15:26:46 | Working on file S2_percentile_30_UTM_325-0000069888-0000000000.tif
	29/10/2020 15:26:47 | Working on file S2_percentile_30_UTM_325-0000046592-0000046592.tif
	29/10/2020 15:26:47 | Working on file S2_percentile_30_UTM_325-0000046592-0000023296.tif
	29/10/2020 15:26:48 | Working on file S2_percentile_30_UTM_325-0000046592-0000000000.tif
	29/10/2020 15:26:49 | Working on file S2_percentile_30_UTM_325-0000023296-0000046592.tif
	29/10/2020 15:26:49 | Working on file S2_percentile_30_UTM_325-0000023296-0000023296.tif
	29/10/2020 15:26:50 | Working on file S2_percentile_30_UTM_325-0000023296-0000000000.tif
	29/10/2020 15:26:51 | Working on file S2_percentile_30_UTM_325-0000000000-0000046592.tif
	29/10/2020 15:26:51 | Working on file S2_percentile_30_UTM_325-0000000000-0000023296.tif
	29/10/2020 15:26:52 | Working on file S2_percentile_30_UTM_325-0000000000-0000000000.tif
29/10/2020 15:26:53 | Working on tile 26W
29/10/2020 15:26:59 | 8 files to process
	29/10/2020 15:26:59 | Working on file S2_percentile_30_UTM_85-0000069888-0000023296.tif
	29/10/2020 15:26:59 | Working on file S2_percentile_30_UTM_85-0000069888-0000000000.tif
	29/10/2020 15:27:00 | Working on file S2_percentile_30_UTM_85-0000046592-0000023296.tif
	29/10/2020 15:27:01 | Working on file S2_percentile_30_UTM_85-0000046592-0000000000.tif
	29/10/2020 15:27:01 | Working on file S2_percentile_30_UTM_85-0000023296-0000023296.tif
	29/10/2020 15:27:02 | Working on file S2_percentile_30_UTM_85-0000023296-0000000000.tif
	29/10/2020 15:27:03 | Working on file S2_percentile_30_UTM_85-0000000000-0000023296.tif
	29/10/2020 15:27:03 | Working on file S2_percentile_30_UTM_85-0000000000-0000000000.tif
29/10/2020 15:27:04 | Working on tile 26X
	26X_UTM.vrt contains no GeoTIFF, attempting 26X.vrt
29/10/2020 15:27:06 | 8 files to process
	29/10/2020 15:27:06 | Working on file S2_percentile_30_UTM_28-0000116480-0000023296.tif
	29/10/2020 15:27:07 | Working on file S2_percentile_30_UTM_28-0000116480-0000000000.tif
	29/10/2020 15:27:07 | Working on file S2_percentile_30_UTM_28-0000093184-0000023296.tif
	29/10/2020 15:27:08 | Working on file S2_percentile_30_UTM_28-0000093184-0000000000.tif
	29/10/2020 15:27:08 | Working on file S2_percentile_30_UTM_28-0000069888-0000000000.tif
	29/10/2020 15:27:09 | Working on file S2_percentile_30_UTM_28-0000046592-0000000000.tif
	29/10/2020 15:27:10 | Working on file S2_percentile_30_UTM_28-0000023296-0000000000.tif
	29/10/2020 15:27:11 | Working on file S2_percentile_30_UTM_28-0000000000-0000000000.tif
29/10/2020 15:27:12 | Working on tile 27P
29/10/2020 15:27:17 | 7 files to process
	29/10/2020 15:27:17 | Working on file S2_percentile_30_UTM_506-0000046592-0000046592.tif
	29/10/2020 15:27:18 | Working on file S2_percentile_30_UTM_506-0000023296-0000046592.tif
	29/10/2020 15:27:19 | Working on file S2_percentile_30_UTM_506-0000023296-0000023296.tif
	29/10/2020 15:27:20 | Working on file S2_percentile_30_UTM_506-0000023296-0000000000.tif
	29/10/2020 15:27:21 | Working on file S2_percentile_30_UTM_506-0000000000-0000046592.tif
	29/10/2020 15:27:21 | Working on file S2_percentile_30_UTM_506-0000000000-0000023296.tif
	29/10/2020 15:27:22 | Working on file S2_percentile_30_UTM_506-0000000000-0000000000.tif
29/10/2020 15:27:23 | Working on tile 27Q
29/10/2020 15:27:28 | 8 files to process
	29/10/2020 15:27:28 | Working on file S2_percentile_30_UTM_446-0000069888-0000046592.tif
	29/10/2020 15:27:29 | Working on file S2_percentile_30_UTM_446-0000069888-0000023296.tif
	29/10/2020 15:27:30 | Working on file S2_percentile_30_UTM_446-0000069888-0000000000.tif
	29/10/2020 15:27:30 | Working on file S2_percentile_30_UTM_446-0000046592-0000046592.tif
	29/10/2020 15:27:31 | Working on file S2_percentile_30_UTM_446-0000046592-0000023296.tif
	29/10/2020 15:27:31 | Working on file S2_percentile_30_UTM_446-0000023296-0000046592.tif
	29/10/2020 15:27:32 | Working on file S2_percentile_30_UTM_446-0000023296-0000023296.tif
	29/10/2020 15:27:33 | Working on file S2_percentile_30_UTM_446-0000000000-0000046592.tif
29/10/2020 15:27:34 | Working on tile 27R
29/10/2020 15:27:39 | 12 files to process
	29/10/2020 15:27:39 | Working on file S2_percentile_30_UTM_386-0000069888-0000046592.tif
	29/10/2020 15:27:40 | Working on file S2_percentile_30_UTM_386-0000069888-0000023296.tif
	29/10/2020 15:27:41 | Working on file S2_percentile_30_UTM_386-0000069888-0000000000.tif
	29/10/2020 15:27:42 | Working on file S2_percentile_30_UTM_386-0000046592-0000046592.tif
	29/10/2020 15:27:42 | Working on file S2_percentile_30_UTM_386-0000046592-0000023296.tif
	29/10/2020 15:27:43 | Working on file S2_percentile_30_UTM_386-0000046592-0000000000.tif
	29/10/2020 15:27:44 | Working on file S2_percentile_30_UTM_386-0000023296-0000046592.tif
	29/10/2020 15:27:45 | Working on file S2_percentile_30_UTM_386-0000023296-0000023296.tif
	29/10/2020 15:27:45 | Working on file S2_percentile_30_UTM_386-0000023296-0000000000.tif
	29/10/2020 15:27:46 | Working on file S2_percentile_30_UTM_386-0000000000-0000046592.tif
	29/10/2020 15:27:47 | Working on file S2_percentile_30_UTM_386-0000000000-0000023296.tif
	29/10/2020 15:27:47 | Working on file S2_percentile_30_UTM_386-0000000000-0000000000.tif
29/10/2020 15:27:48 | Working on tile 27V
29/10/2020 15:27:53 | 3 files to process
	29/10/2020 15:27:53 | Working on file S2_percentile_30_UTM_146-0000023296-0000023296.tif
	29/10/2020 15:27:54 | Working on file S2_percentile_30_UTM_146-0000000000-0000023296.tif
	29/10/2020 15:27:55 | Working on file S2_percentile_30_UTM_146-0000000000-0000000000.tif
29/10/2020 15:27:56 | Working on tile 27W
29/10/2020 15:28:06 | 8 files to process
	29/10/2020 15:28:06 | Working on file S2_percentile_30_UTM_86-0000069888-0000023296.tif
	29/10/2020 15:28:06 | Working on file S2_percentile_30_UTM_86-0000069888-0000000000.tif
	29/10/2020 15:28:07 | Working on file S2_percentile_30_UTM_86-0000046592-0000023296.tif
	29/10/2020 15:28:08 | Working on file S2_percentile_30_UTM_86-0000046592-0000000000.tif
	29/10/2020 15:28:10 | Working on file S2_percentile_30_UTM_86-0000023296-0000023296.tif
	29/10/2020 15:28:13 | Working on file S2_percentile_30_UTM_86-0000023296-0000000000.tif
	29/10/2020 15:28:20 | Working on file S2_percentile_30_UTM_86-0000000000-0000023296.tif
	29/10/2020 15:28:23 | Working on file S2_percentile_30_UTM_86-0000000000-0000000000.tif
29/10/2020 15:28:24 | Working on tile 27X
29/10/2020 15:28:32 | 6 files to process
	29/10/2020 15:28:32 | Working on file S2_percentile_30_UTM_29-0000116480-0000000000.tif
	29/10/2020 15:28:33 | Working on file S2_percentile_30_UTM_29-0000093184-0000000000.tif
	29/10/2020 15:28:33 | Working on file S2_percentile_30_UTM_29-0000069888-0000000000.tif
	29/10/2020 15:28:34 | Working on file S2_percentile_30_UTM_29-0000046592-0000000000.tif
	29/10/2020 15:28:35 | Working on file S2_percentile_30_UTM_29-0000023296-0000000000.tif
	29/10/2020 15:28:36 | Working on file S2_percentile_30_UTM_29-0000000000-0000000000.tif
29/10/2020 15:28:37 | Working on tile 28M
29/10/2020 15:28:44 | 9 files to process
	29/10/2020 15:28:44 | Working on file S2_percentile_30_UTM_627-0000069888-0000046592.tif
	29/10/2020 15:28:45 | Working on file S2_percentile_30_UTM_627-0000069888-0000023296.tif
	29/10/2020 15:28:45 | Working on file S2_percentile_30_UTM_627-0000069888-0000000000.tif
	29/10/2020 15:28:46 | Working on file S2_percentile_30_UTM_627-0000046592-0000046592.tif
	29/10/2020 15:28:47 | Working on file S2_percentile_30_UTM_627-0000046592-0000023296.tif
	29/10/2020 15:28:47 | Working on file S2_percentile_30_UTM_627-0000046592-0000000000.tif
	29/10/2020 15:28:48 | Working on file S2_percentile_30_UTM_627-0000023296-0000046592.tif
	29/10/2020 15:28:49 | Working on file S2_percentile_30_UTM_627-0000023296-0000023296.tif
	29/10/2020 15:28:49 | Working on file S2_percentile_30_UTM_627-0000023296-0000000000.tif
29/10/2020 15:28:50 | Working on tile 28N
29/10/2020 15:28:55 | 3 files to process
	29/10/2020 15:28:55 | Working on file S2_percentile_UTM_567-0000023296-0000046592.tif
	29/10/2020 15:28:56 | Working on file S2_percentile_UTM_567-0000000000-0000046592.tif
	29/10/2020 15:28:57 | Working on file S2_percentile_UTM_567-0000000000-0000023296.tif
29/10/2020 15:28:57 | Working on tile 28P
29/10/2020 15:29:05 | 12 files to process
	29/10/2020 15:29:05 | Working on file S2_percentile_UTM_507-0000069888-0000046592.tif
	29/10/2020 15:29:06 | Working on file S2_percentile_UTM_507-0000069888-0000023296.tif
	29/10/2020 15:29:07 | Working on file S2_percentile_UTM_507-0000069888-0000000000.tif
	29/10/2020 15:29:07 | Working on file S2_percentile_UTM_507-0000046592-0000046592.tif
	29/10/2020 15:29:08 | Working on file S2_percentile_UTM_507-0000046592-0000023296.tif
	29/10/2020 15:29:09 | Working on file S2_percentile_UTM_507-0000046592-0000000000.tif
	29/10/2020 15:29:09 | Working on file S2_percentile_UTM_507-0000023296-0000046592.tif
	29/10/2020 15:29:10 | Working on file S2_percentile_UTM_507-0000023296-0000023296.tif
	29/10/2020 15:29:11 | Working on file S2_percentile_UTM_507-0000023296-0000000000.tif
	29/10/2020 15:29:11 | Working on file S2_percentile_UTM_507-0000000000-0000046592.tif
	29/10/2020 15:29:12 | Working on file S2_percentile_UTM_507-0000000000-0000023296.tif
	29/10/2020 15:29:13 | Working on file S2_percentile_UTM_507-0000000000-0000000000.tif
29/10/2020 15:29:13 | Working on tile 28Q
	28Q_UTM.vrt contains no GeoTIFF, attempting 28Q.vrt
29/10/2020 15:29:16 | 12 files to process
	29/10/2020 15:29:16 | Working on file S2_percentile_30_UTM_447-0000069888-0000046592.tif
	29/10/2020 15:29:17 | Working on file S2_percentile_30_UTM_447-0000069888-0000023296.tif
	29/10/2020 15:29:18 | Working on file S2_percentile_30_UTM_447-0000069888-0000000000.tif
	29/10/2020 15:29:18 | Working on file S2_percentile_30_UTM_447-0000046592-0000046592.tif
	29/10/2020 15:29:19 | Working on file S2_percentile_30_UTM_447-0000046592-0000023296.tif
	29/10/2020 15:29:20 | Working on file S2_percentile_30_UTM_447-0000046592-0000000000.tif
	29/10/2020 15:29:21 | Working on file S2_percentile_30_UTM_447-0000023296-0000046592.tif
	29/10/2020 15:29:21 | Working on file S2_percentile_30_UTM_447-0000023296-0000023296.tif
	29/10/2020 15:29:22 | Working on file S2_percentile_30_UTM_447-0000023296-0000000000.tif
	29/10/2020 15:29:23 | Working on file S2_percentile_30_UTM_447-0000000000-0000046592.tif
	29/10/2020 15:29:23 | Working on file S2_percentile_30_UTM_447-0000000000-0000023296.tif
	29/10/2020 15:29:24 | Working on file S2_percentile_30_UTM_447-0000000000-0000000000.tif
29/10/2020 15:29:25 | Working on tile 28R
	28R_UTM.vrt contains no GeoTIFF, attempting 28R.vrt
29/10/2020 15:29:28 | 12 files to process
	29/10/2020 15:29:28 | Working on file S2_percentile_UTM_387-0000069888-0000046592.tif
	29/10/2020 15:29:28 | Working on file S2_percentile_UTM_387-0000069888-0000023296.tif
	29/10/2020 15:29:29 | Working on file S2_percentile_UTM_387-0000069888-0000000000.tif
	29/10/2020 15:29:30 | Working on file S2_percentile_UTM_387-0000046592-0000046592.tif
	29/10/2020 15:29:31 | Working on file S2_percentile_UTM_387-0000046592-0000023296.tif
	29/10/2020 15:29:31 | Working on file S2_percentile_UTM_387-0000046592-0000000000.tif
	29/10/2020 15:29:32 | Working on file S2_percentile_UTM_387-0000023296-0000046592.tif
	29/10/2020 15:29:33 | Working on file S2_percentile_UTM_387-0000023296-0000023296.tif
	29/10/2020 15:29:33 | Working on file S2_percentile_UTM_387-0000023296-0000000000.tif
	29/10/2020 15:29:34 | Working on file S2_percentile_UTM_387-0000000000-0000046592.tif
	29/10/2020 15:29:35 | Working on file S2_percentile_UTM_387-0000000000-0000023296.tif
	29/10/2020 15:29:36 | Working on file S2_percentile_UTM_387-0000000000-0000000000.tif
29/10/2020 15:29:36 | Working on tile 28S
29/10/2020 15:29:43 | 12 files to process
	29/10/2020 15:29:43 | Working on file S2_percentile_30_UTM_327-0000069888-0000046592.tif
	29/10/2020 15:29:44 | Working on file S2_percentile_30_UTM_327-0000069888-0000023296.tif
	29/10/2020 15:29:45 | Working on file S2_percentile_30_UTM_327-0000069888-0000000000.tif
	29/10/2020 15:29:45 | Working on file S2_percentile_30_UTM_327-0000046592-0000046592.tif
	29/10/2020 15:29:46 | Working on file S2_percentile_30_UTM_327-0000046592-0000023296.tif
	29/10/2020 15:29:47 | Working on file S2_percentile_30_UTM_327-0000046592-0000000000.tif
	29/10/2020 15:29:47 | Working on file S2_percentile_30_UTM_327-0000023296-0000046592.tif
	29/10/2020 15:29:48 | Working on file S2_percentile_30_UTM_327-0000023296-0000023296.tif
	29/10/2020 15:29:49 | Working on file S2_percentile_30_UTM_327-0000023296-0000000000.tif
	29/10/2020 15:29:49 | Working on file S2_percentile_30_UTM_327-0000000000-0000046592.tif
	29/10/2020 15:29:50 | Working on file S2_percentile_30_UTM_327-0000000000-0000023296.tif
	29/10/2020 15:29:51 | Working on file S2_percentile_30_UTM_327-0000000000-0000000000.tif
29/10/2020 15:29:52 | Working on tile 28V
29/10/2020 15:29:58 | 8 files to process
	29/10/2020 15:29:58 | Working on file S2_percentile_30_UTM_147-0000069888-0000023296.tif
	29/10/2020 15:29:59 | Working on file S2_percentile_30_UTM_147-0000069888-0000000000.tif
	29/10/2020 15:30:00 | Working on file S2_percentile_30_UTM_147-0000046592-0000023296.tif
	29/10/2020 15:30:00 | Working on file S2_percentile_30_UTM_147-0000046592-0000000000.tif
	29/10/2020 15:30:01 | Working on file S2_percentile_30_UTM_147-0000023296-0000023296.tif
	29/10/2020 15:30:02 | Working on file S2_percentile_30_UTM_147-0000023296-0000000000.tif
	29/10/2020 15:30:03 | Working on file S2_percentile_30_UTM_147-0000000000-0000023296.tif
	29/10/2020 15:30:04 | Working on file S2_percentile_30_UTM_147-0000000000-0000000000.tif
29/10/2020 15:30:08 | Working on tile 28W
29/10/2020 15:30:14 | 7 files to process
	29/10/2020 15:30:14 | Working on file S2_percentile_30_UTM_87-0000069888-0000023296.tif
	29/10/2020 15:30:14 | Working on file S2_percentile_30_UTM_87-0000069888-0000000000.tif
	29/10/2020 15:30:16 | Working on file S2_percentile_30_UTM_87-0000046592-0000023296.tif
	29/10/2020 15:30:19 | Working on file S2_percentile_30_UTM_87-0000046592-0000000000.tif
	29/10/2020 15:30:24 | Working on file S2_percentile_30_UTM_87-0000023296-0000000000.tif
	29/10/2020 15:30:24 | Working on file S2_percentile_30_UTM_87-0000000000-0000023296.tif
	29/10/2020 15:30:25 | Working on file S2_percentile_30_UTM_87-0000000000-0000000000.tif
29/10/2020 15:30:26 | Working on tile 28X
	28X_UTM.vrt contains no GeoTIFF, attempting 28X.vrt
29/10/2020 15:30:28 | 8 files to process
	29/10/2020 15:30:28 | Working on file S2_percentile_30_UTM_30-0000116480-0000023296.tif
	29/10/2020 15:30:29 | Working on file S2_percentile_30_UTM_30-0000116480-0000000000.tif
	29/10/2020 15:30:30 | Working on file S2_percentile_30_UTM_30-0000093184-0000023296.tif
	29/10/2020 15:30:30 | Working on file S2_percentile_30_UTM_30-0000093184-0000000000.tif
	29/10/2020 15:30:31 | Working on file S2_percentile_30_UTM_30-0000069888-0000000000.tif
	29/10/2020 15:30:32 | Working on file S2_percentile_30_UTM_30-0000046592-0000000000.tif
	29/10/2020 15:30:33 | Working on file S2_percentile_30_UTM_30-0000023296-0000000000.tif
	29/10/2020 15:30:34 | Working on file S2_percentile_30_UTM_30-0000000000-0000000000.tif
29/10/2020 15:30:35 | Working on tile 29G
29/10/2020 15:30:47 | 9 files to process
	29/10/2020 15:30:47 | Working on file S2_percentile_30_UTM_928-0000046592-0000046592.tif
	29/10/2020 15:30:48 | Working on file S2_percentile_30_UTM_928-0000046592-0000023296.tif
	29/10/2020 15:30:49 | Working on file S2_percentile_30_UTM_928-0000046592-0000000000.tif
	29/10/2020 15:30:50 | Working on file S2_percentile_30_UTM_928-0000023296-0000046592.tif
	29/10/2020 15:30:50 | Working on file S2_percentile_30_UTM_928-0000023296-0000023296.tif
	29/10/2020 15:30:52 | Working on file S2_percentile_30_UTM_928-0000023296-0000000000.tif
	29/10/2020 15:30:53 | Working on file S2_percentile_30_UTM_928-0000000000-0000046592.tif
	29/10/2020 15:30:53 | Working on file S2_percentile_30_UTM_928-0000000000-0000023296.tif
	29/10/2020 15:30:54 | Working on file S2_percentile_30_UTM_928-0000000000-0000000000.tif
29/10/2020 15:30:55 | Working on tile 29N
29/10/2020 15:31:02 | 8 files to process
	29/10/2020 15:31:02 | Working on file S2_percentile_30_UTM_568-0000046592-0000046592.tif
	29/10/2020 15:31:03 | Working on file S2_percentile_30_UTM_568-0000046592-0000023296.tif
	29/10/2020 15:31:03 | Working on file S2_percentile_30_UTM_568-0000023296-0000046592.tif
	29/10/2020 15:31:04 | Working on file S2_percentile_30_UTM_568-0000023296-0000023296.tif
	29/10/2020 15:31:05 | Working on file S2_percentile_30_UTM_568-0000023296-0000000000.tif
	29/10/2020 15:31:06 | Working on file S2_percentile_30_UTM_568-0000000000-0000046592.tif
	29/10/2020 15:31:06 | Working on file S2_percentile_30_UTM_568-0000000000-0000023296.tif
	29/10/2020 15:31:07 | Working on file S2_percentile_30_UTM_568-0000000000-0000000000.tif
29/10/2020 15:31:08 | Working on tile 29P
29/10/2020 15:31:21 | 12 files to process
	29/10/2020 15:31:21 | Working on file S2_percentile_UTM_508-0000069888-0000046592.tif
	29/10/2020 15:31:22 | Working on file S2_percentile_UTM_508-0000069888-0000023296.tif
	29/10/2020 15:31:23 | Working on file S2_percentile_UTM_508-0000069888-0000000000.tif
	29/10/2020 15:31:24 | Working on file S2_percentile_UTM_508-0000046592-0000046592.tif
	29/10/2020 15:31:24 | Working on file S2_percentile_UTM_508-0000046592-0000023296.tif
	29/10/2020 15:31:25 | Working on file S2_percentile_UTM_508-0000046592-0000000000.tif
	29/10/2020 15:31:26 | Working on file S2_percentile_UTM_508-0000023296-0000046592.tif
	29/10/2020 15:31:26 | Working on file S2_percentile_UTM_508-0000023296-0000023296.tif
	29/10/2020 15:31:27 | Working on file S2_percentile_UTM_508-0000023296-0000000000.tif
	29/10/2020 15:31:28 | Working on file S2_percentile_UTM_508-0000000000-0000046592.tif
	29/10/2020 15:31:29 | Working on file S2_percentile_UTM_508-0000000000-0000023296.tif
	29/10/2020 15:31:30 | Working on file S2_percentile_UTM_508-0000000000-0000000000.tif
29/10/2020 15:31:32 | Working on tile 29Q
29/10/2020 15:31:40 | 12 files to process
	29/10/2020 15:31:40 | Working on file S2_percentile_UTM_448-0000069888-0000046592.tif
	29/10/2020 15:31:40 | Working on file S2_percentile_UTM_448-0000069888-0000023296.tif
	29/10/2020 15:31:41 | Working on file S2_percentile_UTM_448-0000069888-0000000000.tif
	29/10/2020 15:31:42 | Working on file S2_percentile_UTM_448-0000046592-0000046592.tif
	29/10/2020 15:31:42 | Working on file S2_percentile_UTM_448-0000046592-0000023296.tif
	29/10/2020 15:31:43 | Working on file S2_percentile_UTM_448-0000046592-0000000000.tif
	29/10/2020 15:31:43 | Working on file S2_percentile_UTM_448-0000023296-0000046592.tif
	29/10/2020 15:31:44 | Working on file S2_percentile_UTM_448-0000023296-0000023296.tif
	29/10/2020 15:31:45 | Working on file S2_percentile_UTM_448-0000023296-0000000000.tif
	29/10/2020 15:31:46 | Working on file S2_percentile_UTM_448-0000000000-0000046592.tif
	29/10/2020 15:31:47 | Working on file S2_percentile_UTM_448-0000000000-0000023296.tif
	29/10/2020 15:31:48 | Working on file S2_percentile_UTM_448-0000000000-0000000000.tif
29/10/2020 15:31:48 | Working on tile 29R
29/10/2020 15:31:54 | 12 files to process
	29/10/2020 15:31:54 | Working on file S2_percentile_UTM_388-0000069888-0000046592.tif
	29/10/2020 15:31:55 | Working on file S2_percentile_UTM_388-0000069888-0000023296.tif
	29/10/2020 15:31:56 | Working on file S2_percentile_UTM_388-0000069888-0000000000.tif
	29/10/2020 15:31:57 | Working on file S2_percentile_UTM_388-0000046592-0000046592.tif
	29/10/2020 15:31:57 | Working on file S2_percentile_UTM_388-0000046592-0000023296.tif
	29/10/2020 15:31:58 | Working on file S2_percentile_UTM_388-0000046592-0000000000.tif
	29/10/2020 15:31:59 | Working on file S2_percentile_UTM_388-0000023296-0000046592.tif
	29/10/2020 15:32:00 | Working on file S2_percentile_UTM_388-0000023296-0000023296.tif
	29/10/2020 15:32:00 | Working on file S2_percentile_UTM_388-0000023296-0000000000.tif
	29/10/2020 15:32:01 | Working on file S2_percentile_UTM_388-0000000000-0000046592.tif
	29/10/2020 15:32:02 | Working on file S2_percentile_UTM_388-0000000000-0000023296.tif
	29/10/2020 15:32:03 | Working on file S2_percentile_UTM_388-0000000000-0000000000.tif
29/10/2020 15:32:04 | Working on tile 29S
29/10/2020 15:32:12 | 12 files to process
	29/10/2020 15:32:12 | Working on file S2_percentile_UTM_328-0000069888-0000046592.tif
	29/10/2020 15:32:13 | Working on file S2_percentile_UTM_328-0000069888-0000023296.tif
	29/10/2020 15:32:14 | Working on file S2_percentile_UTM_328-0000069888-0000000000.tif
	29/10/2020 15:32:15 | Working on file S2_percentile_UTM_328-0000046592-0000046592.tif
	29/10/2020 15:32:15 | Working on file S2_percentile_UTM_328-0000046592-0000023296.tif
	29/10/2020 15:32:16 | Working on file S2_percentile_UTM_328-0000046592-0000000000.tif
	29/10/2020 15:32:17 | Working on file S2_percentile_UTM_328-0000023296-0000046592.tif
	29/10/2020 15:32:18 | Working on file S2_percentile_UTM_328-0000023296-0000023296.tif
	29/10/2020 15:32:19 | Working on file S2_percentile_UTM_328-0000023296-0000000000.tif
	29/10/2020 15:32:20 | Working on file S2_percentile_UTM_328-0000000000-0000046592.tif
	29/10/2020 15:32:21 | Working on file S2_percentile_UTM_328-0000000000-0000023296.tif
	29/10/2020 15:32:22 | Working on file S2_percentile_UTM_328-0000000000-0000000000.tif
29/10/2020 15:32:23 | Working on tile 29T
29/10/2020 15:32:40 | 12 files to process
	29/10/2020 15:32:40 | Working on file S2_percentile_UTM_268-0000069888-0000046592.tif
	29/10/2020 15:32:41 | Working on file S2_percentile_UTM_268-0000069888-0000023296.tif
	29/10/2020 15:32:42 | Working on file S2_percentile_UTM_268-0000069888-0000000000.tif
	29/10/2020 15:32:42 | Working on file S2_percentile_UTM_268-0000046592-0000046592.tif
	29/10/2020 15:32:43 | Working on file S2_percentile_UTM_268-0000046592-0000023296.tif
	29/10/2020 15:32:43 | Working on file S2_percentile_UTM_268-0000046592-0000000000.tif
	29/10/2020 15:32:44 | Working on file S2_percentile_UTM_268-0000023296-0000046592.tif
	29/10/2020 15:32:45 | Working on file S2_percentile_UTM_268-0000023296-0000023296.tif
	29/10/2020 15:32:47 | Working on file S2_percentile_UTM_268-0000023296-0000000000.tif
	29/10/2020 15:32:50 | Working on file S2_percentile_UTM_268-0000000000-0000046592.tif
	29/10/2020 15:32:51 | Working on file S2_percentile_UTM_268-0000000000-0000023296.tif
	29/10/2020 15:32:53 | Working on file S2_percentile_UTM_268-0000000000-0000000000.tif
29/10/2020 15:32:54 | Working on tile 29U
29/10/2020 15:33:05 | 8 files to process
	29/10/2020 15:33:05 | Working on file S2_percentile_UTM_208-0000069888-0000023296.tif
	29/10/2020 15:33:06 | Working on file S2_percentile_UTM_208-0000069888-0000000000.tif
	29/10/2020 15:33:07 | Working on file S2_percentile_UTM_208-0000046592-0000023296.tif
	29/10/2020 15:33:07 | Working on file S2_percentile_UTM_208-0000046592-0000000000.tif
	29/10/2020 15:33:08 | Working on file S2_percentile_UTM_208-0000023296-0000023296.tif
	29/10/2020 15:33:09 | Working on file S2_percentile_UTM_208-0000023296-0000000000.tif
	29/10/2020 15:33:10 | Working on file S2_percentile_UTM_208-0000000000-0000023296.tif
	29/10/2020 15:33:10 | Working on file S2_percentile_UTM_208-0000000000-0000000000.tif
29/10/2020 15:33:11 | Working on tile 29V
29/10/2020 15:33:18 | 8 files to process
	29/10/2020 15:33:18 | Working on file S2_percentile_UTM_148-0000069888-0000023296.tif
	29/10/2020 15:33:18 | Working on file S2_percentile_UTM_148-0000069888-0000000000.tif
	29/10/2020 15:33:19 | Working on file S2_percentile_UTM_148-0000046592-0000023296.tif
	29/10/2020 15:33:20 | Working on file S2_percentile_UTM_148-0000046592-0000000000.tif
	29/10/2020 15:33:20 | Working on file S2_percentile_UTM_148-0000023296-0000023296.tif
	29/10/2020 15:33:21 | Working on file S2_percentile_UTM_148-0000023296-0000000000.tif
	29/10/2020 15:33:22 | Working on file S2_percentile_UTM_148-0000000000-0000023296.tif
	29/10/2020 15:33:22 | Working on file S2_percentile_UTM_148-0000000000-0000000000.tif
29/10/2020 15:33:23 | Working on tile 29W
29/10/2020 15:33:28 | 6 files to process
	29/10/2020 15:33:28 | Working on file S2_percentile_30_UTM_88-0000069888-0000000000.tif
	29/10/2020 15:33:29 | Working on file S2_percentile_30_UTM_88-0000046592-0000000000.tif
	29/10/2020 15:33:30 | Working on file S2_percentile_30_UTM_88-0000023296-0000023296.tif
	29/10/2020 15:33:30 | Working on file S2_percentile_30_UTM_88-0000023296-0000000000.tif
	29/10/2020 15:33:31 | Working on file S2_percentile_30_UTM_88-0000000000-0000023296.tif
	29/10/2020 15:33:31 | Working on file S2_percentile_30_UTM_88-0000000000-0000000000.tif
29/10/2020 15:33:32 | Working on tile 29X
29/10/2020 15:33:39 | 6 files to process
	29/10/2020 15:33:39 | Working on file S2_percentile_30_UTM_31-0000116480-0000000000.tif
	29/10/2020 15:33:40 | Working on file S2_percentile_30_UTM_31-0000093184-0000000000.tif
	29/10/2020 15:33:41 | Working on file S2_percentile_30_UTM_31-0000069888-0000000000.tif
	29/10/2020 15:33:41 | Working on file S2_percentile_30_UTM_31-0000046592-0000000000.tif
	29/10/2020 15:33:42 | Working on file S2_percentile_30_UTM_31-0000023296-0000000000.tif
	29/10/2020 15:33:42 | Working on file S2_percentile_30_UTM_31-0000000000-0000000000.tif
29/10/2020 15:33:43 | Working on tile 30K
	30K_UTM.vrt contains no GeoTIFF, attempting 30K.vrt
29/10/2020 15:33:45 | 6 files to process
	29/10/2020 15:33:45 | Working on file S2_percentile_30_UTM_749-0000046592-0000023296.tif
	29/10/2020 15:33:46 | Working on file S2_percentile_30_UTM_749-0000046592-0000000000.tif
	29/10/2020 15:33:47 | Working on file S2_percentile_30_UTM_749-0000023296-0000023296.tif
	29/10/2020 15:33:47 | Working on file S2_percentile_30_UTM_749-0000023296-0000000000.tif
	29/10/2020 15:33:48 | Working on file S2_percentile_30_UTM_749-0000000000-0000023296.tif
	29/10/2020 15:33:48 | Working on file S2_percentile_30_UTM_749-0000000000-0000000000.tif
29/10/2020 15:33:49 | Working on tile 30N
29/10/2020 15:33:54 | 9 files to process
	29/10/2020 15:33:54 | Working on file S2_percentile_30_UTM_569-0000046592-0000046592.tif
	29/10/2020 15:33:55 | Working on file S2_percentile_30_UTM_569-0000046592-0000023296.tif
	29/10/2020 15:33:55 | Working on file S2_percentile_30_UTM_569-0000046592-0000000000.tif
	29/10/2020 15:33:56 | Working on file S2_percentile_30_UTM_569-0000023296-0000046592.tif
	29/10/2020 15:33:56 | Working on file S2_percentile_30_UTM_569-0000023296-0000023296.tif
	29/10/2020 15:33:57 | Working on file S2_percentile_30_UTM_569-0000023296-0000000000.tif
	29/10/2020 15:33:57 | Working on file S2_percentile_30_UTM_569-0000000000-0000046592.tif
	29/10/2020 15:33:58 | Working on file S2_percentile_30_UTM_569-0000000000-0000023296.tif
	29/10/2020 15:33:59 | Working on file S2_percentile_30_UTM_569-0000000000-0000000000.tif
29/10/2020 15:33:59 | Working on tile 30P
	30P_UTM.vrt contains no GeoTIFF, attempting 30P.vrt
29/10/2020 15:34:01 | 12 files to process
	29/10/2020 15:34:01 | Working on file S2_percentile_UTM_509-0000069888-0000046592.tif
	29/10/2020 15:34:02 | Working on file S2_percentile_UTM_509-0000069888-0000023296.tif
	29/10/2020 15:34:03 | Working on file S2_percentile_UTM_509-0000069888-0000000000.tif
	29/10/2020 15:34:04 | Working on file S2_percentile_UTM_509-0000046592-0000046592.tif
	29/10/2020 15:34:04 | Working on file S2_percentile_UTM_509-0000046592-0000023296.tif
	29/10/2020 15:34:05 | Working on file S2_percentile_UTM_509-0000046592-0000000000.tif
	29/10/2020 15:34:06 | Working on file S2_percentile_UTM_509-0000023296-0000046592.tif
	29/10/2020 15:34:07 | Working on file S2_percentile_UTM_509-0000023296-0000023296.tif
	29/10/2020 15:34:08 | Working on file S2_percentile_UTM_509-0000023296-0000000000.tif
	29/10/2020 15:34:08 | Working on file S2_percentile_UTM_509-0000000000-0000046592.tif
	29/10/2020 15:34:09 | Working on file S2_percentile_UTM_509-0000000000-0000023296.tif
	29/10/2020 15:34:10 | Working on file S2_percentile_UTM_509-0000000000-0000000000.tif
29/10/2020 15:34:11 | Working on tile 30Q
	30Q_UTM.vrt contains no GeoTIFF, attempting 30Q.vrt
29/10/2020 15:34:13 | 12 files to process
	29/10/2020 15:34:13 | Working on file S2_percentile_UTM_449-0000069888-0000046592.tif
	29/10/2020 15:34:15 | Working on file S2_percentile_UTM_449-0000069888-0000023296.tif
	29/10/2020 15:34:15 | Working on file S2_percentile_UTM_449-0000069888-0000000000.tif
	29/10/2020 15:34:17 | Working on file S2_percentile_UTM_449-0000046592-0000046592.tif
	29/10/2020 15:34:17 | Working on file S2_percentile_UTM_449-0000046592-0000023296.tif
	29/10/2020 15:34:20 | Working on file S2_percentile_UTM_449-0000046592-0000000000.tif
	29/10/2020 15:34:20 | Working on file S2_percentile_UTM_449-0000023296-0000046592.tif
	29/10/2020 15:34:21 | Working on file S2_percentile_UTM_449-0000023296-0000023296.tif
	29/10/2020 15:34:22 | Working on file S2_percentile_UTM_449-0000023296-0000000000.tif
	29/10/2020 15:34:23 | Working on file S2_percentile_UTM_449-0000000000-0000046592.tif
	29/10/2020 15:34:23 | Working on file S2_percentile_UTM_449-0000000000-0000023296.tif
	29/10/2020 15:34:24 | Working on file S2_percentile_UTM_449-0000000000-0000000000.tif
29/10/2020 15:34:25 | Working on tile 30R
	30R_UTM.vrt contains no GeoTIFF, attempting 30R.vrt
29/10/2020 15:34:27 | 12 files to process
	29/10/2020 15:34:27 | Working on file S2_percentile_UTM_389-0000069888-0000046592.tif
	29/10/2020 15:34:28 | Working on file S2_percentile_UTM_389-0000069888-0000023296.tif
	29/10/2020 15:34:29 | Working on file S2_percentile_UTM_389-0000069888-0000000000.tif
	29/10/2020 15:34:29 | Working on file S2_percentile_UTM_389-0000046592-0000046592.tif
	29/10/2020 15:34:30 | Working on file S2_percentile_UTM_389-0000046592-0000023296.tif
	29/10/2020 15:34:30 | Working on file S2_percentile_UTM_389-0000046592-0000000000.tif
	29/10/2020 15:34:31 | Working on file S2_percentile_UTM_389-0000023296-0000046592.tif
	29/10/2020 15:34:31 | Working on file S2_percentile_UTM_389-0000023296-0000023296.tif
	29/10/2020 15:34:32 | Working on file S2_percentile_UTM_389-0000023296-0000000000.tif
	29/10/2020 15:34:32 | Working on file S2_percentile_UTM_389-0000000000-0000046592.tif
	29/10/2020 15:34:33 | Working on file S2_percentile_UTM_389-0000000000-0000023296.tif
	29/10/2020 15:34:34 | Working on file S2_percentile_UTM_389-0000000000-0000000000.tif
29/10/2020 15:34:34 | Working on tile 30S
29/10/2020 15:34:39 | 12 files to process
	29/10/2020 15:34:39 | Working on file S2_percentile_UTM_329-0000069888-0000046592.tif
	29/10/2020 15:34:40 | Working on file S2_percentile_UTM_329-0000069888-0000023296.tif
	29/10/2020 15:34:41 | Working on file S2_percentile_UTM_329-0000069888-0000000000.tif
	29/10/2020 15:34:41 | Working on file S2_percentile_UTM_329-0000046592-0000046592.tif
	29/10/2020 15:34:42 | Working on file S2_percentile_UTM_329-0000046592-0000023296.tif
	29/10/2020 15:34:42 | Working on file S2_percentile_UTM_329-0000046592-0000000000.tif
	29/10/2020 15:34:43 | Working on file S2_percentile_UTM_329-0000023296-0000046592.tif
	29/10/2020 15:34:43 | Working on file S2_percentile_UTM_329-0000023296-0000023296.tif
	29/10/2020 15:34:44 | Working on file S2_percentile_UTM_329-0000023296-0000000000.tif
	29/10/2020 15:34:45 | Working on file S2_percentile_UTM_329-0000000000-0000046592.tif
	29/10/2020 15:34:45 | Working on file S2_percentile_UTM_329-0000000000-0000023296.tif
	29/10/2020 15:34:46 | Working on file S2_percentile_UTM_329-0000000000-0000000000.tif
29/10/2020 15:34:47 | Working on tile 30T
29/10/2020 15:34:52 | 12 files to process
	29/10/2020 15:34:52 | Working on file S2_percentile_UTM_269-0000069888-0000046592.tif
	29/10/2020 15:34:52 | Working on file S2_percentile_UTM_269-0000069888-0000023296.tif
	29/10/2020 15:34:53 | Working on file S2_percentile_UTM_269-0000069888-0000000000.tif
	29/10/2020 15:34:53 | Working on file S2_percentile_UTM_269-0000046592-0000046592.tif
	29/10/2020 15:34:54 | Working on file S2_percentile_UTM_269-0000046592-0000023296.tif
	29/10/2020 15:34:54 | Working on file S2_percentile_UTM_269-0000046592-0000000000.tif
	29/10/2020 15:34:55 | Working on file S2_percentile_UTM_269-0000023296-0000046592.tif
	29/10/2020 15:34:56 | Working on file S2_percentile_UTM_269-0000023296-0000023296.tif
	29/10/2020 15:34:56 | Working on file S2_percentile_UTM_269-0000023296-0000000000.tif
	29/10/2020 15:34:57 | Working on file S2_percentile_UTM_269-0000000000-0000046592.tif
	29/10/2020 15:34:57 | Working on file S2_percentile_UTM_269-0000000000-0000023296.tif
	29/10/2020 15:34:58 | Working on file S2_percentile_UTM_269-0000000000-0000000000.tif
29/10/2020 15:34:58 | Working on tile 30U
29/10/2020 15:35:03 | 8 files to process
	29/10/2020 15:35:03 | Working on file S2_percentile_UTM_209-0000069888-0000023296.tif
	29/10/2020 15:35:04 | Working on file S2_percentile_UTM_209-0000069888-0000000000.tif
	29/10/2020 15:35:05 | Working on file S2_percentile_UTM_209-0000046592-0000023296.tif
	29/10/2020 15:35:05 | Working on file S2_percentile_UTM_209-0000046592-0000000000.tif
	29/10/2020 15:35:06 | Working on file S2_percentile_UTM_209-0000023296-0000023296.tif
	29/10/2020 15:35:06 | Working on file S2_percentile_UTM_209-0000023296-0000000000.tif
	29/10/2020 15:35:07 | Working on file S2_percentile_UTM_209-0000000000-0000023296.tif
	29/10/2020 15:35:07 | Working on file S2_percentile_UTM_209-0000000000-0000000000.tif
29/10/2020 15:35:08 | Working on tile 30V
29/10/2020 15:35:13 | 8 files to process
	29/10/2020 15:35:13 | Working on file S2_percentile_UTM_149-0000069888-0000023296.tif
	29/10/2020 15:35:14 | Working on file S2_percentile_UTM_149-0000069888-0000000000.tif
	29/10/2020 15:35:14 | Working on file S2_percentile_UTM_149-0000046592-0000023296.tif
	29/10/2020 15:35:15 | Working on file S2_percentile_UTM_149-0000046592-0000000000.tif
	29/10/2020 15:35:16 | Working on file S2_percentile_UTM_149-0000023296-0000023296.tif
	29/10/2020 15:35:16 | Working on file S2_percentile_UTM_149-0000023296-0000000000.tif
	29/10/2020 15:35:17 | Working on file S2_percentile_UTM_149-0000000000-0000023296.tif
	29/10/2020 15:35:17 | Working on file S2_percentile_UTM_149-0000000000-0000000000.tif
29/10/2020 15:35:18 | Working on tile 31F
29/10/2020 15:35:22 | 4 files to process
	29/10/2020 15:35:22 | Working on file S2_percentile_30_UTM_990-0000069888-0000023296.tif
	29/10/2020 15:35:23 | Working on file S2_percentile_30_UTM_990-0000069888-0000000000.tif
	29/10/2020 15:35:24 | Working on file S2_percentile_30_UTM_990-0000046592-0000023296.tif
	29/10/2020 15:35:24 | Working on file S2_percentile_30_UTM_990-0000046592-0000000000.tif
29/10/2020 15:35:25 | Working on tile 31N
	31N_UTM.vrt contains no GeoTIFF, attempting 31N.vrt
29/10/2020 15:35:27 | 11 files to process
	29/10/2020 15:35:27 | Working on file S2_percentile_30_UTM_570-0000069888-0000046592.tif
	29/10/2020 15:35:28 | Working on file S2_percentile_30_UTM_570-0000069888-0000023296.tif
	29/10/2020 15:35:29 | Working on file S2_percentile_30_UTM_570-0000046592-0000046592.tif
	29/10/2020 15:35:29 | Working on file S2_percentile_30_UTM_570-0000046592-0000023296.tif
	29/10/2020 15:35:30 | Working on file S2_percentile_30_UTM_570-0000046592-0000000000.tif
	29/10/2020 15:35:30 | Working on file S2_percentile_30_UTM_570-0000023296-0000046592.tif
	29/10/2020 15:35:31 | Working on file S2_percentile_30_UTM_570-0000023296-0000023296.tif
	29/10/2020 15:35:32 | Working on file S2_percentile_30_UTM_570-0000023296-0000000000.tif
	29/10/2020 15:35:33 | Working on file S2_percentile_30_UTM_570-0000000000-0000046592.tif
	29/10/2020 15:35:33 | Working on file S2_percentile_30_UTM_570-0000000000-0000023296.tif
	29/10/2020 15:35:34 | Working on file S2_percentile_30_UTM_570-0000000000-0000000000.tif
29/10/2020 15:35:34 | Working on tile 31P
	31P_UTM.vrt contains no GeoTIFF, attempting 31P.vrt
29/10/2020 15:35:37 | 12 files to process
	29/10/2020 15:35:37 | Working on file S2_percentile_UTM_510-0000069888-0000046592.tif
	29/10/2020 15:35:37 | Working on file S2_percentile_UTM_510-0000069888-0000023296.tif
	29/10/2020 15:35:38 | Working on file S2_percentile_UTM_510-0000069888-0000000000.tif
	29/10/2020 15:35:39 | Working on file S2_percentile_UTM_510-0000046592-0000046592.tif
	29/10/2020 15:35:39 | Working on file S2_percentile_UTM_510-0000046592-0000023296.tif
	29/10/2020 15:35:40 | Working on file S2_percentile_UTM_510-0000046592-0000000000.tif
	29/10/2020 15:35:40 | Working on file S2_percentile_UTM_510-0000023296-0000046592.tif
	29/10/2020 15:35:41 | Working on file S2_percentile_UTM_510-0000023296-0000023296.tif
	29/10/2020 15:35:41 | Working on file S2_percentile_UTM_510-0000023296-0000000000.tif
	29/10/2020 15:35:42 | Working on file S2_percentile_UTM_510-0000000000-0000046592.tif
	29/10/2020 15:35:43 | Working on file S2_percentile_UTM_510-0000000000-0000023296.tif
	29/10/2020 15:35:43 | Working on file S2_percentile_UTM_510-0000000000-0000000000.tif
29/10/2020 15:35:45 | Working on tile 31Q
	31Q_UTM.vrt contains no GeoTIFF, attempting 31Q.vrt
29/10/2020 15:35:48 | 12 files to process
	29/10/2020 15:35:48 | Working on file S2_percentile_30_UTM_450-0000069888-0000046592.tif
	29/10/2020 15:35:49 | Working on file S2_percentile_30_UTM_450-0000069888-0000023296.tif
	29/10/2020 15:35:50 | Working on file S2_percentile_30_UTM_450-0000069888-0000000000.tif
	29/10/2020 15:35:51 | Working on file S2_percentile_30_UTM_450-0000046592-0000046592.tif
	29/10/2020 15:35:52 | Working on file S2_percentile_30_UTM_450-0000046592-0000023296.tif
	29/10/2020 15:35:53 | Working on file S2_percentile_30_UTM_450-0000046592-0000000000.tif
	29/10/2020 15:35:53 | Working on file S2_percentile_30_UTM_450-0000023296-0000046592.tif
	29/10/2020 15:35:54 | Working on file S2_percentile_30_UTM_450-0000023296-0000023296.tif
	29/10/2020 15:35:54 | Working on file S2_percentile_30_UTM_450-0000023296-0000000000.tif
	29/10/2020 15:35:56 | Working on file S2_percentile_30_UTM_450-0000000000-0000046592.tif
	29/10/2020 15:35:56 | Working on file S2_percentile_30_UTM_450-0000000000-0000023296.tif
	29/10/2020 15:35:57 | Working on file S2_percentile_30_UTM_450-0000000000-0000000000.tif
29/10/2020 15:35:58 | Working on tile 31R
29/10/2020 15:36:04 | 12 files to process
	29/10/2020 15:36:04 | Working on file S2_percentile_UTM_390-0000069888-0000046592.tif
	29/10/2020 15:36:04 | Working on file S2_percentile_UTM_390-0000069888-0000023296.tif
	29/10/2020 15:36:05 | Working on file S2_percentile_UTM_390-0000069888-0000000000.tif
	29/10/2020 15:36:06 | Working on file S2_percentile_UTM_390-0000046592-0000046592.tif
	29/10/2020 15:36:06 | Working on file S2_percentile_UTM_390-0000046592-0000023296.tif
	29/10/2020 15:36:07 | Working on file S2_percentile_UTM_390-0000046592-0000000000.tif
	29/10/2020 15:36:08 | Working on file S2_percentile_UTM_390-0000023296-0000046592.tif
	29/10/2020 15:36:08 | Working on file S2_percentile_UTM_390-0000023296-0000023296.tif
	29/10/2020 15:36:09 | Working on file S2_percentile_UTM_390-0000023296-0000000000.tif
	29/10/2020 15:36:10 | Working on file S2_percentile_UTM_390-0000000000-0000046592.tif
	29/10/2020 15:36:10 | Working on file S2_percentile_UTM_390-0000000000-0000023296.tif
	29/10/2020 15:36:11 | Working on file S2_percentile_UTM_390-0000000000-0000000000.tif
29/10/2020 15:36:11 | Working on tile 31S
	31S_UTM.vrt contains no GeoTIFF, attempting 31S.vrt
29/10/2020 15:36:13 | 12 files to process
	29/10/2020 15:36:13 | Working on file S2_percentile_UTM_330-0000069888-0000046592.tif
	29/10/2020 15:36:14 | Working on file S2_percentile_UTM_330-0000069888-0000023296.tif
	29/10/2020 15:36:15 | Working on file S2_percentile_UTM_330-0000069888-0000000000.tif
	29/10/2020 15:36:15 | Working on file S2_percentile_UTM_330-0000046592-0000046592.tif
	29/10/2020 15:36:16 | Working on file S2_percentile_UTM_330-0000046592-0000023296.tif
	29/10/2020 15:36:16 | Working on file S2_percentile_UTM_330-0000046592-0000000000.tif
	29/10/2020 15:36:17 | Working on file S2_percentile_UTM_330-0000023296-0000046592.tif
	29/10/2020 15:36:17 | Working on file S2_percentile_UTM_330-0000023296-0000023296.tif
	29/10/2020 15:36:19 | Working on file S2_percentile_UTM_330-0000023296-0000000000.tif
	29/10/2020 15:36:19 | Working on file S2_percentile_UTM_330-0000000000-0000046592.tif
	29/10/2020 15:36:20 | Working on file S2_percentile_UTM_330-0000000000-0000023296.tif
	29/10/2020 15:36:21 | Working on file S2_percentile_UTM_330-0000000000-0000000000.tif
29/10/2020 15:36:21 | Working on tile 31T
	31T_UTM.vrt contains no GeoTIFF, attempting 31T.vrt
29/10/2020 15:36:24 | 12 files to process
	29/10/2020 15:36:24 | Working on file S2_percentile_UTM_270-0000069888-0000046592.tif
	29/10/2020 15:36:24 | Working on file S2_percentile_UTM_270-0000069888-0000023296.tif
	29/10/2020 15:36:25 | Working on file S2_percentile_UTM_270-0000069888-0000000000.tif
	29/10/2020 15:36:25 | Working on file S2_percentile_UTM_270-0000046592-0000046592.tif
	29/10/2020 15:36:26 | Working on file S2_percentile_UTM_270-0000046592-0000023296.tif
	29/10/2020 15:36:26 | Working on file S2_percentile_UTM_270-0000046592-0000000000.tif
	29/10/2020 15:36:27 | Working on file S2_percentile_UTM_270-0000023296-0000046592.tif
	29/10/2020 15:36:28 | Working on file S2_percentile_UTM_270-0000023296-0000023296.tif
	29/10/2020 15:36:29 | Working on file S2_percentile_UTM_270-0000023296-0000000000.tif
	29/10/2020 15:36:30 | Working on file S2_percentile_UTM_270-0000000000-0000046592.tif
	29/10/2020 15:36:31 | Working on file S2_percentile_UTM_270-0000000000-0000023296.tif
	29/10/2020 15:36:31 | Working on file S2_percentile_UTM_270-0000000000-0000000000.tif
29/10/2020 15:36:32 | Working on tile 31U
29/10/2020 15:36:39 | 8 files to process
	29/10/2020 15:36:39 | Working on file S2_percentile_UTM_210-0000069888-0000023296.tif
	29/10/2020 15:36:40 | Working on file S2_percentile_UTM_210-0000069888-0000000000.tif
	29/10/2020 15:36:40 | Working on file S2_percentile_UTM_210-0000046592-0000023296.tif
	29/10/2020 15:36:41 | Working on file S2_percentile_UTM_210-0000046592-0000000000.tif
	29/10/2020 15:36:42 | Working on file S2_percentile_UTM_210-0000023296-0000023296.tif
	29/10/2020 15:36:42 | Working on file S2_percentile_UTM_210-0000023296-0000000000.tif
	29/10/2020 15:36:43 | Working on file S2_percentile_UTM_210-0000000000-0000023296.tif
	29/10/2020 15:36:43 | Working on file S2_percentile_UTM_210-0000000000-0000000000.tif
29/10/2020 15:36:45 | Working on tile 31V
29/10/2020 15:36:50 | 4 files to process
	29/10/2020 15:36:50 | Working on file S2_percentile_30_UTM_150-0000069888-0000000000.tif
	29/10/2020 15:36:51 | Working on file S2_percentile_30_UTM_150-0000046592-0000000000.tif
	29/10/2020 15:36:51 | Working on file S2_percentile_30_UTM_150-0000023296-0000000000.tif
	29/10/2020 15:36:52 | Working on file S2_percentile_30_UTM_150-0000000000-0000000000.tif
29/10/2020 15:36:53 | Working on tile 31W
29/10/2020 15:36:57 | 6 files to process
	29/10/2020 15:36:57 | Working on file S2_percentile_30_UTM_90-0000069888-0000023296.tif
	29/10/2020 15:36:58 | Working on file S2_percentile_30_UTM_90-0000069888-0000000000.tif
	29/10/2020 15:36:58 | Working on file S2_percentile_30_UTM_90-0000046592-0000023296.tif
	29/10/2020 15:36:59 | Working on file S2_percentile_30_UTM_90-0000046592-0000000000.tif
	29/10/2020 15:36:59 | Working on file S2_percentile_30_UTM_90-0000023296-0000023296.tif
	29/10/2020 15:37:00 | Working on file S2_percentile_30_UTM_90-0000023296-0000000000.tif
29/10/2020 15:37:01 | Working on tile 32K
29/10/2020 15:37:06 | 6 files to process
	29/10/2020 15:37:06 | Working on file S2_percentile_30_UTM_751-0000069888-0000046592.tif
	29/10/2020 15:37:07 | Working on file S2_percentile_30_UTM_751-0000046592-0000046592.tif
	29/10/2020 15:37:08 | Working on file S2_percentile_30_UTM_751-0000023296-0000046592.tif
	29/10/2020 15:37:08 | Working on file S2_percentile_30_UTM_751-0000023296-0000023296.tif
	29/10/2020 15:37:09 | Working on file S2_percentile_30_UTM_751-0000000000-0000046592.tif
	29/10/2020 15:37:10 | Working on file S2_percentile_30_UTM_751-0000000000-0000023296.tif
29/10/2020 15:37:10 | Working on tile 32L
29/10/2020 15:37:16 | 5 files to process
	29/10/2020 15:37:16 | Working on file S2_percentile_30_UTM_691-0000069888-0000046592.tif
	29/10/2020 15:37:16 | Working on file S2_percentile_30_UTM_691-0000069888-0000023296.tif
	29/10/2020 15:37:17 | Working on file S2_percentile_30_UTM_691-0000046592-0000046592.tif
	29/10/2020 15:37:17 | Working on file S2_percentile_30_UTM_691-0000023296-0000046592.tif
	29/10/2020 15:37:18 | Working on file S2_percentile_30_UTM_691-0000000000-0000046592.tif
29/10/2020 15:37:19 | Working on tile 32M
29/10/2020 15:37:23 | 12 files to process
	29/10/2020 15:37:23 | Working on file S2_percentile_30_UTM_631-0000000000-0000000000.tif
	29/10/2020 15:37:24 | Working on file S2_percentile_30_UTM_631-0000000000-0000023296.tif
	29/10/2020 15:37:25 | Working on file S2_percentile_30_UTM_631-0000000000-0000046592.tif
	29/10/2020 15:37:25 | Working on file S2_percentile_30_UTM_631-0000023296-0000000000.tif
	29/10/2020 15:37:26 | Working on file S2_percentile_30_UTM_631-0000023296-0000023296.tif
	29/10/2020 15:37:26 | Working on file S2_percentile_30_UTM_631-0000023296-0000046592.tif
	29/10/2020 15:37:27 | Working on file S2_percentile_30_UTM_631-0000046592-0000000000.tif
	29/10/2020 15:37:28 | Working on file S2_percentile_30_UTM_631-0000046592-0000023296.tif
	29/10/2020 15:37:28 | Working on file S2_percentile_30_UTM_631-0000046592-0000046592.tif
	29/10/2020 15:37:29 | Working on file S2_percentile_30_UTM_631-0000069888-0000000000.tif
	29/10/2020 15:37:29 | Working on file S2_percentile_30_UTM_631-0000069888-0000023296.tif
	29/10/2020 15:37:30 | Working on file S2_percentile_30_UTM_631-0000069888-0000046592.tif
29/10/2020 15:37:30 | Working on tile 32N
29/10/2020 15:37:35 | 12 files to process
	29/10/2020 15:37:35 | Working on file S2_percentile_30_UTM_571-0000069888-0000046592.tif
	29/10/2020 15:37:36 | Working on file S2_percentile_30_UTM_571-0000069888-0000023296.tif
	29/10/2020 15:37:37 | Working on file S2_percentile_30_UTM_571-0000069888-0000000000.tif
	29/10/2020 15:37:37 | Working on file S2_percentile_30_UTM_571-0000046592-0000046592.tif
	29/10/2020 15:37:38 | Working on file S2_percentile_30_UTM_571-0000046592-0000023296.tif
	29/10/2020 15:37:38 | Working on file S2_percentile_30_UTM_571-0000046592-0000000000.tif
	29/10/2020 15:37:39 | Working on file S2_percentile_30_UTM_571-0000023296-0000046592.tif
	29/10/2020 15:37:40 | Working on file S2_percentile_30_UTM_571-0000023296-0000023296.tif
	29/10/2020 15:37:40 | Working on file S2_percentile_30_UTM_571-0000023296-0000000000.tif
	29/10/2020 15:37:41 | Working on file S2_percentile_30_UTM_571-0000000000-0000046592.tif
	29/10/2020 15:37:42 | Working on file S2_percentile_30_UTM_571-0000000000-0000023296.tif
	29/10/2020 15:37:42 | Working on file S2_percentile_30_UTM_571-0000000000-0000000000.tif
29/10/2020 15:37:43 | Working on tile 32P
	32P_UTM.vrt contains no GeoTIFF, attempting 32P.vrt
29/10/2020 15:37:45 | 12 files to process
	29/10/2020 15:37:45 | Working on file S2_percentile_UTM_511-0000069888-0000046592.tif
	29/10/2020 15:37:46 | Working on file S2_percentile_UTM_511-0000069888-0000023296.tif
	29/10/2020 15:37:46 | Working on file S2_percentile_UTM_511-0000069888-0000000000.tif
	29/10/2020 15:37:47 | Working on file S2_percentile_UTM_511-0000046592-0000046592.tif
	29/10/2020 15:37:48 | Working on file S2_percentile_UTM_511-0000046592-0000023296.tif
	29/10/2020 15:37:48 | Working on file S2_percentile_UTM_511-0000046592-0000000000.tif
	29/10/2020 15:37:49 | Working on file S2_percentile_UTM_511-0000023296-0000046592.tif
	29/10/2020 15:37:49 | Working on file S2_percentile_UTM_511-0000023296-0000023296.tif
	29/10/2020 15:37:50 | Working on file S2_percentile_UTM_511-0000023296-0000000000.tif
	29/10/2020 15:37:50 | Working on file S2_percentile_UTM_511-0000000000-0000046592.tif
	29/10/2020 15:37:51 | Working on file S2_percentile_UTM_511-0000000000-0000023296.tif
	29/10/2020 15:37:51 | Working on file S2_percentile_UTM_511-0000000000-0000000000.tif
29/10/2020 15:37:52 | Working on tile 32Q
29/10/2020 15:37:57 | 12 files to process
	29/10/2020 15:37:57 | Working on file S2_percentile_UTM_451-0000069888-0000046592.tif
	29/10/2020 15:37:58 | Working on file S2_percentile_UTM_451-0000069888-0000023296.tif
	29/10/2020 15:37:58 | Working on file S2_percentile_UTM_451-0000069888-0000000000.tif
	29/10/2020 15:37:59 | Working on file S2_percentile_UTM_451-0000046592-0000046592.tif
	29/10/2020 15:37:59 | Working on file S2_percentile_UTM_451-0000046592-0000023296.tif
	29/10/2020 15:38:00 | Working on file S2_percentile_UTM_451-0000046592-0000000000.tif
	29/10/2020 15:38:00 | Working on file S2_percentile_UTM_451-0000023296-0000046592.tif
	29/10/2020 15:38:01 | Working on file S2_percentile_UTM_451-0000023296-0000023296.tif
	29/10/2020 15:38:02 | Working on file S2_percentile_UTM_451-0000023296-0000000000.tif
	29/10/2020 15:38:02 | Working on file S2_percentile_UTM_451-0000000000-0000046592.tif
	29/10/2020 15:38:03 | Working on file S2_percentile_UTM_451-0000000000-0000023296.tif
	29/10/2020 15:38:03 | Working on file S2_percentile_UTM_451-0000000000-0000000000.tif
29/10/2020 15:38:04 | Working on tile 32R
	32R_UTM.vrt contains no GeoTIFF, attempting 32R.vrt
29/10/2020 15:38:06 | 12 files to process
	29/10/2020 15:38:06 | Working on file S2_percentile_UTM_391-0000069888-0000046592.tif
	29/10/2020 15:38:07 | Working on file S2_percentile_UTM_391-0000069888-0000023296.tif
	29/10/2020 15:38:08 | Working on file S2_percentile_UTM_391-0000069888-0000000000.tif
	29/10/2020 15:38:08 | Working on file S2_percentile_UTM_391-0000046592-0000046592.tif
	29/10/2020 15:38:09 | Working on file S2_percentile_UTM_391-0000046592-0000023296.tif
	29/10/2020 15:38:09 | Working on file S2_percentile_UTM_391-0000046592-0000000000.tif
	29/10/2020 15:38:10 | Working on file S2_percentile_UTM_391-0000023296-0000046592.tif
	29/10/2020 15:38:10 | Working on file S2_percentile_UTM_391-0000023296-0000023296.tif
	29/10/2020 15:38:11 | Working on file S2_percentile_UTM_391-0000023296-0000000000.tif
	29/10/2020 15:38:12 | Working on file S2_percentile_UTM_391-0000000000-0000046592.tif
	29/10/2020 15:38:12 | Working on file S2_percentile_UTM_391-0000000000-0000023296.tif
	29/10/2020 15:38:13 | Working on file S2_percentile_UTM_391-0000000000-0000000000.tif
29/10/2020 15:38:13 | Working on tile 32S
	32S_UTM.vrt contains no GeoTIFF, attempting 32S.vrt
29/10/2020 15:38:16 | 12 files to process
	29/10/2020 15:38:16 | Working on file S2_percentile_UTM_331-0000069888-0000046592.tif
	29/10/2020 15:38:16 | Working on file S2_percentile_UTM_331-0000069888-0000023296.tif
	29/10/2020 15:38:17 | Working on file S2_percentile_UTM_331-0000069888-0000000000.tif
	29/10/2020 15:38:18 | Working on file S2_percentile_UTM_331-0000046592-0000046592.tif
	29/10/2020 15:38:18 | Working on file S2_percentile_UTM_331-0000046592-0000023296.tif
	29/10/2020 15:38:19 | Working on file S2_percentile_UTM_331-0000046592-0000000000.tif
	29/10/2020 15:38:19 | Working on file S2_percentile_UTM_331-0000023296-0000046592.tif
	29/10/2020 15:38:20 | Working on file S2_percentile_UTM_331-0000023296-0000023296.tif
	29/10/2020 15:38:20 | Working on file S2_percentile_UTM_331-0000023296-0000000000.tif
	29/10/2020 15:38:21 | Working on file S2_percentile_UTM_331-0000000000-0000046592.tif
	29/10/2020 15:38:21 | Working on file S2_percentile_UTM_331-0000000000-0000023296.tif
	29/10/2020 15:38:22 | Working on file S2_percentile_UTM_331-0000000000-0000000000.tif
29/10/2020 15:38:23 | Working on tile 32T
29/10/2020 15:38:28 | 12 files to process
	29/10/2020 15:38:28 | Working on file S2_percentile_30_UTM_271-0000069888-0000046592.tif
	29/10/2020 15:38:28 | Working on file S2_percentile_30_UTM_271-0000069888-0000023296.tif
	29/10/2020 15:38:29 | Working on file S2_percentile_30_UTM_271-0000069888-0000000000.tif
	29/10/2020 15:38:30 | Working on file S2_percentile_30_UTM_271-0000046592-0000046592.tif
	29/10/2020 15:38:30 | Working on file S2_percentile_30_UTM_271-0000046592-0000023296.tif
	29/10/2020 15:38:31 | Working on file S2_percentile_30_UTM_271-0000046592-0000000000.tif
	29/10/2020 15:38:32 | Working on file S2_percentile_30_UTM_271-0000023296-0000046592.tif
	29/10/2020 15:38:32 | Working on file S2_percentile_30_UTM_271-0000023296-0000023296.tif
	29/10/2020 15:38:33 | Working on file S2_percentile_30_UTM_271-0000023296-0000000000.tif
	29/10/2020 15:38:33 | Working on file S2_percentile_30_UTM_271-0000000000-0000046592.tif
	29/10/2020 15:38:34 | Working on file S2_percentile_30_UTM_271-0000000000-0000023296.tif
	29/10/2020 15:38:34 | Working on file S2_percentile_30_UTM_271-0000000000-0000000000.tif
29/10/2020 15:38:35 | Working on tile 32U
29/10/2020 15:38:40 | 8 files to process
	29/10/2020 15:38:40 | Working on file S2_percentile_UTM_211-0000069888-0000023296.tif
	29/10/2020 15:38:41 | Working on file S2_percentile_UTM_211-0000069888-0000000000.tif
	29/10/2020 15:38:41 | Working on file S2_percentile_UTM_211-0000046592-0000023296.tif
	29/10/2020 15:38:42 | Working on file S2_percentile_UTM_211-0000046592-0000000000.tif
	29/10/2020 15:38:42 | Working on file S2_percentile_UTM_211-0000023296-0000023296.tif
	29/10/2020 15:38:43 | Working on file S2_percentile_UTM_211-0000023296-0000000000.tif
	29/10/2020 15:38:44 | Working on file S2_percentile_UTM_211-0000000000-0000023296.tif
	29/10/2020 15:38:44 | Working on file S2_percentile_UTM_211-0000000000-0000000000.tif
29/10/2020 15:38:45 | Working on tile 32V
29/10/2020 15:38:51 | 12 files to process
	29/10/2020 15:38:51 | Working on file S2_percentile_UTM_151-0000069888-0000046592.tif
	29/10/2020 15:38:51 | Working on file S2_percentile_UTM_151-0000069888-0000023296.tif
	29/10/2020 15:38:52 | Working on file S2_percentile_UTM_151-0000069888-0000000000.tif
	29/10/2020 15:38:52 | Working on file S2_percentile_UTM_151-0000046592-0000046592.tif
	29/10/2020 15:38:53 | Working on file S2_percentile_UTM_151-0000046592-0000023296.tif
	29/10/2020 15:38:53 | Working on file S2_percentile_UTM_151-0000046592-0000000000.tif
	29/10/2020 15:38:54 | Working on file S2_percentile_UTM_151-0000023296-0000046592.tif
	29/10/2020 15:38:54 | Working on file S2_percentile_UTM_151-0000023296-0000023296.tif
	29/10/2020 15:38:55 | Working on file S2_percentile_UTM_151-0000023296-0000000000.tif
	29/10/2020 15:38:56 | Working on file S2_percentile_UTM_151-0000000000-0000046592.tif
	29/10/2020 15:38:56 | Working on file S2_percentile_UTM_151-0000000000-0000023296.tif
	29/10/2020 15:38:57 | Working on file S2_percentile_UTM_151-0000000000-0000000000.tif
29/10/2020 15:38:57 | Working on tile 32W
29/10/2020 15:39:02 | 8 files to process
	29/10/2020 15:39:02 | Working on file S2_percentile_30_UTM_91-0000069888-0000023296.tif
	29/10/2020 15:39:03 | Working on file S2_percentile_30_UTM_91-0000069888-0000000000.tif
	29/10/2020 15:39:03 | Working on file S2_percentile_30_UTM_91-0000046592-0000023296.tif
	29/10/2020 15:39:05 | Working on file S2_percentile_30_UTM_91-0000046592-0000000000.tif
	29/10/2020 15:39:06 | Working on file S2_percentile_30_UTM_91-0000023296-0000023296.tif
	29/10/2020 15:39:06 | Working on file S2_percentile_30_UTM_91-0000023296-0000000000.tif
	29/10/2020 15:39:07 | Working on file S2_percentile_30_UTM_91-0000000000-0000023296.tif
	29/10/2020 15:39:08 | Working on file S2_percentile_30_UTM_91-0000000000-0000000000.tif
29/10/2020 15:39:09 | Working on tile 33H
29/10/2020 15:39:17 | 4 files to process
	29/10/2020 15:39:17 | Working on file S2_percentile_30_UTM_872-0000023296-0000046592.tif
	29/10/2020 15:39:18 | Working on file S2_percentile_30_UTM_872-0000023296-0000023296.tif
	29/10/2020 15:39:18 | Working on file S2_percentile_30_UTM_872-0000000000-0000046592.tif
	29/10/2020 15:39:19 | Working on file S2_percentile_30_UTM_872-0000000000-0000023296.tif
29/10/2020 15:39:20 | Working on tile 33J
29/10/2020 15:39:26 | 11 files to process
	29/10/2020 15:39:26 | Working on file S2_percentile_UTM_812-0000069888-0000046592.tif
	29/10/2020 15:39:26 | Working on file S2_percentile_UTM_812-0000069888-0000023296.tif
	29/10/2020 15:39:27 | Working on file S2_percentile_UTM_812-0000046592-0000046592.tif
	29/10/2020 15:39:27 | Working on file S2_percentile_UTM_812-0000046592-0000023296.tif
	29/10/2020 15:39:28 | Working on file S2_percentile_UTM_812-0000046592-0000000000.tif
	29/10/2020 15:39:29 | Working on file S2_percentile_UTM_812-0000023296-0000046592.tif
	29/10/2020 15:39:29 | Working on file S2_percentile_UTM_812-0000023296-0000023296.tif
	29/10/2020 15:39:30 | Working on file S2_percentile_UTM_812-0000023296-0000000000.tif
	29/10/2020 15:39:30 | Working on file S2_percentile_UTM_812-0000000000-0000046592.tif
	29/10/2020 15:39:31 | Working on file S2_percentile_UTM_812-0000000000-0000023296.tif
	29/10/2020 15:39:31 | Working on file S2_percentile_UTM_812-0000000000-0000000000.tif
29/10/2020 15:39:32 | Working on tile 33K
	33K_UTM.vrt contains no GeoTIFF, attempting 33K.vrt
29/10/2020 15:39:34 | 12 files to process
	29/10/2020 15:39:34 | Working on file S2_percentile_UTM_752-0000069888-0000046592.tif
	29/10/2020 15:39:35 | Working on file S2_percentile_UTM_752-0000069888-0000023296.tif
	29/10/2020 15:39:36 | Working on file S2_percentile_UTM_752-0000069888-0000000000.tif
	29/10/2020 15:39:36 | Working on file S2_percentile_UTM_752-0000046592-0000046592.tif
	29/10/2020 15:39:37 | Working on file S2_percentile_UTM_752-0000046592-0000023296.tif
	29/10/2020 15:39:37 | Working on file S2_percentile_UTM_752-0000046592-0000000000.tif
	29/10/2020 15:39:38 | Working on file S2_percentile_UTM_752-0000023296-0000046592.tif
	29/10/2020 15:39:38 | Working on file S2_percentile_UTM_752-0000023296-0000023296.tif
	29/10/2020 15:39:39 | Working on file S2_percentile_UTM_752-0000023296-0000000000.tif
	29/10/2020 15:39:39 | Working on file S2_percentile_UTM_752-0000000000-0000046592.tif
	29/10/2020 15:39:40 | Working on file S2_percentile_UTM_752-0000000000-0000023296.tif
	29/10/2020 15:39:41 | Working on file S2_percentile_UTM_752-0000000000-0000000000.tif
29/10/2020 15:39:41 | Working on tile 33L
	33L_UTM.vrt contains no GeoTIFF, attempting 33L.vrt
29/10/2020 15:39:43 | 12 files to process
	29/10/2020 15:39:43 | Working on file S2_percentile_UTM_692-0000069888-0000046592.tif
	29/10/2020 15:39:44 | Working on file S2_percentile_UTM_692-0000069888-0000023296.tif
	29/10/2020 15:39:45 | Working on file S2_percentile_UTM_692-0000069888-0000000000.tif
	29/10/2020 15:39:45 | Working on file S2_percentile_UTM_692-0000046592-0000046592.tif
	29/10/2020 15:39:46 | Working on file S2_percentile_UTM_692-0000046592-0000023296.tif
	29/10/2020 15:39:46 | Working on file S2_percentile_UTM_692-0000046592-0000000000.tif
	29/10/2020 15:39:47 | Working on file S2_percentile_UTM_692-0000023296-0000046592.tif
	29/10/2020 15:39:47 | Working on file S2_percentile_UTM_692-0000023296-0000023296.tif
	29/10/2020 15:39:48 | Working on file S2_percentile_UTM_692-0000023296-0000000000.tif
	29/10/2020 15:39:48 | Working on file S2_percentile_UTM_692-0000000000-0000046592.tif
	29/10/2020 15:39:49 | Working on file S2_percentile_UTM_692-0000000000-0000023296.tif
	29/10/2020 15:39:50 | Working on file S2_percentile_UTM_692-0000000000-0000000000.tif
29/10/2020 15:39:51 | Working on tile 33M
29/10/2020 15:39:56 | 12 files to process
	29/10/2020 15:39:56 | Working on file S2_percentile_30_UTM_632-0000069888-0000046592.tif
	29/10/2020 15:39:56 | Working on file S2_percentile_30_UTM_632-0000069888-0000023296.tif
	29/10/2020 15:39:57 | Working on file S2_percentile_30_UTM_632-0000069888-0000000000.tif
	29/10/2020 15:39:58 | Working on file S2_percentile_30_UTM_632-0000046592-0000046592.tif
	29/10/2020 15:39:58 | Working on file S2_percentile_30_UTM_632-0000046592-0000023296.tif
	29/10/2020 15:39:59 | Working on file S2_percentile_30_UTM_632-0000046592-0000000000.tif
	29/10/2020 15:40:00 | Working on file S2_percentile_30_UTM_632-0000023296-0000046592.tif
	29/10/2020 15:40:00 | Working on file S2_percentile_30_UTM_632-0000023296-0000023296.tif
	29/10/2020 15:40:01 | Working on file S2_percentile_30_UTM_632-0000023296-0000000000.tif
	29/10/2020 15:40:02 | Working on file S2_percentile_30_UTM_632-0000000000-0000046592.tif
	29/10/2020 15:40:02 | Working on file S2_percentile_30_UTM_632-0000000000-0000023296.tif
	29/10/2020 15:40:03 | Working on file S2_percentile_30_UTM_632-0000000000-0000000000.tif
29/10/2020 15:40:04 | Working on tile 33N
29/10/2020 15:40:09 | 12 files to process
	29/10/2020 15:40:09 | Working on file S2_percentile_30_UTM_572-0000069888-0000046592.tif
	29/10/2020 15:40:10 | Working on file S2_percentile_30_UTM_572-0000069888-0000023296.tif
	29/10/2020 15:40:11 | Working on file S2_percentile_30_UTM_572-0000069888-0000000000.tif
	29/10/2020 15:40:11 | Working on file S2_percentile_30_UTM_572-0000046592-0000046592.tif
	29/10/2020 15:40:12 | Working on file S2_percentile_30_UTM_572-0000046592-0000023296.tif
	29/10/2020 15:40:12 | Working on file S2_percentile_30_UTM_572-0000046592-0000000000.tif
	29/10/2020 15:40:13 | Working on file S2_percentile_30_UTM_572-0000023296-0000046592.tif
	29/10/2020 15:40:14 | Working on file S2_percentile_30_UTM_572-0000023296-0000023296.tif
	29/10/2020 15:40:14 | Working on file S2_percentile_30_UTM_572-0000023296-0000000000.tif
	29/10/2020 15:40:15 | Working on file S2_percentile_30_UTM_572-0000000000-0000046592.tif
	29/10/2020 15:40:16 | Working on file S2_percentile_30_UTM_572-0000000000-0000023296.tif
	29/10/2020 15:40:16 | Working on file S2_percentile_30_UTM_572-0000000000-0000000000.tif
29/10/2020 15:40:17 | Working on tile 33P
29/10/2020 15:40:22 | 12 files to process
	29/10/2020 15:40:22 | Working on file S2_percentile_UTM_512-0000069888-0000046592.tif
	29/10/2020 15:40:23 | Working on file S2_percentile_UTM_512-0000069888-0000023296.tif
	29/10/2020 15:40:23 | Working on file S2_percentile_UTM_512-0000069888-0000000000.tif
	29/10/2020 15:40:24 | Working on file S2_percentile_UTM_512-0000046592-0000046592.tif
	29/10/2020 15:40:24 | Working on file S2_percentile_UTM_512-0000046592-0000023296.tif
	29/10/2020 15:40:25 | Working on file S2_percentile_UTM_512-0000046592-0000000000.tif
	29/10/2020 15:40:26 | Working on file S2_percentile_UTM_512-0000023296-0000046592.tif
	29/10/2020 15:40:26 | Working on file S2_percentile_UTM_512-0000023296-0000023296.tif
	29/10/2020 15:40:27 | Working on file S2_percentile_UTM_512-0000023296-0000000000.tif
	29/10/2020 15:40:27 | Working on file S2_percentile_UTM_512-0000000000-0000046592.tif
	29/10/2020 15:40:28 | Working on file S2_percentile_UTM_512-0000000000-0000023296.tif
	29/10/2020 15:40:29 | Working on file S2_percentile_UTM_512-0000000000-0000000000.tif
29/10/2020 15:40:29 | Working on tile 33Q
29/10/2020 15:40:35 | 12 files to process
	29/10/2020 15:40:35 | Working on file S2_percentile_UTM_452-0000069888-0000046592.tif
	29/10/2020 15:40:35 | Working on file S2_percentile_UTM_452-0000069888-0000023296.tif
	29/10/2020 15:40:36 | Working on file S2_percentile_UTM_452-0000069888-0000000000.tif
	29/10/2020 15:40:37 | Working on file S2_percentile_UTM_452-0000046592-0000046592.tif
	29/10/2020 15:40:37 | Working on file S2_percentile_UTM_452-0000046592-0000023296.tif
	29/10/2020 15:40:38 | Working on file S2_percentile_UTM_452-0000046592-0000000000.tif
	29/10/2020 15:40:39 | Working on file S2_percentile_UTM_452-0000023296-0000046592.tif
	29/10/2020 15:40:39 | Working on file S2_percentile_UTM_452-0000023296-0000023296.tif
	29/10/2020 15:40:40 | Working on file S2_percentile_UTM_452-0000023296-0000000000.tif
	29/10/2020 15:40:40 | Working on file S2_percentile_UTM_452-0000000000-0000046592.tif
	29/10/2020 15:40:41 | Working on file S2_percentile_UTM_452-0000000000-0000023296.tif
	29/10/2020 15:40:41 | Working on file S2_percentile_UTM_452-0000000000-0000000000.tif
29/10/2020 15:40:42 | Working on tile 33R
29/10/2020 15:40:48 | 12 files to process
	29/10/2020 15:40:48 | Working on file S2_percentile_UTM_392-0000069888-0000046592.tif
	29/10/2020 15:40:48 | Working on file S2_percentile_UTM_392-0000069888-0000023296.tif
	29/10/2020 15:40:50 | Working on file S2_percentile_UTM_392-0000069888-0000000000.tif
	29/10/2020 15:40:50 | Working on file S2_percentile_UTM_392-0000046592-0000046592.tif
	29/10/2020 15:40:51 | Working on file S2_percentile_UTM_392-0000046592-0000023296.tif
	29/10/2020 15:40:52 | Working on file S2_percentile_UTM_392-0000046592-0000000000.tif
	29/10/2020 15:40:53 | Working on file S2_percentile_UTM_392-0000023296-0000046592.tif
	29/10/2020 15:40:54 | Working on file S2_percentile_UTM_392-0000023296-0000023296.tif
	29/10/2020 15:40:54 | Working on file S2_percentile_UTM_392-0000023296-0000000000.tif
	29/10/2020 15:40:55 | Working on file S2_percentile_UTM_392-0000000000-0000046592.tif
	29/10/2020 15:40:56 | Working on file S2_percentile_UTM_392-0000000000-0000023296.tif
	29/10/2020 15:40:56 | Working on file S2_percentile_UTM_392-0000000000-0000000000.tif
29/10/2020 15:40:57 | Working on tile 33S
	33S_UTM.vrt contains no GeoTIFF, attempting 33S.vrt
29/10/2020 15:40:59 | 12 files to process
	29/10/2020 15:40:59 | Working on file S2_percentile_UTM_332-0000069888-0000046592.tif
	29/10/2020 15:41:00 | Working on file S2_percentile_UTM_332-0000069888-0000023296.tif
	29/10/2020 15:41:01 | Working on file S2_percentile_UTM_332-0000069888-0000000000.tif
	29/10/2020 15:41:01 | Working on file S2_percentile_UTM_332-0000046592-0000046592.tif
	29/10/2020 15:41:02 | Working on file S2_percentile_UTM_332-0000046592-0000023296.tif
	29/10/2020 15:41:02 | Working on file S2_percentile_UTM_332-0000046592-0000000000.tif
	29/10/2020 15:41:03 | Working on file S2_percentile_UTM_332-0000023296-0000046592.tif
	29/10/2020 15:41:04 | Working on file S2_percentile_UTM_332-0000023296-0000023296.tif
	29/10/2020 15:41:04 | Working on file S2_percentile_UTM_332-0000023296-0000000000.tif
	29/10/2020 15:41:05 | Working on file S2_percentile_UTM_332-0000000000-0000046592.tif
	29/10/2020 15:41:05 | Working on file S2_percentile_UTM_332-0000000000-0000023296.tif
	29/10/2020 15:41:06 | Working on file S2_percentile_UTM_332-0000000000-0000000000.tif
29/10/2020 15:41:06 | Working on tile 33T
29/10/2020 15:41:12 | 12 files to process
	29/10/2020 15:41:12 | Working on file S2_percentile_UTM_272-0000069888-0000046592.tif
	29/10/2020 15:41:12 | Working on file S2_percentile_UTM_272-0000069888-0000023296.tif
	29/10/2020 15:41:13 | Working on file S2_percentile_UTM_272-0000069888-0000000000.tif
	29/10/2020 15:41:13 | Working on file S2_percentile_UTM_272-0000046592-0000046592.tif
	29/10/2020 15:41:14 | Working on file S2_percentile_UTM_272-0000046592-0000023296.tif
	29/10/2020 15:41:14 | Working on file S2_percentile_UTM_272-0000046592-0000000000.tif
	29/10/2020 15:41:15 | Working on file S2_percentile_UTM_272-0000023296-0000046592.tif
	29/10/2020 15:41:15 | Working on file S2_percentile_UTM_272-0000023296-0000023296.tif
	29/10/2020 15:41:16 | Working on file S2_percentile_UTM_272-0000023296-0000000000.tif
	29/10/2020 15:41:16 | Working on file S2_percentile_UTM_272-0000000000-0000046592.tif
	29/10/2020 15:41:17 | Working on file S2_percentile_UTM_272-0000000000-0000023296.tif
	29/10/2020 15:41:17 | Working on file S2_percentile_UTM_272-0000000000-0000000000.tif
29/10/2020 15:41:18 | Working on tile 33U
29/10/2020 15:41:23 | 8 files to process
	29/10/2020 15:41:23 | Working on file S2_percentile_UTM_212-0000069888-0000023296.tif
	29/10/2020 15:41:24 | Working on file S2_percentile_UTM_212-0000069888-0000000000.tif
	29/10/2020 15:41:24 | Working on file S2_percentile_UTM_212-0000046592-0000023296.tif
	29/10/2020 15:41:25 | Working on file S2_percentile_UTM_212-0000046592-0000000000.tif
	29/10/2020 15:41:26 | Working on file S2_percentile_UTM_212-0000023296-0000023296.tif
	29/10/2020 15:41:26 | Working on file S2_percentile_UTM_212-0000023296-0000000000.tif
	29/10/2020 15:41:27 | Working on file S2_percentile_UTM_212-0000000000-0000023296.tif
	29/10/2020 15:41:28 | Working on file S2_percentile_UTM_212-0000000000-0000000000.tif
29/10/2020 15:41:28 | Working on tile 33V
	33V_UTM.vrt contains no GeoTIFF, attempting 33V.vrt
29/10/2020 15:41:30 | 8 files to process
	29/10/2020 15:41:30 | Working on file S2_percentile_UTM_152-0000069888-0000023296.tif
	29/10/2020 15:41:31 | Working on file S2_percentile_UTM_152-0000069888-0000000000.tif
	29/10/2020 15:41:32 | Working on file S2_percentile_UTM_152-0000046592-0000023296.tif
	29/10/2020 15:41:32 | Working on file S2_percentile_UTM_152-0000046592-0000000000.tif
	29/10/2020 15:41:33 | Working on file S2_percentile_UTM_152-0000023296-0000023296.tif
	29/10/2020 15:41:33 | Working on file S2_percentile_UTM_152-0000023296-0000000000.tif
	29/10/2020 15:41:34 | Working on file S2_percentile_UTM_152-0000000000-0000023296.tif
	29/10/2020 15:41:34 | Working on file S2_percentile_UTM_152-0000000000-0000000000.tif
29/10/2020 15:41:35 | Working on tile 33W
29/10/2020 15:41:39 | 8 files to process
	29/10/2020 15:41:39 | Working on file S2_percentile_30_UTM_92-0000069888-0000023296.tif
	29/10/2020 15:41:41 | Working on file S2_percentile_30_UTM_92-0000069888-0000000000.tif
	29/10/2020 15:41:41 | Working on file S2_percentile_30_UTM_92-0000046592-0000023296.tif
	29/10/2020 15:41:42 | Working on file S2_percentile_30_UTM_92-0000046592-0000000000.tif
	29/10/2020 15:41:42 | Working on file S2_percentile_30_UTM_92-0000023296-0000023296.tif
	29/10/2020 15:41:43 | Working on file S2_percentile_30_UTM_92-0000023296-0000000000.tif
	29/10/2020 15:41:43 | Working on file S2_percentile_30_UTM_92-0000000000-0000023296.tif
	29/10/2020 15:41:44 | Working on file S2_percentile_30_UTM_92-0000000000-0000000000.tif
29/10/2020 15:41:45 | Working on tile 33X
29/10/2020 15:41:50 | 12 files to process
	29/10/2020 15:41:50 | Working on file S2_percentile_30_UTM_34-0000116480-0000023296.tif
	29/10/2020 15:41:51 | Working on file S2_percentile_30_UTM_34-0000116480-0000000000.tif
	29/10/2020 15:41:52 | Working on file S2_percentile_30_UTM_34-0000093184-0000023296.tif
	29/10/2020 15:41:52 | Working on file S2_percentile_30_UTM_34-0000093184-0000000000.tif
	29/10/2020 15:41:53 | Working on file S2_percentile_30_UTM_34-0000069888-0000023296.tif
	29/10/2020 15:41:53 | Working on file S2_percentile_30_UTM_34-0000069888-0000000000.tif
	29/10/2020 15:41:54 | Working on file S2_percentile_30_UTM_34-0000046592-0000023296.tif
	29/10/2020 15:41:55 | Working on file S2_percentile_30_UTM_34-0000046592-0000000000.tif
	29/10/2020 15:41:55 | Working on file S2_percentile_30_UTM_34-0000023296-0000023296.tif
	29/10/2020 15:41:56 | Working on file S2_percentile_30_UTM_34-0000023296-0000000000.tif
	29/10/2020 15:41:56 | Working on file S2_percentile_30_UTM_34-0000000000-0000023296.tif
	29/10/2020 15:41:57 | Working on file S2_percentile_30_UTM_34-0000000000-0000000000.tif
29/10/2020 15:41:58 | Working on tile 34H
	34H_UTM.vrt contains no GeoTIFF, attempting 34H.vrt
29/10/2020 15:42:00 | 7 files to process
	29/10/2020 15:42:00 | Working on file S2_percentile_UTM_873-0000046592-0000023296.tif
	29/10/2020 15:42:01 | Working on file S2_percentile_UTM_873-0000023296-0000046592.tif
	29/10/2020 15:42:02 | Working on file S2_percentile_UTM_873-0000023296-0000023296.tif
	29/10/2020 15:42:02 | Working on file S2_percentile_UTM_873-0000023296-0000000000.tif
	29/10/2020 15:42:03 | Working on file S2_percentile_UTM_873-0000000000-0000046592.tif
	29/10/2020 15:42:03 | Working on file S2_percentile_UTM_873-0000000000-0000023296.tif
	29/10/2020 15:42:04 | Working on file S2_percentile_UTM_873-0000000000-0000000000.tif
29/10/2020 15:42:05 | Working on tile 34J
	34J_UTM.vrt contains no GeoTIFF, attempting 34J.vrt
29/10/2020 15:42:07 | 12 files to process
	29/10/2020 15:42:07 | Working on file S2_percentile_30_UTM_813-0000069888-0000046592.tif
	29/10/2020 15:42:07 | Working on file S2_percentile_30_UTM_813-0000069888-0000023296.tif
	29/10/2020 15:42:08 | Working on file S2_percentile_30_UTM_813-0000069888-0000000000.tif
	29/10/2020 15:42:09 | Working on file S2_percentile_30_UTM_813-0000046592-0000046592.tif
	29/10/2020 15:42:09 | Working on file S2_percentile_30_UTM_813-0000046592-0000023296.tif
	29/10/2020 15:42:10 | Working on file S2_percentile_30_UTM_813-0000046592-0000000000.tif
	29/10/2020 15:42:10 | Working on file S2_percentile_30_UTM_813-0000023296-0000046592.tif
	29/10/2020 15:42:11 | Working on file S2_percentile_30_UTM_813-0000023296-0000023296.tif
	29/10/2020 15:42:11 | Working on file S2_percentile_30_UTM_813-0000023296-0000000000.tif
	29/10/2020 15:42:12 | Working on file S2_percentile_30_UTM_813-0000000000-0000046592.tif
	29/10/2020 15:42:12 | Working on file S2_percentile_30_UTM_813-0000000000-0000023296.tif
	29/10/2020 15:42:13 | Working on file S2_percentile_30_UTM_813-0000000000-0000000000.tif
29/10/2020 15:42:14 | Working on tile 34K
	34K_UTM.vrt contains no GeoTIFF, attempting 34K.vrt
29/10/2020 15:42:16 | 12 files to process
	29/10/2020 15:42:16 | Working on file S2_percentile_UTM_753-0000069888-0000046592.tif
	29/10/2020 15:42:17 | Working on file S2_percentile_UTM_753-0000069888-0000023296.tif
	29/10/2020 15:42:17 | Working on file S2_percentile_UTM_753-0000069888-0000000000.tif
	29/10/2020 15:42:18 | Working on file S2_percentile_UTM_753-0000046592-0000046592.tif
	29/10/2020 15:42:18 | Working on file S2_percentile_UTM_753-0000046592-0000023296.tif
	29/10/2020 15:42:19 | Working on file S2_percentile_UTM_753-0000046592-0000000000.tif
	29/10/2020 15:42:20 | Working on file S2_percentile_UTM_753-0000023296-0000046592.tif
	29/10/2020 15:42:20 | Working on file S2_percentile_UTM_753-0000023296-0000023296.tif
	29/10/2020 15:42:21 | Working on file S2_percentile_UTM_753-0000023296-0000000000.tif
	29/10/2020 15:42:21 | Working on file S2_percentile_UTM_753-0000000000-0000046592.tif
	29/10/2020 15:42:22 | Working on file S2_percentile_UTM_753-0000000000-0000023296.tif
	29/10/2020 15:42:22 | Working on file S2_percentile_UTM_753-0000000000-0000000000.tif
29/10/2020 15:42:23 | Working on tile 34L
29/10/2020 15:42:28 | 12 files to process
	29/10/2020 15:42:28 | Working on file S2_percentile_UTM_693-0000069888-0000046592.tif
	29/10/2020 15:42:33 | Working on file S2_percentile_UTM_693-0000069888-0000023296.tif
	29/10/2020 15:42:38 | Working on file S2_percentile_UTM_693-0000069888-0000000000.tif
	29/10/2020 15:42:46 | Working on file S2_percentile_UTM_693-0000046592-0000046592.tif
	29/10/2020 15:42:50 | Working on file S2_percentile_UTM_693-0000046592-0000023296.tif
	29/10/2020 15:42:55 | Working on file S2_percentile_UTM_693-0000046592-0000000000.tif
	29/10/2020 15:42:56 | Working on file S2_percentile_UTM_693-0000023296-0000046592.tif
	29/10/2020 15:42:57 | Working on file S2_percentile_UTM_693-0000023296-0000023296.tif
	29/10/2020 15:42:58 | Working on file S2_percentile_UTM_693-0000023296-0000000000.tif
	29/10/2020 15:42:59 | Working on file S2_percentile_UTM_693-0000000000-0000046592.tif
	29/10/2020 15:43:00 | Working on file S2_percentile_UTM_693-0000000000-0000023296.tif
	29/10/2020 15:43:00 | Working on file S2_percentile_UTM_693-0000000000-0000000000.tif
29/10/2020 15:43:01 | Working on tile 34M
29/10/2020 15:43:07 | 12 files to process
	29/10/2020 15:43:07 | Working on file S2_percentile_30_UTM_633-0000069888-0000046592.tif
	29/10/2020 15:43:08 | Working on file S2_percentile_30_UTM_633-0000069888-0000023296.tif
	29/10/2020 15:43:08 | Working on file S2_percentile_30_UTM_633-0000069888-0000000000.tif
	29/10/2020 15:43:09 | Working on file S2_percentile_30_UTM_633-0000046592-0000046592.tif
	29/10/2020 15:43:10 | Working on file S2_percentile_30_UTM_633-0000046592-0000023296.tif
	29/10/2020 15:43:10 | Working on file S2_percentile_30_UTM_633-0000046592-0000000000.tif
	29/10/2020 15:43:11 | Working on file S2_percentile_30_UTM_633-0000023296-0000046592.tif
	29/10/2020 15:43:12 | Working on file S2_percentile_30_UTM_633-0000023296-0000023296.tif
	29/10/2020 15:43:12 | Working on file S2_percentile_30_UTM_633-0000023296-0000000000.tif
	29/10/2020 15:43:13 | Working on file S2_percentile_30_UTM_633-0000000000-0000046592.tif
	29/10/2020 15:43:13 | Working on file S2_percentile_30_UTM_633-0000000000-0000023296.tif
	29/10/2020 15:43:14 | Working on file S2_percentile_30_UTM_633-0000000000-0000000000.tif
29/10/2020 15:43:15 | Working on tile 34N
29/10/2020 15:43:20 | 12 files to process
	29/10/2020 15:43:20 | Working on file S2_percentile_30_UTM_573-0000069888-0000046592.tif
	29/10/2020 15:43:21 | Working on file S2_percentile_30_UTM_573-0000069888-0000023296.tif
	29/10/2020 15:43:21 | Working on file S2_percentile_30_UTM_573-0000069888-0000000000.tif
	29/10/2020 15:43:22 | Working on file S2_percentile_30_UTM_573-0000046592-0000046592.tif
	29/10/2020 15:43:22 | Working on file S2_percentile_30_UTM_573-0000046592-0000023296.tif
	29/10/2020 15:43:23 | Working on file S2_percentile_30_UTM_573-0000046592-0000000000.tif
	29/10/2020 15:43:24 | Working on file S2_percentile_30_UTM_573-0000023296-0000046592.tif
	29/10/2020 15:43:24 | Working on file S2_percentile_30_UTM_573-0000023296-0000023296.tif
	29/10/2020 15:43:25 | Working on file S2_percentile_30_UTM_573-0000023296-0000000000.tif
	29/10/2020 15:43:26 | Working on file S2_percentile_30_UTM_573-0000000000-0000046592.tif
	29/10/2020 15:43:26 | Working on file S2_percentile_30_UTM_573-0000000000-0000023296.tif
	29/10/2020 15:43:27 | Working on file S2_percentile_30_UTM_573-0000000000-0000000000.tif
29/10/2020 15:43:28 | Working on tile 34P
	34P_UTM.vrt contains no GeoTIFF, attempting 34P.vrt
29/10/2020 15:43:30 | 12 files to process
	29/10/2020 15:43:30 | Working on file S2_percentile_30_UTM_513-0000069888-0000046592.tif
	29/10/2020 15:43:31 | Working on file S2_percentile_30_UTM_513-0000069888-0000023296.tif
	29/10/2020 15:43:31 | Working on file S2_percentile_30_UTM_513-0000069888-0000000000.tif
	29/10/2020 15:43:32 | Working on file S2_percentile_30_UTM_513-0000046592-0000046592.tif
	29/10/2020 15:43:32 | Working on file S2_percentile_30_UTM_513-0000046592-0000023296.tif
	29/10/2020 15:43:33 | Working on file S2_percentile_30_UTM_513-0000046592-0000000000.tif
	29/10/2020 15:43:34 | Working on file S2_percentile_30_UTM_513-0000023296-0000046592.tif
	29/10/2020 15:43:35 | Working on file S2_percentile_30_UTM_513-0000023296-0000023296.tif
	29/10/2020 15:43:35 | Working on file S2_percentile_30_UTM_513-0000023296-0000000000.tif
	29/10/2020 15:43:36 | Working on file S2_percentile_30_UTM_513-0000000000-0000046592.tif
	29/10/2020 15:43:36 | Working on file S2_percentile_30_UTM_513-0000000000-0000023296.tif
	29/10/2020 15:43:37 | Working on file S2_percentile_30_UTM_513-0000000000-0000000000.tif
29/10/2020 15:43:38 | Working on tile 34Q
	34Q_UTM.vrt contains no GeoTIFF, attempting 34Q.vrt
29/10/2020 15:43:40 | 12 files to process
	29/10/2020 15:43:40 | Working on file S2_percentile_UTM_453-0000069888-0000046592.tif
	29/10/2020 15:43:41 | Working on file S2_percentile_UTM_453-0000069888-0000023296.tif
	29/10/2020 15:43:41 | Working on file S2_percentile_UTM_453-0000069888-0000000000.tif
	29/10/2020 15:43:42 | Working on file S2_percentile_UTM_453-0000046592-0000046592.tif
	29/10/2020 15:43:42 | Working on file S2_percentile_UTM_453-0000046592-0000023296.tif
	29/10/2020 15:43:43 | Working on file S2_percentile_UTM_453-0000046592-0000000000.tif
	29/10/2020 15:43:44 | Working on file S2_percentile_UTM_453-0000023296-0000046592.tif
	29/10/2020 15:43:44 | Working on file S2_percentile_UTM_453-0000023296-0000023296.tif
	29/10/2020 15:43:45 | Working on file S2_percentile_UTM_453-0000023296-0000000000.tif
	29/10/2020 15:43:46 | Working on file S2_percentile_UTM_453-0000000000-0000046592.tif
	29/10/2020 15:43:46 | Working on file S2_percentile_UTM_453-0000000000-0000023296.tif
	29/10/2020 15:43:47 | Working on file S2_percentile_UTM_453-0000000000-0000000000.tif
29/10/2020 15:43:47 | Working on tile 34R
29/10/2020 15:43:54 | 12 files to process
	29/10/2020 15:43:54 | Working on file S2_percentile_UTM_393-0000069888-0000046592.tif
	29/10/2020 15:43:55 | Working on file S2_percentile_UTM_393-0000069888-0000023296.tif
	29/10/2020 15:43:55 | Working on file S2_percentile_UTM_393-0000069888-0000000000.tif
	29/10/2020 15:43:56 | Working on file S2_percentile_UTM_393-0000046592-0000046592.tif
	29/10/2020 15:43:56 | Working on file S2_percentile_UTM_393-0000046592-0000023296.tif
	29/10/2020 15:43:57 | Working on file S2_percentile_UTM_393-0000046592-0000000000.tif
	29/10/2020 15:43:57 | Working on file S2_percentile_UTM_393-0000023296-0000046592.tif
	29/10/2020 15:43:58 | Working on file S2_percentile_UTM_393-0000023296-0000023296.tif
	29/10/2020 15:43:58 | Working on file S2_percentile_UTM_393-0000023296-0000000000.tif
	29/10/2020 15:43:59 | Working on file S2_percentile_UTM_393-0000000000-0000046592.tif
	29/10/2020 15:43:59 | Working on file S2_percentile_UTM_393-0000000000-0000023296.tif
	29/10/2020 15:44:00 | Working on file S2_percentile_UTM_393-0000000000-0000000000.tif
29/10/2020 15:44:01 | Working on tile 34S
29/10/2020 15:44:06 | 12 files to process
	29/10/2020 15:44:06 | Working on file S2_percentile_UTM_333-0000069888-0000046592.tif
	29/10/2020 15:44:07 | Working on file S2_percentile_UTM_333-0000069888-0000023296.tif
	29/10/2020 15:44:07 | Working on file S2_percentile_UTM_333-0000069888-0000000000.tif
	29/10/2020 15:44:08 | Working on file S2_percentile_UTM_333-0000046592-0000046592.tif
	29/10/2020 15:44:08 | Working on file S2_percentile_UTM_333-0000046592-0000023296.tif
	29/10/2020 15:44:09 | Working on file S2_percentile_UTM_333-0000046592-0000000000.tif
	29/10/2020 15:44:10 | Working on file S2_percentile_UTM_333-0000023296-0000046592.tif
	29/10/2020 15:44:10 | Working on file S2_percentile_UTM_333-0000023296-0000023296.tif
	29/10/2020 15:44:11 | Working on file S2_percentile_UTM_333-0000023296-0000000000.tif
	29/10/2020 15:44:11 | Working on file S2_percentile_UTM_333-0000000000-0000046592.tif
	29/10/2020 15:44:12 | Working on file S2_percentile_UTM_333-0000000000-0000023296.tif
	29/10/2020 15:44:12 | Working on file S2_percentile_UTM_333-0000000000-0000000000.tif
29/10/2020 15:44:13 | Working on tile 34T
29/10/2020 15:44:18 | 12 files to process
	29/10/2020 15:44:18 | Working on file S2_percentile_UTM_273-0000069888-0000046592.tif
	29/10/2020 15:44:18 | Working on file S2_percentile_UTM_273-0000069888-0000023296.tif
	29/10/2020 15:44:19 | Working on file S2_percentile_UTM_273-0000069888-0000000000.tif
	29/10/2020 15:44:19 | Working on file S2_percentile_UTM_273-0000046592-0000046592.tif
	29/10/2020 15:44:20 | Working on file S2_percentile_UTM_273-0000046592-0000023296.tif
	29/10/2020 15:44:20 | Working on file S2_percentile_UTM_273-0000046592-0000000000.tif
	29/10/2020 15:44:21 | Working on file S2_percentile_UTM_273-0000023296-0000046592.tif
	29/10/2020 15:44:21 | Working on file S2_percentile_UTM_273-0000023296-0000023296.tif
	29/10/2020 15:44:22 | Working on file S2_percentile_UTM_273-0000023296-0000000000.tif
	29/10/2020 15:44:23 | Working on file S2_percentile_UTM_273-0000000000-0000046592.tif
	29/10/2020 15:44:23 | Working on file S2_percentile_UTM_273-0000000000-0000023296.tif
	29/10/2020 15:44:23 | Working on file S2_percentile_UTM_273-0000000000-0000000000.tif
29/10/2020 15:44:24 | Working on tile 34U
29/10/2020 15:44:29 | 8 files to process
	29/10/2020 15:44:29 | Working on file S2_percentile_UTM_213-0000069888-0000023296.tif
	29/10/2020 15:44:29 | Working on file S2_percentile_UTM_213-0000069888-0000000000.tif
	29/10/2020 15:44:30 | Working on file S2_percentile_UTM_213-0000046592-0000023296.tif
	29/10/2020 15:44:31 | Working on file S2_percentile_UTM_213-0000046592-0000000000.tif
	29/10/2020 15:44:32 | Working on file S2_percentile_UTM_213-0000023296-0000023296.tif
	29/10/2020 15:44:32 | Working on file S2_percentile_UTM_213-0000023296-0000000000.tif
	29/10/2020 15:44:33 | Working on file S2_percentile_UTM_213-0000000000-0000023296.tif
	29/10/2020 15:44:33 | Working on file S2_percentile_UTM_213-0000000000-0000000000.tif
29/10/2020 15:44:34 | Working on tile 34V
29/10/2020 15:44:40 | 8 files to process
	29/10/2020 15:44:40 | Working on file S2_percentile_UTM_153-0000069888-0000023296.tif
	29/10/2020 15:44:40 | Working on file S2_percentile_UTM_153-0000069888-0000000000.tif
	29/10/2020 15:44:41 | Working on file S2_percentile_UTM_153-0000046592-0000023296.tif
	29/10/2020 15:44:41 | Working on file S2_percentile_UTM_153-0000046592-0000000000.tif
	29/10/2020 15:44:42 | Working on file S2_percentile_UTM_153-0000023296-0000023296.tif
	29/10/2020 15:44:42 | Working on file S2_percentile_UTM_153-0000023296-0000000000.tif
	29/10/2020 15:44:43 | Working on file S2_percentile_UTM_153-0000000000-0000023296.tif
	29/10/2020 15:44:43 | Working on file S2_percentile_UTM_153-0000000000-0000000000.tif
29/10/2020 15:44:44 | Working on tile 34W
	34W_UTM.vrt contains no GeoTIFF, attempting 34W.vrt
29/10/2020 15:44:46 | 8 files to process
	29/10/2020 15:44:46 | Working on file S2_percentile_30_UTM_93-0000069888-0000023296.tif
	29/10/2020 15:44:47 | Working on file S2_percentile_30_UTM_93-0000069888-0000000000.tif
	29/10/2020 15:44:47 | Working on file S2_percentile_30_UTM_93-0000046592-0000023296.tif
	29/10/2020 15:44:48 | Working on file S2_percentile_30_UTM_93-0000046592-0000000000.tif
	29/10/2020 15:44:48 | Working on file S2_percentile_30_UTM_93-0000023296-0000023296.tif
	29/10/2020 15:44:49 | Working on file S2_percentile_30_UTM_93-0000023296-0000000000.tif
	29/10/2020 15:44:50 | Working on file S2_percentile_30_UTM_93-0000000000-0000023296.tif
	29/10/2020 15:44:50 | Working on file S2_percentile_30_UTM_93-0000000000-0000000000.tif
29/10/2020 15:44:51 | Working on tile 35H
29/10/2020 15:44:56 | 6 files to process
	29/10/2020 15:44:56 | Working on file S2_percentile_UTM_874-0000023296-0000046592.tif
	29/10/2020 15:44:57 | Working on file S2_percentile_UTM_874-0000023296-0000023296.tif
	29/10/2020 15:44:57 | Working on file S2_percentile_UTM_874-0000023296-0000000000.tif
	29/10/2020 15:44:58 | Working on file S2_percentile_UTM_874-0000000000-0000046592.tif
	29/10/2020 15:44:58 | Working on file S2_percentile_UTM_874-0000000000-0000023296.tif
	29/10/2020 15:44:59 | Working on file S2_percentile_UTM_874-0000000000-0000000000.tif
29/10/2020 15:45:00 | Working on tile 35J
29/10/2020 15:45:05 | 12 files to process
	29/10/2020 15:45:05 | Working on file S2_percentile_UTM_814-0000069888-0000046592.tif
	29/10/2020 15:45:06 | Working on file S2_percentile_UTM_814-0000069888-0000023296.tif
	29/10/2020 15:45:06 | Working on file S2_percentile_UTM_814-0000069888-0000000000.tif
	29/10/2020 15:45:07 | Working on file S2_percentile_UTM_814-0000046592-0000046592.tif
	29/10/2020 15:45:08 | Working on file S2_percentile_UTM_814-0000046592-0000023296.tif
	29/10/2020 15:45:08 | Working on file S2_percentile_UTM_814-0000046592-0000000000.tif
	29/10/2020 15:45:09 | Working on file S2_percentile_UTM_814-0000023296-0000046592.tif
	29/10/2020 15:45:10 | Working on file S2_percentile_UTM_814-0000023296-0000023296.tif
	29/10/2020 15:45:11 | Working on file S2_percentile_UTM_814-0000023296-0000000000.tif
	29/10/2020 15:45:12 | Working on file S2_percentile_UTM_814-0000000000-0000046592.tif
	29/10/2020 15:45:12 | Working on file S2_percentile_UTM_814-0000000000-0000023296.tif
	29/10/2020 15:45:13 | Working on file S2_percentile_UTM_814-0000000000-0000000000.tif
29/10/2020 15:45:14 | Working on tile 35K
29/10/2020 15:45:19 | 12 files to process
	29/10/2020 15:45:19 | Working on file S2_percentile_UTM_754-0000069888-0000046592.tif
	29/10/2020 15:45:20 | Working on file S2_percentile_UTM_754-0000069888-0000023296.tif
	29/10/2020 15:45:21 | Working on file S2_percentile_UTM_754-0000069888-0000000000.tif
	29/10/2020 15:45:21 | Working on file S2_percentile_UTM_754-0000046592-0000046592.tif
	29/10/2020 15:45:22 | Working on file S2_percentile_UTM_754-0000046592-0000023296.tif
	29/10/2020 15:45:22 | Working on file S2_percentile_UTM_754-0000046592-0000000000.tif
	29/10/2020 15:45:23 | Working on file S2_percentile_UTM_754-0000023296-0000046592.tif
	29/10/2020 15:45:24 | Working on file S2_percentile_UTM_754-0000023296-0000023296.tif
	29/10/2020 15:45:24 | Working on file S2_percentile_UTM_754-0000023296-0000000000.tif
	29/10/2020 15:45:25 | Working on file S2_percentile_UTM_754-0000000000-0000046592.tif
	29/10/2020 15:45:26 | Working on file S2_percentile_UTM_754-0000000000-0000023296.tif
	29/10/2020 15:45:26 | Working on file S2_percentile_UTM_754-0000000000-0000000000.tif
29/10/2020 15:45:27 | Working on tile 35L
29/10/2020 15:45:32 | 12 files to process
	29/10/2020 15:45:32 | Working on file S2_percentile_UTM_694-0000069888-0000046592.tif
	29/10/2020 15:45:33 | Working on file S2_percentile_UTM_694-0000069888-0000023296.tif
	29/10/2020 15:45:34 | Working on file S2_percentile_UTM_694-0000069888-0000000000.tif
	29/10/2020 15:45:34 | Working on file S2_percentile_UTM_694-0000046592-0000046592.tif
	29/10/2020 15:45:35 | Working on file S2_percentile_UTM_694-0000046592-0000023296.tif
	29/10/2020 15:45:35 | Working on file S2_percentile_UTM_694-0000046592-0000000000.tif
	29/10/2020 15:45:36 | Working on file S2_percentile_UTM_694-0000023296-0000046592.tif
	29/10/2020 15:45:37 | Working on file S2_percentile_UTM_694-0000023296-0000023296.tif
	29/10/2020 15:45:37 | Working on file S2_percentile_UTM_694-0000023296-0000000000.tif
	29/10/2020 15:45:38 | Working on file S2_percentile_UTM_694-0000000000-0000046592.tif
	29/10/2020 15:45:39 | Working on file S2_percentile_UTM_694-0000000000-0000023296.tif
	29/10/2020 15:45:39 | Working on file S2_percentile_UTM_694-0000000000-0000000000.tif
29/10/2020 15:45:40 | Working on tile 35M
29/10/2020 15:45:45 | 12 files to process
	29/10/2020 15:45:45 | Working on file S2_percentile_UTM_634-0000069888-0000046592.tif
	29/10/2020 15:45:46 | Working on file S2_percentile_UTM_634-0000069888-0000023296.tif
	29/10/2020 15:45:47 | Working on file S2_percentile_UTM_634-0000069888-0000000000.tif
	29/10/2020 15:45:47 | Working on file S2_percentile_UTM_634-0000046592-0000046592.tif
	29/10/2020 15:45:48 | Working on file S2_percentile_UTM_634-0000046592-0000023296.tif
	29/10/2020 15:45:48 | Working on file S2_percentile_UTM_634-0000046592-0000000000.tif
	29/10/2020 15:45:49 | Working on file S2_percentile_UTM_634-0000023296-0000046592.tif
	29/10/2020 15:45:50 | Working on file S2_percentile_UTM_634-0000023296-0000023296.tif
	29/10/2020 15:45:50 | Working on file S2_percentile_UTM_634-0000023296-0000000000.tif
	29/10/2020 15:45:51 | Working on file S2_percentile_UTM_634-0000000000-0000046592.tif
	29/10/2020 15:45:51 | Working on file S2_percentile_UTM_634-0000000000-0000023296.tif
	29/10/2020 15:45:52 | Working on file S2_percentile_UTM_634-0000000000-0000000000.tif
29/10/2020 15:45:52 | Working on tile 35N
	35N_UTM.vrt contains no GeoTIFF, attempting 35N.vrt
29/10/2020 15:45:54 | 12 files to process
	29/10/2020 15:45:54 | Working on file S2_percentile_30_UTM_574-0000069888-0000046592.tif
	29/10/2020 15:45:55 | Working on file S2_percentile_30_UTM_574-0000069888-0000023296.tif
	29/10/2020 15:45:55 | Working on file S2_percentile_30_UTM_574-0000069888-0000000000.tif
	29/10/2020 15:45:56 | Working on file S2_percentile_30_UTM_574-0000046592-0000046592.tif
	29/10/2020 15:45:57 | Working on file S2_percentile_30_UTM_574-0000046592-0000023296.tif
	29/10/2020 15:45:57 | Working on file S2_percentile_30_UTM_574-0000046592-0000000000.tif
	29/10/2020 15:45:58 | Working on file S2_percentile_30_UTM_574-0000023296-0000046592.tif
	29/10/2020 15:45:58 | Working on file S2_percentile_30_UTM_574-0000023296-0000023296.tif
	29/10/2020 15:45:59 | Working on file S2_percentile_30_UTM_574-0000023296-0000000000.tif
	29/10/2020 15:46:00 | Working on file S2_percentile_30_UTM_574-0000000000-0000046592.tif
	29/10/2020 15:46:00 | Working on file S2_percentile_30_UTM_574-0000000000-0000023296.tif
	29/10/2020 15:46:01 | Working on file S2_percentile_30_UTM_574-0000000000-0000000000.tif
29/10/2020 15:46:01 | Working on tile 35P
	35P_UTM.vrt contains no GeoTIFF, attempting 35P.vrt
29/10/2020 15:46:04 | 12 files to process
	29/10/2020 15:46:04 | Working on file S2_percentile_UTM_514-0000069888-0000046592.tif
	29/10/2020 15:46:05 | Working on file S2_percentile_UTM_514-0000069888-0000023296.tif
	29/10/2020 15:46:05 | Working on file S2_percentile_UTM_514-0000069888-0000000000.tif
	29/10/2020 15:46:06 | Working on file S2_percentile_UTM_514-0000046592-0000046592.tif
	29/10/2020 15:46:07 | Working on file S2_percentile_UTM_514-0000046592-0000023296.tif
	29/10/2020 15:46:07 | Working on file S2_percentile_UTM_514-0000046592-0000000000.tif
	29/10/2020 15:46:08 | Working on file S2_percentile_UTM_514-0000023296-0000046592.tif
	29/10/2020 15:46:08 | Working on file S2_percentile_UTM_514-0000023296-0000023296.tif
	29/10/2020 15:46:09 | Working on file S2_percentile_UTM_514-0000023296-0000000000.tif
	29/10/2020 15:46:10 | Working on file S2_percentile_UTM_514-0000000000-0000046592.tif
	29/10/2020 15:46:10 | Working on file S2_percentile_UTM_514-0000000000-0000023296.tif
	29/10/2020 15:46:11 | Working on file S2_percentile_UTM_514-0000000000-0000000000.tif
29/10/2020 15:46:12 | Working on tile 35Q
29/10/2020 15:46:17 | 12 files to process
	29/10/2020 15:46:17 | Working on file S2_percentile_UTM_454-0000069888-0000046592.tif
	29/10/2020 15:46:18 | Working on file S2_percentile_UTM_454-0000069888-0000023296.tif
	29/10/2020 15:46:19 | Working on file S2_percentile_UTM_454-0000069888-0000000000.tif
	29/10/2020 15:46:19 | Working on file S2_percentile_UTM_454-0000046592-0000046592.tif
	29/10/2020 15:46:20 | Working on file S2_percentile_UTM_454-0000046592-0000023296.tif
	29/10/2020 15:46:20 | Working on file S2_percentile_UTM_454-0000046592-0000000000.tif
	29/10/2020 15:46:21 | Working on file S2_percentile_UTM_454-0000023296-0000046592.tif
	29/10/2020 15:46:21 | Working on file S2_percentile_UTM_454-0000023296-0000023296.tif
	29/10/2020 15:46:22 | Working on file S2_percentile_UTM_454-0000023296-0000000000.tif
	29/10/2020 15:46:23 | Working on file S2_percentile_UTM_454-0000000000-0000046592.tif
	29/10/2020 15:46:23 | Working on file S2_percentile_UTM_454-0000000000-0000023296.tif
	29/10/2020 15:46:24 | Working on file S2_percentile_UTM_454-0000000000-0000000000.tif
29/10/2020 15:46:24 | Working on tile 35R
29/10/2020 15:46:29 | 12 files to process
	29/10/2020 15:46:29 | Working on file S2_percentile_UTM_394-0000069888-0000046592.tif
	29/10/2020 15:46:30 | Working on file S2_percentile_UTM_394-0000069888-0000023296.tif
	29/10/2020 15:46:31 | Working on file S2_percentile_UTM_394-0000069888-0000000000.tif
	29/10/2020 15:46:32 | Working on file S2_percentile_UTM_394-0000046592-0000046592.tif
	29/10/2020 15:46:32 | Working on file S2_percentile_UTM_394-0000046592-0000023296.tif
	29/10/2020 15:46:33 | Working on file S2_percentile_UTM_394-0000046592-0000000000.tif
	29/10/2020 15:46:34 | Working on file S2_percentile_UTM_394-0000023296-0000046592.tif
	29/10/2020 15:46:34 | Working on file S2_percentile_UTM_394-0000023296-0000023296.tif
	29/10/2020 15:46:35 | Working on file S2_percentile_UTM_394-0000023296-0000000000.tif
	29/10/2020 15:46:36 | Working on file S2_percentile_UTM_394-0000000000-0000046592.tif
	29/10/2020 15:46:37 | Working on file S2_percentile_UTM_394-0000000000-0000023296.tif
	29/10/2020 15:46:37 | Working on file S2_percentile_UTM_394-0000000000-0000000000.tif
29/10/2020 15:46:38 | Working on tile 35S
	35S_UTM.vrt contains no GeoTIFF, attempting 35S.vrt
29/10/2020 15:46:40 | 12 files to process
	29/10/2020 15:46:40 | Working on file S2_percentile_UTM_334-0000069888-0000046592.tif
	29/10/2020 15:46:41 | Working on file S2_percentile_UTM_334-0000069888-0000023296.tif
	29/10/2020 15:46:42 | Working on file S2_percentile_UTM_334-0000069888-0000000000.tif
	29/10/2020 15:46:42 | Working on file S2_percentile_UTM_334-0000046592-0000046592.tif
	29/10/2020 15:46:43 | Working on file S2_percentile_UTM_334-0000046592-0000023296.tif
	29/10/2020 15:46:43 | Working on file S2_percentile_UTM_334-0000046592-0000000000.tif
	29/10/2020 15:46:44 | Working on file S2_percentile_UTM_334-0000023296-0000046592.tif
	29/10/2020 15:46:45 | Working on file S2_percentile_UTM_334-0000023296-0000023296.tif
	29/10/2020 15:46:45 | Working on file S2_percentile_UTM_334-0000023296-0000000000.tif
	29/10/2020 15:46:47 | Working on file S2_percentile_UTM_334-0000000000-0000046592.tif
	29/10/2020 15:46:47 | Working on file S2_percentile_UTM_334-0000000000-0000023296.tif
	29/10/2020 15:46:48 | Working on file S2_percentile_UTM_334-0000000000-0000000000.tif
29/10/2020 15:46:49 | Working on tile 35T
29/10/2020 15:46:54 | 12 files to process
	29/10/2020 15:46:54 | Working on file S2_percentile_UTM_274-0000069888-0000046592.tif
	29/10/2020 15:46:55 | Working on file S2_percentile_UTM_274-0000069888-0000023296.tif
	29/10/2020 15:46:55 | Working on file S2_percentile_UTM_274-0000069888-0000000000.tif
	29/10/2020 15:46:56 | Working on file S2_percentile_UTM_274-0000046592-0000046592.tif
	29/10/2020 15:46:56 | Working on file S2_percentile_UTM_274-0000046592-0000023296.tif
	29/10/2020 15:46:57 | Working on file S2_percentile_UTM_274-0000046592-0000000000.tif
	29/10/2020 15:46:58 | Working on file S2_percentile_UTM_274-0000023296-0000046592.tif
	29/10/2020 15:46:58 | Working on file S2_percentile_UTM_274-0000023296-0000023296.tif
	29/10/2020 15:46:59 | Working on file S2_percentile_UTM_274-0000023296-0000000000.tif
	29/10/2020 15:47:00 | Working on file S2_percentile_UTM_274-0000000000-0000046592.tif
	29/10/2020 15:47:00 | Working on file S2_percentile_UTM_274-0000000000-0000023296.tif
	29/10/2020 15:47:01 | Working on file S2_percentile_UTM_274-0000000000-0000000000.tif
29/10/2020 15:47:01 | Working on tile 35U
29/10/2020 15:47:08 | 8 files to process
	29/10/2020 15:47:08 | Working on file S2_percentile_UTM_214-0000069888-0000023296.tif
	29/10/2020 15:47:09 | Working on file S2_percentile_UTM_214-0000069888-0000000000.tif
	29/10/2020 15:47:09 | Working on file S2_percentile_UTM_214-0000046592-0000023296.tif
	29/10/2020 15:47:10 | Working on file S2_percentile_UTM_214-0000046592-0000000000.tif
	29/10/2020 15:47:11 | Working on file S2_percentile_UTM_214-0000023296-0000023296.tif
	29/10/2020 15:47:11 | Working on file S2_percentile_UTM_214-0000023296-0000000000.tif
	29/10/2020 15:47:12 | Working on file S2_percentile_UTM_214-0000000000-0000023296.tif
	29/10/2020 15:47:12 | Working on file S2_percentile_UTM_214-0000000000-0000000000.tif
29/10/2020 15:47:13 | Working on tile 35V
29/10/2020 15:47:18 | 8 files to process
	29/10/2020 15:47:18 | Working on file S2_percentile_30_UTM_154-0000069888-0000023296.tif
	29/10/2020 15:47:19 | Working on file S2_percentile_30_UTM_154-0000069888-0000000000.tif
	29/10/2020 15:47:19 | Working on file S2_percentile_30_UTM_154-0000046592-0000023296.tif
	29/10/2020 15:47:20 | Working on file S2_percentile_30_UTM_154-0000046592-0000000000.tif
	29/10/2020 15:47:21 | Working on file S2_percentile_30_UTM_154-0000023296-0000023296.tif
	29/10/2020 15:47:21 | Working on file S2_percentile_30_UTM_154-0000023296-0000000000.tif
	29/10/2020 15:47:22 | Working on file S2_percentile_30_UTM_154-0000000000-0000023296.tif
	29/10/2020 15:47:22 | Working on file S2_percentile_30_UTM_154-0000000000-0000000000.tif
29/10/2020 15:47:23 | Working on tile 35W
29/10/2020 15:47:31 | 8 files to process
	29/10/2020 15:47:31 | Working on file S2_percentile_30_UTM_94-0000069888-0000023296.tif
	29/10/2020 15:47:31 | Working on file S2_percentile_30_UTM_94-0000069888-0000000000.tif
	29/10/2020 15:47:32 | Working on file S2_percentile_30_UTM_94-0000046592-0000023296.tif
	29/10/2020 15:47:32 | Working on file S2_percentile_30_UTM_94-0000046592-0000000000.tif
	29/10/2020 15:47:33 | Working on file S2_percentile_30_UTM_94-0000023296-0000023296.tif
	29/10/2020 15:47:33 | Working on file S2_percentile_30_UTM_94-0000023296-0000000000.tif
	29/10/2020 15:47:35 | Working on file S2_percentile_30_UTM_94-0000000000-0000023296.tif
	29/10/2020 15:47:35 | Working on file S2_percentile_30_UTM_94-0000000000-0000000000.tif
29/10/2020 15:47:36 | Working on tile 35X
29/10/2020 15:47:42 | 12 files to process
	29/10/2020 15:47:42 | Working on file S2_percentile_30_UTM_35-0000116480-0000023296.tif
	29/10/2020 15:47:42 | Working on file S2_percentile_30_UTM_35-0000116480-0000000000.tif
	29/10/2020 15:47:43 | Working on file S2_percentile_30_UTM_35-0000093184-0000023296.tif
	29/10/2020 15:47:44 | Working on file S2_percentile_30_UTM_35-0000093184-0000000000.tif
	29/10/2020 15:47:44 | Working on file S2_percentile_30_UTM_35-0000069888-0000023296.tif
	29/10/2020 15:47:45 | Working on file S2_percentile_30_UTM_35-0000069888-0000000000.tif
	29/10/2020 15:47:45 | Working on file S2_percentile_30_UTM_35-0000046592-0000023296.tif
	29/10/2020 15:47:46 | Working on file S2_percentile_30_UTM_35-0000046592-0000000000.tif
	29/10/2020 15:47:47 | Working on file S2_percentile_30_UTM_35-0000023296-0000023296.tif
	29/10/2020 15:47:47 | Working on file S2_percentile_30_UTM_35-0000023296-0000000000.tif
	29/10/2020 15:47:48 | Working on file S2_percentile_30_UTM_35-0000000000-0000023296.tif
	29/10/2020 15:47:48 | Working on file S2_percentile_30_UTM_35-0000000000-0000000000.tif
29/10/2020 15:47:49 | Working on tile 36J
29/10/2020 15:47:55 | 11 files to process
	29/10/2020 15:47:55 | Working on file S2_percentile_UTM_815-0000069888-0000023296.tif
	29/10/2020 15:47:56 | Working on file S2_percentile_UTM_815-0000069888-0000000000.tif
	29/10/2020 15:47:57 | Working on file S2_percentile_UTM_815-0000046592-0000046592.tif
	29/10/2020 15:47:58 | Working on file S2_percentile_UTM_815-0000046592-0000023296.tif
	29/10/2020 15:47:58 | Working on file S2_percentile_UTM_815-0000046592-0000000000.tif
	29/10/2020 15:47:59 | Working on file S2_percentile_UTM_815-0000023296-0000046592.tif
	29/10/2020 15:48:00 | Working on file S2_percentile_UTM_815-0000023296-0000023296.tif
	29/10/2020 15:48:00 | Working on file S2_percentile_UTM_815-0000023296-0000000000.tif
	29/10/2020 15:48:01 | Working on file S2_percentile_UTM_815-0000000000-0000046592.tif
	29/10/2020 15:48:01 | Working on file S2_percentile_UTM_815-0000000000-0000023296.tif
	29/10/2020 15:48:02 | Working on file S2_percentile_UTM_815-0000000000-0000000000.tif
29/10/2020 15:48:03 | Working on tile 36K
29/10/2020 15:48:08 | 12 files to process
	29/10/2020 15:48:08 | Working on file S2_percentile_UTM_755-0000069888-0000046592.tif
	29/10/2020 15:48:09 | Working on file S2_percentile_UTM_755-0000069888-0000023296.tif
	29/10/2020 15:48:10 | Working on file S2_percentile_UTM_755-0000069888-0000000000.tif
	29/10/2020 15:48:10 | Working on file S2_percentile_UTM_755-0000046592-0000046592.tif
	29/10/2020 15:48:11 | Working on file S2_percentile_UTM_755-0000046592-0000023296.tif
	29/10/2020 15:48:11 | Working on file S2_percentile_UTM_755-0000046592-0000000000.tif
	29/10/2020 15:48:12 | Working on file S2_percentile_UTM_755-0000023296-0000046592.tif
	29/10/2020 15:48:12 | Working on file S2_percentile_UTM_755-0000023296-0000023296.tif
	29/10/2020 15:48:13 | Working on file S2_percentile_UTM_755-0000023296-0000000000.tif
	29/10/2020 15:48:13 | Working on file S2_percentile_UTM_755-0000000000-0000046592.tif
	29/10/2020 15:48:14 | Working on file S2_percentile_UTM_755-0000000000-0000023296.tif
	29/10/2020 15:48:15 | Working on file S2_percentile_UTM_755-0000000000-0000000000.tif
29/10/2020 15:48:15 | Working on tile 36L
29/10/2020 15:48:20 | 12 files to process
	29/10/2020 15:48:20 | Working on file S2_percentile_UTM_695-0000069888-0000046592.tif
	29/10/2020 15:48:21 | Working on file S2_percentile_UTM_695-0000069888-0000023296.tif
	29/10/2020 15:48:21 | Working on file S2_percentile_UTM_695-0000069888-0000000000.tif
	29/10/2020 15:48:22 | Working on file S2_percentile_UTM_695-0000046592-0000046592.tif
	29/10/2020 15:48:23 | Working on file S2_percentile_UTM_695-0000046592-0000023296.tif
	29/10/2020 15:48:23 | Working on file S2_percentile_UTM_695-0000046592-0000000000.tif
	29/10/2020 15:48:24 | Working on file S2_percentile_UTM_695-0000023296-0000046592.tif
	29/10/2020 15:48:25 | Working on file S2_percentile_UTM_695-0000023296-0000023296.tif
	29/10/2020 15:48:25 | Working on file S2_percentile_UTM_695-0000023296-0000000000.tif
	29/10/2020 15:48:26 | Working on file S2_percentile_UTM_695-0000000000-0000046592.tif
	29/10/2020 15:48:26 | Working on file S2_percentile_UTM_695-0000000000-0000023296.tif
	29/10/2020 15:48:27 | Working on file S2_percentile_UTM_695-0000000000-0000000000.tif
29/10/2020 15:48:28 | Working on tile 36M
29/10/2020 15:48:34 | 12 files to process
	29/10/2020 15:48:34 | Working on file S2_percentile_UTM_635_5perct-0000069888-0000046592.tif
	29/10/2020 15:48:35 | Working on file S2_percentile_UTM_635_5perct-0000069888-0000023296.tif
	29/10/2020 15:48:35 | Working on file S2_percentile_UTM_635_5perct-0000069888-0000000000.tif
	29/10/2020 15:48:36 | Working on file S2_percentile_UTM_635_5perct-0000046592-0000046592.tif
	29/10/2020 15:48:36 | Working on file S2_percentile_UTM_635_5perct-0000046592-0000023296.tif
	29/10/2020 15:48:37 | Working on file S2_percentile_UTM_635_5perct-0000046592-0000000000.tif
	29/10/2020 15:48:38 | Working on file S2_percentile_UTM_635_5perct-0000023296-0000046592.tif
	29/10/2020 15:48:39 | Working on file S2_percentile_UTM_635_5perct-0000023296-0000023296.tif
	29/10/2020 15:48:39 | Working on file S2_percentile_UTM_635_5perct-0000023296-0000000000.tif
	29/10/2020 15:48:40 | Working on file S2_percentile_UTM_635_5perct-0000000000-0000046592.tif
	29/10/2020 15:48:41 | Working on file S2_percentile_UTM_635_5perct-0000000000-0000023296.tif
	29/10/2020 15:48:41 | Working on file S2_percentile_UTM_635_5perct-0000000000-0000000000.tif
29/10/2020 15:48:42 | Working on tile 36N
	36N_UTM.vrt contains no GeoTIFF, attempting 36N.vrt
29/10/2020 15:48:44 | 12 files to process
	29/10/2020 15:48:44 | Working on file S2_percentile_UTM_575-0000069888-0000046592.tif
	29/10/2020 15:48:45 | Working on file S2_percentile_UTM_575-0000069888-0000023296.tif
	29/10/2020 15:48:46 | Working on file S2_percentile_UTM_575-0000069888-0000000000.tif
	29/10/2020 15:48:46 | Working on file S2_percentile_UTM_575-0000046592-0000046592.tif
	29/10/2020 15:48:47 | Working on file S2_percentile_UTM_575-0000046592-0000023296.tif
	29/10/2020 15:48:47 | Working on file S2_percentile_UTM_575-0000046592-0000000000.tif
	29/10/2020 15:48:48 | Working on file S2_percentile_UTM_575-0000023296-0000046592.tif
	29/10/2020 15:48:49 | Working on file S2_percentile_UTM_575-0000023296-0000023296.tif
	29/10/2020 15:48:50 | Working on file S2_percentile_UTM_575-0000023296-0000000000.tif
	29/10/2020 15:48:50 | Working on file S2_percentile_UTM_575-0000000000-0000046592.tif
	29/10/2020 15:48:51 | Working on file S2_percentile_UTM_575-0000000000-0000023296.tif
	29/10/2020 15:48:51 | Working on file S2_percentile_UTM_575-0000000000-0000000000.tif
29/10/2020 15:48:52 | Working on tile 36P
	36P_UTM.vrt contains no GeoTIFF, attempting 36P.vrt
29/10/2020 15:48:55 | 12 files to process
	29/10/2020 15:48:55 | Working on file S2_percentile_UTM_515-0000069888-0000046592.tif
	29/10/2020 15:48:55 | Working on file S2_percentile_UTM_515-0000069888-0000023296.tif
	29/10/2020 15:48:56 | Working on file S2_percentile_UTM_515-0000069888-0000000000.tif
	29/10/2020 15:48:57 | Working on file S2_percentile_UTM_515-0000046592-0000046592.tif
	29/10/2020 15:48:57 | Working on file S2_percentile_UTM_515-0000046592-0000023296.tif
	29/10/2020 15:48:58 | Working on file S2_percentile_UTM_515-0000046592-0000000000.tif
	29/10/2020 15:48:59 | Working on file S2_percentile_UTM_515-0000023296-0000046592.tif
	29/10/2020 15:48:59 | Working on file S2_percentile_UTM_515-0000023296-0000023296.tif
	29/10/2020 15:49:01 | Working on file S2_percentile_UTM_515-0000023296-0000000000.tif
	29/10/2020 15:49:02 | Working on file S2_percentile_UTM_515-0000000000-0000046592.tif
	29/10/2020 15:49:02 | Working on file S2_percentile_UTM_515-0000000000-0000023296.tif
	29/10/2020 15:49:03 | Working on file S2_percentile_UTM_515-0000000000-0000000000.tif
29/10/2020 15:49:04 | Working on tile 36Q
29/10/2020 15:49:09 | 12 files to process
	29/10/2020 15:49:09 | Working on file S2_percentile_UTM_455-0000069888-0000046592.tif
	29/10/2020 15:49:09 | Working on file S2_percentile_UTM_455-0000069888-0000023296.tif
	29/10/2020 15:49:10 | Working on file S2_percentile_UTM_455-0000069888-0000000000.tif
	29/10/2020 15:49:11 | Working on file S2_percentile_UTM_455-0000046592-0000046592.tif
	29/10/2020 15:49:11 | Working on file S2_percentile_UTM_455-0000046592-0000023296.tif
	29/10/2020 15:49:12 | Working on file S2_percentile_UTM_455-0000046592-0000000000.tif
	29/10/2020 15:49:13 | Working on file S2_percentile_UTM_455-0000023296-0000046592.tif
	29/10/2020 15:49:13 | Working on file S2_percentile_UTM_455-0000023296-0000023296.tif
	29/10/2020 15:49:14 | Working on file S2_percentile_UTM_455-0000023296-0000000000.tif
	29/10/2020 15:49:15 | Working on file S2_percentile_UTM_455-0000000000-0000046592.tif
	29/10/2020 15:49:15 | Working on file S2_percentile_UTM_455-0000000000-0000023296.tif
	29/10/2020 15:49:16 | Working on file S2_percentile_UTM_455-0000000000-0000000000.tif
29/10/2020 15:49:17 | Working on tile 36R
	36R_UTM.vrt contains no GeoTIFF, attempting 36R.vrt
29/10/2020 15:49:19 | 12 files to process
	29/10/2020 15:49:19 | Working on file S2_percentile_30_UTM_395-0000069888-0000046592.tif
	29/10/2020 15:49:20 | Working on file S2_percentile_30_UTM_395-0000069888-0000023296.tif
	29/10/2020 15:49:20 | Working on file S2_percentile_30_UTM_395-0000069888-0000000000.tif
	29/10/2020 15:49:21 | Working on file S2_percentile_30_UTM_395-0000046592-0000046592.tif
	29/10/2020 15:49:22 | Working on file S2_percentile_30_UTM_395-0000046592-0000023296.tif
	29/10/2020 15:49:22 | Working on file S2_percentile_30_UTM_395-0000046592-0000000000.tif
	29/10/2020 15:49:23 | Working on file S2_percentile_30_UTM_395-0000023296-0000046592.tif
	29/10/2020 15:49:24 | Working on file S2_percentile_30_UTM_395-0000023296-0000023296.tif
	29/10/2020 15:49:24 | Working on file S2_percentile_30_UTM_395-0000023296-0000000000.tif
	29/10/2020 15:49:26 | Working on file S2_percentile_30_UTM_395-0000000000-0000046592.tif
	29/10/2020 15:49:28 | Working on file S2_percentile_30_UTM_395-0000000000-0000023296.tif
	29/10/2020 15:49:29 | Working on file S2_percentile_30_UTM_395-0000000000-0000000000.tif
29/10/2020 15:49:31 | Working on tile 36S
29/10/2020 15:49:38 | 12 files to process
	29/10/2020 15:49:38 | Working on file S2_percentile_UTM_335-0000069888-0000046592.tif
	29/10/2020 15:49:39 | Working on file S2_percentile_UTM_335-0000069888-0000023296.tif
	29/10/2020 15:49:40 | Working on file S2_percentile_UTM_335-0000069888-0000000000.tif
	29/10/2020 15:49:41 | Working on file S2_percentile_UTM_335-0000046592-0000046592.tif
	29/10/2020 15:49:41 | Working on file S2_percentile_UTM_335-0000046592-0000023296.tif
	29/10/2020 15:49:43 | Working on file S2_percentile_UTM_335-0000046592-0000000000.tif
	29/10/2020 15:49:44 | Working on file S2_percentile_UTM_335-0000023296-0000046592.tif
	29/10/2020 15:49:44 | Working on file S2_percentile_UTM_335-0000023296-0000023296.tif
	29/10/2020 15:49:45 | Working on file S2_percentile_UTM_335-0000023296-0000000000.tif
	29/10/2020 15:49:46 | Working on file S2_percentile_UTM_335-0000000000-0000046592.tif
	29/10/2020 15:49:46 | Working on file S2_percentile_UTM_335-0000000000-0000023296.tif
	29/10/2020 15:49:47 | Working on file S2_percentile_UTM_335-0000000000-0000000000.tif
29/10/2020 15:49:48 | Working on tile 36T
29/10/2020 15:49:55 | 12 files to process
	29/10/2020 15:49:55 | Working on file S2_percentile_UTM_275-0000069888-0000046592.tif
	29/10/2020 15:49:55 | Working on file S2_percentile_UTM_275-0000069888-0000023296.tif
	29/10/2020 15:49:56 | Working on file S2_percentile_UTM_275-0000069888-0000000000.tif
	29/10/2020 15:49:57 | Working on file S2_percentile_UTM_275-0000046592-0000046592.tif
	29/10/2020 15:49:58 | Working on file S2_percentile_UTM_275-0000046592-0000023296.tif
	29/10/2020 15:49:59 | Working on file S2_percentile_UTM_275-0000046592-0000000000.tif
	29/10/2020 15:50:01 | Working on file S2_percentile_UTM_275-0000023296-0000046592.tif
	29/10/2020 15:50:01 | Working on file S2_percentile_UTM_275-0000023296-0000023296.tif
	29/10/2020 15:50:04 | Working on file S2_percentile_UTM_275-0000023296-0000000000.tif
	29/10/2020 15:50:04 | Working on file S2_percentile_UTM_275-0000000000-0000046592.tif
	29/10/2020 15:50:05 | Working on file S2_percentile_UTM_275-0000000000-0000023296.tif
	29/10/2020 15:50:06 | Working on file S2_percentile_UTM_275-0000000000-0000000000.tif
29/10/2020 15:50:07 | Working on tile 36U
29/10/2020 15:50:15 | 8 files to process
	29/10/2020 15:50:15 | Working on file S2_percentile_UTM_215-0000069888-0000023296.tif
	29/10/2020 15:50:16 | Working on file S2_percentile_UTM_215-0000069888-0000000000.tif
	29/10/2020 15:50:16 | Working on file S2_percentile_UTM_215-0000046592-0000023296.tif
	29/10/2020 15:50:17 | Working on file S2_percentile_UTM_215-0000046592-0000000000.tif
	29/10/2020 15:50:18 | Working on file S2_percentile_UTM_215-0000023296-0000023296.tif
	29/10/2020 15:50:19 | Working on file S2_percentile_UTM_215-0000023296-0000000000.tif
	29/10/2020 15:50:20 | Working on file S2_percentile_UTM_215-0000000000-0000023296.tif
	29/10/2020 15:50:21 | Working on file S2_percentile_UTM_215-0000000000-0000000000.tif
29/10/2020 15:50:21 | Working on tile 36V
29/10/2020 15:50:28 | 8 files to process
	29/10/2020 15:50:28 | Working on file S2_percentile_UTM_155-0000069888-0000023296.tif
	29/10/2020 15:50:29 | Working on file S2_percentile_UTM_155-0000069888-0000000000.tif
	29/10/2020 15:50:30 | Working on file S2_percentile_UTM_155-0000046592-0000023296.tif
	29/10/2020 15:50:32 | Working on file S2_percentile_UTM_155-0000046592-0000000000.tif
	29/10/2020 15:50:32 | Working on file S2_percentile_UTM_155-0000023296-0000023296.tif
	29/10/2020 15:50:33 | Working on file S2_percentile_UTM_155-0000023296-0000000000.tif
	29/10/2020 15:50:34 | Working on file S2_percentile_UTM_155-0000000000-0000023296.tif
	29/10/2020 15:50:36 | Working on file S2_percentile_UTM_155-0000000000-0000000000.tif
29/10/2020 15:50:37 | Working on tile 36W
29/10/2020 15:50:51 | 8 files to process
	29/10/2020 15:50:51 | Working on file S2_percentile_30_UTM_95-0000069888-0000023296.tif
	29/10/2020 15:50:52 | Working on file S2_percentile_30_UTM_95-0000069888-0000000000.tif
	29/10/2020 15:50:53 | Working on file S2_percentile_30_UTM_95-0000046592-0000023296.tif
	29/10/2020 15:50:54 | Working on file S2_percentile_30_UTM_95-0000046592-0000000000.tif
	29/10/2020 15:50:55 | Working on file S2_percentile_30_UTM_95-0000023296-0000023296.tif
	29/10/2020 15:50:55 | Working on file S2_percentile_30_UTM_95-0000023296-0000000000.tif
	29/10/2020 15:50:56 | Working on file S2_percentile_30_UTM_95-0000000000-0000023296.tif
	29/10/2020 15:50:57 | Working on file S2_percentile_30_UTM_95-0000000000-0000000000.tif
29/10/2020 15:50:59 | Working on tile 37G
29/10/2020 15:51:06 | 4 files to process
	29/10/2020 15:51:06 | Working on file S2_percentile_30_UTM_936-0000069888-0000046592.tif
	29/10/2020 15:51:07 | Working on file S2_percentile_30_UTM_936-0000069888-0000023296.tif
	29/10/2020 15:51:07 | Working on file S2_percentile_30_UTM_936-0000069888-0000000000.tif
	29/10/2020 15:51:08 | Working on file S2_percentile_30_UTM_936-0000046592-0000000000.tif
29/10/2020 15:51:09 | Working on tile 37K
	37K_UTM.vrt contains no GeoTIFF, attempting 37K.vrt
29/10/2020 15:51:11 | 12 files to process
	29/10/2020 15:51:11 | Working on file S2_percentile_UTM_756-0000069888-0000046592.tif
	29/10/2020 15:51:12 | Working on file S2_percentile_UTM_756-0000069888-0000023296.tif
	29/10/2020 15:51:13 | Working on file S2_percentile_UTM_756-0000069888-0000000000.tif
	29/10/2020 15:51:14 | Working on file S2_percentile_UTM_756-0000046592-0000046592.tif
	29/10/2020 15:51:14 | Working on file S2_percentile_UTM_756-0000046592-0000023296.tif
	29/10/2020 15:51:15 | Working on file S2_percentile_UTM_756-0000046592-0000000000.tif
	29/10/2020 15:51:16 | Working on file S2_percentile_UTM_756-0000023296-0000046592.tif
	29/10/2020 15:51:16 | Working on file S2_percentile_UTM_756-0000023296-0000023296.tif
	29/10/2020 15:51:17 | Working on file S2_percentile_UTM_756-0000023296-0000000000.tif
	29/10/2020 15:51:18 | Working on file S2_percentile_UTM_756-0000000000-0000046592.tif
	29/10/2020 15:51:19 | Working on file S2_percentile_UTM_756-0000000000-0000023296.tif
	29/10/2020 15:51:20 | Working on file S2_percentile_UTM_756-0000000000-0000000000.tif
29/10/2020 15:51:21 | Working on tile 37L
29/10/2020 15:51:28 | 12 files to process
	29/10/2020 15:51:28 | Working on file S2_percentile_UTM_696-0000069888-0000046592.tif
	29/10/2020 15:51:29 | Working on file S2_percentile_UTM_696-0000069888-0000023296.tif
	29/10/2020 15:51:30 | Working on file S2_percentile_UTM_696-0000069888-0000000000.tif
	29/10/2020 15:51:30 | Working on file S2_percentile_UTM_696-0000046592-0000046592.tif
	29/10/2020 15:51:31 | Working on file S2_percentile_UTM_696-0000046592-0000023296.tif
	29/10/2020 15:51:32 | Working on file S2_percentile_UTM_696-0000046592-0000000000.tif
	29/10/2020 15:51:33 | Working on file S2_percentile_UTM_696-0000023296-0000046592.tif
	29/10/2020 15:51:34 | Working on file S2_percentile_UTM_696-0000023296-0000023296.tif
	29/10/2020 15:51:35 | Working on file S2_percentile_UTM_696-0000023296-0000000000.tif
	29/10/2020 15:51:36 | Working on file S2_percentile_UTM_696-0000000000-0000046592.tif
	29/10/2020 15:51:37 | Working on file S2_percentile_UTM_696-0000000000-0000023296.tif
	29/10/2020 15:51:38 | Working on file S2_percentile_UTM_696-0000000000-0000000000.tif
29/10/2020 15:51:38 | Working on tile 37M
29/10/2020 15:51:45 | 12 files to process
	29/10/2020 15:51:45 | Working on file S2_percentile_UTM_636-0000069888-0000046592.tif
	29/10/2020 15:51:46 | Working on file S2_percentile_UTM_636-0000069888-0000023296.tif
	29/10/2020 15:51:46 | Working on file S2_percentile_UTM_636-0000069888-0000000000.tif
	29/10/2020 15:51:47 | Working on file S2_percentile_UTM_636-0000046592-0000046592.tif
	29/10/2020 15:51:48 | Working on file S2_percentile_UTM_636-0000046592-0000023296.tif
	29/10/2020 15:51:49 | Working on file S2_percentile_UTM_636-0000046592-0000000000.tif
	29/10/2020 15:51:50 | Working on file S2_percentile_UTM_636-0000023296-0000046592.tif
	29/10/2020 15:51:50 | Working on file S2_percentile_UTM_636-0000023296-0000023296.tif
	29/10/2020 15:51:51 | Working on file S2_percentile_UTM_636-0000023296-0000000000.tif
	29/10/2020 15:51:52 | Working on file S2_percentile_UTM_636-0000000000-0000046592.tif
	29/10/2020 15:51:53 | Working on file S2_percentile_UTM_636-0000000000-0000023296.tif
	29/10/2020 15:51:54 | Working on file S2_percentile_UTM_636-0000000000-0000000000.tif
29/10/2020 15:51:55 | Working on tile 37N
29/10/2020 15:52:01 | 12 files to process
	29/10/2020 15:52:01 | Working on file S2_percentile_UTM_576-0000069888-0000046592.tif
	29/10/2020 15:52:02 | Working on file S2_percentile_UTM_576-0000069888-0000023296.tif
	29/10/2020 15:52:03 | Working on file S2_percentile_UTM_576-0000069888-0000000000.tif
	29/10/2020 15:52:04 | Working on file S2_percentile_UTM_576-0000046592-0000046592.tif
	29/10/2020 15:52:05 | Working on file S2_percentile_UTM_576-0000046592-0000023296.tif
	29/10/2020 15:52:06 | Working on file S2_percentile_UTM_576-0000046592-0000000000.tif
	29/10/2020 15:52:07 | Working on file S2_percentile_UTM_576-0000023296-0000046592.tif
	29/10/2020 15:52:08 | Working on file S2_percentile_UTM_576-0000023296-0000023296.tif
	29/10/2020 15:52:09 | Working on file S2_percentile_UTM_576-0000023296-0000000000.tif
	29/10/2020 15:52:10 | Working on file S2_percentile_UTM_576-0000000000-0000046592.tif
	29/10/2020 15:52:10 | Working on file S2_percentile_UTM_576-0000000000-0000023296.tif
	29/10/2020 15:52:11 | Working on file S2_percentile_UTM_576-0000000000-0000000000.tif
29/10/2020 15:52:12 | Working on tile 37P
29/10/2020 15:52:20 | 12 files to process
	29/10/2020 15:52:20 | Working on file S2_percentile_UTM_516-0000069888-0000046592.tif
	29/10/2020 15:52:20 | Working on file S2_percentile_UTM_516-0000069888-0000023296.tif
	29/10/2020 15:52:21 | Working on file S2_percentile_UTM_516-0000069888-0000000000.tif
	29/10/2020 15:52:22 | Working on file S2_percentile_UTM_516-0000046592-0000046592.tif
	29/10/2020 15:52:24 | Working on file S2_percentile_UTM_516-0000046592-0000023296.tif
	29/10/2020 15:52:25 | Working on file S2_percentile_UTM_516-0000046592-0000000000.tif
	29/10/2020 15:52:25 | Working on file S2_percentile_UTM_516-0000023296-0000046592.tif
	29/10/2020 15:52:26 | Working on file S2_percentile_UTM_516-0000023296-0000023296.tif
	29/10/2020 15:52:27 | Working on file S2_percentile_UTM_516-0000023296-0000000000.tif
	29/10/2020 15:52:28 | Working on file S2_percentile_UTM_516-0000000000-0000046592.tif
	29/10/2020 15:52:28 | Working on file S2_percentile_UTM_516-0000000000-0000023296.tif
	29/10/2020 15:52:29 | Working on file S2_percentile_UTM_516-0000000000-0000000000.tif
29/10/2020 15:52:30 | Working on tile 37Q
	37Q_UTM.vrt contains no GeoTIFF, attempting 37Q.vrt
29/10/2020 15:52:33 | 12 files to process
	29/10/2020 15:52:33 | Working on file S2_percentile_UTM_456-0000069888-0000046592.tif
	29/10/2020 15:52:34 | Working on file S2_percentile_UTM_456-0000069888-0000023296.tif
	29/10/2020 15:52:34 | Working on file S2_percentile_UTM_456-0000069888-0000000000.tif
	29/10/2020 15:52:35 | Working on file S2_percentile_UTM_456-0000046592-0000046592.tif
	29/10/2020 15:52:36 | Working on file S2_percentile_UTM_456-0000046592-0000023296.tif
	29/10/2020 15:52:37 | Working on file S2_percentile_UTM_456-0000046592-0000000000.tif
	29/10/2020 15:52:37 | Working on file S2_percentile_UTM_456-0000023296-0000046592.tif
	29/10/2020 15:52:38 | Working on file S2_percentile_UTM_456-0000023296-0000023296.tif
	29/10/2020 15:52:40 | Working on file S2_percentile_UTM_456-0000023296-0000000000.tif
	29/10/2020 15:52:41 | Working on file S2_percentile_UTM_456-0000000000-0000046592.tif
	29/10/2020 15:52:41 | Working on file S2_percentile_UTM_456-0000000000-0000023296.tif
	29/10/2020 15:52:42 | Working on file S2_percentile_UTM_456-0000000000-0000000000.tif
29/10/2020 15:52:43 | Working on tile 37R
	37R_UTM.vrt contains no GeoTIFF, attempting 37R.vrt
29/10/2020 15:52:46 | 12 files to process
	29/10/2020 15:52:46 | Working on file S2_percentile_UTM_396-0000069888-0000046592.tif
	29/10/2020 15:52:47 | Working on file S2_percentile_UTM_396-0000069888-0000023296.tif
	29/10/2020 15:52:48 | Working on file S2_percentile_UTM_396-0000069888-0000000000.tif
	29/10/2020 15:52:48 | Working on file S2_percentile_UTM_396-0000046592-0000046592.tif
	29/10/2020 15:52:49 | Working on file S2_percentile_UTM_396-0000046592-0000023296.tif
	29/10/2020 15:52:50 | Working on file S2_percentile_UTM_396-0000046592-0000000000.tif
	29/10/2020 15:52:51 | Working on file S2_percentile_UTM_396-0000023296-0000046592.tif
	29/10/2020 15:52:51 | Working on file S2_percentile_UTM_396-0000023296-0000023296.tif
	29/10/2020 15:52:52 | Working on file S2_percentile_UTM_396-0000023296-0000000000.tif
	29/10/2020 15:52:53 | Working on file S2_percentile_UTM_396-0000000000-0000046592.tif
	29/10/2020 15:52:54 | Working on file S2_percentile_UTM_396-0000000000-0000023296.tif
	29/10/2020 15:52:55 | Working on file S2_percentile_UTM_396-0000000000-0000000000.tif
29/10/2020 15:52:56 | Working on tile 37S
29/10/2020 15:53:02 | 12 files to process
	29/10/2020 15:53:02 | Working on file S2_percentile_UTM_336-0000069888-0000046592.tif
	29/10/2020 15:53:03 | Working on file S2_percentile_UTM_336-0000069888-0000023296.tif
	29/10/2020 15:53:04 | Working on file S2_percentile_UTM_336-0000069888-0000000000.tif
	29/10/2020 15:53:04 | Working on file S2_percentile_UTM_336-0000046592-0000046592.tif
	29/10/2020 15:53:05 | Working on file S2_percentile_UTM_336-0000046592-0000023296.tif
	29/10/2020 15:53:06 | Working on file S2_percentile_UTM_336-0000046592-0000000000.tif
	29/10/2020 15:53:07 | Working on file S2_percentile_UTM_336-0000023296-0000046592.tif
	29/10/2020 15:53:07 | Working on file S2_percentile_UTM_336-0000023296-0000023296.tif
	29/10/2020 15:53:08 | Working on file S2_percentile_UTM_336-0000023296-0000000000.tif
	29/10/2020 15:53:09 | Working on file S2_percentile_UTM_336-0000000000-0000046592.tif
	29/10/2020 15:53:10 | Working on file S2_percentile_UTM_336-0000000000-0000023296.tif
	29/10/2020 15:53:11 | Working on file S2_percentile_UTM_336-0000000000-0000000000.tif
29/10/2020 15:53:12 | Working on tile 37T
	37T_UTM.vrt contains no GeoTIFF, attempting 37T.vrt
29/10/2020 15:53:15 | 12 files to process
	29/10/2020 15:53:15 | Working on file S2_percentile_UTM_276-0000069888-0000046592.tif
	29/10/2020 15:53:15 | Working on file S2_percentile_UTM_276-0000069888-0000023296.tif
	29/10/2020 15:53:16 | Working on file S2_percentile_UTM_276-0000069888-0000000000.tif
	29/10/2020 15:53:17 | Working on file S2_percentile_UTM_276-0000046592-0000046592.tif
	29/10/2020 15:53:18 | Working on file S2_percentile_UTM_276-0000046592-0000023296.tif
	29/10/2020 15:53:19 | Working on file S2_percentile_UTM_276-0000046592-0000000000.tif
	29/10/2020 15:53:20 | Working on file S2_percentile_UTM_276-0000023296-0000046592.tif
	29/10/2020 15:53:20 | Working on file S2_percentile_UTM_276-0000023296-0000023296.tif
	29/10/2020 15:53:21 | Working on file S2_percentile_UTM_276-0000023296-0000000000.tif
	29/10/2020 15:53:22 | Working on file S2_percentile_UTM_276-0000000000-0000046592.tif
	29/10/2020 15:53:23 | Working on file S2_percentile_UTM_276-0000000000-0000023296.tif
	29/10/2020 15:53:23 | Working on file S2_percentile_UTM_276-0000000000-0000000000.tif
29/10/2020 15:53:24 | Working on tile 37U
	37U_UTM.vrt contains no GeoTIFF, attempting 37U.vrt
29/10/2020 15:53:28 | 9 files to process
	29/10/2020 15:53:28 | Working on file S2_percentile_30_UTM_216-0000069888-0000046592.tif
	29/10/2020 15:53:28 | Working on file S2_percentile_30_UTM_216-0000069888-0000023296.tif
	29/10/2020 15:53:29 | Working on file S2_percentile_30_UTM_216-0000069888-0000000000.tif
	29/10/2020 15:53:30 | Working on file S2_percentile_30_UTM_216-0000046592-0000023296.tif
	29/10/2020 15:53:31 | Working on file S2_percentile_30_UTM_216-0000046592-0000000000.tif
	29/10/2020 15:53:32 | Working on file S2_percentile_30_UTM_216-0000023296-0000023296.tif
	29/10/2020 15:53:32 | Working on file S2_percentile_30_UTM_216-0000023296-0000000000.tif
	29/10/2020 15:53:33 | Working on file S2_percentile_30_UTM_216-0000000000-0000023296.tif
	29/10/2020 15:53:34 | Working on file S2_percentile_30_UTM_216-0000000000-0000000000.tif
29/10/2020 15:53:35 | Working on tile 37V
29/10/2020 15:53:41 | 8 files to process
	29/10/2020 15:53:41 | Working on file S2_percentile_30_UTM_156-0000069888-0000023296.tif
	29/10/2020 15:53:42 | Working on file S2_percentile_30_UTM_156-0000069888-0000000000.tif
	29/10/2020 15:53:42 | Working on file S2_percentile_30_UTM_156-0000046592-0000023296.tif
	29/10/2020 15:53:43 | Working on file S2_percentile_30_UTM_156-0000046592-0000000000.tif
	29/10/2020 15:53:45 | Working on file S2_percentile_30_UTM_156-0000023296-0000023296.tif
	29/10/2020 15:53:46 | Working on file S2_percentile_30_UTM_156-0000023296-0000000000.tif
	29/10/2020 15:53:47 | Working on file S2_percentile_30_UTM_156-0000000000-0000023296.tif
	29/10/2020 15:53:47 | Working on file S2_percentile_30_UTM_156-0000000000-0000000000.tif
29/10/2020 15:53:48 | Working on tile 37W
29/10/2020 15:53:54 | 8 files to process
	29/10/2020 15:53:54 | Working on file S2_percentile_30_UTM_96-0000069888-0000023296.tif
	29/10/2020 15:53:55 | Working on file S2_percentile_30_UTM_96-0000069888-0000000000.tif
	29/10/2020 15:53:56 | Working on file S2_percentile_30_UTM_96-0000046592-0000023296.tif
	29/10/2020 15:53:56 | Working on file S2_percentile_30_UTM_96-0000046592-0000000000.tif
	29/10/2020 15:53:57 | Working on file S2_percentile_30_UTM_96-0000023296-0000023296.tif
	29/10/2020 15:53:58 | Working on file S2_percentile_30_UTM_96-0000023296-0000000000.tif
	29/10/2020 15:53:59 | Working on file S2_percentile_30_UTM_96-0000000000-0000023296.tif
	29/10/2020 15:54:00 | Working on file S2_percentile_30_UTM_96-0000000000-0000000000.tif
29/10/2020 15:54:01 | Working on tile 38J
29/10/2020 15:54:06 | 5 files to process
	29/10/2020 15:54:06 | Working on file S2_percentile_UTM_817-0000023296-0000046592.tif
	29/10/2020 15:54:07 | Working on file S2_percentile_UTM_817-0000023296-0000023296.tif
	29/10/2020 15:54:08 | Working on file S2_percentile_UTM_817-0000000000-0000046592.tif
	29/10/2020 15:54:09 | Working on file S2_percentile_UTM_817-0000000000-0000023296.tif
	29/10/2020 15:54:10 | Working on file S2_percentile_UTM_817-0000000000-0000000000.tif
29/10/2020 15:54:10 | Working on tile 38K
29/10/2020 15:54:17 | 12 files to process
	29/10/2020 15:54:17 | Working on file S2_percentile_30_UTM_757-0000069888-0000046592.tif
	29/10/2020 15:54:18 | Working on file S2_percentile_30_UTM_757-0000069888-0000023296.tif
	29/10/2020 15:54:19 | Working on file S2_percentile_30_UTM_757-0000069888-0000000000.tif
	29/10/2020 15:54:19 | Working on file S2_percentile_30_UTM_757-0000046592-0000046592.tif
	29/10/2020 15:54:20 | Working on file S2_percentile_30_UTM_757-0000046592-0000023296.tif
	29/10/2020 15:54:21 | Working on file S2_percentile_30_UTM_757-0000046592-0000000000.tif
	29/10/2020 15:54:22 | Working on file S2_percentile_30_UTM_757-0000023296-0000046592.tif
	29/10/2020 15:54:22 | Working on file S2_percentile_30_UTM_757-0000023296-0000023296.tif
	29/10/2020 15:54:23 | Working on file S2_percentile_30_UTM_757-0000023296-0000000000.tif
	29/10/2020 15:54:24 | Working on file S2_percentile_30_UTM_757-0000000000-0000046592.tif
	29/10/2020 15:54:25 | Working on file S2_percentile_30_UTM_757-0000000000-0000023296.tif
	29/10/2020 15:54:25 | Working on file S2_percentile_30_UTM_757-0000000000-0000000000.tif
29/10/2020 15:54:26 | Working on tile 38L
29/10/2020 15:54:33 | 12 files to process
	29/10/2020 15:54:33 | Working on file S2_percentile_UTM_697-0000069888-0000046592.tif
	29/10/2020 15:54:34 | Working on file S2_percentile_UTM_697-0000069888-0000023296.tif
	29/10/2020 15:54:35 | Working on file S2_percentile_UTM_697-0000069888-0000000000.tif
	29/10/2020 15:54:35 | Working on file S2_percentile_UTM_697-0000046592-0000046592.tif
	29/10/2020 15:54:36 | Working on file S2_percentile_UTM_697-0000046592-0000023296.tif
	29/10/2020 15:54:37 | Working on file S2_percentile_UTM_697-0000046592-0000000000.tif
	29/10/2020 15:54:38 | Working on file S2_percentile_UTM_697-0000023296-0000046592.tif
	29/10/2020 15:54:39 | Working on file S2_percentile_UTM_697-0000023296-0000023296.tif
	29/10/2020 15:54:39 | Working on file S2_percentile_UTM_697-0000023296-0000000000.tif
	29/10/2020 15:54:40 | Working on file S2_percentile_UTM_697-0000000000-0000046592.tif
	29/10/2020 15:54:41 | Working on file S2_percentile_UTM_697-0000000000-0000023296.tif
	29/10/2020 15:54:44 | Working on file S2_percentile_UTM_697-0000000000-0000000000.tif
29/10/2020 15:54:44 | Working on tile 38M
29/10/2020 15:54:51 | 7 files to process
	29/10/2020 15:54:51 | Working on file S2_percentile_UTM_637-0000069888-0000000000.tif
	29/10/2020 15:54:52 | Working on file S2_percentile_UTM_637-0000046592-0000000000.tif
	29/10/2020 15:54:53 | Working on file S2_percentile_UTM_637-0000023296-0000023296.tif
	29/10/2020 15:54:54 | Working on file S2_percentile_UTM_637-0000023296-0000000000.tif
	29/10/2020 15:54:55 | Working on file S2_percentile_UTM_637-0000000000-0000046592.tif
	29/10/2020 15:54:55 | Working on file S2_percentile_UTM_637-0000000000-0000023296.tif
	29/10/2020 15:54:56 | Working on file S2_percentile_UTM_637-0000000000-0000000000.tif
29/10/2020 15:54:57 | Working on tile 38N
	38N_UTM.vrt contains no GeoTIFF, attempting 38N.vrt
29/10/2020 15:54:59 | 12 files to process
	29/10/2020 15:54:59 | Working on file S2_percentile_UTM_577-0000069888-0000046592.tif
	29/10/2020 15:55:00 | Working on file S2_percentile_UTM_577-0000069888-0000023296.tif
	29/10/2020 15:55:01 | Working on file S2_percentile_UTM_577-0000069888-0000000000.tif
	29/10/2020 15:55:02 | Working on file S2_percentile_UTM_577-0000046592-0000046592.tif
	29/10/2020 15:55:04 | Working on file S2_percentile_UTM_577-0000046592-0000023296.tif
	29/10/2020 15:55:05 | Working on file S2_percentile_UTM_577-0000046592-0000000000.tif
	29/10/2020 15:55:06 | Working on file S2_percentile_UTM_577-0000023296-0000046592.tif
	29/10/2020 15:55:06 | Working on file S2_percentile_UTM_577-0000023296-0000023296.tif
	29/10/2020 15:55:07 | Working on file S2_percentile_UTM_577-0000023296-0000000000.tif
	29/10/2020 15:55:08 | Working on file S2_percentile_UTM_577-0000000000-0000046592.tif
	29/10/2020 15:55:09 | Working on file S2_percentile_UTM_577-0000000000-0000023296.tif
	29/10/2020 15:55:10 | Working on file S2_percentile_UTM_577-0000000000-0000000000.tif
29/10/2020 15:55:10 | Working on tile 38P
	38P_UTM.vrt contains no GeoTIFF, attempting 38P.vrt
29/10/2020 15:55:14 | 12 files to process
	29/10/2020 15:55:14 | Working on file S2_percentile_UTM_517-0000069888-0000046592.tif
	29/10/2020 15:55:15 | Working on file S2_percentile_UTM_517-0000069888-0000023296.tif
	29/10/2020 15:55:15 | Working on file S2_percentile_UTM_517-0000069888-0000000000.tif
	29/10/2020 15:55:16 | Working on file S2_percentile_UTM_517-0000046592-0000046592.tif
	29/10/2020 15:55:17 | Working on file S2_percentile_UTM_517-0000046592-0000023296.tif
	29/10/2020 15:55:17 | Working on file S2_percentile_UTM_517-0000046592-0000000000.tif
	29/10/2020 15:55:18 | Working on file S2_percentile_UTM_517-0000023296-0000046592.tif
	29/10/2020 15:55:19 | Working on file S2_percentile_UTM_517-0000023296-0000023296.tif
	29/10/2020 15:55:20 | Working on file S2_percentile_UTM_517-0000023296-0000000000.tif
	29/10/2020 15:55:21 | Working on file S2_percentile_UTM_517-0000000000-0000046592.tif
	29/10/2020 15:55:22 | Working on file S2_percentile_UTM_517-0000000000-0000023296.tif
	29/10/2020 15:55:23 | Working on file S2_percentile_UTM_517-0000000000-0000000000.tif
29/10/2020 15:55:24 | Working on tile 38Q
29/10/2020 15:55:31 | 12 files to process
	29/10/2020 15:55:31 | Working on file S2_percentile_UTM_457-0000069888-0000046592.tif
	29/10/2020 15:55:32 | Working on file S2_percentile_UTM_457-0000069888-0000023296.tif
	29/10/2020 15:55:33 | Working on file S2_percentile_UTM_457-0000069888-0000000000.tif
	29/10/2020 15:55:33 | Working on file S2_percentile_UTM_457-0000046592-0000046592.tif
	29/10/2020 15:55:35 | Working on file S2_percentile_UTM_457-0000046592-0000023296.tif
	29/10/2020 15:55:36 | Working on file S2_percentile_UTM_457-0000046592-0000000000.tif
	29/10/2020 15:55:37 | Working on file S2_percentile_UTM_457-0000023296-0000046592.tif
	29/10/2020 15:55:37 | Working on file S2_percentile_UTM_457-0000023296-0000023296.tif
	29/10/2020 15:55:38 | Working on file S2_percentile_UTM_457-0000023296-0000000000.tif
	29/10/2020 15:55:39 | Working on file S2_percentile_UTM_457-0000000000-0000046592.tif
	29/10/2020 15:55:40 | Working on file S2_percentile_UTM_457-0000000000-0000023296.tif
	29/10/2020 15:55:41 | Working on file S2_percentile_UTM_457-0000000000-0000000000.tif
29/10/2020 15:55:41 | Working on tile 38R
	38R_UTM.vrt contains no GeoTIFF, attempting 38R.vrt
29/10/2020 15:55:44 | 12 files to process
	29/10/2020 15:55:44 | Working on file S2_percentile_UTM_397-0000069888-0000046592.tif
	29/10/2020 15:55:45 | Working on file S2_percentile_UTM_397-0000069888-0000023296.tif
	29/10/2020 15:55:46 | Working on file S2_percentile_UTM_397-0000069888-0000000000.tif
	29/10/2020 15:55:47 | Working on file S2_percentile_UTM_397-0000046592-0000046592.tif
	29/10/2020 15:55:48 | Working on file S2_percentile_UTM_397-0000046592-0000023296.tif
	29/10/2020 15:55:49 | Working on file S2_percentile_UTM_397-0000046592-0000000000.tif
	29/10/2020 15:55:49 | Working on file S2_percentile_UTM_397-0000023296-0000046592.tif
	29/10/2020 15:55:50 | Working on file S2_percentile_UTM_397-0000023296-0000023296.tif
	29/10/2020 15:55:52 | Working on file S2_percentile_UTM_397-0000023296-0000000000.tif
	29/10/2020 15:55:53 | Working on file S2_percentile_UTM_397-0000000000-0000046592.tif
	29/10/2020 15:55:54 | Working on file S2_percentile_UTM_397-0000000000-0000023296.tif
	29/10/2020 15:55:55 | Working on file S2_percentile_UTM_397-0000000000-0000000000.tif
29/10/2020 15:55:56 | Working on tile 38S
	38S_UTM.vrt contains no GeoTIFF, attempting 38S.vrt
29/10/2020 15:55:58 | 12 files to process
	29/10/2020 15:55:58 | Working on file S2_percentile_UTM_337-0000069888-0000046592.tif
	29/10/2020 15:55:59 | Working on file S2_percentile_UTM_337-0000069888-0000023296.tif
	29/10/2020 15:56:00 | Working on file S2_percentile_UTM_337-0000069888-0000000000.tif
	29/10/2020 15:56:01 | Working on file S2_percentile_UTM_337-0000046592-0000046592.tif
	29/10/2020 15:56:02 | Working on file S2_percentile_UTM_337-0000046592-0000023296.tif
	29/10/2020 15:56:03 | Working on file S2_percentile_UTM_337-0000046592-0000000000.tif
	29/10/2020 15:56:03 | Working on file S2_percentile_UTM_337-0000023296-0000046592.tif
	29/10/2020 15:56:04 | Working on file S2_percentile_UTM_337-0000023296-0000023296.tif
	29/10/2020 15:56:05 | Working on file S2_percentile_UTM_337-0000023296-0000000000.tif
	29/10/2020 15:56:06 | Working on file S2_percentile_UTM_337-0000000000-0000046592.tif
	29/10/2020 15:56:07 | Working on file S2_percentile_UTM_337-0000000000-0000023296.tif
	29/10/2020 15:56:08 | Working on file S2_percentile_UTM_337-0000000000-0000000000.tif
29/10/2020 15:56:09 | Working on tile 38T
29/10/2020 15:56:16 | 12 files to process
	29/10/2020 15:56:16 | Working on file S2_percentile_UTM_277-0000069888-0000046592.tif
	29/10/2020 15:56:17 | Working on file S2_percentile_UTM_277-0000069888-0000023296.tif
	29/10/2020 15:56:17 | Working on file S2_percentile_UTM_277-0000069888-0000000000.tif
	29/10/2020 15:56:18 | Working on file S2_percentile_UTM_277-0000046592-0000046592.tif
	29/10/2020 15:56:19 | Working on file S2_percentile_UTM_277-0000046592-0000023296.tif
	29/10/2020 15:56:19 | Working on file S2_percentile_UTM_277-0000046592-0000000000.tif
	29/10/2020 15:56:20 | Working on file S2_percentile_UTM_277-0000023296-0000046592.tif
	29/10/2020 15:56:21 | Working on file S2_percentile_UTM_277-0000023296-0000023296.tif
	29/10/2020 15:56:22 | Working on file S2_percentile_UTM_277-0000023296-0000000000.tif
	29/10/2020 15:56:23 | Working on file S2_percentile_UTM_277-0000000000-0000046592.tif
	29/10/2020 15:56:23 | Working on file S2_percentile_UTM_277-0000000000-0000023296.tif
	29/10/2020 15:56:24 | Working on file S2_percentile_UTM_277-0000000000-0000000000.tif
29/10/2020 15:56:25 | Working on tile 38U
	38U_UTM.vrt contains no GeoTIFF, attempting 38U.vrt
29/10/2020 15:56:28 | 9 files to process
	29/10/2020 15:56:28 | Working on file S2_percentile_30_UTM_217-0000069888-0000046592.tif
	29/10/2020 15:56:28 | Working on file S2_percentile_30_UTM_217-0000069888-0000023296.tif
	29/10/2020 15:56:29 | Working on file S2_percentile_30_UTM_217-0000069888-0000000000.tif
	29/10/2020 15:56:30 | Working on file S2_percentile_30_UTM_217-0000046592-0000023296.tif
	29/10/2020 15:56:31 | Working on file S2_percentile_30_UTM_217-0000046592-0000000000.tif
	29/10/2020 15:56:32 | Working on file S2_percentile_30_UTM_217-0000023296-0000023296.tif
	29/10/2020 15:56:32 | Working on file S2_percentile_30_UTM_217-0000023296-0000000000.tif
	29/10/2020 15:56:33 | Working on file S2_percentile_30_UTM_217-0000000000-0000023296.tif
	29/10/2020 15:56:34 | Working on file S2_percentile_30_UTM_217-0000000000-0000000000.tif
29/10/2020 15:56:35 | Working on tile 38V
29/10/2020 15:56:42 | 8 files to process
	29/10/2020 15:56:42 | Working on file S2_percentile_30_UTM_157-0000069888-0000023296.tif
	29/10/2020 15:56:43 | Working on file S2_percentile_30_UTM_157-0000069888-0000000000.tif
	29/10/2020 15:56:43 | Working on file S2_percentile_30_UTM_157-0000046592-0000023296.tif
	29/10/2020 15:56:44 | Working on file S2_percentile_30_UTM_157-0000046592-0000000000.tif
	29/10/2020 15:56:45 | Working on file S2_percentile_30_UTM_157-0000023296-0000023296.tif
	29/10/2020 15:56:46 | Working on file S2_percentile_30_UTM_157-0000023296-0000000000.tif
	29/10/2020 15:56:46 | Working on file S2_percentile_30_UTM_157-0000000000-0000023296.tif
	29/10/2020 15:56:47 | Working on file S2_percentile_30_UTM_157-0000000000-0000000000.tif
29/10/2020 15:56:48 | Working on tile 38W
29/10/2020 15:56:54 | 8 files to process
	29/10/2020 15:56:54 | Working on file S2_percentile_30_UTM_97-0000069888-0000023296.tif
	29/10/2020 15:56:55 | Working on file S2_percentile_30_UTM_97-0000069888-0000000000.tif
	29/10/2020 15:56:57 | Working on file S2_percentile_30_UTM_97-0000046592-0000023296.tif
	29/10/2020 15:56:57 | Working on file S2_percentile_30_UTM_97-0000046592-0000000000.tif
	29/10/2020 15:56:58 | Working on file S2_percentile_30_UTM_97-0000023296-0000023296.tif
	29/10/2020 15:56:59 | Working on file S2_percentile_30_UTM_97-0000023296-0000000000.tif
	29/10/2020 15:57:00 | Working on file S2_percentile_30_UTM_97-0000000000-0000023296.tif
	29/10/2020 15:57:01 | Working on file S2_percentile_30_UTM_97-0000000000-0000000000.tif
29/10/2020 15:57:02 | Working on tile 39G
29/10/2020 15:57:08 | 5 files to process
	29/10/2020 15:57:08 | Working on file S2_percentile_30_UTM_938-0000069888-0000046592.tif
	29/10/2020 15:57:09 | Working on file S2_percentile_30_UTM_938-0000069888-0000023296.tif
	29/10/2020 15:57:09 | Working on file S2_percentile_30_UTM_938-0000069888-0000000000.tif
	29/10/2020 15:57:10 | Working on file S2_percentile_30_UTM_938-0000046592-0000023296.tif
	29/10/2020 15:57:12 | Working on file S2_percentile_30_UTM_938-0000046592-0000000000.tif
29/10/2020 15:57:12 | Working on tile 39K
	39K_UTM.vrt contains no GeoTIFF, attempting 39K.vrt
29/10/2020 15:57:15 | 11 files to process
	29/10/2020 15:57:15 | Working on file S2_percentile_UTM_758-0000069888-0000023296.tif
	29/10/2020 15:57:16 | Working on file S2_percentile_UTM_758-0000069888-0000000000.tif
	29/10/2020 15:57:17 | Working on file S2_percentile_UTM_758-0000046592-0000046592.tif
	29/10/2020 15:57:18 | Working on file S2_percentile_UTM_758-0000046592-0000023296.tif
	29/10/2020 15:57:19 | Working on file S2_percentile_UTM_758-0000046592-0000000000.tif
	29/10/2020 15:57:20 | Working on file S2_percentile_UTM_758-0000023296-0000046592.tif
	29/10/2020 15:57:20 | Working on file S2_percentile_UTM_758-0000023296-0000023296.tif
	29/10/2020 15:57:21 | Working on file S2_percentile_UTM_758-0000023296-0000000000.tif
	29/10/2020 15:57:22 | Working on file S2_percentile_UTM_758-0000000000-0000046592.tif
	29/10/2020 15:57:23 | Working on file S2_percentile_UTM_758-0000000000-0000023296.tif
	29/10/2020 15:57:24 | Working on file S2_percentile_UTM_758-0000000000-0000000000.tif
29/10/2020 15:57:25 | Working on tile 39L
	39L_UTM.vrt contains no GeoTIFF, attempting 39L.vrt
29/10/2020 15:57:27 | 8 files to process
	29/10/2020 15:57:27 | Working on file S2_percentile_UTM_698-0000069888-0000046592.tif
	29/10/2020 15:57:28 | Working on file S2_percentile_UTM_698-0000069888-0000023296.tif
	29/10/2020 15:57:29 | Working on file S2_percentile_UTM_698-0000069888-0000000000.tif
	29/10/2020 15:57:30 | Working on file S2_percentile_UTM_698-0000046592-0000023296.tif
	29/10/2020 15:57:31 | Working on file S2_percentile_UTM_698-0000046592-0000000000.tif
	29/10/2020 15:57:31 | Working on file S2_percentile_UTM_698-0000023296-0000023296.tif
	29/10/2020 15:57:32 | Working on file S2_percentile_UTM_698-0000023296-0000000000.tif
	29/10/2020 15:57:33 | Working on file S2_percentile_UTM_698-0000000000-0000000000.tif
29/10/2020 15:57:34 | Working on tile 39M
	39M_UTM.vrt contains no GeoTIFF, attempting 39M.vrt
29/10/2020 15:57:37 | 2 files to process
	29/10/2020 15:57:37 | Working on file S2_percentile_30_UTM_638-0000046592-0000046592.tif
	29/10/2020 15:57:38 | Working on file S2_percentile_30_UTM_638-0000023296-0000046592.tif
29/10/2020 15:57:38 | Working on tile 39N
29/10/2020 15:57:47 | 8 files to process
	29/10/2020 15:57:47 | Working on file S2_percentile_UTM_578-0000069888-0000000000.tif
	29/10/2020 15:57:48 | Working on file S2_percentile_UTM_578-0000046592-0000000000.tif
	29/10/2020 15:57:48 | Working on file S2_percentile_UTM_578-0000023296-0000046592.tif
	29/10/2020 15:57:49 | Working on file S2_percentile_UTM_578-0000023296-0000023296.tif
	29/10/2020 15:57:50 | Working on file S2_percentile_UTM_578-0000023296-0000000000.tif
	29/10/2020 15:57:50 | Working on file S2_percentile_UTM_578-0000000000-0000046592.tif
	29/10/2020 15:57:51 | Working on file S2_percentile_UTM_578-0000000000-0000023296.tif
	29/10/2020 15:57:52 | Working on file S2_percentile_UTM_578-0000000000-0000000000.tif
29/10/2020 15:57:53 | Working on tile 39P
29/10/2020 15:58:00 | 12 files to process
	29/10/2020 15:58:00 | Working on file S2_percentile_UTM_518-0000069888-0000046592.tif
	29/10/2020 15:58:01 | Working on file S2_percentile_UTM_518-0000069888-0000023296.tif
	29/10/2020 15:58:01 | Working on file S2_percentile_UTM_518-0000069888-0000000000.tif
	29/10/2020 15:58:02 | Working on file S2_percentile_UTM_518-0000046592-0000046592.tif
	29/10/2020 15:58:03 | Working on file S2_percentile_UTM_518-0000046592-0000023296.tif
	29/10/2020 15:58:04 | Working on file S2_percentile_UTM_518-0000046592-0000000000.tif
	29/10/2020 15:58:05 | Working on file S2_percentile_UTM_518-0000023296-0000046592.tif
	29/10/2020 15:58:05 | Working on file S2_percentile_UTM_518-0000023296-0000023296.tif
	29/10/2020 15:58:06 | Working on file S2_percentile_UTM_518-0000023296-0000000000.tif
	29/10/2020 15:58:07 | Working on file S2_percentile_UTM_518-0000000000-0000046592.tif
	29/10/2020 15:58:07 | Working on file S2_percentile_UTM_518-0000000000-0000023296.tif
	29/10/2020 15:58:08 | Working on file S2_percentile_UTM_518-0000000000-0000000000.tif
29/10/2020 15:58:09 | Working on tile 39Q
29/10/2020 15:58:16 | 12 files to process
	29/10/2020 15:58:16 | Working on file S2_percentile_30_UTM_458-0000069888-0000046592.tif
	29/10/2020 15:58:17 | Working on file S2_percentile_30_UTM_458-0000069888-0000023296.tif
	29/10/2020 15:58:18 | Working on file S2_percentile_30_UTM_458-0000069888-0000000000.tif
	29/10/2020 15:58:19 | Working on file S2_percentile_30_UTM_458-0000046592-0000046592.tif
	29/10/2020 15:58:20 | Working on file S2_percentile_30_UTM_458-0000046592-0000023296.tif
	29/10/2020 15:58:20 | Working on file S2_percentile_30_UTM_458-0000046592-0000000000.tif
	29/10/2020 15:58:21 | Working on file S2_percentile_30_UTM_458-0000023296-0000046592.tif
	29/10/2020 15:58:22 | Working on file S2_percentile_30_UTM_458-0000023296-0000023296.tif
	29/10/2020 15:58:23 | Working on file S2_percentile_30_UTM_458-0000023296-0000000000.tif
	29/10/2020 15:58:24 | Working on file S2_percentile_30_UTM_458-0000000000-0000046592.tif
	29/10/2020 15:58:25 | Working on file S2_percentile_30_UTM_458-0000000000-0000023296.tif
	29/10/2020 15:58:25 | Working on file S2_percentile_30_UTM_458-0000000000-0000000000.tif
29/10/2020 15:58:26 | Working on tile 39R
29/10/2020 15:58:34 | 12 files to process
	29/10/2020 15:58:34 | Working on file S2_percentile_UTM_398-0000069888-0000046592.tif
	29/10/2020 15:58:34 | Working on file S2_percentile_UTM_398-0000069888-0000023296.tif
	29/10/2020 15:58:35 | Working on file S2_percentile_UTM_398-0000069888-0000000000.tif
	29/10/2020 15:58:36 | Working on file S2_percentile_UTM_398-0000046592-0000046592.tif
	29/10/2020 15:58:36 | Working on file S2_percentile_UTM_398-0000046592-0000023296.tif
	29/10/2020 15:58:37 | Working on file S2_percentile_UTM_398-0000046592-0000000000.tif
	29/10/2020 15:58:38 | Working on file S2_percentile_UTM_398-0000023296-0000046592.tif
	29/10/2020 15:58:39 | Working on file S2_percentile_UTM_398-0000023296-0000023296.tif
	29/10/2020 15:58:40 | Working on file S2_percentile_UTM_398-0000023296-0000000000.tif
	29/10/2020 15:58:41 | Working on file S2_percentile_UTM_398-0000000000-0000046592.tif
	29/10/2020 15:58:41 | Working on file S2_percentile_UTM_398-0000000000-0000023296.tif
	29/10/2020 15:58:42 | Working on file S2_percentile_UTM_398-0000000000-0000000000.tif
29/10/2020 15:58:43 | Working on tile 39S
29/10/2020 15:58:52 | 12 files to process
	29/10/2020 15:58:52 | Working on file S2_percentile_UTM_338-0000069888-0000046592.tif
	29/10/2020 15:58:53 | Working on file S2_percentile_UTM_338-0000069888-0000023296.tif
	29/10/2020 15:58:54 | Working on file S2_percentile_UTM_338-0000069888-0000000000.tif
	29/10/2020 15:58:54 | Working on file S2_percentile_UTM_338-0000046592-0000046592.tif
	29/10/2020 15:58:55 | Working on file S2_percentile_UTM_338-0000046592-0000023296.tif
	29/10/2020 15:58:56 | Working on file S2_percentile_UTM_338-0000046592-0000000000.tif
	29/10/2020 15:58:56 | Working on file S2_percentile_UTM_338-0000023296-0000046592.tif
	29/10/2020 15:58:57 | Working on file S2_percentile_UTM_338-0000023296-0000023296.tif
	29/10/2020 15:58:58 | Working on file S2_percentile_UTM_338-0000023296-0000000000.tif
	29/10/2020 15:58:58 | Working on file S2_percentile_UTM_338-0000000000-0000046592.tif
	29/10/2020 15:58:59 | Working on file S2_percentile_UTM_338-0000000000-0000023296.tif
	29/10/2020 15:59:00 | Working on file S2_percentile_UTM_338-0000000000-0000000000.tif
29/10/2020 15:59:01 | Working on tile 39T
29/10/2020 15:59:08 | 12 files to process
	29/10/2020 15:59:08 | Working on file S2_percentile_UTM_278-0000069888-0000046592.tif
	29/10/2020 15:59:08 | Working on file S2_percentile_UTM_278-0000069888-0000023296.tif
	29/10/2020 15:59:09 | Working on file S2_percentile_UTM_278-0000069888-0000000000.tif
	29/10/2020 15:59:10 | Working on file S2_percentile_UTM_278-0000046592-0000046592.tif
	29/10/2020 15:59:10 | Working on file S2_percentile_UTM_278-0000046592-0000023296.tif
	29/10/2020 15:59:11 | Working on file S2_percentile_UTM_278-0000046592-0000000000.tif
	29/10/2020 15:59:12 | Working on file S2_percentile_UTM_278-0000023296-0000046592.tif
	29/10/2020 15:59:12 | Working on file S2_percentile_UTM_278-0000023296-0000023296.tif
	29/10/2020 15:59:13 | Working on file S2_percentile_UTM_278-0000023296-0000000000.tif
	29/10/2020 15:59:14 | Working on file S2_percentile_UTM_278-0000000000-0000046592.tif
	29/10/2020 15:59:14 | Working on file S2_percentile_UTM_278-0000000000-0000023296.tif
	29/10/2020 15:59:15 | Working on file S2_percentile_UTM_278-0000000000-0000000000.tif
29/10/2020 15:59:16 | Working on tile 39U
29/10/2020 15:59:23 | 8 files to process
	29/10/2020 15:59:23 | Working on file S2_percentile_30_UTM_218-0000069888-0000023296.tif
	29/10/2020 15:59:24 | Working on file S2_percentile_30_UTM_218-0000069888-0000000000.tif
	29/10/2020 15:59:25 | Working on file S2_percentile_30_UTM_218-0000046592-0000023296.tif
	29/10/2020 15:59:25 | Working on file S2_percentile_30_UTM_218-0000046592-0000000000.tif
	29/10/2020 15:59:26 | Working on file S2_percentile_30_UTM_218-0000023296-0000023296.tif
	29/10/2020 15:59:27 | Working on file S2_percentile_30_UTM_218-0000023296-0000000000.tif
	29/10/2020 15:59:28 | Working on file S2_percentile_30_UTM_218-0000000000-0000023296.tif
	29/10/2020 15:59:28 | Working on file S2_percentile_30_UTM_218-0000000000-0000000000.tif
29/10/2020 15:59:29 | Working on tile 39V
29/10/2020 15:59:37 | 8 files to process
	29/10/2020 15:59:37 | Working on file S2_percentile_30_UTM_158-0000069888-0000023296.tif
	29/10/2020 15:59:38 | Working on file S2_percentile_30_UTM_158-0000069888-0000000000.tif
	29/10/2020 15:59:38 | Working on file S2_percentile_30_UTM_158-0000046592-0000023296.tif
	29/10/2020 15:59:39 | Working on file S2_percentile_30_UTM_158-0000046592-0000000000.tif
	29/10/2020 15:59:40 | Working on file S2_percentile_30_UTM_158-0000023296-0000023296.tif
	29/10/2020 15:59:41 | Working on file S2_percentile_30_UTM_158-0000023296-0000000000.tif
	29/10/2020 15:59:42 | Working on file S2_percentile_30_UTM_158-0000000000-0000023296.tif
	29/10/2020 15:59:42 | Working on file S2_percentile_30_UTM_158-0000000000-0000000000.tif
29/10/2020 15:59:43 | Working on tile 39W
29/10/2020 15:59:50 | 8 files to process
	29/10/2020 15:59:50 | Working on file S2_percentile_30_UTM_98-0000069888-0000023296.tif
	29/10/2020 15:59:50 | Working on file S2_percentile_30_UTM_98-0000069888-0000000000.tif
	29/10/2020 15:59:51 | Working on file S2_percentile_30_UTM_98-0000046592-0000023296.tif
	29/10/2020 15:59:52 | Working on file S2_percentile_30_UTM_98-0000046592-0000000000.tif
	29/10/2020 15:59:53 | Working on file S2_percentile_30_UTM_98-0000023296-0000023296.tif
	29/10/2020 15:59:54 | Working on file S2_percentile_30_UTM_98-0000023296-0000000000.tif
	29/10/2020 15:59:55 | Working on file S2_percentile_30_UTM_98-0000000000-0000023296.tif
	29/10/2020 15:59:55 | Working on file S2_percentile_30_UTM_98-0000000000-0000000000.tif
29/10/2020 15:59:56 | Working on tile 39X
	39X_UTM.vrt contains no GeoTIFF, attempting 39X.vrt
29/10/2020 15:59:59 | 10 files to process
	29/10/2020 15:59:59 | Working on file S2_percentile_30_UTM_38-0000116480-0000000000.tif
	29/10/2020 16:00:00 | Working on file S2_percentile_30_UTM_38-0000093184-0000000000.tif
	29/10/2020 16:00:00 | Working on file S2_percentile_30_UTM_38-0000069888-0000023296.tif
	29/10/2020 16:00:01 | Working on file S2_percentile_30_UTM_38-0000069888-0000000000.tif
	29/10/2020 16:00:02 | Working on file S2_percentile_30_UTM_38-0000046592-0000023296.tif
	29/10/2020 16:00:03 | Working on file S2_percentile_30_UTM_38-0000046592-0000000000.tif
	29/10/2020 16:00:04 | Working on file S2_percentile_30_UTM_38-0000023296-0000023296.tif
	29/10/2020 16:00:05 | Working on file S2_percentile_30_UTM_38-0000023296-0000000000.tif
	29/10/2020 16:00:06 | Working on file S2_percentile_30_UTM_38-0000000000-0000023296.tif
	29/10/2020 16:00:06 | Working on file S2_percentile_30_UTM_38-0000000000-0000000000.tif
29/10/2020 16:00:07 | Working on tile 40K
29/10/2020 16:00:14 | 6 files to process
	29/10/2020 16:00:14 | Working on file S2_percentile_UTM_759-0000046592-0000046592.tif
	29/10/2020 16:00:15 | Working on file S2_percentile_UTM_759-0000046592-0000023296.tif
	29/10/2020 16:00:15 | Working on file S2_percentile_UTM_759-0000046592-0000000000.tif
	29/10/2020 16:00:16 | Working on file S2_percentile_UTM_759-0000023296-0000046592.tif
	29/10/2020 16:00:17 | Working on file S2_percentile_UTM_759-0000023296-0000023296.tif
	29/10/2020 16:00:18 | Working on file S2_percentile_UTM_759-0000000000-0000000000.tif
29/10/2020 16:00:18 | Working on tile 40L
	40L_UTM.vrt contains no GeoTIFF, attempting 40L.vrt
29/10/2020 16:00:22 | 1 files to process
	29/10/2020 16:00:22 | Working on file S2_percentile_30_UTM_699.tif
29/10/2020 16:00:22 | Working on tile 40M
	40M_UTM.vrt contains no GeoTIFF, attempting 40M.vrt
29/10/2020 16:00:26 | 4 files to process
	29/10/2020 16:00:26 | Working on file S2_percentile_30_UTM_639-0000046592-0000023296.tif
	29/10/2020 16:00:27 | Working on file S2_percentile_30_UTM_639-0000046592-0000000000.tif
	29/10/2020 16:00:28 | Working on file S2_percentile_30_UTM_639-0000023296-0000023296.tif
	29/10/2020 16:00:29 | Working on file S2_percentile_30_UTM_639-0000023296-0000000000.tif
29/10/2020 16:00:30 | Working on tile 40P
	40P_UTM.vrt contains no GeoTIFF, attempting 40P.vrt
29/10/2020 16:00:32 | 7 files to process
	29/10/2020 16:00:32 | Working on file S2_percentile_UTM_519-0000046592-0000023296.tif
	29/10/2020 16:00:33 | Working on file S2_percentile_UTM_519-0000046592-0000000000.tif
	29/10/2020 16:00:34 | Working on file S2_percentile_UTM_519-0000023296-0000023296.tif
	29/10/2020 16:00:34 | Working on file S2_percentile_UTM_519-0000023296-0000000000.tif
	29/10/2020 16:00:35 | Working on file S2_percentile_UTM_519-0000000000-0000046592.tif
	29/10/2020 16:00:36 | Working on file S2_percentile_UTM_519-0000000000-0000023296.tif
	29/10/2020 16:00:37 | Working on file S2_percentile_UTM_519-0000000000-0000000000.tif
29/10/2020 16:00:38 | Working on tile 40Q
	40Q_UTM.vrt contains no GeoTIFF, attempting 40Q.vrt
29/10/2020 16:00:41 | 12 files to process
	29/10/2020 16:00:41 | Working on file S2_percentile_30_UTM_459-0000069888-0000046592.tif
	29/10/2020 16:00:42 | Working on file S2_percentile_30_UTM_459-0000069888-0000023296.tif
	29/10/2020 16:00:43 | Working on file S2_percentile_30_UTM_459-0000069888-0000000000.tif
	29/10/2020 16:00:43 | Working on file S2_percentile_30_UTM_459-0000046592-0000046592.tif
	29/10/2020 16:00:44 | Working on file S2_percentile_30_UTM_459-0000046592-0000023296.tif
	29/10/2020 16:00:45 | Working on file S2_percentile_30_UTM_459-0000046592-0000000000.tif
	29/10/2020 16:00:45 | Working on file S2_percentile_30_UTM_459-0000023296-0000046592.tif
	29/10/2020 16:00:46 | Working on file S2_percentile_30_UTM_459-0000023296-0000023296.tif
	29/10/2020 16:00:48 | Working on file S2_percentile_30_UTM_459-0000023296-0000000000.tif
	29/10/2020 16:00:48 | Working on file S2_percentile_30_UTM_459-0000000000-0000046592.tif
	29/10/2020 16:00:49 | Working on file S2_percentile_30_UTM_459-0000000000-0000023296.tif
	29/10/2020 16:00:50 | Working on file S2_percentile_30_UTM_459-0000000000-0000000000.tif
29/10/2020 16:00:51 | Working on tile 40R
	40R_UTM.vrt contains no GeoTIFF, attempting 40R.vrt
29/10/2020 16:00:54 | 12 files to process
	29/10/2020 16:00:54 | Working on file S2_percentile_UTM_399-0000069888-0000046592.tif
	29/10/2020 16:00:55 | Working on file S2_percentile_UTM_399-0000069888-0000023296.tif
	29/10/2020 16:00:57 | Working on file S2_percentile_UTM_399-0000069888-0000000000.tif
	29/10/2020 16:00:58 | Working on file S2_percentile_UTM_399-0000046592-0000046592.tif
	29/10/2020 16:00:58 | Working on file S2_percentile_UTM_399-0000046592-0000023296.tif
	29/10/2020 16:00:59 | Working on file S2_percentile_UTM_399-0000046592-0000000000.tif
	29/10/2020 16:01:00 | Working on file S2_percentile_UTM_399-0000023296-0000046592.tif
	29/10/2020 16:01:01 | Working on file S2_percentile_UTM_399-0000023296-0000023296.tif
	29/10/2020 16:01:02 | Working on file S2_percentile_UTM_399-0000023296-0000000000.tif
	29/10/2020 16:01:03 | Working on file S2_percentile_UTM_399-0000000000-0000046592.tif
	29/10/2020 16:01:04 | Working on file S2_percentile_UTM_399-0000000000-0000023296.tif
	29/10/2020 16:01:05 | Working on file S2_percentile_UTM_399-0000000000-0000000000.tif
29/10/2020 16:01:06 | Working on tile 40S
	40S_UTM.vrt contains no GeoTIFF, attempting 40S.vrt
29/10/2020 16:01:09 | 12 files to process
	29/10/2020 16:01:09 | Working on file S2_percentile_UTM_339-0000069888-0000046592.tif
	29/10/2020 16:01:10 | Working on file S2_percentile_UTM_339-0000069888-0000023296.tif
	29/10/2020 16:01:11 | Working on file S2_percentile_UTM_339-0000069888-0000000000.tif
	29/10/2020 16:01:11 | Working on file S2_percentile_UTM_339-0000046592-0000046592.tif
	29/10/2020 16:01:12 | Working on file S2_percentile_UTM_339-0000046592-0000023296.tif
	29/10/2020 16:01:13 | Working on file S2_percentile_UTM_339-0000046592-0000000000.tif
	29/10/2020 16:01:14 | Working on file S2_percentile_UTM_339-0000023296-0000046592.tif
	29/10/2020 16:01:14 | Working on file S2_percentile_UTM_339-0000023296-0000023296.tif
	29/10/2020 16:01:15 | Working on file S2_percentile_UTM_339-0000023296-0000000000.tif
	29/10/2020 16:01:16 | Working on file S2_percentile_UTM_339-0000000000-0000046592.tif
	29/10/2020 16:01:16 | Working on file S2_percentile_UTM_339-0000000000-0000023296.tif
	29/10/2020 16:01:17 | Working on file S2_percentile_UTM_339-0000000000-0000000000.tif
29/10/2020 16:01:19 | Working on tile 40T
29/10/2020 16:01:25 | 12 files to process
	29/10/2020 16:01:25 | Working on file S2_percentile_30_UTM_279-0000069888-0000046592.tif
	29/10/2020 16:01:26 | Working on file S2_percentile_30_UTM_279-0000069888-0000023296.tif
	29/10/2020 16:01:27 | Working on file S2_percentile_30_UTM_279-0000069888-0000000000.tif
	29/10/2020 16:01:29 | Working on file S2_percentile_30_UTM_279-0000046592-0000046592.tif
	29/10/2020 16:01:29 | Working on file S2_percentile_30_UTM_279-0000046592-0000023296.tif
	29/10/2020 16:01:30 | Working on file S2_percentile_30_UTM_279-0000046592-0000000000.tif
	29/10/2020 16:01:31 | Working on file S2_percentile_30_UTM_279-0000023296-0000046592.tif
	29/10/2020 16:01:31 | Working on file S2_percentile_30_UTM_279-0000023296-0000023296.tif
	29/10/2020 16:01:32 | Working on file S2_percentile_30_UTM_279-0000023296-0000000000.tif
	29/10/2020 16:01:33 | Working on file S2_percentile_30_UTM_279-0000000000-0000046592.tif
	29/10/2020 16:01:34 | Working on file S2_percentile_30_UTM_279-0000000000-0000023296.tif
	29/10/2020 16:01:34 | Working on file S2_percentile_30_UTM_279-0000000000-0000000000.tif
29/10/2020 16:01:35 | Working on tile 40U
29/10/2020 16:01:42 | 8 files to process
	29/10/2020 16:01:42 | Working on file S2_percentile_30_UTM_219-0000069888-0000023296.tif
	29/10/2020 16:01:43 | Working on file S2_percentile_30_UTM_219-0000069888-0000000000.tif
	29/10/2020 16:01:45 | Working on file S2_percentile_30_UTM_219-0000046592-0000023296.tif
	29/10/2020 16:01:45 | Working on file S2_percentile_30_UTM_219-0000046592-0000000000.tif
	29/10/2020 16:01:46 | Working on file S2_percentile_30_UTM_219-0000023296-0000023296.tif
	29/10/2020 16:01:47 | Working on file S2_percentile_30_UTM_219-0000023296-0000000000.tif
	29/10/2020 16:01:47 | Working on file S2_percentile_30_UTM_219-0000000000-0000023296.tif
	29/10/2020 16:01:48 | Working on file S2_percentile_30_UTM_219-0000000000-0000000000.tif
29/10/2020 16:01:49 | Working on tile 40V
	40V_UTM.vrt contains no GeoTIFF, attempting 40V.vrt
29/10/2020 16:01:52 | 8 files to process
	29/10/2020 16:01:52 | Working on file S2_percentile_30_UTM_159-0000069888-0000023296.tif
	29/10/2020 16:01:53 | Working on file S2_percentile_30_UTM_159-0000069888-0000000000.tif
	29/10/2020 16:01:54 | Working on file S2_percentile_30_UTM_159-0000046592-0000023296.tif
	29/10/2020 16:01:54 | Working on file S2_percentile_30_UTM_159-0000046592-0000000000.tif
	29/10/2020 16:01:55 | Working on file S2_percentile_30_UTM_159-0000023296-0000023296.tif
	29/10/2020 16:01:56 | Working on file S2_percentile_30_UTM_159-0000023296-0000000000.tif
	29/10/2020 16:01:57 | Working on file S2_percentile_30_UTM_159-0000000000-0000023296.tif
	29/10/2020 16:01:58 | Working on file S2_percentile_30_UTM_159-0000000000-0000000000.tif
29/10/2020 16:01:59 | Working on tile 40W
29/10/2020 16:02:06 | 8 files to process
	29/10/2020 16:02:06 | Working on file S2_percentile_30_UTM_99-0000069888-0000023296.tif
	29/10/2020 16:02:06 | Working on file S2_percentile_30_UTM_99-0000069888-0000000000.tif
	29/10/2020 16:02:07 | Working on file S2_percentile_30_UTM_99-0000046592-0000023296.tif
	29/10/2020 16:02:08 | Working on file S2_percentile_30_UTM_99-0000046592-0000000000.tif
	29/10/2020 16:02:08 | Working on file S2_percentile_30_UTM_99-0000023296-0000023296.tif
	29/10/2020 16:02:09 | Working on file S2_percentile_30_UTM_99-0000023296-0000000000.tif
	29/10/2020 16:02:09 | Working on file S2_percentile_30_UTM_99-0000000000-0000023296.tif
	29/10/2020 16:02:10 | Working on file S2_percentile_30_UTM_99-0000000000-0000000000.tif
29/10/2020 16:02:11 | Working on tile 40X
29/10/2020 16:02:20 | 6 files to process
	29/10/2020 16:02:20 | Working on file S2_percentile_30_UTM_39-0000116480-0000000000.tif
	29/10/2020 16:02:21 | Working on file S2_percentile_30_UTM_39-0000093184-0000000000.tif
	29/10/2020 16:02:22 | Working on file S2_percentile_30_UTM_39-0000069888-0000000000.tif
	29/10/2020 16:02:22 | Working on file S2_percentile_30_UTM_39-0000046592-0000000000.tif
	29/10/2020 16:02:23 | Working on file S2_percentile_30_UTM_39-0000023296-0000000000.tif
	29/10/2020 16:02:24 | Working on file S2_percentile_30_UTM_39-0000000000-0000000000.tif
29/10/2020 16:02:25 | Working on tile 41K
29/10/2020 16:02:31 | 5 files to process
	29/10/2020 16:02:31 | Working on file S2_percentile_30_UTM_760-0000046592-0000046592.tif
	29/10/2020 16:02:33 | Working on file S2_percentile_30_UTM_760-0000046592-0000023296.tif
	29/10/2020 16:02:34 | Working on file S2_percentile_30_UTM_760-0000023296-0000046592.tif
	29/10/2020 16:02:35 | Working on file S2_percentile_30_UTM_760-0000023296-0000023296.tif
	29/10/2020 16:02:35 | Working on file S2_percentile_30_UTM_760-0000023296-0000000000.tif
29/10/2020 16:02:36 | Working on tile 41R
	41R_UTM.vrt contains no GeoTIFF, attempting 41R.vrt
29/10/2020 16:02:39 | 12 files to process
	29/10/2020 16:02:39 | Working on file S2_percentile_UTM_400-0000069888-0000046592.tif
	29/10/2020 16:02:40 | Working on file S2_percentile_UTM_400-0000069888-0000023296.tif
	29/10/2020 16:02:40 | Working on file S2_percentile_UTM_400-0000069888-0000000000.tif
	29/10/2020 16:02:41 | Working on file S2_percentile_UTM_400-0000046592-0000046592.tif
	29/10/2020 16:02:42 | Working on file S2_percentile_UTM_400-0000046592-0000023296.tif
	29/10/2020 16:02:43 | Working on file S2_percentile_UTM_400-0000046592-0000000000.tif
	29/10/2020 16:02:43 | Working on file S2_percentile_UTM_400-0000023296-0000046592.tif
	29/10/2020 16:02:44 | Working on file S2_percentile_UTM_400-0000023296-0000023296.tif
	29/10/2020 16:02:45 | Working on file S2_percentile_UTM_400-0000023296-0000000000.tif
	29/10/2020 16:02:46 | Working on file S2_percentile_UTM_400-0000000000-0000046592.tif
	29/10/2020 16:02:47 | Working on file S2_percentile_UTM_400-0000000000-0000023296.tif
	29/10/2020 16:02:48 | Working on file S2_percentile_UTM_400-0000000000-0000000000.tif
29/10/2020 16:02:49 | Working on tile 41S
29/10/2020 16:02:57 | 12 files to process
	29/10/2020 16:02:57 | Working on file S2_percentile_30_UTM_340-0000069888-0000046592.tif
	29/10/2020 16:02:58 | Working on file S2_percentile_30_UTM_340-0000069888-0000023296.tif
	29/10/2020 16:02:59 | Working on file S2_percentile_30_UTM_340-0000069888-0000000000.tif
	29/10/2020 16:03:00 | Working on file S2_percentile_30_UTM_340-0000046592-0000046592.tif
	29/10/2020 16:03:00 | Working on file S2_percentile_30_UTM_340-0000046592-0000023296.tif
	29/10/2020 16:03:01 | Working on file S2_percentile_30_UTM_340-0000046592-0000000000.tif
	29/10/2020 16:03:02 | Working on file S2_percentile_30_UTM_340-0000023296-0000046592.tif
	29/10/2020 16:03:03 | Working on file S2_percentile_30_UTM_340-0000023296-0000023296.tif
	29/10/2020 16:03:04 | Working on file S2_percentile_30_UTM_340-0000023296-0000000000.tif
	29/10/2020 16:03:05 | Working on file S2_percentile_30_UTM_340-0000000000-0000046592.tif
	29/10/2020 16:03:06 | Working on file S2_percentile_30_UTM_340-0000000000-0000023296.tif
	29/10/2020 16:03:07 | Working on file S2_percentile_30_UTM_340-0000000000-0000000000.tif
29/10/2020 16:03:08 | Working on tile 41T
29/10/2020 16:03:15 | 12 files to process
	29/10/2020 16:03:15 | Working on file S2_percentile_30_UTM_280-0000069888-0000046592.tif
	29/10/2020 16:03:16 | Working on file S2_percentile_30_UTM_280-0000069888-0000023296.tif
	29/10/2020 16:03:17 | Working on file S2_percentile_30_UTM_280-0000069888-0000000000.tif
	29/10/2020 16:03:18 | Working on file S2_percentile_30_UTM_280-0000046592-0000046592.tif
	29/10/2020 16:03:18 | Working on file S2_percentile_30_UTM_280-0000046592-0000023296.tif
	29/10/2020 16:03:19 | Working on file S2_percentile_30_UTM_280-0000046592-0000000000.tif
	29/10/2020 16:03:20 | Working on file S2_percentile_30_UTM_280-0000023296-0000046592.tif
	29/10/2020 16:03:20 | Working on file S2_percentile_30_UTM_280-0000023296-0000023296.tif
	29/10/2020 16:03:21 | Working on file S2_percentile_30_UTM_280-0000023296-0000000000.tif
	29/10/2020 16:03:22 | Working on file S2_percentile_30_UTM_280-0000000000-0000046592.tif
	29/10/2020 16:03:22 | Working on file S2_percentile_30_UTM_280-0000000000-0000023296.tif
	29/10/2020 16:03:23 | Working on file S2_percentile_30_UTM_280-0000000000-0000000000.tif
29/10/2020 16:03:24 | Working on tile 41U
29/10/2020 16:03:31 | 8 files to process
	29/10/2020 16:03:31 | Working on file S2_percentile_30_UTM_220-0000069888-0000023296.tif
	29/10/2020 16:03:32 | Working on file S2_percentile_30_UTM_220-0000069888-0000000000.tif
	29/10/2020 16:03:33 | Working on file S2_percentile_30_UTM_220-0000046592-0000023296.tif
	29/10/2020 16:03:34 | Working on file S2_percentile_30_UTM_220-0000046592-0000000000.tif
	29/10/2020 16:03:34 | Working on file S2_percentile_30_UTM_220-0000023296-0000023296.tif
	29/10/2020 16:03:35 | Working on file S2_percentile_30_UTM_220-0000023296-0000000000.tif
	29/10/2020 16:03:36 | Working on file S2_percentile_30_UTM_220-0000000000-0000023296.tif
	29/10/2020 16:03:37 | Working on file S2_percentile_30_UTM_220-0000000000-0000000000.tif
29/10/2020 16:03:38 | Working on tile 41V
29/10/2020 16:03:44 | 8 files to process
	29/10/2020 16:03:44 | Working on file S2_percentile_30_UTM_160-0000069888-0000023296.tif
	29/10/2020 16:03:46 | Working on file S2_percentile_30_UTM_160-0000069888-0000000000.tif
	29/10/2020 16:03:46 | Working on file S2_percentile_30_UTM_160-0000046592-0000023296.tif
	29/10/2020 16:03:47 | Working on file S2_percentile_30_UTM_160-0000046592-0000000000.tif
	29/10/2020 16:03:48 | Working on file S2_percentile_30_UTM_160-0000023296-0000023296.tif
	29/10/2020 16:03:48 | Working on file S2_percentile_30_UTM_160-0000023296-0000000000.tif
	29/10/2020 16:03:49 | Working on file S2_percentile_30_UTM_160-0000000000-0000023296.tif
	29/10/2020 16:03:50 | Working on file S2_percentile_30_UTM_160-0000000000-0000000000.tif
29/10/2020 16:03:51 | Working on tile 41W
29/10/2020 16:03:58 | 8 files to process
	29/10/2020 16:03:58 | Working on file S2_percentile_UTM_100-0000069888-0000023296.tif
	29/10/2020 16:03:59 | Working on file S2_percentile_UTM_100-0000069888-0000000000.tif
	29/10/2020 16:04:00 | Working on file S2_percentile_UTM_100-0000046592-0000023296.tif
	29/10/2020 16:04:00 | Working on file S2_percentile_UTM_100-0000046592-0000000000.tif
	29/10/2020 16:04:01 | Working on file S2_percentile_UTM_100-0000023296-0000023296.tif
	29/10/2020 16:04:02 | Working on file S2_percentile_UTM_100-0000023296-0000000000.tif
	29/10/2020 16:04:03 | Working on file S2_percentile_UTM_100-0000000000-0000023296.tif
	29/10/2020 16:04:03 | Working on file S2_percentile_UTM_100-0000000000-0000000000.tif
29/10/2020 16:04:04 | Working on tile 41X
	41X_UTM.vrt contains no GeoTIFF, attempting 41X.vrt
29/10/2020 16:04:07 | 8 files to process
	29/10/2020 16:04:07 | Working on file S2_percentile_30_UTM_40-0000116480-0000023296.tif
	29/10/2020 16:04:08 | Working on file S2_percentile_30_UTM_40-0000116480-0000000000.tif
	29/10/2020 16:04:09 | Working on file S2_percentile_30_UTM_40-0000093184-0000023296.tif
	29/10/2020 16:04:09 | Working on file S2_percentile_30_UTM_40-0000093184-0000000000.tif
	29/10/2020 16:04:10 | Working on file S2_percentile_30_UTM_40-0000069888-0000000000.tif
	29/10/2020 16:04:11 | Working on file S2_percentile_30_UTM_40-0000046592-0000000000.tif
	29/10/2020 16:04:12 | Working on file S2_percentile_30_UTM_40-0000023296-0000000000.tif
	29/10/2020 16:04:13 | Working on file S2_percentile_30_UTM_40-0000000000-0000000000.tif
29/10/2020 16:04:13 | Working on tile 42F
	42F_UTM.vrt contains no GeoTIFF, attempting 42F.vrt
29/10/2020 16:04:16 | 6 files to process
	29/10/2020 16:04:16 | Working on file S2_percentile_30_UTM_1001-0000046592-0000023296.tif
	29/10/2020 16:04:17 | Working on file S2_percentile_30_UTM_1001-0000023296-0000023296.tif
	29/10/2020 16:04:18 | Working on file S2_percentile_30_UTM_1001-0000023296-0000000000.tif
	29/10/2020 16:04:19 | Working on file S2_percentile_30_UTM_1001-0000000000-0000046592.tif
	29/10/2020 16:04:20 | Working on file S2_percentile_30_UTM_1001-0000000000-0000023296.tif
	29/10/2020 16:04:21 | Working on file S2_percentile_30_UTM_1001-0000000000-0000000000.tif
29/10/2020 16:04:22 | Working on tile 42M
29/10/2020 16:04:29 | 12 files to process
	29/10/2020 16:04:29 | Working on file S2_percentile_30_UTM_641-0000069888-0000046592.tif
	29/10/2020 16:04:30 | Working on file S2_percentile_30_UTM_641-0000069888-0000023296.tif
	29/10/2020 16:04:31 | Working on file S2_percentile_30_UTM_641-0000069888-0000000000.tif
	29/10/2020 16:04:32 | Working on file S2_percentile_30_UTM_641-0000046592-0000046592.tif
	29/10/2020 16:04:33 | Working on file S2_percentile_30_UTM_641-0000046592-0000023296.tif
	29/10/2020 16:04:33 | Working on file S2_percentile_30_UTM_641-0000046592-0000000000.tif
	29/10/2020 16:04:34 | Working on file S2_percentile_30_UTM_641-0000023296-0000046592.tif
	29/10/2020 16:04:35 | Working on file S2_percentile_30_UTM_641-0000023296-0000023296.tif
	29/10/2020 16:04:36 | Working on file S2_percentile_30_UTM_641-0000023296-0000000000.tif
	29/10/2020 16:04:37 | Working on file S2_percentile_30_UTM_641-0000000000-0000046592.tif
	29/10/2020 16:04:37 | Working on file S2_percentile_30_UTM_641-0000000000-0000023296.tif
	29/10/2020 16:04:38 | Working on file S2_percentile_30_UTM_641-0000000000-0000000000.tif
29/10/2020 16:04:39 | Working on tile 42P
29/10/2020 16:04:46 | 2 files to process
	29/10/2020 16:04:46 | Working on file S2_percentile_30_UTM_521-0000023296-0000046592.tif
	29/10/2020 16:04:47 | Working on file S2_percentile_30_UTM_521-0000000000-0000046592.tif
29/10/2020 16:04:48 | Working on tile 42Q
29/10/2020 16:04:55 | 10 files to process
	29/10/2020 16:04:55 | Working on file S2_percentile_UTM_461-0000069888-0000046592.tif
	29/10/2020 16:04:56 | Working on file S2_percentile_UTM_461-0000069888-0000023296.tif
	29/10/2020 16:04:57 | Working on file S2_percentile_UTM_461-0000046592-0000046592.tif
	29/10/2020 16:04:58 | Working on file S2_percentile_UTM_461-0000046592-0000023296.tif
	29/10/2020 16:04:58 | Working on file S2_percentile_UTM_461-0000023296-0000046592.tif
	29/10/2020 16:04:59 | Working on file S2_percentile_UTM_461-0000023296-0000023296.tif
	29/10/2020 16:05:00 | Working on file S2_percentile_UTM_461-0000023296-0000000000.tif
	29/10/2020 16:05:00 | Working on file S2_percentile_UTM_461-0000000000-0000046592.tif
	29/10/2020 16:05:01 | Working on file S2_percentile_UTM_461-0000000000-0000023296.tif
	29/10/2020 16:05:02 | Working on file S2_percentile_UTM_461-0000000000-0000000000.tif
29/10/2020 16:05:03 | Working on tile 42R
29/10/2020 16:05:09 | 12 files to process
	29/10/2020 16:05:09 | Working on file S2_percentile_UTM_401-0000069888-0000046592.tif
	29/10/2020 16:05:11 | Working on file S2_percentile_UTM_401-0000069888-0000023296.tif
	29/10/2020 16:05:12 | Working on file S2_percentile_UTM_401-0000069888-0000000000.tif
	29/10/2020 16:05:13 | Working on file S2_percentile_UTM_401-0000046592-0000046592.tif
	29/10/2020 16:05:13 | Working on file S2_percentile_UTM_401-0000046592-0000023296.tif
	29/10/2020 16:05:14 | Working on file S2_percentile_UTM_401-0000046592-0000000000.tif
	29/10/2020 16:05:15 | Working on file S2_percentile_UTM_401-0000023296-0000046592.tif
	29/10/2020 16:05:15 | Working on file S2_percentile_UTM_401-0000023296-0000023296.tif
	29/10/2020 16:05:16 | Working on file S2_percentile_UTM_401-0000023296-0000000000.tif
	29/10/2020 16:05:17 | Working on file S2_percentile_UTM_401-0000000000-0000046592.tif
	29/10/2020 16:05:18 | Working on file S2_percentile_UTM_401-0000000000-0000023296.tif
	29/10/2020 16:05:19 | Working on file S2_percentile_UTM_401-0000000000-0000000000.tif
29/10/2020 16:05:19 | Working on tile 42S
29/10/2020 16:05:28 | 12 files to process
	29/10/2020 16:05:28 | Working on file S2_percentile_30_UTM_341-0000069888-0000046592.tif
	29/10/2020 16:05:29 | Working on file S2_percentile_30_UTM_341-0000069888-0000023296.tif
	29/10/2020 16:05:30 | Working on file S2_percentile_30_UTM_341-0000069888-0000000000.tif
	29/10/2020 16:05:31 | Working on file S2_percentile_30_UTM_341-0000046592-0000046592.tif
	29/10/2020 16:05:31 | Working on file S2_percentile_30_UTM_341-0000046592-0000023296.tif
	29/10/2020 16:05:32 | Working on file S2_percentile_30_UTM_341-0000046592-0000000000.tif
	29/10/2020 16:05:34 | Working on file S2_percentile_30_UTM_341-0000023296-0000046592.tif
	29/10/2020 16:05:34 | Working on file S2_percentile_30_UTM_341-0000023296-0000023296.tif
	29/10/2020 16:05:35 | Working on file S2_percentile_30_UTM_341-0000023296-0000000000.tif
	29/10/2020 16:05:37 | Working on file S2_percentile_30_UTM_341-0000000000-0000046592.tif
	29/10/2020 16:05:37 | Working on file S2_percentile_30_UTM_341-0000000000-0000023296.tif
	29/10/2020 16:05:39 | Working on file S2_percentile_30_UTM_341-0000000000-0000000000.tif
29/10/2020 16:05:40 | Working on tile 42T
29/10/2020 16:05:52 | 12 files to process
	29/10/2020 16:05:52 | Working on file S2_percentile_30_UTM_281-0000069888-0000046592.tif
	29/10/2020 16:05:53 | Working on file S2_percentile_30_UTM_281-0000069888-0000023296.tif
	29/10/2020 16:05:54 | Working on file S2_percentile_30_UTM_281-0000069888-0000000000.tif
	29/10/2020 16:05:55 | Working on file S2_percentile_30_UTM_281-0000046592-0000046592.tif
	29/10/2020 16:05:56 | Working on file S2_percentile_30_UTM_281-0000046592-0000023296.tif
	29/10/2020 16:05:57 | Working on file S2_percentile_30_UTM_281-0000046592-0000000000.tif
	29/10/2020 16:05:57 | Working on file S2_percentile_30_UTM_281-0000023296-0000046592.tif
	29/10/2020 16:05:58 | Working on file S2_percentile_30_UTM_281-0000023296-0000023296.tif
	29/10/2020 16:05:59 | Working on file S2_percentile_30_UTM_281-0000023296-0000000000.tif
	29/10/2020 16:06:00 | Working on file S2_percentile_30_UTM_281-0000000000-0000046592.tif
	29/10/2020 16:06:01 | Working on file S2_percentile_30_UTM_281-0000000000-0000023296.tif
	29/10/2020 16:06:02 | Working on file S2_percentile_30_UTM_281-0000000000-0000000000.tif
29/10/2020 16:06:03 | Working on tile 42U
	42U_UTM.vrt contains no GeoTIFF, attempting 42U.vrt
29/10/2020 16:06:05 | 9 files to process
	29/10/2020 16:06:05 | Working on file S2_percentile_30_UTM_221-0000069888-0000046592.tif
	29/10/2020 16:06:06 | Working on file S2_percentile_30_UTM_221-0000069888-0000023296.tif
	29/10/2020 16:06:06 | Working on file S2_percentile_30_UTM_221-0000069888-0000000000.tif
	29/10/2020 16:06:07 | Working on file S2_percentile_30_UTM_221-0000046592-0000023296.tif
	29/10/2020 16:06:08 | Working on file S2_percentile_30_UTM_221-0000046592-0000000000.tif
	29/10/2020 16:06:09 | Working on file S2_percentile_30_UTM_221-0000023296-0000023296.tif
	29/10/2020 16:06:09 | Working on file S2_percentile_30_UTM_221-0000023296-0000000000.tif
	29/10/2020 16:06:10 | Working on file S2_percentile_30_UTM_221-0000000000-0000023296.tif
	29/10/2020 16:06:11 | Working on file S2_percentile_30_UTM_221-0000000000-0000000000.tif
29/10/2020 16:06:12 | Working on tile 42V
	42V_UTM.vrt contains no GeoTIFF, attempting 42V.vrt
29/10/2020 16:06:14 | 8 files to process
	29/10/2020 16:06:14 | Working on file S2_percentile_30_UTM_161-0000069888-0000023296.tif
	29/10/2020 16:06:16 | Working on file S2_percentile_30_UTM_161-0000069888-0000000000.tif
	29/10/2020 16:06:16 | Working on file S2_percentile_30_UTM_161-0000046592-0000023296.tif
	29/10/2020 16:06:17 | Working on file S2_percentile_30_UTM_161-0000046592-0000000000.tif
	29/10/2020 16:06:18 | Working on file S2_percentile_30_UTM_161-0000023296-0000023296.tif
	29/10/2020 16:06:19 | Working on file S2_percentile_30_UTM_161-0000023296-0000000000.tif
	29/10/2020 16:06:19 | Working on file S2_percentile_30_UTM_161-0000000000-0000023296.tif
	29/10/2020 16:06:20 | Working on file S2_percentile_30_UTM_161-0000000000-0000000000.tif
29/10/2020 16:06:21 | Working on tile 42W
29/10/2020 16:06:27 | 8 files to process
	29/10/2020 16:06:27 | Working on file S2_percentile_UTM_101-0000069888-0000023296.tif
	29/10/2020 16:06:27 | Working on file S2_percentile_UTM_101-0000069888-0000000000.tif
	29/10/2020 16:06:28 | Working on file S2_percentile_UTM_101-0000046592-0000023296.tif
	29/10/2020 16:06:28 | Working on file S2_percentile_UTM_101-0000046592-0000000000.tif
	29/10/2020 16:06:29 | Working on file S2_percentile_UTM_101-0000023296-0000023296.tif
	29/10/2020 16:06:30 | Working on file S2_percentile_UTM_101-0000023296-0000000000.tif
	29/10/2020 16:06:31 | Working on file S2_percentile_UTM_101-0000000000-0000023296.tif
	29/10/2020 16:06:32 | Working on file S2_percentile_UTM_101-0000000000-0000000000.tif
29/10/2020 16:06:33 | Working on tile 42X
	42X_UTM.vrt contains no GeoTIFF, attempting 42X.vrt
29/10/2020 16:06:35 | 10 files to process
	29/10/2020 16:06:35 | Working on file S2_percentile_30_UTM_41-0000116480-0000000000.tif
	29/10/2020 16:06:36 | Working on file S2_percentile_30_UTM_41-0000093184-0000000000.tif
	29/10/2020 16:06:37 | Working on file S2_percentile_30_UTM_41-0000069888-0000023296.tif
	29/10/2020 16:06:37 | Working on file S2_percentile_30_UTM_41-0000069888-0000000000.tif
	29/10/2020 16:06:38 | Working on file S2_percentile_30_UTM_41-0000046592-0000023296.tif
	29/10/2020 16:06:38 | Working on file S2_percentile_30_UTM_41-0000046592-0000000000.tif
	29/10/2020 16:06:39 | Working on file S2_percentile_30_UTM_41-0000023296-0000023296.tif
	29/10/2020 16:06:39 | Working on file S2_percentile_30_UTM_41-0000023296-0000000000.tif
	29/10/2020 16:06:40 | Working on file S2_percentile_30_UTM_41-0000000000-0000023296.tif
	29/10/2020 16:06:40 | Working on file S2_percentile_30_UTM_41-0000000000-0000000000.tif
29/10/2020 16:06:41 | Working on tile 43F
	43F_UTM.vrt contains no GeoTIFF, attempting 43F.vrt
29/10/2020 16:06:44 | 5 files to process
	29/10/2020 16:06:44 | Working on file S2_percentile_30_UTM_1002-0000069888-0000023296.tif
	29/10/2020 16:06:45 | Working on file S2_percentile_30_UTM_1002-0000046592-0000023296.tif
	29/10/2020 16:06:45 | Working on file S2_percentile_30_UTM_1002-0000046592-0000000000.tif
	29/10/2020 16:06:46 | Working on file S2_percentile_30_UTM_1002-0000023296-0000000000.tif
	29/10/2020 16:06:47 | Working on file S2_percentile_30_UTM_1002-0000000000-0000000000.tif
29/10/2020 16:06:48 | Working on tile 43M
	43M_UTM.vrt contains no GeoTIFF, attempting 43M.vrt
29/10/2020 16:06:51 | 12 files to process
	29/10/2020 16:06:51 | Working on file S2_percentile_30_UTM_642-0000069888-0000046592.tif
	29/10/2020 16:06:52 | Working on file S2_percentile_30_UTM_642-0000069888-0000023296.tif
	29/10/2020 16:06:52 | Working on file S2_percentile_30_UTM_642-0000069888-0000000000.tif
	29/10/2020 16:06:53 | Working on file S2_percentile_30_UTM_642-0000046592-0000046592.tif
	29/10/2020 16:06:54 | Working on file S2_percentile_30_UTM_642-0000046592-0000023296.tif
	29/10/2020 16:06:55 | Working on file S2_percentile_30_UTM_642-0000046592-0000000000.tif
	29/10/2020 16:06:56 | Working on file S2_percentile_30_UTM_642-0000023296-0000046592.tif
	29/10/2020 16:06:56 | Working on file S2_percentile_30_UTM_642-0000023296-0000023296.tif
	29/10/2020 16:06:57 | Working on file S2_percentile_30_UTM_642-0000023296-0000000000.tif
	29/10/2020 16:06:58 | Working on file S2_percentile_30_UTM_642-0000000000-0000046592.tif
	29/10/2020 16:06:59 | Working on file S2_percentile_30_UTM_642-0000000000-0000023296.tif
	29/10/2020 16:07:00 | Working on file S2_percentile_30_UTM_642-0000000000-0000000000.tif
29/10/2020 16:07:01 | Working on tile 43P
29/10/2020 16:07:08 | 12 files to process
	29/10/2020 16:07:08 | Working on file S2_percentile_UTM_522-0000069888-0000046592.tif
	29/10/2020 16:07:09 | Working on file S2_percentile_UTM_522-0000069888-0000023296.tif
	29/10/2020 16:07:10 | Working on file S2_percentile_UTM_522-0000069888-0000000000.tif
	29/10/2020 16:07:11 | Working on file S2_percentile_UTM_522-0000046592-0000046592.tif
	29/10/2020 16:07:11 | Working on file S2_percentile_UTM_522-0000046592-0000023296.tif
	29/10/2020 16:07:12 | Working on file S2_percentile_UTM_522-0000046592-0000000000.tif
	29/10/2020 16:07:13 | Working on file S2_percentile_UTM_522-0000023296-0000046592.tif
	29/10/2020 16:07:14 | Working on file S2_percentile_UTM_522-0000023296-0000023296.tif
	29/10/2020 16:07:15 | Working on file S2_percentile_UTM_522-0000023296-0000000000.tif
	29/10/2020 16:07:15 | Working on file S2_percentile_UTM_522-0000000000-0000046592.tif
	29/10/2020 16:07:16 | Working on file S2_percentile_UTM_522-0000000000-0000023296.tif
	29/10/2020 16:07:17 | Working on file S2_percentile_UTM_522-0000000000-0000000000.tif
29/10/2020 16:07:18 | Working on tile 43Q
29/10/2020 16:07:25 | 12 files to process
	29/10/2020 16:07:25 | Working on file S2_percentile_UTM_462-0000069888-0000046592.tif
	29/10/2020 16:07:25 | Working on file S2_percentile_UTM_462-0000069888-0000023296.tif
	29/10/2020 16:07:26 | Working on file S2_percentile_UTM_462-0000069888-0000000000.tif
	29/10/2020 16:07:27 | Working on file S2_percentile_UTM_462-0000046592-0000046592.tif
	29/10/2020 16:07:28 | Working on file S2_percentile_UTM_462-0000046592-0000023296.tif
	29/10/2020 16:07:29 | Working on file S2_percentile_UTM_462-0000046592-0000000000.tif
	29/10/2020 16:07:29 | Working on file S2_percentile_UTM_462-0000023296-0000046592.tif
	29/10/2020 16:07:30 | Working on file S2_percentile_UTM_462-0000023296-0000023296.tif
	29/10/2020 16:07:31 | Working on file S2_percentile_UTM_462-0000023296-0000000000.tif
	29/10/2020 16:07:32 | Working on file S2_percentile_UTM_462-0000000000-0000046592.tif
	29/10/2020 16:07:32 | Working on file S2_percentile_UTM_462-0000000000-0000023296.tif
	29/10/2020 16:07:34 | Working on file S2_percentile_UTM_462-0000000000-0000000000.tif
29/10/2020 16:07:34 | Working on tile 43R
	43R_UTM.vrt contains no GeoTIFF, attempting 43R.vrt
29/10/2020 16:07:37 | 12 files to process
	29/10/2020 16:07:37 | Working on file S2_percentile_30_UTM_402-0000069888-0000046592.tif
	29/10/2020 16:07:38 | Working on file S2_percentile_30_UTM_402-0000069888-0000023296.tif
	29/10/2020 16:07:39 | Working on file S2_percentile_30_UTM_402-0000069888-0000000000.tif
	29/10/2020 16:07:40 | Working on file S2_percentile_30_UTM_402-0000046592-0000046592.tif
	29/10/2020 16:07:40 | Working on file S2_percentile_30_UTM_402-0000046592-0000023296.tif
	29/10/2020 16:07:41 | Working on file S2_percentile_30_UTM_402-0000046592-0000000000.tif
	29/10/2020 16:07:42 | Working on file S2_percentile_30_UTM_402-0000023296-0000046592.tif
	29/10/2020 16:07:43 | Working on file S2_percentile_30_UTM_402-0000023296-0000023296.tif
	29/10/2020 16:07:44 | Working on file S2_percentile_30_UTM_402-0000023296-0000000000.tif
	29/10/2020 16:07:45 | Working on file S2_percentile_30_UTM_402-0000000000-0000046592.tif
	29/10/2020 16:07:45 | Working on file S2_percentile_30_UTM_402-0000000000-0000023296.tif
	29/10/2020 16:07:46 | Working on file S2_percentile_30_UTM_402-0000000000-0000000000.tif
29/10/2020 16:07:47 | Working on tile 43S
29/10/2020 16:07:54 | 12 files to process
	29/10/2020 16:07:54 | Working on file S2_percentile_30_UTM_342-0000069888-0000046592.tif
	29/10/2020 16:07:55 | Working on file S2_percentile_30_UTM_342-0000069888-0000023296.tif
	29/10/2020 16:07:56 | Working on file S2_percentile_30_UTM_342-0000069888-0000000000.tif
	29/10/2020 16:07:57 | Working on file S2_percentile_30_UTM_342-0000046592-0000046592.tif
	29/10/2020 16:07:57 | Working on file S2_percentile_30_UTM_342-0000046592-0000023296.tif
	29/10/2020 16:07:58 | Working on file S2_percentile_30_UTM_342-0000046592-0000000000.tif
	29/10/2020 16:07:59 | Working on file S2_percentile_30_UTM_342-0000023296-0000046592.tif
	29/10/2020 16:08:00 | Working on file S2_percentile_30_UTM_342-0000023296-0000023296.tif
	29/10/2020 16:08:01 | Working on file S2_percentile_30_UTM_342-0000023296-0000000000.tif
	29/10/2020 16:08:01 | Working on file S2_percentile_30_UTM_342-0000000000-0000046592.tif
	29/10/2020 16:08:02 | Working on file S2_percentile_30_UTM_342-0000000000-0000023296.tif
	29/10/2020 16:08:03 | Working on file S2_percentile_30_UTM_342-0000000000-0000000000.tif
29/10/2020 16:08:04 | Working on tile 43T
29/10/2020 16:08:12 | 12 files to process
	29/10/2020 16:08:12 | Working on file S2_percentile_30_UTM_282-0000069888-0000046592.tif
	29/10/2020 16:08:12 | Working on file S2_percentile_30_UTM_282-0000069888-0000023296.tif
	29/10/2020 16:08:13 | Working on file S2_percentile_30_UTM_282-0000069888-0000000000.tif
	29/10/2020 16:08:14 | Working on file S2_percentile_30_UTM_282-0000046592-0000046592.tif
	29/10/2020 16:08:14 | Working on file S2_percentile_30_UTM_282-0000046592-0000023296.tif
	29/10/2020 16:08:15 | Working on file S2_percentile_30_UTM_282-0000046592-0000000000.tif
	29/10/2020 16:08:16 | Working on file S2_percentile_30_UTM_282-0000023296-0000046592.tif
	29/10/2020 16:08:17 | Working on file S2_percentile_30_UTM_282-0000023296-0000023296.tif
	29/10/2020 16:08:17 | Working on file S2_percentile_30_UTM_282-0000023296-0000000000.tif
	29/10/2020 16:08:18 | Working on file S2_percentile_30_UTM_282-0000000000-0000046592.tif
	29/10/2020 16:08:19 | Working on file S2_percentile_30_UTM_282-0000000000-0000023296.tif
	29/10/2020 16:08:19 | Working on file S2_percentile_30_UTM_282-0000000000-0000000000.tif
29/10/2020 16:08:20 | Working on tile 43U
29/10/2020 16:08:27 | 8 files to process
	29/10/2020 16:08:27 | Working on file S2_percentile_30_UTM_222-0000069888-0000023296.tif
	29/10/2020 16:08:28 | Working on file S2_percentile_30_UTM_222-0000069888-0000000000.tif
	29/10/2020 16:08:28 | Working on file S2_percentile_30_UTM_222-0000046592-0000023296.tif
	29/10/2020 16:08:29 | Working on file S2_percentile_30_UTM_222-0000046592-0000000000.tif
	29/10/2020 16:08:30 | Working on file S2_percentile_30_UTM_222-0000023296-0000023296.tif
	29/10/2020 16:08:31 | Working on file S2_percentile_30_UTM_222-0000023296-0000000000.tif
	29/10/2020 16:08:31 | Working on file S2_percentile_30_UTM_222-0000000000-0000023296.tif
	29/10/2020 16:08:33 | Working on file S2_percentile_30_UTM_222-0000000000-0000000000.tif
29/10/2020 16:08:34 | Working on tile 43V
29/10/2020 16:08:41 | 8 files to process
	29/10/2020 16:08:41 | Working on file S2_percentile_30_UTM_162-0000069888-0000023296.tif
	29/10/2020 16:08:42 | Working on file S2_percentile_30_UTM_162-0000069888-0000000000.tif
	29/10/2020 16:08:43 | Working on file S2_percentile_30_UTM_162-0000046592-0000023296.tif
	29/10/2020 16:08:43 | Working on file S2_percentile_30_UTM_162-0000046592-0000000000.tif
	29/10/2020 16:08:45 | Working on file S2_percentile_30_UTM_162-0000023296-0000023296.tif
	29/10/2020 16:08:46 | Working on file S2_percentile_30_UTM_162-0000023296-0000000000.tif
	29/10/2020 16:08:46 | Working on file S2_percentile_30_UTM_162-0000000000-0000023296.tif
	29/10/2020 16:08:47 | Working on file S2_percentile_30_UTM_162-0000000000-0000000000.tif
29/10/2020 16:08:48 | Working on tile 43W
	43W_UTM.vrt contains no GeoTIFF, attempting 43W.vrt
29/10/2020 16:08:50 | 8 files to process
	29/10/2020 16:08:50 | Working on file S2_percentile_UTM_102-0000069888-0000023296.tif
	29/10/2020 16:08:51 | Working on file S2_percentile_UTM_102-0000069888-0000000000.tif
	29/10/2020 16:08:52 | Working on file S2_percentile_UTM_102-0000046592-0000023296.tif
	29/10/2020 16:08:52 | Working on file S2_percentile_UTM_102-0000046592-0000000000.tif
	29/10/2020 16:08:53 | Working on file S2_percentile_UTM_102-0000023296-0000023296.tif
	29/10/2020 16:08:54 | Working on file S2_percentile_UTM_102-0000023296-0000000000.tif
	29/10/2020 16:08:55 | Working on file S2_percentile_UTM_102-0000000000-0000023296.tif
	29/10/2020 16:08:56 | Working on file S2_percentile_UTM_102-0000000000-0000000000.tif
29/10/2020 16:08:57 | Working on tile 43X
	43X_UTM.vrt contains no GeoTIFF, attempting 43X.vrt
29/10/2020 16:08:59 | 8 files to process
	29/10/2020 16:08:59 | Working on file S2_percentile_30_UTM_42-0000116480-0000023296.tif
	29/10/2020 16:09:00 | Working on file S2_percentile_30_UTM_42-0000116480-0000000000.tif
	29/10/2020 16:09:01 | Working on file S2_percentile_30_UTM_42-0000093184-0000023296.tif
	29/10/2020 16:09:01 | Working on file S2_percentile_30_UTM_42-0000093184-0000000000.tif
	29/10/2020 16:09:02 | Working on file S2_percentile_30_UTM_42-0000069888-0000000000.tif
	29/10/2020 16:09:03 | Working on file S2_percentile_30_UTM_42-0000046592-0000000000.tif
	29/10/2020 16:09:03 | Working on file S2_percentile_30_UTM_42-0000023296-0000000000.tif
	29/10/2020 16:09:04 | Working on file S2_percentile_30_UTM_42-0000000000-0000000000.tif
29/10/2020 16:09:05 | Working on tile 44N
	44N_UTM.vrt contains no GeoTIFF, attempting 44N.vrt
29/10/2020 16:09:07 | 6 files to process
	29/10/2020 16:09:07 | Working on file S2_percentile_30_UTM_583-0000023296-0000046592.tif
	29/10/2020 16:09:08 | Working on file S2_percentile_30_UTM_583-0000023296-0000023296.tif
	29/10/2020 16:09:09 | Working on file S2_percentile_30_UTM_583-0000023296-0000000000.tif
	29/10/2020 16:09:10 | Working on file S2_percentile_30_UTM_583-0000000000-0000046592.tif
	29/10/2020 16:09:11 | Working on file S2_percentile_30_UTM_583-0000000000-0000023296.tif
	29/10/2020 16:09:12 | Working on file S2_percentile_30_UTM_583-0000000000-0000000000.tif
29/10/2020 16:09:12 | Working on tile 44P
29/10/2020 16:09:19 | 12 files to process
	29/10/2020 16:09:19 | Working on file S2_percentile_UTM_523-0000069888-0000046592.tif
	29/10/2020 16:09:20 | Working on file S2_percentile_UTM_523-0000069888-0000023296.tif
	29/10/2020 16:09:20 | Working on file S2_percentile_UTM_523-0000069888-0000000000.tif
	29/10/2020 16:09:21 | Working on file S2_percentile_UTM_523-0000046592-0000046592.tif
	29/10/2020 16:09:22 | Working on file S2_percentile_UTM_523-0000046592-0000023296.tif
	29/10/2020 16:09:23 | Working on file S2_percentile_UTM_523-0000046592-0000000000.tif
	29/10/2020 16:09:24 | Working on file S2_percentile_UTM_523-0000023296-0000046592.tif
	29/10/2020 16:09:24 | Working on file S2_percentile_UTM_523-0000023296-0000023296.tif
	29/10/2020 16:09:25 | Working on file S2_percentile_UTM_523-0000023296-0000000000.tif
	29/10/2020 16:09:26 | Working on file S2_percentile_UTM_523-0000000000-0000046592.tif
	29/10/2020 16:09:27 | Working on file S2_percentile_UTM_523-0000000000-0000023296.tif
	29/10/2020 16:09:28 | Working on file S2_percentile_UTM_523-0000000000-0000000000.tif
29/10/2020 16:09:29 | Working on tile 44Q
29/10/2020 16:09:35 | 12 files to process
	29/10/2020 16:09:35 | Working on file S2_percentile_UTM_463-0000069888-0000046592.tif
	29/10/2020 16:09:36 | Working on file S2_percentile_UTM_463-0000069888-0000023296.tif
	29/10/2020 16:09:37 | Working on file S2_percentile_UTM_463-0000069888-0000000000.tif
	29/10/2020 16:09:38 | Working on file S2_percentile_UTM_463-0000046592-0000046592.tif
	29/10/2020 16:09:38 | Working on file S2_percentile_UTM_463-0000046592-0000023296.tif
	29/10/2020 16:09:39 | Working on file S2_percentile_UTM_463-0000046592-0000000000.tif
	29/10/2020 16:09:40 | Working on file S2_percentile_UTM_463-0000023296-0000046592.tif
	29/10/2020 16:09:41 | Working on file S2_percentile_UTM_463-0000023296-0000023296.tif
	29/10/2020 16:09:41 | Working on file S2_percentile_UTM_463-0000023296-0000000000.tif
	29/10/2020 16:09:43 | Working on file S2_percentile_UTM_463-0000000000-0000046592.tif
	29/10/2020 16:09:44 | Working on file S2_percentile_UTM_463-0000000000-0000023296.tif
	29/10/2020 16:09:44 | Working on file S2_percentile_UTM_463-0000000000-0000000000.tif
29/10/2020 16:09:45 | Working on tile 44R
29/10/2020 16:09:51 | 12 files to process
	29/10/2020 16:09:51 | Working on file S2_percentile_30_UTM_403-0000069888-0000046592.tif
	29/10/2020 16:09:52 | Working on file S2_percentile_30_UTM_403-0000069888-0000023296.tif
	29/10/2020 16:09:53 | Working on file S2_percentile_30_UTM_403-0000069888-0000000000.tif
	29/10/2020 16:09:54 | Working on file S2_percentile_30_UTM_403-0000046592-0000046592.tif
	29/10/2020 16:09:55 | Working on file S2_percentile_30_UTM_403-0000046592-0000023296.tif
	29/10/2020 16:09:55 | Working on file S2_percentile_30_UTM_403-0000046592-0000000000.tif
	29/10/2020 16:09:56 | Working on file S2_percentile_30_UTM_403-0000023296-0000046592.tif
	29/10/2020 16:09:57 | Working on file S2_percentile_30_UTM_403-0000023296-0000023296.tif
	29/10/2020 16:09:58 | Working on file S2_percentile_30_UTM_403-0000023296-0000000000.tif
	29/10/2020 16:09:59 | Working on file S2_percentile_30_UTM_403-0000000000-0000046592.tif
	29/10/2020 16:10:00 | Working on file S2_percentile_30_UTM_403-0000000000-0000023296.tif
	29/10/2020 16:10:01 | Working on file S2_percentile_30_UTM_403-0000000000-0000000000.tif
29/10/2020 16:10:02 | Working on tile 44S
	44S_UTM.vrt contains no GeoTIFF, attempting 44S.vrt
29/10/2020 16:10:06 | 12 files to process
	29/10/2020 16:10:06 | Working on file S2_percentile_30_UTM_343-0000069888-0000046592.tif
	29/10/2020 16:10:07 | Working on file S2_percentile_30_UTM_343-0000069888-0000023296.tif
	29/10/2020 16:10:07 | Working on file S2_percentile_30_UTM_343-0000069888-0000000000.tif
	29/10/2020 16:10:08 | Working on file S2_percentile_30_UTM_343-0000046592-0000046592.tif
	29/10/2020 16:10:09 | Working on file S2_percentile_30_UTM_343-0000046592-0000023296.tif
	29/10/2020 16:10:10 | Working on file S2_percentile_30_UTM_343-0000046592-0000000000.tif
	29/10/2020 16:10:11 | Working on file S2_percentile_30_UTM_343-0000023296-0000046592.tif
	29/10/2020 16:10:11 | Working on file S2_percentile_30_UTM_343-0000023296-0000023296.tif
	29/10/2020 16:10:12 | Working on file S2_percentile_30_UTM_343-0000023296-0000000000.tif
	29/10/2020 16:10:13 | Working on file S2_percentile_30_UTM_343-0000000000-0000046592.tif
	29/10/2020 16:10:14 | Working on file S2_percentile_30_UTM_343-0000000000-0000023296.tif
	29/10/2020 16:10:15 | Working on file S2_percentile_30_UTM_343-0000000000-0000000000.tif
29/10/2020 16:10:16 | Working on tile 44T
	44T_UTM.vrt contains no GeoTIFF, attempting 44T.vrt
29/10/2020 16:10:19 | 12 files to process
	29/10/2020 16:10:19 | Working on file S2_percentile_30_UTM_283-0000069888-0000046592.tif
	29/10/2020 16:10:20 | Working on file S2_percentile_30_UTM_283-0000069888-0000023296.tif
	29/10/2020 16:10:20 | Working on file S2_percentile_30_UTM_283-0000069888-0000000000.tif
	29/10/2020 16:10:21 | Working on file S2_percentile_30_UTM_283-0000046592-0000046592.tif
	29/10/2020 16:10:22 | Working on file S2_percentile_30_UTM_283-0000046592-0000023296.tif
	29/10/2020 16:10:23 | Working on file S2_percentile_30_UTM_283-0000046592-0000000000.tif
	29/10/2020 16:10:23 | Working on file S2_percentile_30_UTM_283-0000023296-0000046592.tif
	29/10/2020 16:10:24 | Working on file S2_percentile_30_UTM_283-0000023296-0000023296.tif
	29/10/2020 16:10:25 | Working on file S2_percentile_30_UTM_283-0000023296-0000000000.tif
	29/10/2020 16:10:26 | Working on file S2_percentile_30_UTM_283-0000000000-0000046592.tif
	29/10/2020 16:10:27 | Working on file S2_percentile_30_UTM_283-0000000000-0000023296.tif
	29/10/2020 16:10:27 | Working on file S2_percentile_30_UTM_283-0000000000-0000000000.tif
29/10/2020 16:10:28 | Working on tile 44U
	44U_UTM.vrt contains no GeoTIFF, attempting 44U.vrt
29/10/2020 16:10:32 | 9 files to process
	29/10/2020 16:10:32 | Working on file S2_percentile_30_UTM_223-0000069888-0000046592.tif
	29/10/2020 16:10:32 | Working on file S2_percentile_30_UTM_223-0000069888-0000023296.tif
	29/10/2020 16:10:33 | Working on file S2_percentile_30_UTM_223-0000069888-0000000000.tif
	29/10/2020 16:10:34 | Working on file S2_percentile_30_UTM_223-0000046592-0000023296.tif
	29/10/2020 16:10:35 | Working on file S2_percentile_30_UTM_223-0000046592-0000000000.tif
	29/10/2020 16:10:36 | Working on file S2_percentile_30_UTM_223-0000023296-0000023296.tif
	29/10/2020 16:10:37 | Working on file S2_percentile_30_UTM_223-0000023296-0000000000.tif
	29/10/2020 16:10:38 | Working on file S2_percentile_30_UTM_223-0000000000-0000023296.tif
	29/10/2020 16:10:39 | Working on file S2_percentile_30_UTM_223-0000000000-0000000000.tif
29/10/2020 16:10:39 | Working on tile 44V
	44V_UTM.vrt contains no GeoTIFF, attempting 44V.vrt
29/10/2020 16:10:42 | 8 files to process
	29/10/2020 16:10:42 | Working on file S2_percentile_30_UTM_163-0000069888-0000023296.tif
	29/10/2020 16:10:43 | Working on file S2_percentile_30_UTM_163-0000069888-0000000000.tif
	29/10/2020 16:10:44 | Working on file S2_percentile_30_UTM_163-0000046592-0000023296.tif
	29/10/2020 16:10:45 | Working on file S2_percentile_30_UTM_163-0000046592-0000000000.tif
	29/10/2020 16:10:45 | Working on file S2_percentile_30_UTM_163-0000023296-0000023296.tif
	29/10/2020 16:10:47 | Working on file S2_percentile_30_UTM_163-0000023296-0000000000.tif
	29/10/2020 16:10:47 | Working on file S2_percentile_30_UTM_163-0000000000-0000023296.tif
	29/10/2020 16:10:48 | Working on file S2_percentile_30_UTM_163-0000000000-0000000000.tif
29/10/2020 16:10:49 | Working on tile 44W
	44W_UTM.vrt contains no GeoTIFF, attempting 44W.vrt
29/10/2020 16:10:51 | 8 files to process
	29/10/2020 16:10:51 | Working on file S2_percentile_30_UTM_103-0000069888-0000023296.tif
	29/10/2020 16:10:52 | Working on file S2_percentile_30_UTM_103-0000069888-0000000000.tif
	29/10/2020 16:10:53 | Working on file S2_percentile_30_UTM_103-0000046592-0000023296.tif
	29/10/2020 16:10:53 | Working on file S2_percentile_30_UTM_103-0000046592-0000000000.tif
	29/10/2020 16:10:54 | Working on file S2_percentile_30_UTM_103-0000023296-0000023296.tif
	29/10/2020 16:10:55 | Working on file S2_percentile_30_UTM_103-0000023296-0000000000.tif
	29/10/2020 16:10:56 | Working on file S2_percentile_30_UTM_103-0000000000-0000023296.tif
	29/10/2020 16:10:57 | Working on file S2_percentile_30_UTM_103-0000000000-0000000000.tif
29/10/2020 16:10:57 | Working on tile 44X
	44X_UTM.vrt contains no GeoTIFF, attempting 44X.vrt
29/10/2020 16:11:00 | 8 files to process
	29/10/2020 16:11:00 | Working on file S2_percentile_30_UTM_43-0000116480-0000023296.tif
	29/10/2020 16:11:01 | Working on file S2_percentile_30_UTM_43-0000116480-0000000000.tif
	29/10/2020 16:11:01 | Working on file S2_percentile_30_UTM_43-0000093184-0000023296.tif
	29/10/2020 16:11:02 | Working on file S2_percentile_30_UTM_43-0000093184-0000000000.tif
	29/10/2020 16:11:03 | Working on file S2_percentile_30_UTM_43-0000069888-0000000000.tif
	29/10/2020 16:11:04 | Working on file S2_percentile_30_UTM_43-0000046592-0000000000.tif
	29/10/2020 16:11:05 | Working on file S2_percentile_30_UTM_43-0000023296-0000000000.tif
	29/10/2020 16:11:06 | Working on file S2_percentile_30_UTM_43-0000000000-0000000000.tif
29/10/2020 16:11:07 | Working on tile 45Q
29/10/2020 16:11:15 | 11 files to process
	29/10/2020 16:11:15 | Working on file S2_percentile_UTM_464-0000069888-0000023296.tif
	29/10/2020 16:11:16 | Working on file S2_percentile_UTM_464-0000069888-0000000000.tif
	29/10/2020 16:11:16 | Working on file S2_percentile_UTM_464-0000046592-0000046592.tif
	29/10/2020 16:11:17 | Working on file S2_percentile_UTM_464-0000046592-0000023296.tif
	29/10/2020 16:11:19 | Working on file S2_percentile_UTM_464-0000046592-0000000000.tif
	29/10/2020 16:11:19 | Working on file S2_percentile_UTM_464-0000023296-0000046592.tif
	29/10/2020 16:11:20 | Working on file S2_percentile_UTM_464-0000023296-0000023296.tif
	29/10/2020 16:11:21 | Working on file S2_percentile_UTM_464-0000023296-0000000000.tif
	29/10/2020 16:11:21 | Working on file S2_percentile_UTM_464-0000000000-0000046592.tif
	29/10/2020 16:11:22 | Working on file S2_percentile_UTM_464-0000000000-0000023296.tif
	29/10/2020 16:11:23 | Working on file S2_percentile_UTM_464-0000000000-0000000000.tif
29/10/2020 16:11:24 | Working on tile 45R
29/10/2020 16:11:30 | 12 files to process
	29/10/2020 16:11:30 | Working on file S2_percentile_30_UTM_404-0000069888-0000046592.tif
	29/10/2020 16:11:31 | Working on file S2_percentile_30_UTM_404-0000069888-0000023296.tif
	29/10/2020 16:11:32 | Working on file S2_percentile_30_UTM_404-0000069888-0000000000.tif
	29/10/2020 16:11:33 | Working on file S2_percentile_30_UTM_404-0000046592-0000046592.tif
	29/10/2020 16:11:33 | Working on file S2_percentile_30_UTM_404-0000046592-0000023296.tif
	29/10/2020 16:11:35 | Working on file S2_percentile_30_UTM_404-0000046592-0000000000.tif
	29/10/2020 16:11:36 | Working on file S2_percentile_30_UTM_404-0000023296-0000046592.tif
	29/10/2020 16:11:36 | Working on file S2_percentile_30_UTM_404-0000023296-0000023296.tif
	29/10/2020 16:11:37 | Working on file S2_percentile_30_UTM_404-0000023296-0000000000.tif
	29/10/2020 16:11:38 | Working on file S2_percentile_30_UTM_404-0000000000-0000046592.tif
	29/10/2020 16:11:39 | Working on file S2_percentile_30_UTM_404-0000000000-0000023296.tif
	29/10/2020 16:11:40 | Working on file S2_percentile_30_UTM_404-0000000000-0000000000.tif
29/10/2020 16:11:41 | Working on tile 45S
29/10/2020 16:11:48 | 12 files to process
	29/10/2020 16:11:48 | Working on file S2_percentile_30_UTM_344-0000069888-0000046592.tif
	29/10/2020 16:11:48 | Working on file S2_percentile_30_UTM_344-0000069888-0000023296.tif
	29/10/2020 16:11:49 | Working on file S2_percentile_30_UTM_344-0000069888-0000000000.tif
	29/10/2020 16:11:50 | Working on file S2_percentile_30_UTM_344-0000046592-0000046592.tif
	29/10/2020 16:11:51 | Working on file S2_percentile_30_UTM_344-0000046592-0000023296.tif
	29/10/2020 16:11:52 | Working on file S2_percentile_30_UTM_344-0000046592-0000000000.tif
	29/10/2020 16:11:53 | Working on file S2_percentile_30_UTM_344-0000023296-0000046592.tif
	29/10/2020 16:11:53 | Working on file S2_percentile_30_UTM_344-0000023296-0000023296.tif
	29/10/2020 16:11:54 | Working on file S2_percentile_30_UTM_344-0000023296-0000000000.tif
	29/10/2020 16:11:55 | Working on file S2_percentile_30_UTM_344-0000000000-0000046592.tif
	29/10/2020 16:11:56 | Working on file S2_percentile_30_UTM_344-0000000000-0000023296.tif
	29/10/2020 16:11:56 | Working on file S2_percentile_30_UTM_344-0000000000-0000000000.tif
29/10/2020 16:11:57 | Working on tile 45T
29/10/2020 16:12:05 | 12 files to process
	29/10/2020 16:12:05 | Working on file S2_percentile_30_UTM_284-0000069888-0000046592.tif
	29/10/2020 16:12:06 | Working on file S2_percentile_30_UTM_284-0000069888-0000023296.tif
	29/10/2020 16:12:07 | Working on file S2_percentile_30_UTM_284-0000069888-0000000000.tif
	29/10/2020 16:12:08 | Working on file S2_percentile_30_UTM_284-0000046592-0000046592.tif
	29/10/2020 16:12:09 | Working on file S2_percentile_30_UTM_284-0000046592-0000023296.tif
	29/10/2020 16:12:09 | Working on file S2_percentile_30_UTM_284-0000046592-0000000000.tif
	29/10/2020 16:12:10 | Working on file S2_percentile_30_UTM_284-0000023296-0000046592.tif
	29/10/2020 16:12:11 | Working on file S2_percentile_30_UTM_284-0000023296-0000023296.tif
	29/10/2020 16:12:12 | Working on file S2_percentile_30_UTM_284-0000023296-0000000000.tif
	29/10/2020 16:12:13 | Working on file S2_percentile_30_UTM_284-0000000000-0000046592.tif
	29/10/2020 16:12:13 | Working on file S2_percentile_30_UTM_284-0000000000-0000023296.tif
	29/10/2020 16:12:14 | Working on file S2_percentile_30_UTM_284-0000000000-0000000000.tif
29/10/2020 16:12:14 | Working on tile 45U
	45U_UTM.vrt contains no GeoTIFF, attempting 45U.vrt
29/10/2020 16:12:18 | 9 files to process
	29/10/2020 16:12:18 | Working on file S2_percentile_30_UTM_224-0000069888-0000046592.tif
	29/10/2020 16:12:18 | Working on file S2_percentile_30_UTM_224-0000069888-0000023296.tif
	29/10/2020 16:12:19 | Working on file S2_percentile_30_UTM_224-0000069888-0000000000.tif
	29/10/2020 16:12:20 | Working on file S2_percentile_30_UTM_224-0000046592-0000023296.tif
	29/10/2020 16:12:21 | Working on file S2_percentile_30_UTM_224-0000046592-0000000000.tif
	29/10/2020 16:12:22 | Working on file S2_percentile_30_UTM_224-0000023296-0000023296.tif
	29/10/2020 16:12:22 | Working on file S2_percentile_30_UTM_224-0000023296-0000000000.tif
	29/10/2020 16:12:23 | Working on file S2_percentile_30_UTM_224-0000000000-0000023296.tif
	29/10/2020 16:12:24 | Working on file S2_percentile_30_UTM_224-0000000000-0000000000.tif
29/10/2020 16:12:25 | Working on tile 45V
	45V_UTM.vrt contains no GeoTIFF, attempting 45V.vrt
29/10/2020 16:12:28 | 8 files to process
	29/10/2020 16:12:28 | Working on file S2_percentile_30_UTM_164-0000069888-0000023296.tif
	29/10/2020 16:12:28 | Working on file S2_percentile_30_UTM_164-0000069888-0000000000.tif
	29/10/2020 16:12:29 | Working on file S2_percentile_30_UTM_164-0000046592-0000023296.tif
	29/10/2020 16:12:30 | Working on file S2_percentile_30_UTM_164-0000046592-0000000000.tif
	29/10/2020 16:12:31 | Working on file S2_percentile_30_UTM_164-0000023296-0000023296.tif
	29/10/2020 16:12:32 | Working on file S2_percentile_30_UTM_164-0000023296-0000000000.tif
	29/10/2020 16:12:32 | Working on file S2_percentile_30_UTM_164-0000000000-0000023296.tif
	29/10/2020 16:12:33 | Working on file S2_percentile_30_UTM_164-0000000000-0000000000.tif
29/10/2020 16:12:34 | Working on tile 45W
	45W_UTM.vrt contains no GeoTIFF, attempting 45W.vrt
29/10/2020 16:12:36 | 8 files to process
	29/10/2020 16:12:36 | Working on file S2_percentile_30_UTM_104-0000069888-0000023296.tif
	29/10/2020 16:12:37 | Working on file S2_percentile_30_UTM_104-0000069888-0000000000.tif
	29/10/2020 16:12:38 | Working on file S2_percentile_30_UTM_104-0000046592-0000023296.tif
	29/10/2020 16:12:39 | Working on file S2_percentile_30_UTM_104-0000046592-0000000000.tif
	29/10/2020 16:12:40 | Working on file S2_percentile_30_UTM_104-0000023296-0000023296.tif
	29/10/2020 16:12:40 | Working on file S2_percentile_30_UTM_104-0000023296-0000000000.tif
	29/10/2020 16:12:41 | Working on file S2_percentile_30_UTM_104-0000000000-0000023296.tif
	29/10/2020 16:12:42 | Working on file S2_percentile_30_UTM_104-0000000000-0000000000.tif
29/10/2020 16:12:42 | Working on tile 45X
	45X_UTM.vrt contains no GeoTIFF, attempting 45X.vrt
29/10/2020 16:12:45 | 10 files to process
	29/10/2020 16:12:45 | Working on file S2_percentile_30_UTM_44-0000116480-0000000000.tif
	29/10/2020 16:12:46 | Working on file S2_percentile_30_UTM_44-0000093184-0000000000.tif
	29/10/2020 16:12:47 | Working on file S2_percentile_30_UTM_44-0000069888-0000023296.tif
	29/10/2020 16:12:47 | Working on file S2_percentile_30_UTM_44-0000069888-0000000000.tif
	29/10/2020 16:12:48 | Working on file S2_percentile_30_UTM_44-0000046592-0000023296.tif
	29/10/2020 16:12:49 | Working on file S2_percentile_30_UTM_44-0000046592-0000000000.tif
	29/10/2020 16:12:50 | Working on file S2_percentile_30_UTM_44-0000023296-0000023296.tif
	29/10/2020 16:12:50 | Working on file S2_percentile_30_UTM_44-0000023296-0000000000.tif
	29/10/2020 16:12:51 | Working on file S2_percentile_30_UTM_44-0000000000-0000023296.tif
	29/10/2020 16:12:51 | Working on file S2_percentile_30_UTM_44-0000000000-0000000000.tif
29/10/2020 16:12:52 | Working on tile 46N
29/10/2020 16:13:00 | 8 files to process
	29/10/2020 16:13:00 | Working on file S2_percentile_30_UTM_585-0000069888-0000046592.tif
	29/10/2020 16:13:01 | Working on file S2_percentile_30_UTM_585-0000046592-0000046592.tif
	29/10/2020 16:13:01 | Working on file S2_percentile_30_UTM_585-0000046592-0000023296.tif
	29/10/2020 16:13:02 | Working on file S2_percentile_30_UTM_585-0000023296-0000046592.tif
	29/10/2020 16:13:03 | Working on file S2_percentile_30_UTM_585-0000023296-0000023296.tif
	29/10/2020 16:13:03 | Working on file S2_percentile_30_UTM_585-0000000000-0000046592.tif
	29/10/2020 16:13:04 | Working on file S2_percentile_30_UTM_585-0000000000-0000023296.tif
	29/10/2020 16:13:05 | Working on file S2_percentile_30_UTM_585-0000000000-0000000000.tif
29/10/2020 16:13:06 | Working on tile 46P
29/10/2020 16:13:12 | 12 files to process
	29/10/2020 16:13:12 | Working on file S2_percentile_30_UTM_525-0000069888-0000046592.tif
	29/10/2020 16:13:13 | Working on file S2_percentile_30_UTM_525-0000069888-0000023296.tif
	29/10/2020 16:13:14 | Working on file S2_percentile_30_UTM_525-0000069888-0000000000.tif
	29/10/2020 16:13:15 | Working on file S2_percentile_30_UTM_525-0000046592-0000046592.tif
	29/10/2020 16:13:15 | Working on file S2_percentile_30_UTM_525-0000046592-0000023296.tif
	29/10/2020 16:13:16 | Working on file S2_percentile_30_UTM_525-0000046592-0000000000.tif
	29/10/2020 16:13:17 | Working on file S2_percentile_30_UTM_525-0000023296-0000046592.tif
	29/10/2020 16:13:18 | Working on file S2_percentile_30_UTM_525-0000023296-0000023296.tif
	29/10/2020 16:13:19 | Working on file S2_percentile_30_UTM_525-0000023296-0000000000.tif
	29/10/2020 16:13:19 | Working on file S2_percentile_30_UTM_525-0000000000-0000046592.tif
	29/10/2020 16:13:20 | Working on file S2_percentile_30_UTM_525-0000000000-0000023296.tif
	29/10/2020 16:13:21 | Working on file S2_percentile_30_UTM_525-0000000000-0000000000.tif
29/10/2020 16:13:22 | Working on tile 46Q
	46Q_UTM.vrt contains no GeoTIFF, attempting 46Q.vrt
29/10/2020 16:13:25 | 12 files to process
	29/10/2020 16:13:25 | Working on file S2_percentile_30_UTM_465-0000069888-0000046592.tif
	29/10/2020 16:13:26 | Working on file S2_percentile_30_UTM_465-0000069888-0000023296.tif
	29/10/2020 16:13:27 | Working on file S2_percentile_30_UTM_465-0000069888-0000000000.tif
	29/10/2020 16:13:28 | Working on file S2_percentile_30_UTM_465-0000046592-0000046592.tif
	29/10/2020 16:13:28 | Working on file S2_percentile_30_UTM_465-0000046592-0000023296.tif
	29/10/2020 16:13:29 | Working on file S2_percentile_30_UTM_465-0000046592-0000000000.tif
	29/10/2020 16:13:30 | Working on file S2_percentile_30_UTM_465-0000023296-0000046592.tif
	29/10/2020 16:13:30 | Working on file S2_percentile_30_UTM_465-0000023296-0000023296.tif
	29/10/2020 16:13:31 | Working on file S2_percentile_30_UTM_465-0000023296-0000000000.tif
	29/10/2020 16:13:32 | Working on file S2_percentile_30_UTM_465-0000000000-0000046592.tif
	29/10/2020 16:13:33 | Working on file S2_percentile_30_UTM_465-0000000000-0000023296.tif
	29/10/2020 16:13:34 | Working on file S2_percentile_30_UTM_465-0000000000-0000000000.tif
29/10/2020 16:13:35 | Working on tile 46R
	46R_UTM.vrt contains no GeoTIFF, attempting 46R.vrt
29/10/2020 16:13:37 | 12 files to process
	29/10/2020 16:13:37 | Working on file S2_percentile_30_UTM_405-0000069888-0000046592.tif
	29/10/2020 16:13:38 | Working on file S2_percentile_30_UTM_405-0000069888-0000023296.tif
	29/10/2020 16:13:39 | Working on file S2_percentile_30_UTM_405-0000069888-0000000000.tif
	29/10/2020 16:13:39 | Working on file S2_percentile_30_UTM_405-0000046592-0000046592.tif
	29/10/2020 16:13:40 | Working on file S2_percentile_30_UTM_405-0000046592-0000023296.tif
	29/10/2020 16:13:41 | Working on file S2_percentile_30_UTM_405-0000046592-0000000000.tif
	29/10/2020 16:13:42 | Working on file S2_percentile_30_UTM_405-0000023296-0000046592.tif
	29/10/2020 16:13:43 | Working on file S2_percentile_30_UTM_405-0000023296-0000023296.tif
	29/10/2020 16:13:44 | Working on file S2_percentile_30_UTM_405-0000023296-0000000000.tif
	29/10/2020 16:13:45 | Working on file S2_percentile_30_UTM_405-0000000000-0000046592.tif
	29/10/2020 16:13:46 | Working on file S2_percentile_30_UTM_405-0000000000-0000023296.tif
	29/10/2020 16:13:47 | Working on file S2_percentile_30_UTM_405-0000000000-0000000000.tif
29/10/2020 16:13:48 | Working on tile 46S
29/10/2020 16:13:55 | 12 files to process
	29/10/2020 16:13:55 | Working on file S2_percentile_30_UTM_345-0000069888-0000046592.tif
	29/10/2020 16:13:56 | Working on file S2_percentile_30_UTM_345-0000069888-0000023296.tif
	29/10/2020 16:13:56 | Working on file S2_percentile_30_UTM_345-0000069888-0000000000.tif
	29/10/2020 16:13:57 | Working on file S2_percentile_30_UTM_345-0000046592-0000046592.tif
	29/10/2020 16:13:58 | Working on file S2_percentile_30_UTM_345-0000046592-0000023296.tif
	29/10/2020 16:13:59 | Working on file S2_percentile_30_UTM_345-0000046592-0000000000.tif
	29/10/2020 16:14:00 | Working on file S2_percentile_30_UTM_345-0000023296-0000046592.tif
	29/10/2020 16:14:00 | Working on file S2_percentile_30_UTM_345-0000023296-0000023296.tif
	29/10/2020 16:14:01 | Working on file S2_percentile_30_UTM_345-0000023296-0000000000.tif
	29/10/2020 16:14:02 | Working on file S2_percentile_30_UTM_345-0000000000-0000046592.tif
	29/10/2020 16:14:03 | Working on file S2_percentile_30_UTM_345-0000000000-0000023296.tif
	29/10/2020 16:14:04 | Working on file S2_percentile_30_UTM_345-0000000000-0000000000.tif
29/10/2020 16:14:05 | Working on tile 46T
	46T_UTM.vrt contains no GeoTIFF, attempting 46T.vrt
29/10/2020 16:14:07 | 12 files to process
	29/10/2020 16:14:07 | Working on file S2_percentile_30_UTM_285-0000069888-0000046592.tif
	29/10/2020 16:14:08 | Working on file S2_percentile_30_UTM_285-0000069888-0000023296.tif
	29/10/2020 16:14:09 | Working on file S2_percentile_30_UTM_285-0000069888-0000000000.tif
	29/10/2020 16:14:10 | Working on file S2_percentile_30_UTM_285-0000046592-0000046592.tif
	29/10/2020 16:14:10 | Working on file S2_percentile_30_UTM_285-0000046592-0000023296.tif
	29/10/2020 16:14:11 | Working on file S2_percentile_30_UTM_285-0000046592-0000000000.tif
	29/10/2020 16:14:12 | Working on file S2_percentile_30_UTM_285-0000023296-0000046592.tif
	29/10/2020 16:14:12 | Working on file S2_percentile_30_UTM_285-0000023296-0000023296.tif
	29/10/2020 16:14:13 | Working on file S2_percentile_30_UTM_285-0000023296-0000000000.tif
	29/10/2020 16:14:14 | Working on file S2_percentile_30_UTM_285-0000000000-0000046592.tif
	29/10/2020 16:14:15 | Working on file S2_percentile_30_UTM_285-0000000000-0000023296.tif
	29/10/2020 16:14:16 | Working on file S2_percentile_30_UTM_285-0000000000-0000000000.tif
29/10/2020 16:14:16 | Working on tile 46U
29/10/2020 16:14:22 | 8 files to process
	29/10/2020 16:14:22 | Working on file S2_percentile_30_UTM_225-0000069888-0000023296.tif
	29/10/2020 16:14:23 | Working on file S2_percentile_30_UTM_225-0000069888-0000000000.tif
	29/10/2020 16:14:24 | Working on file S2_percentile_30_UTM_225-0000046592-0000023296.tif
	29/10/2020 16:14:25 | Working on file S2_percentile_30_UTM_225-0000046592-0000000000.tif
	29/10/2020 16:14:26 | Working on file S2_percentile_30_UTM_225-0000023296-0000023296.tif
	29/10/2020 16:14:27 | Working on file S2_percentile_30_UTM_225-0000023296-0000000000.tif
	29/10/2020 16:14:27 | Working on file S2_percentile_30_UTM_225-0000000000-0000023296.tif
	29/10/2020 16:14:28 | Working on file S2_percentile_30_UTM_225-0000000000-0000000000.tif
29/10/2020 16:14:29 | Working on tile 46V
29/10/2020 16:14:36 | 8 files to process
	29/10/2020 16:14:36 | Working on file S2_percentile_30_UTM_165-0000069888-0000023296.tif
	29/10/2020 16:14:37 | Working on file S2_percentile_30_UTM_165-0000069888-0000000000.tif
	29/10/2020 16:14:38 | Working on file S2_percentile_30_UTM_165-0000046592-0000023296.tif
	29/10/2020 16:14:39 | Working on file S2_percentile_30_UTM_165-0000046592-0000000000.tif
	29/10/2020 16:14:40 | Working on file S2_percentile_30_UTM_165-0000023296-0000023296.tif
	29/10/2020 16:14:40 | Working on file S2_percentile_30_UTM_165-0000023296-0000000000.tif
	29/10/2020 16:14:41 | Working on file S2_percentile_30_UTM_165-0000000000-0000023296.tif
	29/10/2020 16:14:42 | Working on file S2_percentile_30_UTM_165-0000000000-0000000000.tif
29/10/2020 16:14:43 | Working on tile 46W
29/10/2020 16:14:50 | 8 files to process
	29/10/2020 16:14:50 | Working on file S2_percentile_UTM_105-0000069888-0000023296.tif
	29/10/2020 16:14:51 | Working on file S2_percentile_UTM_105-0000069888-0000000000.tif
	29/10/2020 16:14:51 | Working on file S2_percentile_UTM_105-0000046592-0000023296.tif
	29/10/2020 16:14:52 | Working on file S2_percentile_UTM_105-0000046592-0000000000.tif
	29/10/2020 16:14:53 | Working on file S2_percentile_UTM_105-0000023296-0000023296.tif
	29/10/2020 16:14:53 | Working on file S2_percentile_UTM_105-0000023296-0000000000.tif
	29/10/2020 16:14:54 | Working on file S2_percentile_UTM_105-0000000000-0000023296.tif
	29/10/2020 16:14:54 | Working on file S2_percentile_UTM_105-0000000000-0000000000.tif
29/10/2020 16:14:55 | Working on tile 46X
29/10/2020 16:15:03 | 6 files to process
	29/10/2020 16:15:03 | Working on file S2_percentile_30_UTM_45-0000116480-0000000000.tif
	29/10/2020 16:15:04 | Working on file S2_percentile_30_UTM_45-0000093184-0000000000.tif
	29/10/2020 16:15:05 | Working on file S2_percentile_30_UTM_45-0000069888-0000000000.tif
	29/10/2020 16:15:06 | Working on file S2_percentile_30_UTM_45-0000046592-0000000000.tif
	29/10/2020 16:15:06 | Working on file S2_percentile_30_UTM_45-0000023296-0000000000.tif
	29/10/2020 16:15:07 | Working on file S2_percentile_30_UTM_45-0000000000-0000000000.tif
29/10/2020 16:15:08 | Working on tile 47M
29/10/2020 16:15:14 | 8 files to process
	29/10/2020 16:15:14 | Working on file S2_percentile_30_UTM_646-0000046592-0000046592.tif
	29/10/2020 16:15:15 | Working on file S2_percentile_30_UTM_646-0000046592-0000023296.tif
	29/10/2020 16:15:16 | Working on file S2_percentile_30_UTM_646-0000023296-0000046592.tif
	29/10/2020 16:15:17 | Working on file S2_percentile_30_UTM_646-0000023296-0000023296.tif
	29/10/2020 16:15:17 | Working on file S2_percentile_30_UTM_646-0000023296-0000000000.tif
	29/10/2020 16:15:19 | Working on file S2_percentile_30_UTM_646-0000000000-0000046592.tif
	29/10/2020 16:15:20 | Working on file S2_percentile_30_UTM_646-0000000000-0000023296.tif
	29/10/2020 16:15:21 | Working on file S2_percentile_30_UTM_646-0000000000-0000000000.tif
29/10/2020 16:15:21 | Working on tile 47N
29/10/2020 16:15:28 | 12 files to process
	29/10/2020 16:15:28 | Working on file S2_percentile_30_UTM_586-0000069888-0000046592.tif
	29/10/2020 16:15:29 | Working on file S2_percentile_30_UTM_586-0000069888-0000023296.tif
	29/10/2020 16:15:30 | Working on file S2_percentile_30_UTM_586-0000069888-0000000000.tif
	29/10/2020 16:15:31 | Working on file S2_percentile_30_UTM_586-0000046592-0000046592.tif
	29/10/2020 16:15:31 | Working on file S2_percentile_30_UTM_586-0000046592-0000023296.tif
	29/10/2020 16:15:32 | Working on file S2_percentile_30_UTM_586-0000046592-0000000000.tif
	29/10/2020 16:15:33 | Working on file S2_percentile_30_UTM_586-0000023296-0000046592.tif
	29/10/2020 16:15:34 | Working on file S2_percentile_30_UTM_586-0000023296-0000023296.tif
	29/10/2020 16:15:35 | Working on file S2_percentile_30_UTM_586-0000023296-0000000000.tif
	29/10/2020 16:15:36 | Working on file S2_percentile_30_UTM_586-0000000000-0000046592.tif
	29/10/2020 16:15:36 | Working on file S2_percentile_30_UTM_586-0000000000-0000023296.tif
	29/10/2020 16:15:37 | Working on file S2_percentile_30_UTM_586-0000000000-0000000000.tif
29/10/2020 16:15:38 | Working on tile 47P
29/10/2020 16:15:44 | 12 files to process
	29/10/2020 16:15:44 | Working on file S2_percentile_30_UTM_526-0000069888-0000046592.tif
	29/10/2020 16:15:45 | Working on file S2_percentile_30_UTM_526-0000069888-0000023296.tif
	29/10/2020 16:15:45 | Working on file S2_percentile_30_UTM_526-0000069888-0000000000.tif
	29/10/2020 16:15:46 | Working on file S2_percentile_30_UTM_526-0000046592-0000046592.tif
	29/10/2020 16:15:47 | Working on file S2_percentile_30_UTM_526-0000046592-0000023296.tif
	29/10/2020 16:15:47 | Working on file S2_percentile_30_UTM_526-0000046592-0000000000.tif
	29/10/2020 16:15:48 | Working on file S2_percentile_30_UTM_526-0000023296-0000046592.tif
	29/10/2020 16:15:49 | Working on file S2_percentile_30_UTM_526-0000023296-0000023296.tif
	29/10/2020 16:15:50 | Working on file S2_percentile_30_UTM_526-0000023296-0000000000.tif
	29/10/2020 16:15:51 | Working on file S2_percentile_30_UTM_526-0000000000-0000046592.tif
	29/10/2020 16:15:51 | Working on file S2_percentile_30_UTM_526-0000000000-0000023296.tif
	29/10/2020 16:15:52 | Working on file S2_percentile_30_UTM_526-0000000000-0000000000.tif
29/10/2020 16:15:53 | Working on tile 47Q
	47Q_UTM.vrt contains no GeoTIFF, attempting 47Q.vrt
29/10/2020 16:15:55 | 12 files to process
	29/10/2020 16:15:55 | Working on file S2_percentile_UTM_466-0000069888-0000046592.tif
	29/10/2020 16:15:56 | Working on file S2_percentile_UTM_466-0000069888-0000023296.tif
	29/10/2020 16:15:57 | Working on file S2_percentile_UTM_466-0000069888-0000000000.tif
	29/10/2020 16:15:58 | Working on file S2_percentile_UTM_466-0000046592-0000046592.tif
	29/10/2020 16:15:59 | Working on file S2_percentile_UTM_466-0000046592-0000023296.tif
	29/10/2020 16:15:59 | Working on file S2_percentile_UTM_466-0000046592-0000000000.tif
	29/10/2020 16:16:01 | Working on file S2_percentile_UTM_466-0000023296-0000046592.tif
	29/10/2020 16:16:01 | Working on file S2_percentile_UTM_466-0000023296-0000023296.tif
	29/10/2020 16:16:02 | Working on file S2_percentile_UTM_466-0000023296-0000000000.tif
	29/10/2020 16:16:03 | Working on file S2_percentile_UTM_466-0000000000-0000046592.tif
	29/10/2020 16:16:04 | Working on file S2_percentile_UTM_466-0000000000-0000023296.tif
	29/10/2020 16:16:04 | Working on file S2_percentile_UTM_466-0000000000-0000000000.tif
29/10/2020 16:16:05 | Working on tile 47R
	47R_UTM.vrt contains no GeoTIFF, attempting 47R.vrt
29/10/2020 16:16:08 | 12 files to process
	29/10/2020 16:16:08 | Working on file S2_percentile_30_UTM_406-0000069888-0000046592.tif
	29/10/2020 16:16:09 | Working on file S2_percentile_30_UTM_406-0000069888-0000023296.tif
	29/10/2020 16:16:10 | Working on file S2_percentile_30_UTM_406-0000069888-0000000000.tif
	29/10/2020 16:16:11 | Working on file S2_percentile_30_UTM_406-0000046592-0000046592.tif
	29/10/2020 16:16:11 | Working on file S2_percentile_30_UTM_406-0000046592-0000023296.tif
	29/10/2020 16:16:12 | Working on file S2_percentile_30_UTM_406-0000046592-0000000000.tif
	29/10/2020 16:16:13 | Working on file S2_percentile_30_UTM_406-0000023296-0000046592.tif
	29/10/2020 16:16:14 | Working on file S2_percentile_30_UTM_406-0000023296-0000023296.tif
	29/10/2020 16:16:14 | Working on file S2_percentile_30_UTM_406-0000023296-0000000000.tif
	29/10/2020 16:16:15 | Working on file S2_percentile_30_UTM_406-0000000000-0000046592.tif
	29/10/2020 16:16:16 | Working on file S2_percentile_30_UTM_406-0000000000-0000023296.tif
	29/10/2020 16:16:17 | Working on file S2_percentile_30_UTM_406-0000000000-0000000000.tif
29/10/2020 16:16:18 | Working on tile 47S
	47S_UTM.vrt contains no GeoTIFF, attempting 47S.vrt
29/10/2020 16:16:20 | 12 files to process
	29/10/2020 16:16:20 | Working on file S2_percentile_30_UTM_346-0000069888-0000046592.tif
	29/10/2020 16:16:21 | Working on file S2_percentile_30_UTM_346-0000069888-0000023296.tif
	29/10/2020 16:16:22 | Working on file S2_percentile_30_UTM_346-0000069888-0000000000.tif
	29/10/2020 16:16:23 | Working on file S2_percentile_30_UTM_346-0000046592-0000046592.tif
	29/10/2020 16:16:24 | Working on file S2_percentile_30_UTM_346-0000046592-0000023296.tif
	29/10/2020 16:16:24 | Working on file S2_percentile_30_UTM_346-0000046592-0000000000.tif
	29/10/2020 16:16:25 | Working on file S2_percentile_30_UTM_346-0000023296-0000046592.tif
	29/10/2020 16:16:26 | Working on file S2_percentile_30_UTM_346-0000023296-0000023296.tif
	29/10/2020 16:16:26 | Working on file S2_percentile_30_UTM_346-0000023296-0000000000.tif
	29/10/2020 16:16:27 | Working on file S2_percentile_30_UTM_346-0000000000-0000046592.tif
	29/10/2020 16:16:28 | Working on file S2_percentile_30_UTM_346-0000000000-0000023296.tif
	29/10/2020 16:16:28 | Working on file S2_percentile_30_UTM_346-0000000000-0000000000.tif
29/10/2020 16:16:29 | Working on tile 47T
	47T_UTM.vrt contains no GeoTIFF, attempting 47T.vrt
29/10/2020 16:16:32 | 12 files to process
	29/10/2020 16:16:32 | Working on file S2_percentile_UTM_286-0000069888-0000046592.tif
	29/10/2020 16:16:32 | Working on file S2_percentile_UTM_286-0000069888-0000023296.tif
	29/10/2020 16:16:33 | Working on file S2_percentile_UTM_286-0000069888-0000000000.tif
	29/10/2020 16:16:34 | Working on file S2_percentile_UTM_286-0000046592-0000046592.tif
	29/10/2020 16:16:35 | Working on file S2_percentile_UTM_286-0000046592-0000023296.tif
	29/10/2020 16:16:36 | Working on file S2_percentile_UTM_286-0000046592-0000000000.tif
	29/10/2020 16:16:37 | Working on file S2_percentile_UTM_286-0000023296-0000046592.tif
	29/10/2020 16:16:37 | Working on file S2_percentile_UTM_286-0000023296-0000023296.tif
	29/10/2020 16:16:38 | Working on file S2_percentile_UTM_286-0000023296-0000000000.tif
	29/10/2020 16:16:39 | Working on file S2_percentile_UTM_286-0000000000-0000046592.tif
	29/10/2020 16:16:40 | Working on file S2_percentile_UTM_286-0000000000-0000023296.tif
	29/10/2020 16:16:41 | Working on file S2_percentile_UTM_286-0000000000-0000000000.tif
29/10/2020 16:16:41 | Working on tile 47U
29/10/2020 16:16:48 | 8 files to process
	29/10/2020 16:16:48 | Working on file S2_percentile_30_UTM_226-0000069888-0000023296.tif
	29/10/2020 16:16:48 | Working on file S2_percentile_30_UTM_226-0000069888-0000000000.tif
	29/10/2020 16:16:49 | Working on file S2_percentile_30_UTM_226-0000046592-0000023296.tif
	29/10/2020 16:16:50 | Working on file S2_percentile_30_UTM_226-0000046592-0000000000.tif
	29/10/2020 16:16:51 | Working on file S2_percentile_30_UTM_226-0000023296-0000023296.tif
	29/10/2020 16:16:51 | Working on file S2_percentile_30_UTM_226-0000023296-0000000000.tif
	29/10/2020 16:16:52 | Working on file S2_percentile_30_UTM_226-0000000000-0000023296.tif
	29/10/2020 16:16:53 | Working on file S2_percentile_30_UTM_226-0000000000-0000000000.tif
29/10/2020 16:16:55 | Working on tile 47V
29/10/2020 16:17:02 | 8 files to process
	29/10/2020 16:17:02 | Working on file S2_percentile_30_UTM_166-0000069888-0000023296.tif
	29/10/2020 16:17:02 | Working on file S2_percentile_30_UTM_166-0000069888-0000000000.tif
	29/10/2020 16:17:03 | Working on file S2_percentile_30_UTM_166-0000046592-0000023296.tif
	29/10/2020 16:17:04 | Working on file S2_percentile_30_UTM_166-0000046592-0000000000.tif
	29/10/2020 16:17:05 | Working on file S2_percentile_30_UTM_166-0000023296-0000023296.tif
	29/10/2020 16:17:05 | Working on file S2_percentile_30_UTM_166-0000023296-0000000000.tif
	29/10/2020 16:17:06 | Working on file S2_percentile_30_UTM_166-0000000000-0000023296.tif
	29/10/2020 16:17:07 | Working on file S2_percentile_30_UTM_166-0000000000-0000000000.tif
29/10/2020 16:17:07 | Working on tile 47W
29/10/2020 16:17:15 | 8 files to process
	29/10/2020 16:17:15 | Working on file S2_percentile_UTM_106-0000069888-0000023296.tif
	29/10/2020 16:17:15 | Working on file S2_percentile_UTM_106-0000069888-0000000000.tif
	29/10/2020 16:17:16 | Working on file S2_percentile_UTM_106-0000046592-0000023296.tif
	29/10/2020 16:17:17 | Working on file S2_percentile_UTM_106-0000046592-0000000000.tif
	29/10/2020 16:17:17 | Working on file S2_percentile_UTM_106-0000023296-0000023296.tif
	29/10/2020 16:17:18 | Working on file S2_percentile_UTM_106-0000023296-0000000000.tif
	29/10/2020 16:17:19 | Working on file S2_percentile_UTM_106-0000000000-0000023296.tif
	29/10/2020 16:17:19 | Working on file S2_percentile_UTM_106-0000000000-0000000000.tif
29/10/2020 16:17:20 | Working on tile 47X
29/10/2020 16:17:27 | 6 files to process
	29/10/2020 16:17:27 | Working on file S2_percentile_30_UTM_46-0000116480-0000000000.tif
	29/10/2020 16:17:28 | Working on file S2_percentile_30_UTM_46-0000093184-0000000000.tif
	29/10/2020 16:17:28 | Working on file S2_percentile_30_UTM_46-0000069888-0000000000.tif
	29/10/2020 16:17:29 | Working on file S2_percentile_30_UTM_46-0000046592-0000000000.tif
	29/10/2020 16:17:30 | Working on file S2_percentile_30_UTM_46-0000023296-0000000000.tif
	29/10/2020 16:17:31 | Working on file S2_percentile_30_UTM_46-0000000000-0000000000.tif
29/10/2020 16:17:31 | Working on tile 48L
29/10/2020 16:17:37 | 4 files to process
	29/10/2020 16:17:37 | Working on file S2_percentile_30_UTM_707-0000023296-0000046592.tif
	29/10/2020 16:17:37 | Working on file S2_percentile_30_UTM_707-0000023296-0000023296.tif
	29/10/2020 16:17:38 | Working on file S2_percentile_30_UTM_707-0000000000-0000046592.tif
	29/10/2020 16:17:39 | Working on file S2_percentile_30_UTM_707-0000000000-0000023296.tif
29/10/2020 16:17:40 | Working on tile 48M
	48M_UTM.vrt contains no GeoTIFF, attempting 48M.vrt
29/10/2020 16:17:43 | 12 files to process
	29/10/2020 16:17:43 | Working on file S2_percentile_30_UTM_647-0000069888-0000046592.tif
	29/10/2020 16:17:44 | Working on file S2_percentile_30_UTM_647-0000069888-0000023296.tif
	29/10/2020 16:17:44 | Working on file S2_percentile_30_UTM_647-0000069888-0000000000.tif
	29/10/2020 16:17:45 | Working on file S2_percentile_30_UTM_647-0000046592-0000046592.tif
	29/10/2020 16:17:46 | Working on file S2_percentile_30_UTM_647-0000046592-0000023296.tif
	29/10/2020 16:17:46 | Working on file S2_percentile_30_UTM_647-0000046592-0000000000.tif
	29/10/2020 16:17:47 | Working on file S2_percentile_30_UTM_647-0000023296-0000046592.tif
	29/10/2020 16:17:48 | Working on file S2_percentile_30_UTM_647-0000023296-0000023296.tif
	29/10/2020 16:17:49 | Working on file S2_percentile_30_UTM_647-0000023296-0000000000.tif
	29/10/2020 16:17:50 | Working on file S2_percentile_30_UTM_647-0000000000-0000046592.tif
	29/10/2020 16:17:51 | Working on file S2_percentile_30_UTM_647-0000000000-0000023296.tif
	29/10/2020 16:17:51 | Working on file S2_percentile_30_UTM_647-0000000000-0000000000.tif
29/10/2020 16:17:52 | Working on tile 48N
29/10/2020 16:17:58 | 12 files to process
	29/10/2020 16:17:58 | Working on file S2_percentile_30_UTM_587-0000069888-0000046592.tif
	29/10/2020 16:18:00 | Working on file S2_percentile_30_UTM_587-0000069888-0000023296.tif
	29/10/2020 16:18:00 | Working on file S2_percentile_30_UTM_587-0000069888-0000000000.tif
	29/10/2020 16:18:01 | Working on file S2_percentile_30_UTM_587-0000046592-0000046592.tif
	29/10/2020 16:18:02 | Working on file S2_percentile_30_UTM_587-0000046592-0000023296.tif
	29/10/2020 16:18:02 | Working on file S2_percentile_30_UTM_587-0000046592-0000000000.tif
	29/10/2020 16:18:03 | Working on file S2_percentile_30_UTM_587-0000023296-0000046592.tif
	29/10/2020 16:18:04 | Working on file S2_percentile_30_UTM_587-0000023296-0000023296.tif
	29/10/2020 16:18:04 | Working on file S2_percentile_30_UTM_587-0000023296-0000000000.tif
	29/10/2020 16:18:05 | Working on file S2_percentile_30_UTM_587-0000000000-0000046592.tif
	29/10/2020 16:18:06 | Working on file S2_percentile_30_UTM_587-0000000000-0000023296.tif
	29/10/2020 16:18:07 | Working on file S2_percentile_30_UTM_587-0000000000-0000000000.tif
29/10/2020 16:18:07 | Working on tile 48P
	48P_UTM.vrt contains no GeoTIFF, attempting 48P.vrt
29/10/2020 16:18:10 | 12 files to process
	29/10/2020 16:18:10 | Working on file S2_percentile_30_UTM_527-0000069888-0000046592.tif
	29/10/2020 16:18:11 | Working on file S2_percentile_30_UTM_527-0000069888-0000023296.tif
	29/10/2020 16:18:12 | Working on file S2_percentile_30_UTM_527-0000069888-0000000000.tif
	29/10/2020 16:18:12 | Working on file S2_percentile_30_UTM_527-0000046592-0000046592.tif
	29/10/2020 16:18:13 | Working on file S2_percentile_30_UTM_527-0000046592-0000023296.tif
	29/10/2020 16:18:14 | Working on file S2_percentile_30_UTM_527-0000046592-0000000000.tif
	29/10/2020 16:18:15 | Working on file S2_percentile_30_UTM_527-0000023296-0000046592.tif
	29/10/2020 16:18:16 | Working on file S2_percentile_30_UTM_527-0000023296-0000023296.tif
	29/10/2020 16:18:16 | Working on file S2_percentile_30_UTM_527-0000023296-0000000000.tif
	29/10/2020 16:18:17 | Working on file S2_percentile_30_UTM_527-0000000000-0000046592.tif
	29/10/2020 16:18:18 | Working on file S2_percentile_30_UTM_527-0000000000-0000023296.tif
	29/10/2020 16:18:18 | Working on file S2_percentile_30_UTM_527-0000000000-0000000000.tif
29/10/2020 16:18:19 | Working on tile 48Q
	48Q_UTM.vrt contains no GeoTIFF, attempting 48Q.vrt
29/10/2020 16:18:22 | 12 files to process
	29/10/2020 16:18:22 | Working on file S2_percentile_UTM_467-0000069888-0000046592.tif
	29/10/2020 16:18:23 | Working on file S2_percentile_UTM_467-0000069888-0000023296.tif
	29/10/2020 16:18:23 | Working on file S2_percentile_UTM_467-0000069888-0000000000.tif
	29/10/2020 16:18:24 | Working on file S2_percentile_UTM_467-0000046592-0000046592.tif
	29/10/2020 16:18:25 | Working on file S2_percentile_UTM_467-0000046592-0000023296.tif
	29/10/2020 16:18:26 | Working on file S2_percentile_UTM_467-0000046592-0000000000.tif
	29/10/2020 16:18:27 | Working on file S2_percentile_UTM_467-0000023296-0000046592.tif
	29/10/2020 16:18:27 | Working on file S2_percentile_UTM_467-0000023296-0000023296.tif
	29/10/2020 16:18:28 | Working on file S2_percentile_UTM_467-0000023296-0000000000.tif
	29/10/2020 16:18:29 | Working on file S2_percentile_UTM_467-0000000000-0000046592.tif
	29/10/2020 16:18:30 | Working on file S2_percentile_UTM_467-0000000000-0000023296.tif
	29/10/2020 16:18:31 | Working on file S2_percentile_UTM_467-0000000000-0000000000.tif
29/10/2020 16:18:32 | Working on tile 48R
29/10/2020 16:18:38 | 12 files to process
	29/10/2020 16:18:38 | Working on file S2_percentile_30_UTM_407-0000069888-0000046592.tif
	29/10/2020 16:18:39 | Working on file S2_percentile_30_UTM_407-0000069888-0000023296.tif
	29/10/2020 16:18:40 | Working on file S2_percentile_30_UTM_407-0000069888-0000000000.tif
	29/10/2020 16:18:41 | Working on file S2_percentile_30_UTM_407-0000046592-0000046592.tif
	29/10/2020 16:18:41 | Working on file S2_percentile_30_UTM_407-0000046592-0000023296.tif
	29/10/2020 16:18:42 | Working on file S2_percentile_30_UTM_407-0000046592-0000000000.tif
	29/10/2020 16:18:43 | Working on file S2_percentile_30_UTM_407-0000023296-0000046592.tif
	29/10/2020 16:18:44 | Working on file S2_percentile_30_UTM_407-0000023296-0000023296.tif
	29/10/2020 16:18:44 | Working on file S2_percentile_30_UTM_407-0000023296-0000000000.tif
	29/10/2020 16:18:45 | Working on file S2_percentile_30_UTM_407-0000000000-0000046592.tif
	29/10/2020 16:18:46 | Working on file S2_percentile_30_UTM_407-0000000000-0000023296.tif
	29/10/2020 16:18:47 | Working on file S2_percentile_30_UTM_407-0000000000-0000000000.tif
29/10/2020 16:18:48 | Working on tile 48S
29/10/2020 16:18:54 | 12 files to process
	29/10/2020 16:18:54 | Working on file S2_percentile_30_UTM_347-0000069888-0000046592.tif
	29/10/2020 16:18:55 | Working on file S2_percentile_30_UTM_347-0000069888-0000023296.tif
	29/10/2020 16:18:56 | Working on file S2_percentile_30_UTM_347-0000069888-0000000000.tif
	29/10/2020 16:18:57 | Working on file S2_percentile_30_UTM_347-0000046592-0000046592.tif
	29/10/2020 16:18:57 | Working on file S2_percentile_30_UTM_347-0000046592-0000023296.tif
	29/10/2020 16:18:58 | Working on file S2_percentile_30_UTM_347-0000046592-0000000000.tif
	29/10/2020 16:18:59 | Working on file S2_percentile_30_UTM_347-0000023296-0000046592.tif
	29/10/2020 16:18:59 | Working on file S2_percentile_30_UTM_347-0000023296-0000023296.tif
	29/10/2020 16:19:00 | Working on file S2_percentile_30_UTM_347-0000023296-0000000000.tif
	29/10/2020 16:19:01 | Working on file S2_percentile_30_UTM_347-0000000000-0000046592.tif
	29/10/2020 16:19:02 | Working on file S2_percentile_30_UTM_347-0000000000-0000023296.tif
	29/10/2020 16:19:02 | Working on file S2_percentile_30_UTM_347-0000000000-0000000000.tif
29/10/2020 16:19:03 | Working on tile 48T
	48T_UTM.vrt contains no GeoTIFF, attempting 48T.vrt
29/10/2020 16:19:06 | 12 files to process
	29/10/2020 16:19:06 | Working on file S2_percentile_UTM_287-0000069888-0000046592.tif
	29/10/2020 16:19:07 | Working on file S2_percentile_UTM_287-0000069888-0000023296.tif
	29/10/2020 16:19:08 | Working on file S2_percentile_UTM_287-0000069888-0000000000.tif
	29/10/2020 16:19:08 | Working on file S2_percentile_UTM_287-0000046592-0000046592.tif
	29/10/2020 16:19:09 | Working on file S2_percentile_UTM_287-0000046592-0000023296.tif
	29/10/2020 16:19:10 | Working on file S2_percentile_UTM_287-0000046592-0000000000.tif
	29/10/2020 16:19:11 | Working on file S2_percentile_UTM_287-0000023296-0000046592.tif
	29/10/2020 16:19:11 | Working on file S2_percentile_UTM_287-0000023296-0000023296.tif
	29/10/2020 16:19:12 | Working on file S2_percentile_UTM_287-0000023296-0000000000.tif
	29/10/2020 16:19:12 | Working on file S2_percentile_UTM_287-0000000000-0000046592.tif
	29/10/2020 16:19:13 | Working on file S2_percentile_UTM_287-0000000000-0000023296.tif
	29/10/2020 16:19:14 | Working on file S2_percentile_UTM_287-0000000000-0000000000.tif
29/10/2020 16:19:15 | Working on tile 48U
	48U_UTM.vrt contains no GeoTIFF, attempting 48U.vrt
29/10/2020 16:19:18 | 9 files to process
	29/10/2020 16:19:18 | Working on file S2_percentile_30_UTM_227-0000069888-0000046592.tif
	29/10/2020 16:19:18 | Working on file S2_percentile_30_UTM_227-0000069888-0000023296.tif
	29/10/2020 16:19:19 | Working on file S2_percentile_30_UTM_227-0000069888-0000000000.tif
	29/10/2020 16:19:20 | Working on file S2_percentile_30_UTM_227-0000046592-0000023296.tif
	29/10/2020 16:19:21 | Working on file S2_percentile_30_UTM_227-0000046592-0000000000.tif
	29/10/2020 16:19:22 | Working on file S2_percentile_30_UTM_227-0000023296-0000023296.tif
	29/10/2020 16:19:22 | Working on file S2_percentile_30_UTM_227-0000023296-0000000000.tif
	29/10/2020 16:19:23 | Working on file S2_percentile_30_UTM_227-0000000000-0000023296.tif
	29/10/2020 16:19:24 | Working on file S2_percentile_30_UTM_227-0000000000-0000000000.tif
29/10/2020 16:19:25 | Working on tile 48V
29/10/2020 16:19:31 | 8 files to process
	29/10/2020 16:19:31 | Working on file S2_percentile_30_UTM_167-0000069888-0000023296.tif
	29/10/2020 16:19:32 | Working on file S2_percentile_30_UTM_167-0000069888-0000000000.tif
	29/10/2020 16:19:33 | Working on file S2_percentile_30_UTM_167-0000046592-0000023296.tif
	29/10/2020 16:19:33 | Working on file S2_percentile_30_UTM_167-0000046592-0000000000.tif
	29/10/2020 16:19:35 | Working on file S2_percentile_30_UTM_167-0000023296-0000023296.tif
	29/10/2020 16:19:35 | Working on file S2_percentile_30_UTM_167-0000023296-0000000000.tif
	29/10/2020 16:19:36 | Working on file S2_percentile_30_UTM_167-0000000000-0000023296.tif
	29/10/2020 16:19:37 | Working on file S2_percentile_30_UTM_167-0000000000-0000000000.tif
29/10/2020 16:19:38 | Working on tile 48W
29/10/2020 16:19:45 | 8 files to process
	29/10/2020 16:19:45 | Working on file S2_percentile_UTM_107-0000069888-0000023296.tif
	29/10/2020 16:19:45 | Working on file S2_percentile_UTM_107-0000069888-0000000000.tif
	29/10/2020 16:19:46 | Working on file S2_percentile_UTM_107-0000046592-0000023296.tif
	29/10/2020 16:19:47 | Working on file S2_percentile_UTM_107-0000046592-0000000000.tif
	29/10/2020 16:19:48 | Working on file S2_percentile_UTM_107-0000023296-0000023296.tif
	29/10/2020 16:19:48 | Working on file S2_percentile_UTM_107-0000023296-0000000000.tif
	29/10/2020 16:19:49 | Working on file S2_percentile_UTM_107-0000000000-0000023296.tif
	29/10/2020 16:19:50 | Working on file S2_percentile_UTM_107-0000000000-0000000000.tif
29/10/2020 16:19:51 | Working on tile 48X
29/10/2020 16:19:58 | 5 files to process
	29/10/2020 16:19:58 | Working on file S2_percentile_30_UTM_47-0000116480-0000000000.tif
	29/10/2020 16:19:59 | Working on file S2_percentile_30_UTM_47-0000093184-0000000000.tif
	29/10/2020 16:20:00 | Working on file S2_percentile_30_UTM_47-0000069888-0000000000.tif
	29/10/2020 16:20:01 | Working on file S2_percentile_30_UTM_47-0000046592-0000000000.tif
	29/10/2020 16:20:01 | Working on file S2_percentile_30_UTM_47-0000023296-0000000000.tif
29/10/2020 16:20:02 | Working on tile 49J
29/10/2020 16:20:09 | 8 files to process
	29/10/2020 16:20:09 | Working on file S2_percentile_30_UTM_828-0000069888-0000046592.tif
	29/10/2020 16:20:10 | Working on file S2_percentile_30_UTM_828-0000069888-0000023296.tif
	29/10/2020 16:20:11 | Working on file S2_percentile_30_UTM_828-0000046592-0000046592.tif
	29/10/2020 16:20:11 | Working on file S2_percentile_30_UTM_828-0000046592-0000023296.tif
	29/10/2020 16:20:12 | Working on file S2_percentile_30_UTM_828-0000023296-0000046592.tif
	29/10/2020 16:20:13 | Working on file S2_percentile_30_UTM_828-0000023296-0000023296.tif
	29/10/2020 16:20:14 | Working on file S2_percentile_30_UTM_828-0000000000-0000046592.tif
	29/10/2020 16:20:15 | Working on file S2_percentile_30_UTM_828-0000000000-0000023296.tif
29/10/2020 16:20:16 | Working on tile 49K
29/10/2020 16:20:23 | 6 files to process
	29/10/2020 16:20:23 | Working on file S2_percentile_30_UTM_768-0000069888-0000046592.tif
	29/10/2020 16:20:24 | Working on file S2_percentile_30_UTM_768-0000069888-0000023296.tif
	29/10/2020 16:20:25 | Working on file S2_percentile_30_UTM_768-0000046592-0000046592.tif
	29/10/2020 16:20:25 | Working on file S2_percentile_30_UTM_768-0000046592-0000023296.tif
	29/10/2020 16:20:26 | Working on file S2_percentile_30_UTM_768-0000023296-0000046592.tif
	29/10/2020 16:20:27 | Working on file S2_percentile_30_UTM_768-0000023296-0000023296.tif
29/10/2020 16:20:28 | Working on tile 49L
29/10/2020 16:20:33 | 3 files to process
	29/10/2020 16:20:33 | Working on file S2_percentile_30_UTM_708-0000000000-0000046592.tif
	29/10/2020 16:20:34 | Working on file S2_percentile_30_UTM_708-0000000000-0000023296.tif
	29/10/2020 16:20:35 | Working on file S2_percentile_30_UTM_708-0000000000-0000000000.tif
29/10/2020 16:20:35 | Working on tile 49M
29/10/2020 16:20:43 | 12 files to process
	29/10/2020 16:20:43 | Working on file S2_percentile_30_UTM_648-0000069888-0000046592.tif
	29/10/2020 16:20:44 | Working on file S2_percentile_30_UTM_648-0000069888-0000023296.tif
	29/10/2020 16:20:45 | Working on file S2_percentile_30_UTM_648-0000069888-0000000000.tif
	29/10/2020 16:20:45 | Working on file S2_percentile_30_UTM_648-0000046592-0000046592.tif
	29/10/2020 16:20:46 | Working on file S2_percentile_30_UTM_648-0000046592-0000023296.tif
	29/10/2020 16:20:47 | Working on file S2_percentile_30_UTM_648-0000046592-0000000000.tif
	29/10/2020 16:20:47 | Working on file S2_percentile_30_UTM_648-0000023296-0000046592.tif
	29/10/2020 16:20:48 | Working on file S2_percentile_30_UTM_648-0000023296-0000023296.tif
	29/10/2020 16:20:49 | Working on file S2_percentile_30_UTM_648-0000023296-0000000000.tif
	29/10/2020 16:20:50 | Working on file S2_percentile_30_UTM_648-0000000000-0000046592.tif
	29/10/2020 16:20:50 | Working on file S2_percentile_30_UTM_648-0000000000-0000023296.tif
	29/10/2020 16:20:51 | Working on file S2_percentile_30_UTM_648-0000000000-0000000000.tif
29/10/2020 16:20:52 | Working on tile 49N
29/10/2020 16:20:59 | 12 files to process
	29/10/2020 16:20:59 | Working on file S2_percentile_30_UTM_588-0000069888-0000046592.tif
	29/10/2020 16:21:00 | Working on file S2_percentile_30_UTM_588-0000069888-0000023296.tif
	29/10/2020 16:21:01 | Working on file S2_percentile_30_UTM_588-0000069888-0000000000.tif
	29/10/2020 16:21:01 | Working on file S2_percentile_30_UTM_588-0000046592-0000046592.tif
	29/10/2020 16:21:02 | Working on file S2_percentile_30_UTM_588-0000046592-0000023296.tif
	29/10/2020 16:21:03 | Working on file S2_percentile_30_UTM_588-0000046592-0000000000.tif
	29/10/2020 16:21:04 | Working on file S2_percentile_30_UTM_588-0000023296-0000046592.tif
	29/10/2020 16:21:04 | Working on file S2_percentile_30_UTM_588-0000023296-0000023296.tif
	29/10/2020 16:21:05 | Working on file S2_percentile_30_UTM_588-0000023296-0000000000.tif
	29/10/2020 16:21:06 | Working on file S2_percentile_30_UTM_588-0000000000-0000046592.tif
	29/10/2020 16:21:07 | Working on file S2_percentile_30_UTM_588-0000000000-0000023296.tif
	29/10/2020 16:21:07 | Working on file S2_percentile_30_UTM_588-0000000000-0000000000.tif
29/10/2020 16:21:08 | Working on tile 49P
29/10/2020 16:21:16 | 12 files to process
	29/10/2020 16:21:16 | Working on file S2_percentile_30_UTM_528-0000069888-0000046592.tif
	29/10/2020 16:21:16 | Working on file S2_percentile_30_UTM_528-0000069888-0000023296.tif
	29/10/2020 16:21:17 | Working on file S2_percentile_30_UTM_528-0000069888-0000000000.tif
	29/10/2020 16:21:18 | Working on file S2_percentile_30_UTM_528-0000046592-0000046592.tif
	29/10/2020 16:21:19 | Working on file S2_percentile_30_UTM_528-0000046592-0000023296.tif
	29/10/2020 16:21:19 | Working on file S2_percentile_30_UTM_528-0000046592-0000000000.tif
	29/10/2020 16:21:20 | Working on file S2_percentile_30_UTM_528-0000023296-0000046592.tif
	29/10/2020 16:21:21 | Working on file S2_percentile_30_UTM_528-0000023296-0000023296.tif
	29/10/2020 16:21:22 | Working on file S2_percentile_30_UTM_528-0000023296-0000000000.tif
	29/10/2020 16:21:22 | Working on file S2_percentile_30_UTM_528-0000000000-0000046592.tif
	29/10/2020 16:21:23 | Working on file S2_percentile_30_UTM_528-0000000000-0000023296.tif
	29/10/2020 16:21:24 | Working on file S2_percentile_30_UTM_528-0000000000-0000000000.tif
29/10/2020 16:21:25 | Working on tile 49Q
29/10/2020 16:21:34 | 12 files to process
	29/10/2020 16:21:34 | Working on file S2_percentile_UTM_468-0000069888-0000046592.tif
	29/10/2020 16:21:35 | Working on file S2_percentile_UTM_468-0000069888-0000023296.tif
	29/10/2020 16:21:36 | Working on file S2_percentile_UTM_468-0000069888-0000000000.tif
	29/10/2020 16:21:37 | Working on file S2_percentile_UTM_468-0000046592-0000046592.tif
	29/10/2020 16:21:37 | Working on file S2_percentile_UTM_468-0000046592-0000023296.tif
	29/10/2020 16:21:38 | Working on file S2_percentile_UTM_468-0000046592-0000000000.tif
	29/10/2020 16:21:39 | Working on file S2_percentile_UTM_468-0000023296-0000046592.tif
	29/10/2020 16:21:39 | Working on file S2_percentile_UTM_468-0000023296-0000023296.tif
	29/10/2020 16:21:40 | Working on file S2_percentile_UTM_468-0000023296-0000000000.tif
	29/10/2020 16:21:41 | Working on file S2_percentile_UTM_468-0000000000-0000046592.tif
	29/10/2020 16:21:42 | Working on file S2_percentile_UTM_468-0000000000-0000023296.tif
	29/10/2020 16:21:42 | Working on file S2_percentile_UTM_468-0000000000-0000000000.tif
29/10/2020 16:21:43 | Working on tile 49R
	49R_UTM.vrt contains no GeoTIFF, attempting 49R.vrt
29/10/2020 16:21:46 | 12 files to process
	29/10/2020 16:21:46 | Working on file S2_percentile_UTM_408-0000069888-0000046592.tif
	29/10/2020 16:21:47 | Working on file S2_percentile_UTM_408-0000069888-0000023296.tif
	29/10/2020 16:21:48 | Working on file S2_percentile_UTM_408-0000069888-0000000000.tif
	29/10/2020 16:21:48 | Working on file S2_percentile_UTM_408-0000046592-0000046592.tif
	29/10/2020 16:21:49 | Working on file S2_percentile_UTM_408-0000046592-0000023296.tif
	29/10/2020 16:21:50 | Working on file S2_percentile_UTM_408-0000046592-0000000000.tif
	29/10/2020 16:21:52 | Working on file S2_percentile_UTM_408-0000023296-0000046592.tif
	29/10/2020 16:21:53 | Working on file S2_percentile_UTM_408-0000023296-0000023296.tif
	29/10/2020 16:21:53 | Working on file S2_percentile_UTM_408-0000023296-0000000000.tif
	29/10/2020 16:21:54 | Working on file S2_percentile_UTM_408-0000000000-0000046592.tif
	29/10/2020 16:21:55 | Working on file S2_percentile_UTM_408-0000000000-0000023296.tif
	29/10/2020 16:21:56 | Working on file S2_percentile_UTM_408-0000000000-0000000000.tif
29/10/2020 16:21:57 | Working on tile 49S
	49S_UTM.vrt contains no GeoTIFF, attempting 49S.vrt
29/10/2020 16:22:01 | 12 files to process
	29/10/2020 16:22:01 | Working on file S2_percentile_30_UTM_348-0000069888-0000046592.tif
	29/10/2020 16:22:01 | Working on file S2_percentile_30_UTM_348-0000069888-0000023296.tif
	29/10/2020 16:22:02 | Working on file S2_percentile_30_UTM_348-0000069888-0000000000.tif
	29/10/2020 16:22:03 | Working on file S2_percentile_30_UTM_348-0000046592-0000046592.tif
	29/10/2020 16:22:04 | Working on file S2_percentile_30_UTM_348-0000046592-0000023296.tif
	29/10/2020 16:22:04 | Working on file S2_percentile_30_UTM_348-0000046592-0000000000.tif
	29/10/2020 16:22:05 | Working on file S2_percentile_30_UTM_348-0000023296-0000046592.tif
	29/10/2020 16:22:06 | Working on file S2_percentile_30_UTM_348-0000023296-0000023296.tif
	29/10/2020 16:22:07 | Working on file S2_percentile_30_UTM_348-0000023296-0000000000.tif
	29/10/2020 16:22:08 | Working on file S2_percentile_30_UTM_348-0000000000-0000046592.tif
	29/10/2020 16:22:08 | Working on file S2_percentile_30_UTM_348-0000000000-0000023296.tif
	29/10/2020 16:22:09 | Working on file S2_percentile_30_UTM_348-0000000000-0000000000.tif
29/10/2020 16:22:10 | Working on tile 49T
29/10/2020 16:22:17 | 12 files to process
	29/10/2020 16:22:17 | Working on file S2_percentile_UTM_288-0000069888-0000046592.tif
	29/10/2020 16:22:17 | Working on file S2_percentile_UTM_288-0000069888-0000023296.tif
	29/10/2020 16:22:18 | Working on file S2_percentile_UTM_288-0000069888-0000000000.tif
	29/10/2020 16:22:19 | Working on file S2_percentile_UTM_288-0000046592-0000046592.tif
	29/10/2020 16:22:19 | Working on file S2_percentile_UTM_288-0000046592-0000023296.tif
	29/10/2020 16:22:20 | Working on file S2_percentile_UTM_288-0000046592-0000000000.tif
	29/10/2020 16:22:20 | Working on file S2_percentile_UTM_288-0000023296-0000046592.tif
	29/10/2020 16:22:21 | Working on file S2_percentile_UTM_288-0000023296-0000023296.tif
	29/10/2020 16:22:22 | Working on file S2_percentile_UTM_288-0000023296-0000000000.tif
	29/10/2020 16:22:22 | Working on file S2_percentile_UTM_288-0000000000-0000046592.tif
	29/10/2020 16:22:23 | Working on file S2_percentile_UTM_288-0000000000-0000023296.tif
	29/10/2020 16:22:24 | Working on file S2_percentile_UTM_288-0000000000-0000000000.tif
29/10/2020 16:22:26 | Working on tile 49U
29/10/2020 16:22:33 | 8 files to process
	29/10/2020 16:22:33 | Working on file S2_percentile_30_UTM_228-0000069888-0000023296.tif
	29/10/2020 16:22:34 | Working on file S2_percentile_30_UTM_228-0000069888-0000000000.tif
	29/10/2020 16:22:35 | Working on file S2_percentile_30_UTM_228-0000046592-0000023296.tif
	29/10/2020 16:22:36 | Working on file S2_percentile_30_UTM_228-0000046592-0000000000.tif
	29/10/2020 16:22:36 | Working on file S2_percentile_30_UTM_228-0000023296-0000023296.tif
	29/10/2020 16:22:37 | Working on file S2_percentile_30_UTM_228-0000023296-0000000000.tif
	29/10/2020 16:22:38 | Working on file S2_percentile_30_UTM_228-0000000000-0000023296.tif
	29/10/2020 16:22:39 | Working on file S2_percentile_30_UTM_228-0000000000-0000000000.tif
29/10/2020 16:22:40 | Working on tile 49V
29/10/2020 16:22:47 | 8 files to process
	29/10/2020 16:22:47 | Working on file S2_percentile_30_UTM_168-0000069888-0000023296.tif
	29/10/2020 16:22:48 | Working on file S2_percentile_30_UTM_168-0000069888-0000000000.tif
	29/10/2020 16:22:49 | Working on file S2_percentile_30_UTM_168-0000046592-0000023296.tif
	29/10/2020 16:22:49 | Working on file S2_percentile_30_UTM_168-0000046592-0000000000.tif
	29/10/2020 16:22:50 | Working on file S2_percentile_30_UTM_168-0000023296-0000023296.tif
	29/10/2020 16:22:56 | Working on file S2_percentile_30_UTM_168-0000023296-0000000000.tif
	29/10/2020 16:22:57 | Working on file S2_percentile_30_UTM_168-0000000000-0000023296.tif
	29/10/2020 16:22:58 | Working on file S2_percentile_30_UTM_168-0000000000-0000000000.tif
29/10/2020 16:22:58 | Working on tile 49W
29/10/2020 16:23:05 | 8 files to process
	29/10/2020 16:23:05 | Working on file S2_percentile_30_UTM_108-0000069888-0000023296.tif
	29/10/2020 16:23:05 | Working on file S2_percentile_30_UTM_108-0000069888-0000000000.tif
	29/10/2020 16:23:06 | Working on file S2_percentile_30_UTM_108-0000046592-0000023296.tif
	29/10/2020 16:23:07 | Working on file S2_percentile_30_UTM_108-0000046592-0000000000.tif
	29/10/2020 16:23:08 | Working on file S2_percentile_30_UTM_108-0000023296-0000023296.tif
	29/10/2020 16:23:08 | Working on file S2_percentile_30_UTM_108-0000023296-0000000000.tif
	29/10/2020 16:23:09 | Working on file S2_percentile_30_UTM_108-0000000000-0000023296.tif
	29/10/2020 16:23:10 | Working on file S2_percentile_30_UTM_108-0000000000-0000000000.tif
29/10/2020 16:23:10 | Working on tile 49X
	49X_UTM.vrt contains no GeoTIFF, attempting 49X.vrt
29/10/2020 16:23:13 | 6 files to process
	29/10/2020 16:23:13 | Working on file S2_percentile_30_UTM_48-0000116480-0000023296.tif
	29/10/2020 16:23:13 | Working on file S2_percentile_30_UTM_48-0000116480-0000000000.tif
	29/10/2020 16:23:14 | Working on file S2_percentile_30_UTM_48-0000093184-0000023296.tif
	29/10/2020 16:23:15 | Working on file S2_percentile_30_UTM_48-0000093184-0000000000.tif
	29/10/2020 16:23:15 | Working on file S2_percentile_30_UTM_48-0000069888-0000000000.tif
	29/10/2020 16:23:16 | Working on file S2_percentile_30_UTM_48-0000046592-0000000000.tif
29/10/2020 16:23:17 | Working on tile 50H
29/10/2020 16:23:24 | 6 files to process
	29/10/2020 16:23:24 | Working on file S2_percentile_30_UTM_889-0000023296-0000046592.tif
	29/10/2020 16:23:25 | Working on file S2_percentile_30_UTM_889-0000023296-0000023296.tif
	29/10/2020 16:23:25 | Working on file S2_percentile_30_UTM_889-0000023296-0000000000.tif
	29/10/2020 16:23:26 | Working on file S2_percentile_30_UTM_889-0000000000-0000046592.tif
	29/10/2020 16:23:27 | Working on file S2_percentile_30_UTM_889-0000000000-0000023296.tif
	29/10/2020 16:23:28 | Working on file S2_percentile_30_UTM_889-0000000000-0000000000.tif
29/10/2020 16:23:28 | Working on tile 50J
29/10/2020 16:23:34 | 12 files to process
	29/10/2020 16:23:34 | Working on file S2_percentile_30_UTM_829-0000069888-0000046592.tif
	29/10/2020 16:23:36 | Working on file S2_percentile_30_UTM_829-0000069888-0000023296.tif
	29/10/2020 16:23:37 | Working on file S2_percentile_30_UTM_829-0000069888-0000000000.tif
	29/10/2020 16:23:37 | Working on file S2_percentile_30_UTM_829-0000046592-0000046592.tif
	29/10/2020 16:23:38 | Working on file S2_percentile_30_UTM_829-0000046592-0000023296.tif
	29/10/2020 16:23:39 | Working on file S2_percentile_30_UTM_829-0000046592-0000000000.tif
	29/10/2020 16:23:39 | Working on file S2_percentile_30_UTM_829-0000023296-0000046592.tif
	29/10/2020 16:23:40 | Working on file S2_percentile_30_UTM_829-0000023296-0000023296.tif
	29/10/2020 16:23:41 | Working on file S2_percentile_30_UTM_829-0000023296-0000000000.tif
	29/10/2020 16:23:42 | Working on file S2_percentile_30_UTM_829-0000000000-0000046592.tif
	29/10/2020 16:23:42 | Working on file S2_percentile_30_UTM_829-0000000000-0000023296.tif
	29/10/2020 16:23:43 | Working on file S2_percentile_30_UTM_829-0000000000-0000000000.tif
29/10/2020 16:23:44 | Working on tile 50K
29/10/2020 16:23:50 | 12 files to process
	29/10/2020 16:23:50 | Working on file S2_percentile_UTM_769-0000069888-0000046592.tif
	29/10/2020 16:23:50 | Working on file S2_percentile_UTM_769-0000069888-0000023296.tif
	29/10/2020 16:23:51 | Working on file S2_percentile_UTM_769-0000069888-0000000000.tif
	29/10/2020 16:23:52 | Working on file S2_percentile_UTM_769-0000046592-0000046592.tif
	29/10/2020 16:23:53 | Working on file S2_percentile_UTM_769-0000046592-0000023296.tif
	29/10/2020 16:23:54 | Working on file S2_percentile_UTM_769-0000046592-0000000000.tif
	29/10/2020 16:23:55 | Working on file S2_percentile_UTM_769-0000023296-0000046592.tif
	29/10/2020 16:23:56 | Working on file S2_percentile_UTM_769-0000023296-0000023296.tif
	29/10/2020 16:23:57 | Working on file S2_percentile_UTM_769-0000023296-0000000000.tif
	29/10/2020 16:23:57 | Working on file S2_percentile_UTM_769-0000000000-0000046592.tif
	29/10/2020 16:23:58 | Working on file S2_percentile_UTM_769-0000000000-0000023296.tif
	29/10/2020 16:23:59 | Working on file S2_percentile_UTM_769-0000000000-0000000000.tif
29/10/2020 16:23:59 | Working on tile 50L
29/10/2020 16:24:05 | 11 files to process
	29/10/2020 16:24:05 | Working on file S2_percentile_UTM_709-0000069888-0000046592.tif
	29/10/2020 16:24:06 | Working on file S2_percentile_UTM_709-0000069888-0000023296.tif
	29/10/2020 16:24:07 | Working on file S2_percentile_UTM_709-0000069888-0000000000.tif
	29/10/2020 16:24:08 | Working on file S2_percentile_UTM_709-0000046592-0000046592.tif
	29/10/2020 16:24:09 | Working on file S2_percentile_UTM_709-0000046592-0000023296.tif
	29/10/2020 16:24:09 | Working on file S2_percentile_UTM_709-0000046592-0000000000.tif
	29/10/2020 16:24:10 | Working on file S2_percentile_UTM_709-0000023296-0000046592.tif
	29/10/2020 16:24:11 | Working on file S2_percentile_UTM_709-0000023296-0000023296.tif
	29/10/2020 16:24:12 | Working on file S2_percentile_UTM_709-0000000000-0000046592.tif
	29/10/2020 16:24:12 | Working on file S2_percentile_UTM_709-0000000000-0000023296.tif
	29/10/2020 16:24:13 | Working on file S2_percentile_UTM_709-0000000000-0000000000.tif
29/10/2020 16:24:14 | Working on tile 50M
29/10/2020 16:24:21 | 12 files to process
	29/10/2020 16:24:21 | Working on file S2_percentile_30_UTM_649-0000069888-0000046592.tif
	29/10/2020 16:24:21 | Working on file S2_percentile_30_UTM_649-0000069888-0000023296.tif
	29/10/2020 16:24:22 | Working on file S2_percentile_30_UTM_649-0000069888-0000000000.tif
	29/10/2020 16:24:23 | Working on file S2_percentile_30_UTM_649-0000046592-0000046592.tif
	29/10/2020 16:24:24 | Working on file S2_percentile_30_UTM_649-0000046592-0000023296.tif
	29/10/2020 16:24:25 | Working on file S2_percentile_30_UTM_649-0000046592-0000000000.tif
	29/10/2020 16:24:26 | Working on file S2_percentile_30_UTM_649-0000023296-0000046592.tif
	29/10/2020 16:24:26 | Working on file S2_percentile_30_UTM_649-0000023296-0000023296.tif
	29/10/2020 16:24:27 | Working on file S2_percentile_30_UTM_649-0000023296-0000000000.tif
	29/10/2020 16:24:28 | Working on file S2_percentile_30_UTM_649-0000000000-0000046592.tif
	29/10/2020 16:24:29 | Working on file S2_percentile_30_UTM_649-0000000000-0000023296.tif
	29/10/2020 16:24:29 | Working on file S2_percentile_30_UTM_649-0000000000-0000000000.tif
29/10/2020 16:24:30 | Working on tile 50N
29/10/2020 16:24:37 | 12 files to process
	29/10/2020 16:24:37 | Working on file S2_percentile_30_UTM_589-0000069888-0000046592.tif
	29/10/2020 16:24:38 | Working on file S2_percentile_30_UTM_589-0000069888-0000023296.tif
	29/10/2020 16:24:39 | Working on file S2_percentile_30_UTM_589-0000069888-0000000000.tif
	29/10/2020 16:24:40 | Working on file S2_percentile_30_UTM_589-0000046592-0000046592.tif
	29/10/2020 16:24:41 | Working on file S2_percentile_30_UTM_589-0000046592-0000023296.tif
	29/10/2020 16:24:41 | Working on file S2_percentile_30_UTM_589-0000046592-0000000000.tif
	29/10/2020 16:24:42 | Working on file S2_percentile_30_UTM_589-0000023296-0000046592.tif
	29/10/2020 16:24:43 | Working on file S2_percentile_30_UTM_589-0000023296-0000023296.tif
	29/10/2020 16:24:43 | Working on file S2_percentile_30_UTM_589-0000023296-0000000000.tif
	29/10/2020 16:24:44 | Working on file S2_percentile_30_UTM_589-0000000000-0000046592.tif
	29/10/2020 16:24:45 | Working on file S2_percentile_30_UTM_589-0000000000-0000023296.tif
	29/10/2020 16:24:45 | Working on file S2_percentile_30_UTM_589-0000000000-0000000000.tif
29/10/2020 16:24:46 | Working on tile 50P
29/10/2020 16:24:52 | 12 files to process
	29/10/2020 16:24:52 | Working on file S2_percentile_30_UTM_529-0000069888-0000046592.tif
	29/10/2020 16:24:53 | Working on file S2_percentile_30_UTM_529-0000069888-0000023296.tif
	29/10/2020 16:24:54 | Working on file S2_percentile_30_UTM_529-0000069888-0000000000.tif
	29/10/2020 16:24:54 | Working on file S2_percentile_30_UTM_529-0000046592-0000046592.tif
	29/10/2020 16:24:56 | Working on file S2_percentile_30_UTM_529-0000046592-0000023296.tif
	29/10/2020 16:24:56 | Working on file S2_percentile_30_UTM_529-0000046592-0000000000.tif
	29/10/2020 16:24:57 | Working on file S2_percentile_30_UTM_529-0000023296-0000046592.tif
	29/10/2020 16:24:58 | Working on file S2_percentile_30_UTM_529-0000023296-0000023296.tif
	29/10/2020 16:24:59 | Working on file S2_percentile_30_UTM_529-0000023296-0000000000.tif
	29/10/2020 16:25:00 | Working on file S2_percentile_30_UTM_529-0000000000-0000046592.tif
	29/10/2020 16:25:01 | Working on file S2_percentile_30_UTM_529-0000000000-0000023296.tif
	29/10/2020 16:25:02 | Working on file S2_percentile_30_UTM_529-0000000000-0000000000.tif
29/10/2020 16:25:03 | Working on tile 50Q
29/10/2020 16:25:11 | 12 files to process
	29/10/2020 16:25:11 | Working on file S2_percentile_UTM_469-0000069888-0000046592.tif
	29/10/2020 16:25:12 | Working on file S2_percentile_UTM_469-0000069888-0000023296.tif
	29/10/2020 16:25:13 | Working on file S2_percentile_UTM_469-0000069888-0000000000.tif
	29/10/2020 16:25:14 | Working on file S2_percentile_UTM_469-0000046592-0000046592.tif
	29/10/2020 16:25:14 | Working on file S2_percentile_UTM_469-0000046592-0000023296.tif
	29/10/2020 16:25:15 | Working on file S2_percentile_UTM_469-0000046592-0000000000.tif
	29/10/2020 16:25:16 | Working on file S2_percentile_UTM_469-0000023296-0000046592.tif
	29/10/2020 16:25:17 | Working on file S2_percentile_UTM_469-0000023296-0000023296.tif
	29/10/2020 16:25:18 | Working on file S2_percentile_UTM_469-0000023296-0000000000.tif
	29/10/2020 16:25:18 | Working on file S2_percentile_UTM_469-0000000000-0000046592.tif
	29/10/2020 16:25:19 | Working on file S2_percentile_UTM_469-0000000000-0000023296.tif
	29/10/2020 16:25:20 | Working on file S2_percentile_UTM_469-0000000000-0000000000.tif
29/10/2020 16:25:20 | Working on tile 50R
29/10/2020 16:25:27 | 12 files to process
	29/10/2020 16:25:27 | Working on file S2_percentile_UTM_409-0000069888-0000046592.tif
	29/10/2020 16:25:28 | Working on file S2_percentile_UTM_409-0000069888-0000023296.tif
	29/10/2020 16:25:29 | Working on file S2_percentile_UTM_409-0000069888-0000000000.tif
	29/10/2020 16:25:29 | Working on file S2_percentile_UTM_409-0000046592-0000046592.tif
	29/10/2020 16:25:30 | Working on file S2_percentile_UTM_409-0000046592-0000023296.tif
	29/10/2020 16:25:31 | Working on file S2_percentile_UTM_409-0000046592-0000000000.tif
	29/10/2020 16:25:32 | Working on file S2_percentile_UTM_409-0000023296-0000046592.tif
	29/10/2020 16:25:32 | Working on file S2_percentile_UTM_409-0000023296-0000023296.tif
	29/10/2020 16:25:33 | Working on file S2_percentile_UTM_409-0000023296-0000000000.tif
	29/10/2020 16:25:34 | Working on file S2_percentile_UTM_409-0000000000-0000046592.tif
	29/10/2020 16:25:34 | Working on file S2_percentile_UTM_409-0000000000-0000023296.tif
	29/10/2020 16:25:35 | Working on file S2_percentile_UTM_409-0000000000-0000000000.tif
29/10/2020 16:25:36 | Working on tile 50S
	50S_UTM.vrt contains no GeoTIFF, attempting 50S.vrt
29/10/2020 16:25:40 | 12 files to process
	29/10/2020 16:25:40 | Working on file S2_percentile_UTM_349-0000069888-0000046592.tif
	29/10/2020 16:25:41 | Working on file S2_percentile_UTM_349-0000069888-0000023296.tif
	29/10/2020 16:25:42 | Working on file S2_percentile_UTM_349-0000069888-0000000000.tif
	29/10/2020 16:25:42 | Working on file S2_percentile_UTM_349-0000046592-0000046592.tif
	29/10/2020 16:25:43 | Working on file S2_percentile_UTM_349-0000046592-0000023296.tif
	29/10/2020 16:25:44 | Working on file S2_percentile_UTM_349-0000046592-0000000000.tif
	29/10/2020 16:25:45 | Working on file S2_percentile_UTM_349-0000023296-0000046592.tif
	29/10/2020 16:25:46 | Working on file S2_percentile_UTM_349-0000023296-0000023296.tif
	29/10/2020 16:25:47 | Working on file S2_percentile_UTM_349-0000023296-0000000000.tif
	29/10/2020 16:25:48 | Working on file S2_percentile_UTM_349-0000000000-0000046592.tif
	29/10/2020 16:25:48 | Working on file S2_percentile_UTM_349-0000000000-0000023296.tif
	29/10/2020 16:25:49 | Working on file S2_percentile_UTM_349-0000000000-0000000000.tif
29/10/2020 16:25:50 | Working on tile 50T
	50T_UTM.vrt contains no GeoTIFF, attempting 50T.vrt
29/10/2020 16:25:53 | 12 files to process
	29/10/2020 16:25:53 | Working on file S2_percentile_UTM_289-0000069888-0000046592.tif
	29/10/2020 16:25:53 | Working on file S2_percentile_UTM_289-0000069888-0000023296.tif
	29/10/2020 16:25:54 | Working on file S2_percentile_UTM_289-0000069888-0000000000.tif
	29/10/2020 16:25:55 | Working on file S2_percentile_UTM_289-0000046592-0000046592.tif
	29/10/2020 16:25:56 | Working on file S2_percentile_UTM_289-0000046592-0000023296.tif
	29/10/2020 16:25:57 | Working on file S2_percentile_UTM_289-0000046592-0000000000.tif
	29/10/2020 16:25:57 | Working on file S2_percentile_UTM_289-0000023296-0000046592.tif
	29/10/2020 16:25:58 | Working on file S2_percentile_UTM_289-0000023296-0000023296.tif
	29/10/2020 16:25:59 | Working on file S2_percentile_UTM_289-0000023296-0000000000.tif
	29/10/2020 16:25:59 | Working on file S2_percentile_UTM_289-0000000000-0000046592.tif
	29/10/2020 16:26:00 | Working on file S2_percentile_UTM_289-0000000000-0000023296.tif
	29/10/2020 16:26:01 | Working on file S2_percentile_UTM_289-0000000000-0000000000.tif
29/10/2020 16:26:02 | Working on tile 50U
29/10/2020 16:26:08 | 8 files to process
	29/10/2020 16:26:08 | Working on file S2_percentile_30_UTM_229-0000069888-0000023296.tif
	29/10/2020 16:26:09 | Working on file S2_percentile_30_UTM_229-0000069888-0000000000.tif
	29/10/2020 16:26:10 | Working on file S2_percentile_30_UTM_229-0000046592-0000023296.tif
	29/10/2020 16:26:11 | Working on file S2_percentile_30_UTM_229-0000046592-0000000000.tif
	29/10/2020 16:26:12 | Working on file S2_percentile_30_UTM_229-0000023296-0000023296.tif
	29/10/2020 16:26:13 | Working on file S2_percentile_30_UTM_229-0000023296-0000000000.tif
	29/10/2020 16:26:13 | Working on file S2_percentile_30_UTM_229-0000000000-0000023296.tif
	29/10/2020 16:26:14 | Working on file S2_percentile_30_UTM_229-0000000000-0000000000.tif
29/10/2020 16:26:15 | Working on tile 50V
29/10/2020 16:26:20 | 8 files to process
	29/10/2020 16:26:20 | Working on file S2_percentile_30_UTM_169-0000069888-0000023296.tif
	29/10/2020 16:26:21 | Working on file S2_percentile_30_UTM_169-0000069888-0000000000.tif
	29/10/2020 16:26:22 | Working on file S2_percentile_30_UTM_169-0000046592-0000023296.tif
	29/10/2020 16:26:23 | Working on file S2_percentile_30_UTM_169-0000046592-0000000000.tif
	29/10/2020 16:26:23 | Working on file S2_percentile_30_UTM_169-0000023296-0000023296.tif
	29/10/2020 16:26:24 | Working on file S2_percentile_30_UTM_169-0000023296-0000000000.tif
	29/10/2020 16:26:25 | Working on file S2_percentile_30_UTM_169-0000000000-0000023296.tif
	29/10/2020 16:26:26 | Working on file S2_percentile_30_UTM_169-0000000000-0000000000.tif
29/10/2020 16:26:27 | Working on tile 50W
	50W_UTM.vrt contains no GeoTIFF, attempting 50W.vrt
29/10/2020 16:26:29 | 8 files to process
	29/10/2020 16:26:29 | Working on file S2_percentile_UTM_109-0000069888-0000023296.tif
	29/10/2020 16:26:30 | Working on file S2_percentile_UTM_109-0000069888-0000000000.tif
	29/10/2020 16:26:31 | Working on file S2_percentile_UTM_109-0000046592-0000023296.tif
	29/10/2020 16:26:32 | Working on file S2_percentile_UTM_109-0000046592-0000000000.tif
	29/10/2020 16:26:32 | Working on file S2_percentile_UTM_109-0000023296-0000023296.tif
	29/10/2020 16:26:33 | Working on file S2_percentile_UTM_109-0000023296-0000000000.tif
	29/10/2020 16:26:34 | Working on file S2_percentile_UTM_109-0000000000-0000023296.tif
	29/10/2020 16:26:34 | Working on file S2_percentile_UTM_109-0000000000-0000000000.tif
29/10/2020 16:26:35 | Working on tile 50X
	50X_UTM.vrt contains no GeoTIFF, attempting 50X.vrt
29/10/2020 16:26:38 | 5 files to process
	29/10/2020 16:26:38 | Working on file S2_percentile_30_UTM_49-0000116480-0000023296.tif
	29/10/2020 16:26:39 | Working on file S2_percentile_30_UTM_49-0000116480-0000000000.tif
	29/10/2020 16:26:39 | Working on file S2_percentile_30_UTM_49-0000093184-0000023296.tif
	29/10/2020 16:26:40 | Working on file S2_percentile_30_UTM_49-0000093184-0000000000.tif
	29/10/2020 16:26:41 | Working on file S2_percentile_30_UTM_49-0000069888-0000000000.tif
29/10/2020 16:26:42 | Working on tile 51H
	51H_UTM.vrt contains no GeoTIFF, attempting 51H.vrt
29/10/2020 16:26:44 | 7 files to process
	29/10/2020 16:26:44 | Working on file S2_percentile_UTM_890-0000046592-0000000000.tif
	29/10/2020 16:26:45 | Working on file S2_percentile_UTM_890-0000023296-0000046592.tif
	29/10/2020 16:26:46 | Working on file S2_percentile_UTM_890-0000023296-0000023296.tif
	29/10/2020 16:26:46 | Working on file S2_percentile_UTM_890-0000023296-0000000000.tif
	29/10/2020 16:26:48 | Working on file S2_percentile_UTM_890-0000000000-0000046592.tif
	29/10/2020 16:26:48 | Working on file S2_percentile_UTM_890-0000000000-0000023296.tif
	29/10/2020 16:26:49 | Working on file S2_percentile_UTM_890-0000000000-0000000000.tif
29/10/2020 16:26:50 | Working on tile 51J
	51J_UTM.vrt contains no GeoTIFF, attempting 51J.vrt
29/10/2020 16:26:52 | 12 files to process
	29/10/2020 16:26:52 | Working on file S2_percentile_UTM_830-0000069888-0000046592.tif
	29/10/2020 16:26:53 | Working on file S2_percentile_UTM_830-0000069888-0000023296.tif
	29/10/2020 16:26:54 | Working on file S2_percentile_UTM_830-0000069888-0000000000.tif
	29/10/2020 16:26:55 | Working on file S2_percentile_UTM_830-0000046592-0000046592.tif
	29/10/2020 16:26:55 | Working on file S2_percentile_UTM_830-0000046592-0000023296.tif
	29/10/2020 16:26:56 | Working on file S2_percentile_UTM_830-0000046592-0000000000.tif
	29/10/2020 16:26:57 | Working on file S2_percentile_UTM_830-0000023296-0000046592.tif
	29/10/2020 16:26:57 | Working on file S2_percentile_UTM_830-0000023296-0000023296.tif
	29/10/2020 16:26:58 | Working on file S2_percentile_UTM_830-0000023296-0000000000.tif
	29/10/2020 16:26:59 | Working on file S2_percentile_UTM_830-0000000000-0000046592.tif
	29/10/2020 16:26:59 | Working on file S2_percentile_UTM_830-0000000000-0000023296.tif
	29/10/2020 16:27:00 | Working on file S2_percentile_UTM_830-0000000000-0000000000.tif
29/10/2020 16:27:01 | Working on tile 51K
	51K_UTM.vrt contains no GeoTIFF, attempting 51K.vrt
29/10/2020 16:27:04 | 12 files to process
	29/10/2020 16:27:04 | Working on file S2_percentile_UTM_770-0000069888-0000046592.tif
	29/10/2020 16:27:05 | Working on file S2_percentile_UTM_770-0000069888-0000023296.tif
	29/10/2020 16:27:11 | Working on file S2_percentile_UTM_770-0000069888-0000000000.tif
	29/10/2020 16:27:12 | Working on file S2_percentile_UTM_770-0000046592-0000046592.tif
	29/10/2020 16:27:12 | Working on file S2_percentile_UTM_770-0000046592-0000023296.tif
	29/10/2020 16:27:13 | Working on file S2_percentile_UTM_770-0000046592-0000000000.tif
	29/10/2020 16:27:14 | Working on file S2_percentile_UTM_770-0000023296-0000046592.tif
	29/10/2020 16:27:15 | Working on file S2_percentile_UTM_770-0000023296-0000023296.tif
	29/10/2020 16:27:15 | Working on file S2_percentile_UTM_770-0000023296-0000000000.tif
	29/10/2020 16:27:16 | Working on file S2_percentile_UTM_770-0000000000-0000046592.tif
	29/10/2020 16:27:17 | Working on file S2_percentile_UTM_770-0000000000-0000023296.tif
	29/10/2020 16:27:17 | Working on file S2_percentile_UTM_770-0000000000-0000000000.tif
29/10/2020 16:27:18 | Working on tile 51L
	51L_UTM.vrt contains no GeoTIFF, attempting 51L.vrt
29/10/2020 16:27:21 | 12 files to process
	29/10/2020 16:27:21 | Working on file S2_percentile_UTM_710-0000069888-0000046592.tif
	29/10/2020 16:27:22 | Working on file S2_percentile_UTM_710-0000069888-0000023296.tif
	29/10/2020 16:27:23 | Working on file S2_percentile_UTM_710-0000069888-0000000000.tif
	29/10/2020 16:27:23 | Working on file S2_percentile_UTM_710-0000046592-0000046592.tif
	29/10/2020 16:27:24 | Working on file S2_percentile_UTM_710-0000046592-0000023296.tif
	29/10/2020 16:27:25 | Working on file S2_percentile_UTM_710-0000046592-0000000000.tif
	29/10/2020 16:27:26 | Working on file S2_percentile_UTM_710-0000023296-0000046592.tif
	29/10/2020 16:27:26 | Working on file S2_percentile_UTM_710-0000023296-0000023296.tif
	29/10/2020 16:27:27 | Working on file S2_percentile_UTM_710-0000023296-0000000000.tif
	29/10/2020 16:27:28 | Working on file S2_percentile_UTM_710-0000000000-0000046592.tif
	29/10/2020 16:27:28 | Working on file S2_percentile_UTM_710-0000000000-0000023296.tif
	29/10/2020 16:27:29 | Working on file S2_percentile_UTM_710-0000000000-0000000000.tif
29/10/2020 16:27:30 | Working on tile 51M
	51M_UTM.vrt contains no GeoTIFF, attempting 51M.vrt
29/10/2020 16:27:33 | 12 files to process
	29/10/2020 16:27:33 | Working on file S2_percentile_30_UTM_650-0000069888-0000046592.tif
	29/10/2020 16:27:34 | Working on file S2_percentile_30_UTM_650-0000069888-0000023296.tif
	29/10/2020 16:27:34 | Working on file S2_percentile_30_UTM_650-0000069888-0000000000.tif
	29/10/2020 16:27:35 | Working on file S2_percentile_30_UTM_650-0000046592-0000046592.tif
	29/10/2020 16:27:36 | Working on file S2_percentile_30_UTM_650-0000046592-0000023296.tif
	29/10/2020 16:27:37 | Working on file S2_percentile_30_UTM_650-0000046592-0000000000.tif
	29/10/2020 16:27:38 | Working on file S2_percentile_30_UTM_650-0000023296-0000046592.tif
	29/10/2020 16:27:39 | Working on file S2_percentile_30_UTM_650-0000023296-0000023296.tif
	29/10/2020 16:27:39 | Working on file S2_percentile_30_UTM_650-0000023296-0000000000.tif
	29/10/2020 16:27:40 | Working on file S2_percentile_30_UTM_650-0000000000-0000046592.tif
	29/10/2020 16:27:41 | Working on file S2_percentile_30_UTM_650-0000000000-0000023296.tif
	29/10/2020 16:27:47 | Working on file S2_percentile_30_UTM_650-0000000000-0000000000.tif
29/10/2020 16:27:48 | Working on tile 51N
29/10/2020 16:27:55 | 12 files to process
	29/10/2020 16:27:55 | Working on file S2_percentile_30_UTM_590-0000069888-0000046592.tif
	29/10/2020 16:27:55 | Working on file S2_percentile_30_UTM_590-0000069888-0000023296.tif
	29/10/2020 16:27:56 | Working on file S2_percentile_30_UTM_590-0000069888-0000000000.tif
	29/10/2020 16:27:57 | Working on file S2_percentile_30_UTM_590-0000046592-0000046592.tif
	29/10/2020 16:27:58 | Working on file S2_percentile_30_UTM_590-0000046592-0000023296.tif
	29/10/2020 16:27:58 | Working on file S2_percentile_30_UTM_590-0000046592-0000000000.tif
	29/10/2020 16:27:59 | Working on file S2_percentile_30_UTM_590-0000023296-0000046592.tif
	29/10/2020 16:28:00 | Working on file S2_percentile_30_UTM_590-0000023296-0000023296.tif
	29/10/2020 16:28:01 | Working on file S2_percentile_30_UTM_590-0000023296-0000000000.tif
	29/10/2020 16:28:01 | Working on file S2_percentile_30_UTM_590-0000000000-0000046592.tif
	29/10/2020 16:28:02 | Working on file S2_percentile_30_UTM_590-0000000000-0000023296.tif
	29/10/2020 16:28:03 | Working on file S2_percentile_30_UTM_590-0000000000-0000000000.tif
29/10/2020 16:28:04 | Working on tile 51P
	51P_UTM.vrt contains no GeoTIFF, attempting 51P.vrt
29/10/2020 16:28:06 | 12 files to process
	29/10/2020 16:28:06 | Working on file S2_percentile_30_UTM_530-0000069888-0000046592.tif
	29/10/2020 16:28:07 | Working on file S2_percentile_30_UTM_530-0000069888-0000023296.tif
	29/10/2020 16:28:08 | Working on file S2_percentile_30_UTM_530-0000069888-0000000000.tif
	29/10/2020 16:28:09 | Working on file S2_percentile_30_UTM_530-0000046592-0000046592.tif
	29/10/2020 16:28:10 | Working on file S2_percentile_30_UTM_530-0000046592-0000023296.tif
	29/10/2020 16:28:11 | Working on file S2_percentile_30_UTM_530-0000046592-0000000000.tif
	29/10/2020 16:28:11 | Working on file S2_percentile_30_UTM_530-0000023296-0000046592.tif
	29/10/2020 16:28:12 | Working on file S2_percentile_30_UTM_530-0000023296-0000023296.tif
	29/10/2020 16:28:13 | Working on file S2_percentile_30_UTM_530-0000023296-0000000000.tif
	29/10/2020 16:28:14 | Working on file S2_percentile_30_UTM_530-0000000000-0000046592.tif
	29/10/2020 16:28:15 | Working on file S2_percentile_30_UTM_530-0000000000-0000023296.tif
	29/10/2020 16:28:16 | Working on file S2_percentile_30_UTM_530-0000000000-0000000000.tif
29/10/2020 16:28:17 | Working on tile 51Q
29/10/2020 16:28:23 | 12 files to process
	29/10/2020 16:28:23 | Working on file S2_percentile_30_UTM_470-0000069888-0000046592.tif
	29/10/2020 16:28:23 | Working on file S2_percentile_30_UTM_470-0000069888-0000023296.tif
	29/10/2020 16:28:24 | Working on file S2_percentile_30_UTM_470-0000069888-0000000000.tif
	29/10/2020 16:28:25 | Working on file S2_percentile_30_UTM_470-0000046592-0000046592.tif
	29/10/2020 16:28:26 | Working on file S2_percentile_30_UTM_470-0000046592-0000023296.tif
	29/10/2020 16:28:26 | Working on file S2_percentile_30_UTM_470-0000046592-0000000000.tif
	29/10/2020 16:28:27 | Working on file S2_percentile_30_UTM_470-0000023296-0000046592.tif
	29/10/2020 16:28:28 | Working on file S2_percentile_30_UTM_470-0000023296-0000023296.tif
	29/10/2020 16:28:28 | Working on file S2_percentile_30_UTM_470-0000023296-0000000000.tif
	29/10/2020 16:28:29 | Working on file S2_percentile_30_UTM_470-0000000000-0000046592.tif
	29/10/2020 16:28:30 | Working on file S2_percentile_30_UTM_470-0000000000-0000023296.tif
	29/10/2020 16:28:31 | Working on file S2_percentile_30_UTM_470-0000000000-0000000000.tif
29/10/2020 16:28:32 | Working on tile 51R
29/10/2020 16:28:40 | 12 files to process
	29/10/2020 16:28:40 | Working on file S2_percentile_UTM_410-0000069888-0000046592.tif
	29/10/2020 16:28:41 | Working on file S2_percentile_UTM_410-0000069888-0000023296.tif
	29/10/2020 16:28:42 | Working on file S2_percentile_UTM_410-0000069888-0000000000.tif
	29/10/2020 16:28:42 | Working on file S2_percentile_UTM_410-0000046592-0000046592.tif
	29/10/2020 16:28:43 | Working on file S2_percentile_UTM_410-0000046592-0000023296.tif
	29/10/2020 16:28:44 | Working on file S2_percentile_UTM_410-0000046592-0000000000.tif
	29/10/2020 16:28:45 | Working on file S2_percentile_UTM_410-0000023296-0000046592.tif
	29/10/2020 16:28:46 | Working on file S2_percentile_UTM_410-0000023296-0000023296.tif
	29/10/2020 16:28:46 | Working on file S2_percentile_UTM_410-0000023296-0000000000.tif
	29/10/2020 16:28:47 | Working on file S2_percentile_UTM_410-0000000000-0000046592.tif
	29/10/2020 16:28:48 | Working on file S2_percentile_UTM_410-0000000000-0000023296.tif
	29/10/2020 16:28:49 | Working on file S2_percentile_UTM_410-0000000000-0000000000.tif
29/10/2020 16:28:49 | Working on tile 51S
29/10/2020 16:28:56 | 12 files to process
	29/10/2020 16:28:56 | Working on file S2_percentile_UTM_350-0000069888-0000046592.tif
	29/10/2020 16:28:56 | Working on file S2_percentile_UTM_350-0000069888-0000023296.tif
	29/10/2020 16:28:57 | Working on file S2_percentile_UTM_350-0000069888-0000000000.tif
	29/10/2020 16:28:58 | Working on file S2_percentile_UTM_350-0000046592-0000046592.tif
	29/10/2020 16:28:58 | Working on file S2_percentile_UTM_350-0000046592-0000023296.tif
	29/10/2020 16:28:59 | Working on file S2_percentile_UTM_350-0000046592-0000000000.tif
	29/10/2020 16:29:00 | Working on file S2_percentile_UTM_350-0000023296-0000046592.tif
	29/10/2020 16:29:01 | Working on file S2_percentile_UTM_350-0000023296-0000023296.tif
	29/10/2020 16:29:02 | Working on file S2_percentile_UTM_350-0000023296-0000000000.tif
	29/10/2020 16:29:03 | Working on file S2_percentile_UTM_350-0000000000-0000046592.tif
	29/10/2020 16:29:04 | Working on file S2_percentile_UTM_350-0000000000-0000023296.tif
	29/10/2020 16:29:04 | Working on file S2_percentile_UTM_350-0000000000-0000000000.tif
29/10/2020 16:29:05 | Working on tile 51T
29/10/2020 16:29:13 | 12 files to process
	29/10/2020 16:29:13 | Working on file S2_percentile_30_UTM_290-0000069888-0000046592.tif
	29/10/2020 16:29:13 | Working on file S2_percentile_30_UTM_290-0000069888-0000023296.tif
	29/10/2020 16:29:14 | Working on file S2_percentile_30_UTM_290-0000069888-0000000000.tif
	29/10/2020 16:29:15 | Working on file S2_percentile_30_UTM_290-0000046592-0000046592.tif
	29/10/2020 16:29:16 | Working on file S2_percentile_30_UTM_290-0000046592-0000023296.tif
	29/10/2020 16:29:16 | Working on file S2_percentile_30_UTM_290-0000046592-0000000000.tif
	29/10/2020 16:29:17 | Working on file S2_percentile_30_UTM_290-0000023296-0000046592.tif
	29/10/2020 16:29:17 | Working on file S2_percentile_30_UTM_290-0000023296-0000023296.tif
	29/10/2020 16:29:18 | Working on file S2_percentile_30_UTM_290-0000023296-0000000000.tif
	29/10/2020 16:29:19 | Working on file S2_percentile_30_UTM_290-0000000000-0000046592.tif
	29/10/2020 16:29:20 | Working on file S2_percentile_30_UTM_290-0000000000-0000023296.tif
	29/10/2020 16:29:20 | Working on file S2_percentile_30_UTM_290-0000000000-0000000000.tif
29/10/2020 16:29:21 | Working on tile 51U
29/10/2020 16:29:28 | 8 files to process
	29/10/2020 16:29:28 | Working on file S2_percentile_30_UTM_230-0000069888-0000023296.tif
	29/10/2020 16:29:29 | Working on file S2_percentile_30_UTM_230-0000069888-0000000000.tif
	29/10/2020 16:29:30 | Working on file S2_percentile_30_UTM_230-0000046592-0000023296.tif
	29/10/2020 16:29:31 | Working on file S2_percentile_30_UTM_230-0000046592-0000000000.tif
	29/10/2020 16:29:32 | Working on file S2_percentile_30_UTM_230-0000023296-0000023296.tif
	29/10/2020 16:29:32 | Working on file S2_percentile_30_UTM_230-0000023296-0000000000.tif
	29/10/2020 16:29:33 | Working on file S2_percentile_30_UTM_230-0000000000-0000023296.tif
	29/10/2020 16:29:35 | Working on file S2_percentile_30_UTM_230-0000000000-0000000000.tif
29/10/2020 16:29:36 | Working on tile 51V
29/10/2020 16:29:44 | 8 files to process
	29/10/2020 16:29:44 | Working on file S2_percentile_30_UTM_170-0000069888-0000023296.tif
	29/10/2020 16:29:44 | Working on file S2_percentile_30_UTM_170-0000069888-0000000000.tif
	29/10/2020 16:29:45 | Working on file S2_percentile_30_UTM_170-0000046592-0000023296.tif
	29/10/2020 16:29:46 | Working on file S2_percentile_30_UTM_170-0000046592-0000000000.tif
	29/10/2020 16:29:47 | Working on file S2_percentile_30_UTM_170-0000023296-0000023296.tif
	29/10/2020 16:29:47 | Working on file S2_percentile_30_UTM_170-0000023296-0000000000.tif
	29/10/2020 16:29:48 | Working on file S2_percentile_30_UTM_170-0000000000-0000023296.tif
	29/10/2020 16:29:49 | Working on file S2_percentile_30_UTM_170-0000000000-0000000000.tif
29/10/2020 16:29:50 | Working on tile 51W
	51W_UTM.vrt contains no GeoTIFF, attempting 51W.vrt
29/10/2020 16:29:53 | 8 files to process
	29/10/2020 16:29:53 | Working on file S2_percentile_30_UTM_110-0000069888-0000023296.tif
	29/10/2020 16:29:54 | Working on file S2_percentile_30_UTM_110-0000069888-0000000000.tif
	29/10/2020 16:29:55 | Working on file S2_percentile_30_UTM_110-0000046592-0000023296.tif
	29/10/2020 16:29:55 | Working on file S2_percentile_30_UTM_110-0000046592-0000000000.tif
	29/10/2020 16:29:56 | Working on file S2_percentile_30_UTM_110-0000023296-0000023296.tif
	29/10/2020 16:29:57 | Working on file S2_percentile_30_UTM_110-0000023296-0000000000.tif
	29/10/2020 16:29:58 | Working on file S2_percentile_30_UTM_110-0000000000-0000023296.tif
	29/10/2020 16:29:58 | Working on file S2_percentile_30_UTM_110-0000000000-0000000000.tif
29/10/2020 16:29:59 | Working on tile 51X
	51X_UTM.vrt contains no GeoTIFF, attempting 51X.vrt
29/10/2020 16:30:02 | 6 files to process
	29/10/2020 16:30:02 | Working on file S2_percentile_30_UTM_50-0000116480-0000023296.tif
	29/10/2020 16:30:03 | Working on file S2_percentile_30_UTM_50-0000116480-0000000000.tif
	29/10/2020 16:30:03 | Working on file S2_percentile_30_UTM_50-0000093184-0000023296.tif
	29/10/2020 16:30:04 | Working on file S2_percentile_30_UTM_50-0000093184-0000000000.tif
	29/10/2020 16:30:05 | Working on file S2_percentile_30_UTM_50-0000069888-0000000000.tif
	29/10/2020 16:30:05 | Working on file S2_percentile_30_UTM_50-0000046592-0000000000.tif
29/10/2020 16:30:06 | Working on tile 52H
29/10/2020 16:30:12 | 4 files to process
	29/10/2020 16:30:12 | Working on file S2_percentile_UTM_891-0000023296-0000000000.tif
	29/10/2020 16:30:13 | Working on file S2_percentile_UTM_891-0000000000-0000046592.tif
	29/10/2020 16:30:14 | Working on file S2_percentile_UTM_891-0000000000-0000023296.tif
	29/10/2020 16:30:15 | Working on file S2_percentile_UTM_891-0000000000-0000000000.tif
29/10/2020 16:30:15 | Working on tile 52J
29/10/2020 16:30:22 | 12 files to process
	29/10/2020 16:30:22 | Working on file S2_percentile_UTM_831-0000069888-0000046592.tif
	29/10/2020 16:30:23 | Working on file S2_percentile_UTM_831-0000069888-0000023296.tif
	29/10/2020 16:30:24 | Working on file S2_percentile_UTM_831-0000069888-0000000000.tif
	29/10/2020 16:30:25 | Working on file S2_percentile_UTM_831-0000046592-0000046592.tif
	29/10/2020 16:30:26 | Working on file S2_percentile_UTM_831-0000046592-0000023296.tif
	29/10/2020 16:30:26 | Working on file S2_percentile_UTM_831-0000046592-0000000000.tif
	29/10/2020 16:30:27 | Working on file S2_percentile_UTM_831-0000023296-0000046592.tif
	29/10/2020 16:30:28 | Working on file S2_percentile_UTM_831-0000023296-0000023296.tif
	29/10/2020 16:30:29 | Working on file S2_percentile_UTM_831-0000023296-0000000000.tif
	29/10/2020 16:30:29 | Working on file S2_percentile_UTM_831-0000000000-0000046592.tif
	29/10/2020 16:30:30 | Working on file S2_percentile_UTM_831-0000000000-0000023296.tif
	29/10/2020 16:30:31 | Working on file S2_percentile_UTM_831-0000000000-0000000000.tif
29/10/2020 16:30:32 | Working on tile 52K
29/10/2020 16:30:39 | 12 files to process
	29/10/2020 16:30:39 | Working on file S2_percentile_UTM_771-0000069888-0000046592.tif
	29/10/2020 16:30:40 | Working on file S2_percentile_UTM_771-0000069888-0000023296.tif
	29/10/2020 16:30:40 | Working on file S2_percentile_UTM_771-0000069888-0000000000.tif
	29/10/2020 16:30:41 | Working on file S2_percentile_UTM_771-0000046592-0000046592.tif
	29/10/2020 16:30:42 | Working on file S2_percentile_UTM_771-0000046592-0000023296.tif
	29/10/2020 16:30:43 | Working on file S2_percentile_UTM_771-0000046592-0000000000.tif
	29/10/2020 16:30:44 | Working on file S2_percentile_UTM_771-0000023296-0000046592.tif
	29/10/2020 16:30:45 | Working on file S2_percentile_UTM_771-0000023296-0000023296.tif
	29/10/2020 16:30:46 | Working on file S2_percentile_UTM_771-0000023296-0000000000.tif
	29/10/2020 16:30:47 | Working on file S2_percentile_UTM_771-0000000000-0000046592.tif
	29/10/2020 16:30:48 | Working on file S2_percentile_UTM_771-0000000000-0000023296.tif
	29/10/2020 16:30:50 | Working on file S2_percentile_UTM_771-0000000000-0000000000.tif
29/10/2020 16:30:51 | Working on tile 52L
	52L_UTM.vrt contains no GeoTIFF, attempting 52L.vrt
29/10/2020 16:30:53 | 12 files to process
	29/10/2020 16:30:53 | Working on file S2_percentile_UTM_711-0000069888-0000046592.tif
	29/10/2020 16:30:54 | Working on file S2_percentile_UTM_711-0000069888-0000023296.tif
	29/10/2020 16:30:55 | Working on file S2_percentile_UTM_711-0000069888-0000000000.tif
	29/10/2020 16:30:56 | Working on file S2_percentile_UTM_711-0000046592-0000046592.tif
	29/10/2020 16:30:57 | Working on file S2_percentile_UTM_711-0000046592-0000023296.tif
	29/10/2020 16:30:58 | Working on file S2_percentile_UTM_711-0000046592-0000000000.tif
	29/10/2020 16:30:58 | Working on file S2_percentile_UTM_711-0000023296-0000046592.tif
	29/10/2020 16:30:59 | Working on file S2_percentile_UTM_711-0000023296-0000023296.tif
	29/10/2020 16:31:00 | Working on file S2_percentile_UTM_711-0000023296-0000000000.tif
	29/10/2020 16:31:01 | Working on file S2_percentile_UTM_711-0000000000-0000046592.tif
	29/10/2020 16:31:01 | Working on file S2_percentile_UTM_711-0000000000-0000023296.tif
	29/10/2020 16:31:02 | Working on file S2_percentile_UTM_711-0000000000-0000000000.tif
29/10/2020 16:31:04 | Working on tile 52M
	52M_UTM.vrt contains no GeoTIFF, attempting 52M.vrt
29/10/2020 16:31:06 | 12 files to process
	29/10/2020 16:31:06 | Working on file S2_percentile_30_UTM_651-0000069888-0000046592.tif
	29/10/2020 16:31:08 | Working on file S2_percentile_30_UTM_651-0000069888-0000023296.tif
	29/10/2020 16:31:09 | Working on file S2_percentile_30_UTM_651-0000069888-0000000000.tif
	29/10/2020 16:31:09 | Working on file S2_percentile_30_UTM_651-0000046592-0000046592.tif
	29/10/2020 16:31:10 | Working on file S2_percentile_30_UTM_651-0000046592-0000023296.tif
	29/10/2020 16:31:11 | Working on file S2_percentile_30_UTM_651-0000046592-0000000000.tif
	29/10/2020 16:31:11 | Working on file S2_percentile_30_UTM_651-0000023296-0000046592.tif
	29/10/2020 16:31:12 | Working on file S2_percentile_30_UTM_651-0000023296-0000023296.tif
	29/10/2020 16:31:13 | Working on file S2_percentile_30_UTM_651-0000023296-0000000000.tif
	29/10/2020 16:31:14 | Working on file S2_percentile_30_UTM_651-0000000000-0000046592.tif
	29/10/2020 16:31:14 | Working on file S2_percentile_30_UTM_651-0000000000-0000023296.tif
	29/10/2020 16:31:15 | Working on file S2_percentile_30_UTM_651-0000000000-0000000000.tif
29/10/2020 16:31:16 | Working on tile 52N
	52N_UTM.vrt contains no GeoTIFF, attempting 52N.vrt
29/10/2020 16:31:19 | 10 files to process
	29/10/2020 16:31:19 | Working on file S2_percentile_30_UTM_591-0000069888-0000046592.tif
	29/10/2020 16:31:20 | Working on file S2_percentile_30_UTM_591-0000069888-0000023296.tif
	29/10/2020 16:31:21 | Working on file S2_percentile_30_UTM_591-0000069888-0000000000.tif
	29/10/2020 16:31:22 | Working on file S2_percentile_30_UTM_591-0000046592-0000046592.tif
	29/10/2020 16:31:23 | Working on file S2_percentile_30_UTM_591-0000046592-0000023296.tif
	29/10/2020 16:31:24 | Working on file S2_percentile_30_UTM_591-0000046592-0000000000.tif
	29/10/2020 16:31:25 | Working on file S2_percentile_30_UTM_591-0000023296-0000023296.tif
	29/10/2020 16:31:26 | Working on file S2_percentile_30_UTM_591-0000023296-0000000000.tif
	29/10/2020 16:31:27 | Working on file S2_percentile_30_UTM_591-0000000000-0000023296.tif
	29/10/2020 16:31:28 | Working on file S2_percentile_30_UTM_591-0000000000-0000000000.tif
29/10/2020 16:31:29 | Working on tile 52P
29/10/2020 16:31:35 | 5 files to process
	29/10/2020 16:31:35 | Working on file S2_percentile_30_UTM_531-0000069888-0000023296.tif
	29/10/2020 16:31:36 | Working on file S2_percentile_30_UTM_531-0000069888-0000000000.tif
	29/10/2020 16:31:37 | Working on file S2_percentile_30_UTM_531-0000046592-0000023296.tif
	29/10/2020 16:31:38 | Working on file S2_percentile_30_UTM_531-0000046592-0000000000.tif
	29/10/2020 16:31:39 | Working on file S2_percentile_30_UTM_531-0000023296-0000000000.tif
29/10/2020 16:31:39 | Working on tile 52R
	52R_UTM.vrt contains no GeoTIFF, attempting 52R.vrt
29/10/2020 16:31:42 | 12 files to process
	29/10/2020 16:31:42 | Working on file S2_percentile_30_UTM_411-0000069888-0000046592.tif
	29/10/2020 16:31:43 | Working on file S2_percentile_30_UTM_411-0000069888-0000023296.tif
	29/10/2020 16:31:44 | Working on file S2_percentile_30_UTM_411-0000069888-0000000000.tif
	29/10/2020 16:31:44 | Working on file S2_percentile_30_UTM_411-0000046592-0000046592.tif
	29/10/2020 16:31:45 | Working on file S2_percentile_30_UTM_411-0000046592-0000023296.tif
	29/10/2020 16:31:46 | Working on file S2_percentile_30_UTM_411-0000046592-0000000000.tif
	29/10/2020 16:31:46 | Working on file S2_percentile_30_UTM_411-0000023296-0000046592.tif
	29/10/2020 16:31:47 | Working on file S2_percentile_30_UTM_411-0000023296-0000023296.tif
	29/10/2020 16:31:48 | Working on file S2_percentile_30_UTM_411-0000023296-0000000000.tif
	29/10/2020 16:31:49 | Working on file S2_percentile_30_UTM_411-0000000000-0000046592.tif
	29/10/2020 16:31:49 | Working on file S2_percentile_30_UTM_411-0000000000-0000023296.tif
	29/10/2020 16:31:50 | Working on file S2_percentile_30_UTM_411-0000000000-0000000000.tif
29/10/2020 16:31:51 | Working on tile 52S
29/10/2020 16:31:57 | 12 files to process
	29/10/2020 16:31:57 | Working on file S2_percentile_30_UTM_351-0000069888-0000046592.tif
	29/10/2020 16:31:58 | Working on file S2_percentile_30_UTM_351-0000069888-0000023296.tif
	29/10/2020 16:31:59 | Working on file S2_percentile_30_UTM_351-0000069888-0000000000.tif
	29/10/2020 16:32:00 | Working on file S2_percentile_30_UTM_351-0000046592-0000046592.tif
	29/10/2020 16:32:00 | Working on file S2_percentile_30_UTM_351-0000046592-0000023296.tif
	29/10/2020 16:32:01 | Working on file S2_percentile_30_UTM_351-0000046592-0000000000.tif
	29/10/2020 16:32:02 | Working on file S2_percentile_30_UTM_351-0000023296-0000046592.tif
	29/10/2020 16:32:02 | Working on file S2_percentile_30_UTM_351-0000023296-0000023296.tif
	29/10/2020 16:32:03 | Working on file S2_percentile_30_UTM_351-0000023296-0000000000.tif
	29/10/2020 16:32:04 | Working on file S2_percentile_30_UTM_351-0000000000-0000046592.tif
	29/10/2020 16:32:04 | Working on file S2_percentile_30_UTM_351-0000000000-0000023296.tif
	29/10/2020 16:32:05 | Working on file S2_percentile_30_UTM_351-0000000000-0000000000.tif
29/10/2020 16:32:06 | Working on tile 52T
29/10/2020 16:32:14 | 12 files to process
	29/10/2020 16:32:14 | Working on file S2_percentile_UTM_291-0000069888-0000046592.tif
	29/10/2020 16:32:15 | Working on file S2_percentile_UTM_291-0000069888-0000023296.tif
	29/10/2020 16:32:16 | Working on file S2_percentile_UTM_291-0000069888-0000000000.tif
	29/10/2020 16:32:17 | Working on file S2_percentile_UTM_291-0000046592-0000046592.tif
	29/10/2020 16:32:17 | Working on file S2_percentile_UTM_291-0000046592-0000023296.tif
	29/10/2020 16:32:18 | Working on file S2_percentile_UTM_291-0000046592-0000000000.tif
	29/10/2020 16:32:19 | Working on file S2_percentile_UTM_291-0000023296-0000046592.tif
	29/10/2020 16:32:19 | Working on file S2_percentile_UTM_291-0000023296-0000023296.tif
	29/10/2020 16:32:20 | Working on file S2_percentile_UTM_291-0000023296-0000000000.tif
	29/10/2020 16:32:21 | Working on file S2_percentile_UTM_291-0000000000-0000046592.tif
	29/10/2020 16:32:21 | Working on file S2_percentile_UTM_291-0000000000-0000023296.tif
	29/10/2020 16:32:22 | Working on file S2_percentile_UTM_291-0000000000-0000000000.tif
29/10/2020 16:32:23 | Working on tile 52U
	52U_UTM.vrt contains no GeoTIFF, attempting 52U.vrt
29/10/2020 16:32:26 | 9 files to process
	29/10/2020 16:32:26 | Working on file S2_percentile_30_UTM_231-0000069888-0000046592.tif
	29/10/2020 16:32:26 | Working on file S2_percentile_30_UTM_231-0000069888-0000023296.tif
	29/10/2020 16:32:27 | Working on file S2_percentile_30_UTM_231-0000069888-0000000000.tif
	29/10/2020 16:32:28 | Working on file S2_percentile_30_UTM_231-0000046592-0000023296.tif
	29/10/2020 16:32:28 | Working on file S2_percentile_30_UTM_231-0000046592-0000000000.tif
	29/10/2020 16:32:29 | Working on file S2_percentile_30_UTM_231-0000023296-0000023296.tif
	29/10/2020 16:32:30 | Working on file S2_percentile_30_UTM_231-0000023296-0000000000.tif
	29/10/2020 16:32:31 | Working on file S2_percentile_30_UTM_231-0000000000-0000023296.tif
	29/10/2020 16:32:32 | Working on file S2_percentile_30_UTM_231-0000000000-0000000000.tif
29/10/2020 16:32:33 | Working on tile 52V
29/10/2020 16:32:39 | 8 files to process
	29/10/2020 16:32:39 | Working on file S2_percentile_30_UTM_171-0000069888-0000023296.tif
	29/10/2020 16:32:40 | Working on file S2_percentile_30_UTM_171-0000069888-0000000000.tif
	29/10/2020 16:32:41 | Working on file S2_percentile_30_UTM_171-0000046592-0000023296.tif
	29/10/2020 16:32:43 | Working on file S2_percentile_30_UTM_171-0000046592-0000000000.tif
	29/10/2020 16:32:44 | Working on file S2_percentile_30_UTM_171-0000023296-0000023296.tif
	29/10/2020 16:32:44 | Working on file S2_percentile_30_UTM_171-0000023296-0000000000.tif
	29/10/2020 16:32:45 | Working on file S2_percentile_30_UTM_171-0000000000-0000023296.tif
	29/10/2020 16:32:46 | Working on file S2_percentile_30_UTM_171-0000000000-0000000000.tif
29/10/2020 16:32:46 | Working on tile 52W
29/10/2020 16:32:53 | 8 files to process
	29/10/2020 16:32:53 | Working on file S2_percentile_UTM_111-0000069888-0000023296.tif
	29/10/2020 16:32:54 | Working on file S2_percentile_UTM_111-0000069888-0000000000.tif
	29/10/2020 16:32:54 | Working on file S2_percentile_UTM_111-0000046592-0000023296.tif
	29/10/2020 16:32:55 | Working on file S2_percentile_UTM_111-0000046592-0000000000.tif
	29/10/2020 16:32:56 | Working on file S2_percentile_UTM_111-0000023296-0000023296.tif
	29/10/2020 16:32:56 | Working on file S2_percentile_UTM_111-0000023296-0000000000.tif
	29/10/2020 16:32:57 | Working on file S2_percentile_UTM_111-0000000000-0000023296.tif
	29/10/2020 16:32:58 | Working on file S2_percentile_UTM_111-0000000000-0000000000.tif
29/10/2020 16:32:58 | Working on tile 52X
29/10/2020 16:33:04 | 4 files to process
	29/10/2020 16:33:04 | Working on file S2_percentile_30_UTM_51-0000116480-0000000000.tif
	29/10/2020 16:33:05 | Working on file S2_percentile_30_UTM_51-0000093184-0000000000.tif
	29/10/2020 16:33:06 | Working on file S2_percentile_30_UTM_51-0000069888-0000000000.tif
	29/10/2020 16:33:07 | Working on file S2_percentile_30_UTM_51-0000046592-0000000000.tif
29/10/2020 16:33:07 | Working on tile 53H
	53H_UTM.vrt contains no GeoTIFF, attempting 53H.vrt
29/10/2020 16:33:10 | 9 files to process
	29/10/2020 16:33:10 | Working on file S2_percentile_UTM_892-0000069888-0000046592.tif
	29/10/2020 16:33:11 | Working on file S2_percentile_UTM_892-0000046592-0000046592.tif
	29/10/2020 16:33:11 | Working on file S2_percentile_UTM_892-0000046592-0000023296.tif
	29/10/2020 16:33:13 | Working on file S2_percentile_UTM_892-0000023296-0000046592.tif
	29/10/2020 16:33:13 | Working on file S2_percentile_UTM_892-0000023296-0000023296.tif
	29/10/2020 16:33:14 | Working on file S2_percentile_UTM_892-0000023296-0000000000.tif
	29/10/2020 16:33:15 | Working on file S2_percentile_UTM_892-0000000000-0000046592.tif
	29/10/2020 16:33:16 | Working on file S2_percentile_UTM_892-0000000000-0000023296.tif
	29/10/2020 16:33:17 | Working on file S2_percentile_UTM_892-0000000000-0000000000.tif
29/10/2020 16:33:18 | Working on tile 53J
	53J_UTM.vrt contains no GeoTIFF, attempting 53J.vrt
29/10/2020 16:33:20 | 12 files to process
	29/10/2020 16:33:20 | Working on file S2_percentile_UTM_832-0000069888-0000046592.tif
	29/10/2020 16:33:21 | Working on file S2_percentile_UTM_832-0000069888-0000023296.tif
	29/10/2020 16:33:22 | Working on file S2_percentile_UTM_832-0000069888-0000000000.tif
	29/10/2020 16:33:23 | Working on file S2_percentile_UTM_832-0000046592-0000046592.tif
	29/10/2020 16:33:23 | Working on file S2_percentile_UTM_832-0000046592-0000023296.tif
	29/10/2020 16:33:24 | Working on file S2_percentile_UTM_832-0000046592-0000000000.tif
	29/10/2020 16:33:25 | Working on file S2_percentile_UTM_832-0000023296-0000046592.tif
	29/10/2020 16:33:26 | Working on file S2_percentile_UTM_832-0000023296-0000023296.tif
	29/10/2020 16:33:26 | Working on file S2_percentile_UTM_832-0000023296-0000000000.tif
	29/10/2020 16:33:27 | Working on file S2_percentile_UTM_832-0000000000-0000046592.tif
	29/10/2020 16:33:28 | Working on file S2_percentile_UTM_832-0000000000-0000023296.tif
	29/10/2020 16:33:29 | Working on file S2_percentile_UTM_832-0000000000-0000000000.tif
29/10/2020 16:33:29 | Working on tile 53K
29/10/2020 16:33:35 | 12 files to process
	29/10/2020 16:33:35 | Working on file S2_percentile_UTM_772-0000069888-0000046592.tif
	29/10/2020 16:33:36 | Working on file S2_percentile_UTM_772-0000069888-0000023296.tif
	29/10/2020 16:33:37 | Working on file S2_percentile_UTM_772-0000069888-0000000000.tif
	29/10/2020 16:33:38 | Working on file S2_percentile_UTM_772-0000046592-0000046592.tif
	29/10/2020 16:33:38 | Working on file S2_percentile_UTM_772-0000046592-0000023296.tif
	29/10/2020 16:33:39 | Working on file S2_percentile_UTM_772-0000046592-0000000000.tif
	29/10/2020 16:33:40 | Working on file S2_percentile_UTM_772-0000023296-0000046592.tif
	29/10/2020 16:33:41 | Working on file S2_percentile_UTM_772-0000023296-0000023296.tif
	29/10/2020 16:33:41 | Working on file S2_percentile_UTM_772-0000023296-0000000000.tif
	29/10/2020 16:33:42 | Working on file S2_percentile_UTM_772-0000000000-0000046592.tif
	29/10/2020 16:33:43 | Working on file S2_percentile_UTM_772-0000000000-0000023296.tif
	29/10/2020 16:33:44 | Working on file S2_percentile_UTM_772-0000000000-0000000000.tif
29/10/2020 16:33:44 | Working on tile 53L
29/10/2020 16:33:51 | 12 files to process
	29/10/2020 16:33:51 | Working on file S2_percentile_UTM_712-0000069888-0000046592.tif
	29/10/2020 16:33:52 | Working on file S2_percentile_UTM_712-0000069888-0000023296.tif
	29/10/2020 16:33:53 | Working on file S2_percentile_UTM_712-0000069888-0000000000.tif
	29/10/2020 16:33:53 | Working on file S2_percentile_UTM_712-0000046592-0000046592.tif
	29/10/2020 16:33:54 | Working on file S2_percentile_UTM_712-0000046592-0000023296.tif
	29/10/2020 16:33:55 | Working on file S2_percentile_UTM_712-0000046592-0000000000.tif
	29/10/2020 16:33:55 | Working on file S2_percentile_UTM_712-0000023296-0000046592.tif
	29/10/2020 16:33:56 | Working on file S2_percentile_UTM_712-0000023296-0000023296.tif
	29/10/2020 16:33:57 | Working on file S2_percentile_UTM_712-0000023296-0000000000.tif
	29/10/2020 16:33:58 | Working on file S2_percentile_UTM_712-0000000000-0000046592.tif
	29/10/2020 16:33:59 | Working on file S2_percentile_UTM_712-0000000000-0000023296.tif
	29/10/2020 16:34:00 | Working on file S2_percentile_UTM_712-0000000000-0000000000.tif
29/10/2020 16:34:01 | Working on tile 53M
	53M_UTM.vrt contains no GeoTIFF, attempting 53M.vrt
29/10/2020 16:34:04 | 12 files to process
	29/10/2020 16:34:04 | Working on file S2_percentile_30_UTM_652-0000069888-0000046592.tif
	29/10/2020 16:34:05 | Working on file S2_percentile_30_UTM_652-0000069888-0000023296.tif
	29/10/2020 16:34:05 | Working on file S2_percentile_30_UTM_652-0000069888-0000000000.tif
	29/10/2020 16:34:06 | Working on file S2_percentile_30_UTM_652-0000046592-0000046592.tif
	29/10/2020 16:34:07 | Working on file S2_percentile_30_UTM_652-0000046592-0000023296.tif
	29/10/2020 16:34:08 | Working on file S2_percentile_30_UTM_652-0000046592-0000000000.tif
	29/10/2020 16:34:09 | Working on file S2_percentile_30_UTM_652-0000023296-0000046592.tif
	29/10/2020 16:34:09 | Working on file S2_percentile_30_UTM_652-0000023296-0000023296.tif
	29/10/2020 16:34:10 | Working on file S2_percentile_30_UTM_652-0000023296-0000000000.tif
	29/10/2020 16:34:11 | Working on file S2_percentile_30_UTM_652-0000000000-0000046592.tif
	29/10/2020 16:34:11 | Working on file S2_percentile_30_UTM_652-0000000000-0000023296.tif
	29/10/2020 16:34:12 | Working on file S2_percentile_30_UTM_652-0000000000-0000000000.tif
29/10/2020 16:34:13 | Working on tile 53N
	53N_UTM.vrt contains no GeoTIFF, attempting 53N.vrt
29/10/2020 16:34:15 | 6 files to process
	29/10/2020 16:34:15 | Working on file S2_percentile_30_UTM_592-0000069888-0000023296.tif
	29/10/2020 16:34:16 | Working on file S2_percentile_30_UTM_592-0000069888-0000000000.tif
	29/10/2020 16:34:17 | Working on file S2_percentile_30_UTM_592-0000023296-0000023296.tif
	29/10/2020 16:34:18 | Working on file S2_percentile_30_UTM_592-0000000000-0000046592.tif
	29/10/2020 16:34:19 | Working on file S2_percentile_30_UTM_592-0000000000-0000023296.tif
	29/10/2020 16:34:19 | Working on file S2_percentile_30_UTM_592-0000000000-0000000000.tif
29/10/2020 16:34:20 | Working on tile 53P
29/10/2020 16:34:25 | 4 files to process
	29/10/2020 16:34:25 | Working on file S2_percentile_30_UTM_532-0000069888-0000046592.tif
	29/10/2020 16:34:26 | Working on file S2_percentile_30_UTM_532-0000069888-0000023296.tif
	29/10/2020 16:34:27 | Working on file S2_percentile_30_UTM_532-0000069888-0000000000.tif
	29/10/2020 16:34:28 | Working on file S2_percentile_30_UTM_532-0000046592-0000046592.tif
29/10/2020 16:34:29 | Working on tile 53S
29/10/2020 16:34:35 | 12 files to process
	29/10/2020 16:34:35 | Working on file S2_percentile_30_UTM_352-0000069888-0000046592.tif
	29/10/2020 16:34:36 | Working on file S2_percentile_30_UTM_352-0000069888-0000023296.tif
	29/10/2020 16:34:37 | Working on file S2_percentile_30_UTM_352-0000069888-0000000000.tif
	29/10/2020 16:34:37 | Working on file S2_percentile_30_UTM_352-0000046592-0000046592.tif
	29/10/2020 16:34:38 | Working on file S2_percentile_30_UTM_352-0000046592-0000023296.tif
	29/10/2020 16:34:39 | Working on file S2_percentile_30_UTM_352-0000046592-0000000000.tif
	29/10/2020 16:34:40 | Working on file S2_percentile_30_UTM_352-0000023296-0000046592.tif
	29/10/2020 16:34:40 | Working on file S2_percentile_30_UTM_352-0000023296-0000023296.tif
	29/10/2020 16:34:41 | Working on file S2_percentile_30_UTM_352-0000023296-0000000000.tif
	29/10/2020 16:34:42 | Working on file S2_percentile_30_UTM_352-0000000000-0000046592.tif
	29/10/2020 16:34:42 | Working on file S2_percentile_30_UTM_352-0000000000-0000023296.tif
	29/10/2020 16:34:43 | Working on file S2_percentile_30_UTM_352-0000000000-0000000000.tif
29/10/2020 16:34:44 | Working on tile 53T
29/10/2020 16:34:51 | 12 files to process
	29/10/2020 16:34:51 | Working on file S2_percentile_30_UTM_292-0000069888-0000046592.tif
	29/10/2020 16:34:51 | Working on file S2_percentile_30_UTM_292-0000069888-0000023296.tif
	29/10/2020 16:34:52 | Working on file S2_percentile_30_UTM_292-0000069888-0000000000.tif
	29/10/2020 16:34:53 | Working on file S2_percentile_30_UTM_292-0000046592-0000046592.tif
	29/10/2020 16:34:53 | Working on file S2_percentile_30_UTM_292-0000046592-0000023296.tif
	29/10/2020 16:34:54 | Working on file S2_percentile_30_UTM_292-0000046592-0000000000.tif
	29/10/2020 16:34:55 | Working on file S2_percentile_30_UTM_292-0000023296-0000046592.tif
	29/10/2020 16:34:55 | Working on file S2_percentile_30_UTM_292-0000023296-0000023296.tif
	29/10/2020 16:34:56 | Working on file S2_percentile_30_UTM_292-0000023296-0000000000.tif
	29/10/2020 16:34:57 | Working on file S2_percentile_30_UTM_292-0000000000-0000046592.tif
	29/10/2020 16:34:57 | Working on file S2_percentile_30_UTM_292-0000000000-0000023296.tif
	29/10/2020 16:34:58 | Working on file S2_percentile_30_UTM_292-0000000000-0000000000.tif
29/10/2020 16:34:59 | Working on tile 53U
	53U_UTM.vrt contains no GeoTIFF, attempting 53U.vrt
29/10/2020 16:35:01 | 9 files to process
	29/10/2020 16:35:01 | Working on file S2_percentile_30_UTM_232-0000069888-0000046592.tif
	29/10/2020 16:35:02 | Working on file S2_percentile_30_UTM_232-0000069888-0000023296.tif
	29/10/2020 16:35:02 | Working on file S2_percentile_30_UTM_232-0000069888-0000000000.tif
	29/10/2020 16:35:03 | Working on file S2_percentile_30_UTM_232-0000046592-0000023296.tif
	29/10/2020 16:35:04 | Working on file S2_percentile_30_UTM_232-0000046592-0000000000.tif
	29/10/2020 16:35:05 | Working on file S2_percentile_30_UTM_232-0000023296-0000023296.tif
	29/10/2020 16:35:06 | Working on file S2_percentile_30_UTM_232-0000023296-0000000000.tif
	29/10/2020 16:35:06 | Working on file S2_percentile_30_UTM_232-0000000000-0000023296.tif
	29/10/2020 16:35:07 | Working on file S2_percentile_30_UTM_232-0000000000-0000000000.tif
29/10/2020 16:35:08 | Working on tile 53V
29/10/2020 16:35:13 | 8 files to process
	29/10/2020 16:35:13 | Working on file S2_percentile_30_UTM_172-0000069888-0000023296.tif
	29/10/2020 16:35:14 | Working on file S2_percentile_30_UTM_172-0000069888-0000000000.tif
	29/10/2020 16:35:15 | Working on file S2_percentile_30_UTM_172-0000046592-0000023296.tif
	29/10/2020 16:35:16 | Working on file S2_percentile_30_UTM_172-0000046592-0000000000.tif
	29/10/2020 16:35:16 | Working on file S2_percentile_30_UTM_172-0000023296-0000023296.tif
	29/10/2020 16:35:17 | Working on file S2_percentile_30_UTM_172-0000023296-0000000000.tif
	29/10/2020 16:35:18 | Working on file S2_percentile_30_UTM_172-0000000000-0000023296.tif
	29/10/2020 16:35:18 | Working on file S2_percentile_30_UTM_172-0000000000-0000000000.tif
29/10/2020 16:35:19 | Working on tile 53W
29/10/2020 16:35:25 | 8 files to process
	29/10/2020 16:35:25 | Working on file S2_percentile_UTM_112-0000069888-0000023296.tif
	29/10/2020 16:35:26 | Working on file S2_percentile_UTM_112-0000069888-0000000000.tif
	29/10/2020 16:35:27 | Working on file S2_percentile_UTM_112-0000046592-0000023296.tif
	29/10/2020 16:35:27 | Working on file S2_percentile_UTM_112-0000046592-0000000000.tif
	29/10/2020 16:35:28 | Working on file S2_percentile_UTM_112-0000023296-0000023296.tif
	29/10/2020 16:35:28 | Working on file S2_percentile_UTM_112-0000023296-0000000000.tif
	29/10/2020 16:35:29 | Working on file S2_percentile_UTM_112-0000000000-0000023296.tif
	29/10/2020 16:35:30 | Working on file S2_percentile_UTM_112-0000000000-0000000000.tif
29/10/2020 16:35:30 | Working on tile 53X
29/10/2020 16:35:37 | 4 files to process
	29/10/2020 16:35:37 | Working on file S2_percentile_30_UTM_52-0000116480-0000000000.tif
	29/10/2020 16:35:38 | Working on file S2_percentile_30_UTM_52-0000093184-0000000000.tif
	29/10/2020 16:35:39 | Working on file S2_percentile_30_UTM_52-0000069888-0000000000.tif
	29/10/2020 16:35:39 | Working on file S2_percentile_30_UTM_52-0000046592-0000000000.tif
29/10/2020 16:35:40 | Working on tile 54G
29/10/2020 16:35:46 | 4 files to process
	29/10/2020 16:35:46 | Working on file S2_percentile_30_UTM_953-0000023296-0000046592.tif
	29/10/2020 16:35:46 | Working on file S2_percentile_30_UTM_953-0000023296-0000023296.tif
	29/10/2020 16:35:47 | Working on file S2_percentile_30_UTM_953-0000000000-0000046592.tif
	29/10/2020 16:35:47 | Working on file S2_percentile_30_UTM_953-0000000000-0000023296.tif
29/10/2020 16:35:48 | Working on tile 54H
29/10/2020 16:35:55 | 12 files to process
	29/10/2020 16:35:55 | Working on file S2_percentile_UTM_893-0000069888-0000046592.tif
	29/10/2020 16:35:56 | Working on file S2_percentile_UTM_893-0000069888-0000023296.tif
	29/10/2020 16:35:56 | Working on file S2_percentile_UTM_893-0000069888-0000000000.tif
	29/10/2020 16:35:57 | Working on file S2_percentile_UTM_893-0000046592-0000046592.tif
	29/10/2020 16:35:58 | Working on file S2_percentile_UTM_893-0000046592-0000023296.tif
	29/10/2020 16:35:58 | Working on file S2_percentile_UTM_893-0000046592-0000000000.tif
	29/10/2020 16:35:59 | Working on file S2_percentile_UTM_893-0000023296-0000046592.tif
	29/10/2020 16:36:00 | Working on file S2_percentile_UTM_893-0000023296-0000023296.tif
	29/10/2020 16:36:01 | Working on file S2_percentile_UTM_893-0000023296-0000000000.tif
	29/10/2020 16:36:01 | Working on file S2_percentile_UTM_893-0000000000-0000046592.tif
	29/10/2020 16:36:02 | Working on file S2_percentile_UTM_893-0000000000-0000023296.tif
	29/10/2020 16:36:03 | Working on file S2_percentile_UTM_893-0000000000-0000000000.tif
29/10/2020 16:36:04 | Working on tile 54J
29/10/2020 16:36:11 | 12 files to process
	29/10/2020 16:36:11 | Working on file S2_percentile_30_UTM_833-0000069888-0000046592.tif
	29/10/2020 16:36:11 | Working on file S2_percentile_30_UTM_833-0000069888-0000023296.tif
	29/10/2020 16:36:12 | Working on file S2_percentile_30_UTM_833-0000069888-0000000000.tif
	29/10/2020 16:36:13 | Working on file S2_percentile_30_UTM_833-0000046592-0000046592.tif
	29/10/2020 16:36:13 | Working on file S2_percentile_30_UTM_833-0000046592-0000023296.tif
	29/10/2020 16:36:14 | Working on file S2_percentile_30_UTM_833-0000046592-0000000000.tif
	29/10/2020 16:36:15 | Working on file S2_percentile_30_UTM_833-0000023296-0000046592.tif
	29/10/2020 16:36:16 | Working on file S2_percentile_30_UTM_833-0000023296-0000023296.tif
	29/10/2020 16:36:16 | Working on file S2_percentile_30_UTM_833-0000023296-0000000000.tif
	29/10/2020 16:36:17 | Working on file S2_percentile_30_UTM_833-0000000000-0000046592.tif
	29/10/2020 16:36:18 | Working on file S2_percentile_30_UTM_833-0000000000-0000023296.tif
	29/10/2020 16:36:18 | Working on file S2_percentile_30_UTM_833-0000000000-0000000000.tif
29/10/2020 16:36:19 | Working on tile 54K
29/10/2020 16:36:26 | 12 files to process
	29/10/2020 16:36:26 | Working on file S2_percentile_UTM_773-0000069888-0000046592.tif
	29/10/2020 16:36:27 | Working on file S2_percentile_UTM_773-0000069888-0000023296.tif
	29/10/2020 16:36:28 | Working on file S2_percentile_UTM_773-0000069888-0000000000.tif
	29/10/2020 16:36:29 | Working on file S2_percentile_UTM_773-0000046592-0000046592.tif
	29/10/2020 16:36:29 | Working on file S2_percentile_UTM_773-0000046592-0000023296.tif
	29/10/2020 16:36:30 | Working on file S2_percentile_UTM_773-0000046592-0000000000.tif
	29/10/2020 16:36:31 | Working on file S2_percentile_UTM_773-0000023296-0000046592.tif
	29/10/2020 16:36:32 | Working on file S2_percentile_UTM_773-0000023296-0000023296.tif
	29/10/2020 16:36:32 | Working on file S2_percentile_UTM_773-0000023296-0000000000.tif
	29/10/2020 16:36:33 | Working on file S2_percentile_UTM_773-0000000000-0000046592.tif
	29/10/2020 16:36:34 | Working on file S2_percentile_UTM_773-0000000000-0000023296.tif
	29/10/2020 16:36:35 | Working on file S2_percentile_UTM_773-0000000000-0000000000.tif
29/10/2020 16:36:36 | Working on tile 54L
	54L_UTM.vrt contains no GeoTIFF, attempting 54L.vrt
29/10/2020 16:36:39 | 12 files to process
	29/10/2020 16:36:39 | Working on file S2_percentile_UTM_713-0000069888-0000046592.tif
	29/10/2020 16:36:40 | Working on file S2_percentile_UTM_713-0000069888-0000023296.tif
	29/10/2020 16:36:42 | Working on file S2_percentile_UTM_713-0000069888-0000000000.tif
	29/10/2020 16:36:44 | Working on file S2_percentile_UTM_713-0000046592-0000046592.tif
	29/10/2020 16:36:45 | Working on file S2_percentile_UTM_713-0000046592-0000023296.tif
	29/10/2020 16:36:46 | Working on file S2_percentile_UTM_713-0000046592-0000000000.tif
	29/10/2020 16:36:47 | Working on file S2_percentile_UTM_713-0000023296-0000046592.tif
	29/10/2020 16:36:47 | Working on file S2_percentile_UTM_713-0000023296-0000023296.tif
	29/10/2020 16:36:48 | Working on file S2_percentile_UTM_713-0000023296-0000000000.tif
	29/10/2020 16:36:49 | Working on file S2_percentile_UTM_713-0000000000-0000046592.tif
	29/10/2020 16:36:50 | Working on file S2_percentile_UTM_713-0000000000-0000023296.tif
	29/10/2020 16:36:51 | Working on file S2_percentile_UTM_713-0000000000-0000000000.tif
29/10/2020 16:36:52 | Working on tile 54M
29/10/2020 16:36:58 | 12 files to process
	29/10/2020 16:36:58 | Working on file S2_percentile_30_UTM_653-0000069888-0000046592.tif
	29/10/2020 16:36:59 | Working on file S2_percentile_30_UTM_653-0000069888-0000023296.tif
	29/10/2020 16:37:00 | Working on file S2_percentile_30_UTM_653-0000069888-0000000000.tif
	29/10/2020 16:37:01 | Working on file S2_percentile_30_UTM_653-0000046592-0000046592.tif
	29/10/2020 16:37:01 | Working on file S2_percentile_30_UTM_653-0000046592-0000023296.tif
	29/10/2020 16:37:02 | Working on file S2_percentile_30_UTM_653-0000046592-0000000000.tif
	29/10/2020 16:37:03 | Working on file S2_percentile_30_UTM_653-0000023296-0000046592.tif
	29/10/2020 16:37:04 | Working on file S2_percentile_30_UTM_653-0000023296-0000023296.tif
	29/10/2020 16:37:05 | Working on file S2_percentile_30_UTM_653-0000023296-0000000000.tif
	29/10/2020 16:37:05 | Working on file S2_percentile_30_UTM_653-0000000000-0000046592.tif
	29/10/2020 16:37:06 | Working on file S2_percentile_30_UTM_653-0000000000-0000023296.tif
	29/10/2020 16:37:07 | Working on file S2_percentile_30_UTM_653-0000000000-0000000000.tif
29/10/2020 16:37:08 | Working on tile 54P
29/10/2020 16:37:14 | 4 files to process
	29/10/2020 16:37:14 | Working on file S2_percentile_30_UTM_533-0000069888-0000000000.tif
	29/10/2020 16:37:15 | Working on file S2_percentile_30_UTM_533-0000046592-0000000000.tif
	29/10/2020 16:37:16 | Working on file S2_percentile_30_UTM_533-0000023296-0000046592.tif
	29/10/2020 16:37:16 | Working on file S2_percentile_30_UTM_533-0000000000-0000046592.tif
29/10/2020 16:37:17 | Working on tile 54R
29/10/2020 16:37:22 | 2 files to process
	29/10/2020 16:37:22 | Working on file S2_percentile_30_UTM_413-0000000000-0000023296.tif
	29/10/2020 16:37:23 | Working on file S2_percentile_30_UTM_413-0000000000-0000000000.tif
29/10/2020 16:37:24 | Working on tile 54S
29/10/2020 16:37:30 | 11 files to process
	29/10/2020 16:37:30 | Working on file S2_percentile_30_UTM_353-0000069888-0000023296.tif
	29/10/2020 16:37:31 | Working on file S2_percentile_30_UTM_353-0000069888-0000000000.tif
	29/10/2020 16:37:32 | Working on file S2_percentile_30_UTM_353-0000046592-0000046592.tif
	29/10/2020 16:37:33 | Working on file S2_percentile_30_UTM_353-0000046592-0000023296.tif
	29/10/2020 16:37:33 | Working on file S2_percentile_30_UTM_353-0000046592-0000000000.tif
	29/10/2020 16:37:34 | Working on file S2_percentile_30_UTM_353-0000023296-0000046592.tif
	29/10/2020 16:37:34 | Working on file S2_percentile_30_UTM_353-0000023296-0000023296.tif
	29/10/2020 16:37:35 | Working on file S2_percentile_30_UTM_353-0000023296-0000000000.tif
	29/10/2020 16:37:36 | Working on file S2_percentile_30_UTM_353-0000000000-0000046592.tif
	29/10/2020 16:37:36 | Working on file S2_percentile_30_UTM_353-0000000000-0000023296.tif
	29/10/2020 16:37:37 | Working on file S2_percentile_30_UTM_353-0000000000-0000000000.tif
29/10/2020 16:37:38 | Working on tile 54T
	54T_UTM.vrt contains no GeoTIFF, attempting 54T.vrt
29/10/2020 16:37:41 | 12 files to process
	29/10/2020 16:37:41 | Working on file S2_percentile_30_UTM_293-0000069888-0000046592.tif
	29/10/2020 16:37:41 | Working on file S2_percentile_30_UTM_293-0000069888-0000023296.tif
	29/10/2020 16:37:42 | Working on file S2_percentile_30_UTM_293-0000069888-0000000000.tif
	29/10/2020 16:37:43 | Working on file S2_percentile_30_UTM_293-0000046592-0000046592.tif
	29/10/2020 16:37:43 | Working on file S2_percentile_30_UTM_293-0000046592-0000023296.tif
	29/10/2020 16:37:44 | Working on file S2_percentile_30_UTM_293-0000046592-0000000000.tif
	29/10/2020 16:37:45 | Working on file S2_percentile_30_UTM_293-0000023296-0000046592.tif
	29/10/2020 16:37:46 | Working on file S2_percentile_30_UTM_293-0000023296-0000023296.tif
	29/10/2020 16:37:46 | Working on file S2_percentile_30_UTM_293-0000023296-0000000000.tif
	29/10/2020 16:37:47 | Working on file S2_percentile_30_UTM_293-0000000000-0000046592.tif
	29/10/2020 16:37:48 | Working on file S2_percentile_30_UTM_293-0000000000-0000023296.tif
	29/10/2020 16:37:49 | Working on file S2_percentile_30_UTM_293-0000000000-0000000000.tif
29/10/2020 16:37:49 | Working on tile 54U
29/10/2020 16:37:56 | 8 files to process
	29/10/2020 16:37:56 | Working on file S2_percentile_30_UTM_233-0000069888-0000023296.tif
	29/10/2020 16:37:56 | Working on file S2_percentile_30_UTM_233-0000069888-0000000000.tif
	29/10/2020 16:37:57 | Working on file S2_percentile_30_UTM_233-0000046592-0000023296.tif
	29/10/2020 16:37:58 | Working on file S2_percentile_30_UTM_233-0000046592-0000000000.tif
	29/10/2020 16:37:59 | Working on file S2_percentile_30_UTM_233-0000023296-0000023296.tif
	29/10/2020 16:37:59 | Working on file S2_percentile_30_UTM_233-0000023296-0000000000.tif
	29/10/2020 16:38:00 | Working on file S2_percentile_30_UTM_233-0000000000-0000023296.tif
	29/10/2020 16:38:01 | Working on file S2_percentile_30_UTM_233-0000000000-0000000000.tif
29/10/2020 16:38:02 | Working on tile 54V
29/10/2020 16:38:08 | 8 files to process
	29/10/2020 16:38:08 | Working on file S2_percentile_30_UTM_173-0000069888-0000023296.tif
	29/10/2020 16:38:09 | Working on file S2_percentile_30_UTM_173-0000069888-0000000000.tif
	29/10/2020 16:38:09 | Working on file S2_percentile_30_UTM_173-0000046592-0000023296.tif
	29/10/2020 16:38:10 | Working on file S2_percentile_30_UTM_173-0000046592-0000000000.tif
	29/10/2020 16:38:11 | Working on file S2_percentile_30_UTM_173-0000023296-0000023296.tif
	29/10/2020 16:38:12 | Working on file S2_percentile_30_UTM_173-0000023296-0000000000.tif
	29/10/2020 16:38:12 | Working on file S2_percentile_30_UTM_173-0000000000-0000023296.tif
	29/10/2020 16:38:13 | Working on file S2_percentile_30_UTM_173-0000000000-0000000000.tif
29/10/2020 16:38:14 | Working on tile 54W
29/10/2020 16:38:20 | 8 files to process
	29/10/2020 16:38:20 | Working on file S2_percentile_UTM_113-0000069888-0000023296.tif
	29/10/2020 16:38:21 | Working on file S2_percentile_UTM_113-0000069888-0000000000.tif
	29/10/2020 16:38:22 | Working on file S2_percentile_UTM_113-0000046592-0000023296.tif
	29/10/2020 16:38:22 | Working on file S2_percentile_UTM_113-0000046592-0000000000.tif
	29/10/2020 16:38:23 | Working on file S2_percentile_UTM_113-0000023296-0000023296.tif
	29/10/2020 16:38:23 | Working on file S2_percentile_UTM_113-0000023296-0000000000.tif
	29/10/2020 16:38:24 | Working on file S2_percentile_UTM_113-0000000000-0000023296.tif
	29/10/2020 16:38:25 | Working on file S2_percentile_UTM_113-0000000000-0000000000.tif
29/10/2020 16:38:25 | Working on tile 54X
	54X_UTM.vrt contains no GeoTIFF, attempting 54X.vrt
29/10/2020 16:38:28 | 6 files to process
	29/10/2020 16:38:28 | Working on file S2_percentile_30_UTM_53-0000116480-0000023296.tif
	29/10/2020 16:38:29 | Working on file S2_percentile_30_UTM_53-0000116480-0000000000.tif
	29/10/2020 16:38:29 | Working on file S2_percentile_30_UTM_53-0000093184-0000023296.tif
	29/10/2020 16:38:30 | Working on file S2_percentile_30_UTM_53-0000093184-0000000000.tif
	29/10/2020 16:38:31 | Working on file S2_percentile_30_UTM_53-0000069888-0000000000.tif
	29/10/2020 16:38:31 | Working on file S2_percentile_30_UTM_53-0000046592-0000000000.tif
29/10/2020 16:38:33 | Working on tile 55G
	55G_UTM.vrt contains no GeoTIFF, attempting 55G.vrt
29/10/2020 16:38:35 | 9 files to process
	29/10/2020 16:38:35 | Working on file S2_percentile_30_UTM_954-0000046592-0000046592.tif
	29/10/2020 16:38:36 | Working on file S2_percentile_30_UTM_954-0000046592-0000023296.tif
	29/10/2020 16:38:37 | Working on file S2_percentile_30_UTM_954-0000046592-0000000000.tif
	29/10/2020 16:38:37 | Working on file S2_percentile_30_UTM_954-0000023296-0000046592.tif
	29/10/2020 16:38:38 | Working on file S2_percentile_30_UTM_954-0000023296-0000023296.tif
	29/10/2020 16:38:39 | Working on file S2_percentile_30_UTM_954-0000023296-0000000000.tif
	29/10/2020 16:38:39 | Working on file S2_percentile_30_UTM_954-0000000000-0000046592.tif
	29/10/2020 16:38:40 | Working on file S2_percentile_30_UTM_954-0000000000-0000023296.tif
	29/10/2020 16:38:41 | Working on file S2_percentile_30_UTM_954-0000000000-0000000000.tif
29/10/2020 16:38:42 | Working on tile 55H
	55H_UTM.vrt contains no GeoTIFF, attempting 55H.vrt
29/10/2020 16:38:44 | 12 files to process
	29/10/2020 16:38:44 | Working on file S2_percentile_UTM_894-0000069888-0000046592.tif
	29/10/2020 16:38:45 | Working on file S2_percentile_UTM_894-0000069888-0000023296.tif
	29/10/2020 16:38:46 | Working on file S2_percentile_UTM_894-0000069888-0000000000.tif
	29/10/2020 16:38:46 | Working on file S2_percentile_UTM_894-0000046592-0000046592.tif
	29/10/2020 16:38:47 | Working on file S2_percentile_UTM_894-0000046592-0000023296.tif
	29/10/2020 16:38:48 | Working on file S2_percentile_UTM_894-0000046592-0000000000.tif
	29/10/2020 16:38:49 | Working on file S2_percentile_UTM_894-0000023296-0000046592.tif
	29/10/2020 16:38:49 | Working on file S2_percentile_UTM_894-0000023296-0000023296.tif
	29/10/2020 16:38:50 | Working on file S2_percentile_UTM_894-0000023296-0000000000.tif
	29/10/2020 16:38:51 | Working on file S2_percentile_UTM_894-0000000000-0000046592.tif
	29/10/2020 16:38:52 | Working on file S2_percentile_UTM_894-0000000000-0000023296.tif
	29/10/2020 16:38:52 | Working on file S2_percentile_UTM_894-0000000000-0000000000.tif
29/10/2020 16:38:53 | Working on tile 55J
29/10/2020 16:39:00 | 12 files to process
	29/10/2020 16:39:00 | Working on file S2_percentile_UTM_834-0000069888-0000046592.tif
	29/10/2020 16:39:01 | Working on file S2_percentile_UTM_834-0000069888-0000023296.tif
	29/10/2020 16:39:01 | Working on file S2_percentile_UTM_834-0000069888-0000000000.tif
	29/10/2020 16:39:02 | Working on file S2_percentile_UTM_834-0000046592-0000046592.tif
	29/10/2020 16:39:03 | Working on file S2_percentile_UTM_834-0000046592-0000023296.tif
	29/10/2020 16:39:04 | Working on file S2_percentile_UTM_834-0000046592-0000000000.tif
	29/10/2020 16:39:05 | Working on file S2_percentile_UTM_834-0000023296-0000046592.tif
	29/10/2020 16:39:05 | Working on file S2_percentile_UTM_834-0000023296-0000023296.tif
	29/10/2020 16:39:06 | Working on file S2_percentile_UTM_834-0000023296-0000000000.tif
	29/10/2020 16:39:07 | Working on file S2_percentile_UTM_834-0000000000-0000046592.tif
	29/10/2020 16:39:08 | Working on file S2_percentile_UTM_834-0000000000-0000023296.tif
	29/10/2020 16:39:08 | Working on file S2_percentile_UTM_834-0000000000-0000000000.tif
29/10/2020 16:39:09 | Working on tile 55K
29/10/2020 16:39:17 | 12 files to process
	29/10/2020 16:39:17 | Working on file S2_percentile_UTM_774-0000069888-0000046592.tif
	29/10/2020 16:39:18 | Working on file S2_percentile_UTM_774-0000069888-0000023296.tif
	29/10/2020 16:39:19 | Working on file S2_percentile_UTM_774-0000069888-0000000000.tif
	29/10/2020 16:39:19 | Working on file S2_percentile_UTM_774-0000046592-0000046592.tif
	29/10/2020 16:39:21 | Working on file S2_percentile_UTM_774-0000046592-0000023296.tif
	29/10/2020 16:39:21 | Working on file S2_percentile_UTM_774-0000046592-0000000000.tif
	29/10/2020 16:39:22 | Working on file S2_percentile_UTM_774-0000023296-0000046592.tif
	29/10/2020 16:39:23 | Working on file S2_percentile_UTM_774-0000023296-0000023296.tif
	29/10/2020 16:39:24 | Working on file S2_percentile_UTM_774-0000023296-0000000000.tif
	29/10/2020 16:39:24 | Working on file S2_percentile_UTM_774-0000000000-0000046592.tif
	29/10/2020 16:39:25 | Working on file S2_percentile_UTM_774-0000000000-0000023296.tif
	29/10/2020 16:39:26 | Working on file S2_percentile_UTM_774-0000000000-0000000000.tif
29/10/2020 16:39:27 | Working on tile 55L
29/10/2020 16:39:33 | 12 files to process
	29/10/2020 16:39:33 | Working on file S2_percentile_30_UTM_714-0000069888-0000046592.tif
	29/10/2020 16:39:34 | Working on file S2_percentile_30_UTM_714-0000069888-0000023296.tif
	29/10/2020 16:39:34 | Working on file S2_percentile_30_UTM_714-0000069888-0000000000.tif
	29/10/2020 16:39:35 | Working on file S2_percentile_30_UTM_714-0000046592-0000046592.tif
	29/10/2020 16:39:36 | Working on file S2_percentile_30_UTM_714-0000046592-0000023296.tif
	29/10/2020 16:39:37 | Working on file S2_percentile_30_UTM_714-0000046592-0000000000.tif
	29/10/2020 16:39:38 | Working on file S2_percentile_30_UTM_714-0000023296-0000046592.tif
	29/10/2020 16:39:39 | Working on file S2_percentile_30_UTM_714-0000023296-0000023296.tif
	29/10/2020 16:39:39 | Working on file S2_percentile_30_UTM_714-0000023296-0000000000.tif
	29/10/2020 16:39:40 | Working on file S2_percentile_30_UTM_714-0000000000-0000046592.tif
	29/10/2020 16:39:41 | Working on file S2_percentile_30_UTM_714-0000000000-0000023296.tif
	29/10/2020 16:39:42 | Working on file S2_percentile_30_UTM_714-0000000000-0000000000.tif
29/10/2020 16:39:42 | Working on tile 55M
29/10/2020 16:39:49 | 12 files to process
	29/10/2020 16:39:49 | Working on file S2_percentile_30_UTM_654-0000069888-0000046592.tif
	29/10/2020 16:39:50 | Working on file S2_percentile_30_UTM_654-0000069888-0000023296.tif
	29/10/2020 16:39:50 | Working on file S2_percentile_30_UTM_654-0000069888-0000000000.tif
	29/10/2020 16:39:51 | Working on file S2_percentile_30_UTM_654-0000046592-0000046592.tif
	29/10/2020 16:39:52 | Working on file S2_percentile_30_UTM_654-0000046592-0000023296.tif
	29/10/2020 16:39:53 | Working on file S2_percentile_30_UTM_654-0000046592-0000000000.tif
	29/10/2020 16:39:53 | Working on file S2_percentile_30_UTM_654-0000023296-0000046592.tif
	29/10/2020 16:39:54 | Working on file S2_percentile_30_UTM_654-0000023296-0000023296.tif
	29/10/2020 16:39:55 | Working on file S2_percentile_30_UTM_654-0000023296-0000000000.tif
	29/10/2020 16:39:56 | Working on file S2_percentile_30_UTM_654-0000000000-0000046592.tif
	29/10/2020 16:39:56 | Working on file S2_percentile_30_UTM_654-0000000000-0000023296.tif
	29/10/2020 16:39:57 | Working on file S2_percentile_30_UTM_654-0000000000-0000000000.tif
29/10/2020 16:39:58 | Working on tile 55P
29/10/2020 16:40:04 | 4 files to process
	29/10/2020 16:40:04 | Working on file S2_percentile_30_UTM_534-0000023296-0000023296.tif
	29/10/2020 16:40:05 | Working on file S2_percentile_30_UTM_534-0000023296-0000000000.tif
	29/10/2020 16:40:05 | Working on file S2_percentile_30_UTM_534-0000000000-0000023296.tif
	29/10/2020 16:40:06 | Working on file S2_percentile_30_UTM_534-0000000000-0000000000.tif
29/10/2020 16:40:07 | Working on tile 55T
29/10/2020 16:40:13 | 11 files to process
	29/10/2020 16:40:13 | Working on file S2_percentile_30_UTM_294-0000069888-0000023296.tif
	29/10/2020 16:40:14 | Working on file S2_percentile_30_UTM_294-0000069888-0000000000.tif
	29/10/2020 16:40:15 | Working on file S2_percentile_30_UTM_294-0000046592-0000046592.tif
	29/10/2020 16:40:15 | Working on file S2_percentile_30_UTM_294-0000046592-0000023296.tif
	29/10/2020 16:40:16 | Working on file S2_percentile_30_UTM_294-0000046592-0000000000.tif
	29/10/2020 16:40:17 | Working on file S2_percentile_30_UTM_294-0000023296-0000046592.tif
	29/10/2020 16:40:17 | Working on file S2_percentile_30_UTM_294-0000023296-0000023296.tif
	29/10/2020 16:40:18 | Working on file S2_percentile_30_UTM_294-0000023296-0000000000.tif
	29/10/2020 16:40:19 | Working on file S2_percentile_30_UTM_294-0000000000-0000046592.tif
	29/10/2020 16:40:19 | Working on file S2_percentile_30_UTM_294-0000000000-0000023296.tif
	29/10/2020 16:40:20 | Working on file S2_percentile_30_UTM_294-0000000000-0000000000.tif
29/10/2020 16:40:21 | Working on tile 55U
	55U_UTM.vrt contains no GeoTIFF, attempting 55U.vrt
29/10/2020 16:40:23 | 9 files to process
	29/10/2020 16:40:23 | Working on file S2_percentile_30_UTM_234-0000069888-0000046592.tif
	29/10/2020 16:40:24 | Working on file S2_percentile_30_UTM_234-0000069888-0000023296.tif
	29/10/2020 16:40:25 | Working on file S2_percentile_30_UTM_234-0000069888-0000000000.tif
	29/10/2020 16:40:25 | Working on file S2_percentile_30_UTM_234-0000046592-0000023296.tif
	29/10/2020 16:40:26 | Working on file S2_percentile_30_UTM_234-0000046592-0000000000.tif
	29/10/2020 16:40:27 | Working on file S2_percentile_30_UTM_234-0000023296-0000023296.tif
	29/10/2020 16:40:28 | Working on file S2_percentile_30_UTM_234-0000023296-0000000000.tif
	29/10/2020 16:40:29 | Working on file S2_percentile_30_UTM_234-0000000000-0000023296.tif
	29/10/2020 16:40:30 | Working on file S2_percentile_30_UTM_234-0000000000-0000000000.tif
29/10/2020 16:40:30 | Working on tile 55V
	55V_UTM.vrt contains no GeoTIFF, attempting 55V.vrt
29/10/2020 16:40:33 | 8 files to process
	29/10/2020 16:40:33 | Working on file S2_percentile_30_UTM_174-0000069888-0000023296.tif
	29/10/2020 16:40:34 | Working on file S2_percentile_30_UTM_174-0000069888-0000000000.tif
	29/10/2020 16:40:35 | Working on file S2_percentile_30_UTM_174-0000046592-0000023296.tif
	29/10/2020 16:40:36 | Working on file S2_percentile_30_UTM_174-0000046592-0000000000.tif
	29/10/2020 16:40:36 | Working on file S2_percentile_30_UTM_174-0000023296-0000023296.tif
	29/10/2020 16:40:37 | Working on file S2_percentile_30_UTM_174-0000023296-0000000000.tif
	29/10/2020 16:40:38 | Working on file S2_percentile_30_UTM_174-0000000000-0000023296.tif
	29/10/2020 16:40:39 | Working on file S2_percentile_30_UTM_174-0000000000-0000000000.tif
29/10/2020 16:40:39 | Working on tile 55W
	55W_UTM.vrt contains no GeoTIFF, attempting 55W.vrt
29/10/2020 16:40:43 | 8 files to process
	29/10/2020 16:40:43 | Working on file S2_percentile_30_UTM_114-0000069888-0000023296.tif
	29/10/2020 16:40:43 | Working on file S2_percentile_30_UTM_114-0000069888-0000000000.tif
	29/10/2020 16:40:44 | Working on file S2_percentile_30_UTM_114-0000046592-0000023296.tif
	29/10/2020 16:40:45 | Working on file S2_percentile_30_UTM_114-0000046592-0000000000.tif
	29/10/2020 16:40:45 | Working on file S2_percentile_30_UTM_114-0000023296-0000023296.tif
	29/10/2020 16:40:46 | Working on file S2_percentile_30_UTM_114-0000023296-0000000000.tif
	29/10/2020 16:40:47 | Working on file S2_percentile_30_UTM_114-0000000000-0000023296.tif
	29/10/2020 16:40:47 | Working on file S2_percentile_30_UTM_114-0000000000-0000000000.tif
29/10/2020 16:40:48 | Working on tile 55X
29/10/2020 16:40:55 | 4 files to process
	29/10/2020 16:40:55 | Working on file S2_percentile_30_UTM_54-0000116480-0000000000.tif
	29/10/2020 16:40:56 | Working on file S2_percentile_30_UTM_54-0000093184-0000000000.tif
	29/10/2020 16:40:56 | Working on file S2_percentile_30_UTM_54-0000069888-0000000000.tif
	29/10/2020 16:40:57 | Working on file S2_percentile_30_UTM_54-0000046592-0000000000.tif
29/10/2020 16:40:58 | Working on tile 56H
	56H_UTM.vrt contains no GeoTIFF, attempting 56H.vrt
29/10/2020 16:41:01 | 9 files to process
	29/10/2020 16:41:01 | Working on file S2_percentile_UTM_895-0000069888-0000023296.tif
	29/10/2020 16:41:01 | Working on file S2_percentile_UTM_895-0000069888-0000000000.tif
	29/10/2020 16:41:02 | Working on file S2_percentile_UTM_895-0000046592-0000023296.tif
	29/10/2020 16:41:03 | Working on file S2_percentile_UTM_895-0000046592-0000000000.tif
	29/10/2020 16:41:04 | Working on file S2_percentile_UTM_895-0000023296-0000023296.tif
	29/10/2020 16:41:04 | Working on file S2_percentile_UTM_895-0000023296-0000000000.tif
	29/10/2020 16:41:05 | Working on file S2_percentile_UTM_895-0000000000-0000046592.tif
	29/10/2020 16:41:06 | Working on file S2_percentile_UTM_895-0000000000-0000023296.tif
	29/10/2020 16:41:07 | Working on file S2_percentile_UTM_895-0000000000-0000000000.tif
29/10/2020 16:41:07 | Working on tile 56J
	56J_UTM.vrt contains no GeoTIFF, attempting 56J.vrt
29/10/2020 16:41:10 | 12 files to process
	29/10/2020 16:41:10 | Working on file S2_percentile_30_UTM_835-0000069888-0000046592.tif
	29/10/2020 16:41:11 | Working on file S2_percentile_30_UTM_835-0000069888-0000023296.tif
	29/10/2020 16:41:12 | Working on file S2_percentile_30_UTM_835-0000069888-0000000000.tif
	29/10/2020 16:41:12 | Working on file S2_percentile_30_UTM_835-0000046592-0000046592.tif
	29/10/2020 16:41:13 | Working on file S2_percentile_30_UTM_835-0000046592-0000023296.tif
	29/10/2020 16:41:14 | Working on file S2_percentile_30_UTM_835-0000046592-0000000000.tif
	29/10/2020 16:41:15 | Working on file S2_percentile_30_UTM_835-0000023296-0000046592.tif
	29/10/2020 16:41:15 | Working on file S2_percentile_30_UTM_835-0000023296-0000023296.tif
	29/10/2020 16:41:16 | Working on file S2_percentile_30_UTM_835-0000023296-0000000000.tif
	29/10/2020 16:41:17 | Working on file S2_percentile_30_UTM_835-0000000000-0000046592.tif
	29/10/2020 16:41:18 | Working on file S2_percentile_30_UTM_835-0000000000-0000023296.tif
	29/10/2020 16:41:19 | Working on file S2_percentile_30_UTM_835-0000000000-0000000000.tif
29/10/2020 16:41:19 | Working on tile 56K
29/10/2020 16:41:27 | 12 files to process
	29/10/2020 16:41:27 | Working on file S2_percentile_UTM_775-0000069888-0000046592.tif
	29/10/2020 16:41:28 | Working on file S2_percentile_UTM_775-0000069888-0000023296.tif
	29/10/2020 16:41:29 | Working on file S2_percentile_UTM_775-0000069888-0000000000.tif
	29/10/2020 16:41:30 | Working on file S2_percentile_UTM_775-0000046592-0000046592.tif
	29/10/2020 16:41:30 | Working on file S2_percentile_UTM_775-0000046592-0000023296.tif
	29/10/2020 16:41:31 | Working on file S2_percentile_UTM_775-0000046592-0000000000.tif
	29/10/2020 16:41:32 | Working on file S2_percentile_UTM_775-0000023296-0000046592.tif
	29/10/2020 16:41:32 | Working on file S2_percentile_UTM_775-0000023296-0000023296.tif
	29/10/2020 16:41:33 | Working on file S2_percentile_UTM_775-0000023296-0000000000.tif
	29/10/2020 16:41:34 | Working on file S2_percentile_UTM_775-0000000000-0000046592.tif
	29/10/2020 16:41:35 | Working on file S2_percentile_UTM_775-0000000000-0000023296.tif
	29/10/2020 16:41:36 | Working on file S2_percentile_UTM_775-0000000000-0000000000.tif
29/10/2020 16:41:36 | Working on tile 56L
29/10/2020 16:41:42 | 11 files to process
	29/10/2020 16:41:42 | Working on file S2_percentile_30_UTM_715-0000069888-0000023296.tif
	29/10/2020 16:41:43 | Working on file S2_percentile_30_UTM_715-0000069888-0000000000.tif
	29/10/2020 16:41:44 | Working on file S2_percentile_30_UTM_715-0000046592-0000046592.tif
	29/10/2020 16:41:45 | Working on file S2_percentile_30_UTM_715-0000046592-0000023296.tif
	29/10/2020 16:41:45 | Working on file S2_percentile_30_UTM_715-0000046592-0000000000.tif
	29/10/2020 16:41:46 | Working on file S2_percentile_30_UTM_715-0000023296-0000046592.tif
	29/10/2020 16:41:47 | Working on file S2_percentile_30_UTM_715-0000023296-0000023296.tif
	29/10/2020 16:41:48 | Working on file S2_percentile_30_UTM_715-0000023296-0000000000.tif
	29/10/2020 16:41:48 | Working on file S2_percentile_30_UTM_715-0000000000-0000046592.tif
	29/10/2020 16:41:49 | Working on file S2_percentile_30_UTM_715-0000000000-0000023296.tif
	29/10/2020 16:41:50 | Working on file S2_percentile_30_UTM_715-0000000000-0000000000.tif
29/10/2020 16:41:51 | Working on tile 56M
29/10/2020 16:41:57 | 11 files to process
	29/10/2020 16:41:57 | Working on file S2_percentile_30_UTM_655-0000069888-0000046592.tif
	29/10/2020 16:41:58 | Working on file S2_percentile_30_UTM_655-0000069888-0000023296.tif
	29/10/2020 16:41:59 | Working on file S2_percentile_30_UTM_655-0000069888-0000000000.tif
	29/10/2020 16:41:59 | Working on file S2_percentile_30_UTM_655-0000046592-0000046592.tif
	29/10/2020 16:42:00 | Working on file S2_percentile_30_UTM_655-0000046592-0000023296.tif
	29/10/2020 16:42:01 | Working on file S2_percentile_30_UTM_655-0000046592-0000000000.tif
	29/10/2020 16:42:02 | Working on file S2_percentile_30_UTM_655-0000023296-0000046592.tif
	29/10/2020 16:42:03 | Working on file S2_percentile_30_UTM_655-0000023296-0000023296.tif
	29/10/2020 16:42:04 | Working on file S2_percentile_30_UTM_655-0000023296-0000000000.tif
	29/10/2020 16:42:04 | Working on file S2_percentile_30_UTM_655-0000000000-0000023296.tif
	29/10/2020 16:42:06 | Working on file S2_percentile_30_UTM_655-0000000000-0000000000.tif
29/10/2020 16:42:06 | Working on tile 56N
29/10/2020 16:42:11 | 1 files to process
	29/10/2020 16:42:11 | Working on file S2_percentile_30_UTM_595.tif
29/10/2020 16:42:12 | Working on tile 56P
29/10/2020 16:42:17 | 2 files to process
	29/10/2020 16:42:17 | Working on file S2_percentile_30_UTM_535-0000000000-0000046592.tif
	29/10/2020 16:42:18 | Working on file S2_percentile_30_UTM_535-0000000000-0000023296.tif
29/10/2020 16:42:18 | Working on tile 56T
29/10/2020 16:42:24 | 6 files to process
	29/10/2020 16:42:24 | Working on file S2_percentile_30_UTM_295-0000046592-0000000000.tif
	29/10/2020 16:42:25 | Working on file S2_percentile_30_UTM_295-0000023296-0000023296.tif
	29/10/2020 16:42:26 | Working on file S2_percentile_30_UTM_295-0000023296-0000000000.tif
	29/10/2020 16:42:27 | Working on file S2_percentile_30_UTM_295-0000000000-0000046592.tif
	29/10/2020 16:42:28 | Working on file S2_percentile_30_UTM_295-0000000000-0000023296.tif
	29/10/2020 16:42:28 | Working on file S2_percentile_30_UTM_295-0000000000-0000000000.tif
29/10/2020 16:42:29 | Working on tile 56U
29/10/2020 16:42:35 | 8 files to process
	29/10/2020 16:42:35 | Working on file S2_percentile_30_UTM_235-0000069888-0000023296.tif
	29/10/2020 16:42:36 | Working on file S2_percentile_30_UTM_235-0000069888-0000000000.tif
	29/10/2020 16:42:37 | Working on file S2_percentile_30_UTM_235-0000046592-0000023296.tif
	29/10/2020 16:42:38 | Working on file S2_percentile_30_UTM_235-0000046592-0000000000.tif
	29/10/2020 16:42:38 | Working on file S2_percentile_30_UTM_235-0000023296-0000023296.tif
	29/10/2020 16:42:39 | Working on file S2_percentile_30_UTM_235-0000023296-0000000000.tif
	29/10/2020 16:42:40 | Working on file S2_percentile_30_UTM_235-0000000000-0000023296.tif
	29/10/2020 16:42:41 | Working on file S2_percentile_30_UTM_235-0000000000-0000000000.tif
29/10/2020 16:42:41 | Working on tile 56V
29/10/2020 16:42:48 | 8 files to process
	29/10/2020 16:42:48 | Working on file S2_percentile_30_UTM_175-0000069888-0000023296.tif
	29/10/2020 16:42:49 | Working on file S2_percentile_30_UTM_175-0000069888-0000000000.tif
	29/10/2020 16:42:49 | Working on file S2_percentile_30_UTM_175-0000046592-0000023296.tif
	29/10/2020 16:42:50 | Working on file S2_percentile_30_UTM_175-0000046592-0000000000.tif
	29/10/2020 16:42:51 | Working on file S2_percentile_30_UTM_175-0000023296-0000023296.tif
	29/10/2020 16:42:51 | Working on file S2_percentile_30_UTM_175-0000023296-0000000000.tif
	29/10/2020 16:42:52 | Working on file S2_percentile_30_UTM_175-0000000000-0000023296.tif
	29/10/2020 16:42:53 | Working on file S2_percentile_30_UTM_175-0000000000-0000000000.tif
29/10/2020 16:42:54 | Working on tile 56W
29/10/2020 16:43:00 | 8 files to process
	29/10/2020 16:43:00 | Working on file S2_percentile_UTM_115-0000069888-0000023296.tif
	29/10/2020 16:43:00 | Working on file S2_percentile_UTM_115-0000069888-0000000000.tif
	29/10/2020 16:43:01 | Working on file S2_percentile_UTM_115-0000046592-0000023296.tif
	29/10/2020 16:43:01 | Working on file S2_percentile_UTM_115-0000046592-0000000000.tif
	29/10/2020 16:43:02 | Working on file S2_percentile_UTM_115-0000023296-0000023296.tif
	29/10/2020 16:43:03 | Working on file S2_percentile_UTM_115-0000023296-0000000000.tif
	29/10/2020 16:43:04 | Working on file S2_percentile_UTM_115-0000000000-0000023296.tif
	29/10/2020 16:43:04 | Working on file S2_percentile_UTM_115-0000000000-0000000000.tif
29/10/2020 16:43:05 | Working on tile 56X
29/10/2020 16:43:11 | 3 files to process
	29/10/2020 16:43:11 | Working on file S2_percentile_30_UTM_55-0000116480-0000000000.tif
	29/10/2020 16:43:12 | Working on file S2_percentile_30_UTM_55-0000093184-0000000000.tif
	29/10/2020 16:43:12 | Working on file S2_percentile_30_UTM_55-0000069888-0000000000.tif
29/10/2020 16:43:13 | Working on tile 57F
	57F_UTM.vrt contains no GeoTIFF, attempting 57F.vrt
29/10/2020 16:43:15 | 4 files to process
	29/10/2020 16:43:15 | Working on file S2_percentile_30_UTM_1016-0000069888-0000023296.tif
	29/10/2020 16:43:16 | Working on file S2_percentile_30_UTM_1016-0000069888-0000000000.tif
	29/10/2020 16:43:17 | Working on file S2_percentile_30_UTM_1016-0000046592-0000023296.tif
	29/10/2020 16:43:18 | Working on file S2_percentile_30_UTM_1016-0000046592-0000000000.tif
29/10/2020 16:43:19 | Working on tile 57J
	57J_UTM.vrt contains no GeoTIFF, attempting 57J.vrt
29/10/2020 16:43:21 | 7 files to process
	29/10/2020 16:43:21 | Working on file S2_percentile_30_UTM_836-0000069888-0000000000.tif
	29/10/2020 16:43:22 | Working on file S2_percentile_30_UTM_836-0000046592-0000023296.tif
	29/10/2020 16:43:23 | Working on file S2_percentile_30_UTM_836-0000046592-0000000000.tif
	29/10/2020 16:43:24 | Working on file S2_percentile_30_UTM_836-0000023296-0000023296.tif
	29/10/2020 16:43:25 | Working on file S2_percentile_30_UTM_836-0000023296-0000000000.tif
	29/10/2020 16:43:25 | Working on file S2_percentile_30_UTM_836-0000000000-0000023296.tif
	29/10/2020 16:43:26 | Working on file S2_percentile_30_UTM_836-0000000000-0000000000.tif
29/10/2020 16:43:27 | Working on tile 57K
29/10/2020 16:43:34 | 10 files to process
	29/10/2020 16:43:34 | Working on file S2_percentile_UTM_776-0000069888-0000023296.tif
	29/10/2020 16:43:35 | Working on file S2_percentile_UTM_776-0000069888-0000000000.tif
	29/10/2020 16:43:35 | Working on file S2_percentile_UTM_776-0000046592-0000023296.tif
	29/10/2020 16:43:36 | Working on file S2_percentile_UTM_776-0000046592-0000000000.tif
	29/10/2020 16:43:37 | Working on file S2_percentile_UTM_776-0000023296-0000046592.tif
	29/10/2020 16:43:38 | Working on file S2_percentile_UTM_776-0000023296-0000023296.tif
	29/10/2020 16:43:39 | Working on file S2_percentile_UTM_776-0000023296-0000000000.tif
	29/10/2020 16:43:40 | Working on file S2_percentile_UTM_776-0000000000-0000046592.tif
	29/10/2020 16:43:40 | Working on file S2_percentile_UTM_776-0000000000-0000023296.tif
	29/10/2020 16:43:41 | Working on file S2_percentile_UTM_776-0000000000-0000000000.tif
29/10/2020 16:43:42 | Working on tile 57L
29/10/2020 16:43:50 | 11 files to process
	29/10/2020 16:43:50 | Working on file S2_percentile_30_UTM_716-0000069888-0000046592.tif
	29/10/2020 16:43:51 | Working on file S2_percentile_30_UTM_716-0000069888-0000023296.tif
	29/10/2020 16:43:51 | Working on file S2_percentile_30_UTM_716-0000046592-0000046592.tif
	29/10/2020 16:43:52 | Working on file S2_percentile_30_UTM_716-0000046592-0000023296.tif
	29/10/2020 16:43:53 | Working on file S2_percentile_30_UTM_716-0000046592-0000000000.tif
	29/10/2020 16:43:54 | Working on file S2_percentile_30_UTM_716-0000023296-0000046592.tif
	29/10/2020 16:43:54 | Working on file S2_percentile_30_UTM_716-0000023296-0000023296.tif
	29/10/2020 16:43:55 | Working on file S2_percentile_30_UTM_716-0000023296-0000000000.tif
	29/10/2020 16:43:56 | Working on file S2_percentile_30_UTM_716-0000000000-0000046592.tif
	29/10/2020 16:43:57 | Working on file S2_percentile_30_UTM_716-0000000000-0000023296.tif
	29/10/2020 16:43:57 | Working on file S2_percentile_30_UTM_716-0000000000-0000000000.tif
29/10/2020 16:43:58 | Working on tile 57M
29/10/2020 16:44:04 | 9 files to process
	29/10/2020 16:44:04 | Working on file S2_percentile_30_UTM_656-0000069888-0000046592.tif
	29/10/2020 16:44:05 | Working on file S2_percentile_30_UTM_656-0000069888-0000023296.tif
	29/10/2020 16:44:06 | Working on file S2_percentile_30_UTM_656-0000069888-0000000000.tif
	29/10/2020 16:44:07 | Working on file S2_percentile_30_UTM_656-0000046592-0000046592.tif
	29/10/2020 16:44:07 | Working on file S2_percentile_30_UTM_656-0000046592-0000023296.tif
	29/10/2020 16:44:08 | Working on file S2_percentile_30_UTM_656-0000046592-0000000000.tif
	29/10/2020 16:44:09 | Working on file S2_percentile_30_UTM_656-0000023296-0000046592.tif
	29/10/2020 16:44:10 | Working on file S2_percentile_30_UTM_656-0000023296-0000023296.tif
	29/10/2020 16:44:10 | Working on file S2_percentile_30_UTM_656-0000023296-0000000000.tif
29/10/2020 16:44:11 | Working on tile 57N
29/10/2020 16:44:17 | 4 files to process
	29/10/2020 16:44:17 | Working on file S2_percentile_30_UTM_596-0000023296-0000046592.tif
	29/10/2020 16:44:17 | Working on file S2_percentile_30_UTM_596-0000000000-0000046592.tif
	29/10/2020 16:44:18 | Working on file S2_percentile_30_UTM_596-0000000000-0000023296.tif
	29/10/2020 16:44:19 | Working on file S2_percentile_30_UTM_596-0000000000-0000000000.tif
29/10/2020 16:44:20 | Working on tile 57P
29/10/2020 16:44:26 | 9 files to process
	29/10/2020 16:44:26 | Working on file S2_percentile_30_UTM_536-0000069888-0000046592.tif
	29/10/2020 16:44:27 | Working on file S2_percentile_30_UTM_536-0000069888-0000023296.tif
	29/10/2020 16:44:28 | Working on file S2_percentile_30_UTM_536-0000046592-0000046592.tif
	29/10/2020 16:44:28 | Working on file S2_percentile_30_UTM_536-0000046592-0000023296.tif
	29/10/2020 16:44:29 | Working on file S2_percentile_30_UTM_536-0000023296-0000046592.tif
	29/10/2020 16:44:30 | Working on file S2_percentile_30_UTM_536-0000023296-0000023296.tif
	29/10/2020 16:44:31 | Working on file S2_percentile_30_UTM_536-0000000000-0000046592.tif
	29/10/2020 16:44:32 | Working on file S2_percentile_30_UTM_536-0000000000-0000023296.tif
	29/10/2020 16:44:33 | Working on file S2_percentile_30_UTM_536-0000000000-0000000000.tif
29/10/2020 16:44:34 | Working on tile 57U
29/10/2020 16:44:40 | 8 files to process
	29/10/2020 16:44:40 | Working on file S2_percentile_30_UTM_236-0000069888-0000023296.tif
	29/10/2020 16:44:41 | Working on file S2_percentile_30_UTM_236-0000069888-0000000000.tif
	29/10/2020 16:44:41 | Working on file S2_percentile_30_UTM_236-0000046592-0000023296.tif
	29/10/2020 16:44:42 | Working on file S2_percentile_30_UTM_236-0000046592-0000000000.tif
	29/10/2020 16:44:43 | Working on file S2_percentile_30_UTM_236-0000023296-0000023296.tif
	29/10/2020 16:44:44 | Working on file S2_percentile_30_UTM_236-0000023296-0000000000.tif
	29/10/2020 16:44:45 | Working on file S2_percentile_30_UTM_236-0000000000-0000023296.tif
	29/10/2020 16:44:46 | Working on file S2_percentile_30_UTM_236-0000000000-0000000000.tif
29/10/2020 16:44:47 | Working on tile 57V
	57V_UTM.vrt contains no GeoTIFF, attempting 57V.vrt
29/10/2020 16:44:49 | 8 files to process
	29/10/2020 16:44:49 | Working on file S2_percentile_30_UTM_176-0000069888-0000023296.tif
	29/10/2020 16:44:50 | Working on file S2_percentile_30_UTM_176-0000069888-0000000000.tif
	29/10/2020 16:44:51 | Working on file S2_percentile_30_UTM_176-0000046592-0000023296.tif
	29/10/2020 16:44:52 | Working on file S2_percentile_30_UTM_176-0000046592-0000000000.tif
	29/10/2020 16:44:53 | Working on file S2_percentile_30_UTM_176-0000023296-0000023296.tif
	29/10/2020 16:44:54 | Working on file S2_percentile_30_UTM_176-0000023296-0000000000.tif
	29/10/2020 16:44:54 | Working on file S2_percentile_30_UTM_176-0000000000-0000023296.tif
	29/10/2020 16:44:55 | Working on file S2_percentile_30_UTM_176-0000000000-0000000000.tif
29/10/2020 16:44:56 | Working on tile 57W
	57W_UTM.vrt contains no GeoTIFF, attempting 57W.vrt
29/10/2020 16:44:58 | 8 files to process
	29/10/2020 16:44:58 | Working on file S2_percentile_30_UTM_116-0000069888-0000023296.tif
	29/10/2020 16:44:59 | Working on file S2_percentile_30_UTM_116-0000069888-0000000000.tif
	29/10/2020 16:45:00 | Working on file S2_percentile_30_UTM_116-0000046592-0000023296.tif
	29/10/2020 16:45:01 | Working on file S2_percentile_30_UTM_116-0000046592-0000000000.tif
	29/10/2020 16:45:02 | Working on file S2_percentile_30_UTM_116-0000023296-0000023296.tif
	29/10/2020 16:45:02 | Working on file S2_percentile_30_UTM_116-0000023296-0000000000.tif
	29/10/2020 16:45:03 | Working on file S2_percentile_30_UTM_116-0000000000-0000023296.tif
	29/10/2020 16:45:03 | Working on file S2_percentile_30_UTM_116-0000000000-0000000000.tif
29/10/2020 16:45:04 | Working on tile 57X
	57X_UTM.vrt contains no GeoTIFF, attempting 57X.vrt
29/10/2020 16:45:07 | 3 files to process
	29/10/2020 16:45:07 | Working on file S2_percentile_30_UTM_56-0000116480-0000000000.tif
	29/10/2020 16:45:08 | Working on file S2_percentile_30_UTM_56-0000093184-0000000000.tif
	29/10/2020 16:45:09 | Working on file S2_percentile_30_UTM_56-0000069888-0000000000.tif
29/10/2020 16:45:10 | Working on tile 58F
29/10/2020 16:45:16 | 6 files to process
	29/10/2020 16:45:16 | Working on file S2_percentile_30_UTM_1017-0000069888-0000000000.tif
	29/10/2020 16:45:17 | Working on file S2_percentile_30_UTM_1017-0000046592-0000023296.tif
	29/10/2020 16:45:18 | Working on file S2_percentile_30_UTM_1017-0000023296-0000023296.tif
	29/10/2020 16:45:18 | Working on file S2_percentile_30_UTM_1017-0000023296-0000000000.tif
	29/10/2020 16:45:19 | Working on file S2_percentile_30_UTM_1017-0000000000-0000023296.tif
	29/10/2020 16:45:20 | Working on file S2_percentile_30_UTM_1017-0000000000-0000000000.tif
29/10/2020 16:45:21 | Working on tile 58G
29/10/2020 16:45:27 | 8 files to process
	29/10/2020 16:45:27 | Working on file S2_percentile_30_UTM_957-0000069888-0000046592.tif
	29/10/2020 16:45:28 | Working on file S2_percentile_30_UTM_957-0000069888-0000023296.tif
	29/10/2020 16:45:28 | Working on file S2_percentile_30_UTM_957-0000069888-0000000000.tif
	29/10/2020 16:45:29 | Working on file S2_percentile_30_UTM_957-0000046592-0000046592.tif
	29/10/2020 16:45:29 | Working on file S2_percentile_30_UTM_957-0000046592-0000023296.tif
	29/10/2020 16:45:30 | Working on file S2_percentile_30_UTM_957-0000046592-0000000000.tif
	29/10/2020 16:45:31 | Working on file S2_percentile_30_UTM_957-0000023296-0000046592.tif
	29/10/2020 16:45:32 | Working on file S2_percentile_30_UTM_957-0000023296-0000023296.tif
29/10/2020 16:45:34 | Working on tile 58K
	58K_UTM.vrt contains no GeoTIFF, attempting 58K.vrt
29/10/2020 16:45:37 | 12 files to process
	29/10/2020 16:45:37 | Working on file S2_percentile_30_UTM_777-0000069888-0000046592.tif
	29/10/2020 16:45:39 | Working on file S2_percentile_30_UTM_777-0000069888-0000023296.tif
	29/10/2020 16:45:40 | Working on file S2_percentile_30_UTM_777-0000069888-0000000000.tif
	29/10/2020 16:45:42 | Working on file S2_percentile_30_UTM_777-0000046592-0000046592.tif
	29/10/2020 16:45:43 | Working on file S2_percentile_30_UTM_777-0000046592-0000023296.tif
	29/10/2020 16:45:45 | Working on file S2_percentile_30_UTM_777-0000046592-0000000000.tif
	29/10/2020 16:45:46 | Working on file S2_percentile_30_UTM_777-0000023296-0000046592.tif
	29/10/2020 16:45:47 | Working on file S2_percentile_30_UTM_777-0000023296-0000023296.tif
	29/10/2020 16:45:48 | Working on file S2_percentile_30_UTM_777-0000023296-0000000000.tif
	29/10/2020 16:45:49 | Working on file S2_percentile_30_UTM_777-0000000000-0000046592.tif
	29/10/2020 16:45:50 | Working on file S2_percentile_30_UTM_777-0000000000-0000023296.tif
	29/10/2020 16:45:51 | Working on file S2_percentile_30_UTM_777-0000000000-0000000000.tif
29/10/2020 16:45:52 | Working on tile 58L
29/10/2020 16:45:58 | 12 files to process
	29/10/2020 16:45:58 | Working on file S2_percentile_30_UTM_717-0000069888-0000046592.tif
	29/10/2020 16:45:58 | Working on file S2_percentile_30_UTM_717-0000069888-0000023296.tif
	29/10/2020 16:45:59 | Working on file S2_percentile_30_UTM_717-0000069888-0000000000.tif
	29/10/2020 16:46:00 | Working on file S2_percentile_30_UTM_717-0000046592-0000046592.tif
	29/10/2020 16:46:00 | Working on file S2_percentile_30_UTM_717-0000046592-0000023296.tif
	29/10/2020 16:46:01 | Working on file S2_percentile_30_UTM_717-0000046592-0000000000.tif
	29/10/2020 16:46:02 | Working on file S2_percentile_30_UTM_717-0000023296-0000046592.tif
	29/10/2020 16:46:03 | Working on file S2_percentile_30_UTM_717-0000023296-0000023296.tif
	29/10/2020 16:46:04 | Working on file S2_percentile_30_UTM_717-0000023296-0000000000.tif
	29/10/2020 16:46:04 | Working on file S2_percentile_30_UTM_717-0000000000-0000046592.tif
	29/10/2020 16:46:05 | Working on file S2_percentile_30_UTM_717-0000000000-0000023296.tif
	29/10/2020 16:46:06 | Working on file S2_percentile_30_UTM_717-0000000000-0000000000.tif
29/10/2020 16:46:07 | Working on tile 58M
	58M_UTM.vrt contains no GeoTIFF, attempting 58M.vrt
29/10/2020 16:46:09 | 5 files to process
	29/10/2020 16:46:09 | Working on file S2_percentile_30_UTM_657-0000069888-0000023296.tif
	29/10/2020 16:46:10 | Working on file S2_percentile_30_UTM_657-0000069888-0000000000.tif
	29/10/2020 16:46:10 | Working on file S2_percentile_30_UTM_657-0000046592-0000000000.tif
	29/10/2020 16:46:11 | Working on file S2_percentile_30_UTM_657-0000000000-0000046592.tif
	29/10/2020 16:46:12 | Working on file S2_percentile_30_UTM_657-0000000000-0000023296.tif
29/10/2020 16:46:13 | Working on tile 58N
	58N_UTM.vrt contains no GeoTIFF, attempting 58N.vrt
29/10/2020 16:46:15 | 7 files to process
	29/10/2020 16:46:15 | Working on file S2_percentile_30_UTM_597-0000069888-0000023296.tif
	29/10/2020 16:46:16 | Working on file S2_percentile_30_UTM_597-0000023296-0000046592.tif
	29/10/2020 16:46:17 | Working on file S2_percentile_30_UTM_597-0000023296-0000023296.tif
	29/10/2020 16:46:18 | Working on file S2_percentile_30_UTM_597-0000023296-0000000000.tif
	29/10/2020 16:46:20 | Working on file S2_percentile_30_UTM_597-0000000000-0000046592.tif
	29/10/2020 16:46:20 | Working on file S2_percentile_30_UTM_597-0000000000-0000023296.tif
	29/10/2020 16:46:24 | Working on file S2_percentile_30_UTM_597-0000000000-0000000000.tif
29/10/2020 16:46:25 | Working on tile 58P
	58P_UTM.vrt contains no GeoTIFF, attempting 58P.vrt
29/10/2020 16:46:28 | 10 files to process
	29/10/2020 16:46:28 | Working on file S2_percentile_30_UTM_537-0000069888-0000046592.tif
	29/10/2020 16:46:29 | Working on file S2_percentile_30_UTM_537-0000069888-0000023296.tif
	29/10/2020 16:46:29 | Working on file S2_percentile_30_UTM_537-0000069888-0000000000.tif
	29/10/2020 16:46:30 | Working on file S2_percentile_30_UTM_537-0000046592-0000046592.tif
	29/10/2020 16:46:31 | Working on file S2_percentile_30_UTM_537-0000046592-0000023296.tif
	29/10/2020 16:46:32 | Working on file S2_percentile_30_UTM_537-0000046592-0000000000.tif
	29/10/2020 16:46:32 | Working on file S2_percentile_30_UTM_537-0000023296-0000046592.tif
	29/10/2020 16:46:33 | Working on file S2_percentile_30_UTM_537-0000023296-0000023296.tif
	29/10/2020 16:46:34 | Working on file S2_percentile_30_UTM_537-0000023296-0000000000.tif
	29/10/2020 16:46:36 | Working on file S2_percentile_30_UTM_537-0000000000-0000046592.tif
29/10/2020 16:46:37 | Working on tile 58U
	58U_UTM.vrt contains no GeoTIFF, attempting 58U.vrt
29/10/2020 16:46:39 | 5 files to process
	29/10/2020 16:46:39 | Working on file S2_percentile_30_UTM_237-0000046592-0000000000.tif
	29/10/2020 16:46:40 | Working on file S2_percentile_30_UTM_237-0000023296-0000023296.tif
	29/10/2020 16:46:41 | Working on file S2_percentile_30_UTM_237-0000023296-0000000000.tif
	29/10/2020 16:46:42 | Working on file S2_percentile_30_UTM_237-0000000000-0000023296.tif
	29/10/2020 16:46:42 | Working on file S2_percentile_30_UTM_237-0000000000-0000000000.tif
29/10/2020 16:46:43 | Working on tile 58V
29/10/2020 16:46:49 | 8 files to process
	29/10/2020 16:46:49 | Working on file S2_percentile_30_UTM_177-0000069888-0000023296.tif
	29/10/2020 16:46:50 | Working on file S2_percentile_30_UTM_177-0000069888-0000000000.tif
	29/10/2020 16:46:51 | Working on file S2_percentile_30_UTM_177-0000046592-0000023296.tif
	29/10/2020 16:46:52 | Working on file S2_percentile_30_UTM_177-0000046592-0000000000.tif
	29/10/2020 16:46:53 | Working on file S2_percentile_30_UTM_177-0000023296-0000023296.tif
	29/10/2020 16:46:53 | Working on file S2_percentile_30_UTM_177-0000023296-0000000000.tif
	29/10/2020 16:46:55 | Working on file S2_percentile_30_UTM_177-0000000000-0000023296.tif
	29/10/2020 16:46:56 | Working on file S2_percentile_30_UTM_177-0000000000-0000000000.tif
29/10/2020 16:46:57 | Working on tile 58W
29/10/2020 16:47:03 | 8 files to process
	29/10/2020 16:47:03 | Working on file S2_percentile_UTM_117-0000069888-0000023296.tif
	29/10/2020 16:47:04 | Working on file S2_percentile_UTM_117-0000069888-0000000000.tif
	29/10/2020 16:47:04 | Working on file S2_percentile_UTM_117-0000046592-0000023296.tif
	29/10/2020 16:47:05 | Working on file S2_percentile_UTM_117-0000046592-0000000000.tif
	29/10/2020 16:47:06 | Working on file S2_percentile_UTM_117-0000023296-0000023296.tif
	29/10/2020 16:47:06 | Working on file S2_percentile_UTM_117-0000023296-0000000000.tif
	29/10/2020 16:47:08 | Working on file S2_percentile_UTM_117-0000000000-0000023296.tif
	29/10/2020 16:47:09 | Working on file S2_percentile_UTM_117-0000000000-0000000000.tif
29/10/2020 16:47:10 | Working on tile 59F
29/10/2020 16:47:16 | 6 files to process
	29/10/2020 16:47:16 | Working on file S2_percentile_30_UTM_1018-0000046592-0000023296.tif
	29/10/2020 16:47:17 | Working on file S2_percentile_30_UTM_1018-0000046592-0000000000.tif
	29/10/2020 16:47:18 | Working on file S2_percentile_30_UTM_1018-0000023296-0000023296.tif
	29/10/2020 16:47:18 | Working on file S2_percentile_30_UTM_1018-0000023296-0000000000.tif
	29/10/2020 16:47:19 | Working on file S2_percentile_30_UTM_1018-0000000000-0000023296.tif
	29/10/2020 16:47:20 | Working on file S2_percentile_30_UTM_1018-0000000000-0000000000.tif
29/10/2020 16:47:21 | Working on tile 59G
	59G_UTM.vrt contains no GeoTIFF, attempting 59G.vrt
29/10/2020 16:47:24 | 11 files to process
	29/10/2020 16:47:24 | Working on file S2_percentile_30_UTM_958-0000069888-0000023296.tif
	29/10/2020 16:47:24 | Working on file S2_percentile_30_UTM_958-0000069888-0000000000.tif
	29/10/2020 16:47:25 | Working on file S2_percentile_30_UTM_958-0000046592-0000046592.tif
	29/10/2020 16:47:26 | Working on file S2_percentile_30_UTM_958-0000046592-0000023296.tif
	29/10/2020 16:47:26 | Working on file S2_percentile_30_UTM_958-0000046592-0000000000.tif
	29/10/2020 16:47:27 | Working on file S2_percentile_30_UTM_958-0000023296-0000046592.tif
	29/10/2020 16:47:28 | Working on file S2_percentile_30_UTM_958-0000023296-0000023296.tif
	29/10/2020 16:47:28 | Working on file S2_percentile_30_UTM_958-0000023296-0000000000.tif
	29/10/2020 16:47:29 | Working on file S2_percentile_30_UTM_958-0000000000-0000046592.tif
	29/10/2020 16:47:30 | Working on file S2_percentile_30_UTM_958-0000000000-0000023296.tif
	29/10/2020 16:47:30 | Working on file S2_percentile_30_UTM_958-0000000000-0000000000.tif
29/10/2020 16:47:31 | Working on tile 59H
29/10/2020 16:47:37 | 10 files to process
	29/10/2020 16:47:37 | Working on file S2_percentile_30_UTM_898-0000069888-0000046592.tif
	29/10/2020 16:47:38 | Working on file S2_percentile_30_UTM_898-0000069888-0000023296.tif
	29/10/2020 16:47:40 | Working on file S2_percentile_30_UTM_898-0000069888-0000000000.tif
	29/10/2020 16:47:41 | Working on file S2_percentile_30_UTM_898-0000046592-0000046592.tif
	29/10/2020 16:47:41 | Working on file S2_percentile_30_UTM_898-0000046592-0000023296.tif
	29/10/2020 16:47:42 | Working on file S2_percentile_30_UTM_898-0000046592-0000000000.tif
	29/10/2020 16:47:43 | Working on file S2_percentile_30_UTM_898-0000023296-0000046592.tif
	29/10/2020 16:47:43 | Working on file S2_percentile_30_UTM_898-0000023296-0000023296.tif
	29/10/2020 16:47:44 | Working on file S2_percentile_30_UTM_898-0000000000-0000046592.tif
	29/10/2020 16:47:45 | Working on file S2_percentile_30_UTM_898-0000000000-0000023296.tif
29/10/2020 16:47:46 | Working on tile 59K
	59K_UTM.vrt contains no GeoTIFF, attempting 59K.vrt
29/10/2020 16:47:48 | 11 files to process
	29/10/2020 16:47:48 | Working on file S2_percentile_30_UTM_778-0000069888-0000023296.tif
	29/10/2020 16:47:49 | Working on file S2_percentile_30_UTM_778-0000069888-0000000000.tif
	29/10/2020 16:47:50 | Working on file S2_percentile_30_UTM_778-0000046592-0000046592.tif
	29/10/2020 16:47:51 | Working on file S2_percentile_30_UTM_778-0000046592-0000023296.tif
	29/10/2020 16:47:51 | Working on file S2_percentile_30_UTM_778-0000046592-0000000000.tif
	29/10/2020 16:47:52 | Working on file S2_percentile_30_UTM_778-0000023296-0000046592.tif
	29/10/2020 16:47:53 | Working on file S2_percentile_30_UTM_778-0000023296-0000023296.tif
	29/10/2020 16:47:54 | Working on file S2_percentile_30_UTM_778-0000023296-0000000000.tif
	29/10/2020 16:47:55 | Working on file S2_percentile_30_UTM_778-0000000000-0000046592.tif
	29/10/2020 16:47:57 | Working on file S2_percentile_30_UTM_778-0000000000-0000023296.tif
	29/10/2020 16:47:58 | Working on file S2_percentile_30_UTM_778-0000000000-0000000000.tif
29/10/2020 16:47:58 | Working on tile 59L
	59L_UTM.vrt contains no GeoTIFF, attempting 59L.vrt
29/10/2020 16:48:01 | 8 files to process
	29/10/2020 16:48:01 | Working on file S2_percentile_30_UTM_718-0000069888-0000023296.tif
	29/10/2020 16:48:02 | Working on file S2_percentile_30_UTM_718-0000069888-0000000000.tif
	29/10/2020 16:48:02 | Working on file S2_percentile_30_UTM_718-0000046592-0000023296.tif
	29/10/2020 16:48:03 | Working on file S2_percentile_30_UTM_718-0000046592-0000000000.tif
	29/10/2020 16:48:04 | Working on file S2_percentile_30_UTM_718-0000023296-0000023296.tif
	29/10/2020 16:48:05 | Working on file S2_percentile_30_UTM_718-0000023296-0000000000.tif
	29/10/2020 16:48:05 | Working on file S2_percentile_30_UTM_718-0000000000-0000023296.tif
	29/10/2020 16:48:06 | Working on file S2_percentile_30_UTM_718-0000000000-0000000000.tif
29/10/2020 16:48:07 | Working on tile 59N
29/10/2020 16:48:13 | 8 files to process
	29/10/2020 16:48:13 | Working on file S2_percentile_30_UTM_598-0000046592-0000023296.tif
	29/10/2020 16:48:14 | Working on file S2_percentile_30_UTM_598-0000046592-0000000000.tif
	29/10/2020 16:48:15 | Working on file S2_percentile_30_UTM_598-0000023296-0000046592.tif
	29/10/2020 16:48:15 | Working on file S2_percentile_30_UTM_598-0000023296-0000023296.tif
	29/10/2020 16:48:16 | Working on file S2_percentile_30_UTM_598-0000023296-0000000000.tif
	29/10/2020 16:48:17 | Working on file S2_percentile_30_UTM_598-0000000000-0000046592.tif
	29/10/2020 16:48:17 | Working on file S2_percentile_30_UTM_598-0000000000-0000023296.tif
	29/10/2020 16:48:18 | Working on file S2_percentile_30_UTM_598-0000000000-0000000000.tif
29/10/2020 16:48:19 | Working on tile 59P
29/10/2020 16:48:25 | 11 files to process
	29/10/2020 16:48:25 | Working on file S2_percentile_30_UTM_538-0000069888-0000046592.tif
	29/10/2020 16:48:26 | Working on file S2_percentile_30_UTM_538-0000069888-0000023296.tif
	29/10/2020 16:48:27 | Working on file S2_percentile_30_UTM_538-0000069888-0000000000.tif
	29/10/2020 16:48:28 | Working on file S2_percentile_30_UTM_538-0000046592-0000046592.tif
	29/10/2020 16:48:28 | Working on file S2_percentile_30_UTM_538-0000046592-0000023296.tif
	29/10/2020 16:48:29 | Working on file S2_percentile_30_UTM_538-0000046592-0000000000.tif
	29/10/2020 16:48:30 | Working on file S2_percentile_30_UTM_538-0000023296-0000046592.tif
	29/10/2020 16:48:31 | Working on file S2_percentile_30_UTM_538-0000023296-0000023296.tif
	29/10/2020 16:48:32 | Working on file S2_percentile_30_UTM_538-0000023296-0000000000.tif
	29/10/2020 16:48:32 | Working on file S2_percentile_30_UTM_538-0000000000-0000023296.tif
	29/10/2020 16:48:33 | Working on file S2_percentile_30_UTM_538-0000000000-0000000000.tif
29/10/2020 16:48:34 | Working on tile 59U
29/10/2020 16:48:40 | 5 files to process
	29/10/2020 16:48:40 | Working on file S2_percentile_30_UTM_238-0000046592-0000023296.tif
	29/10/2020 16:48:41 | Working on file S2_percentile_30_UTM_238-0000023296-0000023296.tif
	29/10/2020 16:48:42 | Working on file S2_percentile_30_UTM_238-0000023296-0000000000.tif
	29/10/2020 16:48:43 | Working on file S2_percentile_30_UTM_238-0000000000-0000023296.tif
	29/10/2020 16:48:44 | Working on file S2_percentile_30_UTM_238-0000000000-0000000000.tif
29/10/2020 16:48:45 | Working on tile 59V
29/10/2020 16:48:50 | 8 files to process
	29/10/2020 16:48:50 | Working on file S2_percentile_30_UTM_178-0000069888-0000023296.tif
	29/10/2020 16:48:51 | Working on file S2_percentile_30_UTM_178-0000069888-0000000000.tif
	29/10/2020 16:48:52 | Working on file S2_percentile_30_UTM_178-0000046592-0000023296.tif
	29/10/2020 16:48:52 | Working on file S2_percentile_30_UTM_178-0000046592-0000000000.tif
	29/10/2020 16:48:53 | Working on file S2_percentile_30_UTM_178-0000023296-0000023296.tif
	29/10/2020 16:48:54 | Working on file S2_percentile_30_UTM_178-0000023296-0000000000.tif
	29/10/2020 16:48:55 | Working on file S2_percentile_30_UTM_178-0000000000-0000023296.tif
	29/10/2020 16:48:55 | Working on file S2_percentile_30_UTM_178-0000000000-0000000000.tif
29/10/2020 16:48:56 | Working on tile 59W
29/10/2020 16:49:03 | 8 files to process
	29/10/2020 16:49:03 | Working on file S2_percentile_UTM_118-0000069888-0000023296.tif
	29/10/2020 16:49:04 | Working on file S2_percentile_UTM_118-0000069888-0000000000.tif
	29/10/2020 16:49:04 | Working on file S2_percentile_UTM_118-0000046592-0000023296.tif
	29/10/2020 16:49:05 | Working on file S2_percentile_UTM_118-0000046592-0000000000.tif
	29/10/2020 16:49:05 | Working on file S2_percentile_UTM_118-0000023296-0000023296.tif
	29/10/2020 16:49:06 | Working on file S2_percentile_UTM_118-0000023296-0000000000.tif
	29/10/2020 16:49:07 | Working on file S2_percentile_UTM_118-0000000000-0000023296.tif
	29/10/2020 16:49:07 | Working on file S2_percentile_UTM_118-0000000000-0000000000.tif
29/10/2020 16:49:08 | Working on tile 60G
29/10/2020 16:49:14 | 8 files to process
	29/10/2020 16:49:14 | Working on file S2_percentile_30_UTM_959-0000046592-0000023296.tif
	29/10/2020 16:49:15 | Working on file S2_percentile_30_UTM_959-0000046592-0000000000.tif
	29/10/2020 16:49:16 | Working on file S2_percentile_30_UTM_959-0000023296-0000046592.tif
	29/10/2020 16:49:16 | Working on file S2_percentile_30_UTM_959-0000023296-0000023296.tif
	29/10/2020 16:49:17 | Working on file S2_percentile_30_UTM_959-0000023296-0000000000.tif
	29/10/2020 16:49:18 | Working on file S2_percentile_30_UTM_959-0000000000-0000046592.tif
	29/10/2020 16:49:18 | Working on file S2_percentile_30_UTM_959-0000000000-0000023296.tif
	29/10/2020 16:49:19 | Working on file S2_percentile_30_UTM_959-0000000000-0000000000.tif
29/10/2020 16:49:20 | Working on tile 60H
29/10/2020 16:49:26 | 9 files to process
	29/10/2020 16:49:26 | Working on file S2_percentile_30_UTM_899-0000069888-0000046592.tif
	29/10/2020 16:49:27 | Working on file S2_percentile_30_UTM_899-0000069888-0000023296.tif
	29/10/2020 16:49:28 | Working on file S2_percentile_30_UTM_899-0000069888-0000000000.tif
	29/10/2020 16:49:28 | Working on file S2_percentile_30_UTM_899-0000046592-0000046592.tif
	29/10/2020 16:49:29 | Working on file S2_percentile_30_UTM_899-0000046592-0000023296.tif
	29/10/2020 16:49:30 | Working on file S2_percentile_30_UTM_899-0000046592-0000000000.tif
	29/10/2020 16:49:31 | Working on file S2_percentile_30_UTM_899-0000023296-0000023296.tif
	29/10/2020 16:49:32 | Working on file S2_percentile_30_UTM_899-0000023296-0000000000.tif
	29/10/2020 16:49:32 | Working on file S2_percentile_30_UTM_899-0000000000-0000000000.tif
29/10/2020 16:49:33 | Working on tile 60K
29/10/2020 16:49:39 | 8 files to process
	29/10/2020 16:49:39 | Working on file S2_percentile_30_UTM_779-0000046592-0000046592.tif
	29/10/2020 16:49:40 | Working on file S2_percentile_30_UTM_779-0000046592-0000023296.tif
	29/10/2020 16:49:41 | Working on file S2_percentile_30_UTM_779-0000023296-0000046592.tif
	29/10/2020 16:49:42 | Working on file S2_percentile_30_UTM_779-0000023296-0000023296.tif
	29/10/2020 16:49:42 | Working on file S2_percentile_30_UTM_779-0000023296-0000000000.tif
	29/10/2020 16:49:43 | Working on file S2_percentile_30_UTM_779-0000000000-0000046592.tif
	29/10/2020 16:49:44 | Working on file S2_percentile_30_UTM_779-0000000000-0000023296.tif
	29/10/2020 16:49:45 | Working on file S2_percentile_30_UTM_779-0000000000-0000000000.tif
29/10/2020 16:49:45 | Working on tile 60L
29/10/2020 16:49:52 | 5 files to process
	29/10/2020 16:49:52 | Working on file S2_percentile_30_UTM_719-0000069888-0000046592.tif
	29/10/2020 16:49:53 | Working on file S2_percentile_30_UTM_719-0000069888-0000023296.tif
	29/10/2020 16:49:54 | Working on file S2_percentile_30_UTM_719-0000069888-0000000000.tif
	29/10/2020 16:49:54 | Working on file S2_percentile_30_UTM_719-0000046592-0000046592.tif
	29/10/2020 16:49:55 | Working on file S2_percentile_30_UTM_719-0000000000-0000046592.tif
29/10/2020 16:49:56 | Working on tile 60M
	60M_UTM.vrt contains no GeoTIFF, attempting 60M.vrt
29/10/2020 16:49:58 | 2 files to process
	29/10/2020 16:49:58 | Working on file S2_percentile_30_UTM_659-0000069888-0000046592.tif
	29/10/2020 16:49:59 | Working on file S2_percentile_30_UTM_659-0000069888-0000023296.tif
29/10/2020 16:50:00 | Working on tile 60U
29/10/2020 16:50:07 | 6 files to process
	29/10/2020 16:50:07 | Working on file S2_percentile_30_UTM_239-0000046592-0000023296.tif
	29/10/2020 16:50:08 | Working on file S2_percentile_30_UTM_239-0000046592-0000000000.tif
	29/10/2020 16:50:08 | Working on file S2_percentile_30_UTM_239-0000023296-0000023296.tif
	29/10/2020 16:50:09 | Working on file S2_percentile_30_UTM_239-0000023296-0000000000.tif
	29/10/2020 16:50:09 | Working on file S2_percentile_30_UTM_239-0000000000-0000023296.tif
	29/10/2020 16:50:10 | Working on file S2_percentile_30_UTM_239-0000000000-0000000000.tif
29/10/2020 16:50:11 | Working on tile 60V
29/10/2020 16:50:17 | 8 files to process
	29/10/2020 16:50:17 | Working on file S2_percentile_30_UTM_179-0000069888-0000023296.tif
	29/10/2020 16:50:18 | Working on file S2_percentile_30_UTM_179-0000069888-0000000000.tif
	29/10/2020 16:50:19 | Working on file S2_percentile_30_UTM_179-0000046592-0000023296.tif
	29/10/2020 16:50:20 | Working on file S2_percentile_30_UTM_179-0000046592-0000000000.tif
	29/10/2020 16:50:21 | Working on file S2_percentile_30_UTM_179-0000023296-0000023296.tif
	29/10/2020 16:50:22 | Working on file S2_percentile_30_UTM_179-0000023296-0000000000.tif
	29/10/2020 16:50:23 | Working on file S2_percentile_30_UTM_179-0000000000-0000023296.tif
	29/10/2020 16:50:24 | Working on file S2_percentile_30_UTM_179-0000000000-0000000000.tif
29/10/2020 16:50:25 | Working on tile 60W
	60W_UTM.vrt contains no GeoTIFF, attempting 60W.vrt
29/10/2020 16:50:27 | 8 files to process
	29/10/2020 16:50:27 | Working on file S2_percentile_30_UTM_119-0000069888-0000023296.tif
	29/10/2020 16:50:28 | Working on file S2_percentile_30_UTM_119-0000069888-0000000000.tif
	29/10/2020 16:50:29 | Working on file S2_percentile_30_UTM_119-0000046592-0000023296.tif
	29/10/2020 16:50:30 | Working on file S2_percentile_30_UTM_119-0000046592-0000000000.tif
	29/10/2020 16:50:31 | Working on file S2_percentile_30_UTM_119-0000023296-0000023296.tif
	29/10/2020 16:50:31 | Working on file S2_percentile_30_UTM_119-0000023296-0000000000.tif
	29/10/2020 16:50:32 | Working on file S2_percentile_30_UTM_119-0000000000-0000023296.tif
	29/10/2020 16:50:32 | Working on file S2_percentile_30_UTM_119-0000000000-0000000000.tif
CPU times: user 2min 16s, sys: 37.5 s, total: 2min 54s
Wall time: 2h 14min 53s