Index | Start Time | Stop Time | Max. Elevation | Phase | Primary GS | Type | Tasks | Status |
---|---|---|---|---|---|---|---|---|
160 | 2018-12-29 20:07:05+01:00 | 2018-12-29 20:18:47+01:00 | N/A° | After Sail | N/A | [TBD] | ☑ |
Goal
Telemetry download. Sail exp photos download.
Tasklist
tasks = [
[[tc.SetBitrate(1, BaudRate.BaudRate1200), 5], SendLoop, WaitMode.NoWait],
[[tc.SendBeacon(), 15], SendLoop, WaitMode.NoWait],
[tc.ListFiles(2, '/'), Send, WaitMode.Wait],
# STOP sail deployment by OBC
[tc.StopSailDeployment(3), Send, WaitMode.Wait],
# Telemetry between session 158 and 160 - to estimate lifetime based on battery voltage
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(100, '/telemetry.current', [i for i in range(910, 1900, 100)]), Send, WaitMode.Wait],
[tc.DownloadFile(101, '/telemetry.current', [i for i in range(960, 1900, 100)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(102, '/telemetry.current', [i for i in range(935, 1900, 100)]), Send, WaitMode.Wait],
[tc.DownloadFile(103, '/telemetry.current', [i for i in range(985, 1900, 100)]), Send, WaitMode.Wait],
# Missings of low-res Sail exp photos (after sail deployment)
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(67, '/sail.photo_67', [18]), Send, WaitMode.Wait], # VERY IMPORTANT !!!!
[tc.DownloadFile(45, '/sail.photo_45', [i for i in range(25, 29, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(55, '/sail.photo_55', [i for i in range(25, 32, 1)]), Send, WaitMode.Wait],
# Missing sail.exp chunk
[tc.DownloadFile(199, '/sail.exp', [21]), Send, WaitMode.Wait],
# More telemetry between session 158 and 160
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(104, '/telemetry.current', [i for i in range(922, 1900, 100)]), Send, WaitMode.Wait],
[tc.DownloadFile(105, '/telemetry.current', [i for i in range(947, 1900, 100)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(106, '/telemetry.current', [i for i in range(972, 1900, 100)]), Send, WaitMode.Wait],
[tc.DownloadFile(107, '/telemetry.current', [i for i in range(997, 1900, 100)]), Send, WaitMode.Wait],
# High-res photo after sail deployment
[tc.DownloadFile(87, '/sail.photo_87', [i for i in range(0, 20, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(88, '/sail.photo_87', [i for i in range(20, 40, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(89, '/sail.photo_87', [i for i in range(40, 60, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(90, '/sail.photo_87', [i for i in range(60, 80, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(91, '/sail.photo_87', [i for i in range(80, 100, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(92, '/sail.photo_87', [i for i in range(100, 114, 1)]), Send, WaitMode.Wait],
# Low-res photos just before and after sail deployment
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(11, '/sail.photo_11', [i for i in range(0, 8, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(13, '/sail.photo_13', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(14, '/sail.photo_13', [i for i in range(15, 29, 1)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(15, '/sail.photo_15', [i for i in range(0, 16, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(16, '/sail.photo_15', [i for i in range(16, 33, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(17, '/sail.photo_17', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(18, '/sail.photo_17', [i for i in range(15, 29, 1)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(19, '/sail.photo_19', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(20, '/sail.photo_19', [i for i in range(15, 33, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(21, '/sail.photo_21', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(22, '/sail.photo_21', [i for i in range(15, 34, 1)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(23, '/sail.photo_23', [i for i in range(0, 18, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(24, '/sail.photo_23', [i for i in range(18, 36, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(25, '/sail.photo_25', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(26, '/sail.photo_25', [i for i in range(15, 34, 1)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(27, '/sail.photo_27', [i for i in range(0, 17, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(28, '/sail.photo_27', [i for i in range(17, 34, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(29, '/sail.photo_29', [i for i in range(0, 17, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(30, '/sail.photo_29', [i for i in range(17, 33, 1)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(31, '/sail.photo_31', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(32, '/sail.photo_31', [i for i in range(15, 29, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(33, '/sail.photo_33', [i for i in range(0, 22, 1)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(35, '/sail.photo_35', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(37, '/sail.photo_37', [i for i in range(0, 12, 1)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(39, '/sail.photo_39', [i for i in range(0, 21, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(41, '/sail.photo_41', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(42, '/sail.photo_41', [i for i in range(15, 32, 1)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(43, '/sail.photo_43', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(44, '/sail.photo_43', [i for i in range(15, 34, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(47, '/sail.photo_47', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(48, '/sail.photo_47', [i for i in range(15, 30, 1)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(49, '/sail.photo_49', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(50, '/sail.photo_49', [i for i in range(15, 30, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(51, '/sail.photo_51', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(52, '/sail.photo_51', [i for i in range(15, 32, 1)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(53, '/sail.photo_53', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(54, '/sail.photo_53', [i for i in range(15, 35, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(57, '/sail.photo_57', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(58, '/sail.photo_57', [i for i in range(15, 31, 1)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(59, '/sail.photo_59', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(60, '/sail.photo_59', [i for i in range(15, 29, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(61, '/sail.photo_61', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(62, '/sail.photo_61', [i for i in range(15, 27, 1)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(63, '/sail.photo_63', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(64, '/sail.photo_63', [i for i in range(15, 27, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(65, '/sail.photo_65', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(66, '/sail.photo_65', [i for i in range(15, 27, 1)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(69, '/sail.photo_69', [i for i in range(0, 22, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(71, '/sail.photo_71', [i for i in range(0, 23, 1)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(73, '/sail.photo_73', [i for i in range(0, 23, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(75, '/sail.photo_75', [i for i in range(0, 21, 1)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(77, '/sail.photo_77', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(78, '/sail.photo_77', [i for i in range(15, 26, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(79, '/sail.photo_79', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(80, '/sail.photo_79', [i for i in range(15, 27, 1)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(81, '/sail.photo_81', [i for i in range(0, 15, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(82, '/sail.photo_81', [i for i in range(15, 30, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(83, '/sail.photo_83', [i for i in range(0, 16, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(84, '/sail.photo_83', [i for i in range(16, 33, 1)]), Send, WaitMode.Wait],
[tc.SendBeacon(), Send, WaitMode.NoWait],
[tc.DownloadFile(85, '/sail.photo_85', [i for i in range(0, 18, 1)]), Send, WaitMode.Wait],
[tc.DownloadFile(86, '/sail.photo_85', [i for i in range(18, 36, 1)]), Send, WaitMode.Wait],
[[tc.SendBeacon(), 15], SendLoop, WaitMode.NoWait],
]
Analyzer Output
======================================= General =======================================
======================== Resources utilization for THIS session ========================
# Name Is Current Session Session Session Session Session Session Notes
scheduled? bitrate downlink downlink uplink uplink power power
[bps] frames duration frames duration budget budget
count [s] count [s] energy mean
[mWh] power
[mW]
--- ------------------ ------------ --------- ---------- ---------- --------- ---------- --------- --------- ---------------------------------------------------------------------
1 SetBitrate False 1200 1 0.45 1 1.03 0.4 N/A [36m[Info] In SendLoop mode - a telecommand in every .[0m
2 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A [36m[Info] In SendLoop mode - a telecommand in every .[0m
3 ListFiles False 1200 5 8.17 1 1.04 6.8 N/A [33m[Warning] Waiting is not recommended[0m
4 StopSailDeployment False 1200 1 0.45 1 1.03 0.4 N/A [33m[Warning] Waiting is not recommended[0m
[33m[Warning] This telecommand disables automatic sail deployment in OBC[0m
5 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
6 DownloadFile False 1200 10 15.9 1 1.43 13.3 N/A
7 DownloadFile False 1200 10 15.9 1 1.43 13.3 N/A
8 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
9 DownloadFile False 1200 10 15.9 1 1.43 13.3 N/A
10 DownloadFile False 1200 10 15.9 1 1.43 13.3 N/A
11 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
12 DownloadFile False 1200 1 1.98 1 1.16 1.7 N/A
13 DownloadFile False 1200 4 6.62 1 1.24 5.5 N/A
14 DownloadFile False 1200 7 11.26 1 1.32 9.4 N/A
15 DownloadFile False 1200 1 1.98 1 1.13 1.7 N/A
16 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
17 DownloadFile False 1200 10 15.9 1 1.43 13.3 N/A
18 DownloadFile False 1200 10 15.9 1 1.43 13.3 N/A
19 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
20 DownloadFile False 1200 10 15.9 1 1.43 13.3 N/A
21 DownloadFile False 1200 10 15.9 1 1.43 13.3 N/A
22 DownloadFile False 1200 20 31.37 1 1.67 26.1 N/A
23 DownloadFile False 1200 20 31.37 1 1.67 26.1 N/A
24 DownloadFile False 1200 20 31.37 1 1.67 26.1 N/A
25 DownloadFile False 1200 20 31.37 1 1.67 26.1 N/A
26 DownloadFile False 1200 20 31.37 1 1.67 26.1 N/A
27 DownloadFile False 1200 14 22.09 1 1.51 18.4 N/A
28 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
29 DownloadFile False 1200 8 12.81 1 1.35 10.7 N/A
30 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
31 DownloadFile False 1200 14 22.09 1 1.51 18.4 N/A
32 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
33 DownloadFile False 1200 16 25.18 1 1.56 21 N/A
34 DownloadFile False 1200 17 26.73 1 1.59 22.3 N/A
35 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
36 DownloadFile False 1200 14 22.09 1 1.51 18.4 N/A
37 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
38 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
39 DownloadFile False 1200 18 28.27 1 1.61 23.6 N/A
40 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
41 DownloadFile False 1200 19 29.82 1 1.64 24.8 N/A
42 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
43 DownloadFile False 1200 18 28.27 1 1.61 23.6 N/A
44 DownloadFile False 1200 18 28.27 1 1.61 23.6 N/A
45 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
46 DownloadFile False 1200 19 29.82 1 1.64 24.8 N/A
47 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
48 DownloadFile False 1200 17 26.73 1 1.59 22.3 N/A
49 DownloadFile False 1200 17 26.73 1 1.59 22.3 N/A
50 DownloadFile False 1200 17 26.73 1 1.59 22.3 N/A
51 DownloadFile False 1200 16 25.18 1 1.56 21 N/A
52 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
53 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
54 DownloadFile False 1200 14 22.09 1 1.51 18.4 N/A
55 DownloadFile False 1200 22 34.46 1 1.72 28.7 N/A
56 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
57 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
58 DownloadFile False 1200 12 18.99 1 1.45 15.8 N/A
59 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
60 DownloadFile False 1200 21 32.91 1 1.69 27.4 N/A
61 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
62 DownloadFile False 1200 17 26.73 1 1.59 22.3 N/A
63 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
64 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
65 DownloadFile False 1200 19 29.82 1 1.64 24.8 N/A
66 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
67 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
68 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
69 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
70 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
71 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
72 DownloadFile False 1200 17 26.73 1 1.59 22.3 N/A
73 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
74 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
75 DownloadFile False 1200 20 31.37 1 1.67 26.1 N/A
76 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
77 DownloadFile False 1200 16 25.18 1 1.56 21 N/A
78 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
79 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
80 DownloadFile False 1200 14 22.09 1 1.51 18.4 N/A
81 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
82 DownloadFile False 1200 12 18.99 1 1.45 15.8 N/A
83 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
84 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
85 DownloadFile False 1200 12 18.99 1 1.45 15.8 N/A
86 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
87 DownloadFile False 1200 12 18.99 1 1.45 15.8 N/A
88 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
89 DownloadFile False 1200 22 34.46 1 1.72 28.7 N/A
90 DownloadFile False 1200 23 36.01 1 1.75 30 N/A
91 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
92 DownloadFile False 1200 23 36.01 1 1.75 30 N/A
93 DownloadFile False 1200 21 32.91 1 1.69 27.4 N/A
94 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
95 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
96 DownloadFile False 1200 11 17.45 1 1.43 14.5 N/A
97 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
98 DownloadFile False 1200 12 18.99 1 1.45 15.8 N/A
99 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
100 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
101 DownloadFile False 1200 15 23.63 1 1.53 19.7 N/A
102 DownloadFile False 1200 16 25.18 1 1.56 21 N/A
103 DownloadFile False 1200 17 26.73 1 1.59 22.3 N/A
104 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A
105 DownloadFile False 1200 18 28.27 1 1.61 23.6 N/A
106 DownloadFile False 1200 18 28.27 1 1.61 23.6 N/A
107 SendBeacon False 1200 1 1.98 1 1.02 1.7 N/A [36m[Info] In SendLoop mode - a telecommand in every .[0m
Session downlink frames count: 1216
Session downlink duration [s]: 1924.05
Session uplink frames count: 107
Session uplink duration [s]: 149.89
Session power budget energy [mWh]: 1603.4
Session power budget mean power [mW]: N/A
================ Resources utilization for SCHEDULED experiments or tasks ================
[Info] No scheduled experiments or tasks.
Artifacts
waterfalls
files
- sail.photo_13.missing
- sail.photo_61.missing
- sail.photo_53.missing
- sail.photo_65
- elka_versions
- downlink_frames.txt
- telemetry.current
- sail.photo_41.missing
- sail.exp
- beacons.txt
- sail.photo_81
- sail.photo_39.missing
- requested_files.txt
- sail.photo_59
- sail.photo_79.missing
- file_list_2.txt
- sail.photo_29.missing
- sail.photo_15.missing
- sail.photo_29
- sail.photo_39
- sail.photo_63
- elka_downlink.frames
- sail.photo_43.missing
- sail.photo_73.missing
- sail.photo_47.missing
- sail.photo_31
- sail.photo_41
- sail.photo_75
- sail.photo_51.missing
- sail.photo_47
- sail.photo_17
- sail.photo_87.missing
- sail.photo_63.missing
- sail.photo_43
- sail.photo_23
- sail.photo_57.missing
- sail.photo_69.missing
- sail.photo_37.missing
- sail.photo_59.missing
- sail.photo_85.missing
- sail.photo_77.missing
- sail.photo_21
- sail.photo_53
- sail.photo_35
- sail.photo_55
- sail.photo_77
- sail.photo_71
- sail.photo_11
- sail.photo_33
- sail.photo_23.missing
- sail.photo_71.missing
- sail.photo_81.missing
- sail.photo_87
- sail.photo_51
- sail.photo_45
- sail.photo_49.missing
- sail.photo_79
- sail.photo_13
- sail.photo_37
- sail.photo_49
- sail.photo_83.missing
- sail.photo_69
- sail.photo_85
- sail.photo_19
- sail.photo_65.missing
- telemetry.current.error
- sail.photo_15
- fp-gs_downlink.frames
- sail.photo_61
- sail.photo_27
- sail.photo_73
- all.frames
- sail.photo_33.missing
- sail.photo_75.missing
- sail.photo_31.missing
- sail.photo_27.missing
- sail.photo_35.missing
- fp-gs_versions
- sail.photo_25
- sail.photo_57
- sail.photo_83
- sail.photo_67
- sail.photo_21.missing
assembled
- sail.photo_13.missing
- sail_photo_57.jpg
- sail.photo_61.missing
- sail.photo_53.missing
- sail.photo_11.missing
- sail.photo_65
- sail_photo_35.jpg
- sail_photo_45.jpg
- sail_photo_75.jpg
- sail_photo_39.jpg
- sail.photo_41.missing
- sail_photo_71.jpg
- sail_photo_51.jpg
- sail.exp
- sail.txt
- sail.photo_81
- sail.photo_39.missing
- sail.csv
- sail.photo_59
- sail_photo_43.jpg
- sail.photo_79.missing
- sail.photo_29.missing
- sail_photo_59.jpg
- sail.photo_15.missing
- sail.photo_29
- sail_photo_49.jpg
- sail.photo_39
- sail.photo_63
- sail.photo_43.missing
- sail_photo_13.jpg
- sail.photo_73.missing
- sail.photo_47.missing
- sail_photo_61.jpg
- sail.photo_31
- sail.photo_41
- sail.photo_75
- sail.photo_51.missing
- sail.photo_47
- sail.photo_17
- sail_photo_85.jpg
- sail.photo_87.missing
- sail.photo_63.missing
- sail_photo_19.jpg
- sail.photo_43
- sail.photo_23
- sail.photo_57.missing
- sail_photo_63.jpg
- sail.photo_69.missing
- sail.photo_37.missing
- sail.photo_59.missing
- sail_photo_55.jpg
- sail.photo_85.missing
- sail.photo_77.missing
- sail.photo_21
- sail.photo_53
- sail.photo_35
- sail_photo_53.jpg
- sail_photo_15.jpg
- sail_photo_21.jpg
- sail.photo_55
- sail_photo_47.jpg
- sail_photo_17.jpg
- sail.photo_77
- sail_photo_23.jpg
- sail.photo_71
- sail.photo_11
- sail.photo_33
- sail.photo_23.missing
- sail.photo_71.missing
- sail.photo_81.missing
- sail.photo_87
- sail_photo_25.jpg
- sail.photo_51
- sail_photo_11.jpg
- sail.photo_45
- sail.photo_49.missing
- sail.photo_79
- sail.photo_13
- sail_photo_79.jpg
- sail.photo_37
- sail.photo_49
- sail_photo_31.jpg
- sail_photo_33.jpg
- sail_photo_81.jpg
- sail.photo_83.missing
- sail.photo_69
- sail.photo_85
- sail.photo_19
- sail.photo_65.missing
- sail_photo_83.jpg
- sail_photo_65.jpg
- sail.photo_15
- sail_photo_41.jpg
- sail_photo_69.jpg
- sail.photo_61
- sail_photo_73.jpg
- sail_photo_77.jpg
- sail.photo_27
- sail.photo_73
- sail_photo_27.jpg
- sail_photo_37.jpg
- sail_photo_67.jpg
- sail.photo_33.missing
- sail.photo_75.missing
- sail_photo_29.jpg
- sail.photo_31.missing
- sail.photo_27.missing
- sail.photo_35.missing
- sail.photo_25
- sail_photo_87.jpg
- sail.photo_57
- sail.photo_83
- sail.photo_67
- sail.photo_21.missing