forked from charmbracelet/vhs
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcoverage.out
More file actions
1485 lines (1485 loc) · 80.2 KB
/
coverage.out
File metadata and controls
1485 lines (1485 loc) · 80.2 KB
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
mode: set
github.com/agentstation/vhs/examples/neofetch/colorize-ascii.go:18.13,28.26 3 0
github.com/agentstation/vhs/examples/neofetch/colorize-ascii.go:28.26,32.3 3 0
github.com/agentstation/vhs/examples/neofetch/colorize-ascii.go:34.2,34.23 1 0
github.com/agentstation/vhs/examples/neofetch/colorize-ascii.go:37.35,39.2 1 0
github.com/agentstation/vhs/examples/neofetch/colorize-ascii.go:41.34,42.16 1 0
github.com/agentstation/vhs/examples/neofetch/colorize-ascii.go:42.16,44.3 1 0
github.com/agentstation/vhs/examples/neofetch/colorize-ascii.go:45.2,45.31 1 0
github.com/agentstation/vhs/lexer/lexer.go:17.31,21.2 3 1
github.com/agentstation/vhs/lexer/lexer.go:24.28,29.2 4 1
github.com/agentstation/vhs/lexer/lexer.go:32.41,37.14 3 1
github.com/agentstation/vhs/lexer/lexer.go:38.9,39.36 1 0
github.com/agentstation/vhs/lexer/lexer.go:40.11,42.15 2 1
github.com/agentstation/vhs/lexer/lexer.go:43.11,45.15 2 0
github.com/agentstation/vhs/lexer/lexer.go:46.11,48.15 2 1
github.com/agentstation/vhs/lexer/lexer.go:49.11,51.15 2 1
github.com/agentstation/vhs/lexer/lexer.go:52.11,54.15 2 0
github.com/agentstation/vhs/lexer/lexer.go:55.11,57.15 2 1
github.com/agentstation/vhs/lexer/lexer.go:58.11,60.15 2 0
github.com/agentstation/vhs/lexer/lexer.go:61.12,63.15 2 1
github.com/agentstation/vhs/lexer/lexer.go:64.11,66.32 2 1
github.com/agentstation/vhs/lexer/lexer.go:67.11,69.15 2 1
github.com/agentstation/vhs/lexer/lexer.go:70.11,73.15 3 1
github.com/agentstation/vhs/lexer/lexer.go:74.11,77.15 3 1
github.com/agentstation/vhs/lexer/lexer.go:78.12,81.15 3 1
github.com/agentstation/vhs/lexer/lexer.go:82.11,85.15 3 1
github.com/agentstation/vhs/lexer/lexer.go:86.11,89.15 3 1
github.com/agentstation/vhs/lexer/lexer.go:90.10,91.62 1 1
github.com/agentstation/vhs/lexer/lexer.go:91.62,94.4 2 1
github.com/agentstation/vhs/lexer/lexer.go:94.9,94.43 1 1
github.com/agentstation/vhs/lexer/lexer.go:94.43,97.4 2 1
github.com/agentstation/vhs/lexer/lexer.go:97.9,100.4 2 0
github.com/agentstation/vhs/lexer/lexer.go:102.2,102.12 1 1
github.com/agentstation/vhs/lexer/lexer.go:106.69,114.2 2 1
github.com/agentstation/vhs/lexer/lexer.go:118.38,120.6 2 1
github.com/agentstation/vhs/lexer/lexer.go:120.6,122.35 2 1
github.com/agentstation/vhs/lexer/lexer.go:122.35,123.9 1 1
github.com/agentstation/vhs/lexer/lexer.go:128.2,128.27 1 1
github.com/agentstation/vhs/lexer/lexer.go:133.49,135.6 2 1
github.com/agentstation/vhs/lexer/lexer.go:135.6,137.54 2 1
github.com/agentstation/vhs/lexer/lexer.go:137.54,138.9 1 1
github.com/agentstation/vhs/lexer/lexer.go:141.2,141.27 1 1
github.com/agentstation/vhs/lexer/lexer.go:146.35,148.6 2 1
github.com/agentstation/vhs/lexer/lexer.go:148.6,150.31 2 1
github.com/agentstation/vhs/lexer/lexer.go:150.31,151.9 1 1
github.com/agentstation/vhs/lexer/lexer.go:154.2,154.27 1 1
github.com/agentstation/vhs/lexer/lexer.go:159.37,161.35 2 1
github.com/agentstation/vhs/lexer/lexer.go:161.35,163.3 1 1
github.com/agentstation/vhs/lexer/lexer.go:164.2,164.27 1 1
github.com/agentstation/vhs/lexer/lexer.go:169.41,171.127 2 1
github.com/agentstation/vhs/lexer/lexer.go:171.127,173.3 1 1
github.com/agentstation/vhs/lexer/lexer.go:174.2,174.27 1 1
github.com/agentstation/vhs/lexer/lexer.go:180.34,181.25 1 1
github.com/agentstation/vhs/lexer/lexer.go:181.25,184.19 1 1
github.com/agentstation/vhs/lexer/lexer.go:184.19,187.4 2 1
github.com/agentstation/vhs/lexer/lexer.go:188.3,188.15 1 1
github.com/agentstation/vhs/lexer/lexer.go:193.26,195.2 1 1
github.com/agentstation/vhs/lexer/lexer.go:198.27,200.2 1 1
github.com/agentstation/vhs/lexer/lexer.go:203.33,205.2 1 1
github.com/agentstation/vhs/lexer/lexer.go:208.30,210.2 1 1
github.com/agentstation/vhs/lexer/lexer.go:213.28,215.2 1 1
github.com/agentstation/vhs/lexer/lexer.go:218.29,220.2 1 1
github.com/agentstation/vhs/lexer/lexer.go:223.28,225.2 1 1
github.com/agentstation/vhs/lexer/lexer.go:228.33,230.2 1 1
github.com/agentstation/vhs/lexer/lexer.go:236.30,238.2 1 1
github.com/agentstation/vhs/lexer/lexer.go:241.33,242.31 1 1
github.com/agentstation/vhs/lexer/lexer.go:242.31,244.3 1 1
github.com/agentstation/vhs/lexer/lexer.go:245.2,245.27 1 1
github.com/agentstation/vhs/command.go:20.46,22.16 2 0
github.com/agentstation/vhs/command.go:22.16,24.3 1 0
github.com/agentstation/vhs/command.go:26.2,26.48 1 0
github.com/agentstation/vhs/command.go:26.48,28.17 2 0
github.com/agentstation/vhs/command.go:28.17,30.4 1 0
github.com/agentstation/vhs/command.go:33.2,33.12 1 0
github.com/agentstation/vhs/command.go:76.50,76.64 1 0
github.com/agentstation/vhs/command.go:84.42,85.46 1 1
github.com/agentstation/vhs/command.go:85.46,87.17 2 0
github.com/agentstation/vhs/command.go:87.17,89.4 1 0
github.com/agentstation/vhs/command.go:90.3,91.17 2 0
github.com/agentstation/vhs/command.go:91.17,93.4 1 0
github.com/agentstation/vhs/command.go:94.3,94.31 1 0
github.com/agentstation/vhs/command.go:94.31,96.18 2 0
github.com/agentstation/vhs/command.go:96.18,98.5 1 0
github.com/agentstation/vhs/command.go:99.4,99.27 1 0
github.com/agentstation/vhs/command.go:102.3,102.13 1 0
github.com/agentstation/vhs/command.go:110.50,113.8 3 0
github.com/agentstation/vhs/command.go:113.8,116.3 1 0
github.com/agentstation/vhs/command.go:118.2,119.21 2 0
github.com/agentstation/vhs/command.go:119.21,121.17 2 0
github.com/agentstation/vhs/command.go:121.17,124.4 1 0
github.com/agentstation/vhs/command.go:125.3,125.14 1 0
github.com/agentstation/vhs/command.go:128.2,133.6 5 0
github.com/agentstation/vhs/command.go:133.6,135.16 2 0
github.com/agentstation/vhs/command.go:136.15,138.18 2 0
github.com/agentstation/vhs/command.go:138.18,140.5 1 0
github.com/agentstation/vhs/command.go:141.4,143.28 2 0
github.com/agentstation/vhs/command.go:143.28,145.5 1 0
github.com/agentstation/vhs/command.go:146.17,148.18 2 0
github.com/agentstation/vhs/command.go:148.18,150.5 1 0
github.com/agentstation/vhs/command.go:151.4,153.28 2 0
github.com/agentstation/vhs/command.go:153.28,155.5 1 0
github.com/agentstation/vhs/command.go:156.11,159.48 1 0
github.com/agentstation/vhs/command.go:162.3,162.10 1 0
github.com/agentstation/vhs/command.go:163.19,164.12 1 0
github.com/agentstation/vhs/command.go:165.21,166.106 1 0
github.com/agentstation/vhs/command.go:173.50,178.27 3 0
github.com/agentstation/vhs/command.go:178.27,181.14 2 0
github.com/agentstation/vhs/command.go:182.16,183.31 1 0
github.com/agentstation/vhs/command.go:184.14,185.29 1 0
github.com/agentstation/vhs/command.go:186.16,187.27 1 0
github.com/agentstation/vhs/command.go:188.16,189.27 1 0
github.com/agentstation/vhs/command.go:190.20,191.31 1 0
github.com/agentstation/vhs/command.go:192.11,194.30 2 0
github.com/agentstation/vhs/command.go:194.30,196.5 1 0
github.com/agentstation/vhs/command.go:200.3,200.22 1 0
github.com/agentstation/vhs/command.go:200.22,201.24 1 0
github.com/agentstation/vhs/command.go:201.24,203.5 1 0
github.com/agentstation/vhs/command.go:203.10,206.5 1 0
github.com/agentstation/vhs/command.go:210.2,211.16 2 0
github.com/agentstation/vhs/command.go:211.16,213.3 1 0
github.com/agentstation/vhs/command.go:215.2,215.12 1 0
github.com/agentstation/vhs/command.go:220.49,222.16 2 0
github.com/agentstation/vhs/command.go:222.16,224.3 1 0
github.com/agentstation/vhs/command.go:225.2,225.41 1 0
github.com/agentstation/vhs/command.go:225.41,226.12 1 0
github.com/agentstation/vhs/command.go:227.20,229.18 2 0
github.com/agentstation/vhs/command.go:229.18,231.5 1 0
github.com/agentstation/vhs/command.go:232.18,234.18 2 0
github.com/agentstation/vhs/command.go:234.18,236.5 1 0
github.com/agentstation/vhs/command.go:238.8,239.28 1 0
github.com/agentstation/vhs/command.go:239.28,240.30 1 0
github.com/agentstation/vhs/command.go:240.30,242.19 2 0
github.com/agentstation/vhs/command.go:242.19,244.6 1 0
github.com/agentstation/vhs/command.go:249.2,250.16 2 0
github.com/agentstation/vhs/command.go:250.16,252.3 1 0
github.com/agentstation/vhs/command.go:254.2,254.12 1 0
github.com/agentstation/vhs/command.go:259.51,261.16 2 0
github.com/agentstation/vhs/command.go:261.16,263.3 1 0
github.com/agentstation/vhs/command.go:265.2,265.41 1 0
github.com/agentstation/vhs/command.go:265.41,266.12 1 0
github.com/agentstation/vhs/command.go:267.20,269.18 2 0
github.com/agentstation/vhs/command.go:269.18,271.5 1 0
github.com/agentstation/vhs/command.go:272.18,274.18 2 0
github.com/agentstation/vhs/command.go:274.18,276.5 1 0
github.com/agentstation/vhs/command.go:278.8,279.28 1 0
github.com/agentstation/vhs/command.go:279.28,280.30 1 0
github.com/agentstation/vhs/command.go:280.30,282.19 2 0
github.com/agentstation/vhs/command.go:282.19,284.6 1 0
github.com/agentstation/vhs/command.go:289.2,290.16 2 0
github.com/agentstation/vhs/command.go:290.16,292.3 1 0
github.com/agentstation/vhs/command.go:294.2,294.12 1 0
github.com/agentstation/vhs/command.go:298.50,301.2 2 0
github.com/agentstation/vhs/command.go:305.53,308.2 2 0
github.com/agentstation/vhs/command.go:311.50,314.2 2 0
github.com/agentstation/vhs/command.go:318.51,320.16 2 0
github.com/agentstation/vhs/command.go:320.16,322.3 1 0
github.com/agentstation/vhs/command.go:323.2,324.12 2 0
github.com/agentstation/vhs/command.go:328.50,330.21 2 0
github.com/agentstation/vhs/command.go:330.21,333.17 3 0
github.com/agentstation/vhs/command.go:333.17,335.4 1 0
github.com/agentstation/vhs/command.go:337.2,337.27 1 0
github.com/agentstation/vhs/command.go:337.27,339.9 2 0
github.com/agentstation/vhs/command.go:339.9,341.18 2 0
github.com/agentstation/vhs/command.go:341.18,343.5 1 0
github.com/agentstation/vhs/command.go:344.9,346.18 2 0
github.com/agentstation/vhs/command.go:346.18,348.5 1 0
github.com/agentstation/vhs/command.go:350.4,350.25 1 0
github.com/agentstation/vhs/command.go:352.3,352.26 1 0
github.com/agentstation/vhs/command.go:355.2,355.12 1 0
github.com/agentstation/vhs/command.go:359.52,360.19 1 0
github.com/agentstation/vhs/command.go:361.14,362.38 1 0
github.com/agentstation/vhs/command.go:363.33,364.33 1 0
github.com/agentstation/vhs/command.go:365.14,366.41 1 0
github.com/agentstation/vhs/command.go:367.15,368.39 1 0
github.com/agentstation/vhs/command.go:369.14,370.38 1 0
github.com/agentstation/vhs/command.go:371.10,372.38 1 0
github.com/agentstation/vhs/command.go:375.2,375.12 1 0
github.com/agentstation/vhs/command.go:379.50,381.2 1 0
github.com/agentstation/vhs/command.go:384.49,386.2 1 0
github.com/agentstation/vhs/command.go:389.51,391.16 2 0
github.com/agentstation/vhs/command.go:391.16,393.3 1 0
github.com/agentstation/vhs/command.go:394.2,394.25 1 0
github.com/agentstation/vhs/command.go:394.25,396.9 2 0
github.com/agentstation/vhs/command.go:396.9,398.18 2 0
github.com/agentstation/vhs/command.go:398.18,400.5 1 0
github.com/agentstation/vhs/command.go:401.9,403.18 2 0
github.com/agentstation/vhs/command.go:403.18,405.5 1 0
github.com/agentstation/vhs/command.go:406.4,406.25 1 0
github.com/agentstation/vhs/command.go:410.2,410.12 1 0
github.com/agentstation/vhs/command.go:443.49,445.2 1 0
github.com/agentstation/vhs/command.go:448.57,450.16 2 0
github.com/agentstation/vhs/command.go:450.16,452.3 1 0
github.com/agentstation/vhs/command.go:453.2,455.16 3 0
github.com/agentstation/vhs/command.go:455.16,457.3 1 0
github.com/agentstation/vhs/command.go:463.2,464.16 2 0
github.com/agentstation/vhs/command.go:464.16,466.3 1 0
github.com/agentstation/vhs/command.go:468.2,468.12 1 0
github.com/agentstation/vhs/command.go:472.59,475.16 3 0
github.com/agentstation/vhs/command.go:475.16,477.3 1 0
github.com/agentstation/vhs/command.go:479.2,479.12 1 0
github.com/agentstation/vhs/command.go:483.55,485.16 2 0
github.com/agentstation/vhs/command.go:485.16,487.3 1 0
github.com/agentstation/vhs/command.go:488.2,490.12 2 0
github.com/agentstation/vhs/command.go:494.54,496.16 2 0
github.com/agentstation/vhs/command.go:496.16,498.3 1 0
github.com/agentstation/vhs/command.go:499.2,501.12 2 0
github.com/agentstation/vhs/command.go:505.54,507.9 2 0
github.com/agentstation/vhs/command.go:507.9,509.3 1 0
github.com/agentstation/vhs/command.go:511.2,512.12 2 0
github.com/agentstation/vhs/command.go:522.62,524.16 2 0
github.com/agentstation/vhs/command.go:524.16,526.3 1 0
github.com/agentstation/vhs/command.go:528.2,530.16 3 0
github.com/agentstation/vhs/command.go:530.16,532.3 1 0
github.com/agentstation/vhs/command.go:534.2,534.12 1 0
github.com/agentstation/vhs/command.go:538.59,540.16 2 0
github.com/agentstation/vhs/command.go:540.16,542.3 1 0
github.com/agentstation/vhs/command.go:544.2,546.16 3 0
github.com/agentstation/vhs/command.go:546.16,548.3 1 0
github.com/agentstation/vhs/command.go:550.2,550.12 1 0
github.com/agentstation/vhs/command.go:554.54,557.16 3 0
github.com/agentstation/vhs/command.go:557.16,559.3 1 0
github.com/agentstation/vhs/command.go:561.2,562.16 2 0
github.com/agentstation/vhs/command.go:562.16,564.3 1 0
github.com/agentstation/vhs/command.go:566.2,567.16 2 0
github.com/agentstation/vhs/command.go:567.16,569.3 1 0
github.com/agentstation/vhs/command.go:571.2,574.12 3 0
github.com/agentstation/vhs/command.go:578.60,580.16 2 0
github.com/agentstation/vhs/command.go:580.16,582.3 1 0
github.com/agentstation/vhs/command.go:584.2,585.12 2 0
github.com/agentstation/vhs/command.go:589.60,591.16 2 0
github.com/agentstation/vhs/command.go:591.16,593.3 1 0
github.com/agentstation/vhs/command.go:594.2,595.12 2 0
github.com/agentstation/vhs/command.go:599.60,601.16 2 0
github.com/agentstation/vhs/command.go:601.16,603.3 1 0
github.com/agentstation/vhs/command.go:604.2,605.12 2 0
github.com/agentstation/vhs/command.go:609.56,611.16 2 0
github.com/agentstation/vhs/command.go:611.16,613.3 1 0
github.com/agentstation/vhs/command.go:615.2,616.12 2 0
github.com/agentstation/vhs/command.go:620.58,622.16 2 0
github.com/agentstation/vhs/command.go:622.16,624.3 1 0
github.com/agentstation/vhs/command.go:626.2,627.12 2 0
github.com/agentstation/vhs/command.go:631.62,633.16 2 0
github.com/agentstation/vhs/command.go:633.16,635.3 1 0
github.com/agentstation/vhs/command.go:637.2,638.12 2 0
github.com/agentstation/vhs/command.go:642.56,644.16 2 0
github.com/agentstation/vhs/command.go:644.16,646.3 1 0
github.com/agentstation/vhs/command.go:648.2,649.12 2 0
github.com/agentstation/vhs/command.go:653.59,656.2 2 0
github.com/agentstation/vhs/command.go:659.55,661.16 2 0
github.com/agentstation/vhs/command.go:661.16,663.3 1 0
github.com/agentstation/vhs/command.go:665.2,666.12 2 0
github.com/agentstation/vhs/command.go:670.58,673.2 2 0
github.com/agentstation/vhs/command.go:676.62,678.16 2 0
github.com/agentstation/vhs/command.go:678.16,680.3 1 0
github.com/agentstation/vhs/command.go:682.2,683.12 2 0
github.com/agentstation/vhs/command.go:687.63,690.2 2 0
github.com/agentstation/vhs/command.go:693.68,696.2 2 0
github.com/agentstation/vhs/command.go:699.66,701.16 2 0
github.com/agentstation/vhs/command.go:701.16,703.3 1 0
github.com/agentstation/vhs/command.go:704.2,705.12 2 0
github.com/agentstation/vhs/command.go:709.61,711.16 2 0
github.com/agentstation/vhs/command.go:711.16,713.3 1 0
github.com/agentstation/vhs/command.go:715.2,716.12 2 0
github.com/agentstation/vhs/command.go:720.60,723.16 3 0
github.com/agentstation/vhs/command.go:723.16,725.3 1 0
github.com/agentstation/vhs/command.go:727.2,727.12 1 0
github.com/agentstation/vhs/command.go:731.56,734.2 2 0
github.com/agentstation/vhs/command.go:736.40,737.32 1 1
github.com/agentstation/vhs/command.go:737.32,739.3 1 1
github.com/agentstation/vhs/command.go:740.2,740.14 1 1
github.com/agentstation/vhs/command.go:741.11,742.25 1 1
github.com/agentstation/vhs/command.go:743.10,744.22 1 1
github.com/agentstation/vhs/command.go:748.44,750.54 2 1
github.com/agentstation/vhs/command.go:750.54,752.3 1 1
github.com/agentstation/vhs/command.go:753.2,753.15 1 1
github.com/agentstation/vhs/draw.go:23.43,25.2 1 0
github.com/agentstation/vhs/draw.go:27.43,34.2 1 0
github.com/agentstation/vhs/draw.go:41.24,41.53 1 0
github.com/agentstation/vhs/draw.go:42.24,42.53 1 0
github.com/agentstation/vhs/draw.go:44.43,56.14 5 0
github.com/agentstation/vhs/draw.go:56.14,59.3 1 0
github.com/agentstation/vhs/draw.go:59.8,59.22 1 0
github.com/agentstation/vhs/draw.go:59.22,65.3 1 0
github.com/agentstation/vhs/draw.go:69.2,69.26 1 0
github.com/agentstation/vhs/draw.go:77.41,79.2 1 0
github.com/agentstation/vhs/draw.go:81.41,83.2 1 0
github.com/agentstation/vhs/draw.go:85.41,89.16 1 0
github.com/agentstation/vhs/draw.go:89.16,91.3 1 0
github.com/agentstation/vhs/draw.go:92.2,92.26 1 0
github.com/agentstation/vhs/draw.go:101.48,103.2 1 0
github.com/agentstation/vhs/draw.go:105.48,107.2 1 0
github.com/agentstation/vhs/draw.go:109.48,114.25 1 0
github.com/agentstation/vhs/draw.go:114.25,127.3 2 0
github.com/agentstation/vhs/draw.go:130.2,133.25 1 0
github.com/agentstation/vhs/draw.go:133.25,142.3 2 0
github.com/agentstation/vhs/draw.go:145.2,148.16 1 0
github.com/agentstation/vhs/draw.go:148.16,157.3 2 0
github.com/agentstation/vhs/draw.go:160.2,163.16 1 0
github.com/agentstation/vhs/draw.go:163.16,172.3 2 0
github.com/agentstation/vhs/draw.go:174.2,174.27 1 0
github.com/agentstation/vhs/draw.go:178.72,201.16 5 0
github.com/agentstation/vhs/draw.go:201.16,203.3 1 0
github.com/agentstation/vhs/draw.go:203.8,205.3 1 0
github.com/agentstation/vhs/draw.go:207.2,207.16 1 0
github.com/agentstation/vhs/draw.go:207.16,209.3 1 0
github.com/agentstation/vhs/draw.go:213.79,215.24 2 0
github.com/agentstation/vhs/draw.go:216.18,217.66 1 0
github.com/agentstation/vhs/draw.go:218.23,219.65 1 0
github.com/agentstation/vhs/draw.go:220.15,221.62 1 0
github.com/agentstation/vhs/draw.go:222.20,223.61 1 0
github.com/agentstation/vhs/draw.go:226.2,226.16 1 0
github.com/agentstation/vhs/draw.go:226.16,228.3 1 0
github.com/agentstation/vhs/draw.go:236.110,262.13 13 0
github.com/agentstation/vhs/draw.go:262.13,266.3 3 0
github.com/agentstation/vhs/draw.go:266.8,270.3 3 0
github.com/agentstation/vhs/draw.go:272.2,312.16 7 0
github.com/agentstation/vhs/draw.go:312.16,314.3 1 0
github.com/agentstation/vhs/draw.go:314.8,316.3 1 0
github.com/agentstation/vhs/draw.go:317.2,317.12 1 0
github.com/agentstation/vhs/draw.go:320.106,350.26 12 0
github.com/agentstation/vhs/draw.go:350.26,352.14 2 0
github.com/agentstation/vhs/draw.go:352.14,357.4 1 0
github.com/agentstation/vhs/draw.go:357.9,362.4 1 0
github.com/agentstation/vhs/draw.go:364.3,382.4 2 0
github.com/agentstation/vhs/draw.go:386.2,389.16 3 0
github.com/agentstation/vhs/draw.go:389.16,391.3 1 0
github.com/agentstation/vhs/draw.go:391.8,393.3 1 0
github.com/agentstation/vhs/draw.go:394.2,394.12 1 0
github.com/agentstation/vhs/draw.go:398.56,400.16 2 0
github.com/agentstation/vhs/draw.go:401.9,402.60 1 0
github.com/agentstation/vhs/draw.go:403.9,404.59 1 0
github.com/agentstation/vhs/draw.go:405.9,410.12 4 0
github.com/agentstation/vhs/draw.go:411.9,416.12 4 0
github.com/agentstation/vhs/draw.go:417.10,418.52 1 0
github.com/agentstation/vhs/draw.go:420.2,420.8 1 0
github.com/agentstation/vhs/draw.go:424.60,425.31 1 0
github.com/agentstation/vhs/draw.go:425.31,427.3 1 0
github.com/agentstation/vhs/draw.go:430.2,431.19 2 0
github.com/agentstation/vhs/draw.go:431.19,433.3 1 0
github.com/agentstation/vhs/draw.go:436.2,437.22 2 0
github.com/agentstation/vhs/draw.go:437.22,439.3 1 0
github.com/agentstation/vhs/draw.go:441.2,444.64 4 0
github.com/agentstation/vhs/error.go:16.44,18.2 1 0
github.com/agentstation/vhs/error.go:26.30,28.2 1 0
github.com/agentstation/vhs/error.go:31.34,33.2 1 0
github.com/agentstation/vhs/error.go:35.63,43.2 6 0
github.com/agentstation/vhs/error.go:45.60,46.27 1 0
github.com/agentstation/vhs/error.go:46.27,47.28 1 0
github.com/agentstation/vhs/error.go:48.27,49.33 1 0
github.com/agentstation/vhs/error.go:49.33,51.5 1 0
github.com/agentstation/vhs/error.go:52.4,52.60 1 0
github.com/agentstation/vhs/error.go:54.11,55.60 1 0
github.com/agentstation/vhs/evaluator.go:20.57,21.22 1 0
github.com/agentstation/vhs/evaluator.go:21.22,23.3 1 0
github.com/agentstation/vhs/evaluator.go:27.51,28.22 1 0
github.com/agentstation/vhs/evaluator.go:28.22,30.3 1 0
github.com/agentstation/vhs/evaluator.go:35.97,41.38 5 0
github.com/agentstation/vhs/evaluator.go:41.38,43.3 1 0
github.com/agentstation/vhs/evaluator.go:45.2,49.27 2 0
github.com/agentstation/vhs/evaluator.go:49.27,51.3 1 0
github.com/agentstation/vhs/evaluator.go:53.2,53.27 1 0
github.com/agentstation/vhs/evaluator.go:53.27,54.79 1 0
github.com/agentstation/vhs/evaluator.go:54.79,56.18 2 0
github.com/agentstation/vhs/evaluator.go:56.18,58.5 1 0
github.com/agentstation/vhs/evaluator.go:63.2,63.34 1 0
github.com/agentstation/vhs/evaluator.go:63.34,65.3 1 0
github.com/agentstation/vhs/evaluator.go:66.2,66.15 1 0
github.com/agentstation/vhs/evaluator.go:66.15,66.32 1 0
github.com/agentstation/vhs/evaluator.go:71.2,72.16 2 0
github.com/agentstation/vhs/evaluator.go:72.16,74.3 1 0
github.com/agentstation/vhs/evaluator.go:76.2,77.27 2 0
github.com/agentstation/vhs/evaluator.go:77.27,78.85 1 0
github.com/agentstation/vhs/evaluator.go:78.85,80.30 2 0
github.com/agentstation/vhs/evaluator.go:80.30,82.19 2 0
github.com/agentstation/vhs/evaluator.go:82.19,84.6 1 0
github.com/agentstation/vhs/evaluator.go:86.9,88.9 2 0
github.com/agentstation/vhs/evaluator.go:93.2,96.33 4 0
github.com/agentstation/vhs/evaluator.go:96.33,98.3 1 0
github.com/agentstation/vhs/evaluator.go:99.2,99.68 1 0
github.com/agentstation/vhs/evaluator.go:99.68,108.3 1 0
github.com/agentstation/vhs/evaluator.go:110.2,110.23 1 0
github.com/agentstation/vhs/evaluator.go:110.23,112.3 1 0
github.com/agentstation/vhs/evaluator.go:115.2,120.37 2 0
github.com/agentstation/vhs/evaluator.go:120.37,121.37 1 0
github.com/agentstation/vhs/evaluator.go:121.37,122.30 1 0
github.com/agentstation/vhs/evaluator.go:122.30,124.10 2 0
github.com/agentstation/vhs/evaluator.go:126.4,128.18 3 0
github.com/agentstation/vhs/evaluator.go:128.18,130.5 1 0
github.com/agentstation/vhs/evaluator.go:135.2,139.15 3 0
github.com/agentstation/vhs/evaluator.go:139.15,140.42 1 0
github.com/agentstation/vhs/evaluator.go:140.42,143.4 1 0
github.com/agentstation/vhs/evaluator.go:145.3,145.18 1 0
github.com/agentstation/vhs/evaluator.go:148.2,148.21 1 0
github.com/agentstation/vhs/evaluator.go:148.21,153.3 2 0
github.com/agentstation/vhs/evaluator.go:156.2,156.12 1 0
github.com/agentstation/vhs/evaluator.go:156.12,157.23 1 0
github.com/agentstation/vhs/evaluator.go:157.23,159.4 1 0
github.com/agentstation/vhs/evaluator.go:162.2,162.36 1 0
github.com/agentstation/vhs/evaluator.go:162.36,163.23 1 0
github.com/agentstation/vhs/evaluator.go:163.23,166.4 2 0
github.com/agentstation/vhs/evaluator.go:176.3,178.16 2 0
github.com/agentstation/vhs/evaluator.go:178.16,180.4 1 0
github.com/agentstation/vhs/evaluator.go:181.3,181.45 1 0
github.com/agentstation/vhs/evaluator.go:181.45,183.12 2 0
github.com/agentstation/vhs/evaluator.go:185.3,187.17 3 0
github.com/agentstation/vhs/evaluator.go:187.17,190.4 2 0
github.com/agentstation/vhs/evaluator.go:201.2,201.27 1 0
github.com/agentstation/vhs/evaluator.go:201.27,203.3 1 0
github.com/agentstation/vhs/evaluator.go:205.2,206.35 2 0
github.com/agentstation/vhs/evaluator.go:206.35,208.3 1 0
github.com/agentstation/vhs/evaluator.go:209.2,209.12 1 0
github.com/agentstation/vhs/ffmpeg.go:20.75,57.2 4 0
github.com/agentstation/vhs/ffmpeg.go:60.83,93.2 4 0
github.com/agentstation/vhs/ffmpeg.go:97.56,100.28 3 0
github.com/agentstation/vhs/ffmpeg.go:100.28,103.3 2 0
github.com/agentstation/vhs/ffmpeg.go:104.2,104.27 1 0
github.com/agentstation/vhs/ffmpeg.go:104.27,106.3 1 0
github.com/agentstation/vhs/ffmpeg.go:108.2,108.22 1 0
github.com/agentstation/vhs/ffmpeg.go:112.84,113.30 1 0
github.com/agentstation/vhs/ffmpeg.go:113.30,127.3 3 0
github.com/agentstation/vhs/ffmpeg.go:129.2,129.11 1 0
github.com/agentstation/vhs/ffmpeg.go:133.94,134.32 1 0
github.com/agentstation/vhs/ffmpeg.go:134.32,146.3 3 0
github.com/agentstation/vhs/ffmpeg.go:148.2,148.11 1 0
github.com/agentstation/vhs/ffmpeg.go:152.88,154.31 1 0
github.com/agentstation/vhs/ffmpeg.go:154.31,170.3 3 0
github.com/agentstation/vhs/ffmpeg.go:172.2,172.11 1 0
github.com/agentstation/vhs/ffmpeg.go:176.65,189.2 4 0
github.com/agentstation/vhs/ffmpeg.go:192.50,197.2 1 0
github.com/agentstation/vhs/ffmpeg.go:213.92,224.2 2 0
github.com/agentstation/vhs/ffmpeg.go:227.54,228.31 1 0
github.com/agentstation/vhs/ffmpeg.go:228.31,229.45 1 0
github.com/agentstation/vhs/ffmpeg.go:229.45,241.4 1 0
github.com/agentstation/vhs/ffmpeg.go:241.9,244.18 2 0
github.com/agentstation/vhs/ffmpeg.go:244.18,246.5 1 0
github.com/agentstation/vhs/ffmpeg.go:249.4,252.5 1 0
github.com/agentstation/vhs/ffmpeg.go:255.3,256.15 2 0
github.com/agentstation/vhs/ffmpeg.go:259.2,259.11 1 0
github.com/agentstation/vhs/ffmpeg.go:263.51,266.30 2 0
github.com/agentstation/vhs/ffmpeg.go:266.30,275.3 4 0
github.com/agentstation/vhs/ffmpeg.go:277.2,277.11 1 0
github.com/agentstation/vhs/ffmpeg.go:281.54,284.32 2 0
github.com/agentstation/vhs/ffmpeg.go:284.32,285.31 1 0
github.com/agentstation/vhs/ffmpeg.go:285.31,287.4 1 0
github.com/agentstation/vhs/ffmpeg.go:287.9,289.4 1 0
github.com/agentstation/vhs/ffmpeg.go:291.3,296.15 3 0
github.com/agentstation/vhs/ffmpeg.go:299.2,299.11 1 0
github.com/agentstation/vhs/ffmpeg.go:303.51,312.2 2 0
github.com/agentstation/vhs/ffmpeg.go:315.52,323.2 2 0
github.com/agentstation/vhs/ffmpeg.go:326.43,328.2 1 0
github.com/agentstation/vhs/font.go:35.34,36.27 1 1
github.com/agentstation/vhs/font.go:36.27,38.3 1 1
github.com/agentstation/vhs/font.go:39.2,39.19 1 1
github.com/agentstation/vhs/font.go:43.33,47.2 1 1
github.com/agentstation/vhs/font.go:50.70,55.16 3 1
github.com/agentstation/vhs/font.go:55.16,58.3 1 1
github.com/agentstation/vhs/font.go:60.2,60.13 1 1
github.com/agentstation/vhs/font.go:64.51,67.2 2 1
github.com/agentstation/vhs/font.go:70.94,71.35 1 1
github.com/agentstation/vhs/font.go:71.35,73.3 1 1
github.com/agentstation/vhs/font.go:75.2,87.54 7 1
github.com/agentstation/vhs/font.go:87.54,93.76 4 1
github.com/agentstation/vhs/font.go:93.76,96.22 2 1
github.com/agentstation/vhs/font.go:96.22,98.5 1 1
github.com/agentstation/vhs/font.go:98.10,99.10 1 1
github.com/agentstation/vhs/font.go:103.3,103.27 1 1
github.com/agentstation/vhs/font.go:103.27,105.4 1 1
github.com/agentstation/vhs/font.go:106.3,106.45 1 1
github.com/agentstation/vhs/font.go:110.2,113.41 2 1
github.com/agentstation/vhs/font.go:113.41,122.3 2 1
github.com/agentstation/vhs/font.go:122.8,125.3 1 0
github.com/agentstation/vhs/font.go:129.98,150.2 8 1
github.com/agentstation/vhs/font.go:153.42,159.2 2 1
github.com/agentstation/vhs/font.go:162.79,179.33 6 1
github.com/agentstation/vhs/font.go:179.33,181.3 1 1
github.com/agentstation/vhs/font.go:184.2,187.28 2 1
github.com/agentstation/vhs/font.go:187.28,190.24 2 1
github.com/agentstation/vhs/font.go:190.24,192.4 1 1
github.com/agentstation/vhs/font.go:195.2,195.17 1 1
github.com/agentstation/vhs/font.go:205.34,209.2 1 1
github.com/agentstation/vhs/font.go:212.88,217.40 2 1
github.com/agentstation/vhs/font.go:217.40,219.3 1 0
github.com/agentstation/vhs/font.go:222.2,223.16 2 1
github.com/agentstation/vhs/font.go:223.16,225.3 1 1
github.com/agentstation/vhs/font.go:228.2,229.18 2 1
github.com/agentstation/vhs/font.go:235.98,239.33 2 1
github.com/agentstation/vhs/font.go:239.33,243.60 2 1
github.com/agentstation/vhs/font.go:243.60,244.12 1 1
github.com/agentstation/vhs/font.go:248.3,249.17 2 1
github.com/agentstation/vhs/font.go:249.17,251.4 1 1
github.com/agentstation/vhs/font.go:255.2,255.120 1 1
github.com/agentstation/vhs/font.go:260.92,264.33 2 1
github.com/agentstation/vhs/font.go:264.33,266.17 2 1
github.com/agentstation/vhs/font.go:266.17,268.4 1 1
github.com/agentstation/vhs/font.go:271.2,271.89 1 1
github.com/agentstation/vhs/font.go:277.62,324.48 9 1
github.com/agentstation/vhs/font.go:324.48,325.32 1 1
github.com/agentstation/vhs/font.go:325.32,326.39 1 1
github.com/agentstation/vhs/font.go:326.39,328.5 1 1
github.com/agentstation/vhs/font.go:333.2,333.31 1 1
github.com/agentstation/vhs/font.go:333.31,334.34 1 1
github.com/agentstation/vhs/font.go:334.34,342.4 4 1
github.com/agentstation/vhs/font.go:345.2,345.14 1 1
github.com/agentstation/vhs/font.go:351.90,353.41 1 1
github.com/agentstation/vhs/font.go:353.41,355.3 1 1
github.com/agentstation/vhs/font.go:358.2,359.16 2 1
github.com/agentstation/vhs/font.go:359.16,361.3 1 0
github.com/agentstation/vhs/font.go:364.2,365.16 2 1
github.com/agentstation/vhs/font.go:365.16,368.18 2 0
github.com/agentstation/vhs/font.go:368.18,370.4 1 0
github.com/agentstation/vhs/font.go:372.3,372.25 1 0
github.com/agentstation/vhs/font.go:372.25,374.18 2 0
github.com/agentstation/vhs/font.go:374.18,376.5 1 0
github.com/agentstation/vhs/font.go:377.9,379.4 1 0
github.com/agentstation/vhs/font.go:383.2,388.16 2 1
github.com/agentstation/vhs/font.go:388.16,390.3 1 0
github.com/agentstation/vhs/font.go:392.2,392.18 1 1
github.com/agentstation/vhs/font.go:398.67,402.39 2 1
github.com/agentstation/vhs/font.go:402.39,404.17 2 1
github.com/agentstation/vhs/font.go:404.17,406.4 1 1
github.com/agentstation/vhs/font.go:410.2,410.25 1 0
github.com/agentstation/vhs/keys.go:19.35,22.2 2 1
github.com/agentstation/vhs/main.go:52.56,54.17 2 0
github.com/agentstation/vhs/main.go:54.17,56.5 1 0
github.com/agentstation/vhs/main.go:58.55,60.18 2 0
github.com/agentstation/vhs/main.go:60.18,62.5 1 0
github.com/agentstation/vhs/main.go:64.4,67.39 2 0
github.com/agentstation/vhs/main.go:67.39,69.19 2 0
github.com/agentstation/vhs/main.go:69.19,71.6 1 0
github.com/agentstation/vhs/main.go:72.5,72.54 1 0
github.com/agentstation/vhs/main.go:73.10,75.47 2 0
github.com/agentstation/vhs/main.go:75.47,79.6 1 0
github.com/agentstation/vhs/main.go:82.4,83.18 2 0
github.com/agentstation/vhs/main.go:83.18,85.5 1 0
github.com/agentstation/vhs/main.go:86.4,86.27 1 0
github.com/agentstation/vhs/main.go:86.27,88.5 1 0
github.com/agentstation/vhs/main.go:90.4,92.17 3 0
github.com/agentstation/vhs/main.go:92.17,94.5 1 0
github.com/agentstation/vhs/main.go:95.4,98.18 1 0
github.com/agentstation/vhs/main.go:98.18,100.28 1 0
github.com/agentstation/vhs/main.go:100.28,103.7 2 0
github.com/agentstation/vhs/main.go:105.6,105.38 1 0
github.com/agentstation/vhs/main.go:105.38,106.41 1 0
github.com/agentstation/vhs/main.go:106.41,108.8 1 0
github.com/agentstation/vhs/main.go:108.13,108.49 1 0
github.com/agentstation/vhs/main.go:108.49,110.8 1 0
github.com/agentstation/vhs/main.go:110.13,110.48 1 0
github.com/agentstation/vhs/main.go:110.48,112.8 1 0
github.com/agentstation/vhs/main.go:112.13,112.48 1 0
github.com/agentstation/vhs/main.go:112.48,114.8 1 0
github.com/agentstation/vhs/main.go:117.6,117.46 1 0
github.com/agentstation/vhs/main.go:120.4,121.56 2 0
github.com/agentstation/vhs/main.go:121.56,123.5 1 0
github.com/agentstation/vhs/main.go:125.4,125.21 1 0
github.com/agentstation/vhs/main.go:125.21,128.5 2 0
github.com/agentstation/vhs/main.go:130.4,130.66 1 0
github.com/agentstation/vhs/main.go:130.66,131.42 1 0
github.com/agentstation/vhs/main.go:131.42,133.6 1 0
github.com/agentstation/vhs/main.go:135.5,136.19 2 0
github.com/agentstation/vhs/main.go:136.19,138.6 1 0
github.com/agentstation/vhs/main.go:139.5,139.18 1 0
github.com/agentstation/vhs/main.go:139.18,142.6 2 0
github.com/agentstation/vhs/main.go:143.5,143.42 1 0
github.com/agentstation/vhs/main.go:143.42,146.6 2 0
github.com/agentstation/vhs/main.go:147.5,148.42 2 0
github.com/agentstation/vhs/main.go:148.42,150.6 1 0
github.com/agentstation/vhs/main.go:153.4,153.14 1 0
github.com/agentstation/vhs/main.go:162.50,164.16 2 0
github.com/agentstation/vhs/main.go:164.16,167.5 2 0
github.com/agentstation/vhs/main.go:168.4,169.18 2 0
github.com/agentstation/vhs/main.go:169.18,171.5 1 0
github.com/agentstation/vhs/main.go:172.4,172.33 1 0
github.com/agentstation/vhs/main.go:172.33,174.5 1 0
github.com/agentstation/vhs/main.go:175.4,175.14 1 0
github.com/agentstation/vhs/main.go:192.53,197.18 4 0
github.com/agentstation/vhs/main.go:197.18,199.5 1 0
github.com/agentstation/vhs/main.go:201.4,202.18 2 0
github.com/agentstation/vhs/main.go:202.18,204.5 1 0
github.com/agentstation/vhs/main.go:206.4,208.14 2 0
github.com/agentstation/vhs/main.go:216.53,219.30 2 0
github.com/agentstation/vhs/main.go:219.30,221.19 2 0
github.com/agentstation/vhs/main.go:221.19,222.14 1 0
github.com/agentstation/vhs/main.go:225.5,231.23 5 0
github.com/agentstation/vhs/main.go:231.23,234.31 2 0
github.com/agentstation/vhs/main.go:234.31,236.7 1 0
github.com/agentstation/vhs/main.go:237.6,237.19 1 0
github.com/agentstation/vhs/main.go:241.4,241.14 1 0
github.com/agentstation/vhs/main.go:241.14,243.5 1 0
github.com/agentstation/vhs/main.go:245.4,245.14 1 0
github.com/agentstation/vhs/main.go:250.13,257.52 3 0
github.com/agentstation/vhs/main.go:257.52,260.3 2 0
github.com/agentstation/vhs/main.go:263.13,273.23 9 1
github.com/agentstation/vhs/main.go:273.23,275.3 1 0
github.com/agentstation/vhs/main.go:276.2,288.25 4 1
github.com/agentstation/vhs/main.go:288.25,291.3 2 0
github.com/agentstation/vhs/main.go:292.2,292.19 1 1
github.com/agentstation/vhs/main.go:292.19,293.67 1 1
github.com/agentstation/vhs/main.go:293.67,295.4 1 0
github.com/agentstation/vhs/main.go:295.9,297.4 1 1
github.com/agentstation/vhs/main.go:299.2,299.27 1 1
github.com/agentstation/vhs/main.go:305.50,308.16 3 0
github.com/agentstation/vhs/main.go:308.16,310.3 1 0
github.com/agentstation/vhs/main.go:311.2,312.23 2 0
github.com/agentstation/vhs/main.go:317.33,319.22 2 0
github.com/agentstation/vhs/main.go:319.22,321.3 1 0
github.com/agentstation/vhs/main.go:322.2,323.20 2 0
github.com/agentstation/vhs/main.go:323.20,325.3 1 0
github.com/agentstation/vhs/main.go:326.2,327.21 2 0
github.com/agentstation/vhs/main.go:327.21,329.3 1 0
github.com/agentstation/vhs/main.go:331.2,332.64 2 0
github.com/agentstation/vhs/main.go:332.64,337.3 1 0
github.com/agentstation/vhs/main.go:339.2,339.12 1 0
github.com/agentstation/vhs/man.go:91.49,92.40 1 0
github.com/agentstation/vhs/man.go:92.40,96.18 2 0
github.com/agentstation/vhs/man.go:96.18,98.5 1 0
github.com/agentstation/vhs/man.go:99.4,100.18 2 0
github.com/agentstation/vhs/man.go:100.18,102.5 1 0
github.com/agentstation/vhs/man.go:103.4,104.14 2 0
github.com/agentstation/vhs/man.go:107.3,108.17 2 0
github.com/agentstation/vhs/man.go:108.17,110.4 1 0
github.com/agentstation/vhs/man.go:112.3,122.13 3 0
github.com/agentstation/vhs/man.go:126.30,134.2 1 0
github.com/agentstation/vhs/man.go:136.40,139.2 1 0
github.com/agentstation/vhs/man.go:141.39,143.2 1 0
github.com/agentstation/vhs/publish.go:33.54,35.39 2 0
github.com/agentstation/vhs/publish.go:35.39,38.4 2 0
github.com/agentstation/vhs/publish.go:39.3,39.36 1 0
github.com/agentstation/vhs/publish.go:39.36,41.4 1 0
github.com/agentstation/vhs/publish.go:43.3,44.17 2 0
github.com/agentstation/vhs/publish.go:44.17,46.4 1 0
github.com/agentstation/vhs/publish.go:47.3,47.54 1 0
github.com/agentstation/vhs/publish.go:47.54,50.4 2 0
github.com/agentstation/vhs/publish.go:51.3,54.13 4 0
github.com/agentstation/vhs/publish.go:59.33,62.16 3 0
github.com/agentstation/vhs/publish.go:62.16,64.3 1 0
github.com/agentstation/vhs/publish.go:65.2,65.22 1 0
github.com/agentstation/vhs/publish.go:72.55,73.73 1 0
github.com/agentstation/vhs/publish.go:73.73,75.17 2 0
github.com/agentstation/vhs/publish.go:75.17,77.4 1 0
github.com/agentstation/vhs/publish.go:78.3,78.16 1 0
github.com/agentstation/vhs/publish.go:78.16,78.34 1 0
github.com/agentstation/vhs/publish.go:80.3,81.17 2 0
github.com/agentstation/vhs/publish.go:81.17,83.4 1 0
github.com/agentstation/vhs/publish.go:85.3,85.57 1 0
github.com/agentstation/vhs/publish.go:85.57,87.29 2 0
github.com/agentstation/vhs/publish.go:87.29,88.27 1 0
github.com/agentstation/vhs/publish.go:88.27,90.6 1 0
github.com/agentstation/vhs/publish.go:92.5,93.15 2 0
github.com/agentstation/vhs/publish.go:95.4,95.61 1 0
github.com/agentstation/vhs/publish.go:97.3,97.13 1 0
github.com/agentstation/vhs/publish.go:102.41,104.16 2 0
github.com/agentstation/vhs/publish.go:104.16,106.3 1 0
github.com/agentstation/vhs/publish.go:107.2,108.16 2 0
github.com/agentstation/vhs/publish.go:108.16,110.3 1 0
github.com/agentstation/vhs/publish.go:112.2,113.16 2 0
github.com/agentstation/vhs/publish.go:113.16,115.3 1 0
github.com/agentstation/vhs/publish.go:117.2,125.16 4 0
github.com/agentstation/vhs/publish.go:125.16,127.3 1 0
github.com/agentstation/vhs/publish.go:128.2,129.16 2 0
github.com/agentstation/vhs/publish.go:129.16,131.3 1 0
github.com/agentstation/vhs/publish.go:133.2,133.15 1 0
github.com/agentstation/vhs/publish.go:138.43,147.2 8 0
github.com/agentstation/vhs/publish.go:152.64,154.16 2 0
github.com/agentstation/vhs/publish.go:154.16,156.3 1 0
github.com/agentstation/vhs/publish.go:157.2,160.12 2 0
github.com/agentstation/vhs/publish.go:160.12,163.3 2 0
github.com/agentstation/vhs/publish.go:165.2,166.16 2 0
github.com/agentstation/vhs/publish.go:166.16,168.3 1 0
github.com/agentstation/vhs/publish.go:169.2,170.16 2 0
github.com/agentstation/vhs/publish.go:170.16,172.3 1 0
github.com/agentstation/vhs/publish.go:174.2,175.16 2 0
github.com/agentstation/vhs/publish.go:175.16,177.3 1 0
github.com/agentstation/vhs/publish.go:178.2,180.36 2 0
github.com/agentstation/vhs/publish.go:180.36,182.3 1 0
github.com/agentstation/vhs/publish.go:184.2,185.16 2 0
github.com/agentstation/vhs/publish.go:185.16,187.3 1 0
github.com/agentstation/vhs/publish.go:188.2,191.16 3 0
github.com/agentstation/vhs/publish.go:191.16,193.3 1 0
github.com/agentstation/vhs/publish.go:195.2,195.23 1 0
github.com/agentstation/vhs/record.go:72.49,78.16 4 0
github.com/agentstation/vhs/record.go:78.16,80.3 1 0
github.com/agentstation/vhs/record.go:82.2,82.60 1 0
github.com/agentstation/vhs/record.go:82.60,84.3 1 0
github.com/agentstation/vhs/record.go:86.2,87.16 2 0
github.com/agentstation/vhs/record.go:87.16,89.3 1 0
github.com/agentstation/vhs/record.go:93.2,96.27 3 0
github.com/agentstation/vhs/record.go:96.27,98.3 1 0
github.com/agentstation/vhs/record.go:100.2,100.12 1 0
github.com/agentstation/vhs/record.go:100.12,102.7 2 0
github.com/agentstation/vhs/record.go:102.7,105.28 3 0
github.com/agentstation/vhs/record.go:105.28,108.5 1 0
github.com/agentstation/vhs/record.go:114.2,114.12 1 0
github.com/agentstation/vhs/record.go:114.12,114.44 1 0
github.com/agentstation/vhs/record.go:115.2,122.12 5 0
github.com/agentstation/vhs/record.go:131.39,145.49 4 1
github.com/agentstation/vhs/record.go:145.49,147.3 1 1
github.com/agentstation/vhs/record.go:149.2,154.36 4 1
github.com/agentstation/vhs/record.go:154.36,157.35 2 1
github.com/agentstation/vhs/record.go:157.35,159.30 2 1
github.com/agentstation/vhs/record.go:159.30,160.10 1 1
github.com/agentstation/vhs/record.go:163.3,167.42 2 1
github.com/agentstation/vhs/record.go:167.42,169.28 2 1
github.com/agentstation/vhs/record.go:169.28,171.5 1 1
github.com/agentstation/vhs/record.go:171.10,173.5 1 1
github.com/agentstation/vhs/record.go:174.9,174.53 1 1
github.com/agentstation/vhs/record.go:174.53,175.32 1 1
github.com/agentstation/vhs/record.go:175.32,177.5 1 1
github.com/agentstation/vhs/record.go:178.4,178.12 1 1
github.com/agentstation/vhs/record.go:179.9,179.52 1 1
github.com/agentstation/vhs/record.go:179.52,180.32 1 1
github.com/agentstation/vhs/record.go:180.32,182.5 1 1
github.com/agentstation/vhs/record.go:183.4,183.12 1 1
github.com/agentstation/vhs/record.go:184.9,184.52 1 1
github.com/agentstation/vhs/record.go:184.52,186.4 1 0
github.com/agentstation/vhs/record.go:186.9,186.51 1 1
github.com/agentstation/vhs/record.go:186.51,188.18 2 1
github.com/agentstation/vhs/record.go:188.18,190.5 1 1
github.com/agentstation/vhs/record.go:191.9,192.22 1 1
github.com/agentstation/vhs/record.go:192.22,194.5 1 1
github.com/agentstation/vhs/record.go:195.4,195.12 1 1
github.com/agentstation/vhs/record.go:197.3,197.28 1 1
github.com/agentstation/vhs/record.go:200.2,200.27 1 1
github.com/agentstation/vhs/record.go:204.29,205.67 1 1
github.com/agentstation/vhs/record.go:205.67,207.3 1 0
github.com/agentstation/vhs/record.go:208.2,208.34 1 1
github.com/agentstation/vhs/record.go:208.34,210.3 1 1
github.com/agentstation/vhs/record.go:211.2,211.31 1 1
github.com/agentstation/vhs/screenshot.go:27.80,35.2 1 0
github.com/agentstation/vhs/screenshot.go:39.58,44.2 3 1
github.com/agentstation/vhs/screenshot.go:47.64,50.2 2 1
github.com/agentstation/vhs/screenshot.go:53.58,56.44 2 0
github.com/agentstation/vhs/screenshot.go:56.44,66.3 4 0
github.com/agentstation/vhs/screenshot.go:68.2,68.13 1 0
github.com/agentstation/vhs/screenshot.go:72.98,101.2 10 0
github.com/agentstation/vhs/serve.go:41.51,45.18 2 0
github.com/agentstation/vhs/serve.go:45.18,47.4 1 0
github.com/agentstation/vhs/serve.go:48.3,49.16 2 0
github.com/agentstation/vhs/serve.go:49.16,51.4 1 0
github.com/agentstation/vhs/serve.go:52.3,56.30 2 0
github.com/agentstation/vhs/serve.go:56.30,57.37 1 0
github.com/agentstation/vhs/serve.go:57.37,59.6 1 0
github.com/agentstation/vhs/serve.go:60.5,60.62 1 0
github.com/agentstation/vhs/serve.go:63.37,64.33 1 0
github.com/agentstation/vhs/serve.go:64.33,74.16 2 0
github.com/agentstation/vhs/serve.go:74.16,78.8 3 0
github.com/agentstation/vhs/serve.go:84.7,86.21 3 0
github.com/agentstation/vhs/serve.go:86.21,90.8 3 0
github.com/agentstation/vhs/serve.go:93.7,95.20 3 0
github.com/agentstation/vhs/serve.go:95.20,95.47 1 0
github.com/agentstation/vhs/serve.go:96.7,96.74 1 0
github.com/agentstation/vhs/serve.go:96.74,98.15 2 0
github.com/agentstation/vhs/serve.go:99.46,101.29 2 0
github.com/agentstation/vhs/serve.go:102.47,104.30 2 0
github.com/agentstation/vhs/serve.go:105.46,107.29 2 0
github.com/agentstation/vhs/serve.go:108.16,110.29 2 0
github.com/agentstation/vhs/serve.go:112.8,115.46 4 0
github.com/agentstation/vhs/serve.go:118.7,118.24 1 0
github.com/agentstation/vhs/serve.go:118.24,121.8 2 0
github.com/agentstation/vhs/serve.go:123.7,126.11 3 0
github.com/agentstation/vhs/serve.go:132.3,132.17 1 0
github.com/agentstation/vhs/serve.go:132.17,134.4 1 0
github.com/agentstation/vhs/serve.go:137.3,139.17 3 0
github.com/agentstation/vhs/serve.go:139.17,141.4 1 0
github.com/agentstation/vhs/serve.go:144.3,145.27 2 0
github.com/agentstation/vhs/serve.go:145.27,147.55 2 0
github.com/agentstation/vhs/serve.go:147.55,149.5 1 0
github.com/agentstation/vhs/serve.go:152.3,153.13 2 0
github.com/agentstation/vhs/serve.go:153.13,156.4 2 0
github.com/agentstation/vhs/serve.go:158.3,162.41 5 0
github.com/agentstation/vhs/serve.go:162.41,164.4 1 0
github.com/agentstation/vhs/serve.go:167.3,167.15 1 0
github.com/agentstation/vhs/serve_unix.go:11.49,12.44 1 0
github.com/agentstation/vhs/serve_unix.go:12.44,14.3 1 0
github.com/agentstation/vhs/serve_unix.go:15.2,15.44 1 0
github.com/agentstation/vhs/serve_unix.go:15.44,17.3 1 0
github.com/agentstation/vhs/serve_unix.go:18.2,18.12 1 0
github.com/agentstation/vhs/style.go:81.42,95.2 1 1
github.com/agentstation/vhs/svg.go:102.52,107.58 3 1
github.com/agentstation/vhs/svg.go:107.58,111.3 2 1
github.com/agentstation/vhs/svg.go:114.2,115.18 2 1
github.com/agentstation/vhs/svg.go:115.18,117.3 1 1
github.com/agentstation/vhs/svg.go:120.2,126.23 5 1
github.com/agentstation/vhs/svg.go:126.23,130.3 3 1
github.com/agentstation/vhs/svg.go:132.2,144.3 1 1
github.com/agentstation/vhs/svg.go:148.42,149.21 1 1
github.com/agentstation/vhs/svg.go:149.21,151.3 1 1
github.com/agentstation/vhs/svg.go:154.2,155.18 2 1
github.com/agentstation/vhs/svg.go:155.18,157.3 1 1
github.com/agentstation/vhs/svg.go:160.2,164.21 3 1
github.com/agentstation/vhs/svg.go:164.21,166.3 1 0
github.com/agentstation/vhs/svg.go:168.2,173.22 4 1
github.com/agentstation/vhs/svg.go:173.22,176.3 2 1
github.com/agentstation/vhs/svg.go:179.2,184.22 3 1
github.com/agentstation/vhs/svg.go:184.22,186.24 2 1
github.com/agentstation/vhs/svg.go:186.24,188.4 1 0
github.com/agentstation/vhs/svg.go:189.3,193.22 4 1
github.com/agentstation/vhs/svg.go:197.2,201.27 3 1
github.com/agentstation/vhs/svg.go:201.27,203.3 1 1
github.com/agentstation/vhs/svg.go:205.2,214.33 7 1
github.com/agentstation/vhs/svg.go:214.33,215.34 1 1
github.com/agentstation/vhs/svg.go:215.34,217.4 1 1
github.com/agentstation/vhs/svg.go:220.2,230.27 6 1
github.com/agentstation/vhs/svg.go:230.27,232.3 1 1
github.com/agentstation/vhs/svg.go:233.2,252.33 11 1
github.com/agentstation/vhs/svg.go:252.33,253.22 1 1
github.com/agentstation/vhs/svg.go:253.22,256.48 2 1
github.com/agentstation/vhs/svg.go:256.48,257.38 1 0
github.com/agentstation/vhs/svg.go:257.38,258.84 1 0
github.com/agentstation/vhs/svg.go:258.84,260.7 1 0
github.com/agentstation/vhs/svg.go:263.4,263.19 1 1
github.com/agentstation/vhs/svg.go:263.19,265.5 1 0
github.com/agentstation/vhs/svg.go:267.3,267.45 1 1
github.com/agentstation/vhs/svg.go:270.2,276.22 5 1
github.com/agentstation/vhs/svg.go:276.22,279.3 2 1
github.com/agentstation/vhs/svg.go:281.2,284.20 3 1
github.com/agentstation/vhs/svg.go:288.40,294.21 3 1
github.com/agentstation/vhs/svg.go:294.21,295.42 1 1
github.com/agentstation/vhs/svg.go:295.42,297.48 2 1
github.com/agentstation/vhs/svg.go:297.48,298.38 1 0
github.com/agentstation/vhs/svg.go:298.38,299.84 1 0
github.com/agentstation/vhs/svg.go:299.84,301.7 1 0
github.com/agentstation/vhs/svg.go:304.4,304.19 1 1
github.com/agentstation/vhs/svg.go:304.19,306.5 1 0
github.com/agentstation/vhs/svg.go:310.2,310.41 1 1
github.com/agentstation/vhs/svg.go:310.41,322.49 3 1
github.com/agentstation/vhs/svg.go:322.49,324.72 1 1
github.com/agentstation/vhs/svg.go:324.72,326.5 1 1
github.com/agentstation/vhs/svg.go:326.10,326.20 1 1
github.com/agentstation/vhs/svg.go:326.20,329.81 2 1
github.com/agentstation/vhs/svg.go:329.81,330.70 1 1
github.com/agentstation/vhs/svg.go:330.70,332.7 1 1
github.com/agentstation/vhs/svg.go:338.3,338.18 1 1
github.com/agentstation/vhs/svg.go:338.18,342.4 3 1
github.com/agentstation/vhs/svg.go:342.9,345.13 2 1
github.com/agentstation/vhs/svg.go:345.13,347.5 1 1
github.com/agentstation/vhs/svg.go:348.4,350.69 3 1
github.com/agentstation/vhs/svg.go:354.3,362.46 5 1
github.com/agentstation/vhs/svg.go:362.46,364.29 1 1
github.com/agentstation/vhs/svg.go:364.29,370.5 2 1
github.com/agentstation/vhs/svg.go:371.9,378.23 4 1
github.com/agentstation/vhs/svg.go:378.23,380.49 2 1
github.com/agentstation/vhs/svg.go:380.49,381.39 1 0
github.com/agentstation/vhs/svg.go:381.39,382.85 1 0
github.com/agentstation/vhs/svg.go:382.85,384.8 1 0
github.com/agentstation/vhs/svg.go:387.5,387.20 1 1
github.com/agentstation/vhs/svg.go:387.20,389.6 1 0
github.com/agentstation/vhs/svg.go:392.4,396.24 2 1
github.com/agentstation/vhs/svg.go:401.2,401.77 1 1
github.com/agentstation/vhs/svg.go:401.77,407.3 1 0
github.com/agentstation/vhs/svg.go:410.2,410.28 1 1
github.com/agentstation/vhs/svg.go:410.28,416.22 5 1
github.com/agentstation/vhs/svg.go:416.22,423.4 6 0
github.com/agentstation/vhs/svg.go:426.3,431.42 5 1
github.com/agentstation/vhs/svg.go:431.42,441.33 3 1
github.com/agentstation/vhs/svg.go:441.33,444.44 3 0
github.com/agentstation/vhs/svg.go:444.44,446.6 1 0
github.com/agentstation/vhs/svg.go:447.10,449.5 1 1
github.com/agentstation/vhs/svg.go:450.4,450.19 1 1
github.com/agentstation/vhs/svg.go:453.3,453.22 1 1
github.com/agentstation/vhs/svg.go:453.22,456.4 2 0
github.com/agentstation/vhs/svg.go:461.63,463.35 2 1
github.com/agentstation/vhs/svg.go:463.35,470.32 3 1
github.com/agentstation/vhs/svg.go:470.32,471.46 1 1
github.com/agentstation/vhs/svg.go:471.46,474.5 1 1
github.com/agentstation/vhs/svg.go:476.3,476.24 1 1
github.com/agentstation/vhs/svg.go:480.2,482.38 2 1
github.com/agentstation/vhs/svg.go:486.48,497.34 6 1
github.com/agentstation/vhs/svg.go:497.34,502.3 3 1
github.com/agentstation/vhs/svg.go:504.2,513.33 7 1
github.com/agentstation/vhs/svg.go:513.33,515.3 1 1
github.com/agentstation/vhs/svg.go:518.2,519.30 2 1
github.com/agentstation/vhs/svg.go:519.30,521.34 1 1
github.com/agentstation/vhs/svg.go:521.34,524.4 1 1
github.com/agentstation/vhs/svg.go:524.9,527.4 1 1
github.com/agentstation/vhs/svg.go:531.2,545.28 10 1
github.com/agentstation/vhs/svg.go:545.28,549.3 3 1
github.com/agentstation/vhs/svg.go:552.2,553.22 2 1
github.com/agentstation/vhs/svg.go:553.22,555.3 1 0
github.com/agentstation/vhs/svg.go:557.2,558.27 2 1
github.com/agentstation/vhs/svg.go:558.27,560.3 1 1
github.com/agentstation/vhs/svg.go:562.2,581.28 5 1
github.com/agentstation/vhs/svg.go:581.28,593.46 2 1
github.com/agentstation/vhs/svg.go:593.46,596.4 2 1
github.com/agentstation/vhs/svg.go:598.3,598.29 1 1
github.com/agentstation/vhs/svg.go:598.29,601.4 2 1
github.com/agentstation/vhs/svg.go:602.8,603.41 1 1
github.com/agentstation/vhs/svg.go:603.41,606.4 2 1
github.com/agentstation/vhs/svg.go:613.2,616.27 3 1
github.com/agentstation/vhs/svg.go:616.27,621.3 4 1
github.com/agentstation/vhs/svg.go:623.2,626.20 3 1
github.com/agentstation/vhs/svg.go:630.78,640.36 5 1
github.com/agentstation/vhs/svg.go:640.36,643.36 3 0
github.com/agentstation/vhs/svg.go:643.36,644.65 1 0
github.com/agentstation/vhs/svg.go:644.65,646.47 2 0
github.com/agentstation/vhs/svg.go:646.47,647.84 1 0
github.com/agentstation/vhs/svg.go:647.84,649.23 2 0
github.com/agentstation/vhs/svg.go:649.23,651.8 1 0
github.com/agentstation/vhs/svg.go:654.5,654.20 1 0
github.com/agentstation/vhs/svg.go:654.20,656.6 1 0
github.com/agentstation/vhs/svg.go:662.2,662.35 1 1
github.com/agentstation/vhs/svg.go:662.35,671.16 4 1
github.com/agentstation/vhs/svg.go:671.16,672.46 1 1
github.com/agentstation/vhs/svg.go:672.46,673.83 1 1
github.com/agentstation/vhs/svg.go:673.83,675.49 2 1
github.com/agentstation/vhs/svg.go:675.49,677.7 1 0
github.com/agentstation/vhs/svg.go:678.6,678.11 1 1
github.com/agentstation/vhs/svg.go:684.3,684.63 1 1
github.com/agentstation/vhs/svg.go:684.63,685.12 1 0
github.com/agentstation/vhs/svg.go:689.3,689.51 1 1
github.com/agentstation/vhs/svg.go:689.51,691.46 2 0
github.com/agentstation/vhs/svg.go:691.46,692.83 1 0
github.com/agentstation/vhs/svg.go:692.83,694.6 1 0
github.com/agentstation/vhs/svg.go:696.4,696.19 1 0
github.com/agentstation/vhs/svg.go:696.19,698.5 1 0
github.com/agentstation/vhs/svg.go:705.3,705.75 1 1
github.com/agentstation/vhs/svg.go:705.75,708.23 2 1
github.com/agentstation/vhs/svg.go:708.23,710.5 1 1
github.com/agentstation/vhs/svg.go:711.4,714.46 2 1
github.com/agentstation/vhs/svg.go:714.46,715.24 1 1
github.com/agentstation/vhs/svg.go:715.24,717.6 1 0
github.com/agentstation/vhs/svg.go:720.5,721.25 2 1
github.com/agentstation/vhs/svg.go:721.25,723.6 1 0
github.com/agentstation/vhs/svg.go:724.5,725.63 2 1
github.com/agentstation/vhs/svg.go:725.63,728.84 2 1
github.com/agentstation/vhs/svg.go:728.84,730.26 2 1
github.com/agentstation/vhs/svg.go:730.26,732.8 1 0
github.com/agentstation/vhs/svg.go:733.7,736.26 3 1
github.com/agentstation/vhs/svg.go:739.5,739.59 1 1
github.com/agentstation/vhs/svg.go:739.59,742.61 2 0
github.com/agentstation/vhs/svg.go:742.61,744.7 1 0
github.com/agentstation/vhs/svg.go:751.4,754.50 2 1
github.com/agentstation/vhs/svg.go:754.50,757.34 2 0
github.com/agentstation/vhs/svg.go:757.34,759.6 1 0
github.com/agentstation/vhs/svg.go:763.4,763.46 1 1
github.com/agentstation/vhs/svg.go:763.46,767.35 2 0
github.com/agentstation/vhs/svg.go:767.35,769.38 2 0
github.com/agentstation/vhs/svg.go:769.38,771.7 1 0
github.com/agentstation/vhs/svg.go:772.11,774.6 1 0
github.com/agentstation/vhs/svg.go:778.5,781.27 2 0
github.com/agentstation/vhs/svg.go:781.27,786.6 3 0
github.com/agentstation/vhs/svg.go:786.11,789.6 1 0
github.com/agentstation/vhs/svg.go:792.5,793.30 2 0
github.com/agentstation/vhs/svg.go:793.30,795.6 1 0
github.com/agentstation/vhs/svg.go:798.5,799.28 2 0
github.com/agentstation/vhs/svg.go:799.28,801.6 1 0
github.com/agentstation/vhs/svg.go:805.5,805.58 1 0
github.com/agentstation/vhs/svg.go:805.58,809.6 1 0
github.com/agentstation/vhs/svg.go:809.11,813.6 1 0
github.com/agentstation/vhs/svg.go:816.5,816.26 1 0
github.com/agentstation/vhs/svg.go:816.26,819.39 2 0
github.com/agentstation/vhs/svg.go:819.39,826.87 4 0
github.com/agentstation/vhs/svg.go:826.87,828.59 2 0
github.com/agentstation/vhs/svg.go:828.59,830.29 2 0
github.com/agentstation/vhs/svg.go:830.29,832.10 1 0
github.com/agentstation/vhs/svg.go:834.8,834.22 1 0
github.com/agentstation/vhs/svg.go:834.22,836.9 1 0
github.com/agentstation/vhs/svg.go:837.8,837.24 1 0
github.com/agentstation/vhs/svg.go:837.24,839.9 1 0
github.com/agentstation/vhs/svg.go:840.8,840.27 1 0
github.com/agentstation/vhs/svg.go:840.27,842.9 1 0
github.com/agentstation/vhs/svg.go:846.7,849.31 3 0
github.com/agentstation/vhs/svg.go:849.31,853.92 4 0
github.com/agentstation/vhs/svg.go:853.92,855.68 2 0
github.com/agentstation/vhs/svg.go:855.68,857.34 2 0
github.com/agentstation/vhs/svg.go:857.34,859.11 1 0
github.com/agentstation/vhs/svg.go:861.9,861.27 1 0
github.com/agentstation/vhs/svg.go:861.27,863.10 1 0
github.com/agentstation/vhs/svg.go:864.9,864.29 1 0
github.com/agentstation/vhs/svg.go:864.29,866.10 1 0
github.com/agentstation/vhs/svg.go:867.9,867.32 1 0
github.com/agentstation/vhs/svg.go:867.32,869.10 1 0
github.com/agentstation/vhs/svg.go:872.8,872.68 1 0
github.com/agentstation/vhs/svg.go:872.68,873.14 1 0
github.com/agentstation/vhs/svg.go:876.8,877.11 2 0
github.com/agentstation/vhs/svg.go:881.7,882.27 2 0
github.com/agentstation/vhs/svg.go:882.27,884.8 1 0
github.com/agentstation/vhs/svg.go:886.7,886.25 1 0
github.com/agentstation/vhs/svg.go:886.25,888.8 1 0
github.com/agentstation/vhs/svg.go:888.13,890.8 1 0
github.com/agentstation/vhs/svg.go:894.5,895.24 2 0
github.com/agentstation/vhs/svg.go:896.10,903.5 4 1
github.com/agentstation/vhs/svg.go:907.2,910.20 3 1
github.com/agentstation/vhs/svg.go:914.64,915.44 1 1
github.com/agentstation/vhs/svg.go:915.44,917.3 1 1
github.com/agentstation/vhs/svg.go:919.2,920.56 2 1
github.com/agentstation/vhs/svg.go:924.59,925.29 1 1
github.com/agentstation/vhs/svg.go:925.29,927.3 1 1
github.com/agentstation/vhs/svg.go:929.2,930.15 2 1
github.com/agentstation/vhs/svg.go:931.19,932.13 1 1
github.com/agentstation/vhs/svg.go:933.17,934.13 1 1
github.com/agentstation/vhs/svg.go:935.19,936.13 1 1
github.com/agentstation/vhs/svg.go:937.20,938.13 1 1
github.com/agentstation/vhs/svg.go:939.18,940.13 1 1
github.com/agentstation/vhs/svg.go:941.21,942.13 1 1
github.com/agentstation/vhs/svg.go:943.18,944.13 1 1
github.com/agentstation/vhs/svg.go:945.19,946.13 1 1
github.com/agentstation/vhs/svg.go:947.35,948.13 1 1
github.com/agentstation/vhs/svg.go:949.10,950.12 1 1
github.com/agentstation/vhs/svg.go:955.153,959.21 3 1
github.com/agentstation/vhs/svg.go:959.21,968.87 6 1