aboutsummaryrefslogtreecommitdiff
path: root/circuitpython/lib/nrfutil/tests/bdd/genpkg_generate_dfu_package.feature
blob: 7fec533c762347720e8dfe94d32c924809ee3c51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
# Notice:
#   It can be smart to use the function util.generate_options_table_for_cucumber() to generate entries in Examples for
#   the options. It will save you a lot of time :-)

Feature: Generate DFU package
    Scenario Outline: package generation
      Given the user wants to generate a DFU package with application <application>, bootloader <bootloader> and SoftDevice <softdevice> with name <package>
      And with option --application-version <app_ver>
      And with option --dev-revision <dev_rev>
      And with option --dev-type <dev_type>
      And with option --dfu-ver <dfu_ver>
      And with option --sd-req <sd_req>
      And with option --key-file <pem_file>
      When user press enter
      Then the generated DFU package <package> contains correct data

      Examples:
        | application | bootloader                   | softdevice                   | app_ver | dev_rev | dev_type | dfu_ver | sd_req                      | pem_file | package        |
        | blinky.bin  | dfu_test_bootloader_b.hex    | dfu_test_softdevice_b.hex    | none    | none    | none     | not_set | none                        | not_set  | 111_000000.zip |
        | blinky.bin  | dfu_test_bootloader_b.hex    | not_set                      | none    | none    | none     | not_set | none                        | not_set  | 110_000000.zip |
        | blinky.bin  | not_set                      | dfu_test_softdevice_b.hex    | none    | none    | none     | not_set | none                        | not_set  | 101_000000.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | not_set | none                        | not_set  | 100_000000.zip |
        | not_set     | dfu_test_bootloader_b.hex    | dfu_test_softdevice_b.hex    | none    | none    | none     | not_set | none                        | not_set  | 011_000000.zip |
        | not_set     | dfu_test_bootloader_b.hex    | not_set                      | none    | none    | none     | not_set | none                        | not_set  | 010_000000.zip |
        | not_set     | not_set                      | dfu_test_softdevice_b.hex    | none    | none    | none     | not_set | none                        | not_set  | 001_000000.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | not_set | none                        | not_set  | 100_000000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | not_set | none                        | not_set  | 100_000001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xd3    | none    | none     | not_set | none                        | not_set  | 100_000002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | not_set | none                        | not_set  | 100_000010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | not_set | none                        | not_set  | 100_000011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xcb    | not_set | none     | not_set | none                        | not_set  | 100_000012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x4c    | none     | not_set | none                        | not_set  | 100_000020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xb6    | none     | not_set | none                        | not_set  | 100_000021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x07    | 0x22    | none     | not_set | none                        | not_set  | 100_000022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | not_set | none                        | not_set  | 100_000100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | not_set | none                        | not_set  | 100_000101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xdd    | none    | not_set  | not_set | none                        | not_set  | 100_000102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | not_set | none                        | not_set  | 100_000110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | not_set | none                        | not_set  | 100_000111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x19    | not_set | not_set  | not_set | none                        | not_set  | 100_000112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x19    | not_set  | not_set | none                        | not_set  | 100_000120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x92    | not_set  | not_set | none                        | not_set  | 100_000121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x28    | 0xe6    | not_set  | not_set | none                        | not_set  | 100_000122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0xe9     | not_set | none                        | not_set  | 100_000200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0x26     | not_set | none                        | not_set  | 100_000201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xea    | none    | 0xcf     | not_set | none                        | not_set  | 100_000202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0x57     | not_set | none                        | not_set  | 100_000210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x53     | not_set | none                        | not_set  | 100_000211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xbb    | not_set | 0x36     | not_set | none                        | not_set  | 100_000212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x01    | 0x1a     | not_set | none                        | not_set  | 100_000220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x39    | 0x0e     | not_set | none                        | not_set  | 100_000221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x29    | 0x6d    | 0x7b     | not_set | none                        | not_set  | 100_000222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | 0.5     | none                        | not_set  | 100_001000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | 0.5     | none                        | not_set  | 100_001001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x70    | none    | none     | 0.5     | none                        | not_set  | 100_001002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | 0.5     | none                        | not_set  | 100_001010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | 0.5     | none                        | not_set  | 100_001011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x57    | not_set | none     | 0.5     | none                        | not_set  | 100_001012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x2f    | none     | 0.5     | none                        | not_set  | 100_001020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xc9    | none     | 0.5     | none                        | not_set  | 100_001021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x7c    | 0x05    | none     | 0.5     | none                        | not_set  | 100_001022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | 0.5     | none                        | not_set  | 100_001100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | 0.5     | none                        | not_set  | 100_001101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x18    | none    | not_set  | 0.5     | none                        | not_set  | 100_001102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | 0.5     | none                        | not_set  | 100_001110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | 0.5     | none                        | not_set  | 100_001111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xec    | not_set | not_set  | 0.5     | none                        | not_set  | 100_001112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x4d    | not_set  | 0.5     | none                        | not_set  | 100_001120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xa1    | not_set  | 0.5     | none                        | not_set  | 100_001121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xb1    | 0xb1    | not_set  | 0.5     | none                        | not_set  | 100_001122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0x0f     | 0.5     | none                        | not_set  | 100_001200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0x1f     | 0.5     | none                        | not_set  | 100_001201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x75    | none    | 0xf4     | 0.5     | none                        | not_set  | 100_001202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0x72     | 0.5     | none                        | not_set  | 100_001210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x37     | 0.5     | none                        | not_set  | 100_001211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x41    | not_set | 0x02     | 0.5     | none                        | not_set  | 100_001212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xb6    | 0x96     | 0.5     | none                        | not_set  | 100_001220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xaf    | 0x38     | 0.5     | none                        | not_set  | 100_001221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xbe    | 0x81    | 0x37     | 0.5     | none                        | not_set  | 100_001222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | 0.6     | none                        | not_set  | 100_002000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | 0.6     | none                        | not_set  | 100_002001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x7f    | none    | none     | 0.6     | none                        | not_set  | 100_002002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | 0.6     | none                        | not_set  | 100_002010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | 0.6     | none                        | not_set  | 100_002011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x15    | not_set | none     | 0.6     | none                        | not_set  | 100_002012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xb8    | none     | 0.6     | none                        | not_set  | 100_002020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x92    | none     | 0.6     | none                        | not_set  | 100_002021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x6f    | 0xf6    | none     | 0.6     | none                        | not_set  | 100_002022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | 0.6     | none                        | not_set  | 100_002100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | 0.6     | none                        | not_set  | 100_002101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xfd    | none    | not_set  | 0.6     | none                        | not_set  | 100_002102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | 0.6     | none                        | not_set  | 100_002110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | 0.6     | none                        | not_set  | 100_002111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x19    | not_set | not_set  | 0.6     | none                        | not_set  | 100_002112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xfc    | not_set  | 0.6     | none                        | not_set  | 100_002120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xf3    | not_set  | 0.6     | none                        | not_set  | 100_002121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x2c    | 0x97    | not_set  | 0.6     | none                        | not_set  | 100_002122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0x54     | 0.6     | none                        | not_set  | 100_002200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0xe7     | 0.6     | none                        | not_set  | 100_002201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x71    | none    | 0x8c     | 0.6     | none                        | not_set  | 100_002202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0x74     | 0.6     | none                        | not_set  | 100_002210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x4b     | 0.6     | none                        | not_set  | 100_002211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x40    | not_set | 0xd0     | 0.6     | none                        | not_set  | 100_002212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x72    | 0x5c     | 0.6     | none                        | not_set  | 100_002220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x5f    | 0x85     | 0.6     | none                        | not_set  | 100_002221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x6b    | 0x9b    | 0xaf     | 0.6     | none                        | not_set  | 100_002222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | 0.7     | none                        | not_set  | 100_003000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | 0.7     | none                        | not_set  | 100_003001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x0d    | none    | none     | 0.7     | none                        | not_set  | 100_003002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | 0.7     | none                        | not_set  | 100_003010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | 0.7     | none                        | not_set  | 100_003011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x54    | not_set | none     | 0.7     | none                        | not_set  | 100_003012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xfc    | none     | 0.7     | none                        | not_set  | 100_003020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x79    | none     | 0.7     | none                        | not_set  | 100_003021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xb8    | 0x20    | none     | 0.7     | none                        | not_set  | 100_003022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | 0.7     | none                        | not_set  | 100_003100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | 0.7     | none                        | not_set  | 100_003101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xd0    | none    | not_set  | 0.7     | none                        | not_set  | 100_003102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | 0.7     | none                        | not_set  | 100_003110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | 0.7     | none                        | not_set  | 100_003111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x69    | not_set | not_set  | 0.7     | none                        | not_set  | 100_003112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x65    | not_set  | 0.7     | none                        | not_set  | 100_003120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xd2    | not_set  | 0.7     | none                        | not_set  | 100_003121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x48    | 0x65    | not_set  | 0.7     | none                        | not_set  | 100_003122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0x19     | 0.7     | none                        | not_set  | 100_003200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0xe7     | 0.7     | none                        | not_set  | 100_003201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x34    | none    | 0x65     | 0.7     | none                        | not_set  | 100_003202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0x21     | 0.7     | none                        | not_set  | 100_003210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x3b     | 0.7     | none                        | not_set  | 100_003211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x5c    | not_set | 0x1f     | 0.7     | none                        | not_set  | 100_003212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x88    | 0xb3     | 0.7     | none                        | not_set  | 100_003220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xe1    | 0xb5     | 0.7     | none                        | not_set  | 100_003221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x4c    | 0xeb    | 0x4d     | 0.7     | none                        | not_set  | 100_003222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | not_set | not_set                     | not_set  | 100_010000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | not_set | not_set                     | not_set  | 100_010001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x33    | none    | none     | not_set | not_set                     | not_set  | 100_010002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | not_set | not_set                     | not_set  | 100_010010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | not_set | not_set                     | not_set  | 100_010011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x78    | not_set | none     | not_set | not_set                     | not_set  | 100_010012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xf7    | none     | not_set | not_set                     | not_set  | 100_010020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x23    | none     | not_set | not_set                     | not_set  | 100_010021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x06    | 0xf5    | none     | not_set | not_set                     | not_set  | 100_010022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | not_set | not_set                     | not_set  | 100_010100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | not_set | not_set                     | not_set  | 100_010101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x88    | none    | not_set  | not_set | not_set                     | not_set  | 100_010102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | not_set | not_set                     | not_set  | 100_010110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | not_set | not_set                     | not_set  | 100_010111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x15    | not_set | not_set  | not_set | not_set                     | not_set  | 100_010112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x52    | not_set  | not_set | not_set                     | not_set  | 100_010120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x0b    | not_set  | not_set | not_set                     | not_set  | 100_010121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x49    | 0x52    | not_set  | not_set | not_set                     | not_set  | 100_010122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0x66     | not_set | not_set                     | not_set  | 100_010200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0x62     | not_set | not_set                     | not_set  | 100_010201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x1f    | none    | 0xdf     | not_set | not_set                     | not_set  | 100_010202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0x23     | not_set | not_set                     | not_set  | 100_010210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x98     | not_set | not_set                     | not_set  | 100_010211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x28    | not_set | 0x8f     | not_set | not_set                     | not_set  | 100_010212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xce    | 0x5a     | not_set | not_set                     | not_set  | 100_010220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x8d    | 0x50     | not_set | not_set                     | not_set  | 100_010221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x44    | 0xb3    | 0x8f     | not_set | not_set                     | not_set  | 100_010222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | 0.5     | not_set                     | not_set  | 100_011000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | 0.5     | not_set                     | not_set  | 100_011001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x54    | none    | none     | 0.5     | not_set                     | not_set  | 100_011002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | 0.5     | not_set                     | not_set  | 100_011010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | 0.5     | not_set                     | not_set  | 100_011011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xbe    | not_set | none     | 0.5     | not_set                     | not_set  | 100_011012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xaa    | none     | 0.5     | not_set                     | not_set  | 100_011020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xf0    | none     | 0.5     | not_set                     | not_set  | 100_011021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x19    | 0x4a    | none     | 0.5     | not_set                     | not_set  | 100_011022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | 0.5     | not_set                     | not_set  | 100_011100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | 0.5     | not_set                     | not_set  | 100_011101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x74    | none    | not_set  | 0.5     | not_set                     | not_set  | 100_011102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | 0.5     | not_set                     | not_set  | 100_011110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | 0.5     | not_set                     | not_set  | 100_011111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x8b    | not_set | not_set  | 0.5     | not_set                     | not_set  | 100_011112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xc7    | not_set  | 0.5     | not_set                     | not_set  | 100_011120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x02    | not_set  | 0.5     | not_set                     | not_set  | 100_011121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x98    | 0xb1    | not_set  | 0.5     | not_set                     | not_set  | 100_011122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0xe5     | 0.5     | not_set                     | not_set  | 100_011200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0xad     | 0.5     | not_set                     | not_set  | 100_011201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x30    | none    | 0x8d     | 0.5     | not_set                     | not_set  | 100_011202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0x1c     | 0.5     | not_set                     | not_set  | 100_011210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x74     | 0.5     | not_set                     | not_set  | 100_011211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xf6    | not_set | 0xdb     | 0.5     | not_set                     | not_set  | 100_011212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xd9    | 0xe4     | 0.5     | not_set                     | not_set  | 100_011220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x84    | 0x1a     | 0.5     | not_set                     | not_set  | 100_011221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x8c    | 0x4f    | 0xe2     | 0.5     | not_set                     | not_set  | 100_011222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | 0.6     | not_set                     | not_set  | 100_012000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | 0.6     | not_set                     | not_set  | 100_012001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x20    | none    | none     | 0.6     | not_set                     | not_set  | 100_012002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | 0.6     | not_set                     | not_set  | 100_012010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | 0.6     | not_set                     | not_set  | 100_012011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xae    | not_set | none     | 0.6     | not_set                     | not_set  | 100_012012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x1a    | none     | 0.6     | not_set                     | not_set  | 100_012020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x18    | none     | 0.6     | not_set                     | not_set  | 100_012021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x33    | 0x65    | none     | 0.6     | not_set                     | not_set  | 100_012022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | 0.6     | not_set                     | not_set  | 100_012100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | 0.6     | not_set                     | not_set  | 100_012101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x38    | none    | not_set  | 0.6     | not_set                     | not_set  | 100_012102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | 0.6     | not_set                     | not_set  | 100_012110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | 0.6     | not_set                     | not_set  | 100_012111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xe5    | not_set | not_set  | 0.6     | not_set                     | not_set  | 100_012112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x74    | not_set  | 0.6     | not_set                     | not_set  | 100_012120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xc4    | not_set  | 0.6     | not_set                     | not_set  | 100_012121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x45    | 0x51    | not_set  | 0.6     | not_set                     | not_set  | 100_012122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0x64     | 0.6     | not_set                     | not_set  | 100_012200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0x80     | 0.6     | not_set                     | not_set  | 100_012201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x0c    | none    | 0x39     | 0.6     | not_set                     | not_set  | 100_012202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0x96     | 0.6     | not_set                     | not_set  | 100_012210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x33     | 0.6     | not_set                     | not_set  | 100_012211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xba    | not_set | 0xbb     | 0.6     | not_set                     | not_set  | 100_012212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x11    | 0x28     | 0.6     | not_set                     | not_set  | 100_012220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x91    | 0x81     | 0.6     | not_set                     | not_set  | 100_012221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x2b    | 0x60    | 0x0c     | 0.6     | not_set                     | not_set  | 100_012222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | 0.7     | not_set                     | not_set  | 100_013000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | 0.7     | not_set                     | not_set  | 100_013001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xcf    | none    | none     | 0.7     | not_set                     | not_set  | 100_013002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | 0.7     | not_set                     | not_set  | 100_013010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | 0.7     | not_set                     | not_set  | 100_013011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x2f    | not_set | none     | 0.7     | not_set                     | not_set  | 100_013012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xc3    | none     | 0.7     | not_set                     | not_set  | 100_013020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x54    | none     | 0.7     | not_set                     | not_set  | 100_013021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x2c    | 0x67    | none     | 0.7     | not_set                     | not_set  | 100_013022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | 0.7     | not_set                     | not_set  | 100_013100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | 0.7     | not_set                     | not_set  | 100_013101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x04    | none    | not_set  | 0.7     | not_set                     | not_set  | 100_013102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | 0.7     | not_set                     | not_set  | 100_013110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | 0.7     | not_set                     | not_set  | 100_013111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xe6    | not_set | not_set  | 0.7     | not_set                     | not_set  | 100_013112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x68    | not_set  | 0.7     | not_set                     | not_set  | 100_013120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x72    | not_set  | 0.7     | not_set                     | not_set  | 100_013121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x84    | 0x81    | not_set  | 0.7     | not_set                     | not_set  | 100_013122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0xba     | 0.7     | not_set                     | not_set  | 100_013200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0x7d     | 0.7     | not_set                     | not_set  | 100_013201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xb8    | none    | 0x1a     | 0.7     | not_set                     | not_set  | 100_013202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0xff     | 0.7     | not_set                     | not_set  | 100_013210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0xb8     | 0.7     | not_set                     | not_set  | 100_013211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x94    | not_set | 0x9e     | 0.7     | not_set                     | not_set  | 100_013212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xc7    | 0x4b     | 0.7     | not_set                     | not_set  | 100_013220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x80    | 0x20     | 0.7     | not_set                     | not_set  | 100_013221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xb5    | 0x77    | 0xbf     | 0.7     | not_set                     | not_set  | 100_013222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | not_set | 0x9eee,0x7e19,0x1f29        | not_set  | 100_020000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | not_set | 0x48b3                      | not_set  | 100_020001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xc5    | none    | none     | not_set | 0x358c,0x21ba               | not_set  | 100_020002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | not_set | 0xd4a1,0x0744               | not_set  | 100_020010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | not_set | 0xcdc3                      | not_set  | 100_020011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xa4    | not_set | none     | not_set | 0x65ea,0x9a9e,0x167d        | not_set  | 100_020012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x11    | none     | not_set | 0x6b24,0xf50d               | not_set  | 100_020020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x8c    | none     | not_set | 0x7f3f,0x14df               | not_set  | 100_020021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x94    | 0x0e    | none     | not_set | 0x36aa,0x5f86               | not_set  | 100_020022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | not_set | 0x97fc,0x7d68,0x1350        | not_set  | 100_020100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | not_set | 0x4487                      | not_set  | 100_020101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xa9    | none    | not_set  | not_set | 0x9abf                      | not_set  | 100_020102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | not_set | 0xe61d,0x394f               | not_set  | 100_020110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | not_set | 0xf6ab,0x6ed8               | not_set  | 100_020111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x07    | not_set | not_set  | not_set | 0x7d1d                      | not_set  | 100_020112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x85    | not_set  | not_set | 0xfde4,0xd40c,0xe81f        | not_set  | 100_020120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xb0    | not_set  | not_set | 0x14fd,0x2dab               | not_set  | 100_020121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xc5    | 0x16    | not_set  | not_set | 0x2d78,0x08da,0x2505        | not_set  | 100_020122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0xe6     | not_set | 0xbb52                      | not_set  | 100_020200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0x2d     | not_set | 0x748c                      | not_set  | 100_020201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xdc    | none    | 0x54     | not_set | 0xc7c2,0xd360,0xad5b,0x1b87 | not_set  | 100_020202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0x81     | not_set | 0x6b14,0x534f               | not_set  | 100_020210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x47     | not_set | 0x9bf0,0x5d81,0xe2dd,0x02b2 | not_set  | 100_020211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x53    | not_set | 0x96     | not_set | 0x8d27,0x1c8d               | not_set  | 100_020212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x0b    | 0x0f     | not_set | 0x0f66,0xae4b,0xe10e,0x5687 | not_set  | 100_020220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xf5    | 0x9f     | not_set | 0xee32,0x81dd               | not_set  | 100_020221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xce    | 0x39    | 0x77     | not_set | 0xe3fc                      | not_set  | 100_020222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | 0.5     | 0x6c13,0xc805               | not_set  | 100_021000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | 0.5     | 0xa3ef,0xd077,0xa2f5,0x00e7 | not_set  | 100_021001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xcf    | none    | none     | 0.5     | 0xff23,0x5981,0xbedf,0xb817 | not_set  | 100_021002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | 0.5     | 0x238d                      | not_set  | 100_021010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | 0.5     | 0xac00,0xaffa,0xb51c,0x8049 | not_set  | 100_021011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xcb    | not_set | none     | 0.5     | 0xf549,0x0cb6,0xa55b        | not_set  | 100_021012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x8b    | none     | 0.5     | 0xa774,0x2904,0x44ed        | not_set  | 100_021020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x0f    | none     | 0.5     | 0x4f42,0x959d,0x1802,0x7ab4 | not_set  | 100_021021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x2e    | 0xc7    | none     | 0.5     | 0x8dd8,0xc966,0xba0a        | not_set  | 100_021022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | 0.5     | 0x9ae1,0xec05               | not_set  | 100_021100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | 0.5     | 0xe650                      | not_set  | 100_021101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x18    | none    | not_set  | 0.5     | 0x0d63,0x8d8a               | not_set  | 100_021102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | 0.5     | 0x8400,0x49e3               | not_set  | 100_021110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | 0.5     | 0x2ae0,0x08ed,0xb09e,0xdd0c | not_set  | 100_021111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xab    | not_set | not_set  | 0.5     | 0x86f8,0xb4ff,0x6ff7        | not_set  | 100_021112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xa8    | not_set  | 0.5     | 0xbb0e,0x2ffd               | not_set  | 100_021120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x57    | not_set  | 0.5     | 0xe2ad,0xfdda,0x3d3b        | not_set  | 100_021121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x66    | 0x49    | not_set  | 0.5     | 0x8ed0                      | not_set  | 100_021122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0x96     | 0.5     | 0x85e9                      | not_set  | 100_021200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0x53     | 0.5     | 0x7434                      | not_set  | 100_021201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x5f    | none    | 0xa9     | 0.5     | 0xdeab,0xccda,0x7ee3,0x2c2f | not_set  | 100_021202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0x8a     | 0.5     | 0xb7ac,0xc007,0xad41,0xfe30 | not_set  | 100_021210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x28     | 0.5     | 0x0942                      | not_set  | 100_021211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xcd    | not_set | 0x3c     | 0.5     | 0x590d,0x49e9               | not_set  | 100_021212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x08    | 0xe1     | 0.5     | 0xb01e,0xe190,0x4825        | not_set  | 100_021220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x27    | 0x7e     | 0.5     | 0x2fbb                      | not_set  | 100_021221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xf2    | 0x15    | 0xba     | 0.5     | 0x3b61,0x8636               | not_set  | 100_021222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | 0.6     | 0xfc23,0x3777               | not_set  | 100_022000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | 0.6     | 0x7930,0xbc19               | not_set  | 100_022001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x87    | none    | none     | 0.6     | 0x51ee,0x9228               | not_set  | 100_022002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | 0.6     | 0x583c,0x8601               | not_set  | 100_022010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | 0.6     | 0x2a67,0x0283,0xdc4b        | not_set  | 100_022011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xcb    | not_set | none     | 0.6     | 0xa044                      | not_set  | 100_022012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x50    | none     | 0.6     | 0x3afc,0xd36a,0x68c8,0xf66b | not_set  | 100_022020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xa6    | none     | 0.6     | 0xb26b                      | not_set  | 100_022021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x24    | 0x26    | none     | 0.6     | 0x23c6                      | not_set  | 100_022022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | 0.6     | 0xe825                      | not_set  | 100_022100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | 0.6     | 0xbe95                      | not_set  | 100_022101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x28    | none    | not_set  | 0.6     | 0x061e,0x1c6d,0xa02d,0xeb9f | not_set  | 100_022102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | 0.6     | 0xccc6                      | not_set  | 100_022110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | 0.6     | 0x2cf4,0x3dbf,0x3015,0x3a11 | not_set  | 100_022111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x69    | not_set | not_set  | 0.6     | 0x49d8                      | not_set  | 100_022112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x07    | not_set  | 0.6     | 0x5816,0xeae2,0x4c5c,0x164b | not_set  | 100_022120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x14    | not_set  | 0.6     | 0x3513,0x0464               | not_set  | 100_022121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xba    | 0x44    | not_set  | 0.6     | 0x98cb,0x3f0b,0xea9a        | not_set  | 100_022122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0x7f     | 0.6     | 0xa301,0xb7c7,0x8baa,0xf91a | not_set  | 100_022200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0xf6     | 0.6     | 0x79f4,0x0a71,0x7153        | not_set  | 100_022201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xa1    | none    | 0x6e     | 0.6     | 0x12d3,0xbd74,0xd1ce,0xf24f | not_set  | 100_022202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0x12     | 0.6     | 0xa75c,0xc411,0xe043        | not_set  | 100_022210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x3f     | 0.6     | 0x5e94,0x434e,0xfba2,0x672b | not_set  | 100_022211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x84    | not_set | 0xa8     | 0.6     | 0x639e                      | not_set  | 100_022212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x57    | 0x8a     | 0.6     | 0x7689,0xbecb,0xb70a,0x7aed | not_set  | 100_022220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x75    | 0xaf     | 0.6     | 0x6f95                      | not_set  | 100_022221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xdd    | 0x35    | 0xe1     | 0.6     | 0x77ee,0xcfcb,0xe477        | not_set  | 100_022222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | 0.7     | 0x8d22,0x01b5,0x8215,0xc099 | not_set  | 100_023000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | 0.7     | 0x6f64,0x88f7,0xb87e,0xedd2 | not_set  | 100_023001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x1c    | none    | none     | 0.7     | 0x22d0                      | not_set  | 100_023002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | 0.7     | 0xd22b,0x47d4,0xdc8c,0x2e63 | not_set  | 100_023010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | 0.7     | 0xfbef                      | not_set  | 100_023011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x04    | not_set | none     | 0.7     | 0x4d1b,0x4fd9,0x2909,0x57b6 | not_set  | 100_023012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x02    | none     | 0.7     | 0x0601,0xfadf,0xa309        | not_set  | 100_023020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x2e    | none     | 0.7     | 0xeeb4,0x296c,0xb5d5        | not_set  | 100_023021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x1c    | 0xa7    | none     | 0.7     | 0xf8d5,0x69d5,0x8470        | not_set  | 100_023022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | 0.7     | 0x2e79,0x0f64               | not_set  | 100_023100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | 0.7     | 0x11a0                      | not_set  | 100_023101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x5d    | none    | not_set  | 0.7     | 0x4f17                      | not_set  | 100_023102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | 0.7     | 0x9cda,0x7c3b               | not_set  | 100_023110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | 0.7     | 0x1770,0x889f               | not_set  | 100_023111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xd1    | not_set | not_set  | 0.7     | 0x0e09,0x2c98               | not_set  | 100_023112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x20    | not_set  | 0.7     | 0x2c87,0x36e8,0xc2aa        | not_set  | 100_023120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x67    | not_set  | 0.7     | 0x12b8,0x60ec,0x39da        | not_set  | 100_023121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xfe    | 0x37    | not_set  | 0.7     | 0xe971,0xc49e               | not_set  | 100_023122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0x4a     | 0.7     | 0x655d,0x595d               | not_set  | 100_023200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0xed     | 0.7     | 0x1bb3,0xcb67,0x4c69        | not_set  | 100_023201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x5f    | none    | 0xe1     | 0.7     | 0x4aca,0xbea2               | not_set  | 100_023202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0x09     | 0.7     | 0xc4bd,0x086d,0xb12a,0x5218 | not_set  | 100_023210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x43     | 0.7     | 0x4336,0x7805               | not_set  | 100_023211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x5a    | not_set | 0x57     | 0.7     | 0x5d40,0xf31f               | not_set  | 100_023212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x22    | 0xcc     | 0.7     | 0xe5c8                      | not_set  | 100_023220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xc0    | 0x6c     | 0.7     | 0xfe83                      | not_set  | 100_023221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x7d    | 0xa2    | 0xe5     | 0.7     | 0xd584,0xbbbb,0x2804        | not_set  | 100_023222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | not_set | none                        | test.pem | 100_100000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | not_set | none                        | test.pem | 100_100001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x11    | none    | none     | not_set | none                        | test.pem | 100_100002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | not_set | none                        | test.pem | 100_100010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | not_set | none                        | test.pem | 100_100011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xbe    | not_set | none     | not_set | none                        | test.pem | 100_100012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x43    | none     | not_set | none                        | test.pem | 100_100020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xa6    | none     | not_set | none                        | test.pem | 100_100021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xd8    | 0x0a    | none     | not_set | none                        | test.pem | 100_100022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | not_set | none                        | test.pem | 100_100100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | not_set | none                        | test.pem | 100_100101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xae    | none    | not_set  | not_set | none                        | test.pem | 100_100102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | not_set | none                        | test.pem | 100_100110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | not_set | none                        | test.pem | 100_100111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x91    | not_set | not_set  | not_set | none                        | test.pem | 100_100112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x35    | not_set  | not_set | none                        | test.pem | 100_100120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xfe    | not_set  | not_set | none                        | test.pem | 100_100121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xfc    | 0x45    | not_set  | not_set | none                        | test.pem | 100_100122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0xf7     | not_set | none                        | test.pem | 100_100200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0x7a     | not_set | none                        | test.pem | 100_100201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x5f    | none    | 0x93     | not_set | none                        | test.pem | 100_100202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0x51     | not_set | none                        | test.pem | 100_100210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0xce     | not_set | none                        | test.pem | 100_100211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xe5    | not_set | 0xd1     | not_set | none                        | test.pem | 100_100212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xd4    | 0xc3     | not_set | none                        | test.pem | 100_100220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xed    | 0xa4     | not_set | none                        | test.pem | 100_100221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xac    | 0x6f    | 0x9c     | not_set | none                        | test.pem | 100_100222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | 0.5     | none                        | test.pem | 100_101000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | 0.5     | none                        | test.pem | 100_101001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x1f    | none    | none     | 0.5     | none                        | test.pem | 100_101002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | 0.5     | none                        | test.pem | 100_101010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | 0.5     | none                        | test.pem | 100_101011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x5d    | not_set | none     | 0.5     | none                        | test.pem | 100_101012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xec    | none     | 0.5     | none                        | test.pem | 100_101020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x6e    | none     | 0.5     | none                        | test.pem | 100_101021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x55    | 0x2d    | none     | 0.5     | none                        | test.pem | 100_101022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | 0.5     | none                        | test.pem | 100_101100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | 0.5     | none                        | test.pem | 100_101101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xfc    | none    | not_set  | 0.5     | none                        | test.pem | 100_101102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | 0.5     | none                        | test.pem | 100_101110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | 0.5     | none                        | test.pem | 100_101111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xdb    | not_set | not_set  | 0.5     | none                        | test.pem | 100_101112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xb1    | not_set  | 0.5     | none                        | test.pem | 100_101120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x10    | not_set  | 0.5     | none                        | test.pem | 100_101121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xd4    | 0x9a    | not_set  | 0.5     | none                        | test.pem | 100_101122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0xac     | 0.5     | none                        | test.pem | 100_101200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0x2e     | 0.5     | none                        | test.pem | 100_101201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x8d    | none    | 0x93     | 0.5     | none                        | test.pem | 100_101202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0x4e     | 0.5     | none                        | test.pem | 100_101210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x5e     | 0.5     | none                        | test.pem | 100_101211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x78    | not_set | 0x53     | 0.5     | none                        | test.pem | 100_101212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x76    | 0x7e     | 0.5     | none                        | test.pem | 100_101220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x3b    | 0x97     | 0.5     | none                        | test.pem | 100_101221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x71    | 0xe9    | 0xbc     | 0.5     | none                        | test.pem | 100_101222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | 0.6     | none                        | test.pem | 100_102000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | 0.6     | none                        | test.pem | 100_102001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xe9    | none    | none     | 0.6     | none                        | test.pem | 100_102002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | 0.6     | none                        | test.pem | 100_102010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | 0.6     | none                        | test.pem | 100_102011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xa2    | not_set | none     | 0.6     | none                        | test.pem | 100_102012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x26    | none     | 0.6     | none                        | test.pem | 100_102020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x99    | none     | 0.6     | none                        | test.pem | 100_102021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x72    | 0x3e    | none     | 0.6     | none                        | test.pem | 100_102022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | 0.6     | none                        | test.pem | 100_102100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | 0.6     | none                        | test.pem | 100_102101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x17    | none    | not_set  | 0.6     | none                        | test.pem | 100_102102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | 0.6     | none                        | test.pem | 100_102110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | 0.6     | none                        | test.pem | 100_102111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x9c    | not_set | not_set  | 0.6     | none                        | test.pem | 100_102112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xb9    | not_set  | 0.6     | none                        | test.pem | 100_102120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x91    | not_set  | 0.6     | none                        | test.pem | 100_102121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x5a    | 0x17    | not_set  | 0.6     | none                        | test.pem | 100_102122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0x11     | 0.6     | none                        | test.pem | 100_102200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0x8b     | 0.6     | none                        | test.pem | 100_102201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x61    | none    | 0x01     | 0.6     | none                        | test.pem | 100_102202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0xf4     | 0.6     | none                        | test.pem | 100_102210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x3e     | 0.6     | none                        | test.pem | 100_102211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xb9    | not_set | 0xe4     | 0.6     | none                        | test.pem | 100_102212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xf3    | 0xcb     | 0.6     | none                        | test.pem | 100_102220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x8d    | 0xdd     | 0.6     | none                        | test.pem | 100_102221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x69    | 0xa7    | 0xf3     | 0.6     | none                        | test.pem | 100_102222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | 0.7     | none                        | test.pem | 100_103000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | 0.7     | none                        | test.pem | 100_103001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xfe    | none    | none     | 0.7     | none                        | test.pem | 100_103002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | 0.7     | none                        | test.pem | 100_103010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | 0.7     | none                        | test.pem | 100_103011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xdb    | not_set | none     | 0.7     | none                        | test.pem | 100_103012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xfa    | none     | 0.7     | none                        | test.pem | 100_103020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x3d    | none     | 0.7     | none                        | test.pem | 100_103021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xe1    | 0xc7    | none     | 0.7     | none                        | test.pem | 100_103022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | 0.7     | none                        | test.pem | 100_103100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | 0.7     | none                        | test.pem | 100_103101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x74    | none    | not_set  | 0.7     | none                        | test.pem | 100_103102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | 0.7     | none                        | test.pem | 100_103110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | 0.7     | none                        | test.pem | 100_103111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xc2    | not_set | not_set  | 0.7     | none                        | test.pem | 100_103112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x0a    | not_set  | 0.7     | none                        | test.pem | 100_103120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x3b    | not_set  | 0.7     | none                        | test.pem | 100_103121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x64    | 0xda    | not_set  | 0.7     | none                        | test.pem | 100_103122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0x22     | 0.7     | none                        | test.pem | 100_103200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0x32     | 0.7     | none                        | test.pem | 100_103201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xc8    | none    | 0x2a     | 0.7     | none                        | test.pem | 100_103202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0x46     | 0.7     | none                        | test.pem | 100_103210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0xf5     | 0.7     | none                        | test.pem | 100_103211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xb6    | not_set | 0x5e     | 0.7     | none                        | test.pem | 100_103212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x75    | 0xf6     | 0.7     | none                        | test.pem | 100_103220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xd7    | 0xc6     | 0.7     | none                        | test.pem | 100_103221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xe0    | 0xe5    | 0xb2     | 0.7     | none                        | test.pem | 100_103222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | not_set | not_set                     | test.pem | 100_110000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | not_set | not_set                     | test.pem | 100_110001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xd4    | none    | none     | not_set | not_set                     | test.pem | 100_110002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | not_set | not_set                     | test.pem | 100_110010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | not_set | not_set                     | test.pem | 100_110011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x15    | not_set | none     | not_set | not_set                     | test.pem | 100_110012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x5d    | none     | not_set | not_set                     | test.pem | 100_110020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x0e    | none     | not_set | not_set                     | test.pem | 100_110021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x08    | 0x5e    | none     | not_set | not_set                     | test.pem | 100_110022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | not_set | not_set                     | test.pem | 100_110100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | not_set | not_set                     | test.pem | 100_110101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xf9    | none    | not_set  | not_set | not_set                     | test.pem | 100_110102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | not_set | not_set                     | test.pem | 100_110110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | not_set | not_set                     | test.pem | 100_110111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x38    | not_set | not_set  | not_set | not_set                     | test.pem | 100_110112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xb6    | not_set  | not_set | not_set                     | test.pem | 100_110120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x19    | not_set  | not_set | not_set                     | test.pem | 100_110121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x9d    | 0xae    | not_set  | not_set | not_set                     | test.pem | 100_110122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0xaf     | not_set | not_set                     | test.pem | 100_110200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0xdc     | not_set | not_set                     | test.pem | 100_110201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xfa    | none    | 0x14     | not_set | not_set                     | test.pem | 100_110202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0xc5     | not_set | not_set                     | test.pem | 100_110210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x1a     | not_set | not_set                     | test.pem | 100_110211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x7f    | not_set | 0xd9     | not_set | not_set                     | test.pem | 100_110212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xc1    | 0x25     | not_set | not_set                     | test.pem | 100_110220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x88    | 0xb9     | not_set | not_set                     | test.pem | 100_110221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x7f    | 0x12    | 0x58     | not_set | not_set                     | test.pem | 100_110222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | 0.5     | not_set                     | test.pem | 100_111000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | 0.5     | not_set                     | test.pem | 100_111001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x15    | none    | none     | 0.5     | not_set                     | test.pem | 100_111002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | 0.5     | not_set                     | test.pem | 100_111010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | 0.5     | not_set                     | test.pem | 100_111011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x15    | not_set | none     | 0.5     | not_set                     | test.pem | 100_111012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x47    | none     | 0.5     | not_set                     | test.pem | 100_111020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xfa    | none     | 0.5     | not_set                     | test.pem | 100_111021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x2b    | 0x25    | none     | 0.5     | not_set                     | test.pem | 100_111022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | 0.5     | not_set                     | test.pem | 100_111100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | 0.5     | not_set                     | test.pem | 100_111101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x39    | none    | not_set  | 0.5     | not_set                     | test.pem | 100_111102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | 0.5     | not_set                     | test.pem | 100_111110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | 0.5     | not_set                     | test.pem | 100_111111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x33    | not_set | not_set  | 0.5     | not_set                     | test.pem | 100_111112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x87    | not_set  | 0.5     | not_set                     | test.pem | 100_111120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xe1    | not_set  | 0.5     | not_set                     | test.pem | 100_111121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x53    | 0x4a    | not_set  | 0.5     | not_set                     | test.pem | 100_111122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0x9b     | 0.5     | not_set                     | test.pem | 100_111200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0x06     | 0.5     | not_set                     | test.pem | 100_111201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xa5    | none    | 0x3f     | 0.5     | not_set                     | test.pem | 100_111202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0x01     | 0.5     | not_set                     | test.pem | 100_111210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0xc7     | 0.5     | not_set                     | test.pem | 100_111211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xd7    | not_set | 0x80     | 0.5     | not_set                     | test.pem | 100_111212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x5d    | 0x3f     | 0.5     | not_set                     | test.pem | 100_111220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x91    | 0x15     | 0.5     | not_set                     | test.pem | 100_111221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xfd    | 0x1a    | 0xb6     | 0.5     | not_set                     | test.pem | 100_111222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | 0.6     | not_set                     | test.pem | 100_112000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | 0.6     | not_set                     | test.pem | 100_112001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x7f    | none    | none     | 0.6     | not_set                     | test.pem | 100_112002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | 0.6     | not_set                     | test.pem | 100_112010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | 0.6     | not_set                     | test.pem | 100_112011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x72    | not_set | none     | 0.6     | not_set                     | test.pem | 100_112012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x3d    | none     | 0.6     | not_set                     | test.pem | 100_112020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xbb    | none     | 0.6     | not_set                     | test.pem | 100_112021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xf7    | 0x20    | none     | 0.6     | not_set                     | test.pem | 100_112022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | 0.6     | not_set                     | test.pem | 100_112100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | 0.6     | not_set                     | test.pem | 100_112101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x3d    | none    | not_set  | 0.6     | not_set                     | test.pem | 100_112102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | 0.6     | not_set                     | test.pem | 100_112110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | 0.6     | not_set                     | test.pem | 100_112111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x2a    | not_set | not_set  | 0.6     | not_set                     | test.pem | 100_112112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x3d    | not_set  | 0.6     | not_set                     | test.pem | 100_112120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xdf    | not_set  | 0.6     | not_set                     | test.pem | 100_112121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x7a    | 0x58    | not_set  | 0.6     | not_set                     | test.pem | 100_112122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0x80     | 0.6     | not_set                     | test.pem | 100_112200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0x9f     | 0.6     | not_set                     | test.pem | 100_112201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xd5    | none    | 0x12     | 0.6     | not_set                     | test.pem | 100_112202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0xea     | 0.6     | not_set                     | test.pem | 100_112210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x87     | 0.6     | not_set                     | test.pem | 100_112211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x39    | not_set | 0x84     | 0.6     | not_set                     | test.pem | 100_112212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x7f    | 0x82     | 0.6     | not_set                     | test.pem | 100_112220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x6b    | 0x66     | 0.6     | not_set                     | test.pem | 100_112221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x53    | 0xce    | 0xe5     | 0.6     | not_set                     | test.pem | 100_112222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | 0.7     | not_set                     | test.pem | 100_113000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | 0.7     | not_set                     | test.pem | 100_113001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xed    | none    | none     | 0.7     | not_set                     | test.pem | 100_113002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | 0.7     | not_set                     | test.pem | 100_113010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | 0.7     | not_set                     | test.pem | 100_113011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x4c    | not_set | none     | 0.7     | not_set                     | test.pem | 100_113012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x7d    | none     | 0.7     | not_set                     | test.pem | 100_113020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x7a    | none     | 0.7     | not_set                     | test.pem | 100_113021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x59    | 0x4a    | none     | 0.7     | not_set                     | test.pem | 100_113022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | 0.7     | not_set                     | test.pem | 100_113100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | 0.7     | not_set                     | test.pem | 100_113101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x3f    | none    | not_set  | 0.7     | not_set                     | test.pem | 100_113102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | 0.7     | not_set                     | test.pem | 100_113110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | 0.7     | not_set                     | test.pem | 100_113111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x71    | not_set | not_set  | 0.7     | not_set                     | test.pem | 100_113112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x9e    | not_set  | 0.7     | not_set                     | test.pem | 100_113120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xc4    | not_set  | 0.7     | not_set                     | test.pem | 100_113121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xe8    | 0xa5    | not_set  | 0.7     | not_set                     | test.pem | 100_113122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0x57     | 0.7     | not_set                     | test.pem | 100_113200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0xae     | 0.7     | not_set                     | test.pem | 100_113201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xb7    | none    | 0xd0     | 0.7     | not_set                     | test.pem | 100_113202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0xe1     | 0.7     | not_set                     | test.pem | 100_113210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x76     | 0.7     | not_set                     | test.pem | 100_113211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xa2    | not_set | 0x80     | 0.7     | not_set                     | test.pem | 100_113212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x75    | 0xff     | 0.7     | not_set                     | test.pem | 100_113220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xb1    | 0xc8     | 0.7     | not_set                     | test.pem | 100_113221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x64    | 0x64    | 0x79     | 0.7     | not_set                     | test.pem | 100_113222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | not_set | 0xedc8                      | test.pem | 100_120000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | not_set | 0x2c1d                      | test.pem | 100_120001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xe8    | none    | none     | not_set | 0x3ace,0x2f36               | test.pem | 100_120002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | not_set | 0x81ef,0xab1e               | test.pem | 100_120010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | not_set | 0x6be6,0xaa70,0x769d        | test.pem | 100_120011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x27    | not_set | none     | not_set | 0x4ae0,0x9c9b,0x37ab        | test.pem | 100_120012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x84    | none     | not_set | 0x6387,0x1cbb,0x2307,0x917e | test.pem | 100_120020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x43    | none     | not_set | 0x238c,0xedab               | test.pem | 100_120021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xb8    | 0x96    | none     | not_set | 0xa0e9,0x7477,0x4831,0x675c | test.pem | 100_120022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | not_set | 0x631f,0x300a               | test.pem | 100_120100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | not_set | 0x30de                      | test.pem | 100_120101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x53    | none    | not_set  | not_set | 0xfb81                      | test.pem | 100_120102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | not_set | 0xba05,0xd884,0xf29d,0x42b4 | test.pem | 100_120110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | not_set | 0x7fd8                      | test.pem | 100_120111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x79    | not_set | not_set  | not_set | 0x5100                      | test.pem | 100_120112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x0f    | not_set  | not_set | 0x9246,0x5db5,0x96b6        | test.pem | 100_120120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xae    | not_set  | not_set | 0x3eff                      | test.pem | 100_120121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x44    | 0x27    | not_set  | not_set | 0xb087,0x70da               | test.pem | 100_120122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0xe6     | not_set | 0xd3b0                      | test.pem | 100_120200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0x2c     | not_set | 0x9c41,0x953e               | test.pem | 100_120201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x78    | none    | 0x36     | not_set | 0x6453,0xe79c,0x9a72,0x0054 | test.pem | 100_120202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0x70     | not_set | 0xac7a                      | test.pem | 100_120210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x52     | not_set | 0xebe0,0x77a8,0x2fb2        | test.pem | 100_120211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x58    | not_set | 0x08     | not_set | 0xb475                      | test.pem | 100_120212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x3b    | 0xf2     | not_set | 0xfd44                      | test.pem | 100_120220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x7d    | 0x6e     | not_set | 0x484e,0xa1e1,0xee6e,0x23e6 | test.pem | 100_120221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xc7    | 0x2d    | 0xdf     | not_set | 0x87c8,0x4c7a               | test.pem | 100_120222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | 0.5     | 0xa594,0xd782,0xd2de,0x10a5 | test.pem | 100_121000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | 0.5     | 0x49a7,0xccdb               | test.pem | 100_121001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x50    | none    | none     | 0.5     | 0x4d22,0x7c0a,0x1b8b,0x8ac1 | test.pem | 100_121002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | 0.5     | 0x2486,0x5254,0x4d24,0xf56b | test.pem | 100_121010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | 0.5     | 0x76de                      | test.pem | 100_121011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x34    | not_set | none     | 0.5     | 0x6bbc,0xcea5,0xb74b        | test.pem | 100_121012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xb8    | none     | 0.5     | 0x825c,0x4269               | test.pem | 100_121020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xf7    | none     | 0.5     | 0x9bcf                      | test.pem | 100_121021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xea    | 0x46    | none     | 0.5     | 0x6cf7                      | test.pem | 100_121022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | 0.5     | 0xe7ce,0xba8c,0x9a8c,0x61bf | test.pem | 100_121100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | 0.5     | 0x7926,0xf847               | test.pem | 100_121101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x9b    | none    | not_set  | 0.5     | 0x6f8c                      | test.pem | 100_121102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | 0.5     | 0x6d71,0xdddd,0x4388        | test.pem | 100_121110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | 0.5     | 0x0daf,0xb6d7               | test.pem | 100_121111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x33    | not_set | not_set  | 0.5     | 0x2ec2,0xc08c,0x54cb,0x69f9 | test.pem | 100_121112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x57    | not_set  | 0.5     | 0x3760                      | test.pem | 100_121120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x2d    | not_set  | 0.5     | 0xba4e,0x93b4,0x1a91        | test.pem | 100_121121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xd4    | 0x7b    | not_set  | 0.5     | 0x326e,0x5fb1               | test.pem | 100_121122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0x07     | 0.5     | 0x6e23,0xd2d5,0x28f0        | test.pem | 100_121200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0x74     | 0.5     | 0x5ceb,0x3e76,0x3d4f        | test.pem | 100_121201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xe3    | none    | 0x24     | 0.5     | 0xccc6,0xd5cc,0x48af,0x26fd | test.pem | 100_121202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0x50     | 0.5     | 0x9ed9,0x3d56,0x3464,0x14a0 | test.pem | 100_121210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x8b     | 0.5     | 0x8ce3,0xe7ed,0x6a8e,0x2f5e | test.pem | 100_121211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xc0    | not_set | 0x98     | 0.5     | 0x281c,0xde91,0x829d        | test.pem | 100_121212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xe5    | 0x99     | 0.5     | 0x7bc5,0xd7f9,0x3f17        | test.pem | 100_121220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xf7    | 0x2d     | 0.5     | 0xb170,0x2cb4,0x6d74,0xc280 | test.pem | 100_121221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xda    | 0x15    | 0x21     | 0.5     | 0xcc28                      | test.pem | 100_121222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | 0.6     | 0xbd91,0xb19f               | test.pem | 100_122000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | 0.6     | 0xe15e,0xb1a8,0xb30f        | test.pem | 100_122001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x15    | none    | none     | 0.6     | 0x1cb4,0xe663,0x990c        | test.pem | 100_122002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | 0.6     | 0xd0c7,0xd442,0x4b54,0xe00a | test.pem | 100_122010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | 0.6     | 0x4589,0x2a0f,0x2dad        | test.pem | 100_122011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x46    | not_set | none     | 0.6     | 0xc3d8,0xbfb4,0xb477,0x44fb | test.pem | 100_122012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x2e    | none     | 0.6     | 0xc508,0x6ad9               | test.pem | 100_122020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xff    | none     | 0.6     | 0x37bf,0x3db0,0x53c5        | test.pem | 100_122021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x1f    | 0x00    | none     | 0.6     | 0xf7e7                      | test.pem | 100_122022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | 0.6     | 0x768d,0x6506,0x49b0,0xe4f4 | test.pem | 100_122100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | 0.6     | 0xb2ce                      | test.pem | 100_122101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x57    | none    | not_set  | 0.6     | 0x9f32,0x1aec,0x0c11,0xe22a | test.pem | 100_122102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | 0.6     | 0x002a,0x56ea,0xa835,0x4ff8 | test.pem | 100_122110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | 0.6     | 0x5d36                      | test.pem | 100_122111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x3a    | not_set | not_set  | 0.6     | 0x860a,0x335c,0xd037        | test.pem | 100_122112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xab    | not_set  | 0.6     | 0x46a7                      | test.pem | 100_122120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x7f    | not_set  | 0.6     | 0xbf23,0x00d4               | test.pem | 100_122121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x99    | 0x1b    | not_set  | 0.6     | 0xfac2                      | test.pem | 100_122122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0x47     | 0.6     | 0x7548,0x8a18               | test.pem | 100_122200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0xcb     | 0.6     | 0x4f4e                      | test.pem | 100_122201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xa2    | none    | 0xbb     | 0.6     | 0x0dac                      | test.pem | 100_122202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0x70     | 0.6     | 0x9b2d,0x89fa               | test.pem | 100_122210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x27     | 0.6     | 0x6353,0x7647               | test.pem | 100_122211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x11    | not_set | 0xff     | 0.6     | 0x8ca7,0x2665               | test.pem | 100_122212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x39    | 0xb7     | 0.6     | 0x644e,0xc60b,0xbf44        | test.pem | 100_122220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xad    | 0x71     | 0.6     | 0x1fa6,0x5cf3,0x430b,0x4fd2 | test.pem | 100_122221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x27    | 0x3d    | 0xd8     | 0.6     | 0x3b4a,0x45f0,0xc4c7,0x8af3 | test.pem | 100_122222.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | none     | 0.7     | 0xa000,0x4356,0x70dc,0x2304 | test.pem | 100_123000.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | none     | 0.7     | 0xfe10,0x31db               | test.pem | 100_123001.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xe4    | none    | none     | 0.7     | 0xf113,0x84fd               | test.pem | 100_123002.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | none     | 0.7     | 0xdad5,0x5b52,0xb732,0x0445 | test.pem | 100_123010.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | none     | 0.7     | 0x2be7,0x9f38               | test.pem | 100_123011.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x58    | not_set | none     | 0.7     | 0xeb9d                      | test.pem | 100_123012.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xbb    | none     | 0.7     | 0x399c                      | test.pem | 100_123020.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x5c    | none     | 0.7     | 0x140d                      | test.pem | 100_123021.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x17    | 0x83    | none     | 0.7     | 0x48b7,0xd0a3,0xbec0,0x1b48 | test.pem | 100_123022.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | not_set  | 0.7     | 0x2506,0xe218,0x6d03        | test.pem | 100_123100.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | not_set  | 0.7     | 0x9e42,0x629e               | test.pem | 100_123101.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xbf    | none    | not_set  | 0.7     | 0x6314                      | test.pem | 100_123102.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | not_set  | 0.7     | 0x7f87,0xbb8e,0xa3d9        | test.pem | 100_123110.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | not_set  | 0.7     | 0xb55b                      | test.pem | 100_123111.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x07    | not_set | not_set  | 0.7     | 0x855b                      | test.pem | 100_123112.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0x88    | not_set  | 0.7     | 0x661b,0x6082,0x0add,0x5f93 | test.pem | 100_123120.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0xfa    | not_set  | 0.7     | 0x1f06,0x7c8b,0x53dc,0xf342 | test.pem | 100_123121.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xf8    | 0xd5    | not_set  | 0.7     | 0x8381,0x3cc5,0x1392        | test.pem | 100_123122.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | none    | 0xf3     | 0.7     | 0x46c6,0xa2a9               | test.pem | 100_123200.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | none    | 0x00     | 0.7     | 0x5127,0xed30,0x194c,0x8c7a | test.pem | 100_123201.zip |
        | blinky.bin  | not_set                      | not_set                      | 0xe4    | none    | 0xd3     | 0.7     | 0xd2a4,0xb1a6,0x4cd6,0x2fa5 | test.pem | 100_123202.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | not_set | 0xd2     | 0.7     | 0x63d4,0x01f2,0x5a63        | test.pem | 100_123210.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | not_set | 0x9b     | 0.7     | 0xa64e,0x9586,0xc0b5        | test.pem | 100_123211.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x6f    | not_set | 0x0e     | 0.7     | 0x4b13                      | test.pem | 100_123212.zip |
        | blinky.bin  | not_set                      | not_set                      | none    | 0xf8    | 0xcc     | 0.7     | 0xa27a,0x1aab,0x7677        | test.pem | 100_123220.zip |
        | blinky.bin  | not_set                      | not_set                      | not_set | 0x89    | 0x00     | 0.7     | 0x1595,0x01e3,0x5b1b        | test.pem | 100_123221.zip |
        | blinky.bin  | not_set                      | not_set                      | 0x2c    | 0x2b    | 0xc8     | 0.7     | 0xba47,0x8a49               | test.pem | 100_123222.zip |