-
Notifications
You must be signed in to change notification settings - Fork 0
/
steps.json
3313 lines (3313 loc) · 189 KB
/
steps.json
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
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"02282021": [
{
"index": 0,
"caption": "Irrelevant",
"transcription": "The mission control center, noisy shots (e.g. blue screen), or tasks not planned for the spacewalk."
},
{
"index": 1,
"caption": "EV1 & EV2 exit airlock with structure bags",
"transcript": "For US EVA seventy one, EV one will egress the joint airlock first. You'll see EV one has the red stripes, and EV two, the white suit. EV two will pass out the two strut bags containing structure to support new solar arrays.",
"animation_start": "2006.0",
"animation_end": "2017.0"
},
{
"index": 2,
"caption": "EV2 move to P1 and install anchor hooks for safety tether",
"transcript": "EV two will pass out the two strut bags containing structure to support new solar arrays. Eighty two will head out to p one where he will install the anchor hooks or the crew safety tether. And this is what we call a slingshot and we'll give them a hundred and seventy feet of length that they need to get all the way out to p six.",
"animation_start": "2017.0",
"animation_end": "2036.0"
},
{
"index": 3,
"caption": "EV1 & EV2 move to P6",
"transcript": "And this is what we call a slingshot and we'll give them a hundred and seventy feet of length that they need to get all the way out to p six. At that point, both crew members will translate to p six and install their respective bags on the four bravo and two bravo.",
"animation_start": "2036.0",
"animation_end": "2041.0"
},
{
"index": 4,
"caption": "EV1 & EV2 install respective bags on worksites",
"transcript": "At that point, both crew members will translate to p six and install their respective bags on the four bravo and two bravo. Worksites.",
"animation_start": "2041.0",
"animation_end": "2050.0"
},
{
"index": 5,
"caption": "EV1 move back inboard",
"transcript": "EV one will translate back inboard and retrieve a portable foot restraint. With a extension and head back to join EV two at the two brother worksite.",
"animation_start": "2050.0",
"animation_end": "2060.0"
},
{
"index": 6,
"caption": "EV1 retreive portable foot restraint with extension",
"transcript": "With a extension and head back to join EV two at the two brother worksite.",
"animation_start": "2060.0",
"animation_end": "2062.0"
},
{
"index": 7,
"caption": "EV1 return to P6",
"transcript": "With a extension and head back to join EV two at the two brother worksite.",
"animation_start": "2062.0",
"animation_end": "2065.0"
},
{
"index": 8,
"caption": "EV1 set up portable foot restraint",
"transcript": "EV1 will set up this portable foot restraint or access to the mod kit installed and then translate over to the bag where both crew members will begin building what we call the upper triangle, which includes the mounting bracket and leftstrut and a right strut.",
"animation_start": "2065.0",
"animation_end": "2070.0"
},
{
"index": 9,
"caption": "EV1 move to structure bag",
"transcript": "EV1 will set up this portable foot restraint or access to the mod kit installed and then translate over to the bag where both crew members will begin building what we call the upper triangle, which includes the mounting bracket and leftstrut and a right strut.",
"animation_start": "2070.0",
"animation_end": "2074.0"
},
{
"index": 10,
"caption": "EV1 & EV2 build \"upper triangle\" ",
"transcript": "EV1 will set up this portable foot restraint or access to the mod kit installed and then translate over to the bag where both crew members will begin building what we call the upper triangle, which includes the mounting bracket and leftstrut and a right strut. They'll use their pistol grip tool to assemble that triangle.",
"animation_start": "2074.0",
"animation_end": "2088.0"
},
{
"index": 11,
"caption": "EV1 enter portable foot restraint",
"transcript": "Once it's complete, EV one all be in the portable foot restraint and EV two will hand it off to EV one.",
"animation_start": "2088.0",
"animation_end": "2091.0"
},
{
"index": 12,
"caption": "EV2 hand upper triangle to EV1",
"transcript": "Once it's complete, EV one all be in the portable foot restraint and EV two will hand it off to EV one.",
"animation_start": "2091.0",
"animation_end": "2095.0"
},
{
"index": 13,
"caption": "EV1 install upper triangle on mast canister",
"transcript": "Here you see EV one installing this on the mass canister. And there's a strong soft dock feature that will hold it in place. Once it's positioned in place, even one will use the pistol grip tool to drive four bolts.",
"animation_start": "2095.0",
"animation_end": "2109.0"
},
{
"index": 14,
"caption": "EV1 reposition foot restraint",
"transcript": "One will then reposition the foot restraint for access to the left side of the mok kit.",
"animation_start": "2109.0",
"animation_end": "2116.0"
},
{
"index": 15,
"caption": "EV2 hand mid strut to EV1. EV1 installs on body tether",
"transcript": "One will then reposition the foot restraint for access to the left side of the mok kit. Here you see the mid strut on EB one's body restraint tether.",
"animation_start": "2116.0",
"animation_end": "2122.0"
},
{
"index": 16,
"caption": "EV1 & EV2 install left lower strut",
"transcript": "Here you see the mid strut on EB one's body restraint tether. EB one will hold the lower strut while EB two gets into position. Now work together to install the left lower strut. EV two will start off by driving the bolt with his pistol grip tool, and EV one will drive the upper bolt that connects it to the mounting bracket.",
"animation_start": "2122.0",
"animation_end": "2141.0"
},
{
"index": 17,
"caption": "EV1 & EV2 install mid strut on left side of mast canister",
"transcript": "EV two will start off by driving the bolt with his pistol grip tool, and EV one will drive the upper bolt that connects it to the mounting bracket. I'll then work together to install the mid strip on the left side You can see EV two driving four bolts that hold it to the mass canister. Similar to the h fixtures that were recently removed. And EV one will drive the bolt to secure it to the upper strut.",
"animation_start": "2141.0",
"animation_end": "2163.0"
},
{
"index": 18,
"caption": "EV1 reposition foot restraint",
"transcript": "And one will then reposition the APFR and get back in after getting the mid strap on her BRT.",
"animation_start": "2163.0",
"animation_end": "2168.0"
},
{
"index": 19,
"caption": "EV1 attach mid strut to body tether and enter foot restraint",
"transcript": "And one will then reposition the APFR and get back in after getting the mid strap on her BRT. Near teas standing for body restraint tether.",
"animation_start": "2168.0",
"animation_end": "2181.0"
},
{
"index": 20,
"caption": "EV1 receive right lower strut",
"transcript": "So get back into the portable foot restraint. Receive the right lower strap.",
"animation_start": "2181.0",
"animation_end": "2189.0"
},
{
"index": 21,
"caption": "EV2 move to installation point for right lower strut",
"transcript": "And then EV two will translate around the mass canister for access to the installation point for the right lower strut.",
"animation_start": "2189.0",
"animation_end": "2197.0"
},
{
"index": 22,
"caption": "EV1 & EV2 install mid strut on right side of mast canister",
"transcript": "Again, just like the left side, they'll be working together to drive their respective bolts with their pistol grip tool.",
"animation_start": "2197.0",
"animation_end": "2209.0"
},
{
"index": 23,
"caption": "EV1 & EV2 install mid strut",
"transcript": "EV two will translate up for the mid strut install. Or he'll drive four bolts. EV one will have a single bolt. And the EV two will tighten the clamp bolts on both sides. The mid strengths are telescoping, and this clamp bolt prevents it from telescoping any curve there once it's in place.",
"animation_start": "2209.0",
"animation_end": "2233.0"
},
{
"index": 24,
"caption": "EV1 & EV2 install thermal blanket and verify pit pins are in place",
"transcript": "Accrual then work together to secure the thermal blankets over all of the struts and make sure their employees as well as verifying that the pit pins that provide grounding pads for the structure are also in place.",
"animation_start": "2233.0",
"animation_end": "2247.0"
},
{
"index": 25,
"caption": "EV1 & EV1 grab tools and move to 4B work site",
"transcript": "They'll then grab the necessary tools and head over to the four bravo worksite. Very similar kind of a mirror image to what they were working on previously.",
"animation_start": "2247.0",
"animation_end": "2258.0"
},
{
"index": 26,
"caption": "EV1 install portable foot restraint",
"transcript": "EV1 will install the APFR or the portable foot restraint.",
"animation_start": "2258.0",
"animation_end": "2263.0"
},
{
"index": 27,
"caption": "EV1 & EV2 build \"upper triangle\" ",
"transcript": "And they'll work together again to build the upper triangle consisting of the two upper struts and the mounting bracket.",
"animation_start": "2263.0",
"animation_end": "2275.0"
},
{
"index": 28,
"caption": "EV1 & EV2 pack bag with tools to bring inside",
"transcript": "If not, we have plans to perform the rest of the install. On the next EVA. The crew will then pack the empty bag with the tools that they plan to bring inside.",
"animation_start": "2318.0",
"animation_end": "2326.0"
},
{
"index": 29,
"caption": "EV1 & EV2 return to airlock with bag",
"transcript": "EV two will carry that back to the airlock. Both crew members will translate back to the airlock from p six. They'll leave the slingshot out, meaning that the tethers will be strung out to p one because we'll use them again on a future EVA.",
"animation_start": "2326.0",
"animation_end": "2343.0"
},
{
"index": 30,
"caption": "EV2 put bag in airlock and enter",
"transcript": "They'll leave the slingshot out, meaning that the tethers will be strung out to p one because we'll use them again on a future EVA. EV two will put the bag in the airlock in ingress followed by EV one we will then close the hatch.",
"animation_start": "2343.0",
"animation_end": "2349.0"
},
{
"index": 31,
"caption": "EV1 enter airlock and close hatch",
"transcript": "EV two will put the bag in the airlock in ingress followed by EV one we will then close the hatch.",
"animation_start": "2349.0",
"animation_end": "2354.0"
}
],
"03152022": [
{
"index": 0,
"caption": "Irrelevant",
"transcription": "The mission control center, noisy shots (e.g. blue screen), or tasks not planned for the spacewalk."
},
{
"index": 1,
"caption": "EV1 exit airlock and receive large bag",
"transcript": "US Space Walk. Number seventy nine will begin at the Quest Airlock. US astronaut, Kayla Barron, maybe one denoted by the red stripes, split egress first and received a very large Arun saum leakage bag, US astronaut Rajatari in the plain white suit will egress second with the crew lock bag.",
"animation_start": "1435.0",
"animation_end": "1446.0"
},
{
"index": 2,
"caption": "EV2 exit airlock",
"transcript": "US astronaut, Kayla Barron, maybe one denoted by the red stripes, split egress first and received a very large Arun saum leakage bag, US astronaut Rajatari in the plain white suit will egress second with the crew lock bag.",
"animation_start": "1446.0",
"animation_end": "1451.0"
},
{
"index": 3,
"caption": "EV1 move to integrated equipment assembly",
"transcript": "US astronaut, Kayla Barron, maybe one denoted by the red stripes, split egress first and received a very large Arun saum leakage bag, US astronaut Rajatari in the plain white suit will egress second with the crew lock bag. After quick buddy checks, EV one will head up to phase one and out to the s four integrated equipment assembly pausing momentarily to drop her fairlead green hook, just inboard of the solar alpha rotary joint and then continue her translation out to the s four three alpha integrated equipment assembly where she will stow the large Erosa mod kit strip bag and prep for the building of the upper triangle of the mod kit.",
"animation_start": "1451.0",
"animation_end": "1471.0"
},
{
"index": 4,
"caption": "EV1 stow bag and begin prep work",
"transcript": "After quick buddy checks, EV one will head up to phase one and out to the s four integrated equipment assembly pausing momentarily to drop her fairlead green hook, just inboard of the solar alpha rotary joint and then continue her translation out to the s four three alpha integrated equipment assembly where she will stow the large Erosa mod kit strip bag and prep for the building of the upper triangle of the mod kit.",
"animation_start": "1471.0",
"animation_end": "1478.0"
},
{
"index": 5,
"caption": "EV2 move to phase 1",
"transcript": "After quick buddy checks, EV one will head up to phase one and out to the s four integrated equipment assembly pausing momentarily to drop her fairlead green hook, just inboard of the solar alpha rotary joint and then continue her translation out to the s four three alpha integrated equipment assembly where she will stow the large Erosa mod kit strip bag and prep for the building of the upper triangle of the mod kit. Meanwhile, EV two will follow EV one up to phase one Eighty two will stop at the Starbird's CETA cart where he will temp stow a crew lock bag of tools and retrieve a footwear straight and a work site interface extender known as a WIFAC and then translate outboard pausing momentarily to drop his fairly green hook just inboard of the Solar Alpha Row three joint.",
"animation_start": "1478.0",
"animation_end": "1482.0"
},
{
"index": 6,
"caption": "EV2 stow crew bag and retrieve tools",
"transcript": "Meanwhile, EV two will follow EV one up to phase one Eighty two will stop at the Starbird's CETA cart where he will temp stow a crew lock bag of tools and retrieve a footwear straight and a work site interface extender known as a WIFAC and then translate outboard pausing momentarily to drop his fairly green hook just inboard of the Solar Alpha Row three joint.",
"animation_start": "1482.0",
"animation_end": "1491.0"
},
{
"index": 7,
"caption": "EV1 & EV2 assemble upper triangle",
"transcript": "EV one and EV two will work together to build the upper triangle. The crew will build the triangular segment loosely, and then we'll tighten up the structure by driving the bolts to torque.",
"animation_start": "1522.0",
"animation_end": "1532.0"
},
{
"index": 8,
"caption": "EV2 move to and enter foot restraint",
"transcript": "The crew will build the triangular segment loosely, and then we'll tighten up the structure by driving the bolts to torque. EV two will then translate over to and ingress the footrest straight.",
"animation_start": "1532.0",
"animation_end": "1536.0"
},
{
"index": 9,
"caption": "EV1 hand upper triangle to EV2",
"transcript": "EV two will then translate over to and ingress the footrest straight. EV one will reposition for the hand off. Maybe one will hand up the upper triangle to EV two.",
"animation_start": "1536.0",
"animation_end": "1541.0"
},
{
"index": 10,
"caption": "EV2 dock upper triangle on gimbal assembly",
"transcript": "Maybe one will hand up the upper triangle to EV two. EV two will lay back and work to soft dock the segment onto the beta gimbal assembly and then drive four bowl.",
"animation_start": "1541.0",
"animation_end": "1548.0"
},
{
"index": 11,
"caption": "EV1 stow pistol grip tool (PGT)",
"transcript": "EV two will lay back and work to soft dock the segment onto the beta gimbal assembly and then drive four bowl. EV one will temp stow her PGT with a short socket on a local handrail, while EV two will egress the up restraint and bias it to the left hand side.",
"animation_start": "1548.0",
"animation_end": "1553.0"
},
{
"index": 12,
"caption": "EV2 exit foot restraint and tilt it to the left side",
"transcript": "EV one will temp stow her PGT with a short socket on a local handrail, while EV two will egress the up restraint and bias it to the left hand side. EV one will go over to the back and retrieve the left mid stretch.",
"animation_start": "1553.0",
"animation_end": "1559.0"
},
{
"index": 13,
"caption": "EV1 pass left mid strut to EV2",
"transcript": "EV one will go over to the back and retrieve the left mid stretch. Work to pass this off to EV two or a body restraint tether stow.",
"animation_start": "1559.0",
"animation_end": "1568.0"
},
{
"index": 14,
"caption": "EV1 hands lower strut to EV2",
"transcript": "EV two will then re ingress the foot restraint while EV one retrieves the long eight foot lower stretch from the bag and hands it to v two.",
"animation_start": "1571.0",
"animation_end": "1578.0"
},
{
"index": 15,
"caption": "EV1 & EV2 install lower strut",
"transcript": "EV two will then re ingress the foot restraint while EV one retrieves the long eight foot lower stretch from the bag and hands it to v two. While e v two holds the long lower stretch, e v one will reposition to the Solar Array blanket box for Saab for the install of the left lower strut. As a team, the crew will move the strut into position, and EV one will begin at driving this bolt by hand four turns. EV two will then work to align and drive his bolt on the mounting bracket side to turn. And then EV one will work to re the torque on this bolts by driving with a pistol grip tool to a high torque, and then following with an even higher torque on the torque wrench once the bolt is deemed good, EV two will be given a go to drive his bolts to torque using the pistol grip tool and this complete arm minimum config EV one will reposition to the beta gimbal assembly, and EV two will hand off the telescoping mid strip for install.",
"animation_start": "1578.0",
"animation_end": "1620.0"
},
{
"index": 16,
"caption": "EV1 & EV2 install mid strut",
"transcript": "And then EV one will work to re the torque on this bolts by driving with a pistol grip tool to a high torque, and then following with an even higher torque on the torque wrench once the bolt is deemed good, EV two will be given a go to drive his bolts to torque using the pistol grip tool and this complete arm minimum config EV one will reposition to the beta gimbal assembly, and EV two will hand off the telescoping mid strip for install. EV one will work to soft dock the side pad onto the BTA. While EV two bolts his the best bolt side in place, EV one will start her four bolt, two turns with the pistol grip tool, and then EV two will drive his club this bolt to torque on the mounting bracket. EV one will then complete her four bolts with our pistol grip tool, and then EV two will drive his bolts to torque. EV two will then egress and reposition the foot restraint to bias it to the right hand side.",
"animation_start": "1620.0",
"animation_end": "1650.0"
},
{
"index": 17,
"caption": "EV2 exit foot restraint and tilt it to the right side",
"transcript": "EV two will then egress and reposition the foot restraint to bias it to the right hand side.",
"animation_start": "1650.0",
"animation_end": "1657.0"
},
{
"index": 18,
"caption": "EV1 hand right mid strut to EV2",
"transcript": "The mod kit, the crew will then repeat the hand off sequence first in mid strat for body strengths to their stow, foot restraint in grip followed by handoff of the very long lower right strap.",
"animation_start": "1657.0",
"animation_end": "1667.0"
},
{
"index": 19,
"caption": "EV1 & EV2 install lower strut",
"transcript": "And an analogous install on strategy will unfold, maybe one position at the right stop bearing for lower strut install and drive the lower strut bolt to torque. EV one will drive his clevis bolts to the mounting brackets.",
"animation_start": "1674.0",
"animation_end": "1688.0"
},
{
"index": 20,
"caption": "EV1 & EV2 install mid strut",
"transcript": "EV one will drive his clevis bolts to the mounting brackets. EV one will then reposition at the BGA, and they will hand off the right telescoping bench stretch following the same as cell strategy. Once the Complete TV One will translate onto the mid stretch and drive two color bulbs to torque to lock out the hologoping mechanism and rigidize the right hand side. EV two will then egress the foot restraint and begin to clean up.",
"animation_start": "1688.0",
"animation_end": "1705.0"
},
{
"index": 21,
"caption": "EV1 finish mid strut install",
"transcript": "EV two will then egress the foot restraint and begin to clean up. Once the multilayer installation or MLI is fully closed and wired by down. EV one will reposition to repeat the collar bolt and MOI ops on the left hand side.",
"animation_start": "1708.0",
"animation_end": "1719.0"
},
{
"index": 22,
"caption": "EV2 move to bag and stow tools",
"transcript": "EV one will reposition to repeat the collar bolt and MOI ops on the left hand side. EV two will then transfer plate around the integrated equipment assembly and stow the tools back in the bag. You'll then pull it in the third ready for translation in later in the EVA.",
"animation_start": "1719.0",
"animation_end": "1728.0"
},
{
"index": 23,
"caption": "EV2 return to worksite and stow tools on body restraint tether",
"transcript": "You'll then pull it in the third ready for translation in later in the EVA. EV two will then translate back around the IEA to the foot restraint and work to stir the foot restraint and the worksite into basic extender on his body restraint tether.",
"animation_start": "1728.0",
"animation_end": "1738.0"
},
{
"index": 24,
"caption": "EV1 take pictures of completed mod kit",
"transcript": "EV two will then translate back around the IEA to the foot restraint and work to stir the foot restraint and the worksite into basic extender on his body restraint tether. EV one, the meanwhile, will translate over to the non radiator side of the IE it takes some still imagery of the completed mod kit.",
"animation_start": "1738.0",
"animation_end": "1747.0"
},
{
"index": 25,
"caption": "EV1 move to battery charge/discharge unit and begin prep work",
"transcript": "EV one, the meanwhile, will translate over to the non radiator side of the IE it takes some still imagery of the completed mod kit. EV one will then translate out to s six to our battery charge discharge unit. She will begin installing some wire ties on a handrail and prep for restraining the MLI or multi layer insulation that covers the battery charge discharge unit Meanwhile, EV two will translate out to the starboard seated cart to stow the foot restraint and worksite's interface extender low profile on the starboard seating cart.",
"animation_start": "1747.0",
"animation_end": "1761.0"
},
{
"index": 26,
"caption": "EV2 translate to CETA cart and stow tools",
"transcript": "She will begin installing some wire ties on a handrail and prep for restraining the MLI or multi layer insulation that covers the battery charge discharge unit Meanwhile, EV two will translate out to the starboard seated cart to stow the foot restraint and worksite's interface extender low profile on the starboard seating cart.",
"animation_start": "1761.0",
"animation_end": "1771.0"
},
{
"index": 27,
"caption": "EV2 retreive crew lock bag and move to EV1",
"transcript": "She will begin installing some wire ties on a handrail and prep for restraining the MLI or multi layer insulation that covers the battery charge discharge unit Meanwhile, EV two will translate out to the starboard seated cart to stow the foot restraint and worksite's interface extender low profile on the starboard seating cart. EV two will then retrieve the crew lock bag onto his body restraint tether and head back out to s six to join eighty one.",
"animation_start": "1771.0",
"animation_end": "1778.0"
},
{
"index": 28,
"caption": "EV1 & EV2 fold and restrain insulation",
"transcript": "This will allow for robotic access when needed in the future. They'll perform some fun orbit or gummy, port it to the shape of a triangle, and restrain it out with a wire tie to a little handrail. The crew will then work to break torque First on h one followed by h two and then restrain the other MLI back to open and expose the second battery charge to discharge units and then work to break torque and reinstall to a known lower torque on the second battery charge discharge unit.",
"animation_start": "1789.0",
"animation_end": "1811.0"
},
{
"index": 29,
"caption": "EV1 & EV2 break torque and reinstall",
"transcript": "First on h one followed by h two and then restrain the other MLI back to open and expose the second battery charge to discharge units and then work to break torque and reinstall to a known lower torque on the second battery charge discharge unit.",
"animation_start": "1811.0",
"animation_end": "1818.0"
},
{
"index": 30,
"caption": "EV1 & EV2 clean up and retrieve crew bag",
"transcript": "Both crew then will clean up and retrieve the crew lock bag to the PRT or body restraint tether and begin to head inboard the completion of the EVA.",
"animation_start": "1818.0",
"animation_end": "1825.0"
},
{
"index": 31,
"caption": "EV2 return to airlock",
"transcript": "Both crew then will clean up and retrieve the crew lock bag to the PRT or body restraint tether and begin to head inboard the completion of the EVA. EV two will lead the way in since he led with second outboard. And then across the IEA, retrieve his fairly green hook. Translate under the MT and at the speed of handrail bridge, translate nadir down to our airlock.",
"animation_start": "1825.0",
"animation_end": "1846.0"
},
{
"index": 32,
"caption": "EV1 return to airlock",
"transcript": "Translate under the MT and at the speed of handrail bridge, translate nadir down to our airlock. EV one in the meanwhile will translate to the S4 IEA, retrieve the folded up mod kit bag grab her fairly the green hook, translate past the CETA cart, hitting those brake pedals, down the CETA handrail bridge and to the airlock. Including a very successful US spacewalk number seventy nine.",
"animation_start": "1846.0",
"animation_end": "1869.0"
}
],
"03232022": [
{
"index": 0,
"caption": "Irrelevant",
"transcription": "The mission control center, noisy shots (e.g. blue screen), or tasks not planned for the spacewalk."
},
{
"index": 1,
"caption": "EV2 goes to CETA cart and stows bag",
"transcript": "Egress the crew lock with two bags. EV two goes to the forward phase of the station, then port to a crew equipment translation aid. Cart. EV two stows the tool bag, while EV one follows the same path.",
"animation_start": "1427.0",
"animation_end": "1441.0"
},
{
"index": 2,
"caption": "EV1 follows EV2's path",
"transcript": "EV two stows the tool bag, while EV one follows the same path.",
"animation_start": "1441.0",
"animation_end": "1451.0"
},
{
"index": 3,
"caption": "EV1 retrieves portable foot restraint",
"transcript": "EV one, which we use a portable foot restraint, and installs it in the robotic arm.",
"animation_start": "1451.0",
"animation_end": "1455.0"
},
{
"index": 4,
"caption": "EV1 installs foot restraint on robotic arm",
"transcript": "EV one, which we use a portable foot restraint, and installs it in the robotic arm. After EV one ingresses the foot restraint, the robotic arm operator, five sec crew member, to the most inboard port radiator beam valve module worksite.",
"animation_start": "1455.0",
"animation_end": "1459.0"
},
{
"index": 5,
"caption": "EV1 enters foot restraint and is transported to worksite",
"transcript": "After EV one ingresses the foot restraint, the robotic arm operator, five sec crew member, to the most inboard port radiator beam valve module worksite. Meanwhile, EV two follows the nadir handrail path and picks up a previous deployed cable reel bag.",
"animation_start": "1459.0",
"animation_end": "1474.0"
},
{
"index": 6,
"caption": "EV2 picks up cable bag",
"transcript": "Meanwhile, EV two follows the nadir handrail path and picks up a previous deployed cable reel bag.",
"animation_start": "1474.0",
"animation_end": "1484.0"
},
{
"index": 7,
"caption": "EV2 deploys ethernet cable",
"transcript": "EV two deploys the ethernet cable along the handrails, then translates zenith to the camera port eight worksite. The end of the cable is pre positioned at the camera extension base for later in the EVA.",
"animation_start": "1484.0",
"animation_end": "1508.0"
},
{
"index": 8,
"caption": "EV2 returns bag to CETA cart and goes to US laboratory module",
"transcript": "EV two retraces the path back to the crew equipment translation aid cart drops off the now empty real bag and takes a different bag to the US laboratory. Module.",
"animation_start": "1508.0",
"animation_end": "1527.0"
},
{
"index": 9,
"caption": "EV2 takes cable adapter from tool bag and moves to worksite",
"transcript": "EV two takes a cable adapter from the tool bag and translate to the starboard income of the European Space Agency's Columbus module.",
"animation_start": "1527.0",
"animation_end": "1543.0"
},
{
"index": 10,
"caption": "EV2 installs jumper",
"transcript": "EV two installs the jumper, which passes power and data from Columbus to the Bartolomeo external platform.",
"animation_start": "1543.0",
"animation_end": "1555.0"
},
{
"index": 11,
"caption": "EV2 close thermal flap and secure it",
"transcript": "A section of the thermal blanket has flipped open, and EV two will close the flap and secure it to handrails with a wire tie.",
"animation_start": "1585.0",
"animation_end": "1597.0"
},
{
"index": 12,
"caption": "EV2 returns to US laboratory module",
"transcript": "V two returns to the bag on the US laboratory module.",
"animation_start": "1597.0",
"animation_end": "1606.0"
},
{
"index": 13,
"caption": "EV2 meets EV1 at worksite with camera",
"transcript": "B two meets EV one at the camera port worksite. After retrieving the new wireless access port capable external high definition camera from the crew lock.",
"animation_start": "1644.0",
"animation_end": "1659.0"
},
{
"index": 14,
"caption": "EV1 & EV2 swap tool bags",
"transcript": "The two crew members exchanged tool bags, After which EV two takes EV one's to a bag back to the crew equipped translation aid cart and stows it.",
"animation_start": "1659.0",
"animation_end": "1663.0"
},
{
"index": 15,
"caption": "EV1 replace old camera with new one",
"transcript": "While EP two was retorquing the four alpha bolts, EV one replaced the existing external high definition camera. With one that provides improved two way high data rate communications between external payloads and earth.",
"animation_start": "1706.0",
"animation_end": "1728.0"
},
{
"index": 16,
"caption": "EV1 installs strap to hold cable in place",
"transcript": "To ensure the new wireless access port cable, does not interfere with the new camera group's ability to pan and tilt. The crew installs a strap to hold the cable in place.",
"animation_start": "1728.0",
"animation_end": "1742.0"
},
{
"index": 17,
"caption": "EV2 mates wireless cable to ethernet cable",
"transcript": "EV two makes the wireless cable to the ethernet cable grouted earlier in the EBA. After the camera change out is complete, EV one is flown to the nadir side of station.",
"animation_start": "1742.0",
"animation_end": "1763.0"
},
{
"index": 18,
"caption": "EV1 flown to new worksite",
"transcript": "After the camera change out is complete, EV one is flown to the nadir side of station. To the port radiator grapple bar worksite.",
"animation_start": "1763.0",
"animation_end": "1770.0"
},
{
"index": 19,
"caption": "EV1 is returned to forward face and exits foot restraint",
"transcript": "EP one is then returned to the forward face of the space station, egresses the robotic arm, And returns the foot restraint to the port cart while EV one performs the t handle tool installation.",
"animation_start": "1790.0",
"animation_end": "1805.0"
},
{
"index": 20,
"caption": "EV2 moves to panel on F side of truss",
"transcript": "And returns the foot restraint to the port cart while EV one performs the t handle tool installation. EV two translates to a panel on the f side of the truss.",
"animation_start": "1805.0",
"animation_end": "1815.0"
},
{
"index": 21,
"caption": "EV2 moves electrical connector",
"transcript": "EV two translates to a panel on the f side of the truss. EV two moves an electrical connector from a non functional connector to a cable which can provide power.",
"animation_start": "1815.0",
"animation_end": "1824.0"
},
{
"index": 22,
"caption": "EV2 picks up tool bags",
"transcript": "EV two then picks up tool bags and returns them back to the airlock.",
"animation_start": "1824.0",
"animation_end": "1829.0"
},
{
"index": 23,
"caption": "EV2 retrieves bag",
"transcript": "After EV two, retrieves another hardware bag from the crew lock.",
"animation_start": "1844.0",
"animation_end": "1851.0"
},
{
"index": 24,
"caption": "EV1 picks up remaining bags and returns to crew-lock",
"transcript": "If you want, picks up the remaining tool bags, and depending on timing, returns to the crew lock, or assist EV two in routing the cable, zenith, to the pump module.",
"animation_start": "1878.0",
"animation_end": "1895.0"
},
{
"index": 25,
"caption": "EV1 & EV2 return to airlock and egress",
"transcript": "This completes the plan tests for the radiator beam valve module jumper install EVA. Crew returned to the crew lock and ingress.",
"animation_start": "1895.0",
"animation_end": "1914.0"
}
],
"06092023": [
{
"index": 0,
"caption": "Irrelevant",
"transcription": "The mission control center, noisy shots (e.g. blue screen), or tasks not planned for the spacewalk."
},
{
"index": 1,
"caption": "EV1 & EV2 exit airlock",
"transcript": "This video is for the IsisS roll out solar ray or Irosa, one a, and Stolie VA. Steve Bowen, EV one, with the red stripes, egresses and receives a crew lock bag and puts it on his body restraint tether. EV two with white stripes, Whitney Hoberg, egresses with the acrylic bag on his body restraint tether and closes the thermal cover.",
"animation_start": "1056.0",
"animation_end": "1079.0"
},
{
"index": 2,
"caption": "EV1 & EV2 move starboard",
"transcript": "EV one translates up the forward face of the truss and goes starboard. He stops to configure safety tether EV two follows a similar translation path and goes to the port, crew equipment, translation aid cart, to temporarily stow his bag and retrieve an articulating portable foot restraint.",
"animation_start": "1079.0",
"animation_end": "1092.0"
},
{
"index": 3,
"caption": "EV2 stow bag and retreive foot restraint",
"transcript": "He stops to configure safety tether EV two follows a similar translation path and goes to the port, crew equipment, translation aid cart, to temporarily stow his bag and retrieve an articulating portable foot restraint.",
"animation_start": "1092.0",
"animation_end": "1097.0"
},
{
"index": 4,
"caption": "EV1 moves to iROSA carrier, stows bag, and retrievs drill",
"transcript": "He stops to configure safety tether EV two follows a similar translation path and goes to the port, crew equipment, translation aid cart, to temporarily stow his bag and retrieve an articulating portable foot restraint. Meanwhile, EV one translates to thyrosa carrier, stows his bag, and retrieves his pistol grip tool.",
"animation_start": "1097.0",
"animation_end": "1105.0"
},
{
"index": 5,
"caption": "EV1 begins preparing iROSA for removal",
"transcript": "EV one begins preparing Irosa for removal from the carrier, first releasing a restraint bolt on the upper Irosa.",
"animation_start": "1105.0",
"animation_end": "1112.0"
},
{
"index": 6,
"caption": "EV2 attaches foot restraint to robotic arm and enters it",
"transcript": "EV two relocates the foot restraint and installs it on the space station's robotic arm. EV two ingresses the foot restraint, and then the arm will move them away from the truss.",
"animation_start": "1112.0",
"animation_end": "1125.0"
},
{
"index": 7,
"caption": "EV1 removes bolts and stows them in bag",
"transcript": "EV two ingresses the foot restraint, and then the arm will move them away from the truss. EV one translates to the lower rosa and releases its first restraint bulb. He releases both anti rotation devices back on the upper eye rosa, and then will stow them in the crew lock bag. On the robotic arm, EV two is flown over to access two sets of volts on the boom end of the upper Irosa.",
"animation_start": "1125.0",
"animation_end": "1146.0"
},
{
"index": 8,
"caption": "EV2 release bolts on iROSA",
"transcript": "On the robotic arm, EV two is flown over to access two sets of volts on the boom end of the upper Irosa. The first two bolts will allow the boom deployment system rollers to be moved into place to help with the array deployment later in the spacewalk. The second two bolts will release two of four mechanisms that hold the erosa and its roll configuration.",
"animation_start": "1146.0",
"animation_end": "1175.0"
},
{
"index": 9,
"caption": "EV1 install handling aids and preps to remove iROSA",
"transcript": "EV one partially releases the upper eye rosas restraint bolt and installs the first of two handling aids called scoops, and prep for removing Irosa from the carrier.",
"animation_start": "1175.0",
"animation_end": "1185.0"
},
{
"index": 10,
"caption": "EV1 & EV2 release iROSA",
"transcript": "EV one partially releases the upper eye rosas restraint bolt and installs the first of two handling aids called scoops, and prep for removing Irosa from the carrier. The arm flies EV two over to the hinge end of the upper Irosa and both crew members work to release the final bolt holding it to the carrier. EV one installs a second scoop, an EV two lifts the IRosa off with the carrier.",
"animation_start": "1185.0",
"animation_end": "1200.0"
},
{
"index": 11,
"caption": "EV2 takes iROSA to mod kit worksite",
"transcript": "After several maneuvers on the robotic arm, EV two will arrive at the one a mod kit work site.",
"animation_start": "1209.0",
"animation_end": "1216.0"
},
{
"index": 12,
"caption": "EV1 reconfigure tethers while moving to mod kit worksite",
"transcript": "During these maneuvers, EV one will pick up the temporarily stowed bag from the port cart and reconfigure both crew's safety tethers. On his way to meet e b two at the Mod kit.",
"animation_start": "1216.0",
"animation_end": "1234.0"
},
{
"index": 13,
"caption": "EV1 & EV2 work to install iROSA",
"transcript": "Both crew will then work to install Irosa onto the one a mounting bracket.",
"animation_start": "1234.0",
"animation_end": "1245.0"
},
{
"index": 14,
"caption": "EV1 & EV2 prep to unfold iROSA",
"transcript": "The crew will release the scoops and EV two will move into position to release the final bolt holding Irosa in its folded position.",
"animation_start": "1245.0",
"animation_end": "1254.0"
},
{
"index": 15,
"caption": "EV1 holds iROSA while EV2 exits foot restraint",
"transcript": "Once released, EV one will hold Irosa close while EV two egresses his foot restraint and gets into position.",
"animation_start": "1254.0",
"animation_end": "1260.0"
},
{
"index": 16,
"caption": "EV1 & EV2 unfold iROSA and secure it to mounting bracket",
"transcript": "Once released, EV one will hold Irosa close while EV two egresses his foot restraint and gets into position. Both crew will then work together to unfold Irosa and secure the right side onto the mounting bracket. Once secured, EV two will drive two hinge bolts that hold Irosa in the unfolded position.",
"animation_start": "1260.0",
"animation_end": "1274.0"
},
{
"index": 17,
"caption": "EV2 move away from iROSA and reconfigure safety tether",
"transcript": "EV two will then move away from myrosa to reconfigure a safety tether on the arm.",
"animation_start": "1274.0",
"animation_end": "1279.0"
},
{
"index": 18,
"caption": "EV1 fully secures iROSA to mounting bracket",
"transcript": "EV two will then move away from myrosa to reconfigure a safety tether on the arm. EV one works to drive eight bolts to fully secure the Irosa to the mounting bracket.",
"animation_start": "1279.0",
"animation_end": "1288.0"
},
{
"index": 19,
"caption": "EV1 & EV2 electronically connect iROSA to ISS power system",
"transcript": "Both crew will then work to electrically connect the new Irosa to the ISS power system. They'll first attach four connectors to Irosa, then both will move to either side of legacy array to disconnect the old array and connect a white cable. This will allow power to flow from both the new Irosa and the legacy array to the space station power system.",
"animation_start": "1288.0",
"animation_end": "1320.0"
},
{
"index": 20,
"caption": "EV1 moves to viewing position",
"transcript": "At this point, EV one moves into a deployment viewing position and EV two will release the final two bolts restraining Iroza in the undeploid position.",
"animation_start": "1320.0",
"animation_end": "1323.0"
},
{
"index": 21,
"caption": "EV2 releases final bolts restraining iROSA",
"transcript": "At this point, EV one moves into a deployment viewing position and EV two will release the final two bolts restraining Iroza in the undeploid position. Iroza will deploy over the next six to ten minutes.",
"animation_start": "1323.0",
"animation_end": "1332.0"
},
{
"index": 22,
"caption": "EV1 moves back to iROSA carrier to configure carrier beams",
"transcript": "Iroza will deploy over the next six to ten minutes. During deployment, EV one translates back to thyroza carrier to reconfigure the carrier beams that previously held the upper Irosa. These beams need to be rotated out of the way to allow access to the lower Irosa on the second EVA Once deployment is complete, EV two will release two bolts that allow the rows of blankets to become tensioned.",
"animation_start": "1332.0",
"animation_end": "1349.0"
},
{
"index": 23,
"caption": "EV2 releases two bolts to allow iROSA to become tensioned",
"transcript": "These beams need to be rotated out of the way to allow access to the lower Irosa on the second EVA Once deployment is complete, EV two will release two bolts that allow the rows of blankets to become tensioned.",
"animation_start": "1349.0",
"animation_end": "1358.0"
},
{
"index": 24,
"caption": "EV2 cleans up and heads to iROSA carrier to help EV1",
"transcript": "These beams need to be rotated out of the way to allow access to the lower Irosa on the second EVA Once deployment is complete, EV two will release two bolts that allow the rows of blankets to become tensioned. EV two then cleans up the mod kit worksite, retrieving his crew lock bag and heads to the carrier to help EV one with the carrier beams.",
"animation_start": "1358.0",
"animation_end": "1370.0"
},
{
"index": 25,
"caption": "EV1 & EV2 release bolts holding beams in place, rotate them out of the way, and secure them",
"transcript": "The crew members work together to release the bolts holding the beams in place. Then they will rotate the beams out of the way and secure them back down. This is the last task in the first DBA.",
"animation_start": "1370.0",
"animation_end": "1390.0"
},
{
"index": 26,
"caption": "EV1 & EV2 clean up worksite",
"transcript": "Both crew will clean up the worksite and translate back to the airlock. They will clean up their tethers on the way They will then work to ingress and begin repressing the airlock.",
"animation_start": "1390.0",
"animation_end": "1399.0"
},
{
"index": 27,
"caption": "EV1 & EV2 head back to airlock",
"transcript": "They will clean up their tethers on the way They will then work to ingress and begin repressing the airlock.",
"animation_start": "1399.0",
"animation_end": "1402.0"
},
{
"index": 28,
"caption": "EV1 & EV2 enter airlock",
"transcript": "They will clean up their tethers on the way They will then work to ingress and begin repressing the airlock. This will finish the first of two EVAs.",
"animation_start": "1402.0",
"animation_end": "1412.0"
}
],
"06262020": [
{
"index": 0,
"caption": "Irrelevant",
"transcription": "The mission control center, noisy shots (e.g. blue screen), or tasks not planned for the spacewalk."
},
{
"index": 1,
"caption": "Chris exits airlock",
"transcript": "Let's take a look This EVA begins the one bravo power channel upgrade. Chris wearing the red striped Egress's first He sets up their tether anchors away from the airlock to enable them to go farther outboard.",
"animation_start": "376.0",
"animation_end": "380.0"
},
{
"index": 2,
"caption": "Chris sets up tether",
"transcript": "Chris wearing the red striped Egress's first He sets up their tether anchors away from the airlock to enable them to go farther outboard.",
"animation_start": "380.0",
"animation_end": "386.0"
},
{
"index": 3,
"caption": "Bob grabs foot restraint and follows outward",
"transcript": "Then Bob wearing the white strip, grabs his foot restraint and follows outboard.",
"animation_start": "386.0",
"animation_end": "391.0"
},
{
"index": 4,
"caption": "Chris sets up foot restraint",
"transcript": "Then Bob wearing the white strip, grabs his foot restraint and follows outboard. Chris picks up his foot restraint on the cedar cart, and heads to the external pallet or EP.",
"animation_start": "391.0",
"animation_end": "396.0"
},
{
"index": 5,
"caption": "Chris heads to external pallete",
"transcript": "Chris picks up his foot restraint on the cedar cart, and heads to the external pallet or EP. The external pallet is held by the robotic arm and houses the new batteries launched from Japan on HDV nine in May.",
"animation_start": "396.0",
"animation_end": "410.0"
},
{
"index": 6,
"caption": "Chris sets up tools and prepares worksite",
"transcript": "Chris sets up his tools and prepares his worksite.",
"animation_start": "410.0",
"animation_end": "416.0"
},
{
"index": 7,
"caption": "Bob moves to IEA",
"transcript": "Bob translates to the s six Integrated Electronics Assembly, or IEA, which will be his main work site throughout the EVA.",
"animation_start": "416.0",
"animation_end": "421.0"
},
{
"index": 8,
"caption": "Chris & Bob finish setup",
"transcript": "Bob translates to the s six Integrated Electronics Assembly, or IEA, which will be his main work site throughout the EVA. The IEA houses the better and hardware for the one b solar arrays and power channel. Chris will join Bob and they work together to finish setup.",
"animation_start": "421.0",
"animation_end": "433.0"
},
{
"index": 9,
"caption": "Chris & Bob retrieve battery from slot 1",
"transcript": "Chris will join Bob and they work together to finish setup. First, battery from slot number one is retrieved. The crew needs to release torque with a ratchet, Then use the pistol grip tool or PGT to complete the release of the bolts. The large battery is removed and the crew worked together to move it over to the EP for disposal.",
"animation_start": "433.0",
"animation_end": "451.0"
},
{
"index": 10,
"caption": "Chris & Bob move battery to EP",
"transcript": "The large battery is removed and the crew worked together to move it over to the EP for disposal.",
"animation_start": "451.0",
"animation_end": "457.0"
},
{
"index": 11,
"caption": "Chris enters foot restraint",
"transcript": "Chris ingresses the foot restraint, and the crew worked together to install the battery in empty slot x.",
"animation_start": "457.0",
"animation_end": "459.0"
},
{
"index": 12,
"caption": "Chris & Bob install battery in empty slot X",
"transcript": "Chris ingresses the foot restraint, and the crew worked together to install the battery in empty slot x.",
"animation_start": "459.0",
"animation_end": "466.0"
},
{
"index": 13,
"caption": "Chris & Bob remove new battery from slot A",
"transcript": "Then the arm maneuvers to place Chris in front of the first new battery in slot a after placing scoops to create handhelds.",
"animation_start": "466.0",
"animation_end": "474.0"
},
{
"index": 14,
"caption": "Chris & Bob move battery to truss",
"transcript": "Then the arm maneuvers to place Chris in front of the first new battery in slot a after placing scoops to create handhelds. The crew will remove the battery and translate it back to the truss and install an empty slot number one.",
"animation_start": "474.0",
"animation_end": "479.0"
},
{
"index": 15,
"caption": "Chris & Bob install empty battery in empty slot 1",
"transcript": "The crew will remove the battery and translate it back to the truss and install an empty slot number one.",
"animation_start": "479.0",
"animation_end": "487.0"
},
{
"index": 16,
"caption": "Bob move foot restraint to reach battery",
"transcript": "Throughout the EVAs, Bob will need to move his foot restraint to reach each battery.",
"animation_start": "487.0",
"animation_end": "493.0"
},
{
"index": 17,
"caption": "Chris & Bob retrieve battery from slot 2",
"transcript": "Next, the battery in slot two is removed and translated over to the pallet.",
"animation_start": "493.0",
"animation_end": "498.0"
},
{
"index": 18,
"caption": "Chris & Bob move battery to EP",
"transcript": "Next, the battery in slot two is removed and translated over to the pallet.",
"animation_start": "498.0",
"animation_end": "502.0"
},
{
"index": 19,
"caption": "Chris enters foot restraint & places battery on BRT",
"transcript": "At the EP, Chris is in a foot restraint and places the battery on his BRT or body restraint tether.",
"animation_start": "502.0",
"animation_end": "508.0"
},
{
"index": 20,
"caption": "Chris releases adapter plate",
"transcript": "At the EP, Chris is in a foot restraint and places the battery on his BRT or body restraint tether. Chris will release the adapter plate launched underneath the battery. Like with the batteries, he has to use the ratchet to release the high torque, and then PGT to fully release the bolt.",
"animation_start": "508.0",
"animation_end": "521.0"
},
{
"index": 21,
"caption": "Chris removes adapter plate and passes it to Bob",
"transcript": "Chris removes the adapter plate to hand a bulb.",
"animation_start": "521.0",
"animation_end": "527.0"
},
{
"index": 22,
"caption": "Bob takes the adapter plate to the truss",
"transcript": "BOG translates back to the truss to install the adapter plate in open slot two.",
"animation_start": "527.0",
"animation_end": "530.0"