Draft Scientific Document

This document is under active development and subject to significant change at any time. Please do not cite or use the information in any form without contacting the author(s) for additional details.

Josh M. London

Abstract

This document describes the technical details of downloading Aleutian harbor seal telemetry data from the Wildlife Computers data portal. Data are downloaded directly and an archive of each deployment is saved. Data are organized into a ‘data package’ and will, eventually, be uploaded to the Arctic Data Center.

Connect to the Data Portal

Wildlife Computers (Redmond, Washington, USA) provides an API for their data portal that allows us to download the latest telemetry data for any deployment. To facilitate connection and use of this API within R, the wcUtils package has been developed.

The data portal is not a public repository. Data access is controlled by the data owner. Thus, only those users who are either owners of the deployment data or users who have been granted access by the owner can access the API.

The wcUtils package is available for install from GitHub:

if (!require('devtools')) install.packages('devtools')
if (!require('wcUtils')) {
  devtools::install_github('jmlondon/wcUtils')
}
if (!require('tidyverse')) install.packages('tidyverse')

Download KotzEB09 Telemetry

All of the deployments have been labeled within the data portal as ProjectID = AleutPV. We will use that information to only download the relevant data.

# first thing, get deployment data from WCDP
r <- wcUtils::wcPOST()
# get KotzEB09 ids and download the data
aleut_ids <- wcUtils::wcGetProjectIDs(r,project = 'AleutPV')

for (i in 1:length(aleut_ids)) {
  zipfile <- wcUtils::wcGetZip(id = aleut_ids[i])
  file.copy(zipfile,'.',overwrite = TRUE)
  file.rename(file.path(basename(zipfile)),
              file.path(paste(aleut_ids[i],"zip",sep = '.'))
  )
}

The zip files downloaded from the data portal are named based on the unique id assigned within the data portal. For our deployments, we have assigned each a unique DeployID. It would be more informative if we could rename all of these zip files to the assigned DeployID. Eventually, this functionality could be implemented within the wcUtils package and the API, but for now, we’ll just open each zip file and examine the data files to extract the assigned DeployID.

df <- tibble::as_tibble()
for (zipfile in list.files(pattern = ".zip",full.names = TRUE)) {
  summary_name <- grep('*-Summary.csv',
                      unzip(file.path(
                                      basename(zipfile)),
                            list = TRUE)$Name,
                       value = TRUE)
  deployid <- read.csv(unzip(zipfile, files = summary_name))$DeployID
  deployid <- as.character(deployid)
  instr <- read.csv(unzip(zipfile, files = summary_name))$Instr
  instr <- as.character(instr)
  first_tx <- read.csv(unzip(zipfile, files = summary_name))$LatestXmitTime
  first_tx <- as.character(first_tx)
  last_tx <- read.csv(unzip(zipfile, files = summary_name))$LatestXmitTime
  last_tx <- as.character(last_tx)
  ndays_tx <- read.csv(unzip(zipfile, files = summary_name))$XmitDays
  ndays_tx <- as.character(ndays_tx)
  
  file.remove(summary_name)
  file.rename(file.path(zipfile),
              file.path(paste(deployid,"zip",sep = '.'))
  )
  
  df <- df %>% dplyr::bind_rows(list(filename = paste(deployid,"zip",sep = '.'),
                 instrument = instr,
                 "first transmission" = first_tx,
                 "last transmission" = last_tx,
                 "no. days" = ndays_tx
                 ))
}

List of Archive Files

df %>% knitr::kable(booktabs = TRUE,
  caption = 'Files and Associated Key Deployment Statistics')
Table 1: Files and Associated Key Deployment Statistics
filename instrument first transmission last transmission no. days
PV2014_2001_10A0193.zip Mk10 04:31:33 08-Apr-2015 04:31:33 08-Apr-2015 217
PV2014_2001_13U0082.zip UT 14:32:19 30-Dec-2014 14:32:19 30-Dec-2014 119
PV2014_2014_14U0285.zip UT 01:03:04 27-Mar-2015 01:03:04 27-Mar-2015 205
PV2014_2005_10A0199.zip Mk10 22:21:47 16-Nov-2015 22:21:47 16-Nov-2015 440
PV2014_2016_10A0586.zip Mk10 00:04:08 28-Apr-2015 00:04:08 28-Apr-2015 237
PV2014_2002_13U0144.zip UT 21:30:38 19-Sep-2014 21:30:38 19-Sep-2014 17
PV2014_2015_13U0115.zip UT 23:56:29 30-Jan-2015 23:56:29 30-Jan-2015 150
PV2014_2017_13U0113.zip UT 01:35:01 06-Mar-2015 01:35:01 06-Mar-2015 184
PV2014_2003_13U0076.zip UT 23:55:45 25-Jan-2015 23:55:45 25-Jan-2015 145
PV2014_2013_13U0146.zip UT 13:38:19 19-Nov-2014 13:38:19 19-Nov-2014 77
PV2014_2004_14U0268.zip UT 17:06:07 10-Jul-2015 17:06:07 10-Jul-2015 310
PV2014_2017_14A0114.zip Mk10 15:33:38 08-Apr-2016 15:33:38 08-Apr-2016 584
PV2014_2003_14A0117.zip Mk10 03:27:44 23-Jan-2017 03:27:44 23-Jan-2017 873
PV2014_2014_14A0119.zip Mk10 08:20:11 17-May-2015 08:20:11 17-May-2015 256
PV2014_2002_13A0249.zip Mk10 18:30:04 10-Oct-2015 18:30:04 10-Oct-2015 403
PV2014_2015_14A0118.zip Mk10 23:42:02 23-Nov-2016 23:42:02 23-Nov-2016 813
PV2014_2006_09A0897.zip Mk10 15:33:00 14-May-2015 15:33:00 14-May-2015 249
PV2014_2018_14U0303.zip UT 18:42:42 24-Jul-2015 18:42:42 24-Jul-2015 320
PV2014_2006_14U0278.zip UT 02:17:29 14-Aug-2016 02:17:29 14-Aug-2016 706
PV2014_2019_10A0191.zip Mk10 09:33:19 14-Apr-2015 09:33:19 14-Apr-2015 217
PV2014_2007_09A0900.zip Mk10 05:20:33 22-Feb-2015 05:20:33 22-Feb-2015 166
PV2014_2018_14A0116.zip Mk10 02:50:18 23-Mar-2015 02:50:18 23-Mar-2015 196
PV2014_2019_14U0297.zip UT 18:27:19 20-Apr-2015 18:27:19 20-Apr-2015 223
PV2014_2020_14U0287.zip UT 01:44:10 12-Jan-2015 01:44:10 12-Jan-2015 124
PV2014_2020_14A0115.zip Mk10 05:05:31 08-Apr-2015 05:05:31 08-Apr-2015 210
PV2015_1000_14A0795.zip Mk10 16:42:41 25-Jan-2016 16:42:41 25-Jan-2016 140
PV2015_1001_14A0841.zip Mk10 09:31:01 02-Dec-2015 09:31:01 02-Dec-2015 85
PV2015_1001_14U0338.zip UT 13:31:28 26-Sep-2018 13:31:28 26-Sep-2018 1114
PV2015_1002_14U0275.zip UT 23:28:53 12-Jun-2016 23:28:53 12-Jun-2016 279
PV2015_1004_14A0838.zip Mk10 03:14:41 25-Dec-2015 03:14:41 25-Dec-2015 107
PV2015_1006_14A0784.zip Mk10 02:56:47 03-Mar-2016 02:56:47 03-Mar-2016 176
PV2015_1005_14A0843.zip Mk10 21:01:46 22-Nov-2015 21:01:46 22-Nov-2015 75
PV2015_1006_14U0357.zip UT 09:51:49 12-Jun-2017 09:51:49 12-Jun-2017 642
PV2015_1003_14U0351.zip UT 14:29:40 24-Oct-2016 14:29:40 24-Oct-2016 412
PV2015_1008_14A0822.zip Mk10 05:36:05 19-Feb-2016 05:36:05 19-Feb-2016 163
PV2015_1007_14A0852.zip Mk10 07:06:24 02-May-2016 07:06:24 02-May-2016 236
PV2015_1004_14U0296.zip UT 04:59:33 24-Dec-2015 04:59:33 24-Dec-2015 106
PV2015_1008_14U0371.zip UT 23:18:38 09-Mar-2016 23:18:38 09-Mar-2016 182
PV2015_1010_14A0830.zip Mk10 17:54:14 12-Jan-2016 17:54:14 12-Jan-2016 124
PV2015_1012_14U0283.zip UT 22:05:31 28-Oct-2015 22:05:31 28-Oct-2015 47
PV2015_1011_14U0372.zip UT 23:51:39 02-Nov-2015 23:51:39 02-Nov-2015 52
PV2015_1010_14U0298.zip UT 22:09:50 16-Mar-2016 22:09:50 16-Mar-2016 187
PV2015_1014_14A0796.zip Mk10 17:54:05 22-Feb-2016 17:54:05 22-Feb-2016 164
PV2015_1015_14A0807.zip Mk10 08:14:03 11-Mar-2016 08:14:03 11-Mar-2016 181
PV2015_1016_14A0808.zip Mk10 23:42:15 21-Feb-2016 23:42:15 21-Feb-2016 163
PV2015_1016_14U0295.zip UT 22:10:23 15-Mar-2016 22:10:23 15-Mar-2016 186
PV2015_1015_14U0365.zip UT 22:44:00 05-Dec-2015 22:44:00 05-Dec-2015 85
PV2015_1013_14U0374.zip UT 18:36:00 20-Dec-2015 18:36:00 20-Dec-2015 99
PV2015_1020_14A0831.zip Mk10 17:50:44 03-Dec-2016 17:50:44 03-Dec-2016 448
PV2015_1021_14A0575.zip Mk10 04:27:09 10-Jan-2016 04:27:09 10-Jan-2016 119
PV2015_1022_14A0786.zip Mk10 07:22:04 09-Feb-2016 07:22:04 09-Feb-2016 149
PV2015_1017_14U0263.zip UT 06:03:18 31-Jul-2016 06:03:18 31-Jul-2016 322
PV2015_1020_14U0358.zip UT 15:08:46 07-Oct-2016 15:08:46 07-Oct-2016 390
PV2015_1019_14U0293.zip UT 22:27:36 15-Mar-2016 22:27:36 15-Mar-2016 184
PV2015_1023_14A0031.zip Mk10 08:21:30 03-Nov-2015 08:21:30 03-Nov-2015 50
PV2015_1023_14U0301.zip UT 00:02:13 15-Oct-2015 00:02:13 15-Oct-2015 31
PV2015_1014_14U0368.zip UT 15:50:09 29-Aug-2016 15:50:09 29-Aug-2016 350
PV2015_1024_14A0787.zip Mk10 09:28:58 27-Feb-2016 09:28:58 27-Feb-2016 163
PV2015_1025_14A0820.zip Mk10 15:39:51 15-Mar-2016 15:39:51 15-Mar-2016 181
PV2015_1024_14U0349.zip UT 17:42:06 24-Aug-2016 17:42:06 24-Aug-2016 343
PV2015_1025_14U0346.zip UT 02:06:23 29-Mar-2016 02:06:23 29-Mar-2016 193
PV2015_1002_06A1348.zip Mk10 15:01:28 12-Mar-2016 15:01:28 12-Mar-2016 187
PV2015_1003_14A0109.zip Mk10 09:47:02 09-May-2017 09:47:02 09-May-2017 608
PV2015_1009_14A0809.zip Mk10 21:54:39 17-Mar-2016 21:54:39 17-Mar-2016 191
PV2015_1013_14A0122.zip Mk10 05:59:37 09-May-2016 05:59:37 09-May-2016 241
PV2015_1017_14A0121.zip Mk10 09:15:51 20-Jan-2016 09:15:51 20-Jan-2016 130
PV2015_1026_14A0834.zip Mk10 19:41:20 23-Feb-2016 19:41:20 23-Feb-2016 157
PV2015_1026_14U0359.zip UT 21:13:05 11-May-2016 21:13:05 11-May-2016 234
PV2015_1027_14A0791.zip Mk10 05:02:46 06-Mar-2016 05:02:46 06-Mar-2016 167
PV2015_1028_14A0837.zip Mk10 07:06:04 29-Mar-2016 07:06:04 29-Mar-2016 190
PV2015_1027_14U0291.zip UT 07:48:28 22-Feb-2016 07:48:28 22-Feb-2016 154
PV2015_1028_14U0354.zip UT 21:18:40 06-Jan-2016 21:18:40 06-Jan-2016 108
PV2015_1030_14A0846.zip Mk10 20:00:21 08-Feb-2016 20:00:21 08-Feb-2016 140
PV2015_1029_14A0798.zip Mk10 05:02:58 13-Aug-2017 05:02:58 13-Aug-2017 691
PV2015_1030_14U0269.zip UT 23:34:21 14-Oct-2015 23:34:21 14-Oct-2015 22
PV2015_1029_14U0302.zip UT 20:10:17 19-Oct-2015 20:10:17 19-Oct-2015 3
PV2016_3010_15U2840.zip UT 04:07:18 15-Aug-2017 04:07:18 15-Aug-2017 335
PV2016_3004_15U2966.zip UT 22:14:46 12-Jul-2017 22:14:46 12-Jul-2017 302
PV2016_3009_16U0296.zip UT 21:51:26 10-Apr-2017 21:51:26 10-Apr-2017 209
PV2016_3001_16A0227.zip Mk10 06:19:18 27-Jun-2017 06:19:18 27-Jun-2017 287
PV2016_3002_15A0892.zip Mk10 08:00:03 30-Oct-2016 08:00:03 30-Oct-2016 47
PV2016_3003_16U1213.zip UT 17:54:42 15-Jan-2017 17:54:42 15-Jan-2017 125
PV2016_3003_15A0889.zip Mk10 05:30:57 20-Aug-2018 05:30:57 20-Aug-2018 706
PV2016_3004_15A0890.zip Mk10 16:11:07 14-Sep-2016 16:11:07 14-Sep-2016 1
PV2016_3005_16U1212.zip UT 15:29:46 17-Jul-2017 15:29:46 17-Jul-2017 307
PV2016_3005_15A0887.zip Mk10 04:42:46 27-Apr-2017 04:42:46 27-Apr-2017 226
PV2014_2005_R1_15A0888.zip Mk10 08:57:03 03-Oct-2016 08:57:03 03-Oct-2016 20
PV2016_3007_16A0235.zip Mk10 09:19:31 20-Sep-2016 09:19:31 20-Sep-2016 7
PV2016_3008_16U1851.zip UT 02:44:06 12-Oct-2017 02:44:06 12-Oct-2017 393
PV2016_3008_16A0233.zip Mk10 06:25:40 16-Oct-2016 06:25:40 16-Oct-2016 33
PV2016_3009_16A0236.zip Mk10 13:50:45 17-May-2018 13:50:45 17-May-2018 611
PV2016_3010_16A0220.zip Mk10 05:59:36 31-Oct-2016 05:59:36 31-Oct-2016 48
PV2016_3001_15U2973.zip UT 04:05:43 24-Jun-2017 04:05:43 24-Jun-2017 283
PV2016_3002_16U0300.zip UT 02:05:40 03-Feb-2017 02:05:40 03-Feb-2017 142
PV2014_2005_R1_14U0356.zip UT 21:18:49 30-Sep-2017 21:18:49 30-Sep-2017 382
PV2016_3007_16U1822.zip UT 15:41:24 09-Jan-2017 15:41:24 09-Jan-2017 117
PV2016_3014_16U1211.zip UT 21:44:46 24-Jun-2017 21:44:46 24-Jun-2017 282
PV2016_3013_15U2977.zip UT 17:06:53 25-May-2017 17:06:53 25-May-2017 251
PV2016_3012_15U2976.zip UT 22:37:20 16-Nov-2016 22:37:20 16-Nov-2016 62
PV2016_3011_15A0894.zip Mk10 02:25:46 13-Aug-2017 02:25:46 13-Aug-2017 331
PV2016_3013_15A0893.zip Mk10 06:25:20 27-Jan-2017 06:25:20 27-Jan-2017 133
PV2016_3014_16A0221.zip Mk10 02:19:20 13-Apr-2017 02:19:20 13-Apr-2017 209
PV2016_3012_15A0885.zip Mk10 09:32:17 09-Oct-2016 09:32:17 09-Oct-2016 23
PV2016_3018_16U0297.zip UT 07:05:57 04-May-2017 07:05:57 04-May-2017 229
PV2016_3011_16U1831.zip UT 06:58:46 19-Aug-2017 06:58:46 19-Aug-2017 334
PV2016_3015_16A0237.zip Mk10 09:28:54 17-Sep-2016 09:28:54 17-Sep-2016 0
PV2016_3016_16A0230.zip Mk10 05:15:23 22-Sep-2016 05:15:23 22-Sep-2016 5
PV2016_3017_16U1849.zip UT 23:26:00 02-May-2017 23:26:00 02-May-2017 228
PV2016_3017_16A0229.zip Mk10 08:35:52 31-Oct-2016 08:35:52 31-Oct-2016 44
PV2016_3018_16A0231.zip Mk10 16:32:30 30-Sep-2016 16:32:30 30-Sep-2016 14
PV2016_3016_16U1810.zip UT 08:26:33 13-Aug-2017 08:26:33 13-Aug-2017 327
PV2016_3021_15U2979.zip UT 22:24:12 03-Jun-2017 22:24:12 03-Jun-2017 256
PV2016_3021_15A0891.zip Mk10 05:38:39 19-Mar-2017 05:38:39 19-Mar-2017 179
PV2016_3020_16U1820.zip UT 02:52:36 20-Nov-2016 02:52:36 20-Nov-2016 60
PV2016_3019_16A0222.zip Mk10 05:22:50 04-May-2017 05:22:50 04-May-2017 225
PV2016_3020_15A0907.zip Mk10 05:14:57 20-Nov-2016 05:14:57 20-Nov-2016 60
PV2016_3025_15U2978.zip UT 02:01:52 20-Jul-2017 02:01:52 20-Jul-2017 301
PV2016_3023_16A0223.zip Mk10 08:34:48 01-Mar-2017 08:34:48 01-Mar-2017 160
PV2016_3024_15A0909.zip Mk10 10:36:11 19-Aug-2017 10:36:11 19-Aug-2017 331
PV2016_3025_15A0914.zip Mk10 04:43:49 01-Oct-2016 04:43:49 01-Oct-2016 9
PV2016_3022_16A0232.zip Mk10 18:32:24 28-Oct-2016 18:32:24 28-Oct-2016 37
PV2016_3026_15A0906.zip Mk10 10:24:36 22-Feb-2017 10:24:36 22-Feb-2017 152
PV2016_3027_15A0886.zip Mk10 09:47:02 11-May-2017 09:47:02 11-May-2017 230
PV2016_3028_15A0911.zip Mk10 08:27:58 02-Oct-2017 08:27:58 02-Oct-2017 374
PV2016_3029_15A0912.zip Mk10 15:01:06 28-Apr-2017 15:01:06 28-Apr-2017 217
PV2016_3030_15A0913.zip Mk10 06:16:39 02-May-2017 06:16:39 02-May-2017 221
PV2016_3030_15U2967.zip UT 04:07:57 02-Jul-2017 04:07:57 02-Jul-2017 281
PV2016_3024_16U1852.zip UT 22:31:02 14-Feb-2017 22:31:02 14-Feb-2017 144
PV2016_3023_16U0215.zip UT 19:54:00 08-Jul-2017 19:54:00 08-Jul-2017 288
PV2016_3022_16U1828.zip UT 21:45:09 26-Aug-2017 21:45:09 26-Aug-2017 336
PV2016_3027_16U1814.zip UT 23:40:07 07-Apr-2017 23:40:07 07-Apr-2017 195
PV2016_3031_16A0225.zip Mk10 05:36:14 08-Mar-2017 05:36:14 08-Mar-2017 163
PV2016_3032_16A0228.zip Mk10 04:43:32 15-Mar-2017 04:43:32 15-Mar-2017 169
PV2016_3031_15U2843.zip UT 19:15:25 04-Aug-2017 19:15:25 04-Aug-2017 311
PV2016_3026_14U0361.zip UT 20:58:05 18-Oct-2016 20:58:05 18-Oct-2016 19
PV2016_3033_14U0350.zip UT 15:09:15 12-Jan-2017 15:09:15 12-Jan-2017 105
PV2016_3035_15U2074.zip UT 12:21:28 27-Dec-2016 12:21:28 27-Dec-2016 88
PV2016_3033_15A0908.zip Mk10 06:07:34 16-Jan-2017 06:07:34 16-Jan-2017 108
PV2016_3034_15A0915.zip Mk10 02:45:08 06-Oct-2016 02:45:08 06-Oct-2016 6
PV2016_3035_15A0910.zip Mk10 09:26:22 14-Nov-2016 09:26:22 14-Nov-2016 45
PV2016_3034_16U1809.zip UT 21:43:38 04-Oct-2016 21:43:38 04-Oct-2016 3
PV2016_3032_16U1826.zip UT 18:47:19 08-Jul-2017 18:47:19 08-Jul-2017 283
PV2016_3019_16U1829.zip UT 05:11:53 25-Apr-2017 05:11:53 25-Apr-2017 215
PV2014_2001_10A0193.zip Mk10 04:31:33 08-Apr-2015 04:31:33 08-Apr-2015 217
PV2014_2001_13U0082.zip UT 14:32:19 30-Dec-2014 14:32:19 30-Dec-2014 119
PV2014_2002_13A0249.zip Mk10 18:30:04 10-Oct-2015 18:30:04 10-Oct-2015 403
PV2014_2002_13U0144.zip UT 21:30:38 19-Sep-2014 21:30:38 19-Sep-2014 17
PV2014_2003_13U0076.zip UT 23:55:45 25-Jan-2015 23:55:45 25-Jan-2015 145
PV2014_2003_14A0117.zip Mk10 03:27:44 23-Jan-2017 03:27:44 23-Jan-2017 873
PV2014_2004_14U0268.zip UT 17:06:07 10-Jul-2015 17:06:07 10-Jul-2015 310
PV2014_2005_10A0199.zip Mk10 22:21:47 16-Nov-2015 22:21:47 16-Nov-2015 440
PV2014_2005_14U0356.zip UT 21:18:49 30-Sep-2017 21:18:49 30-Sep-2017 382
PV2014_2005_15A0888.zip Mk10 08:57:03 03-Oct-2016 08:57:03 03-Oct-2016 20
PV2014_2005_R1_14U0356.zip UT 21:18:49 30-Sep-2017 21:18:49 30-Sep-2017 382
PV2014_2005_R1_15A0888.zip Mk10 08:57:03 03-Oct-2016 08:57:03 03-Oct-2016 20
PV2014_2006_09A0897.zip Mk10 15:33:00 14-May-2015 15:33:00 14-May-2015 249
PV2014_2006_14U0278.zip UT 02:17:29 14-Aug-2016 02:17:29 14-Aug-2016 706
PV2014_2007_09A0900.zip Mk10 05:20:33 22-Feb-2015 05:20:33 22-Feb-2015 166
PV2014_2013_13U0146.zip UT 13:38:19 19-Nov-2014 13:38:19 19-Nov-2014 77
PV2014_2014_14A0119.zip Mk10 08:20:11 17-May-2015 08:20:11 17-May-2015 256
PV2014_2014_14U0285.zip UT 01:03:04 27-Mar-2015 01:03:04 27-Mar-2015 205
PV2014_2015_13U0115.zip UT 23:56:29 30-Jan-2015 23:56:29 30-Jan-2015 150
PV2014_2015_14A0118.zip Mk10 23:42:02 23-Nov-2016 23:42:02 23-Nov-2016 813
PV2014_2016_10A0586.zip Mk10 00:04:08 28-Apr-2015 00:04:08 28-Apr-2015 237
PV2014_2017_13U0113.zip UT 01:35:01 06-Mar-2015 01:35:01 06-Mar-2015 184
PV2014_2017_14A0114.zip Mk10 15:33:38 08-Apr-2016 15:33:38 08-Apr-2016 584
PV2014_2018_14A0116.zip Mk10 02:50:18 23-Mar-2015 02:50:18 23-Mar-2015 196
PV2014_2018_14U0303.zip UT 18:42:42 24-Jul-2015 18:42:42 24-Jul-2015 320
PV2014_2019_10A0191.zip Mk10 09:33:19 14-Apr-2015 09:33:19 14-Apr-2015 217
PV2014_2019_14U0297.zip UT 18:27:19 20-Apr-2015 18:27:19 20-Apr-2015 223
PV2014_2020_14A0115.zip Mk10 05:05:31 08-Apr-2015 05:05:31 08-Apr-2015 210
PV2014_2020_14U0287.zip UT 01:44:10 12-Jan-2015 01:44:10 12-Jan-2015 124
PV2015_1000_14A0795.zip Mk10 16:42:41 25-Jan-2016 16:42:41 25-Jan-2016 140
PV2015_1001_14A0841.zip Mk10 09:31:01 02-Dec-2015 09:31:01 02-Dec-2015 85
PV2015_1001_14U0338.zip UT 13:31:28 26-Sep-2018 13:31:28 26-Sep-2018 1114
PV2015_1002_06A1348.zip Mk10 15:01:28 12-Mar-2016 15:01:28 12-Mar-2016 187
PV2015_1002_14U0275.zip UT 23:28:53 12-Jun-2016 23:28:53 12-Jun-2016 279
PV2015_1003_14A0109.zip Mk10 09:47:02 09-May-2017 09:47:02 09-May-2017 608
PV2015_1003_14U0351.zip UT 14:29:40 24-Oct-2016 14:29:40 24-Oct-2016 412
PV2015_1004_14A0838.zip Mk10 03:14:41 25-Dec-2015 03:14:41 25-Dec-2015 107
PV2015_1004_14U0296.zip UT 04:59:33 24-Dec-2015 04:59:33 24-Dec-2015 106
PV2015_1005_14A0843.zip Mk10 21:01:46 22-Nov-2015 21:01:46 22-Nov-2015 75
PV2015_1006_14A0784.zip Mk10 02:56:47 03-Mar-2016 02:56:47 03-Mar-2016 176
PV2015_1006_14U0357.zip UT 09:51:49 12-Jun-2017 09:51:49 12-Jun-2017 642
PV2015_1007_14A0852.zip Mk10 07:06:24 02-May-2016 07:06:24 02-May-2016 236
PV2015_1008_14A0822.zip Mk10 05:36:05 19-Feb-2016 05:36:05 19-Feb-2016 163
PV2015_1008_14U0371.zip UT 23:18:38 09-Mar-2016 23:18:38 09-Mar-2016 182
PV2015_1009_14A0809.zip Mk10 21:54:39 17-Mar-2016 21:54:39 17-Mar-2016 191
PV2015_1010_14A0830.zip Mk10 17:54:14 12-Jan-2016 17:54:14 12-Jan-2016 124
PV2015_1010_14U0298.zip UT 22:09:50 16-Mar-2016 22:09:50 16-Mar-2016 187
PV2015_1011_14U0372.zip UT 23:51:39 02-Nov-2015 23:51:39 02-Nov-2015 52
PV2015_1012_14U0283.zip UT 22:05:31 28-Oct-2015 22:05:31 28-Oct-2015 47
PV2015_1013_14A0122.zip Mk10 05:59:37 09-May-2016 05:59:37 09-May-2016 241
PV2015_1013_14U0374.zip UT 18:36:00 20-Dec-2015 18:36:00 20-Dec-2015 99
PV2015_1014_14A0796.zip Mk10 17:54:05 22-Feb-2016 17:54:05 22-Feb-2016 164
PV2015_1014_14U0368.zip UT 15:50:09 29-Aug-2016 15:50:09 29-Aug-2016 350
PV2015_1015_14A0807.zip Mk10 08:14:03 11-Mar-2016 08:14:03 11-Mar-2016 181
PV2015_1015_14U0365.zip UT 22:44:00 05-Dec-2015 22:44:00 05-Dec-2015 85
PV2015_1016_14A0808.zip Mk10 23:42:15 21-Feb-2016 23:42:15 21-Feb-2016 163
PV2015_1016_14U0295.zip UT 22:10:23 15-Mar-2016 22:10:23 15-Mar-2016 186
PV2015_1017_14A0121.zip Mk10 09:15:51 20-Jan-2016 09:15:51 20-Jan-2016 130
PV2015_1017_14U0263.zip UT 06:03:18 31-Jul-2016 06:03:18 31-Jul-2016 322
PV2015_1019_14U0293.zip UT 22:27:36 15-Mar-2016 22:27:36 15-Mar-2016 184
PV2015_1020_14A0831.zip Mk10 17:50:44 03-Dec-2016 17:50:44 03-Dec-2016 448
PV2015_1020_14U0358.zip UT 15:08:46 07-Oct-2016 15:08:46 07-Oct-2016 390
PV2015_1021_14A0575.zip Mk10 04:27:09 10-Jan-2016 04:27:09 10-Jan-2016 119
PV2015_1022_14A0786.zip Mk10 07:22:04 09-Feb-2016 07:22:04 09-Feb-2016 149
PV2015_1023_14A0031.zip Mk10 08:21:30 03-Nov-2015 08:21:30 03-Nov-2015 50
PV2015_1023_14U0301.zip UT 00:02:13 15-Oct-2015 00:02:13 15-Oct-2015 31
PV2015_1024_14A0787.zip Mk10 09:28:58 27-Feb-2016 09:28:58 27-Feb-2016 163
PV2015_1024_14U0349.zip UT 17:42:06 24-Aug-2016 17:42:06 24-Aug-2016 343
PV2015_1025_14A0820.zip Mk10 15:39:51 15-Mar-2016 15:39:51 15-Mar-2016 181
PV2015_1025_14U0346.zip UT 02:06:23 29-Mar-2016 02:06:23 29-Mar-2016 193
PV2015_1026_14A0834.zip Mk10 19:41:20 23-Feb-2016 19:41:20 23-Feb-2016 157
PV2015_1026_14U0359.zip UT 21:13:05 11-May-2016 21:13:05 11-May-2016 234
PV2015_1027_14A0791.zip Mk10 05:02:46 06-Mar-2016 05:02:46 06-Mar-2016 167
PV2015_1027_14U0291.zip UT 07:48:28 22-Feb-2016 07:48:28 22-Feb-2016 154
PV2015_1028_14A0837.zip Mk10 07:06:04 29-Mar-2016 07:06:04 29-Mar-2016 190
PV2015_1028_14U0354.zip UT 21:18:40 06-Jan-2016 21:18:40 06-Jan-2016 108
PV2015_1029_14A0798.zip Mk10 05:02:58 13-Aug-2017 05:02:58 13-Aug-2017 691
PV2015_1029_14U0302.zip UT 20:10:17 19-Oct-2015 20:10:17 19-Oct-2015 3
PV2015_1030_14A0846.zip Mk10 20:00:21 08-Feb-2016 20:00:21 08-Feb-2016 140
PV2015_1030_14U0269.zip UT 23:34:21 14-Oct-2015 23:34:21 14-Oct-2015 22
PV2015_2020_14U0358.zip UT 15:08:46 07-Oct-2016 15:08:46 07-Oct-2016 390
PV2016_3001_15U2973.zip UT 04:05:43 24-Jun-2017 04:05:43 24-Jun-2017 283
PV2016_3001_16A0227.zip Mk10 06:19:18 27-Jun-2017 06:19:18 27-Jun-2017 287
PV2016_3002_15A0892.zip Mk10 08:00:03 30-Oct-2016 08:00:03 30-Oct-2016 47
PV2016_3002_16U0300.zip UT 02:05:40 03-Feb-2017 02:05:40 03-Feb-2017 142
PV2016_3003_15A0889.zip Mk10 05:30:57 20-Aug-2018 05:30:57 20-Aug-2018 706
PV2016_3003_16U1213.zip UT 17:54:42 15-Jan-2017 17:54:42 15-Jan-2017 125
PV2016_3004_15A0890.zip Mk10 16:11:07 14-Sep-2016 16:11:07 14-Sep-2016 1
PV2016_3004_15U2966.zip UT 22:14:46 12-Jul-2017 22:14:46 12-Jul-2017 302
PV2016_3005_15A0887.zip Mk10 04:42:46 27-Apr-2017 04:42:46 27-Apr-2017 226
PV2016_3005_16U1212.zip UT 15:29:46 17-Jul-2017 15:29:46 17-Jul-2017 307
PV2016_3007_16A0235.zip Mk10 09:19:31 20-Sep-2016 09:19:31 20-Sep-2016 7
PV2016_3007_16U1822.zip UT 15:41:24 09-Jan-2017 15:41:24 09-Jan-2017 117
PV2016_3008_16A0233.zip Mk10 06:25:40 16-Oct-2016 06:25:40 16-Oct-2016 33
PV2016_3008_16U1851.zip UT 02:44:06 12-Oct-2017 02:44:06 12-Oct-2017 393
PV2016_3009_16A0236.zip Mk10 13:50:45 17-May-2018 13:50:45 17-May-2018 611
PV2016_3009_16U0296.zip UT 21:51:26 10-Apr-2017 21:51:26 10-Apr-2017 209
PV2016_3010_15U2840.zip UT 04:07:18 15-Aug-2017 04:07:18 15-Aug-2017 335
PV2016_3010_16A0220.zip Mk10 05:59:36 31-Oct-2016 05:59:36 31-Oct-2016 48
PV2016_3011_15A0894.zip Mk10 02:25:46 13-Aug-2017 02:25:46 13-Aug-2017 331
PV2016_3011_16U1831.zip UT 06:58:46 19-Aug-2017 06:58:46 19-Aug-2017 334
PV2016_3012_15A0885.zip Mk10 09:32:17 09-Oct-2016 09:32:17 09-Oct-2016 23
PV2016_3012_15U2976.zip UT 22:37:20 16-Nov-2016 22:37:20 16-Nov-2016 62
PV2016_3013_15A0893.zip Mk10 06:25:20 27-Jan-2017 06:25:20 27-Jan-2017 133
PV2016_3013_15U2977.zip UT 17:06:53 25-May-2017 17:06:53 25-May-2017 251
PV2016_3014_16A0221.zip Mk10 02:19:20 13-Apr-2017 02:19:20 13-Apr-2017 209
PV2016_3014_16U1211.zip UT 21:44:46 24-Jun-2017 21:44:46 24-Jun-2017 282
PV2016_3015_16A0237.zip Mk10 09:28:54 17-Sep-2016 09:28:54 17-Sep-2016 0
PV2016_3016_16A0230.zip Mk10 05:15:23 22-Sep-2016 05:15:23 22-Sep-2016 5
PV2016_3016_16U1810.zip UT 08:26:33 13-Aug-2017 08:26:33 13-Aug-2017 327
PV2016_3017_16A0229.zip Mk10 08:35:52 31-Oct-2016 08:35:52 31-Oct-2016 44
PV2016_3017_16U1849.zip UT 23:26:00 02-May-2017 23:26:00 02-May-2017 228
PV2016_3018_16A0231.zip Mk10 16:32:30 30-Sep-2016 16:32:30 30-Sep-2016 14
PV2016_3018_16U0297.zip UT 07:05:57 04-May-2017 07:05:57 04-May-2017 229
PV2016_3019_16A0222.zip Mk10 05:22:50 04-May-2017 05:22:50 04-May-2017 225
PV2016_3019_16U1829.zip UT 05:11:53 25-Apr-2017 05:11:53 25-Apr-2017 215
PV2016_3020_.zip Mk10 05:14:57 20-Nov-2016 05:14:57 20-Nov-2016 60
PV2016_3020_15A0907.zip Mk10 05:14:57 20-Nov-2016 05:14:57 20-Nov-2016 60
PV2016_3020_16U1820.zip UT 02:52:36 20-Nov-2016 02:52:36 20-Nov-2016 60
PV2016_3021_15A0891.zip Mk10 05:38:39 19-Mar-2017 05:38:39 19-Mar-2017 179
PV2016_3021_15U2979.zip UT 22:24:12 03-Jun-2017 22:24:12 03-Jun-2017 256
PV2016_3022_16A0232.zip Mk10 18:32:24 28-Oct-2016 18:32:24 28-Oct-2016 37
PV2016_3022_16U1828.zip UT 21:45:09 26-Aug-2017 21:45:09 26-Aug-2017 336
PV2016_3023_16A0223.zip Mk10 08:34:48 01-Mar-2017 08:34:48 01-Mar-2017 160
PV2016_3023_16U0215.zip UT 19:54:00 08-Jul-2017 19:54:00 08-Jul-2017 288
PV2016_3024_15A0909.zip Mk10 10:36:11 19-Aug-2017 10:36:11 19-Aug-2017 331
PV2016_3024_16U1852.zip UT 22:31:02 14-Feb-2017 22:31:02 14-Feb-2017 144
PV2016_3025_15A0914.zip Mk10 04:43:49 01-Oct-2016 04:43:49 01-Oct-2016 9
PV2016_3025_15U2978.zip UT 02:01:52 20-Jul-2017 02:01:52 20-Jul-2017 301
PV2016_3026_14U0361.zip UT 20:58:05 18-Oct-2016 20:58:05 18-Oct-2016 19
PV2016_3026_15A0906.zip Mk10 10:24:36 22-Feb-2017 10:24:36 22-Feb-2017 152
PV2016_3027_15A0886.zip Mk10 09:47:02 11-May-2017 09:47:02 11-May-2017 230
PV2016_3027_16U1814.zip UT 23:40:07 07-Apr-2017 23:40:07 07-Apr-2017 195
PV2016_3028_15A0911.zip Mk10 08:27:58 02-Oct-2017 08:27:58 02-Oct-2017 374
PV2016_3029_15A0912.zip Mk10 15:01:06 28-Apr-2017 15:01:06 28-Apr-2017 217
PV2016_3030_15A0913.zip Mk10 06:16:39 02-May-2017 06:16:39 02-May-2017 221
PV2016_3030_15U2967.zip UT 04:07:57 02-Jul-2017 04:07:57 02-Jul-2017 281
PV2016_3031_15U2843.zip UT 19:15:25 04-Aug-2017 19:15:25 04-Aug-2017 311
PV2016_3031_16A0225.zip Mk10 05:36:14 08-Mar-2017 05:36:14 08-Mar-2017 163
PV2016_3032_16A0228.zip Mk10 04:43:32 15-Mar-2017 04:43:32 15-Mar-2017 169
PV2016_3032_16U1826.zip UT 18:47:19 08-Jul-2017 18:47:19 08-Jul-2017 283
PV2016_3033_14U0350.zip UT 15:09:15 12-Jan-2017 15:09:15 12-Jan-2017 105
PV2016_3033_15A0908.zip Mk10 06:07:34 16-Jan-2017 06:07:34 16-Jan-2017 108
PV2016_3034_15A0915.zip Mk10 02:45:08 06-Oct-2016 02:45:08 06-Oct-2016 6
PV2016_3034_16U1809.zip UT 21:43:38 04-Oct-2016 21:43:38 04-Oct-2016 3
PV2016_3035_15A0910.zip Mk10 09:26:22 14-Nov-2016 09:26:22 14-Nov-2016 45
PV2016_3035_15U2074.zip UT 12:21:28 27-Dec-2016 12:21:28 27-Dec-2016 88