diff --git a/apps/cli/executables/pexable/deliver/delivery/destinations/interfaces.py b/apps/cli/executables/pexable/deliver/delivery/destinations/interfaces.py
index a5fadc1e3b6e6311357e6bbb4311a6bf9222e3c2..cb4b73c0752fbb7765ec776bb16771504b872c3d 100644
--- a/apps/cli/executables/pexable/deliver/delivery/destinations/interfaces.py
+++ b/apps/cli/executables/pexable/deliver/delivery/destinations/interfaces.py
@@ -30,6 +30,11 @@ class ProductMetadataIF(ABC):
     def to_path(self) -> str:
         pass
 
+    @property
+    @abstractmethod
+    def pipeline_spec(self) -> str:
+        pass
+
 
 class DeliveryContextIF(ABC):
     """
@@ -209,7 +214,6 @@ class SpooledProduct(ABC):
     def __init__(self, path: pathlib.Path):
         self.path = path
 
-
     @property
     @abstractmethod
     def metadata(self) -> ProductMetadataIF:
diff --git a/apps/cli/executables/pexable/deliver/delivery/products.py b/apps/cli/executables/pexable/deliver/delivery/products.py
index 890287f81db3393a19a45e249589700f94b967f0..152bde9efefb64cc41350ed97fd53a45f0256d65 100644
--- a/apps/cli/executables/pexable/deliver/delivery/products.py
+++ b/apps/cli/executables/pexable/deliver/delivery/products.py
@@ -198,6 +198,8 @@ class ArchiveProduct(SpooledProduct):
 
 
 class RestoreProduct(SpooledProduct):
+    WEBLOG_REGEX = "pipeline-.*"
+
     def __init__(self, path: pathlib.Path, metadata: ProductMetadataIF):
         super().__init__(path)
         self._metadata = metadata
@@ -206,8 +208,53 @@ class RestoreProduct(SpooledProduct):
     def metadata(self) -> ProductMetadataIF:
         return self._metadata
 
+    @classmethod
+    def _get_delivered_filename(cls, file: pathlib.Path, is_weblog: bool, subdir: str) -> str:
+        """Get the filename to use when delivering the given file
+
+        :param file: The file to be delivered
+        :param is_weblog: Whether or not `file` is a weblog directory
+        :param subdir: The subdirectory of the restore's spool in which `file` was found
+        :return: The name to use for `file` when it's delivered
+        """
+        filename = file.name
+        # Rename the weblogs
+        if is_weblog:
+            if subdir == "products":
+                filename = "weblog_calibration"
+            elif subdir == "working":
+                filename = "weblog_restore"
+        return filename
+
     def deliver_to(self, destination: Destination):
-        return super().deliver_to(destination)
+        # Locations of to-be-delivered items in an EVLA restore
+        # * `*flagtemplate.txt` and `*flagtsystemplate.txt` should be in `./rawdata`, **need to verify this**
+        SUBDIR_FILENAME_REGEXES = {
+            "products": [
+                "casa_pipescript\\.py",
+                "casa_commands\\.log",
+                ".*\\.ms",
+                self.WEBLOG_REGEX,
+                "PPR_calibration\\.xml",
+            ],
+            "working": [
+                "flux\\.csv",
+                "casa_piperestorescript\\.py",
+                self.WEBLOG_REGEX,
+                "PPR_restore\\.xml",
+            ],
+            "rawdata": [".*calapply\\.txt", ".*caltables\\.tgz", ".*flagtemplate\\.txt", ".*flagtsystemplate\\.txt"],
+        }
+        pipedir = destination / self.metadata.project / f"{self.metadata.pipeline_spec}"
+
+        for subdir, filename_regexes in SUBDIR_FILENAME_REGEXES.items():
+            for file in (self.path / subdir).iterdir():
+                for filename_regex in filename_regexes:
+                    if re.match(filename_regex, file.name) is not None:
+                        pipedir.add_path_entry(
+                            file, self._get_delivered_filename(file, filename_regex == self.WEBLOG_REGEX, subdir)
+                        )
+                        break
 
 
 class Calibration(SpooledProduct):
diff --git a/apps/cli/executables/pexable/deliver/test/test_products.py b/apps/cli/executables/pexable/deliver/test/test_products.py
index d8df98f7c0178e99a0cff786b6b84b85ff302705..0d26b2c7b30d7a69c2c738ddea3ee5f370e7f944 100644
--- a/apps/cli/executables/pexable/deliver/test/test_products.py
+++ b/apps/cli/executables/pexable/deliver/test/test_products.py
@@ -16,6 +16,7 @@
 # You should have received a copy of the GNU General Public License
 # along with Workspaces.  If not, see <https://www.gnu.org/licenses/>.
 import pathlib
+from collections import Counter, defaultdict
 from typing import Dict
 
 from delivery.destinations.interfaces import (
@@ -23,15 +24,13 @@ from delivery.destinations.interfaces import (
     Destination,
     DestinationTempFile,
 )
-from delivery.products import Calibration
-
-from test_api import dest_dir
+from delivery.products import Calibration, ProductMetadata, RestoreProduct
 
 
 class FakeDestination(Destination):
     def __init__(self):
         super().__init__(None)
-        self.files_added = {}
+        self.files_added: dict[str, pathlib.Path] = {}
 
     def add_file(self, file: pathlib.Path, relative_path: str):
         self.files_added[relative_path] = file
@@ -43,7 +42,7 @@ class FakeDestination(Destination):
         return {}
 
 
-def test_web_calibration(tmpdir: pathlib.Path, dest_dir: pathlib.Path, resource_path_root):
+def test_web_calibration(resource_path_root):
     calibration = Calibration(resource_path_root / "calibrations" / "foo")
 
     # first, let's make sure we parsed the metadata properly
@@ -79,3 +78,53 @@ def test_web_calibration(tmpdir: pathlib.Path, dest_dir: pathlib.Path, resource_
     # did we not get any unexpected files?
     for file in actual_files:
         assert file in expected_files
+
+
+def test_restore(resource_path_root):
+    TEST_RESTORE_METADATA = ProductMetadata("EVLA", "17B-403", "restore", None, None, "60468.635023148265")
+    restore = RestoreProduct(resource_path_root / "restores" / "tmpfpjeptku", TEST_RESTORE_METADATA)
+
+    # OK now let's make sure that we're delivering properly
+    destination = FakeDestination()
+    restore.deliver_to(destination)
+
+    deliver_rel_path_root = f"{TEST_RESTORE_METADATA.project_code}/{TEST_RESTORE_METADATA.pipeline_spec}"
+    # Just check the file counts in each dir since they contain a lot of files
+    expected_dirs_to_file_counts = Counter(
+        {
+            f"{deliver_rel_path_root}/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms": 119,
+            f"{deliver_rel_path_root}/weblog_calibration": 1495,
+            f"{deliver_rel_path_root}/weblog_restore": 90,
+        }
+    )
+    expected_files = {
+        f"{deliver_rel_path_root}/PPR_restore.xml",
+        f"{deliver_rel_path_root}/PPR_restore.xml",
+        f"{deliver_rel_path_root}/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.calapply.txt",
+        f"{deliver_rel_path_root}/casa_piperestorescript.py",
+        f"{deliver_rel_path_root}/casa_pipescript.py",
+        f"{deliver_rel_path_root}/casa_commands.log",
+        f"{deliver_rel_path_root}/PPR_calibration.xml",
+        f"{deliver_rel_path_root}/flux.csv",
+        f"{deliver_rel_path_root}/unknown.session_1.caltables.tgz",
+    }
+    actual_files = destination.files_added
+
+    # did we get all the expected files?
+    for file in expected_files:
+        assert file in actual_files
+    actual_dirs_to_file_counts = Counter()
+    actual_dirs_to_files = defaultdict(list)
+    for filename, filepath in actual_files.items():
+        for dir, _ in expected_dirs_to_file_counts.items():
+            if filename.startswith(f"{dir}/") and filepath.is_file():
+                actual_dirs_to_file_counts[dir] += 1
+                actual_dirs_to_files[dir].append(filename)
+    pathlib.Path("actual_dirs").write_text(str(actual_dirs_to_files.items()))
+    assert actual_dirs_to_file_counts == expected_dirs_to_file_counts
+
+    # did we not get any unexpected files?
+    for file in actual_files:
+        assert file in expected_files or any(
+            file.startswith(expected_dir) for expected_dir in expected_dirs_to_file_counts.keys()
+        )
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/PPR.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/PPR.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/deliver.err b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/deliver.err
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/deliver.out b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/deliver.out
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/envoy.err b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/envoy.err
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/envoy.out b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/envoy.out
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/fetch.err b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/fetch.err
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/fetch.out b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/fetch.out
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/metadata.json b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/metadata.json
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.calapply.txt b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.calapply.txt
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions.tgz b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions.tgz
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ANTENNA/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_CALATMOSPHERE/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/ASDM_RECEIVER/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/CALDEVICE/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/DATA_DESCRIPTION/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FEED/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FIELD/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/FLAG_CMD/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/HISTORY/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/OBSERVATION/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POINTING/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/POLARIZATION/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/PROCESSOR/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SOURCE/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SPECTRAL_WINDOW/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/STATE/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSCAL/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/SYSPOWER/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/WEATHER/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f1
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f10 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f10
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f11 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f11
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f12 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f12
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f13 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f13
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f14 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f14
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f15 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f15
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f16 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f16
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f17 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f17
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f17_TSM1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f17_TSM1
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f18 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f18
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f19 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f19
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f19_TSM0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f19_TSM0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f2 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f2
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f20 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f20
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f20_TSM1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f20_TSM1
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f21 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f21
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f21_TSM1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f21_TSM1
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f22 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f22
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f22_TSM1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f22_TSM1
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f23 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f23
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f23_TSM1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f23_TSM1
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f3 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f3
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f4 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f4
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f5 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f5
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f6 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f6
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f7 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f7
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f8 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f8
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f9 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.f9
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/PPR_calibration.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/PPR_calibration.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/casa_commands.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/casa_commands.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/casa_piperestorescript.py b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/casa_piperestorescript.py
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/casa_pipescript.py b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/casa_pipescript.py
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/casa-20171009-163125.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/casa-20171009-163125.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/casa_commands.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/casa_commands.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/casa_pipescript.py b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/casa_pipescript.py
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/index.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/index.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/bootstrap-theme.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/bootstrap-theme.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/bootstrap-theme.css.map b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/bootstrap-theme.css.map
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/bootstrap-theme.min.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/bootstrap-theme.min.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/bootstrap.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/bootstrap.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/bootstrap.css.map b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/bootstrap.css.map
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/bootstrap.min.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/bootstrap.min.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/bootswatch.less b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/bootswatch.less
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/font-awesome.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/font-awesome.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/font-awesome.min.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/font-awesome.min.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/paper-pipeline.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/paper-pipeline.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/paper-pipeline.min.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/paper-pipeline.min.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/pipeline.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/pipeline.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/pipeline.min.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/pipeline.min.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/select2-bootstrap.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/select2-bootstrap.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/select2-spinner.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/select2-spinner.gif
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/select2.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/select2.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/select2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/select2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/select2x2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/select2x2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/variables.less b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/css/variables.less
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/.gitattributes b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/.gitattributes
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/CHANGELOG.md b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/CHANGELOG.md
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/README.md b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/README.md
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/1_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/1_b.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/1_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/1_s.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/2_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/2_b.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/2_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/2_s.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/3_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/3_b.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/3_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/3_s.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/4_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/4_b.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/4_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/4_s.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/5_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/5_b.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/5_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/5_s.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/ajax.txt b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/ajax.txt
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/iframe.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/iframe.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/index.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/index.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/lib/jquery-1.10.1.min.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/lib/jquery-1.10.1.min.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/lib/jquery-1.9.0.min.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/lib/jquery-1.9.0.min.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/lib/jquery.mousewheel-3.0.6.pack.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/lib/jquery.mousewheel-3.0.6.pack.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/blank.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/blank.gif
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_loading.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_loading.gif
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_loading@2x.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_loading@2x.gif
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_overlay.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_overlay.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_sprite.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_sprite.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_sprite@2x.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_sprite@2x.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/fancybox_buttons.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/fancybox_buttons.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-buttons.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-buttons.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-buttons.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-buttons.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-media.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-media.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-thumbs.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-thumbs.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-thumbs.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-thumbs.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/jquery.fancybox.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/jquery.fancybox.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/jquery.fancybox.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/jquery.fancybox.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/jquery.fancybox.pack.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/jquery.fancybox.pack.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/sprite.psd b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/sprite.psd
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/.gitattributes b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/.gitattributes
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/CHANGELOG.md b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/CHANGELOG.md
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/README.md b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/README.md
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/1_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/1_b.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/1_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/1_s.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/2_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/2_b.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/2_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/2_s.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/3_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/3_b.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/3_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/3_s.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/4_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/4_b.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/4_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/4_s.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/5_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/5_b.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/5_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/5_s.jpg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/ajax.txt b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/ajax.txt
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/iframe.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/iframe.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/index.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/demo/index.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/lib/jquery-1.10.1.min.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/lib/jquery-1.10.1.min.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/lib/jquery-1.9.0.min.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/lib/jquery-1.9.0.min.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/lib/jquery.mousewheel-3.0.6.pack.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/lib/jquery.mousewheel-3.0.6.pack.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/blank.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/blank.gif
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_loading.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_loading.gif
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_loading@2x.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_loading@2x.gif
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_overlay.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_overlay.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_sprite.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_sprite.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_sprite@2x.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_sprite@2x.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/fancybox_buttons.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/fancybox_buttons.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-buttons.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-buttons.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-buttons.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-buttons.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-media.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-media.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-thumbs.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-thumbs.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-thumbs.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-thumbs.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/jquery.fancybox.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/jquery.fancybox.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/jquery.fancybox.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/jquery.fancybox.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/jquery.fancybox.pack.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/source/jquery.fancybox.pack.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/sprite.psd b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fancybox/sprite.psd
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/FontAwesome.otf b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/FontAwesome.otf
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/fontawesome-webfont.eot b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/fontawesome-webfont.eot
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/fontawesome-webfont.svg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/fontawesome-webfont.svg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/fontawesome-webfont.ttf b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/fontawesome-webfont.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/fontawesome-webfont.woff b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/fontawesome-webfont.woff
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.eot b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.eot
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.svg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.svg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.ttf b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.woff b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.woff
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.woff2 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.woff2
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/gradient.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/gradient.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/img/ajax-loader.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/img/ajax-loader.gif
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/img/almalogo.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/img/almalogo.gif
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/img/almalogo.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/img/almalogo.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/img/evlalogo.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/img/evlalogo.gif
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/img/evlalogo.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/img/evlalogo.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/img/logo.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/img/logo.gif
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/img/vlalogo.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/img/vlalogo.gif
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/img/vlalogo.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/img/vlalogo.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/bootstrap.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/bootstrap.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/bootstrap.min.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/bootstrap.min.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/d3.min.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/d3.min.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/history.adapter.jquery.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/history.adapter.jquery.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/history.adapter.native.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/history.adapter.native.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/history.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/history.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/holder.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/holder.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/jquery-2.1.3.min.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/jquery-2.1.3.min.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/npm.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/npm.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/pipeline.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/pipeline.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/purl-2.2.1.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/purl-2.2.1.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/select2.min.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/js/select2.min.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/plotgroup.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/resources/plotgroup.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/azel.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/azel.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/el_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/el_vs_time.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/field_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/field_vs_time.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/intent_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/intent_vs_time.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/listobs.txt b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/listobs.txt
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/plotants.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/plotants.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/plotants_polarlog.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/plotants_polarlog.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-1_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-1_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-1.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-1.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-2.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-2.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-3.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-3.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-4.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-4.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-6.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-6.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/azel.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/azel.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/el_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/el_vs_time.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/field_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/field_vs_time.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/intent_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/intent_vs_time.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/plotants.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/plotants.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/plotants_polarlog.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/plotants_polarlog.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/weather.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/weather.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/weather.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/weather.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage1/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage1/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage1/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage1/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage1/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage1/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage10/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage10/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage10/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage10/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage10/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage10/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_amp0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_amp0_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_amp1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_amp1_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_amp2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_amp2_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_amp3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_amp3_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_amp4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_amp4_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_amp5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_amp5_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_amp6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_amp6_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_phase0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_phase0_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_phase1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_phase1_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_phase2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_phase2_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_phase3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_phase3_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_phase4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_phase4_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_phase5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_phase5_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_phase6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPcal_phase6_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase0_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase1_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase2_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase3_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase4_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase5_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase6_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/bpsolamp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/bpsolamp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/bpsolphase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/bpsolphase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/delay0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/delay0_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/delay1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/delay1_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/delay2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/delay2_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/delay3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/delay3_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/delay4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/delay4_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/delay5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/delay5_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/delay6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/delay6_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/delays-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/delays-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/junk.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/junk.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/phasegain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/phasegain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/semifinalcalibrated_-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/semifinalcalibrated_-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp0_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp1_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp2_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp3_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp4_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp5_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp6_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase0_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase1_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase2_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase3_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase4_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase5_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase6_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase0_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase1_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase2_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase3_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase4_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase5_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase6_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/delay0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/delay0_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/delay1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/delay1_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/delay2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/delay2_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/delay3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/delay3_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/delay4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/delay4_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/delay5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/delay5_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/delay6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/delay6_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/semifinalcalibrated_-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage11/thumbs/semifinalcalibrated_-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/amp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/amp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/phase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/phase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_amp0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_amp0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_amp1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_amp1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_amp2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_amp2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_amp3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_amp3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_amp4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_amp4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_amp5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_amp5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_amp6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_amp6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_phase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_phase0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_phase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_phase1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_phase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_phase2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_phase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_phase3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_phase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_phase4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_phase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_phase5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_phase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgaincal_phase6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgainstestgains_sample-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/testgainstestgains_sample-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage13/bootstrappedFluxDensities-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage13/bootstrappedFluxDensities-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage13/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage13/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage13/fluxgaincalFluxDensities-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage13/fluxgaincalFluxDensities-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage13/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage13/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage13/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage13/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage13/thumbs/bootstrappedFluxDensities-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage13/thumbs/bootstrappedFluxDensities-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage13/thumbs/fluxgaincalFluxDensities-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage13/thumbs/fluxgaincalFluxDensities-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/bpsolamp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/bpsolamp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/bpsolphase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/bpsolphase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/bpsolphaseshort-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/bpsolphaseshort-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalampfreqcal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalampfreqcal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalampfreqcal0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalampfreqcal0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalampfreqcal1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalampfreqcal1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalampfreqcal2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalampfreqcal2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalampfreqcal3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalampfreqcal3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalampfreqcal4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalampfreqcal4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalampfreqcal5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalampfreqcal5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalampfreqcal6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalampfreqcal6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalamptimecal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalamptimecal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalamptimecal0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalamptimecal0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalamptimecal1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalamptimecal1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalamptimecal2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalamptimecal2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalamptimecal3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalamptimecal3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalamptimecal4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalamptimecal4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalamptimecal5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalamptimecal5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalamptimecal6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalamptimecal6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalcalsjunk-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalcalsjunk-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finaldelay0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finaldelay0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finaldelay1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finaldelay1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finaldelay2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finaldelay2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finaldelay3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finaldelay3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finaldelay4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finaldelay4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finaldelay5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finaldelay5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finaldelay6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finaldelay6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finaldelays-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finaldelays-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalphasegaincal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalphasegaincal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalphasegaincal0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalphasegaincal0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalphasegaincal1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalphasegaincal1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalphasegaincal2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalphasegaincal2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalphasegaincal3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalphasegaincal3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalphasegaincal4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalphasegaincal4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalphasegaincal5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalphasegaincal5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalphasegaincal6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/finalphasegaincal6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/phasegain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/phasegain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage15/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage15/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage15/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage15/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage15/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage15/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage16/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage16/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage16/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage16/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage16/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage16/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage17/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage17/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage17/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage17/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage17/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage17/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-amp_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-phase_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-phase_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-phase_vs_freq-RL_LR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-amp_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-phase_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-phase_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-phase_vs_freq-RL_LR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0509+0541-bb12-TARGET-uvrange_4726.5255447-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0509+0541-bb12-TARGET-uvrange_4726.5255447-amp_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0509+0541-bb15-TARGET-uvrange_4726.5255447-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0509+0541-bb15-TARGET-uvrange_4726.5255447-amp_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138_-bb12-POLANGLE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138_-bb12-POLANGLE-phase_vs_freq-RL_LR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138_-bb15-POLANGLE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138_-bb15-POLANGLE-phase_vs_freq-RL_LR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-amp_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-phase_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-phase_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-phase_vs_freq-RL_LR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-amp_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-phase_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-phase_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-phase_vs_freq-RL_LR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw02-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw02-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw03-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw03-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw04-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw04-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw05-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw05-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw06-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw06-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw07-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw07-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw08-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw08-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw09-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw09-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw10-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw10-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw11-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw11-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw12-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw12-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw13-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw13-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw14-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw14-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw15-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw15-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw16-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw16-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw17-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw17-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0542+498_3C147_-bb12-POLLEAKAGE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0542+498_3C147_-bb12-POLLEAKAGE-phase_vs_freq-RL_LR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0542+498_3C147_-bb15-POLLEAKAGE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0542+498_3C147_-bb15-POLLEAKAGE-phase_vs_freq-RL_LR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/all_calibrators_phase_time-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/all_calibrators_phase_time-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/field0_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/field0_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/field1_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/field1_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/field2_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/field2_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/field3_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/field3_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-amp_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-phase_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-phase_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-phase_vs_freq-RL_LR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-amp_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-phase_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-phase_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-phase_vs_freq-RL_LR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0509+0541-bb12-TARGET-uvrange_4726.5255447-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0509+0541-bb12-TARGET-uvrange_4726.5255447-amp_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0509+0541-bb15-TARGET-uvrange_4726.5255447-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0509+0541-bb15-TARGET-uvrange_4726.5255447-amp_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138_-bb12-POLANGLE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138_-bb12-POLANGLE-phase_vs_freq-RL_LR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138_-bb15-POLANGLE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138_-bb15-POLANGLE-phase_vs_freq-RL_LR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-amp_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-phase_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-phase_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-phase_vs_freq-RL_LR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-amp_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-phase_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-phase_vs_freq-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-phase_vs_freq-RL_LR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0542+498_3C147_-bb12-POLLEAKAGE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0542+498_3C147_-bb12-POLLEAKAGE-phase_vs_freq-RL_LR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0542+498_3C147_-bb15-POLLEAKAGE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0542+498_3C147_-bb15-POLLEAKAGE-phase_vs_freq-RL_LR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/all_calibrators_phase_time-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/all_calibrators_phase_time-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/field0_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/field0_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/field1_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/field1_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/field2_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/field2_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/field3_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage18/thumbs/field3_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage19/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage19/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage19/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage19/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage19/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage19/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage2/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage2/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage2/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage2/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage2/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage2/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw10-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw10-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw11-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw11-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw12-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw12-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw13-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw13-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw14-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw14-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw15-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw15-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw16-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw16-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw17-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw17-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw2-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw2-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw3-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw3-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw4-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw4-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw5-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw5-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw6-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw6-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw7-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw7-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw8-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw8-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw9-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw9-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw10-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw10-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw11-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw11-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw12-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw12-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw13-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw13-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw14-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw14-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw15-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw15-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw16-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw16-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw17-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw17-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw2-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw2-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw3-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw3-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw4-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw4-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw5-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw5-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw6-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw6-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw7-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw7-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw8-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw8-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw9-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw9-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw10-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw10-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw11-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw11-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw12-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw12-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw13-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw13-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw14-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw14-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw15-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw15-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw16-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw16-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw17-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw17-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw2-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw2-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw3-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw3-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw4-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw4-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw5-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw5-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw6-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw6-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw7-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw7-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw8-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw8-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw9-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw9-polI-cleanplots.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.pb.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.psf.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.image.pbcor.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.image.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.mask.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.model.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.residual.sky.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage3/17B-403.sb34574962.eb34577590_000.58035.544146898144.flagonline.txt b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage3/17B-403.sb34574962.eb34577590_000.58035.544146898144.flagonline.txt
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage3/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-agent_flagcmds.txt b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage3/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-agent_flagcmds.txt
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage3/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-flags.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage3/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-flags.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage3/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage3/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage3/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage3/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage3/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage3/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage3/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-flags.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage3/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-flags.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage4/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-bb12-AMPLITUDE-amp_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage4/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-bb12-AMPLITUDE-amp_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage4/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-bb15-AMPLITUDE-amp_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage4/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-bb15-AMPLITUDE-amp_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage4/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage4/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage4/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage4/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage4/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage4/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage4/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-bb12-AMPLITUDE-amp_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage4/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-bb12-AMPLITUDE-amp_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage4/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-bb15-AMPLITUDE-amp_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage4/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-bb15-AMPLITUDE-amp_vs_uvdist-LL_RR.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.plotweather.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.plotweather.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/spgain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/spgain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_spgain0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_spgain0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_spgain1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_spgain1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_spgain2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_spgain2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_spgain3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_spgain3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_spgain4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_spgain4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_spgain5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_spgain5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_spgain6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_spgain6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_tsys0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_tsys0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_tsys1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_tsys1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_tsys2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_tsys2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_tsys3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_tsys3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_tsys4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_tsys4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_tsys5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_tsys5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_tsys6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpow_tsys6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpowswpow_sample-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/swpowswpow_sample-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.plotweather.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.plotweather.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/tsys-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage5/tsys-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/ampgain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/ampgain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/bpsolamp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/bpsolamp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/bpsolphase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/bpsolphase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/phasegain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/phasegain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_amp0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_amp0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_amp1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_amp1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_amp2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_amp2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_amp3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_amp3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_amp4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_amp4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_amp5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_amp5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_amp6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_amp6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_phase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_phase0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_phase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_phase1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_phase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_phase2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_phase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_phase3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_phase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_phase4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_phase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_phase5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_phase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPcal_phase6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testcalibratedBPcal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testcalibratedBPcal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testdelay0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testdelay0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testdelay1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testdelay1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testdelay2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testdelay2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testdelay3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testdelay3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testdelay4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testdelay4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testdelay5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testdelay5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testdelay6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testdelay6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testdelays-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/testdelays-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testcalibratedBPcal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testcalibratedBPcal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay0.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay1.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay2.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay3.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay4.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay5.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay6.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage7/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage7/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage7/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage7/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage7/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage7/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage8/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage8/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage8/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage8/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage8/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage8/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_amp0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_amp0_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_amp1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_amp1_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_amp2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_amp2_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_amp3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_amp3_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_amp4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_amp4_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_amp5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_amp5_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_amp6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_amp6_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_phase0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_phase0_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_phase1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_phase1_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_phase2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_phase2_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_phase3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_phase3_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_phase4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_phase4_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_phase5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_phase5_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_phase6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPcal_phase6_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase0_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase1_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase2_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase3_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase4_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase5_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase6_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/bpsolamp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/bpsolamp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/bpsolphase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/bpsolphase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/casapy.log
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/delay0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/delay0_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/delay1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/delay1_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/delay2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/delay2_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/delay3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/delay3_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/delay4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/delay4_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/delay5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/delay5_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/delay6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/delay6_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/delays-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/delays-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/junk.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/junk.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/phasegain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/phasegain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/semifinalcalibrated_-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/semifinalcalibrated_-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/t2-4m_details-container.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/t2-4m_details.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp0_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp1_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp2_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp3_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp4_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp5_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp6_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase0_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase1_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase2_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase3_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase4_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase5_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase6_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase0_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase1_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase2_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase3_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase4_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase5_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase6_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/delay0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/delay0_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/delay1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/delay1_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/delay2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/delay2_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/delay3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/delay3_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/delay4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/delay4_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/delay5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/delay5_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/delay6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/delay6_.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/semifinalcalibrated_-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/stage9/thumbs/semifinalcalibrated_-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t1-1.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t1-1.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t1-2.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t1-2.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t1-3.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t1-3.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t1-4.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t1-4.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t2-1.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t2-1.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t2-3-1m.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t2-3-1m.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t2-3-2m.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t2-3-2m.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t2-3-3m.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t2-3-3m.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t2-3-5m.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t2-3-5m.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t2-3-6m.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t2-3-6m.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t2-4m.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/pipeline-20171009T163135/html/t2-4m.html
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/unknown.pipeline_manifest.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/unknown.pipeline_manifest.xml
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/unknown.session_1.caltables.tgz b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/products/unknown.session_1.caltables.tgz
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.calapply.txt b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.calapply.txt
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions.tgz b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions.tgz
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDM.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDM.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507554220676 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507554220676
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507554221399 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507554221399
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507554721023 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507554721023
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507554780838 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507554780838
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507554810765 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507554810765
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507554855631 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507554855631
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507554900531 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507554900531
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507554990289 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507554990289
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507555319379 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507555319379
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507555379236 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507555379236
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507555708328 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ASDMBinary/uid____evla_bdf_1507555708328
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Antenna.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Antenna.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/CalData.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/CalData.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/CalDevice.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/CalDevice.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/CalPointing.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/CalPointing.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/CalReduction.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/CalReduction.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ConfigDescription.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ConfigDescription.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/CorrelatorMode.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/CorrelatorMode.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/DataDescription.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/DataDescription.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/DelayModel.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/DelayModel.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/DelayModelFixedParameters.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/DelayModelFixedParameters.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/DelayModelVariableParameters.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/DelayModelVariableParameters.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Doppler.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Doppler.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Ephemeris.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Ephemeris.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ExecBlock.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/ExecBlock.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Feed.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Feed.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Field.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Field.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Flag.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Flag.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Main.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Main.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Pointing.bin b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Pointing.bin
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/PointingModel.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/PointingModel.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Polarization.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Polarization.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Processor.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Processor.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Receiver.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Receiver.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/SBSummary.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/SBSummary.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Scan.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Scan.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Source.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Source.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/SpectralWindow.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/SpectralWindow.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/State.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/State.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Station.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Station.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Subscan.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Subscan.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/SwitchCycle.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/SwitchCycle.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/SysCal.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/SysCal.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/SysPower.bin b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/SysPower.bin
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Weather.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403.sb34574962.eb34577590_000.58035.544146898144/Weather.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256.tar/17B-403_2017_10_09_T16_25_18.256.tar b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256.tar/17B-403_2017_10_09_T16_25_18.256.tar
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.calapply.txt b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.calapply.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions.tgz b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions.tgz
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/casa_commands.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/casa_commands.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/casa_piperestorescript.py b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/casa_piperestorescript.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/casa_pipescript.py b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/casa_pipescript.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/casa-20171009-163125.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/casa-20171009-163125.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/casa_commands.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/casa_commands.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/casa_pipescript.py b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/casa_pipescript.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/bootstrap-theme.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/bootstrap-theme.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/bootstrap-theme.css.map b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/bootstrap-theme.css.map
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/bootstrap-theme.min.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/bootstrap-theme.min.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/bootstrap.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/bootstrap.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/bootstrap.css.map b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/bootstrap.css.map
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/bootstrap.min.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/bootstrap.min.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/bootswatch.less b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/bootswatch.less
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/font-awesome.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/font-awesome.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/font-awesome.min.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/font-awesome.min.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/paper-pipeline.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/paper-pipeline.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/paper-pipeline.min.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/paper-pipeline.min.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/pipeline.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/pipeline.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/pipeline.min.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/pipeline.min.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/select2-bootstrap.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/select2-bootstrap.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/select2-spinner.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/select2-spinner.gif
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/select2.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/select2.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/select2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/select2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/select2x2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/select2x2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/variables.less b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/css/variables.less
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/.gitattributes b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/.gitattributes
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/CHANGELOG.md b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/CHANGELOG.md
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/README.md b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/1_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/1_b.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/1_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/1_s.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/2_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/2_b.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/2_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/2_s.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/3_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/3_b.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/3_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/3_s.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/4_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/4_b.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/4_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/4_s.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/5_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/5_b.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/5_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/5_s.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/ajax.txt b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/ajax.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/iframe.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/iframe.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/index.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/demo/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/lib/jquery-1.10.1.min.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/lib/jquery-1.10.1.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/lib/jquery-1.9.0.min.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/lib/jquery-1.9.0.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/lib/jquery.mousewheel-3.0.6.pack.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/lib/jquery.mousewheel-3.0.6.pack.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/blank.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/blank.gif
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_loading.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_loading.gif
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_loading@2x.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_loading@2x.gif
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_overlay.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_overlay.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_sprite.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_sprite.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_sprite@2x.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/fancybox_sprite@2x.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/fancybox_buttons.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/fancybox_buttons.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-buttons.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-buttons.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-buttons.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-buttons.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-media.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-media.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-thumbs.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-thumbs.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-thumbs.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/helpers/jquery.fancybox-thumbs.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/jquery.fancybox.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/jquery.fancybox.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/jquery.fancybox.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/jquery.fancybox.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/jquery.fancybox.pack.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/source/jquery.fancybox.pack.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/sprite.psd b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancyapps-fancyBox-18d1712/sprite.psd
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/.gitattributes b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/.gitattributes
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/CHANGELOG.md b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/CHANGELOG.md
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/README.md b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/README.md
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/1_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/1_b.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/1_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/1_s.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/2_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/2_b.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/2_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/2_s.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/3_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/3_b.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/3_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/3_s.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/4_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/4_b.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/4_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/4_s.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/5_b.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/5_b.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/5_s.jpg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/5_s.jpg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/ajax.txt b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/ajax.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/iframe.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/iframe.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/index.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/demo/index.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/lib/jquery-1.10.1.min.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/lib/jquery-1.10.1.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/lib/jquery-1.9.0.min.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/lib/jquery-1.9.0.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/lib/jquery.mousewheel-3.0.6.pack.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/lib/jquery.mousewheel-3.0.6.pack.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/blank.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/blank.gif
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_loading.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_loading.gif
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_loading@2x.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_loading@2x.gif
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_overlay.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_overlay.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_sprite.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_sprite.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_sprite@2x.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/fancybox_sprite@2x.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/fancybox_buttons.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/fancybox_buttons.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-buttons.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-buttons.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-buttons.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-buttons.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-media.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-media.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-thumbs.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-thumbs.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-thumbs.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/helpers/jquery.fancybox-thumbs.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/jquery.fancybox.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/jquery.fancybox.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/jquery.fancybox.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/jquery.fancybox.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/jquery.fancybox.pack.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/source/jquery.fancybox.pack.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/sprite.psd b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fancybox/sprite.psd
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/FontAwesome.otf b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/FontAwesome.otf
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/fontawesome-webfont.eot b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/fontawesome-webfont.eot
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/fontawesome-webfont.svg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/fontawesome-webfont.svg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/fontawesome-webfont.ttf b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/fontawesome-webfont.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/fontawesome-webfont.woff b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/fontawesome-webfont.woff
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.eot b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.eot
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.svg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.svg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.ttf b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.ttf
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.woff b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.woff
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.woff2 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/fonts/glyphicons-halflings-regular.woff2
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/gradient.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/gradient.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/img/ajax-loader.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/img/ajax-loader.gif
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/img/almalogo.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/img/almalogo.gif
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/img/almalogo.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/img/almalogo.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/img/evlalogo.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/img/evlalogo.gif
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/img/evlalogo.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/img/evlalogo.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/img/logo.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/img/logo.gif
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/img/vlalogo.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/img/vlalogo.gif
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/img/vlalogo.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/img/vlalogo.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/bootstrap.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/bootstrap.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/bootstrap.min.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/bootstrap.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/d3.min.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/d3.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/history.adapter.jquery.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/history.adapter.jquery.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/history.adapter.native.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/history.adapter.native.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/history.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/history.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/holder.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/holder.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/jquery-2.1.3.min.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/jquery-2.1.3.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/npm.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/npm.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/pipeline.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/pipeline.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/purl-2.2.1.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/purl-2.2.1.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/select2.min.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/js/select2.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/plotgroup.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/resources/plotgroup.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/azel.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/azel.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/el_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/el_vs_time.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/field_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/field_vs_time.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/intent_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/intent_vs_time.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/listobs.txt b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/listobs.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/plotants.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/plotants.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/plotants_polarlog.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/plotants_polarlog.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-1_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-1_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-1.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-1.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-2.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-2.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-3.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-3.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-4.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-4.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-6.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-6.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/azel.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/azel.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/el_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/el_vs_time.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/field_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/field_vs_time.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/intent_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/intent_vs_time.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/plotants.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/plotants.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/plotants_polarlog.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/plotants_polarlog.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/weather.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/weather.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/weather.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/weather.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage1/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage1/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage1/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage1/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage1/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage1/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage10/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage10/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage10/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage10/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage10/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage10/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_amp0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_amp0_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_amp1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_amp1_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_amp2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_amp2_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_amp3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_amp3_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_amp4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_amp4_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_amp5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_amp5_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_amp6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_amp6_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_phase0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_phase0_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_phase1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_phase1_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_phase2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_phase2_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_phase3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_phase3_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_phase4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_phase4_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_phase5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_phase5_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_phase6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPcal_phase6_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase0_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase1_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase2_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase3_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase4_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase5_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/BPinitialgainphase6_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/bpsolamp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/bpsolamp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/bpsolphase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/bpsolphase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/delay0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/delay0_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/delay1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/delay1_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/delay2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/delay2_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/delay3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/delay3_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/delay4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/delay4_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/delay5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/delay5_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/delay6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/delay6_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/delays-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/delays-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/junk.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/junk.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/phasegain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/phasegain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/semifinalcalibrated_-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/semifinalcalibrated_-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp0_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp1_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp2_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp3_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp4_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp5_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_amp6_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase0_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase1_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase2_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase3_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase4_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase5_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPcal_phase6_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase0_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase1_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase2_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase3_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase4_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase5_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/BPinitialgainphase6_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/delay0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/delay0_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/delay1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/delay1_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/delay2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/delay2_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/delay3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/delay3_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/delay4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/delay4_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/delay5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/delay5_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/delay6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/delay6_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/semifinalcalibrated_-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage11/thumbs/semifinalcalibrated_-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/amp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/amp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/phase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/phase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_amp0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_amp0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_amp1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_amp1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_amp2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_amp2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_amp3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_amp3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_amp4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_amp4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_amp5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_amp5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_amp6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_amp6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_phase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_phase0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_phase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_phase1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_phase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_phase2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_phase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_phase3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_phase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_phase4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_phase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_phase5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_phase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgaincal_phase6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgainstestgains_sample-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/testgainstestgains_sample-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_amp6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage12/thumbs/testgaincal_phase6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage13/bootstrappedFluxDensities-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage13/bootstrappedFluxDensities-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage13/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage13/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage13/fluxgaincalFluxDensities-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage13/fluxgaincalFluxDensities-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage13/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage13/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage13/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage13/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage13/thumbs/bootstrappedFluxDensities-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage13/thumbs/bootstrappedFluxDensities-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage13/thumbs/fluxgaincalFluxDensities-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage13/thumbs/fluxgaincalFluxDensities-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/bpsolamp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/bpsolamp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/bpsolphase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/bpsolphase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/bpsolphaseshort-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/bpsolphaseshort-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_amp6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPcal_phase6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalBPinitialgainphase6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalampfreqcal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalampfreqcal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalampfreqcal0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalampfreqcal0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalampfreqcal1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalampfreqcal1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalampfreqcal2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalampfreqcal2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalampfreqcal3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalampfreqcal3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalampfreqcal4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalampfreqcal4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalampfreqcal5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalampfreqcal5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalampfreqcal6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalampfreqcal6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalamptimecal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalamptimecal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalamptimecal0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalamptimecal0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalamptimecal1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalamptimecal1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalamptimecal2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalamptimecal2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalamptimecal3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalamptimecal3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalamptimecal4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalamptimecal4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalamptimecal5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalamptimecal5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalamptimecal6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalamptimecal6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalcalsjunk-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalcalsjunk-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finaldelay0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finaldelay0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finaldelay1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finaldelay1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finaldelay2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finaldelay2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finaldelay3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finaldelay3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finaldelay4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finaldelay4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finaldelay5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finaldelay5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finaldelay6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finaldelay6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finaldelays-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finaldelays-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalphasegaincal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalphasegaincal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalphasegaincal0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalphasegaincal0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalphasegaincal1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalphasegaincal1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalphasegaincal2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalphasegaincal2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalphasegaincal3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalphasegaincal3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalphasegaincal4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalphasegaincal4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalphasegaincal5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalphasegaincal5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalphasegaincal6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/finalphasegaincal6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/phasegain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/phasegain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/phaseshortgaincal6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_amp6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPcal_phase6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalBPinitialgainphase6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalampfreqcal6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalamptimecal6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finaldelay6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/finalphasegaincal6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage14/thumbs/phaseshortgaincal6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage15/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage15/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage15/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage15/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage15/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage15/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage16/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage16/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage16/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage16/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage16/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage16/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage17/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage17/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage17/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage17/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage17/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage17/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-amp_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-phase_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-phase_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-phase_vs_freq-RL_LR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-amp_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-phase_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-phase_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-phase_vs_freq-RL_LR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0509+0541-bb12-TARGET-uvrange_4726.5255447-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0509+0541-bb12-TARGET-uvrange_4726.5255447-amp_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0509+0541-bb15-TARGET-uvrange_4726.5255447-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0509+0541-bb15-TARGET-uvrange_4726.5255447-amp_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138_-bb12-POLANGLE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138_-bb12-POLANGLE-phase_vs_freq-RL_LR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138_-bb15-POLANGLE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138_-bb15-POLANGLE-phase_vs_freq-RL_LR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-amp_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-phase_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-phase_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-phase_vs_freq-RL_LR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-amp_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-phase_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-phase_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-phase_vs_freq-RL_LR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw02-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw02-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw03-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw03-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw04-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw04-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw05-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw05-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw06-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw06-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw07-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw07-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw08-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw08-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw09-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw09-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw10-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw10-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw11-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw11-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw12-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw12-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw13-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw13-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw14-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw14-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw15-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw15-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw16-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw16-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw17-AMPLITUDE-phase_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-spw17-AMPLITUDE-phase_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0542+498_3C147_-bb12-POLLEAKAGE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0542+498_3C147_-bb12-POLLEAKAGE-phase_vs_freq-RL_LR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0542+498_3C147_-bb15-POLLEAKAGE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0542+498_3C147_-bb15-POLLEAKAGE-phase_vs_freq-RL_LR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/all_calibrators_phase_time-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/all_calibrators_phase_time-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/field0_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/field0_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/field1_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/field1_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/field2_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/field2_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/field3_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/field3_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-amp_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-phase_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-phase_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb12-PHASE-phase_vs_freq-RL_LR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-amp_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-phase_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-phase_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0502+0609-bb15-PHASE-phase_vs_freq-RL_LR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0509+0541-bb12-TARGET-uvrange_4726.5255447-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0509+0541-bb12-TARGET-uvrange_4726.5255447-amp_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0509+0541-bb15-TARGET-uvrange_4726.5255447-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-J0509+0541-bb15-TARGET-uvrange_4726.5255447-amp_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138_-bb12-POLANGLE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138_-bb12-POLANGLE-phase_vs_freq-RL_LR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138_-bb15-POLANGLE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138_-bb15-POLANGLE-phase_vs_freq-RL_LR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-amp_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-phase_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-phase_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb12-BANDPASS-phase_vs_freq-RL_LR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-amp_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-amp_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-phase_vs_freq-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-phase_vs_freq-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0521+166_3C138___0542+498_3C147_-bb15-BANDPASS-phase_vs_freq-RL_LR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0542+498_3C147_-bb12-POLLEAKAGE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0542+498_3C147_-bb12-POLLEAKAGE-phase_vs_freq-RL_LR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0542+498_3C147_-bb15-POLLEAKAGE-phase_vs_freq-RL_LR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-_0542+498_3C147_-bb15-POLLEAKAGE-phase_vs_freq-RL_LR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/all_calibrators_phase_time-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/all_calibrators_phase_time-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/field0_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/field0_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/field1_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/field1_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/field2_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/field2_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/field3_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage18/thumbs/field3_amp_uvdist-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage19/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage19/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage19/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage19/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage19/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage19/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage2/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage2/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage2/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage2/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage2/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage2/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw10-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw10-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw11-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw11-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw12-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw12-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw13-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw13-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw14-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw14-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw15-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw15-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw16-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw16-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw17-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw17-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw2-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw2-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw3-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw3-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw4-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw4-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw5-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw5-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw6-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw6-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw7-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw7-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw8-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw8-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw9-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0521_166_3C138__BANDPASS_-spw9-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw10-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw10-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw11-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw11-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw12-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw12-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw13-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw13-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw14-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw14-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw15-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw15-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw16-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw16-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw17-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw17-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw2-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw2-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw3-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw3-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw4-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw4-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw5-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw5-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw6-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw6-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw7-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw7-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw8-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw8-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw9-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/field0542_498_3C147__BANDPASS_-spw9-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw10-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw10-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw11-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw11-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw12-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw12-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw13-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw13-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw14-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw14-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw15-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw15-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw16-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw16-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw17-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw17-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw2-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw2-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw3-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw3-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw4-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw4-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw5-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw5-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw6-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw6-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw7-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw7-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw8-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw8-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw9-polI-cleanplots.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/fieldJ0502_0609__PHASE_-spw9-polI-cleanplots.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw10.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw11.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw12.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw13.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw14.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw15.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw16.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw17.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw2.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw3.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw4.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw5.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw6.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw7.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw8.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0.J0502_0609_ph.spw9.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw10.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw11.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw12.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw13.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw14.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw15.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw16.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw17.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw2.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw3.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw4.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw5.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw6.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw7.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw8.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0521_166_3C138__bp.spw9.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw10.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw11.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw12.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw13.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw14.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw15.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw16.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw17.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw2.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw3.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw4.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw5.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw6.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw7.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw8.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.pb.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.pb.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.psf.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.psf.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter0.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.image.pbcor.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.image.pbcor.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.image.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.image.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.mask.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.mask.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.model.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.model.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.residual.sky.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage20/thumbs/oussid.s20_0._0542_498_3C147__bp.spw9.mfs.I.iter1.residual.sky.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage3/17B-403.sb34574962.eb34577590_000.58035.544146898144.flagonline.txt b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage3/17B-403.sb34574962.eb34577590_000.58035.544146898144.flagonline.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage3/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-agent_flagcmds.txt b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage3/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-agent_flagcmds.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage3/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-flags.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage3/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-flags.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage3/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage3/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage3/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage3/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage3/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage3/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage3/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-flags.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage3/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-flags.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage4/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-bb12-AMPLITUDE-amp_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage4/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-bb12-AMPLITUDE-amp_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage4/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-bb15-AMPLITUDE-amp_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage4/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-bb15-AMPLITUDE-amp_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage4/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage4/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage4/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage4/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage4/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage4/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage4/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-bb12-AMPLITUDE-amp_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage4/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-bb12-AMPLITUDE-amp_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage4/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-bb15-AMPLITUDE-amp_vs_uvdist-LL_RR.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage4/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-bb15-AMPLITUDE-amp_vs_uvdist-LL_RR.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.plotweather.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.plotweather.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/spgain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/spgain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_spgain0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_spgain0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_spgain1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_spgain1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_spgain2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_spgain2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_spgain3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_spgain3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_spgain4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_spgain4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_spgain5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_spgain5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_spgain6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_spgain6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_tsys0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_tsys0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_tsys1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_tsys1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_tsys2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_tsys2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_tsys3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_tsys3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_tsys4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_tsys4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_tsys5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_tsys5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_tsys6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpow_tsys6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpowswpow_sample-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/swpowswpow_sample-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.plotweather.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.plotweather.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_spgain6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/thumbs/swpow_tsys6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/tsys-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage5/tsys-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/ampgain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/ampgain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/bpsolamp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/bpsolamp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/bpsolphase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/bpsolphase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/phasegain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/phasegain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_amp0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_amp0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_amp1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_amp1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_amp2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_amp2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_amp3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_amp3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_amp4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_amp4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_amp5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_amp5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_amp6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_amp6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_phase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_phase0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_phase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_phase1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_phase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_phase2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_phase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_phase3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_phase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_phase4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_phase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_phase5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_phase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPcal_phase6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainamp6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testBPdinitialgainphase6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testcalibratedBPcal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testcalibratedBPcal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testdelay0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testdelay0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testdelay1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testdelay1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testdelay2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testdelay2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testdelay3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testdelay3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testdelay4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testdelay4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testdelay5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testdelay5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testdelay6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testdelay6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testdelays-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/testdelays-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_amp6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPcal_phase6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainamp6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testBPdinitialgainphase6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testcalibratedBPcal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testcalibratedBPcal-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay0.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay0.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay1.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay2.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay2.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay3.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay3.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay4.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay4.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay5.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay5.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay6.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage6/thumbs/testdelay6.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage7/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage7/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage7/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage7/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage7/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage7/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage8/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage8/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage8/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage8/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage8/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage8/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_amp0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_amp0_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_amp1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_amp1_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_amp2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_amp2_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_amp3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_amp3_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_amp4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_amp4_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_amp5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_amp5_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_amp6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_amp6_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_phase0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_phase0_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_phase1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_phase1_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_phase2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_phase2_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_phase3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_phase3_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_phase4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_phase4_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_phase5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_phase5_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_phase6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPcal_phase6_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase0_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase1_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase2_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase3_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase4_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase5_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/BPinitialgainphase6_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/bpsolamp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/bpsolamp-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/bpsolphase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/bpsolphase-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/delay0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/delay0_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/delay1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/delay1_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/delay2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/delay2_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/delay3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/delay3_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/delay4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/delay4_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/delay5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/delay5_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/delay6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/delay6_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/delays-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/delays-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/junk.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/junk.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/phasegain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/phasegain-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/semifinalcalibrated_-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/semifinalcalibrated_-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp0_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp1_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp2_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp3_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp4_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp5_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_amp6_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase0_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase1_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase2_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase3_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase4_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase5_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPcal_phase6_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase0_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase1_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase2_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase3_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase4_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase5_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/BPinitialgainphase6_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/delay0_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/delay0_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/delay1_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/delay1_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/delay2_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/delay2_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/delay3_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/delay3_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/delay4_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/delay4_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/delay5_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/delay5_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/delay6_.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/delay6_.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/semifinalcalibrated_-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/stage9/thumbs/semifinalcalibrated_-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t1-1.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t1-1.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t1-2.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t1-2.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t1-3.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t1-3.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t1-4.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t1-4.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t2-1.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t2-1.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t2-3-1m.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t2-3-1m.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t2-3-2m.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t2-3-2m.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t2-3-3m.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t2-3-3m.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t2-3-5m.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t2-3-5m.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t2-3-6m.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t2-3-6m.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t2-4m.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/pipeline-20171009T163135/html/t2-4m.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/unknown.pipeline_manifest.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/unknown.pipeline_manifest.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/unknown.session_1.caltables.tgz b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/17B-403_2017_10_09_T16_25_18.256/products/unknown.session_1.caltables.tgz
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/unknown.pipeline_manifest.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/unknown.pipeline_manifest.xml
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/unknown.session_1.caltables.tgz b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/rawdata/unknown.session_1.caltables.tgz
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms.dag b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms.dag
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms.dag.condor.sub b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms.dag.condor.sub
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms.dag.dagman.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms.dag.dagman.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms.dag.dagman.out b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms.dag.dagman.out
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms.dag.lib.err b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms.dag.lib.err
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms.dag.lib.out b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms.dag.lib.out
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms.dag.metrics b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms.dag.metrics
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms.dag.nodes.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms.dag.nodes.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms.dag.rescue001 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms.dag.rescue001
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms_deliver.condor b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms_deliver.condor
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms_deliver.sh b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms_deliver.sh
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms_envoy.condor b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms_envoy.condor
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms_envoy.sh b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms_envoy.sh
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms_fetch.condor b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms_fetch.condor
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms_fetch.sh b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/restore_cms_fetch.sh
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/ANTENNA/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/ANTENNA/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/ANTENNA/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/ANTENNA/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/ANTENNA/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/ANTENNA/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/ANTENNA/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/ANTENNA/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/FIELD/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/FIELD/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/FIELD/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/FIELD/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/FIELD/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/FIELD/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/FIELD/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/FIELD/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/FIELD/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/FIELD/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/HISTORY/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/HISTORY/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/HISTORY/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/HISTORY/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/HISTORY/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/HISTORY/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/HISTORY/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/HISTORY/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/OBSERVATION/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/OBSERVATION/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/OBSERVATION/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/OBSERVATION/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/OBSERVATION/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/OBSERVATION/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/OBSERVATION/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/OBSERVATION/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/SPECTRAL_WINDOW/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/SPECTRAL_WINDOW/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/SPECTRAL_WINDOW/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/SPECTRAL_WINDOW/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/SPECTRAL_WINDOW/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/SPECTRAL_WINDOW/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/SPECTRAL_WINDOW/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/SPECTRAL_WINDOW/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/SPECTRAL_WINDOW/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/SPECTRAL_WINDOW/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.averagephasegain.g/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/ANTENNA/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/ANTENNA/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/ANTENNA/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/ANTENNA/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/ANTENNA/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/ANTENNA/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/ANTENNA/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/ANTENNA/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/FIELD/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/FIELD/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/FIELD/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/FIELD/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/FIELD/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/FIELD/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/FIELD/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/FIELD/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/FIELD/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/FIELD/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/HISTORY/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/HISTORY/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/HISTORY/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/HISTORY/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/HISTORY/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/HISTORY/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/HISTORY/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/HISTORY/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/OBSERVATION/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/OBSERVATION/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/OBSERVATION/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/OBSERVATION/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/OBSERVATION/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/OBSERVATION/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/OBSERVATION/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/OBSERVATION/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/SPECTRAL_WINDOW/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/SPECTRAL_WINDOW/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/SPECTRAL_WINDOW/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/SPECTRAL_WINDOW/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/SPECTRAL_WINDOW/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/SPECTRAL_WINDOW/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/SPECTRAL_WINDOW/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/SPECTRAL_WINDOW/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/SPECTRAL_WINDOW/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/SPECTRAL_WINDOW/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalBPcal.b/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/ANTENNA/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/ANTENNA/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/ANTENNA/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/ANTENNA/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/ANTENNA/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/ANTENNA/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/ANTENNA/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/ANTENNA/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/FIELD/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/FIELD/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/FIELD/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/FIELD/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/FIELD/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/FIELD/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/FIELD/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/FIELD/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/FIELD/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/FIELD/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/HISTORY/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/HISTORY/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/HISTORY/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/HISTORY/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/HISTORY/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/HISTORY/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/HISTORY/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/HISTORY/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/OBSERVATION/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/OBSERVATION/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/OBSERVATION/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/OBSERVATION/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/OBSERVATION/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/OBSERVATION/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/OBSERVATION/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/OBSERVATION/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/SPECTRAL_WINDOW/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/SPECTRAL_WINDOW/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/SPECTRAL_WINDOW/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/SPECTRAL_WINDOW/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/SPECTRAL_WINDOW/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/SPECTRAL_WINDOW/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/SPECTRAL_WINDOW/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/SPECTRAL_WINDOW/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/SPECTRAL_WINDOW/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/SPECTRAL_WINDOW/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalampgaincal.g/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/ANTENNA/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/ANTENNA/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/ANTENNA/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/ANTENNA/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/ANTENNA/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/ANTENNA/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/ANTENNA/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/ANTENNA/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/FIELD/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/FIELD/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/FIELD/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/FIELD/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/FIELD/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/FIELD/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/FIELD/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/FIELD/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/FIELD/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/FIELD/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/HISTORY/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/HISTORY/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/HISTORY/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/HISTORY/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/HISTORY/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/HISTORY/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/HISTORY/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/HISTORY/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/OBSERVATION/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/OBSERVATION/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/OBSERVATION/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/OBSERVATION/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/OBSERVATION/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/OBSERVATION/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/OBSERVATION/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/OBSERVATION/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/SPECTRAL_WINDOW/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/SPECTRAL_WINDOW/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/SPECTRAL_WINDOW/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/SPECTRAL_WINDOW/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/SPECTRAL_WINDOW/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/SPECTRAL_WINDOW/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/SPECTRAL_WINDOW/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/SPECTRAL_WINDOW/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/SPECTRAL_WINDOW/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/SPECTRAL_WINDOW/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finaldelay.k/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/ANTENNA/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/ANTENNA/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/ANTENNA/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/ANTENNA/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/ANTENNA/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/ANTENNA/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/ANTENNA/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/ANTENNA/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/FIELD/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/FIELD/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/FIELD/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/FIELD/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/FIELD/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/FIELD/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/FIELD/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/FIELD/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/FIELD/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/FIELD/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/HISTORY/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/HISTORY/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/HISTORY/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/HISTORY/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/HISTORY/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/HISTORY/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/HISTORY/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/HISTORY/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/OBSERVATION/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/OBSERVATION/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/OBSERVATION/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/OBSERVATION/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/OBSERVATION/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/OBSERVATION/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/OBSERVATION/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/OBSERVATION/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/SPECTRAL_WINDOW/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/SPECTRAL_WINDOW/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/SPECTRAL_WINDOW/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/SPECTRAL_WINDOW/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/SPECTRAL_WINDOW/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/SPECTRAL_WINDOW/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/SPECTRAL_WINDOW/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/SPECTRAL_WINDOW/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/SPECTRAL_WINDOW/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/SPECTRAL_WINDOW/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.finalphasegaincal.g/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/FLAG_VERSION_LIST b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/FLAG_VERSION_LIST
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.Pipeline_Final/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.Pipeline_Final/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.Pipeline_Final/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.Pipeline_Final/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.Pipeline_Final/table.f0_TSM1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.Pipeline_Final/table.f0_TSM1
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.Pipeline_Final/table.f1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.Pipeline_Final/table.f1
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.Pipeline_Final/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.Pipeline_Final/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.Pipeline_Final/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.Pipeline_Final/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.applycal_1/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.applycal_1/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.applycal_1/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.applycal_1/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.applycal_1/table.f0_TSM1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.applycal_1/table.f0_TSM1
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.applycal_1/table.f1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.applycal_1/table.f1
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.applycal_1/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.applycal_1/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.applycal_1/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.applycal_1/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.statwt_1/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.statwt_1/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.statwt_1/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.statwt_1/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.statwt_1/table.f0_TSM1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.statwt_1/table.f0_TSM1
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.statwt_1/table.f1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.statwt_1/table.f1
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.statwt_1/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.statwt_1/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.statwt_1/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.flagversions/flags.statwt_1/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/ANTENNA/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/ANTENNA/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/ANTENNA/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/ANTENNA/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/ANTENNA/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/ANTENNA/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/ANTENNA/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/ANTENNA/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/FIELD/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/FIELD/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/FIELD/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/FIELD/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/FIELD/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/FIELD/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/FIELD/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/FIELD/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/FIELD/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/FIELD/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/HISTORY/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/HISTORY/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/HISTORY/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/HISTORY/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/HISTORY/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/HISTORY/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/HISTORY/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/HISTORY/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/OBSERVATION/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/OBSERVATION/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/OBSERVATION/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/OBSERVATION/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/OBSERVATION/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/OBSERVATION/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/OBSERVATION/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/OBSERVATION/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/SPECTRAL_WINDOW/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/SPECTRAL_WINDOW/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/SPECTRAL_WINDOW/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/SPECTRAL_WINDOW/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/SPECTRAL_WINDOW/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/SPECTRAL_WINDOW/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/SPECTRAL_WINDOW/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/SPECTRAL_WINDOW/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/SPECTRAL_WINDOW/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/SPECTRAL_WINDOW/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_3.gc.tbl/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/ANTENNA/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/ANTENNA/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/ANTENNA/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/ANTENNA/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/ANTENNA/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/ANTENNA/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/ANTENNA/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/ANTENNA/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/FIELD/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/FIELD/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/FIELD/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/FIELD/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/FIELD/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/FIELD/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/FIELD/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/FIELD/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/FIELD/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/FIELD/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/HISTORY/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/HISTORY/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/HISTORY/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/HISTORY/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/HISTORY/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/HISTORY/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/HISTORY/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/HISTORY/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/OBSERVATION/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/OBSERVATION/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/OBSERVATION/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/OBSERVATION/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/OBSERVATION/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/OBSERVATION/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/OBSERVATION/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/OBSERVATION/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/SPECTRAL_WINDOW/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/SPECTRAL_WINDOW/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/SPECTRAL_WINDOW/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/SPECTRAL_WINDOW/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/SPECTRAL_WINDOW/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/SPECTRAL_WINDOW/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/SPECTRAL_WINDOW/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/SPECTRAL_WINDOW/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/SPECTRAL_WINDOW/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/SPECTRAL_WINDOW/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_4.opac.tbl/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/ANTENNA/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/ANTENNA/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/ANTENNA/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/ANTENNA/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/ANTENNA/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/ANTENNA/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/ANTENNA/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/ANTENNA/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/FIELD/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/FIELD/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/FIELD/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/FIELD/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/FIELD/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/FIELD/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/FIELD/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/FIELD/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/FIELD/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/FIELD/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/HISTORY/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/HISTORY/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/HISTORY/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/HISTORY/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/HISTORY/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/HISTORY/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/HISTORY/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/HISTORY/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/OBSERVATION/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/OBSERVATION/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/OBSERVATION/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/OBSERVATION/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/OBSERVATION/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/OBSERVATION/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/OBSERVATION/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/OBSERVATION/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/SPECTRAL_WINDOW/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/SPECTRAL_WINDOW/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/SPECTRAL_WINDOW/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/SPECTRAL_WINDOW/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/SPECTRAL_WINDOW/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/SPECTRAL_WINDOW/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/SPECTRAL_WINDOW/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/SPECTRAL_WINDOW/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/SPECTRAL_WINDOW/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/SPECTRAL_WINDOW/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_priorcals.s5_5.rq.tbl/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/ANTENNA/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/ANTENNA/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/ANTENNA/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/ANTENNA/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/ANTENNA/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/ANTENNA/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/ANTENNA/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/ANTENNA/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/FIELD/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/FIELD/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/FIELD/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/FIELD/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/FIELD/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/FIELD/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/FIELD/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/FIELD/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/FIELD/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/FIELD/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/HISTORY/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/HISTORY/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/HISTORY/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/HISTORY/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/HISTORY/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/HISTORY/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/HISTORY/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/HISTORY/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/OBSERVATION/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/OBSERVATION/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/OBSERVATION/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/OBSERVATION/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/OBSERVATION/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/OBSERVATION/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/OBSERVATION/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/OBSERVATION/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/SPECTRAL_WINDOW/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/SPECTRAL_WINDOW/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/SPECTRAL_WINDOW/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/SPECTRAL_WINDOW/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/SPECTRAL_WINDOW/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/SPECTRAL_WINDOW/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/SPECTRAL_WINDOW/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/SPECTRAL_WINDOW/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/SPECTRAL_WINDOW/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/SPECTRAL_WINDOW/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts.tbl/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ANTENNA/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ANTENNA/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ANTENNA/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ANTENNA/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ANTENNA/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ANTENNA/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ANTENNA/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ANTENNA/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_CALATMOSPHERE/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_CALATMOSPHERE/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_CALATMOSPHERE/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_CALATMOSPHERE/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_CALATMOSPHERE/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_CALATMOSPHERE/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_CALATMOSPHERE/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_CALATMOSPHERE/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_CALATMOSPHERE/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_CALATMOSPHERE/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_RECEIVER/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_RECEIVER/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_RECEIVER/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_RECEIVER/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_RECEIVER/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_RECEIVER/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_RECEIVER/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_RECEIVER/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_RECEIVER/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/ASDM_RECEIVER/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/CALDEVICE/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/CALDEVICE/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/CALDEVICE/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/CALDEVICE/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/CALDEVICE/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/CALDEVICE/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/CALDEVICE/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/CALDEVICE/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/CALDEVICE/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/CALDEVICE/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/DATA_DESCRIPTION/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/DATA_DESCRIPTION/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/DATA_DESCRIPTION/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/DATA_DESCRIPTION/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/DATA_DESCRIPTION/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/DATA_DESCRIPTION/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/DATA_DESCRIPTION/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/DATA_DESCRIPTION/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FEED/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FEED/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FEED/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FEED/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FEED/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FEED/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FEED/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FEED/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FEED/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FEED/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FIELD/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FIELD/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FIELD/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FIELD/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FIELD/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FIELD/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FIELD/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FIELD/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FIELD/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FIELD/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FLAG_CMD/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FLAG_CMD/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FLAG_CMD/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FLAG_CMD/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FLAG_CMD/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FLAG_CMD/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FLAG_CMD/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/FLAG_CMD/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/HISTORY/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/HISTORY/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/HISTORY/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/HISTORY/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/HISTORY/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/HISTORY/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/HISTORY/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/HISTORY/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/OBSERVATION/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/OBSERVATION/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/OBSERVATION/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/OBSERVATION/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/OBSERVATION/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/OBSERVATION/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/OBSERVATION/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/OBSERVATION/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POINTING/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POINTING/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POINTING/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POINTING/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POINTING/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POINTING/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POINTING/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POINTING/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POINTING/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POINTING/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POLARIZATION/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POLARIZATION/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POLARIZATION/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POLARIZATION/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POLARIZATION/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POLARIZATION/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POLARIZATION/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POLARIZATION/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POLARIZATION/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/POLARIZATION/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/PROCESSOR/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/PROCESSOR/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/PROCESSOR/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/PROCESSOR/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/PROCESSOR/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/PROCESSOR/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/PROCESSOR/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/PROCESSOR/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SOURCE/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SOURCE/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SOURCE/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SOURCE/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SOURCE/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SOURCE/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SOURCE/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SOURCE/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SOURCE/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SOURCE/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SPECTRAL_WINDOW/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SPECTRAL_WINDOW/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SPECTRAL_WINDOW/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SPECTRAL_WINDOW/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SPECTRAL_WINDOW/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SPECTRAL_WINDOW/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SPECTRAL_WINDOW/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SPECTRAL_WINDOW/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SPECTRAL_WINDOW/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SPECTRAL_WINDOW/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/STATE/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/STATE/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/STATE/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/STATE/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/STATE/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/STATE/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/STATE/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/STATE/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSCAL/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSCAL/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSCAL/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSCAL/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSCAL/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSCAL/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSCAL/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSCAL/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSCAL/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSCAL/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSPOWER/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSPOWER/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSPOWER/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSPOWER/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSPOWER/table.f0i b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSPOWER/table.f0i
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSPOWER/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSPOWER/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSPOWER/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/SYSPOWER/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/WEATHER/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/WEATHER/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/WEATHER/table.f0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/WEATHER/table.f0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/WEATHER/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/WEATHER/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/WEATHER/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/WEATHER/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f1
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f10 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f10
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f11 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f11
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f12 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f12
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f13 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f13
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f14 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f14
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f15 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f15
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f16 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f16
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f17 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f17
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f17_TSM1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f17_TSM1
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f18 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f18
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f19 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f19
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f19_TSM0 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f19_TSM0
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f2 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f2
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f20 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f20
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f20_TSM1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f20_TSM1
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f21 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f21
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f21_TSM1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f21_TSM1
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f22 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f22
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f22_TSM1 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f22_TSM1
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f3 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f3
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f4 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f4
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f5 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f5
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f6 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f6
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f7 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f7
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f8 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f8
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f9 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.f9
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.info b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.info
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.lock b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms.hifv_statwt.s2.after.wts/table.lock
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/PPR_restore.xml b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/PPR_restore.xml
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/casa-20240607-151417.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/casa-20240607-151417.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/casa_piperestorescript.py b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/casa_piperestorescript.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/flux.csv b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/flux.csv
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426.context b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426.context
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426.timetracker.bak b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426.timetracker.bak
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426.timetracker.dat b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426.timetracker.dat
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426.timetracker.dir b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426.timetracker.dir
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426.timetracker.json b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426.timetracker.json
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/casa-20240607-151417.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/casa-20240607-151417.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/casa_commands.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/casa_commands.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/casa_pipescript.py b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/casa_pipescript.py
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/css/all.min.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/css/all.min.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/css/font-awesome.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/css/font-awesome.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/css/jquery.fancybox.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/css/jquery.fancybox.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/css/paper-pipeline.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/css/paper-pipeline.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/css/pipeline.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/css/pipeline.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/css/select2-bootstrap.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/css/select2-bootstrap.css
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/css/select2.css b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/css/select2.css
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/FontAwesome.otf b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/FontAwesome.otf
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/fontawesome-webfont.eot b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/fontawesome-webfont.eot
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/fontawesome-webfont.svg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/fontawesome-webfont.svg
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/fontawesome-webfont.ttf b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/fontawesome-webfont.ttf
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/fontawesome-webfont.woff b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/fontawesome-webfont.woff
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/glyphicons-halflings-regular.eot b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/glyphicons-halflings-regular.eot
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/glyphicons-halflings-regular.svg b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/glyphicons-halflings-regular.svg
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/glyphicons-halflings-regular.ttf b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/glyphicons-halflings-regular.ttf
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/glyphicons-halflings-regular.woff b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/glyphicons-halflings-regular.woff
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/glyphicons-halflings-regular.woff2 b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/fonts/glyphicons-halflings-regular.woff2
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/img/ajax-loader.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/img/ajax-loader.gif
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/img/almalogo.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/img/almalogo.gif
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/img/almalogo.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/img/almalogo.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/img/evlalogo.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/img/evlalogo.gif
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/img/evlalogo.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/img/evlalogo.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/img/logo.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/img/logo.gif
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/img/nrologo.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/img/nrologo.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/img/vlalogo.gif b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/img/vlalogo.gif
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/img/vlalogo.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/img/vlalogo.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/bootstrap.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/bootstrap.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/d3.v3.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/d3.v3.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/holder.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/holder.js
new file mode 100755
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/jquery-3.3.1.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/jquery-3.3.1.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/jquery.fancybox.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/jquery.fancybox.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/lazyload.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/lazyload.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/pipeline.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/pipeline.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/pipeline_common.min.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/pipeline_common.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/pipeline_plots.min.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/pipeline_plots.min.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/plotcmd.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/plotcmd.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/purl.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/purl.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/select2.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/select2.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/tcleancmd.js b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/resources/js/tcleancmd.js
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/azel.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/azel.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/el_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/el_vs_time.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/field_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/field_vs_time.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/intent_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/intent_vs_time.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/listobs.txt b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/listobs.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/plotants.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/plotants.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/plotants_polarlog.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/plotants_polarlog.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/solar_el_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/solar_el_vs_time.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/spwid_vs_freq.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/spwid_vs_freq.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-1_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-1_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-1.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-1.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-2.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-2.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-3.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-3.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-4.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-4.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-6.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/t2-2-6.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/azel.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/azel.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/el_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/el_vs_time.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/field_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/field_vs_time.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/intent_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/intent_vs_time.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/plotants.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/plotants.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/plotants_polarlog.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/plotants_polarlog.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/solar_el_vs_time.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/solar_el_vs_time.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/spwid_vs_freq.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/spwid_vs_freq.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/uv_coverage.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/uv_coverage.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/weather.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/thumbs/weather.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/uv_coverage.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/uv_coverage.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/weather.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/sessionsession_1/17B-403.sb34574962.eb34577590_000.58035.544146898144.ms/weather.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/stage1/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/stage1/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/stage1/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/stage1/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/stage1/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/stage1/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/stage2/casapy.log b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/stage2/casapy.log
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/stage2/statwt-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary-C-after.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/stage2/statwt-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary-C-after.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/stage2/t2-4m_details-container.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/stage2/t2-4m_details-container.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/stage2/t2-4m_details.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/stage2/t2-4m_details.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/stage2/thumbs/statwt-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary-C-after.png b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/stage2/thumbs/statwt-17B-403.sb34574962.eb34577590_000.58035.544146898144.ms-summary-C-after.png
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t1-1.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t1-1.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t1-2.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t1-2.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t1-3.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t1-3.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t1-4.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t1-4.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t2-1.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t2-1.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t2-3-1m.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t2-3-1m.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t2-3-2m.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t2-3-2m.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t2-3-3m.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t2-3-3m.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t2-3-5m.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t2-3-5m.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t2-3-6m.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t2-3-6m.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t2-4m.html b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/html/t2-4m.html
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/saved_state/result-stage1.pickle b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/saved_state/result-stage1.pickle
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/saved_state/result-stage2.pickle b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/pipeline-20240607T151426/saved_state/result-stage2.pickle
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391
diff --git a/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/xvfb-run.err.txt b/apps/cli/executables/pexable/deliver/test/testresources/restores/tmpfpjeptku/working/xvfb-run.err.txt
new file mode 100644
index 0000000000000000000000000000000000000000..e69de29bb2d1d6434b8b29ae775ad8c2e48c5391