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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
|
# Generated by oe-go-mod-fetcher.py v3.0.0
# Module cache data for Go dependencies
#
# This file contains recipe-specific module metadata.
# The task implementations are in go-mod-vcs.bbclass.
inherit go-mod-vcs
# Module metadata for cache building (one module per line)
GO_MODULE_CACHE_DATA = '[\
{"module":"oras.land/oras-go/v2","version":"v2.6.0","vcs_hash":"86505a6e63d43f5c00db3580afd751ed7a24b4f78bcff42dd0af542660ed851b","timestamp":"2025-05-07T09:04:41Z","subdir":"","vcs_ref":"refs/tags/v2.6.0"},\
{"module":"mvdan.cc/gofumpt","version":"v0.9.2","vcs_hash":"4c43719ef6ebc44cc2acc5485e7863283bc1225f99255d761ea2e28d892dad18","timestamp":"2025-10-21T22:24:55Z","subdir":"","vcs_ref":"refs/tags/v0.9.2"},\
{"module":"goa.design/goa/v3","version":"v3.23.4","vcs_hash":"ee907b5d758e5f877f4bd359db7fd122ce4835e8ec10277745afcb7d7cff1d77","timestamp":"2025-12-14T23:32:09Z","subdir":"","vcs_ref":"refs/tags/v3.23.4"},\
{"module":"gitlab.com/gitlab-org/api/client-go","version":"v1.46.0","vcs_hash":"a0885663a446bce834cce3e8d213fc378858c87dd2ec22e9ef614665f2cc6c79","timestamp":"2026-03-01T22:20:17Z","subdir":"","vcs_ref":"refs/tags/v1.46.0"},\
{"module":"github.com/go-sql-driver/mysql","version":"v1.9.3","vcs_hash":"8d8b13db0a1aeb458c063fdae5bc8310ea4fe3f080f94fad773cad52094745d9","timestamp":"2025-06-13T06:20:32Z","subdir":"","vcs_ref":"refs/tags/v1.9.3"},\
{"module":"github.com/julienschmidt/httprouter","version":"v1.3.0","vcs_hash":"14612f57dd95aeae83955a7b4f9b44d716f96bdef922732f059430cdff278e10","timestamp":"2019-09-29T23:21:22Z","subdir":"","vcs_ref":"refs/tags/v1.3.0"},\
{"module":"github.com/manifoldco/promptui","version":"v0.9.0","vcs_hash":"ccda1647adbf73f32ea9ff35e9bb82de6323276e0901957ba6ce58b5039220b6","timestamp":"2021-10-30T11:01:18Z","subdir":"","vcs_ref":"refs/tags/v0.9.0"},\
{"module":"github.com/rivo/uniseg","version":"v0.4.7","vcs_hash":"1e062c5a8f3a8c313cef582853dc2ed0687bb0632f4cf127d7aaad85b7ce642f","timestamp":"2024-02-08T13:16:15Z","subdir":"","vcs_ref":"refs/tags/v0.4.7"},\
{"module":"github.com/AliyunContainerService/ack-ram-tool/pkg/credentials/provider","version":"v0.14.0","vcs_hash":"8b36cec40e10012666b2fd2f39c118d986cd4a25c5a21cc910335a559d9c3b60","timestamp":"2024-08-23T08:45:20Z","subdir":"pkg/credentials/provider","vcs_ref":"refs/tags/pkg/credentials/provider/v0.14.0"},\
{"module":"github.com/spiffe/go-spiffe/v2","version":"v2.6.0","vcs_hash":"aca54385906c3e38bd7515a2b0b52e4b6be402d2333e38eb4d2484305552aca4","timestamp":"2025-08-21T14:57:50Z","subdir":"","vcs_ref":"refs/tags/v2.6.0"},\
{"module":"github.com/distribution/reference","version":"v0.6.0","vcs_hash":"ac2c94a9c45cfe172807163d3f9ae441bf0db0b30e528660d1b5db49678ed93a","timestamp":"2024-03-20T17:09:59Z","subdir":"","vcs_ref":"refs/tags/v0.6.0"},\
{"module":"github.com/anmitsu/go-shlex","version":"v0.0.0-20200514113438-38f4b401e2be","vcs_hash":"174668ad03025c9f32520083455fa92edcd780a3131b9788221545f13c170c4b","timestamp":"2020-05-14T11:34:38Z","subdir":"","vcs_ref":""},\
{"module":"github.com/tomasen/realip","version":"v0.0.0-20180522021738-f0c99a92ddce","vcs_hash":"f2aa10a4a2d1e4fbd7fe37a4e76998bfe3c9b3f4cd53c0e44baf0c66bce7a5e6","timestamp":"2018-05-22T02:17:38Z","subdir":"","vcs_ref":""},\
{"module":"github.com/ryanuber/columnize","version":"v2.1.2+incompatible","vcs_hash":"5b964e53b7b54cd88da2c905ca3ca5d27634b28c188383097a7de43ad5e1082e","timestamp":"2020-08-19T15:58:40Z","subdir":"","vcs_ref":"refs/tags/v2.1.2"},\
{"module":"github.com/ryanuber/go-glob","version":"v1.0.0","vcs_hash":"8ddefa95258fe1a9afdde3406ce35b4d0dd7a468c29dbca55cbdaae965df6a3f","timestamp":"2019-01-24T19:22:32Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/alexflint/go-arg","version":"v1.5.1","vcs_hash":"c93291152d467fbb2a25bc23bc105940d7d2ab454b537b0bf82ec0000dd9ab3b","timestamp":"2024-06-28T15:03:08Z","subdir":"","vcs_ref":"refs/tags/v1.5.1"},\
{"module":"github.com/alexflint/go-scalar","version":"v1.2.0","vcs_hash":"bb5544d7107518483b3580a2708d7b533175bf6c2805018b1715f6339f095c5e","timestamp":"2022-10-02T19:51:52Z","subdir":"","vcs_ref":"refs/tags/v1.2.0"},\
{"module":"github.com/modern-go/reflect2","version":"v1.0.3-0.20250322232337-35a7c28c31ee","vcs_hash":"b0f41ee692517b4a6786fb48ce9d49e532c4f77cac6cacadd6ff49dcb7325931","timestamp":"2025-03-22T23:23:37Z","subdir":"","vcs_ref":""},\
{"module":"github.com/modern-go/reflect2","version":"v1.0.1","vcs_hash":"5f837a9261606850c86cb464d91848cb7e2e334be529f812891c080cfd881b9a","timestamp":"2018-07-18T01:23:57Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\
{"module":"github.com/modern-go/reflect2","version":"v1.0.2","vcs_hash":"21d04a5177cfeef214577aa3b5c90454aed60c2184b77a0fffa7922aa843666a","timestamp":"2021-09-11T02:10:30Z","subdir":"","vcs_ref":"refs/tags/v1.0.2"},\
{"module":"github.com/modern-go/reflect2","version":"v0.0.0-20180701023420-4b7aa43c6742","vcs_hash":"8af4d54440b1b6703cd1b26845d1f5914958f01a18064501f7b77554b973b677","timestamp":"2018-07-01T02:34:20Z","subdir":"","vcs_ref":""},\
{"module":"github.com/modern-go/concurrent","version":"v0.0.0-20180228061459-e0a39a4cb421","vcs_hash":"720429d876e0c333185ab19ebc83ff389edac9e5b459d07c74e7a18cae1c5b7a","timestamp":"2018-02-28T06:14:59Z","subdir":"","vcs_ref":""},\
{"module":"github.com/modern-go/concurrent","version":"v0.0.0-20180306012644-bacd9c7ef1dd","vcs_hash":"09a996e0549b43adaeb1c40a8dc339563ed1a8dcc831e5cb074441a30d502d23","timestamp":"2018-03-06T01:26:44Z","subdir":"","vcs_ref":""},\
{"module":"github.com/buildkite/roko","version":"v1.4.0","vcs_hash":"9612cf0159cf1a8222cab9a637fc231130e3854e12644a053f86d23c651c9d7e","timestamp":"2025-08-25T05:32:52Z","subdir":"","vcs_ref":"refs/tags/v1.4.0"},\
{"module":"github.com/buildkite/zstash","version":"v0.8.0","vcs_hash":"00842b1783dae067cde803c381bae155ac04f9cf27d855c8f65aa46356e5c34b","timestamp":"2025-12-16T20:41:34Z","subdir":"","vcs_ref":"refs/tags/v0.8.0"},\
{"module":"github.com/buildkite/go-pipeline","version":"v0.16.0","vcs_hash":"fb533ff85c096e66d78d5750b7c7f9381598d0fd59cc4dab0548f5b28d3a5846","timestamp":"2025-09-11T04:20:23Z","subdir":"","vcs_ref":"refs/tags/v0.16.0"},\
{"module":"github.com/buildkite/agent/v3","version":"v3.118.0","vcs_hash":"e033c04875b6cba81a83b6f79cba743faa55230a2b62e3d147ade0c950aa7fd7","timestamp":"2026-02-16T22:43:03Z","subdir":"","vcs_ref":""},\
{"module":"github.com/buildkite/interpolate","version":"v0.1.5","vcs_hash":"2620317c9068ebfae2e1f1b433a1549a50a57d566c1a706885e77ee2f3705dce","timestamp":"2024-12-16T21:33:37Z","subdir":"","vcs_ref":"refs/tags/v0.1.5"},\
{"module":"github.com/buildkite/test-engine-client","version":"v1.6.0","vcs_hash":"1e940c12e75ffdfed08fe793076e221d14e7b2968b348088e9ceb19178640d2d","timestamp":"2025-08-26T03:55:47Z","subdir":"","vcs_ref":"refs/tags/v1.6.0"},\
{"module":"github.com/buildkite/shellwords","version":"v1.0.1","vcs_hash":"848eee7fc714fe293ce813dc64b1ca9ae1ba5503a316ab70dc312dc571c80d84","timestamp":"2025-08-27T06:02:17Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\
{"module":"github.com/buildkite/go-buildkite/v4","version":"v4.13.1","vcs_hash":"935fddfaff2131b3ea64df827bb4177826a15b484895a4e96a140416e4fea916","timestamp":"2025-12-19T00:39:21Z","subdir":"","vcs_ref":"refs/tags/v4.13.1"},\
{"module":"github.com/buildkite/bintest/v3","version":"v3.3.0","vcs_hash":"0b0c7cf1f08702d30ea130bcf8e2462fb4c68399274da0414e786f552a4f439a","timestamp":"2024-08-20T01:49:37Z","subdir":"","vcs_ref":"refs/tags/v3.3.0"},\
{"module":"github.com/VividCortex/ewma","version":"v1.2.0","vcs_hash":"c43a2bf2c6bac424614e43cd2875eda3ab199a1c1cfe822b7fc50e73cadcf42f","timestamp":"2021-04-26T20:50:39Z","subdir":"","vcs_ref":"refs/tags/v1.2.0"},\
{"module":"github.com/spf13/jwalterweatherman","version":"v1.1.0","vcs_hash":"1b388a1684e1a9c684765489ae3b6773c18ed7e7fd1b43f66505af2786ebedea","timestamp":"2018-10-28T14:53:47Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\
{"module":"github.com/spf13/cast","version":"v1.10.0","vcs_hash":"9cc7dcb092f85c0bf4943e1b48f1e8797e55b24b96e1a8470fe8489d0e8015cf","timestamp":"2025-09-08T16:45:31Z","subdir":"","vcs_ref":"refs/tags/v1.10.0"},\
{"module":"github.com/spf13/afero","version":"v1.15.0","vcs_hash":"cddc2f28eb963a54c5e24c75f7a8c40f64cd3123acfcd144fcc900d516d36218","timestamp":"2025-09-08T16:25:29Z","subdir":"","vcs_ref":"refs/tags/v1.15.0"},\
{"module":"github.com/spf13/cobra","version":"v1.10.2","vcs_hash":"a79409fa1813cac46edeefb925df9a65bfd1c4cf3dd47dbb576c385d5f527685","timestamp":"2025-12-03T23:51:15Z","subdir":"","vcs_ref":"refs/tags/v1.10.2"},\
{"module":"github.com/spf13/viper","version":"v1.21.0","vcs_hash":"e7b37e37f2cd2d170f3534659410aec441645d7ed057439fa55c09bbf204f6ba","timestamp":"2025-09-08T16:56:14Z","subdir":"","vcs_ref":"refs/tags/v1.21.0"},\
{"module":"github.com/spf13/pflag","version":"v1.0.10","vcs_hash":"737f239b3c3bd4e75040785cfc62b8349a547b1425bba1698b712866455bce75","timestamp":"2025-09-02T06:08:29Z","subdir":"","vcs_ref":"refs/tags/v1.0.10"},\
{"module":"github.com/spf13/pflag","version":"v1.0.9","vcs_hash":"241e9025159bbbea2f54722542a86c03ff35968a42a753a0a4e0738690720a54","timestamp":"2025-09-01T07:27:15Z","subdir":"","vcs_ref":"refs/tags/v1.0.9"},\
{"module":"github.com/json-iterator/go","version":"v1.1.12","vcs_hash":"bdb67d21e426f2274ff76d4829ac60348539016b1aa54fa98cfccc554be12f3b","timestamp":"2021-09-11T02:17:26Z","subdir":"","vcs_ref":"refs/tags/v1.1.12"},\
{"module":"github.com/json-iterator/go","version":"v1.1.10","vcs_hash":"a44fce67615b7f8252fb40a09b5770b9fa36955ae40d57b8404688feadeaead6","timestamp":"2020-06-08T02:58:30Z","subdir":"","vcs_ref":"refs/tags/v1.1.10"},\
{"module":"github.com/schollz/jsonstore","version":"v1.1.0","vcs_hash":"42805149fe005e813d4875081e84356784e1ac3bc166f22bdeff4b31454c4656","timestamp":"2018-05-07T00:09:06Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\
{"module":"github.com/uwu-tools/magex","version":"v0.10.1","vcs_hash":"83c272e5e4e5636c30e2b0c39a7e997b18d79a43e0ca0d318033758b0e830c6c","timestamp":"2024-12-23T08:10:56Z","subdir":"","vcs_ref":"refs/tags/v0.10.1"},\
{"module":"github.com/fatih/color","version":"v1.18.0","vcs_hash":"5d3a7d46049b39f7f5f80bbbcaf1d95f84b393dcee5978948fd4ca3a5abb4461","timestamp":"2024-10-03T07:06:28Z","subdir":"","vcs_ref":"refs/tags/v1.18.0"},\
{"module":"github.com/sigstore/sigstore","version":"v1.10.5","vcs_hash":"f632620b118622c4f6f0fd5a8ffb35562efe0b959e8fb767e782cdae82de42f8","timestamp":"2026-03-19T06:28:53Z","subdir":"","vcs_ref":"refs/tags/v1.10.5"},\
{"module":"github.com/sigstore/sigstore/pkg/signature/kms/gcp","version":"v1.10.5","vcs_hash":"f632620b118622c4f6f0fd5a8ffb35562efe0b959e8fb767e782cdae82de42f8","timestamp":"2026-03-19T06:28:53Z","subdir":"pkg/signature/kms/gcp","vcs_ref":"refs/tags/pkg/signature/kms/gcp/v1.10.5"},\
{"module":"github.com/sigstore/sigstore/pkg/signature/kms/azure","version":"v1.10.5","vcs_hash":"f632620b118622c4f6f0fd5a8ffb35562efe0b959e8fb767e782cdae82de42f8","timestamp":"2026-03-19T06:28:53Z","subdir":"pkg/signature/kms/azure","vcs_ref":"refs/tags/pkg/signature/kms/azure/v1.10.5"},\
{"module":"github.com/sigstore/sigstore/pkg/signature/kms/aws","version":"v1.10.5","vcs_hash":"f632620b118622c4f6f0fd5a8ffb35562efe0b959e8fb767e782cdae82de42f8","timestamp":"2026-03-19T06:28:53Z","subdir":"pkg/signature/kms/aws","vcs_ref":"refs/tags/pkg/signature/kms/aws/v1.10.5"},\
{"module":"github.com/sigstore/sigstore/pkg/signature/kms/hashivault","version":"v1.10.5","vcs_hash":"f632620b118622c4f6f0fd5a8ffb35562efe0b959e8fb767e782cdae82de42f8","timestamp":"2026-03-19T06:28:53Z","subdir":"pkg/signature/kms/hashivault","vcs_ref":"refs/tags/pkg/signature/kms/hashivault/v1.10.5"},\
{"module":"github.com/sigstore/cosign/v3","version":"v3.0.6","vcs_hash":"c45af3d1988a0a6be7dea19ff257032006115e95d9d7bff32a1fcfb75db39116","timestamp":"2026-04-06T21:39:58Z","subdir":"v3","vcs_ref":"refs/tags/v3.0.6"},\
{"module":"github.com/sigstore/fulcio","version":"v1.8.5","vcs_hash":"f4ac0b91529eff588b010c8804ff2c42300583d1b74f740e73db697b2e8be540","timestamp":"2026-01-12T18:09:23Z","subdir":"","vcs_ref":"refs/tags/v1.8.5"},\
{"module":"github.com/sigstore/rekor-tiles/v2","version":"v2.2.1","vcs_hash":"e82d37d89b4398c3ee4482c20c392aa6a6bbe3dfe4fd367b87b7ee3cdfb52915","timestamp":"2026-02-19T19:37:45Z","subdir":"","vcs_ref":"refs/tags/v2.2.1"},\
{"module":"github.com/sigstore/rekor","version":"v1.5.1","vcs_hash":"995929d17f6b315db50c0f9732b26473150cc6b6a4d009478c00444e5ec47cd0","timestamp":"2026-03-09T21:35:21Z","subdir":"","vcs_ref":"refs/tags/v1.5.1"},\
{"module":"github.com/sigstore/timestamp-authority/v2","version":"v2.0.5","vcs_hash":"46f7cf1ff3064eede1696ad2462f4111491ea6b61dee40813179dd6f555f884a","timestamp":"2026-03-03T18:38:51Z","subdir":"","vcs_ref":"refs/tags/v2.0.5"},\
{"module":"github.com/sigstore/sigstore-go","version":"v1.1.4","vcs_hash":"266db4b6b3687a3b36e4aba7537c3db2811ed76f16474c4689b7a41d20321f18","timestamp":"2025-12-08T09:34:58Z","subdir":"","vcs_ref":"refs/tags/v1.1.4"},\
{"module":"github.com/sigstore/protobuf-specs","version":"v0.5.0","vcs_hash":"4be3492e50d1e30ee1365286244a71456814ed25f2b112ffae504266afbecb00","timestamp":"2025-07-10T06:03:26Z","subdir":"","vcs_ref":"refs/tags/v0.5.0"},\
{"module":"github.com/howeyc/gopass","version":"v0.0.0-20210920133722-c8aef6fb66ef","vcs_hash":"1deb750bd2d09147da511025f52d75cbd45f6e5f80eb1bbf3d344e9598bde744","timestamp":"2021-09-20T13:37:22Z","subdir":"","vcs_ref":""},\
{"module":"github.com/nozzle/throttler","version":"v0.0.0-20180817012639-2ea982251481","vcs_hash":"35c501c05bb35994d4e4f4c4722538cb8b7870852baf345b3c431383206d1edc","timestamp":"2018-08-17T01:26:39Z","subdir":"","vcs_ref":""},\
{"module":"github.com/pborman/uuid","version":"v1.2.1","vcs_hash":"cba9e46d5ff491261063a3daac2284a2c32e2093078c458bcfcbfc5d1b182a6e","timestamp":"2019-10-24T13:36:33Z","subdir":"","vcs_ref":"refs/tags/v1.2.1"},\
{"module":"github.com/pborman/getopt","version":"v0.0.0-20170112200414-7148bc3a4c30","vcs_hash":"893bec9d8f253309233daeee17bf86babe07a90327a3093ca886e0f9c83f99f7","timestamp":"2017-01-12T20:04:14Z","subdir":"","vcs_ref":""},\
{"module":"github.com/letsencrypt/pkcs11key/v4","version":"v4.0.0","vcs_hash":"f339fd96baff52a8e262b8e80c64f0360f6b5b74d6474336e5c71a770c892bcb","timestamp":"2019-11-12T03:04:07Z","subdir":"v4","vcs_ref":"refs/tags/v4.0.0"},\
{"module":"github.com/letsencrypt/borp","version":"v0.0.0-20251118150929-89c6927051ae","vcs_hash":"bd8cf6d640129e878ba88a5b1953da7a8af16a7b8cdd0ab424f9ce6a7173d415","timestamp":"2025-11-18T15:09:29Z","subdir":"","vcs_ref":""},\
{"module":"github.com/letsencrypt/challtestsrv","version":"v1.3.3","vcs_hash":"eed51fbeab97f37883f3a40dc31f11e8ca104e57ad59270a9553d87faa2b67a6","timestamp":"2025-04-09T19:51:28Z","subdir":"","vcs_ref":"refs/tags/v1.3.3"},\
{"module":"github.com/letsencrypt/validator/v10","version":"v10.0.0-20230215210743-a0c7dfc17158","vcs_hash":"d7eb90bf5f437e5ade7bc42475549d497d96f89a6415d3b9b5ae8336a1b9f0b3","timestamp":"2023-02-15T21:07:43Z","subdir":"","vcs_ref":""},\
{"module":"github.com/letsencrypt/boulder","version":"v0.20260223.0","vcs_hash":"f955ec89a39eec751140b143fb864d754835ed0045ae5df0e44dbc1f5da66a5b","timestamp":"2026-02-20T23:14:52Z","subdir":"","vcs_ref":"refs/tags/v0.20260223.0"},\
{"module":"github.com/fxamacker/cbor/v2","version":"v2.9.0","vcs_hash":"a2e55d2b4fdba69f8a4cfc76758713247ee27c62d5ad4168e8c14369f3c94c36","timestamp":"2025-07-14T04:00:34Z","subdir":"","vcs_ref":"refs/tags/v2.9.0"},\
{"module":"github.com/tetratelabs/wazero","version":"v1.11.0","vcs_hash":"65efbbf9a949dc054e98610f913942c7dae4b1f99f643f5414adfd19393f1c7c","timestamp":"2025-12-18T15:01:01Z","subdir":"","vcs_ref":"refs/tags/v1.11.0"},\
{"module":"github.com/tjfoc/gmsm","version":"v1.4.1","vcs_hash":"cee77f432720257a95f43597653d54db55a570e026dff7502dc6d51cff5ad649","timestamp":"2021-07-09T03:07:47Z","subdir":"","vcs_ref":"refs/tags/v1.4.1"},\
{"module":"github.com/tjfoc/gmsm","version":"v1.3.2","vcs_hash":"a2169e878b8bf81f50473aa95664fbef40225e6da4a30e003e84c45eb9476f86","timestamp":"2020-06-08T07:18:37Z","subdir":"","vcs_ref":"refs/tags/v1.3.2"},\
{"module":"github.com/prometheus/prometheus","version":"v0.51.0","vcs_hash":"980a3b429b0579f2c2d6382ac68fbd17ba19bfa894b38c6e0e3ce5dcc4288b1f","timestamp":"2024-03-19T10:49:40Z","subdir":"","vcs_ref":"refs/tags/v0.51.0"},\
{"module":"github.com/prometheus/common","version":"v0.67.5","vcs_hash":"e25eba751b8d2b51932a55c4935ba29cdd17393b8b579c60d0e59a0eab35dd5a","timestamp":"2026-01-05T14:14:40Z","subdir":"","vcs_ref":"refs/tags/v0.67.5"},\
{"module":"github.com/prometheus/client_model","version":"v0.6.2","vcs_hash":"ce4113e6c8f9de1c05a5198a36f67001c5b8ac458bbdbca291a0800fa698d5b1","timestamp":"2025-04-11T05:38:16Z","subdir":"","vcs_ref":"refs/tags/v0.6.2"},\
{"module":"github.com/prometheus/client_model","version":"v0.0.0-20190812154241-14fe0d1b01d4","vcs_hash":"51e8f292b7b4c73ee0cd08ea12700b5d30bb89b5b541d85eaee134d6035c3069","timestamp":"2019-08-12T15:42:41Z","subdir":"","vcs_ref":""},\
{"module":"github.com/prometheus/otlptranslator","version":"v1.0.0","vcs_hash":"f715cf2135e953ee5ebcc6025f0734e5a3b9adb54e2140be6071ab88025b7f8b","timestamp":"2025-09-09T19:39:14Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/prometheus/client_golang","version":"v1.23.2","vcs_hash":"d9bbeca592abd4abe4a9bb304c93ff338301ffcad964694c918522126d52a1d2","timestamp":"2025-09-05T14:03:59Z","subdir":"","vcs_ref":"refs/tags/v1.23.2"},\
{"module":"github.com/prometheus/procfs","version":"v0.19.2","vcs_hash":"4ba43fedb66349da63590a73d3cd2456a557a4f717a87d1fa2b8f902328ca520","timestamp":"2025-10-30T14:20:06Z","subdir":"","vcs_ref":"refs/tags/v0.19.2"},\
{"module":"github.com/poy/onpar","version":"v1.1.2","vcs_hash":"1ddb944f24119b1b9e46a47ce6b19c94cf317318f32b410a6bc61cacea48afb0","timestamp":"2020-12-22T14:54:47Z","subdir":"","vcs_ref":"refs/tags/v1.1.2"},\
{"module":"github.com/go-playground/universal-translator","version":"v0.18.1","vcs_hash":"0d1c810d6eecbd6fe801bd0d0b90f194d3da6627bb921c3a7c007cb4055df549","timestamp":"2023-01-30T04:27:26Z","subdir":"","vcs_ref":"refs/tags/v0.18.1"},\
{"module":"github.com/go-playground/locales","version":"v0.14.1","vcs_hash":"316e718c5bc47878949f483aa5aceaf3aaf4cf93aa7ac26a648229bcf4b4cbaa","timestamp":"2023-01-05T16:04:36Z","subdir":"","vcs_ref":"refs/tags/v0.14.1"},\
{"module":"github.com/go-playground/validator/v10","version":"v10.30.1","vcs_hash":"1b9d172a93b7c523f732d763a3c0ab19dec2876c437270b02c2d1204dc31efb1","timestamp":"2025-12-24T16:08:59Z","subdir":"","vcs_ref":"refs/tags/v10.30.1"},\
{"module":"github.com/syndtr/goleveldb","version":"v1.0.1-0.20220721030215-126854af5e6d","vcs_hash":"e235339a3b62d86588980eea53546b06c36a7d1f4f68f0c427c52dbe4d251657","timestamp":"2022-07-21T03:02:15Z","subdir":"","vcs_ref":""},\
{"module":"github.com/alecthomas/units","version":"v0.0.0-20240927000941-0f3dac36c52b","vcs_hash":"a29df7d1a787519b6e2ce58aba8e52ffc0aa566a3c6cfdb79fee16be24a0616b","timestamp":"2024-09-27T00:09:41Z","subdir":"","vcs_ref":""},\
{"module":"github.com/alecthomas/kingpin/v2","version":"v2.4.0","vcs_hash":"ae34e4803d18ba03ac4e70e84f5e737ec48634b725413ad5282fb01d6fc47dda","timestamp":"2023-09-30T22:59:49Z","subdir":"","vcs_ref":"refs/tags/v2.4.0"},\
{"module":"github.com/ncruces/go-strftime","version":"v1.0.0","vcs_hash":"827520e6a472a9ef265997c94922c1b928967406597709602bce986450301e23","timestamp":"2025-10-08T11:45:18Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric","version":"v0.55.0","vcs_hash":"bc817097ac8324503a357241edaa274a0617c238690ccb47deb70f8f0af65eb2","timestamp":"2026-01-16T21:40:50Z","subdir":"exporter/metric","vcs_ref":"refs/tags/exporter/metric/v0.55.0"},\
{"module":"github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp","version":"v1.31.0","vcs_hash":"bc817097ac8324503a357241edaa274a0617c238690ccb47deb70f8f0af65eb2","timestamp":"2026-01-16T21:40:50Z","subdir":"detectors/gcp","vcs_ref":"refs/tags/detectors/gcp/v1.31.0"},\
{"module":"github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping","version":"v0.55.0","vcs_hash":"bc817097ac8324503a357241edaa274a0617c238690ccb47deb70f8f0af65eb2","timestamp":"2026-01-16T21:40:50Z","subdir":"internal/resourcemapping","vcs_ref":"refs/tags/internal/resourcemapping/v0.55.0"},\
{"module":"github.com/GoogleCloudPlatform/grpc-gcp-go/grpcgcp","version":"v1.5.3","vcs_hash":"91a6747dc3a000d23bcf5bd713d921804a0bda335857ae53e17684aa37bc9ed3","timestamp":"2025-05-27T16:38:23Z","subdir":"grpcgcp","vcs_ref":"refs/tags/grpcgcp/v1.5.3"},\
{"module":"github.com/decred/dcrd/dcrec/secp256k1/v4","version":"v4.4.0","vcs_hash":"dea203beeafba9300d7341afcdd38985621ebd2ec9d4c5a8a7d262cbb2c2bc41","timestamp":"2025-02-20T17:33:47Z","subdir":"dcrec/secp256k1","vcs_ref":"refs/tags/dcrec/secp256k1/v4.4.0"},\
{"module":"github.com/decred/dcrd/crypto/blake256","version":"v1.1.0","vcs_hash":"6b53d2d53c1d8abc0b1e3afd84693f1e8e516f653a62396f262dd3998d23cdf9","timestamp":"2024-07-22T16:17:11Z","subdir":"crypto/blake256","vcs_ref":"refs/tags/crypto/blake256/v1.1.0"},\
{"module":"github.com/gogo/protobuf","version":"v1.3.2","vcs_hash":"e07d7c0e03a0e2831dd973581be0944984030693bc73f0b67a64e53b4c690635","timestamp":"2021-01-10T08:01:47Z","subdir":"","vcs_ref":"refs/tags/v1.3.2"},\
{"module":"github.com/antihax/optional","version":"v1.0.0","vcs_hash":"535a79fbd6ec4a2d00a2eaeb938554011f822f57d36bc924215af19f4bab0697","timestamp":"2019-10-10T23:37:20Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/mwitkow/go-conntrack","version":"v0.0.0-20190716064945-2f068394615f","vcs_hash":"0c95da896ecaf67638f45eea2282c2c840e57fd5bef90b1316645fe86914c177","timestamp":"2019-07-16T06:49:45Z","subdir":"","vcs_ref":""},\
{"module":"github.com/mwitkow/go-proto-validators","version":"v0.2.0","vcs_hash":"ce1bb359fbabfd1fa57927cd8d5043d45c286a2dfa4a7b4989ffcad4f93bd162","timestamp":"2019-09-17T15:22:38Z","subdir":"","vcs_ref":"refs/tags/v0.2.0"},\
{"module":"github.com/jmespath/go-jmespath","version":"v0.4.1-0.20220621161143-b0104c826a24","vcs_hash":"26a4690aec4cb479c32b41319b1f4a678f2398b4543417d821305581d11ba347","timestamp":"2022-06-21T16:11:43Z","subdir":"","vcs_ref":""},\
{"module":"github.com/jmespath/go-jmespath/internal/testify","version":"v1.5.1","vcs_hash":"2760c91c21f60b7531a8c72d94a8ef0c04735a7ea14330467907030d320b9bff","timestamp":"2020-09-18T22:50:35Z","subdir":"internal/testify","vcs_ref":"refs/tags/internal/testify/v1.5.1"},\
{"module":"github.com/brunoscheufler/aws-ecs-metadata-go","version":"v0.0.0-20220812150832-b6b31c6eeeaf","vcs_hash":"ee4621c614993d1e340ec6517210bdaa8d3a47fb33b591237db58b84706ba3a9","timestamp":"2022-08-12T15:08:32Z","subdir":"","vcs_ref":""},\
{"module":"github.com/google/martian/v3","version":"v3.3.3","vcs_hash":"bb49ff7cfe7cab97fc1ad58498112c4c80ab2c4264e619480b00511c13efe5c0","timestamp":"2022-08-16T15:12:57Z","subdir":"","vcs_ref":"refs/tags/v3.3.3"},\
{"module":"github.com/google/go-licenses/v2","version":"v2.0.0-alpha.1","vcs_hash":"cc639036c5ae90a60c6dcdda80e50aeb252b887719c514557e217bbf17355392","timestamp":"2024-06-27T08:23:44Z","subdir":"","vcs_ref":"refs/tags/v2.0.0-alpha.1"},\
{"module":"github.com/google/go-tpm-tools","version":"v0.4.7","vcs_hash":"de640cbe977a9e2ed05cffa29afc1014108364c7843419a8325301d8eb830d84","timestamp":"2025-11-06T00:20:08Z","subdir":"","vcs_ref":"refs/tags/v0.4.7"},\
{"module":"github.com/google/flatbuffers","version":"v25.2.10+incompatible","vcs_hash":"ce9b72b27fcded0a26400b6622baf9c55c9b6f4f644381ad1d00f5e64decc48d","timestamp":"2025-02-11T04:25:03Z","subdir":"","vcs_ref":"refs/tags/v25.2.10"},\
{"module":"github.com/google/go-cmp","version":"v0.7.0","vcs_hash":"460ed71bde70f3a932cad8d9044d3f12302bf8b6e95353bd17c44189712e2763","timestamp":"2025-01-14T18:15:44Z","subdir":"","vcs_ref":"refs/tags/v0.7.0"},\
{"module":"github.com/google/go-cmp","version":"v0.3.0","vcs_hash":"ae58fd0d54f7194cd02ff68b9600f09892901604ebd985b881c9860505e91785","timestamp":"2019-03-12T03:24:27Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"github.com/google/go-cmp","version":"v0.6.0","vcs_hash":"066c8baed8b5c49c8bf75e59b5e0a559593a7098e3e99236e4fc5b6e29e3ac91","timestamp":"2023-08-31T17:32:40Z","subdir":"","vcs_ref":"refs/tags/v0.6.0"},\
{"module":"github.com/google/go-cmp","version":"v0.4.0","vcs_hash":"04ff364bb494ac39b4a8c906ddd6c47ddef7d89071af49fc9d78eebd2ee4f937","timestamp":"2019-12-16T21:18:14Z","subdir":"","vcs_ref":"refs/tags/v0.4.0"},\
{"module":"github.com/google/go-cmp","version":"v0.3.1","vcs_hash":"bbba6265e3e26d3a892583135ccfff338512124f01097cb15f8532f41f14d3f1","timestamp":"2019-08-05T20:51:40Z","subdir":"","vcs_ref":"refs/tags/v0.3.1"},\
{"module":"github.com/google/go-cmp","version":"v0.2.0","vcs_hash":"bb2851e042ef699bbc2df1ef8c7b0c754822560b89602db9ff6f6315b5afddf7","timestamp":"2018-02-02T21:19:42Z","subdir":"","vcs_ref":"refs/tags/v0.2.0"},\
{"module":"github.com/google/go-cmp","version":"v0.5.5","vcs_hash":"0cb91aa96094555f9ecdf5cd1f80913d4c0b415460a65e7aa698aaf406dae3ce","timestamp":"2021-03-03T20:48:37Z","subdir":"","vcs_ref":"refs/tags/v0.5.5"},\
{"module":"github.com/google/go-tpm","version":"v0.9.8","vcs_hash":"ce1ed46c59112f1d14d376bacbbbd12b6bde694b8e9094f459b61413279becd6","timestamp":"2025-12-29T18:04:51Z","subdir":"","vcs_ref":"refs/tags/v0.9.8"},\
{"module":"github.com/google/btree","version":"v1.1.3","vcs_hash":"6ab438bcfaa9c1612b157b0bd34881cf1fb3c76d6152d52d03e8bfcb0763a691","timestamp":"2024-08-21T16:26:17Z","subdir":"","vcs_ref":"refs/tags/v1.1.3"},\
{"module":"github.com/google/licenseclassifier/v2","version":"v2.0.0","vcs_hash":"34079684787fc6a5316bedf82cff361c17273e1bdf442af51edcb6d07a262f5f","timestamp":"2022-09-16T17:06:11Z","subdir":"","vcs_ref":"refs/tags/v2.0.0"},\
{"module":"github.com/google/addlicense","version":"v1.1.1","vcs_hash":"1be16a1e7355f2db888fc6e0730c5a27e74788066889f89ab79a41fdedb1b9ab","timestamp":"2023-01-18T13:27:11Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\
{"module":"github.com/google/go-github/v73","version":"v73.0.0","vcs_hash":"1b576e06a7f0f3869907c57bd4aa824607b9df99115f48e03b9088a096410d87","timestamp":"2025-06-24T14:34:17Z","subdir":"","vcs_ref":"refs/tags/v73.0.0"},\
{"module":"github.com/google/go-containerregistry","version":"v0.21.3","vcs_hash":"89a36255d2ce5d8a9a1060f3cd61fa20336f8d9e3c7d34568873eab9c5161a69","timestamp":"2026-03-17T23:22:01Z","subdir":"","vcs_ref":"refs/tags/v0.21.3"},\
{"module":"github.com/google/cel-go","version":"v0.27.0","vcs_hash":"6affb2e1f241c1c52d130049505120750a5a52df8a3e2b5ffec9c85f8a72527b","timestamp":"2026-01-29T23:52:27Z","subdir":"","vcs_ref":"refs/tags/v0.27.0"},\
{"module":"github.com/google/uuid","version":"v1.6.0","vcs_hash":"1743dd7863ebf20fb946ec26a0525a27c91536f2d01acf863b0a99566cd8f3e5","timestamp":"2024-01-23T18:54:04Z","subdir":"","vcs_ref":"refs/tags/v1.6.0"},\
{"module":"github.com/google/uuid","version":"v1.0.0","vcs_hash":"9c4788a0a21771df759c6389067061e3fd3a1ebf4cc47f12ab880b4f241d4681","timestamp":"2018-08-27T20:42:32Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/google/wire","version":"v0.7.0","vcs_hash":"2df60c44cabc6d6319ab7ad57a510707240202b118563c17fa61d0d08806347b","timestamp":"2025-08-22T13:52:05Z","subdir":"","vcs_ref":"refs/tags/v0.7.0"},\
{"module":"github.com/google/pprof","version":"v0.0.0-20250602020802-c6617b811d0e","vcs_hash":"a3359ed837d4a9da895029e7f67c3254f0e52d64b31a90775dd1b4848710660b","timestamp":"2025-06-02T02:08:02Z","subdir":"","vcs_ref":""},\
{"module":"github.com/google/pprof","version":"v0.0.0-20210407192527-94a9f03dee38","vcs_hash":"83b537173998661445f5e58b15dd2d0f835ffe14b4bc95fe20e7275b350698e8","timestamp":"2021-04-07T19:25:27Z","subdir":"","vcs_ref":""},\
{"module":"github.com/google/gofuzz","version":"v1.2.0","vcs_hash":"3937010173fd05b3f7349b62cbf84ac3b69011d5b5f248f16416a9e481943f54","timestamp":"2020-08-04T22:43:24Z","subdir":"","vcs_ref":"refs/tags/v1.2.0"},\
{"module":"github.com/google/gofuzz","version":"v1.0.0","vcs_hash":"3b10b16f3e547f9036aa468f5a846c1e873d084728258048c32c4afc2a1bb2cf","timestamp":"2019-04-08T17:44:45Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/google/shlex","version":"v0.0.0-20191202100458-e7afc7fbc510","vcs_hash":"6317e931b780de46077449706d69a38f426197406a504d848e3500a0d06b7299","timestamp":"2019-12-02T10:04:58Z","subdir":"","vcs_ref":""},\
{"module":"github.com/google/s2a-go","version":"v0.1.9","vcs_hash":"d78240b40b894bdb3c6064c372826498fd25f1d524bbfebddc0014b22fe50849","timestamp":"2025-01-06T17:53:46Z","subdir":"","vcs_ref":"refs/tags/v0.1.9"},\
{"module":"github.com/google/go-querystring","version":"v1.2.0","vcs_hash":"7d3cecef50c7f48038306aab58b989d0605c03d6f53d11a11803988872d70851","timestamp":"2025-11-10T17:18:24Z","subdir":"","vcs_ref":"refs/tags/v1.2.0"},\
{"module":"github.com/google/go-tspi","version":"v0.3.0","vcs_hash":"4dda508fb49eaa7e414c24e50f768271ff1fe01ca6e0fde84185e2dab4bcd6ce","timestamp":"2021-07-02T17:29:09Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"github.com/google/certificate-transparency-go","version":"v1.3.3","vcs_hash":"cc8feb350dca60d2adf287074ceb8dc5a577c3714faf3666f7a3ae21cb4edfd8","timestamp":"2026-02-26T11:25:10Z","subdir":"","vcs_ref":"refs/tags/v1.3.3"},\
{"module":"github.com/google/go-pkcs11","version":"v0.3.0","vcs_hash":"bff2eb676c327d4c57a5187aa05a7e2930f0ab4e1462e951bcb42b4cc4f4e27a","timestamp":"2023-09-07T21:50:43Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"github.com/google/trillian","version":"v1.7.2","vcs_hash":"e8d401f7e3b6be0101aac286ab5237fe0b10c1bcc3605c934a1f0aeae0914ed1","timestamp":"2025-04-25T16:18:12Z","subdir":"","vcs_ref":"refs/tags/v1.7.2"},\
{"module":"github.com/google/gnostic-models","version":"v0.7.0","vcs_hash":"88a05eeac87ac843d53bbad4f86c891fbd1a6eb73d10d5b2c7381c229c0a25ab","timestamp":"2025-06-26T15:23:00Z","subdir":"","vcs_ref":"refs/tags/v0.7.0"},\
{"module":"github.com/google/rpmpack","version":"v0.7.1","vcs_hash":"15629b25bb0eb589872672be8c2433d225c26c6e83b4670fb1d7d95e4f13a328","timestamp":"2025-07-28T08:07:46Z","subdir":"","vcs_ref":"refs/tags/v0.7.1"},\
{"module":"github.com/aliyun/credentials-go","version":"v1.1.2","vcs_hash":"41bcaad57a1fd45fd99f8661c613541be2c3f4deef7ef5a3ab3b08447bb2d259","timestamp":"2020-09-07T01:29:03Z","subdir":"","vcs_ref":"refs/tags/v1.1.2"},\
{"module":"github.com/aliyun/credentials-go","version":"v1.3.2","vcs_hash":"9a1f877129da8b66ec13a32d9908d94f8293a619c3e75117deaaf783406be4ce","timestamp":"2023-11-17T09:04:49Z","subdir":"","vcs_ref":"refs/tags/v1.3.2"},\
{"module":"github.com/foxcpp/go-mockdns","version":"v1.2.0","vcs_hash":"2beca26d97cbf4fa6350073620d901f7237cb9b6dde12481c8a3066c08a33826","timestamp":"2026-01-03T10:57:10Z","subdir":"","vcs_ref":"refs/tags/v1.2.0"},\
{"module":"github.com/tchap/go-patricia/v2","version":"v2.3.3","vcs_hash":"196ec21f158dd5c10370dcd9b618d17460a5f3dec6cbc351a797a1a4f906b7bb","timestamp":"2025-07-01T06:30:56Z","subdir":"","vcs_ref":"refs/tags/v2.3.3"},\
{"module":"github.com/depcheck-test/depcheck-test","version":"v0.0.0-20220607135614-199033aaa936","vcs_hash":"4ab6ac43b63de4930c338a12f5e9a2c00b7de06c41ab6e5fc05ce9c433f13458","timestamp":"2022-06-07T13:56:14Z","subdir":"","vcs_ref":""},\
{"module":"github.com/cyberphone/json-canonicalization","version":"v0.0.0-20241213102144-19d51d7fe467","vcs_hash":"0e55f9f02847679b08922b4a88af3131cb189b333af41228fc1ceba858b5fceb","timestamp":"2024-12-13T10:21:44Z","subdir":"","vcs_ref":""},\
{"module":"github.com/awslabs/amazon-ecr-credential-helper/ecr-login","version":"v0.12.0","vcs_hash":"bf24384171f353bcf7e25d55493143ef0eef70c88d2a77ca6c355e7e1c03d84a","timestamp":"2026-02-25T22:29:07Z","subdir":"ecr-login","vcs_ref":"refs/tags/ecr-login/v0.12.0"},\
{"module":"github.com/flynn/go-docopt","version":"v0.0.0-20140912013429-f6dd2ebbb31e","vcs_hash":"0c09c77aaa7771bc1f711ed3ae12c9a6e995b40ef8161b01a95cabf704beb65e","timestamp":"2014-09-12T01:34:29Z","subdir":"","vcs_ref":""},\
{"module":"github.com/census-instrumentation/opencensus-proto","version":"v0.4.1","vcs_hash":"50810a84fdec2d9c8210c7c5c4280d5911adb9a7bfd62c792a0353ebe06863ab","timestamp":"2022-09-23T17:40:20Z","subdir":"","vcs_ref":"refs/tags/v0.4.1"},\
{"module":"github.com/census-instrumentation/opencensus-proto","version":"v0.2.1","vcs_hash":"47f526897b6e692b88b3517f7ef7e68b617de38122f7782931e45d8d2be2fef6","timestamp":"2019-07-18T16:27:18Z","subdir":"","vcs_ref":"refs/tags/v0.2.1"},\
{"module":"github.com/shibumi/go-pathspec","version":"v1.3.0","vcs_hash":"7d6286b09783f24f2ba2db51c2fd61c197637cee9cd88b2e7576338aa579825f","timestamp":"2021-10-17T22:38:10Z","subdir":"","vcs_ref":"refs/tags/v1.3.0"},\
{"module":"github.com/gobwas/glob","version":"v0.2.3","vcs_hash":"9ea137b0f545be63130971285b3e0b109491f0a0c45197efd72385336ab0ed05","timestamp":"2018-02-08T21:06:56Z","subdir":"","vcs_ref":"refs/tags/v0.2.3"},\
{"module":"github.com/fsnotify/fsnotify","version":"v1.4.9","vcs_hash":"312802d3d487f267a0fbf3d54ca7a46882c8ca80bb35496d99676c79f53b1b3d","timestamp":"2020-03-11T17:35:18Z","subdir":"","vcs_ref":"refs/tags/v1.4.9"},\
{"module":"github.com/fsnotify/fsnotify","version":"v1.9.0","vcs_hash":"e7e3eb9997b88b1856ec41676de694527bda7173c94d395822f6eec3ec2067e2","timestamp":"2025-04-04T15:13:49Z","subdir":"","vcs_ref":"refs/tags/v1.9.0"},\
{"module":"github.com/fsnotify/fsnotify","version":"v1.5.4","vcs_hash":"cfe0e37fa0eb881e2871bcf4700612f5a71ac6e56f6ef8767b0aa72ee40f9800","timestamp":"2022-04-27T02:06:09Z","subdir":"","vcs_ref":"refs/tags/v1.5.4"},\
{"module":"github.com/fsnotify/fsnotify","version":"v1.4.7","vcs_hash":"cc44f7bf337eee80812ff411465b4e87c78887003ae940c1b27adb151bbed7d2","timestamp":"2018-01-10T05:33:47Z","subdir":"","vcs_ref":"refs/tags/v1.4.7"},\
{"module":"github.com/dustinkirkland/golang-petname","version":"v0.0.0-20231002161417-6a283f1aaaf2","vcs_hash":"2e2d801b9de4a7e840a3fe4bea32b8ab53ecfb089f741c102467a9875c284f14","timestamp":"2023-10-02T16:14:17Z","subdir":"","vcs_ref":""},\
{"module":"github.com/jedisct1/go-minisign","version":"v0.0.0-20230811132847-661be99b8267","vcs_hash":"7bae23a207c282c619d10ee92f0d62b643fe712eadd3209c3cee11cbe0ddf309","timestamp":"2023-08-11T13:28:47Z","subdir":"","vcs_ref":""},\
{"module":"github.com/theckman/httpforwarded","version":"v0.4.0","vcs_hash":"64f2f4cbb1b1824f296e389124750a34bd34688747981aa93c02d11fc7c85699","timestamp":"2016-10-11T05:58:49Z","subdir":"","vcs_ref":"refs/tags/v0.4.0"},\
{"module":"github.com/urfave/cli","version":"v1.22.17","vcs_hash":"e30b4b6c880a60654fa02d3559f2088eddf5fbe9bc92870b9df3d72357f735d0","timestamp":"2025-06-14T02:43:22Z","subdir":"","vcs_ref":"refs/tags/v1.22.17"},\
{"module":"github.com/urfave/negroni","version":"v1.0.0","vcs_hash":"c219e769c4dc79b4e71ba2550c53a615ec6e83b68191a1ea271d02100c0b8d02","timestamp":"2018-09-02T02:25:56Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/zalando/go-keyring","version":"v0.2.6","vcs_hash":"dbd0f34366b5d2716217f5aa930934c6571c5f273dd8a57b078023d575addefa","timestamp":"2024-10-25T07:41:06Z","subdir":"","vcs_ref":"refs/tags/v0.2.6"},\
{"module":"github.com/pkg/browser","version":"v0.0.0-20240102092130-5ac0b6a4141c","vcs_hash":"10a8ed3a78b0663b7f54101de61f0c1b24ac55185382242b62e593e0b344d42e","timestamp":"2024-01-02T09:21:30Z","subdir":"","vcs_ref":""},\
{"module":"github.com/pkg/errors","version":"v0.9.1","vcs_hash":"58e525151c02acebc6662bf19060e7ee1112335787f1ffb059ea8d46a3164e5e","timestamp":"2020-01-14T19:47:44Z","subdir":"","vcs_ref":"refs/tags/v0.9.1"},\
{"module":"github.com/pkg/errors","version":"v0.8.1","vcs_hash":"05a9ae48ad2a27ee2ace909fb6dfe443196ef4ba6b92bd0e3d2f6a9460fc8fea","timestamp":"2019-01-03T06:52:24Z","subdir":"","vcs_ref":"refs/tags/v0.8.1"},\
{"module":"github.com/antlr4-go/antlr/v4","version":"v4.13.1","vcs_hash":"096a48a66e783be10de52ef93ca366d977430e8b49a79bedea51ff8e16480448","timestamp":"2024-05-15T15:52:48Z","subdir":"","vcs_ref":"refs/tags/v4.13.1"},\
{"module":"github.com/dgryski/trifles","version":"v0.0.0-20230903005119-f50d829f2e54","vcs_hash":"84d28634263bfcc09a5a315df748561d8f7fec9f534cd0cf9f1be0e463b5eed2","timestamp":"2023-09-03T00:51:19Z","subdir":"","vcs_ref":""},\
{"module":"github.com/dgryski/go-rendezvous","version":"v0.0.0-20200823014737-9f7001d12a5f","vcs_hash":"0298132200a9f0c819a84d7d502f0855dddb7db18067c29c9d63f1c55c37b67a","timestamp":"2020-08-23T01:47:37Z","subdir":"","vcs_ref":""},\
{"module":"github.com/xeipuuv/gojsonpointer","version":"v0.0.0-20190905194746-02993c407bfb","vcs_hash":"4b0abfc7aeea962cf44836059fabc8aebf20db8d2e9ce317db13d42ade75c19f","timestamp":"2019-09-05T19:47:46Z","subdir":"","vcs_ref":""},\
{"module":"github.com/xeipuuv/gojsonreference","version":"v0.0.0-20180127040603-bd5ef7bd5415","vcs_hash":"6cce19ebe3be9e8f13d8b3c5090971f010f3f3cda349fa51197c974450d133ee","timestamp":"2018-01-27T04:06:03Z","subdir":"","vcs_ref":""},\
{"module":"github.com/beorn7/perks","version":"v1.0.1","vcs_hash":"c20c7a1c80a243f687008566bc9b8a9517bdf7e3a4f9db15e17160ad20568e9d","timestamp":"2019-07-31T12:00:54Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\
{"module":"github.com/go-ole/go-ole","version":"v1.3.0","vcs_hash":"6ebc3caf5fb0446628186d46f920aec4c63cb5c783805449864cb2ae184dd9ce","timestamp":"2023-08-04T03:10:36Z","subdir":"","vcs_ref":"refs/tags/v1.3.0"},\
{"module":"github.com/kylelemons/godebug","version":"v1.1.0","vcs_hash":"070cd2056d33748c34b60876b93e86d0f8bcfa86a4dee28d6da2a6f3aaea66ac","timestamp":"2019-05-05T01:16:37Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\
{"module":"github.com/mxk/go-flowrate","version":"v0.0.0-20140419014527-cca7078d478f","vcs_hash":"12c25c020a66ecc07c7c90ff8a8793d5462f3f4e58338c9b36012b25b4ed81b8","timestamp":"2014-04-19T01:45:27Z","subdir":"","vcs_ref":""},\
{"module":"github.com/philhofer/fwd","version":"v1.1.3-0.20240916144458-20a13a1f6b7c","vcs_hash":"ca258618843da786f71d64052321c92cb656f10e50a67bbcda88da9aae0b5c42","timestamp":"2024-09-16T14:44:58Z","subdir":"","vcs_ref":""},\
{"module":"github.com/bgentry/speakeasy","version":"v0.2.0","vcs_hash":"f52d9f13cc5a06c49ec6c6df08c00608c87efa6d00ab820aebeba53cd6b10d30","timestamp":"2022-09-10T01:20:23Z","subdir":"","vcs_ref":"refs/tags/v0.2.0"},\
{"module":"github.com/oklog/ulid","version":"v1.3.1","vcs_hash":"aad6b8a061fa553536e0c316a41769de0f2b7912cad69a71e0ea72d9bb262c8f","timestamp":"2018-10-02T12:43:06Z","subdir":"","vcs_ref":"refs/tags/v1.3.1"},\
{"module":"github.com/oklog/ulid/v2","version":"v2.1.1","vcs_hash":"aaf3b4cc210950472ca5f11135c0d7bb5cf17d9493d2bd55a72286845c1411fa","timestamp":"2024-04-13T18:09:41Z","subdir":"","vcs_ref":"refs/tags/v2.1.1"},\
{"module":"github.com/creack/pty","version":"v1.1.19","vcs_hash":"b91d59df2bead4a4cfbe4d16ad86d92f8000ecb8d54cdc1fe84e407f054d4a05","timestamp":"2023-10-26T15:23:10Z","subdir":"","vcs_ref":"refs/tags/v1.1.19"},\
{"module":"github.com/thales-e-security/pool","version":"v0.0.2","vcs_hash":"ffbb81571a4caa257c4cd077f17f94e9755773da8b062ffd83fb33c677204512","timestamp":"2020-09-10T15:49:03Z","subdir":"","vcs_ref":"refs/tags/v0.0.2"},\
{"module":"github.com/sergi/go-diff","version":"v1.4.0","vcs_hash":"c9a25f65511543cd2ef57e28e90d7ecf296f89053616332975c34804292e2430","timestamp":"2025-06-05T16:18:22Z","subdir":"","vcs_ref":"refs/tags/v1.4.0"},\
{"module":"github.com/DataDog/go-runtime-metrics-internal","version":"v0.0.4-0.20250721125240-fdf1ef85b633","vcs_hash":"b5429f6d3f58f5e60fa06a18cd5e380de9914164bc09e8682294b2c932d77c58","timestamp":"2025-07-21T12:52:40Z","subdir":"","vcs_ref":""},\
{"module":"github.com/DataDog/datadog-go/v5","version":"v5.8.3","vcs_hash":"356766fcdb6d0f8e8838747c0c01f3c7792b52bf3fc0f10b2d0c7d7f3d28a9fe","timestamp":"2026-02-02T12:31:23Z","subdir":"","vcs_ref":"refs/tags/v5.8.3"},\
{"module":"github.com/DataDog/datadog-agent/pkg/util/scrubber","version":"v0.67.0","vcs_hash":"76fe57db454e17bc0fd536119b84dcb7fe6518159fbf3c64a31174347217ec0d","timestamp":"2025-06-17T16:29:01Z","subdir":"pkg/util/scrubber","vcs_ref":"refs/tags/pkg/util/scrubber/v0.67.0"},\
{"module":"github.com/DataDog/datadog-agent/pkg/util/log","version":"v0.67.0","vcs_hash":"76fe57db454e17bc0fd536119b84dcb7fe6518159fbf3c64a31174347217ec0d","timestamp":"2025-06-17T16:29:01Z","subdir":"pkg/util/log","vcs_ref":"refs/tags/pkg/util/log/v0.67.0"},\
{"module":"github.com/DataDog/datadog-agent/pkg/obfuscate","version":"v0.67.0","vcs_hash":"76fe57db454e17bc0fd536119b84dcb7fe6518159fbf3c64a31174347217ec0d","timestamp":"2025-06-17T16:29:01Z","subdir":"pkg/obfuscate","vcs_ref":"refs/tags/pkg/obfuscate/v0.67.0"},\
{"module":"github.com/DataDog/datadog-agent/pkg/proto","version":"v0.67.0","vcs_hash":"76fe57db454e17bc0fd536119b84dcb7fe6518159fbf3c64a31174347217ec0d","timestamp":"2025-06-17T16:29:01Z","subdir":"pkg/proto","vcs_ref":"refs/tags/pkg/proto/v0.67.0"},\
{"module":"github.com/DataDog/datadog-agent/pkg/trace","version":"v0.67.0","vcs_hash":"76fe57db454e17bc0fd536119b84dcb7fe6518159fbf3c64a31174347217ec0d","timestamp":"2025-06-17T16:29:01Z","subdir":"pkg/trace","vcs_ref":"refs/tags/pkg/trace/v0.67.0"},\
{"module":"github.com/DataDog/datadog-agent/pkg/remoteconfig/state","version":"v0.69.0","vcs_hash":"ebd3d7d36d130855e4bdbf8fa0cd124a27b832bd3bc16948753b464690daa202","timestamp":"2025-08-13T18:23:48Z","subdir":"pkg/remoteconfig/state","vcs_ref":"refs/tags/pkg/remoteconfig/state/v0.69.0"},\
{"module":"github.com/DataDog/datadog-agent/pkg/version","version":"v0.67.0","vcs_hash":"76fe57db454e17bc0fd536119b84dcb7fe6518159fbf3c64a31174347217ec0d","timestamp":"2025-06-17T16:29:01Z","subdir":"pkg/version","vcs_ref":"refs/tags/pkg/version/v0.67.0"},\
{"module":"github.com/DataDog/datadog-agent/comp/core/tagger/origindetection","version":"v0.67.0","vcs_hash":"76fe57db454e17bc0fd536119b84dcb7fe6518159fbf3c64a31174347217ec0d","timestamp":"2025-06-17T16:29:01Z","subdir":"comp/core/tagger/origindetection","vcs_ref":"refs/tags/comp/core/tagger/origindetection/v0.67.0"},\
{"module":"github.com/DataDog/opentelemetry-mapping-go/pkg/otlp/attributes","version":"v0.27.0","vcs_hash":"ae428afe43f4942baf12473674a5f4c5757c8f9e67766cbc16f0aa937791b92f","timestamp":"2025-04-10T11:20:45Z","subdir":"pkg/otlp/attributes","vcs_ref":"refs/tags/pkg/otlp/attributes/v0.27.0"},\
{"module":"github.com/DataDog/go-libddwaf/v4","version":"v4.3.2","vcs_hash":"14a02a6c0c3f068a3b87ebd10fb325683811dd5304ecdbe2d5ec39151bbaeefe","timestamp":"2025-08-07T16:42:25Z","subdir":"","vcs_ref":"refs/tags/v4.3.2"},\
{"module":"github.com/DataDog/sketches-go","version":"v1.4.7","vcs_hash":"02a8f73130ba0c4c2e5c2dbf05e7ec862e8514f503dde64d0cdaca6d6f6980dd","timestamp":"2025-02-19T11:59:33Z","subdir":"","vcs_ref":"refs/tags/v1.4.7"},\
{"module":"github.com/DataDog/go-tuf","version":"v1.1.0-0.5.2","vcs_hash":"f40f44e38adec8d403e34200ca046422551d13b6545c3a89c10e068370c5b5ce","timestamp":"2024-03-16T11:39:52Z","subdir":"","vcs_ref":"refs/tags/v1.1.0-0.5.2"},\
{"module":"github.com/DataDog/dd-trace-go/v2","version":"v2.3.0","vcs_hash":"9c0a9915da0c5dbfbc274a6fefe6ad420991aa81989adfdc89541d14b48bf1d7","timestamp":"2025-10-20T12:57:22Z","subdir":"","vcs_ref":"refs/tags/v2.3.0"},\
{"module":"github.com/DataDog/go-sqllexer","version":"v0.1.6","vcs_hash":"9e0971711a1593be204ee08c49001f0018b05838d4257f7d599e567092bde0c0","timestamp":"2025-04-22T15:15:07Z","subdir":"","vcs_ref":"refs/tags/v0.1.6"},\
{"module":"github.com/yashtewari/glob-intersection","version":"v0.2.0","vcs_hash":"f808bebdb4b58643c351139a2ad430afee40f2154d96cfe1086091dbffa08d35","timestamp":"2023-06-22T20:17:32Z","subdir":"","vcs_ref":"refs/tags/v0.2.0"},\
{"module":"github.com/subosito/gotenv","version":"v1.6.0","vcs_hash":"969b108156150f99db1b4fd02a8e4c75fe9263a14398b659bd61cae4c3e63199","timestamp":"2023-08-15T12:05:45Z","subdir":"","vcs_ref":"refs/tags/v1.6.0"},\
{"module":"github.com/segmentio/asm","version":"v1.2.1","vcs_hash":"502fb7489e46319491cb7797b768f4cf21776e6a313ed41bcb11b0aca6fb5e54","timestamp":"2023-11-07T21:27:51Z","subdir":"","vcs_ref":"refs/tags/v1.2.1"},\
{"module":"github.com/mattn/go-colorable","version":"v0.1.14","vcs_hash":"d115108e05252e00501d24555b70931860f5e2506c9b51436969923bc59f5dd0","timestamp":"2025-01-10T08:29:27Z","subdir":"","vcs_ref":"refs/tags/v0.1.14"},\
{"module":"github.com/mattn/go-sqlite3","version":"v1.14.24","vcs_hash":"ad3032213ab66d76e0b89c7fa1621d14dcd538fbc573fc12d5fa52741f03c248","timestamp":"2024-09-04T13:29:32Z","subdir":"","vcs_ref":"refs/tags/v1.14.24"},\
{"module":"github.com/mattn/go-isatty","version":"v0.0.20","vcs_hash":"d07760adabb0d05ba45e3c8997554326fa96668c12bc4572654f288670e1af35","timestamp":"2023-10-17T07:28:21Z","subdir":"","vcs_ref":"refs/tags/v0.0.20"},\
{"module":"github.com/mattn/go-runewidth","version":"v0.0.19","vcs_hash":"523a9975f971d251a1280e23b98662bbc840575f3b0ae7bee343d331f19ca41c","timestamp":"2025-09-29T13:35:08Z","subdir":"","vcs_ref":"refs/tags/v0.0.19"},\
{"module":"github.com/sirupsen/logrus","version":"v1.9.4","vcs_hash":"7834dd2379c75b18a314ce35955486d0a20f3e960006fc4e8ce53625189de3b5","timestamp":"2025-10-23T12:47:52Z","subdir":"","vcs_ref":"refs/tags/v1.9.4"},\
{"module":"github.com/montanaflynn/stats","version":"v0.7.0","vcs_hash":"c28f9462d2da2b34d6931af32de4c4bda0a221804ff0cca80e920a94b962e92d","timestamp":"2023-01-08T08:42:25Z","subdir":"","vcs_ref":"refs/tags/v0.7.0"},\
{"module":"github.com/tklauser/go-sysconf","version":"v0.3.15","vcs_hash":"ed541446214fdfa759a416878ffdc9cdf356d862f139e1d65f391a4c317b38f4","timestamp":"2025-03-05T21:12:27Z","subdir":"","vcs_ref":"refs/tags/v0.3.15"},\
{"module":"github.com/tklauser/numcpus","version":"v0.10.0","vcs_hash":"b800cf34b733b1418de302b51fa34b402db0d82a2050a73eccf43c909d4a36bb","timestamp":"2025-03-05T20:51:38Z","subdir":"","vcs_ref":"refs/tags/v0.10.0"},\
{"module":"github.com/dnephin/pflag","version":"v1.0.7","vcs_hash":"09645d2aca86fb08048ef0acc92fdedf68eb49adb91a80c01ffe2741da9d7b5f","timestamp":"2021-02-20T20:31:32Z","subdir":"","vcs_ref":"refs/tags/v1.0.7"},\
{"module":"github.com/theupdateframework/go-tuf","version":"v0.7.0","vcs_hash":"bbec9c5e97a26007b5a7ef626e437d1c9638f745eb3bcef1032e95a3a76097d3","timestamp":"2023-11-28T14:58:45Z","subdir":"","vcs_ref":"refs/tags/v0.7.0"},\
{"module":"github.com/theupdateframework/go-tuf/v2","version":"v2.4.1","vcs_hash":"24410f9d68f2bef47751f65528b3ec3fa18dc875d5ba2e76e28fd98fe2c471f4","timestamp":"2026-01-26T12:41:29Z","subdir":"","vcs_ref":"refs/tags/v2.4.1"},\
{"module":"github.com/frankban/quicktest","version":"v1.14.6","vcs_hash":"f65e832d9f3df35d267946cd94fd2fce2bf2e04cc1fca291a728a1eef3accab5","timestamp":"2023-08-01T06:27:26Z","subdir":"","vcs_ref":"refs/tags/v1.14.6"},\
{"module":"github.com/apache/beam/sdks/v2","version":"v2.63.0","vcs_hash":"c854a1191698299c44f4451a62967208696c27f55739b2b7b4f6f3e1dcbd4f99","timestamp":"2025-02-11T20:54:48Z","subdir":"sdks","vcs_ref":"refs/tags/sdks/v2.63.0"},\
{"module":"github.com/AzureAD/microsoft-authentication-library-for-go","version":"v1.6.0","vcs_hash":"a614c17b982b55683fa48ad6af54eeb7a0d805b231482bbbc5a0075a03e060fc","timestamp":"2025-11-05T15:05:01Z","subdir":"","vcs_ref":"refs/tags/v1.6.0"},\
{"module":"github.com/AzureAD/microsoft-authentication-extensions-for-go/cache","version":"v0.1.1","vcs_hash":"4dfa1ccb3c79254b9b86ba5ab69a6274a487e913142ded9f54da4321edd0d87e","timestamp":"2023-10-02T14:55:39Z","subdir":"cache","vcs_ref":"refs/tags/cache/v0.1.1"},\
{"module":"github.com/jmhodges/clock","version":"v1.2.0","vcs_hash":"8c9c1ab4309f37f4f3612fcce6ef176281401ccfc618d201a37f868f45097da2","timestamp":"2021-12-18T01:56:46Z","subdir":"","vcs_ref":"refs/tags/v1.2.0"},\
{"module":"github.com/fullstorydev/grpcurl","version":"v1.9.3","vcs_hash":"0889e663ca3fd1e7ae60851c83f4f30cb8bd922196d0475883d433dcc5eb7a78","timestamp":"2025-02-19T16:36:35Z","subdir":"","vcs_ref":"refs/tags/v1.9.3"},\
{"module":"github.com/jackc/pgtype","version":"v1.14.3","vcs_hash":"c28686f78e4693c82518a46e243cf17c8339100347010e34717094a98c57b0e6","timestamp":"2024-03-22T20:58:16Z","subdir":"","vcs_ref":"refs/tags/v1.14.3"},\
{"module":"github.com/jackc/puddle/v2","version":"v2.2.2","vcs_hash":"f3334a91ad7dbb92655b9f37614612cc5df45c529576e03e8308dfed92ae9050","timestamp":"2024-09-10T11:12:31Z","subdir":"","vcs_ref":"refs/tags/v2.2.2"},\
{"module":"github.com/jackc/pgpassfile","version":"v1.0.0","vcs_hash":"bcb7f6d6bafda56d4f5f42db214defa53f1769aa323ba6f941283d833ed326d1","timestamp":"2019-03-30T16:09:02Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/jackc/chunkreader/v2","version":"v2.0.1","vcs_hash":"c795b7b423ab494f567d5943bcb521b87cf52f1ab5b94e89a5357dbd5396957f","timestamp":"2020-02-14T23:52:59Z","subdir":"v2","vcs_ref":"refs/tags/v2.0.1"},\
{"module":"github.com/jackc/pgio","version":"v1.0.0","vcs_hash":"4cba6ab872a2219601f99847248d4e0438833e7479d66e67bb8b6dd805db7940","timestamp":"2019-03-30T17:04:38Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/jackc/pgservicefile","version":"v0.0.0-20240606120523-5a60cdf6a761","vcs_hash":"ddeb106f0a503bc56c2377cf8c3863fd5b039a12e3472f1f499e89f689d70793","timestamp":"2024-06-06T12:05:23Z","subdir":"","vcs_ref":""},\
{"module":"github.com/jackc/pgerrcode","version":"v0.0.0-20240316143900-6e2875d9b438","vcs_hash":"373427e37d2aef89a64da82effb02d3a41ed94875e017a3516cba42fb01aa896","timestamp":"2024-03-16T14:39:00Z","subdir":"","vcs_ref":""},\
{"module":"github.com/jackc/pgconn","version":"v1.14.3","vcs_hash":"325523da1c8a3ecac1000f33e4525493f9115c76b60af70d4a839bee94cc3b41","timestamp":"2024-03-04T14:43:07Z","subdir":"","vcs_ref":"refs/tags/v1.14.3"},\
{"module":"github.com/jackc/pgproto3/v2","version":"v2.3.3","vcs_hash":"2ded67fb1710e67cf505ec5bca87188d8252c17e0f80c12dd4600d8238b408ed","timestamp":"2024-03-04T14:27:16Z","subdir":"","vcs_ref":"refs/tags/v2.3.3"},\
{"module":"github.com/jackc/pgx/v5","version":"v5.8.0","vcs_hash":"4577d61dbc2be5d3a12535c34a51eedb074e76ceae93ecc4b2d0f7b8401c6eba","timestamp":"2025-12-26T21:29:46Z","subdir":"","vcs_ref":"refs/tags/v5.8.0"},\
{"module":"github.com/jackc/pgx/v4","version":"v4.18.3","vcs_hash":"c47cf31fbb08a102a217681149785c88b072a8ed2e5df23ee8c50657685e4170","timestamp":"2024-03-09T18:15:53Z","subdir":"","vcs_ref":"refs/tags/v4.18.3"},\
{"module":"github.com/maxbrunsfeld/counterfeiter/v6","version":"v6.12.1","vcs_hash":"cc179f66ecedf8c7a68a2212db00de17c283bdd456d777b66b40caf38f0967b7","timestamp":"2025-11-29T20:33:41Z","subdir":"","vcs_ref":"refs/tags/v6.12.1"},\
{"module":"github.com/otiai10/copy","version":"v1.14.0","vcs_hash":"fa080eff7c376d6beea03891f31a7d5865abee93d6d27a6e7afff2719c187015","timestamp":"2023-10-02T04:47:32Z","subdir":"","vcs_ref":"refs/tags/v1.14.0"},\
{"module":"github.com/go-test/deep","version":"v1.1.1","vcs_hash":"1cb90ca52fcf8f3ad3e1d5bfe3a44c38b13f51e5917ff40c6081694315bd45bd","timestamp":"2024-06-23T16:27:23Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\
{"module":"github.com/googleapis/gax-go/v2","version":"v2.17.0","vcs_hash":"49c8edf32db5b7f2846762f89448e508829ef08fc9cabbf9bd60293b6fac948e","timestamp":"2026-02-03T18:41:38Z","subdir":"","vcs_ref":"refs/tags/v2.17.0"},\
{"module":"github.com/googleapis/enterprise-certificate-proxy","version":"v0.3.12","vcs_hash":"73e9ba722b8a6cc1d3c91a3187c0a838b0b9c24907400b7e66468c2ae715d5a1","timestamp":"2026-02-09T19:15:42Z","subdir":"","vcs_ref":"refs/tags/v0.3.12"},\
{"module":"github.com/in-toto/in-toto-golang","version":"v0.10.0","vcs_hash":"69265427ff3ccf4c21841e67a3aac94611d3ed65c3af33479cd7816bdec13405","timestamp":"2026-01-12T15:00:38Z","subdir":"","vcs_ref":"refs/tags/v0.10.0"},\
{"module":"github.com/in-toto/attestation","version":"v1.1.2","vcs_hash":"c9afe967ea4e5751fb018d13c01ee86a880270f07f46e7f6c38d9e86c07f25c2","timestamp":"2025-06-13T20:47:12Z","subdir":"","vcs_ref":"refs/tags/v1.1.2"},\
{"module":"github.com/Masterminds/goutils","version":"v1.1.1","vcs_hash":"8eb3fffa1f3cd577c7f4c46828a53f22817e3d27d7475a2838b67a520ce7a742","timestamp":"2021-02-04T20:06:53Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\
{"module":"github.com/Masterminds/sprig","version":"v2.22.0+incompatible","vcs_hash":"78218247de5716c7687bb4395d1bb1981412f3a794360fde204f10bbe2ef9a48","timestamp":"2019-10-02T15:00:24Z","subdir":"","vcs_ref":"refs/tags/v2.22.0"},\
{"module":"github.com/Masterminds/sprig/v3","version":"v3.3.0","vcs_hash":"6b4207b8c7d013c483646f5f7386acb35e85752ca0216b1a97a63a4f513a6734","timestamp":"2024-08-29T20:12:44Z","subdir":"","vcs_ref":"refs/tags/v3.3.0"},\
{"module":"github.com/Masterminds/semver","version":"v1.5.0","vcs_hash":"516d1c086a5d96136437e4d445d3384b2c150d71220b84012bb687ada9fba5a9","timestamp":"2019-09-11T18:23:18Z","subdir":"","vcs_ref":"refs/tags/v1.5.0"},\
{"module":"github.com/Masterminds/semver/v3","version":"v3.4.0","vcs_hash":"b69d3fcaea23340a3ee6fdc0c141ba3d247100353aee6eb28dd426e0d62498b3","timestamp":"2025-06-27T14:48:33Z","subdir":"","vcs_ref":"refs/tags/v3.4.0"},\
{"module":"github.com/envoyproxy/go-control-plane","version":"v0.14.0","vcs_hash":"2513f16d9e60ca640f7e1b10874f09f2a4915e2672b103b0edb7deee276349cf","timestamp":"2025-11-04T22:01:44Z","subdir":"","vcs_ref":"refs/tags/v0.14.0"},\
{"module":"github.com/envoyproxy/go-control-plane","version":"v0.9.4","vcs_hash":"f149a73577cc7366678c404cd18196812505b84e63e52c4bb54a8fc51de6e119","timestamp":"2020-02-13T20:12:56Z","subdir":"","vcs_ref":"refs/tags/v0.9.4"},\
{"module":"github.com/envoyproxy/go-control-plane","version":"v0.9.0","vcs_hash":"7b9d6b3bb8d89496a2b4604c64fe742706539fd157f8455324b5c536248f32d6","timestamp":"2019-09-10T22:06:41Z","subdir":"","vcs_ref":"refs/tags/v0.9.0"},\
{"module":"github.com/envoyproxy/go-control-plane/ratelimit","version":"v0.1.0","vcs_hash":"906f63aa0b71e9714823fdb45d45be4659d30de781b6a053c93f43371894845f","timestamp":"2024-12-23T15:25:59Z","subdir":"ratelimit","vcs_ref":"refs/tags/ratelimit/v0.1.0"},\
{"module":"github.com/envoyproxy/go-control-plane/envoy","version":"v1.36.0","vcs_hash":"4fe4015bae147a29bbb1ffd300666422c356cad9c50026d1bc2de6287e7679d9","timestamp":"2025-10-13T18:21:09Z","subdir":"envoy","vcs_ref":"refs/tags/envoy/v1.36.0"},\
{"module":"github.com/envoyproxy/protoc-gen-validate","version":"v0.1.0","vcs_hash":"17dee49ca0a12c9d068fb9ddd8d0ade5d40bec4965b4d5b57c0163c07b7cc1f7","timestamp":"2019-06-13T14:36:32Z","subdir":"","vcs_ref":"refs/tags/v0.1.0"},\
{"module":"github.com/envoyproxy/protoc-gen-validate","version":"v1.3.0","vcs_hash":"5d34ceb851e2497d778dfd0ec26abacfe19fa4b018a2186a0b989321bc525b5d","timestamp":"2025-11-18T20:57:03Z","subdir":"","vcs_ref":"refs/tags/v1.3.0"},\
{"module":"github.com/outcaste-io/ristretto","version":"v0.2.3","vcs_hash":"47afa4f9fad23b7b2b01307fe405f566e9741ca92c7cd61268e0848eddf4a28e","timestamp":"2023-07-27T04:07:33Z","subdir":"","vcs_ref":"refs/tags/v0.2.3"},\
{"module":"github.com/armon/go-socks5","version":"v0.0.0-20160902184237-e75332964ef5","vcs_hash":"e611fb2e9fe86f2cb19c89c1dc37c0ad6b5656135015f1466fb20c934e3dc531","timestamp":"2016-09-02T18:42:37Z","subdir":"","vcs_ref":""},\
{"module":"github.com/armon/go-radix","version":"v0.0.0-20180808171621-7fddfc383310","vcs_hash":"e4904b4185214577c9dda1b93a408003c57b5b654a94021925d1fd5bcaf3129f","timestamp":"2018-08-08T17:16:21Z","subdir":"","vcs_ref":""},\
{"module":"github.com/jtolds/gls","version":"v4.20.0+incompatible","vcs_hash":"dd5cfff6e6a0707c8f8a8272ef6b888ab15fa63a5c11a9ccdd30dd6e338e868e","timestamp":"2018-11-10T20:30:27Z","subdir":"","vcs_ref":"refs/tags/v4.20.0"},\
{"module":"github.com/alessio/shellescape","version":"v1.4.1","vcs_hash":"b6df6faa951714471e9756bce04e39433e1c6dcd2f1d2993179db194dc86c8b2","timestamp":"2020-11-25T10:20:56Z","subdir":"","vcs_ref":"refs/tags/v1.4.1"},\
{"module":"github.com/tinylib/msgp","version":"v1.2.5","vcs_hash":"fceb4440ef2b0e3381380cded2df4661deece6074353b005536d1a11ed19a290","timestamp":"2024-12-09T10:42:38Z","subdir":"","vcs_ref":"refs/tags/v1.2.5"},\
{"module":"github.com/coreos/go-systemd/v22","version":"v22.5.0","vcs_hash":"1240ab68de5778e9c43b2943db956bd157fab582cec5363f953cb5c72f2e445b","timestamp":"2022-11-07T13:52:27Z","subdir":"","vcs_ref":"refs/tags/v22.5.0"},\
{"module":"github.com/coreos/go-semver","version":"v0.3.1","vcs_hash":"bc5814f476c03ba95df77de9e368f42150b3368b0f4ab21268b7478a13c35e00","timestamp":"2023-01-16T22:04:39Z","subdir":"","vcs_ref":"refs/tags/v0.3.1"},\
{"module":"github.com/coreos/go-oidc/v3","version":"v3.17.0","vcs_hash":"8e02c3ed848471cdcbb42e503ddcf14c273d8366034f1c5d58ec0d12e482656a","timestamp":"2025-11-21T03:32:42Z","subdir":"","vcs_ref":"refs/tags/v3.17.0"},\
{"module":"github.com/soheilhy/cmux","version":"v0.1.5","vcs_hash":"0eb8d423f961736e5cfd383d1dd7bf2ed7cb3502aa09c4ea7d57615fe3ff21e9","timestamp":"2021-02-05T19:11:34Z","subdir":"","vcs_ref":"refs/tags/v0.1.5"},\
{"module":"github.com/Khan/genqlient","version":"v0.8.1","vcs_hash":"a16e4ca46fd9c46965f7ae58f9af4a2c3c50cfbf57da833f3c22273e87913884","timestamp":"2025-05-18T19:07:34Z","subdir":"","vcs_ref":"refs/tags/v0.8.1"},\
{"module":"github.com/protocolbuffers/txtpbfmt","version":"v0.0.0-20260217160748-a481f6a22f94","vcs_hash":"3630afe8bb13421bb99e2d6959e50d0266d7da4d1b07500489da462956b20ad1","timestamp":"2026-02-17T16:07:48Z","subdir":"","vcs_ref":""},\
{"module":"github.com/mailru/easyjson","version":"v0.7.7","vcs_hash":"5b802334c301c91bd13cee6264caa8c327300bfc16173c6074fc315244620dd8","timestamp":"2021-02-06T19:00:08Z","subdir":"","vcs_ref":"refs/tags/v0.7.7"},\
{"module":"github.com/chzyer/test","version":"v0.0.0-20180213035817-a1ea475d72b1","vcs_hash":"e15872792aa8b087f6d3216a8e07cf2ca9bfde139ee58c466bbbb633416d2856","timestamp":"2018-02-13T03:58:17Z","subdir":"","vcs_ref":""},\
{"module":"github.com/chzyer/test","version":"v1.0.0","vcs_hash":"07a1ab1518c2d0be620676528db5cb0d2f6f0d7a416a920164ffc4a46e018cb3","timestamp":"2022-04-24T13:19:37Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/chzyer/logex","version":"v1.2.1","vcs_hash":"c7ac900071db2b2105ba6eee96af38c99133bb783104d6346e1f32a365a23d43","timestamp":"2022-04-24T13:13:51Z","subdir":"","vcs_ref":"refs/tags/v1.2.1"},\
{"module":"github.com/chzyer/logex","version":"v1.1.10","vcs_hash":"92a6f8ff364d5c78129d723e93bc80561a4d6f62e89131c1c9f55157435fe20e","timestamp":"2015-10-10T15:13:41Z","subdir":"","vcs_ref":"refs/tags/v1.1.10"},\
{"module":"github.com/chzyer/readline","version":"v0.0.0-20180603132655-2972be24d48e","vcs_hash":"8a803f89048e07c05fc7887b4f50d22643ddbc3edcd738b8d052084561a8bfa2","timestamp":"2018-06-03T13:26:55Z","subdir":"","vcs_ref":""},\
{"module":"github.com/chzyer/readline","version":"v1.5.1","vcs_hash":"52071e641b114be49adcba007fd97faf1f4baeb21b57b3920f7baba279eb71fa","timestamp":"2022-07-15T12:48:48Z","subdir":"","vcs_ref":"refs/tags/v1.5.1"},\
{"module":"github.com/clbanning/mxj/v2","version":"v2.5.5","vcs_hash":"641db9fd53d0ec0b20028c1bec83ba387c1b538d6e4fb90124e0935cda5306e2","timestamp":"2021-03-09T16:58:01Z","subdir":"v2","vcs_ref":"refs/tags/v2.5.5"},\
{"module":"github.com/clbanning/mxj/v2","version":"v2.7.0","vcs_hash":"c68e237248ba0b1578824791ddd2e9dca7451987cc369ea7eca22cf80ed6fa7c","timestamp":"2023-02-10T17:23:09Z","subdir":"","vcs_ref":"refs/tags/v2.7.0"},\
{"module":"github.com/magefile/mage","version":"v1.15.0","vcs_hash":"cd691b4f51fcaa8a46555754e03c1a8dccb8013e7ad19921c5d806c9c43b8609","timestamp":"2023-05-11T15:35:27Z","subdir":"","vcs_ref":"refs/tags/v1.15.0"},\
{"module":"github.com/bitfield/gotestdox","version":"v0.2.2","vcs_hash":"756fb99025d50dda7f89d0b8d61152343d9fb46616989c3f182a89ab0808ef23","timestamp":"2023-08-13T15:46:21Z","subdir":"","vcs_ref":"refs/tags/v0.2.2"},\
{"module":"github.com/ysmood/fetchup","version":"v0.2.3","vcs_hash":"8c9dd6ebf834d7256887c2d14a754cf11453f2f3a5e2b0c8c05110052b6ee3a1","timestamp":"2023-05-07T03:47:20Z","subdir":"","vcs_ref":"refs/tags/v0.2.3"},\
{"module":"github.com/ysmood/gson","version":"v0.7.3","vcs_hash":"27ce5120c0465dfab869d1d5012071a3115381084f3a241d5de5330ed6bf71e6","timestamp":"2022-11-24T01:23:50Z","subdir":"","vcs_ref":"refs/tags/v0.7.3"},\
{"module":"github.com/ysmood/goob","version":"v0.4.0","vcs_hash":"9d85527d5325cd688787ce40dccb6ea83312b580a4e5eba11e779e213a9cb6c7","timestamp":"2022-04-09T04:13:26Z","subdir":"","vcs_ref":"refs/tags/v0.4.0"},\
{"module":"github.com/ysmood/got","version":"v0.40.0","vcs_hash":"eeb512ee1df2a3b4f92e5a5dc02e24f7963cec103929eec0113736a6ca67335b","timestamp":"2024-06-13T08:37:41Z","subdir":"","vcs_ref":"refs/tags/v0.40.0"},\
{"module":"github.com/ysmood/leakless","version":"v0.9.0","vcs_hash":"ea236bef84d8f62f430439cdcf1cab367fcd2b2371ced56810ccd36d18be2dd9","timestamp":"2024-07-11T10:12:25Z","subdir":"","vcs_ref":"refs/tags/v0.9.0"},\
{"module":"github.com/ulikunitz/xz","version":"v0.5.14","vcs_hash":"586ce99f185d6db57574490b0d3f6457e475b89e7d5837e7d0a98e329eadede3","timestamp":"2025-08-28T18:38:17Z","subdir":"","vcs_ref":"refs/tags/v0.5.14"},\
{"module":"github.com/andreyvit/diff","version":"v0.0.0-20170406064948-c7f18ee00883","vcs_hash":"da5670d883c8a2ff4f56e885d21c55be0921281f0561857b8437e59c861fba5a","timestamp":"2017-04-06T06:49:48Z","subdir":"","vcs_ref":""},\
{"module":"github.com/jhump/protoreflect","version":"v1.17.0","vcs_hash":"b8b10c2004a56c3a0195a6336880fea7f8f87993b6ce2078703df28c64a8553f","timestamp":"2024-09-04T19:26:01Z","subdir":"","vcs_ref":"refs/tags/v1.17.0"},\
{"module":"github.com/wolfeidau/quickzip","version":"v1.0.2","vcs_hash":"17d1d511d4e0ba38e86c9e46d58a501d7d4ddcb62306df8ba932ed62981e20a5","timestamp":"2025-07-22T05:22:52Z","subdir":"","vcs_ref":"refs/tags/v1.0.2"},\
{"module":"github.com/opencontainers/go-digest","version":"v1.0.0","vcs_hash":"1a4d20c74c510ca00ecb86a3379c151579ed626508723e74a394480a71a0af24","timestamp":"2020-05-14T01:46:00Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/opencontainers/image-spec","version":"v1.1.1","vcs_hash":"5bb7cbac46d5df774d087c364c00445553d3db253ca80dc7050c4e57832c118d","timestamp":"2025-02-24T17:26:57Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\
{"module":"github.com/yuin/goldmark","version":"v1.2.1","vcs_hash":"4c58efe0c28d74a0131cf65fc06af9bf723f3852cb20f81dce6ce9ae50793119","timestamp":"2020-07-30T13:33:42Z","subdir":"","vcs_ref":"refs/tags/v1.2.1"},\
{"module":"github.com/yuin/goldmark","version":"v1.4.13","vcs_hash":"fbec1a06cf7d810b36a87559756866f825159c4db030b543bd6359717d401035","timestamp":"2022-07-09T07:22:17Z","subdir":"","vcs_ref":"refs/tags/v1.4.13"},\
{"module":"github.com/yuin/goldmark","version":"v1.1.27","vcs_hash":"fb45f805a799ac2f897942f334c68fc215fa5bfc06f4b0277d583fe78f6c36ca","timestamp":"2020-03-31T17:10:28Z","subdir":"","vcs_ref":"refs/tags/v1.1.27"},\
{"module":"github.com/yuin/goldmark","version":"v1.1.30","vcs_hash":"1e576b29e9627f3a99ff99506e8ca2071a280fad1954f7aaebc5ccccaad8fb3b","timestamp":"2020-04-16T02:34:53Z","subdir":"","vcs_ref":"refs/tags/v1.1.30"},\
{"module":"github.com/yusufpapurcu/wmi","version":"v1.2.4","vcs_hash":"d49837721a364d478340dfb90d65ec9e1396a051aa1caa5e190af739ff9fcdbb","timestamp":"2024-01-28T14:29:43Z","subdir":"","vcs_ref":"refs/tags/v1.2.4"},\
{"module":"github.com/oleiade/reflections","version":"v1.1.0","vcs_hash":"e9a8b6cebad0759e75efd144284c54e7a07946b780ab075733d2889cfee90799","timestamp":"2024-08-24T16:28:28Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\
{"module":"github.com/go-rod/rod","version":"v0.116.2","vcs_hash":"56a3074e00ed3cc5a312cd4b264c9070764ea81790bf8a1147690ab65ad79579","timestamp":"2024-07-12T02:40:37Z","subdir":"","vcs_ref":"refs/tags/v0.116.2"},\
{"module":"github.com/pelletier/go-toml","version":"v1.9.5","vcs_hash":"22bc2e212b193b23af04b0014dd6e6f15e66953913e88670099f8375927b48c7","timestamp":"2022-01-05T14:17:32Z","subdir":"","vcs_ref":"refs/tags/v1.9.5"},\
{"module":"github.com/pelletier/go-toml/v2","version":"v2.2.4","vcs_hash":"024e6f520632e6be8a8fbc0202fdf0da2cfc0266ff95451a8e8d944dd0d8882f","timestamp":"2025-04-07T11:11:38Z","subdir":"","vcs_ref":"refs/tags/v2.2.4"},\
{"module":"github.com/x448/float16","version":"v0.8.4","vcs_hash":"e395eca01f11e874b5b2b165e3dc2620faa30374fb308657449d3a3023ce5cbb","timestamp":"2020-01-17T18:31:28Z","subdir":"","vcs_ref":"refs/tags/v0.8.4"},\
{"module":"github.com/ThalesIgnite/crypto11","version":"v1.2.5","vcs_hash":"622cf1c0ea99dee790e4185e4acebb3d9f62b6a0815c07b28bbef04ff1d299f8","timestamp":"2021-09-09T22:50:15Z","subdir":"","vcs_ref":"refs/tags/v1.2.5"},\
{"module":"github.com/graph-gophers/graphql-go","version":"v1.9.0","vcs_hash":"51d115b0a2cb44af09b1d472fe7a15158b8149d7a02884a5fbcda34f621ff6f7","timestamp":"2026-02-25T07:44:06Z","subdir":"","vcs_ref":"refs/tags/v1.9.0"},\
{"module":"github.com/go-piv/piv-go/v2","version":"v2.5.0","vcs_hash":"508eca80216fb114a4a300d558b68e9b5eafc4eae581452c9b40e7d8febdd0f1","timestamp":"2026-02-06T06:52:58Z","subdir":"","vcs_ref":"refs/tags/v2.5.0"},\
{"module":"github.com/gowebpki/jcs","version":"v1.0.1","vcs_hash":"faf51246d92d2a000c3c54f0165b75410c9659b6a6f9b27c2578cbbc8fb0843d","timestamp":"2023-10-15T07:19:19Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\
{"module":"github.com/remyoudompheng/bigfft","version":"v0.0.0-20230129092748-24d4a6f8daec","vcs_hash":"7d1908bf588e206ad3da4076284c7620c6d428317817d1f4891b43bcd2501b65","timestamp":"2023-01-29T09:27:48Z","subdir":"","vcs_ref":""},\
{"module":"github.com/lufia/plan9stats","version":"v0.0.0-20250317134145-8bc96cf8fc35","vcs_hash":"9e928ddddda5ab3de8baef8effe584f82444c19539150802cdfe5bfaa0676dda","timestamp":"2025-03-17T13:41:45Z","subdir":"","vcs_ref":""},\
{"module":"github.com/cihub/seelog","version":"v0.0.0-20170130134532-f561c5e57575","vcs_hash":"a11f59069832c40e3984e0e1cd4acbb8bd0e31bc988c219df6b3a586a9f7520d","timestamp":"2017-01-30T13:45:32Z","subdir":"","vcs_ref":""},\
{"module":"github.com/valyala/fastjson","version":"v1.6.7","vcs_hash":"613011465ce457bd0ab547b333ae9230883d8be78d88007f9d3d5e5d4a5ef6b6","timestamp":"2025-12-14T21:59:51Z","subdir":"","vcs_ref":"refs/tags/v1.6.7"},\
{"module":"github.com/go-viper/mapstructure/v2","version":"v2.5.0","vcs_hash":"3bfaa2e7553753ef9eb595609273310a8498c5d5f4d43000c69a7bd2bb39a3ef","timestamp":"2026-01-12T17:24:26Z","subdir":"","vcs_ref":"refs/tags/v2.5.0"},\
{"module":"github.com/sourcegraph/conc","version":"v0.3.1-0.20240121214520-5f936abd7ae8","vcs_hash":"d0ac12bfbd92b7b9c71000ef4be5c3b82ae44ec1d14ec766f9ebe5231438f15c","timestamp":"2024-01-21T21:45:20Z","subdir":"","vcs_ref":""},\
{"module":"github.com/godbus/dbus/v5","version":"v5.2.2","vcs_hash":"d09829bdabb6a89f6b1f044fce2b1e22f496b44ede2430cda489084fe4c1205b","timestamp":"2025-12-29T17:12:48Z","subdir":"","vcs_ref":"refs/tags/v5.2.2"},\
{"module":"github.com/go-logr/logr","version":"v1.2.2","vcs_hash":"761d6b76e4ca57583edd8a7d6cf39d5a0c0dfd1fb4f82f099c044f754193f7d1","timestamp":"2021-12-05T13:02:31Z","subdir":"","vcs_ref":"refs/tags/v1.2.2"},\
{"module":"github.com/go-logr/logr","version":"v1.4.3","vcs_hash":"5b4f8e13d26b7581594ade5c47d93fb87ebb7720ce23eff7afaed11743464e1f","timestamp":"2025-05-19T04:56:57Z","subdir":"","vcs_ref":"refs/tags/v1.4.3"},\
{"module":"github.com/go-logr/stdr","version":"v1.2.2","vcs_hash":"e69aa58ea5f2f28aa8623652f5e6643b2299d9fe8ba1e6c73a8e3d602290ac67","timestamp":"2021-12-14T08:00:35Z","subdir":"","vcs_ref":"refs/tags/v1.2.2"},\
{"module":"github.com/gabriel-vasile/mimetype","version":"v1.4.12","vcs_hash":"2c73cda5f957a0d1e76eb0126f100fd921b10c6245a0bd3ad6f39585e578665e","timestamp":"2025-12-09T13:52:28Z","subdir":"","vcs_ref":"refs/tags/v1.4.12"},\
{"module":"github.com/huandu/go-clone","version":"v1.7.3","vcs_hash":"6d76bef46d969272abbf3c54a9c89a62eded6f0d0c3952354ed017813e084a99","timestamp":"2025-04-29T14:00:21Z","subdir":"","vcs_ref":"refs/tags/v1.7.3"},\
{"module":"github.com/huandu/xstrings","version":"v1.5.0","vcs_hash":"b79834bb0fe1feb0d1aa69de77cd803b494ff880f1c14cb5faf0dddd4536f6b5","timestamp":"2024-06-06T08:07:36Z","subdir":"","vcs_ref":"refs/tags/v1.5.0"},\
{"module":"github.com/huandu/go-sqlbuilder","version":"v1.39.1","vcs_hash":"b55f9783ce1ec834f5be3bfb31ec2fba3d46b6df4e3b814ef3eb14d9f7bd3f22","timestamp":"2026-02-10T09:37:41Z","subdir":"","vcs_ref":"refs/tags/v1.39.1"},\
{"module":"github.com/saracen/zipextra","version":"v0.0.0-20250129175152-f1aa42d25216","vcs_hash":"8e1c78cc60e1895345e831d07b20027351db2b0c0e8305208de8a6e3bd508912","timestamp":"2025-01-29T17:51:52Z","subdir":"","vcs_ref":""},\
{"module":"github.com/ianlancetaylor/demangle","version":"v0.0.0-20200824232613-28f6c0f3b639","vcs_hash":"6e36f8d337dfd06a7e6cccc8587108b9e30c4a654c06b3155241e230385a2eb6","timestamp":"2020-08-24T23:26:13Z","subdir":"","vcs_ref":""},\
{"module":"github.com/ebitengine/purego","version":"v0.8.4","vcs_hash":"12287e60803efa049f48bf5d16fd651af1e7cc2212b4d7ad8c8c8e4155b5482d","timestamp":"2025-05-20T12:56:05Z","subdir":"","vcs_ref":"refs/tags/v0.8.4"},\
{"module":"github.com/posener/complete","version":"v1.1.1","vcs_hash":"185f5f55a8fb2c19ce2969eb875e4cebf07fe0d155c7c2a13b59ffe1d1f78a4e","timestamp":"2018-03-09T06:24:32Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\
{"module":"github.com/blang/semver","version":"v3.5.1+incompatible","vcs_hash":"fb904b093dc37ee6efcaa2a562389f10a2411237cdeef7cddf15818be70366d1","timestamp":"2017-07-27T06:48:18Z","subdir":"","vcs_ref":"refs/tags/v3.5.1"},\
{"module":"github.com/blang/semver/v4","version":"v4.0.0","vcs_hash":"592c6d9a3fd1b340b1d148a1229b29c0f07951f6a2324b4abdbe310d546bda36","timestamp":"2020-05-24T15:15:11Z","subdir":"v4","vcs_ref":"refs/tags/v4.0.0"},\
{"module":"github.com/danieljoos/wincred","version":"v1.2.3","vcs_hash":"27fc7633a915ecb9e3e3c6095cfd2d495010d4208024eefb538180b978864222","timestamp":"2025-10-02T18:24:04Z","subdir":"","vcs_ref":"refs/tags/v1.2.3"},\
{"module":"github.com/tmc/grpc-websocket-proxy","version":"v0.0.0-20220101234140-673ab2c3ae75","vcs_hash":"0649f951fd33c15edac652de5124561a8e85424635180a5dba6a7093d33fc71c","timestamp":"2022-01-01T23:41:40Z","subdir":"","vcs_ref":""},\
{"module":"github.com/transparency-dev/tessera","version":"v1.0.2","vcs_hash":"3ebb32e8ad935ef56c7a3943e5cd3cbf8100757708de903d3de610adf67940d4","timestamp":"2026-02-16T15:17:29Z","subdir":"","vcs_ref":"refs/tags/v1.0.2"},\
{"module":"github.com/transparency-dev/formats","version":"v0.0.0-20251017110053-404c0d5b696c","vcs_hash":"968921f38a5932901522d8dad3d99ef03c554eb958e6b809606dcae3d3a778dc","timestamp":"2025-10-17T11:00:53Z","subdir":"","vcs_ref":""},\
{"module":"github.com/transparency-dev/merkle","version":"v0.0.2","vcs_hash":"11ca4461c55ebf4faefccb747a99c74860939f428aba666c5e7b7727ed758c08","timestamp":"2023-05-05T09:59:12Z","subdir":"","vcs_ref":"refs/tags/v0.0.2"},\
{"module":"github.com/client9/misspell","version":"v0.3.4","vcs_hash":"124db3874e1d4102a9dc47478928c54062b3baec396eed15d1359e70ed21b796","timestamp":"2018-03-09T01:55:12Z","subdir":"","vcs_ref":"refs/tags/v0.3.4"},\
{"module":"github.com/sagikazarmark/locafero","version":"v0.11.0","vcs_hash":"6ddb77c1e3c6bcd986037983b628b8580eab2edb277e8a1279371bffe2e6124f","timestamp":"2025-09-08T16:42:20Z","subdir":"","vcs_ref":"refs/tags/v0.11.0"},\
{"module":"github.com/shirou/gopsutil/v4","version":"v4.25.8","vcs_hash":"7e0155a52f3951b3b33102747d6a7af290d4bd463ca7c9e29f2e80ef4bd57042","timestamp":"2025-08-30T09:26:41Z","subdir":"","vcs_ref":"refs/tags/v4.25.8"},\
{"module":"github.com/grpc-ecosystem/go-grpc-middleware","version":"v1.4.0","vcs_hash":"2c3d6a14c9d868e09c73fb1501f88baa56bc76a8d71adfb32dfd71f46e9fc253","timestamp":"2023-03-15T10:41:00Z","subdir":"","vcs_ref":"refs/tags/v1.4.0"},\
{"module":"github.com/grpc-ecosystem/go-grpc-middleware/providers/prometheus","version":"v1.1.0","vcs_hash":"42aacc0b51ca4683515670ecfde267af8722802b2bb4d002d5647da7d38f9a47","timestamp":"2025-06-12T22:31:32Z","subdir":"providers/prometheus","vcs_ref":"refs/tags/providers/prometheus/v1.1.0"},\
{"module":"github.com/grpc-ecosystem/go-grpc-middleware/v2","version":"v2.3.3","vcs_hash":"8b1055041385727a90afdb6e740469c00e9b07bdb388958f18c9b72cc7c6fe2b","timestamp":"2025-11-01T02:08:10Z","subdir":"","vcs_ref":"refs/tags/v2.3.3"},\
{"module":"github.com/grpc-ecosystem/grpc-gateway","version":"v1.16.0","vcs_hash":"dcb67129f7f42088caddd617e1d006a98ef75266189d65ac236c39b060bd23ab","timestamp":"2020-10-28T10:29:51Z","subdir":"","vcs_ref":"refs/tags/v1.16.0"},\
{"module":"github.com/grpc-ecosystem/grpc-gateway/v2","version":"v2.27.7","vcs_hash":"817865c7559b19b9736adf373c261c84eb727d4cab00a609779a0a7a26f41891","timestamp":"2026-01-29T20:31:37Z","subdir":"","vcs_ref":"refs/tags/v2.27.7"},\
{"module":"github.com/grpc-ecosystem/go-grpc-prometheus","version":"v1.2.1-0.20210315223345-82c243799c99","vcs_hash":"2f18d788ce41132843eca0f4ca73b4864aa7ad51a636ed8facba2e3905b8198a","timestamp":"2021-03-15T22:33:45Z","subdir":"","vcs_ref":""},\
{"module":"github.com/olekukonko/tablewriter","version":"v1.1.4","vcs_hash":"0e744cb873518f14c1f9de24401f4a9d7cce7dd23f1c5e9d476663fd533c9af3","timestamp":"2026-03-04T08:28:19Z","subdir":"","vcs_ref":"refs/tags/v1.1.4"},\
{"module":"github.com/olekukonko/errors","version":"v1.2.0","vcs_hash":"9f8eee3d03d4c615fd7d2b586f817d80061f17bd604a08c4b1615458b670b2e1","timestamp":"2026-01-19T12:46:33Z","subdir":"","vcs_ref":"refs/tags/v1.2.0"},\
{"module":"github.com/olekukonko/cat","version":"v0.0.0-20250911104152-50322a0618f6","vcs_hash":"19ba36fff6411930e76fdec22c64609b7c02b991f4e163ba1066a0f231ebf636","timestamp":"2025-09-11T10:41:52Z","subdir":"","vcs_ref":""},\
{"module":"github.com/olekukonko/ll","version":"v0.1.6","vcs_hash":"5d2aa4c04af35f59c607dc21749e11706f4003b92910afd22963922f1672dc3b","timestamp":"2026-02-12T19:35:14Z","subdir":"","vcs_ref":"refs/tags/v0.1.6"},\
{"module":"github.com/bufbuild/protocompile","version":"v0.14.1","vcs_hash":"4fbab7b41b08473a1c60e8bd4da75d72b34097b589db036afc3a5edaf43b3588","timestamp":"2024-08-21T16:41:13Z","subdir":"","vcs_ref":"refs/tags/v0.14.1"},\
{"module":"github.com/bmatcuk/doublestar/v4","version":"v4.6.1","vcs_hash":"c6e80d9a867b7fcae8c61b388b7a568b23e4870c75ab6a48dd6cc9275de19487","timestamp":"2023-10-21T14:57:43Z","subdir":"","vcs_ref":"refs/tags/v4.6.1"},\
{"module":"github.com/kelseyhightower/envconfig","version":"v1.4.0","vcs_hash":"5590629036a8e836ba461733f0888aa9e28794705149e528d420c896caf11d7e","timestamp":"2019-05-24T18:54:28Z","subdir":"","vcs_ref":"refs/tags/v1.4.0"},\
{"module":"github.com/go-task/slim-sprig","version":"v0.0.0-20210107165309-348f09dbbbc0","vcs_hash":"26a23c89253033ca9fe9b4aec49ac8119bd27cce166e936940450684a5ec9e38","timestamp":"2021-01-07T16:53:09Z","subdir":"","vcs_ref":""},\
{"module":"github.com/go-task/slim-sprig/v3","version":"v3.0.0","vcs_hash":"8dd5020cf322cc4f91014ac7828ac4826cba4ce7da08320ac497d655159088a5","timestamp":"2023-09-14T01:46:41Z","subdir":"","vcs_ref":"refs/tags/v3.0.0"},\
{"module":"github.com/opentracing/opentracing-go","version":"v1.2.0","vcs_hash":"74f64728aa8efcb14baafd00e9e6005750d9b20c98b28ecc6407a440d0b25498","timestamp":"2020-07-01T21:27:29Z","subdir":"","vcs_ref":"refs/tags/v1.2.0"},\
{"module":"github.com/go-redis/redismock/v9","version":"v9.2.0","vcs_hash":"72618c1c61b366fa6473e8313c42e160ff84ea1e3edc63b6c66706f6b84beabc","timestamp":"2023-10-11T16:59:40Z","subdir":"","vcs_ref":"refs/tags/v9.2.0"},\
{"module":"github.com/go-redis/redis","version":"v6.15.9+incompatible","vcs_hash":"df3c1da3b17012d182b5eb39218658a13a19911ebb7c862ddc1fee214397d2a2","timestamp":"2020-08-07T06:52:31Z","subdir":"","vcs_ref":"refs/tags/v6.15.9"},\
{"module":"github.com/zmap/zcrypto","version":"v0.0.0-20250129210703-03c45d0bae98","vcs_hash":"af1a3691cd96e5ae75636527999d264253636b6b6b8b5822308e1a0b4ca1fbf8","timestamp":"2025-01-29T21:07:03Z","subdir":"","vcs_ref":""},\
{"module":"github.com/zmap/zlint/v3","version":"v3.6.6","vcs_hash":"50b761c7d1053a2f98cb7232ab939fb63047e5a60b701de242088a2684ed9381","timestamp":"2025-04-19T14:40:07Z","subdir":"","vcs_ref":"refs/tags/v3.6.6"},\
{"module":"github.com/BurntSushi/toml","version":"v0.3.1","vcs_hash":"c7591feaba0db5f458f0e6745283c8246ea0f50af4eb4714a53ff88805ecd88a","timestamp":"2018-08-15T10:47:33Z","subdir":"","vcs_ref":"refs/tags/v0.3.1"},\
{"module":"github.com/go-openapi/jsonreference","version":"v0.21.5","vcs_hash":"a22758c4d4c627c8a25a37edf5556f1a9948325bbec0fab2e7c7c5463db8973d","timestamp":"2026-03-02T21:57:17Z","subdir":"","vcs_ref":"refs/tags/v0.21.5"},\
{"module":"github.com/go-openapi/errors","version":"v0.22.7","vcs_hash":"54a0bf002cf7fafb70729983ca51f189bceee7c36ecd0b75fe3d55e76add9cd4","timestamp":"2026-03-03T21:52:38Z","subdir":"","vcs_ref":"refs/tags/v0.22.7"},\
{"module":"github.com/go-openapi/swag","version":"v0.25.5","vcs_hash":"97266eba04067e616c6d2966d9fe0748c18b47c1c75240f00215c55d61645173","timestamp":"2026-03-02T18:12:04Z","subdir":"","vcs_ref":"refs/tags/v0.25.5"},\
{"module":"github.com/go-openapi/swag/conv","version":"v0.25.5","vcs_hash":"97266eba04067e616c6d2966d9fe0748c18b47c1c75240f00215c55d61645173","timestamp":"2026-03-02T18:12:04Z","subdir":"conv","vcs_ref":"refs/tags/conv/v0.25.5"},\
{"module":"github.com/go-openapi/swag/yamlutils","version":"v0.25.5","vcs_hash":"97266eba04067e616c6d2966d9fe0748c18b47c1c75240f00215c55d61645173","timestamp":"2026-03-02T18:12:04Z","subdir":"yamlutils","vcs_ref":"refs/tags/yamlutils/v0.25.5"},\
{"module":"github.com/go-openapi/swag/netutils","version":"v0.25.5","vcs_hash":"97266eba04067e616c6d2966d9fe0748c18b47c1c75240f00215c55d61645173","timestamp":"2026-03-02T18:12:04Z","subdir":"netutils","vcs_ref":"refs/tags/netutils/v0.25.5"},\
{"module":"github.com/go-openapi/swag/cmdutils","version":"v0.25.5","vcs_hash":"97266eba04067e616c6d2966d9fe0748c18b47c1c75240f00215c55d61645173","timestamp":"2026-03-02T18:12:04Z","subdir":"cmdutils","vcs_ref":"refs/tags/cmdutils/v0.25.5"},\
{"module":"github.com/go-openapi/swag/typeutils","version":"v0.25.5","vcs_hash":"97266eba04067e616c6d2966d9fe0748c18b47c1c75240f00215c55d61645173","timestamp":"2026-03-02T18:12:04Z","subdir":"typeutils","vcs_ref":"refs/tags/typeutils/v0.25.5"},\
{"module":"github.com/go-openapi/swag/stringutils","version":"v0.25.5","vcs_hash":"97266eba04067e616c6d2966d9fe0748c18b47c1c75240f00215c55d61645173","timestamp":"2026-03-02T18:12:04Z","subdir":"stringutils","vcs_ref":"refs/tags/stringutils/v0.25.5"},\
{"module":"github.com/go-openapi/swag/fileutils","version":"v0.25.5","vcs_hash":"97266eba04067e616c6d2966d9fe0748c18b47c1c75240f00215c55d61645173","timestamp":"2026-03-02T18:12:04Z","subdir":"fileutils","vcs_ref":"refs/tags/fileutils/v0.25.5"},\
{"module":"github.com/go-openapi/swag/jsonutils","version":"v0.25.5","vcs_hash":"97266eba04067e616c6d2966d9fe0748c18b47c1c75240f00215c55d61645173","timestamp":"2026-03-02T18:12:04Z","subdir":"jsonutils","vcs_ref":"refs/tags/jsonutils/v0.25.5"},\
{"module":"github.com/go-openapi/swag/jsonutils/fixtures_test","version":"v0.25.5","vcs_hash":"97266eba04067e616c6d2966d9fe0748c18b47c1c75240f00215c55d61645173","timestamp":"2026-03-02T18:12:04Z","subdir":"jsonutils/fixtures_test","vcs_ref":"refs/tags/jsonutils/fixtures_test/v0.25.5"},\
{"module":"github.com/go-openapi/swag/loading","version":"v0.25.5","vcs_hash":"97266eba04067e616c6d2966d9fe0748c18b47c1c75240f00215c55d61645173","timestamp":"2026-03-02T18:12:04Z","subdir":"loading","vcs_ref":"refs/tags/loading/v0.25.5"},\
{"module":"github.com/go-openapi/swag/mangling","version":"v0.25.5","vcs_hash":"97266eba04067e616c6d2966d9fe0748c18b47c1c75240f00215c55d61645173","timestamp":"2026-03-02T18:12:04Z","subdir":"mangling","vcs_ref":"refs/tags/mangling/v0.25.5"},\
{"module":"github.com/go-openapi/swag/jsonname","version":"v0.25.5","vcs_hash":"97266eba04067e616c6d2966d9fe0748c18b47c1c75240f00215c55d61645173","timestamp":"2026-03-02T18:12:04Z","subdir":"jsonname","vcs_ref":"refs/tags/jsonname/v0.25.5"},\
{"module":"github.com/go-openapi/validate","version":"v0.25.2","vcs_hash":"a40798525cd2559a382d1e07f13fcd9018c4f962a50d8101e45daad6b7ee86a2","timestamp":"2026-03-08T18:13:28Z","subdir":"","vcs_ref":"refs/tags/v0.25.2"},\
{"module":"github.com/go-openapi/strfmt","version":"v0.26.0","vcs_hash":"3e96bd2b484b6cc6d6bf04acca6a2f45e892bad33c8356703d5994e3984f6a8c","timestamp":"2026-03-07T22:19:48Z","subdir":"","vcs_ref":"refs/tags/v0.26.0"},\
{"module":"github.com/go-openapi/analysis","version":"v0.24.3","vcs_hash":"c9a38cba6e1401e9a82affc769f4be9ba9280852551fe72d883bdbaf80e6b776","timestamp":"2026-03-07T22:47:01Z","subdir":"","vcs_ref":"refs/tags/v0.24.3"},\
{"module":"github.com/go-openapi/jsonpointer","version":"v0.22.5","vcs_hash":"abf24edf6b6d782a40eae204e7d27ac37aebffcc286ba23e4c02a66fb2ad88ca","timestamp":"2026-03-02T21:21:48Z","subdir":"","vcs_ref":"refs/tags/v0.22.5"},\
{"module":"github.com/go-openapi/spec","version":"v0.22.4","vcs_hash":"de2752a6a0b287240339b76144a60c409fe66d8956a7163c49ac72dc0e44fdf5","timestamp":"2026-03-03T00:30:19Z","subdir":"","vcs_ref":"refs/tags/v0.22.4"},\
{"module":"github.com/go-openapi/testify/v2","version":"v2.4.1","vcs_hash":"3d06641cce83f8cb0239c33ac2a45a4ad8ce69543416aa555a8acf02de909e19","timestamp":"2026-03-07T21:58:02Z","subdir":"","vcs_ref":"refs/tags/v2.4.1"},\
{"module":"github.com/go-openapi/testify/enable/yaml/v2","version":"v2.4.1","vcs_hash":"3d06641cce83f8cb0239c33ac2a45a4ad8ce69543416aa555a8acf02de909e19","timestamp":"2026-03-07T21:58:02Z","subdir":"enable/yaml","vcs_ref":"refs/tags/enable/yaml/v2.4.1"},\
{"module":"github.com/go-openapi/loads","version":"v0.23.3","vcs_hash":"5128d105fceda11511719c8d3436e3222b95133854e6750c41b450d09a01c1dc","timestamp":"2026-03-08T15:16:14Z","subdir":"","vcs_ref":"refs/tags/v0.23.3"},\
{"module":"github.com/go-openapi/runtime","version":"v0.29.3","vcs_hash":"092b77d71a275ccfa7c676cbb07d2bbd87871ccb29e594208ee8eb3830494f09","timestamp":"2026-03-08T20:42:25Z","subdir":"","vcs_ref":"refs/tags/v0.29.3"},\
{"module":"github.com/emicklei/proto","version":"v1.14.3","vcs_hash":"550f9211e6e973b919cd38bbcc4ff51b7bf0b835f092d17535f544577c246216","timestamp":"2026-02-04T11:04:45Z","subdir":"","vcs_ref":"refs/tags/v1.14.3"},\
{"module":"github.com/emicklei/go-restful/v3","version":"v3.13.0","vcs_hash":"2b1cb5344031e14606bed4c9c1a5462fa536c12e0f7359188d69f5709fdff9a1","timestamp":"2025-08-14T12:44:48Z","subdir":"","vcs_ref":"refs/tags/v3.13.0"},\
{"module":"github.com/qri-io/jsonpointer","version":"v0.1.1","vcs_hash":"b67144e085e9ad9c55b6fa5530846e0f5fea5192dd2598b1738ec5a36f78c57f","timestamp":"2020-05-07T00:23:50Z","subdir":"","vcs_ref":"refs/tags/v0.1.1"},\
{"module":"github.com/qri-io/jsonschema","version":"v0.2.1","vcs_hash":"393de23a76eb320dc1b273dec60c2138c48b901def16bbc413ba3b8c70f23616","timestamp":"2021-03-29T11:04:59Z","subdir":"","vcs_ref":"refs/tags/v0.2.1"},\
{"module":"github.com/gorilla/websocket","version":"v1.5.4-0.20250319132907-e064f32e3674","vcs_hash":"722c87c831f4b73fd3a40f24d8693191974f7a5a180d73f29a05c9bb3f84589f","timestamp":"2025-03-19T13:29:07Z","subdir":"","vcs_ref":""},\
{"module":"github.com/eggsampler/acme/v3","version":"v3.6.2","vcs_hash":"60bb7b55cc98edc14f2a035b1eb1726d637c91e6adf74b4b6451f2df81e095fc","timestamp":"2025-03-24T11:07:09Z","subdir":"","vcs_ref":"refs/tags/v3.6.2"},\
{"module":"github.com/beevik/ntp","version":"v1.5.0","vcs_hash":"ddcaa990b4094faf6ae46dcf8d3fd8999ff3b0afcf64df965e890a20f00619a3","timestamp":"2025-09-29T20:48:18Z","subdir":"","vcs_ref":"refs/tags/v1.5.0"},\
{"module":"github.com/cavaliercoder/badio","version":"v0.0.0-20160213150051-ce5280129e9e","vcs_hash":"f7116b15d20c2d6db0f167ed3ca92d8ffdb36604e89244f4e9b44ec7f12f8dfb","timestamp":"2016-02-13T15:00:51Z","subdir":"","vcs_ref":""},\
{"module":"github.com/cavaliercoder/go-rpm","version":"v0.0.0-20200122174316-8cb9fd9c31a8","vcs_hash":"8a265df75113e12d296f5824bb1530819806e30026a379abee4799a8c63ef1b1","timestamp":"2020-01-22T17:43:16Z","subdir":"","vcs_ref":""},\
{"module":"github.com/pmezard/go-difflib","version":"v1.0.1-0.20181226105442-5d4384ee4fb2","vcs_hash":"542a02198867d48986449e0f3353a6afa6fd53ac0a9f07be5882207092512174","timestamp":"2018-12-26T10:54:42Z","subdir":"","vcs_ref":""},\
{"module":"github.com/pmezard/go-difflib","version":"v1.0.0","vcs_hash":"c04ad296d2e3203fda8b7ca96feaca21b20b3b7441e33c7d67cda029ea61ab4c","timestamp":"2016-01-10T10:55:54Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/golang/mock","version":"v1.1.1","vcs_hash":"cfc71555d14f8ab66f92807e40f5893bb08b8eb5bdecd40b444f71558441e179","timestamp":"2018-04-05T21:54:04Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\
{"module":"github.com/golang/mock","version":"v1.7.0-rc.1","vcs_hash":"6165d6377ae1ef2a921f0056a7aa8e4495effa98bd376755fee20bc822eea80b","timestamp":"2022-05-12T03:06:13Z","subdir":"","vcs_ref":"refs/tags/v1.7.0-rc.1"},\
{"module":"github.com/golang/groupcache","version":"v0.0.0-20241129210726-2c02b8208cf8","vcs_hash":"42d84b5a864149912b1976573aa12f43cdea041dfbb41206b5548b1134452af5","timestamp":"2024-11-29T21:07:26Z","subdir":"","vcs_ref":""},\
{"module":"github.com/golang/glog","version":"v1.2.5","vcs_hash":"c9f39bfa0a44d36bb33abf5da9f941c03e1a2e8b3c98916cabc3aaca09d17583","timestamp":"2025-04-29T08:43:26Z","subdir":"","vcs_ref":"refs/tags/v1.2.5"},\
{"module":"github.com/golang/glog","version":"v0.0.0-20160126235308-23def4e6c14b","vcs_hash":"f5cbb2974dc34ce4944f2c4c42cdc6c20abcd2a192abab4ba1b6e9c67ef409d5","timestamp":"2016-01-26T23:53:08Z","subdir":"","vcs_ref":""},\
{"module":"github.com/golang/snappy","version":"v0.0.4","vcs_hash":"0e8300bf89da9cc73c5b1fb83a5b5f3a9473d85cec3174c9484fb3b87ff8031d","timestamp":"2021-06-08T04:05:37Z","subdir":"","vcs_ref":"refs/tags/v0.0.4"},\
{"module":"github.com/golang/protobuf","version":"v1.4.0","vcs_hash":"9701e384e22d2f09b50e22d6c6600a8ff9d29bbe79215d2d3d0eb4ec3ae88f76","timestamp":"2020-04-13T19:43:07Z","subdir":"","vcs_ref":"refs/tags/v1.4.0"},\
{"module":"github.com/golang/protobuf","version":"v1.3.3","vcs_hash":"26d91dbcbf554b25a92b0d482be43c587e2486034812d132a04d04635e47c703","timestamp":"2020-01-28T18:10:22Z","subdir":"","vcs_ref":"refs/tags/v1.3.3"},\
{"module":"github.com/golang/protobuf","version":"v1.2.0","vcs_hash":"c620195ee748026eed07d7e16b36050b97c69cfe3f735e96aafd915e5397baa5","timestamp":"2018-08-14T21:14:27Z","subdir":"","vcs_ref":"refs/tags/v1.2.0"},\
{"module":"github.com/golang/protobuf","version":"v1.5.0","vcs_hash":"03b32f7455bf94c3c364bc067268ba50841b6ca1cf242744920854ebc0450f06","timestamp":"2021-03-18T00:15:31Z","subdir":"","vcs_ref":"refs/tags/v1.5.0"},\
{"module":"github.com/golang/protobuf","version":"v1.4.0-rc.1","vcs_hash":"efeddbb7df08ac6ca9b2bbda927e2b2189b92b06a73e55799fb3bf9581e75dcf","timestamp":"2020-02-12T18:09:08Z","subdir":"","vcs_ref":"refs/tags/v1.4.0-rc.1"},\
{"module":"github.com/golang/protobuf","version":"v1.3.2","vcs_hash":"cbdb48339b27d250cd1655e4e658760981e0b526face5866f3cfac54fd21200c","timestamp":"2019-07-01T18:22:01Z","subdir":"","vcs_ref":"refs/tags/v1.3.2"},\
{"module":"github.com/golang/protobuf","version":"v1.4.2","vcs_hash":"987f6d22deed8d3048aa18b713b26b9510111f5d84be8cc70b986cdff15a83e1","timestamp":"2020-05-14T20:44:37Z","subdir":"","vcs_ref":"refs/tags/v1.4.2"},\
{"module":"github.com/golang/protobuf","version":"v1.4.0-rc.2","vcs_hash":"4d51dcd940a624407a36666d25477186e59714137829ca237592547b2456897b","timestamp":"2020-02-28T23:19:22Z","subdir":"","vcs_ref":"refs/tags/v1.4.0-rc.2"},\
{"module":"github.com/golang/protobuf","version":"v1.5.2","vcs_hash":"a859c3f4fbc03cff10c8a4ca0287771d79dfa202246acc1287a76c7a8cd08047","timestamp":"2021-03-29T18:20:59Z","subdir":"","vcs_ref":"refs/tags/v1.5.2"},\
{"module":"github.com/golang/protobuf","version":"v1.5.4","vcs_hash":"ff75ecee442381e7c87bac5ec092ebaf50137bc693ba5c5c1edce6eb4bd3ce94","timestamp":"2024-03-06T06:45:40Z","subdir":"","vcs_ref":"refs/tags/v1.5.4"},\
{"module":"github.com/power-devops/perfstat","version":"v0.0.0-20240221224432-82ca36839d55","vcs_hash":"242eb3861a3e222ea9585a91f84c7af6fbc44465c4725aa36c080a86dbd313a8","timestamp":"2024-02-21T22:44:32Z","subdir":"","vcs_ref":""},\
{"module":"github.com/go-jose/go-jose/v3","version":"v3.0.4","vcs_hash":"08af29f560b683bfef54b075a44ab7a008011862abb73c562481d3507d3e3b36","timestamp":"2025-02-26T19:59:49Z","subdir":"","vcs_ref":"refs/tags/v3.0.4"},\
{"module":"github.com/go-jose/go-jose/v4","version":"v4.1.4","vcs_hash":"1ecb3c60bf1e5c9788a27736634c761cde56baaf8301dab57598857d80040c7b","timestamp":"2026-03-31T23:33:50Z","subdir":"","vcs_ref":"refs/tags/v4.1.4"},\
{"module":"github.com/keybase/go-keychain","version":"v0.0.1","vcs_hash":"82b6722ae37ce95c4a4f5c5d543a436be413fa68f322f3be86191b0953905603","timestamp":"2025-02-27T17:52:03Z","subdir":"","vcs_ref":"refs/tags/v0.0.1"},\
{"module":"github.com/golang-jwt/jwt/v5","version":"v5.3.0","vcs_hash":"66e46ba0e23fba357561ed48f444bcd3786aa0082ed4d7977f2625fe09cb754e","timestamp":"2025-07-30T13:04:00Z","subdir":"","vcs_ref":"refs/tags/v5.3.0"},\
{"module":"github.com/golang-jwt/jwt/v4","version":"v4.0.0","vcs_hash":"2955ce06cf948848ddc59969d052d6860c032b5710678d01363950fd22df69e8","timestamp":"2021-08-03T13:51:01Z","subdir":"v4","vcs_ref":"refs/tags/v4.0.0"},\
{"module":"github.com/golang-jwt/jwt/v4","version":"v4.5.0","vcs_hash":"0df4d4a4ce4edffb66e561b7d9b832cbaf4f604721b6f2de322c01da622c81ef","timestamp":"2022-12-09T17:04:03Z","subdir":"","vcs_ref":"refs/tags/v4.5.0"},\
{"module":"github.com/golang-jwt/jwt/v4","version":"v4.5.2","vcs_hash":"ed377d1ab5a786e12e5ac9212b3b771832aca833f1458aae5077fd332a594123","timestamp":"2025-03-21T20:49:30Z","subdir":"","vcs_ref":"refs/tags/v4.5.2"},\
{"module":"github.com/golang-jwt/jwt/v4","version":"v4.2.0","vcs_hash":"03c59fc7da5fc3978e769be95f553ee94309b2cf8282abade9c25cb6a79e536b","timestamp":"2021-11-24T13:27:41Z","subdir":"v4","vcs_ref":"refs/tags/v4.2.0"},\
{"module":"github.com/rs/cors","version":"v1.11.1","vcs_hash":"683fbf542a24ade72095da0d0e8751af7465b56a6063679527d106c20522b407","timestamp":"2024-08-29T11:33:59Z","subdir":"","vcs_ref":"refs/tags/v1.11.1"},\
{"module":"github.com/felixge/httpsnoop","version":"v1.0.4","vcs_hash":"4faaa0a5649a2ae9245609ad7ed739dbc2e39cfd27a3018400f3dad114269d26","timestamp":"2023-03-12T10:31:09Z","subdir":"","vcs_ref":"refs/tags/v1.0.4"},\
{"module":"github.com/agnivade/levenshtein","version":"v1.2.1","vcs_hash":"d5b038fb822a1e302e22b0e6ac8351f211ac30e1da66a634d22f607d655321e3","timestamp":"2024-12-23T04:53:21Z","subdir":"","vcs_ref":"refs/tags/v1.2.1"},\
{"module":"github.com/lib/pq","version":"v1.10.9","vcs_hash":"158d1e114ffc1fee23e7d3d5cb274474d4c8f267d0631539106a5f8c8cdd7704","timestamp":"2023-04-26T04:34:24Z","subdir":"","vcs_ref":"refs/tags/v1.10.9"},\
{"module":"github.com/leodido/go-urn","version":"v1.4.0","vcs_hash":"b2a1f4b36016937230bca76a4d71ced31983d7d695e4bffcf0b11b88b1593f97","timestamp":"2024-01-31T10:04:06Z","subdir":"","vcs_ref":"refs/tags/v1.4.0"},\
{"module":"github.com/arbovm/levenshtein","version":"v0.0.0-20160628152529-48b4e1c0c4d0","vcs_hash":"9539ce260f915260d5edf11cb1b230307c7a7488905e7481eee75016fc5eb6dd","timestamp":"2016-06-28T15:25:29Z","subdir":"","vcs_ref":""},\
{"module":"github.com/asaskevich/govalidator","version":"v0.0.0-20230301143203-a9d515a09cc2","vcs_hash":"e0c07f200ff31ed92aa0075d9e5e72c7ed4294f6ef7d9e723213e1bceaca59d3","timestamp":"2023-03-01T14:32:03Z","subdir":"","vcs_ref":""},\
{"module":"github.com/smallstep/go-attestation","version":"v0.4.4-0.20241119153605-2306d5b464ca","vcs_hash":"10f72044a97b31fa69d4247d07db1b2c33bcdc1cb38cd8e5b0aa9f3ee96e47c4","timestamp":"2024-11-19T15:36:05Z","subdir":"","vcs_ref":""},\
{"module":"github.com/natefinch/atomic","version":"v1.0.1","vcs_hash":"99971a94cd97512caa6cad3e42420fb057464e2529e9c30e18ee7cd8f260e965","timestamp":"2021-06-28T18:01:37Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\
{"module":"github.com/containerd/stargz-snapshotter/estargz","version":"v0.18.2","vcs_hash":"5b8f552ba5310161b4d54e46b1e5f4ac2f03191dd86070de81cf7a2681739216","timestamp":"2026-01-21T14:16:27Z","subdir":"estargz","vcs_ref":"refs/tags/estargz/v0.18.2"},\
{"module":"github.com/containerd/platforms","version":"v1.0.0-rc.2","vcs_hash":"a5b697e2dcecbe42edb518786dede1d257aecc63276621eb03e3917cae97e344","timestamp":"2025-08-21T22:24:38Z","subdir":"","vcs_ref":"refs/tags/v1.0.0-rc.2"},\
{"module":"github.com/containerd/errdefs","version":"v1.0.0","vcs_hash":"d9d1c9949e837f39205605237b656e944c7d0cd69e48a906fabdb6bebe0edb66","timestamp":"2024-10-08T13:10:09Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/containerd/errdefs/pkg","version":"v0.3.0","vcs_hash":"d9d1c9949e837f39205605237b656e944c7d0cd69e48a906fabdb6bebe0edb66","timestamp":"2024-10-08T13:10:09Z","subdir":"pkg","vcs_ref":"refs/tags/pkg/v0.3.0"},\
{"module":"github.com/containerd/typeurl/v2","version":"v2.2.3","vcs_hash":"60bc9255cadbea28631b3293cd629cbe0b9a9cffb987712231cdc4f9dc75a2cb","timestamp":"2024-11-07T03:45:23Z","subdir":"","vcs_ref":"refs/tags/v2.2.3"},\
{"module":"github.com/containerd/containerd/v2","version":"v2.2.1","vcs_hash":"b51e865a515d6f404b4f6894bfde27e36048036442412f97c69da358dff76828","timestamp":"2025-12-18T16:59:11Z","subdir":"","vcs_ref":"refs/tags/v2.2.1"},\
{"module":"github.com/containerd/log","version":"v0.1.0","vcs_hash":"697be36d9b8a0eb34f8591d0f69b6d596e1e9341b5944ebf81ddd334b1907bc6","timestamp":"2023-09-09T00:27:15Z","subdir":"","vcs_ref":"refs/tags/v0.1.0"},\
{"module":"github.com/veraison/go-cose","version":"v1.3.0","vcs_hash":"c548b7a622c9a56992d2a6491c7b03f124584e7c002abd153921ce597c1c1d24","timestamp":"2024-07-19T15:21:40Z","subdir":"","vcs_ref":"refs/tags/v1.3.0"},\
{"module":"github.com/codahale/rfc6979","version":"v0.0.0-20141003034818-6a90f24967eb","vcs_hash":"fd8285193cc7c3bc341773b0166d258b6baca2f6985aa666e14e22b19401aea7","timestamp":"2014-10-03T03:48:18Z","subdir":"","vcs_ref":""},\
{"module":"github.com/common-nighthawk/go-figure","version":"v0.0.0-20210622060536-734e95fb86be","vcs_hash":"2922dbbbb477082bd14cb719c8e30c353bf158990fd8727c784a70159a4b572d","timestamp":"2021-06-22T06:05:36Z","subdir":"","vcs_ref":""},\
{"module":"github.com/docker/distribution","version":"v2.8.3+incompatible","vcs_hash":"179a4ea80ae56a5b38e4349dac5aa88a7180045bd04943c05933125b8abc5d93","timestamp":"2023-10-02T17:09:30Z","subdir":"","vcs_ref":"refs/tags/v2.8.3"},\
{"module":"github.com/docker/docker-credential-helpers","version":"v0.9.5","vcs_hash":"14ec2ee3d9b2ad87575d79cb445095440bdffc43efd7c90bc3f69ae21362242e","timestamp":"2026-01-08T16:44:32Z","subdir":"","vcs_ref":"refs/tags/v0.9.5"},\
{"module":"github.com/docker/go-connections","version":"v0.6.0","vcs_hash":"cd70a0eee460c110e4a842a78601dec1916771fc94b97da790e5cdff44cf6b59","timestamp":"2025-08-06T15:47:19Z","subdir":"","vcs_ref":"refs/tags/v0.6.0"},\
{"module":"github.com/docker/docker","version":"v27.5.1+incompatible","vcs_hash":"741f3e770f1be5b9eeb6b08ba1dec29abf4466cd217f173c27fc597f15587769","timestamp":"2025-01-21T23:46:50Z","subdir":"","vcs_ref":"refs/tags/v27.5.1"},\
{"module":"github.com/docker/go-units","version":"v0.5.0","vcs_hash":"2f970538f28b36d4a39663fa90033ec5c742ddd7774a86d94cc6c179e63a1c49","timestamp":"2022-05-17T10:43:04Z","subdir":"","vcs_ref":"refs/tags/v0.5.0"},\
{"module":"github.com/docker/cli","version":"v29.3.0+incompatible","vcs_hash":"4f09bed175fe884a5c891ce00c93b1711dfe88ba798cfd551aac0dc99ac040d8","timestamp":"2026-03-05T14:22:32Z","subdir":"","vcs_ref":"refs/heads/master"},\
{"module":"github.com/klauspost/pgzip","version":"v1.2.6","vcs_hash":"02e19538a5e11918b1a8e352986c626de6e0a94b861bc4f4f84538ad857e14ec","timestamp":"2022-09-30T10:46:21Z","subdir":"","vcs_ref":"refs/tags/v1.2.6"},\
{"module":"github.com/klauspost/compress","version":"v1.18.4","vcs_hash":"73d04794ac9e630d56a31467e6018906b1fd81912e4a38633af1f4127cd7e5d6","timestamp":"2026-02-05T15:29:14Z","subdir":"","vcs_ref":"refs/tags/v1.18.4"},\
{"module":"github.com/jpillora/backoff","version":"v1.0.0","vcs_hash":"f3877637b1b0b11053bd3f6485df13672bc371749f756a13048e72298849b276","timestamp":"2019-10-03T12:57:08Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/davecgh/go-spew","version":"v1.1.1","vcs_hash":"4c7d69cfe586f86079773ff48d94f76d327c2914d8dfeffca9e34fd1146e5d5e","timestamp":"2018-02-21T23:26:28Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\
{"module":"github.com/davecgh/go-spew","version":"v1.1.2-0.20180830191138-d8f796af33cc","vcs_hash":"0bbb25cc88e50a90d274f6ee02d66c1a618efd4ad460b7046fdd7f680cb60ffc","timestamp":"2018-08-30T19:11:38Z","subdir":"","vcs_ref":""},\
{"module":"github.com/davecgh/go-spew","version":"v1.1.0","vcs_hash":"5ce38ad71c2d3bc390b87154a89c53fd5ead19aed2bf005419db5c0b28ea9dfd","timestamp":"2016-10-29T20:57:26Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\
{"module":"github.com/munnerz/goautoneg","version":"v0.0.0-20191010083416-a7dc8b61c822","vcs_hash":"0f68eeb31e17a8fc96eede1943fe26be5835b08f5cc4a9eee4ed1b8eee4887ee","timestamp":"2019-10-10T08:34:16Z","subdir":"","vcs_ref":""},\
{"module":"github.com/gofrs/flock","version":"v0.13.0","vcs_hash":"02d8268670a7857f4978becccdc42f5a6426d2a039ce8e2357ef0bf32795014f","timestamp":"2025-10-09T22:24:42Z","subdir":"","vcs_ref":"refs/tags/v0.13.0"},\
{"module":"github.com/moby/term","version":"v0.5.2","vcs_hash":"b7e959e4874fee596e5f3eaf06300410fe7cefde4fbece51042d17be137ef04e","timestamp":"2025-01-02T15:40:12Z","subdir":"","vcs_ref":"refs/tags/v0.5.2"},\
{"module":"github.com/moby/docker-image-spec","version":"v1.3.1","vcs_hash":"7e0006fc710e13d8f5d4dd052be9861a4fd4562e1330ab6bdf94303f885e80da","timestamp":"2024-02-09T17:17:29Z","subdir":"","vcs_ref":"refs/tags/v1.3.1"},\
{"module":"github.com/moby/locker","version":"v1.0.1","vcs_hash":"5549df51df50be0334c0cca67abc7ed6c0bd4fceee3f7bb56eb917b56bfe8644","timestamp":"2020-09-10T19:56:44Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\
{"module":"github.com/moby/moby/client","version":"v0.3.0","vcs_hash":"5565a518d25170f3b3f5875045b25f60e4544c33602acbbe9623f469851912ee","timestamp":"2026-03-05T13:48:11Z","subdir":"client","vcs_ref":"refs/tags/client/v0.3.0"},\
{"module":"github.com/moby/moby/api","version":"v1.54.0","vcs_hash":"3b022057e034a384cd203891e20d2d127cd0b52e548cd3415504c340aa07d707","timestamp":"2026-03-05T13:32:31Z","subdir":"api","vcs_ref":"refs/tags/api/v1.54.0"},\
{"module":"github.com/moby/spdystream","version":"v0.5.0","vcs_hash":"d7500df0fff4308611e91e5edf74d69178b53dccca9230c03beecb0a26d56124","timestamp":"2024-07-23T13:25:06Z","subdir":"","vcs_ref":"refs/tags/v0.5.0"},\
{"module":"github.com/vektah/gqlparser/v2","version":"v2.5.32","vcs_hash":"1edeb706d33d44612b54eabb8f6d6db4f7f798e00f54462d03506edb82697567","timestamp":"2026-02-19T12:08:20Z","subdir":"","vcs_ref":"refs/tags/v2.5.32"},\
{"module":"github.com/planetscale/vtprotobuf","version":"v0.6.1-0.20240319094008-0393e58bdf10","vcs_hash":"2a8f7a744764b6b7d0f6b17003fd8217cc861be946aee65fccc7d1491634942f","timestamp":"2024-03-19T09:40:08Z","subdir":"","vcs_ref":""},\
{"module":"github.com/miekg/dns","version":"v1.1.61","vcs_hash":"ce3abfe403c2ec16e685d0c9618f499a30f0e1ae2c849b71bd69e939c2b647b8","timestamp":"2024-06-13T15:51:48Z","subdir":"","vcs_ref":"refs/tags/v1.1.61"},\
{"module":"github.com/miekg/pkcs11","version":"v1.0.3-0.20190429190417-a667d056470f","vcs_hash":"2236ec808941cd08d33e07a57806b3a85157b8434f46ac0c29e14eafcfe324e3","timestamp":"2019-04-29T19:04:17Z","subdir":"","vcs_ref":""},\
{"module":"github.com/miekg/pkcs11","version":"v1.1.2","vcs_hash":"9480be320f035968dc5438c40395f959ea136e3a3cee474abc3a7669b30aa44e","timestamp":"2026-01-22T08:41:43Z","subdir":"","vcs_ref":"refs/tags/v1.1.2"},\
{"module":"github.com/lestrrat-go/httprc","version":"v1.0.6","vcs_hash":"d14354d54b0c068ab8747b25784eb05209da62e9aef5bf1aebfc374ff7565ca8","timestamp":"2024-07-12T21:08:33Z","subdir":"","vcs_ref":"refs/tags/v1.0.6"},\
{"module":"github.com/lestrrat-go/httprc/v3","version":"v3.0.2","vcs_hash":"1b165fba7337b001daf46a2dd4d614993a82ea7216c0fd7e88b659795dcd2713","timestamp":"2025-12-05T05:33:02Z","subdir":"","vcs_ref":"refs/tags/v3.0.2"},\
{"module":"github.com/lestrrat-go/dsig-secp256k1","version":"v1.0.0","vcs_hash":"1aeb2bc1012f007479dc7d6ad9a5b56691b7d10a65a0769920fe28a1fd8c5723","timestamp":"2025-08-18T11:27:57Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/lestrrat-go/blackmagic","version":"v1.0.4","vcs_hash":"3655ef3535f5fbfddd86c6bcfa866ada2fc8db33ec17816fc8b334009e9fb0f4","timestamp":"2025-06-09T05:38:50Z","subdir":"","vcs_ref":"refs/tags/v1.0.4"},\
{"module":"github.com/lestrrat-go/dsig","version":"v1.0.0","vcs_hash":"4fdb7373a44af5a6ec82808bddce9b5b786907d10b6cf2138dcaf3c2ebf4c6ff","timestamp":"2025-08-18T10:59:08Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/lestrrat-go/httpcc","version":"v1.0.1","vcs_hash":"466b0cb68191ccc31d667d0e1cf8f0eec07556bbc61fdad149b67379fba0f789","timestamp":"2022-03-29T04:21:01Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\
{"module":"github.com/lestrrat-go/jwx/v3","version":"v3.0.13","vcs_hash":"8ca284bf140c87eafa7c60ee3c781a4f3fea96739592cd6944eb567d11d56b8d","timestamp":"2026-01-12T06:38:32Z","subdir":"","vcs_ref":"refs/tags/v3.0.13"},\
{"module":"github.com/lestrrat-go/jwx/v2","version":"v2.1.6","vcs_hash":"4b53fd1f3fbd398bb551eb96c76ae6b8e58bc5ee749e2a6089a4f9932c8dec35","timestamp":"2025-04-29T08:17:11Z","subdir":"","vcs_ref":"refs/tags/v2.1.6"},\
{"module":"github.com/lestrrat-go/iter","version":"v1.0.2","vcs_hash":"8798d95cb251c99e3a5db9f362a5935bbe2e986c343f71908f1aecf634de6fbf","timestamp":"2022-03-29T05:42:43Z","subdir":"","vcs_ref":"refs/tags/v1.0.2"},\
{"module":"github.com/lestrrat-go/option","version":"v1.0.1","vcs_hash":"1f8dcec97d12a81cde1ec2ba90e51e5a7642e0b6ac69fa6d060c924499d9e826","timestamp":"2022-12-15T23:46:30Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\
{"module":"github.com/lestrrat-go/option/v2","version":"v2.0.0","vcs_hash":"dc53b62e9538872256995babc7eb47d6a84dacaa027bdd84bb3cce5344e6bef9","timestamp":"2025-06-09T05:55:07Z","subdir":"","vcs_ref":"refs/tags/v2.0.0"},\
{"module":"github.com/dimchansky/utfbom","version":"v1.1.1","vcs_hash":"04f39ab86cb6ab9bf2a2278357fae9932b31f6cb8b07bf8e6ca02581cbf46ecf","timestamp":"2020-11-06T16:33:08Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\
{"module":"github.com/kballard/go-shellquote","version":"v0.0.0-20180428030007-95032a82bc51","vcs_hash":"49fe182d1b759955b666e8ad12ff66052cc7e14ba9ccf9e8371ee85848f1f9ac","timestamp":"2018-04-28T03:00:07Z","subdir":"","vcs_ref":""},\
{"module":"github.com/dgraph-io/badger/v4","version":"v4.9.1","vcs_hash":"c9b8a7009d3f534277f001ca60ebd4d9fa469f480c13b57d152ffd38c9dbaf2e","timestamp":"2026-02-04T20:55:07Z","subdir":"","vcs_ref":"refs/tags/v4.9.1"},\
{"module":"github.com/dgraph-io/ristretto/v2","version":"v2.2.0","vcs_hash":"47697d4a07379bc6c536b4dc0b7983955beaad4246e4c0f4604183b675304407","timestamp":"2025-03-30T12:11:19Z","subdir":"","vcs_ref":"refs/tags/v2.2.0"},\
{"module":"github.com/cenkalti/backoff","version":"v1.1.1-0.20171020064038-309aa717adbf","vcs_hash":"5fee92c85434bd516a6cd9326ece67dd71de68f18cb9ff95b548a481a5ac1a7a","timestamp":"2017-10-20T06:40:38Z","subdir":"","vcs_ref":""},\
{"module":"github.com/cenkalti/backoff/v5","version":"v5.0.3","vcs_hash":"656f7cb59961eb5e57ba97bf50166eda0c13e2ecff4c8c15b33eb72e8ad26dc4","timestamp":"2025-07-23T16:23:35Z","subdir":"","vcs_ref":"refs/tags/v5.0.3"},\
{"module":"github.com/cenkalti/backoff/v4","version":"v4.3.0","vcs_hash":"c644c1d0f5212c0210f056d6c7d45f3e482a1fca002b7c3e65edf8d3c060566f","timestamp":"2024-01-02T22:56:19Z","subdir":"","vcs_ref":"refs/tags/v4.3.0"},\
{"module":"github.com/denisbrodbeck/machineid","version":"v1.0.1","vcs_hash":"4245534d60013503f0f4ec4a8aad1499e25bb81ca93eaa37e1328b888bb8d7a7","timestamp":"2019-02-27T19:22:10Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\
{"module":"github.com/avast/retry-go/v4","version":"v4.7.0","vcs_hash":"87c80cd0bbf0d55e426625cf59b06be4cfea8fcbe1fc14a497f84fdc80afef77","timestamp":"2025-10-14T18:38:31Z","subdir":"","vcs_ref":"refs/tags/v4.7.0"},\
{"module":"github.com/mitchellh/go-homedir","version":"v1.1.0","vcs_hash":"0466071bcdbaca5ed0a5cdacf380534de6af614c1d6ebac6ec08513f20ffc5ad","timestamp":"2019-01-27T04:21:35Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\
{"module":"github.com/mitchellh/copystructure","version":"v1.2.0","vcs_hash":"d3fc75b255c7157669cb2bfb806c854438546d13de557d12d405a6c09392b5f6","timestamp":"2021-05-05T17:08:07Z","subdir":"","vcs_ref":"refs/tags/v1.2.0"},\
{"module":"github.com/mitchellh/mapstructure","version":"v1.5.1-0.20231216201459-8508981c8b6c","vcs_hash":"d2a6b499da03f4353fa4c9c4e1c474c3b486a30a8129cd38373dd007db62a83f","timestamp":"2023-12-16T20:14:59Z","subdir":"","vcs_ref":""},\
{"module":"github.com/mitchellh/reflectwalk","version":"v1.0.2","vcs_hash":"cef150715ca3823275a9d97895b7fdc3d73afcb2a90e53183ddffeff1bf246a8","timestamp":"2021-05-03T23:34:11Z","subdir":"","vcs_ref":"refs/tags/v1.0.2"},\
{"module":"github.com/mitchellh/cli","version":"v1.1.5","vcs_hash":"6e5851e96940f7a45dd455eb37d42de655ecc8a0b27a3261be742e5546dc1a00","timestamp":"2022-09-30T19:19:43Z","subdir":"","vcs_ref":"refs/tags/v1.1.5"},\
{"module":"github.com/mitchellh/go-wordwrap","version":"v1.0.1","vcs_hash":"c6c7d05ba9f6db2637751fa2ce7bbc8bb04f632abc0b05363566319c8fd9c9b0","timestamp":"2020-09-25T18:08:01Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\
{"module":"github.com/nxadm/tail","version":"v1.4.11","vcs_hash":"3d7309c6f9225628d49b0bfc2f32d3f696a9d127463b00b3f716798800b51993","timestamp":"2023-10-10T14:11:07Z","subdir":"","vcs_ref":"refs/tags/v1.4.11"},\
{"module":"github.com/nxadm/tail","version":"v1.4.8","vcs_hash":"badc5a9928e990b92696d59abf692d0a8a1f1de81c54722f9be8817c4d19afc4","timestamp":"2021-02-07T16:08:07Z","subdir":"","vcs_ref":"refs/tags/v1.4.8"},\
{"module":"github.com/nxadm/tail","version":"v1.4.4","vcs_hash":"b5c7d8f9d14ed1c5c32e32f6ed5f5dd4cded5712fee6bf935d12815de9ab8dec","timestamp":"2019-11-25T21:39:29Z","subdir":"","vcs_ref":"refs/tags/v1.4.4"},\
{"module":"github.com/goccy/go-json","version":"v0.10.5","vcs_hash":"9135ffafe2f170bce8f90413934c0b25aa6d201122cc437153cf64a206c46389","timestamp":"2025-01-25T05:38:06Z","subdir":"","vcs_ref":"refs/tags/v0.10.5"},\
{"module":"github.com/fortytw2/leaktest","version":"v1.3.0","vcs_hash":"e146e84d5e37e7b278419bf45b16d3a337acba4f15b59c8dd8ebceb95656e32a","timestamp":"2018-11-09T15:15:30Z","subdir":"","vcs_ref":"refs/tags/v1.3.0"},\
{"module":"github.com/hashicorp/vault/api","version":"v1.22.0","vcs_hash":"033e09dce13ef5978a54630b9aeeff1bacbaef5f18440a07a06a68a25cc4868d","timestamp":"2025-10-02T22:02:29Z","subdir":"api","vcs_ref":"refs/tags/api/v1.22.0"},\
{"module":"github.com/hashicorp/hcl","version":"v1.0.1-vault-7","vcs_hash":"7a5772aca3cabe6d6b1816747fb6b458c375b407225311d4c6ecfd5b4eabc9ed","timestamp":"2024-11-07T22:23:56Z","subdir":"","vcs_ref":"refs/tags/v1.0.1-vault-7"},\
{"module":"github.com/hashicorp/errwrap","version":"v1.0.0","vcs_hash":"65db17b2a8abd8c2bde5a919d17f7abc0e891ae4037aa21f7aa2482f560cf21f","timestamp":"2018-08-24T00:39:10Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/hashicorp/errwrap","version":"v1.1.0","vcs_hash":"a0949020a0c14672f86d32cbf0d984b8d048a27e6f75aeac79f8ca3f7cc4ecae","timestamp":"2020-07-14T15:51:01Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\
{"module":"github.com/hashicorp/go-rootcerts","version":"v1.0.2","vcs_hash":"1b9a717614b3e40177ef058905015a718a7c26730f21f8f7abaa549393da8c7c","timestamp":"2019-12-10T09:55:28Z","subdir":"","vcs_ref":"refs/tags/v1.0.2"},\
{"module":"github.com/hashicorp/go-version","version":"v1.7.0","vcs_hash":"fd3860df5d492a5119c8c51b16a6aab4a06c5aa25b862415b5447aa36f240677","timestamp":"2024-05-24T10:16:12Z","subdir":"","vcs_ref":"refs/tags/v1.7.0"},\
{"module":"github.com/hashicorp/go-multierror","version":"v1.1.1","vcs_hash":"cec0f337a88725c16a86058204a5dd4ae667b8a92bbed995ab204ebcb62177a5","timestamp":"2021-03-11T20:17:12Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\
{"module":"github.com/hashicorp/go-hclog","version":"v1.6.3","vcs_hash":"0b4bc1f484bcdfdcb3ceaacd23eff50d33afa85db395a0f6a5f55b1bd0e8c0c5","timestamp":"2024-04-01T20:03:54Z","subdir":"","vcs_ref":"refs/tags/v1.6.3"},\
{"module":"github.com/hashicorp/go-retryablehttp","version":"v0.7.8","vcs_hash":"420ce476cca0369183e19289674513fb1d412be25fb7aa1ce6f21f22444e1b02","timestamp":"2025-06-18T14:25:10Z","subdir":"","vcs_ref":"refs/tags/v0.7.8"},\
{"module":"github.com/hashicorp/go-secure-stdlib/strutil","version":"v0.1.2","vcs_hash":"fbbef96285ca265575b1f73cea74e599fd8b02f9af5fe155ab6c56925f45f587","timestamp":"2021-11-22T19:44:14Z","subdir":"strutil","vcs_ref":"refs/tags/strutil/v0.1.2"},\
{"module":"github.com/hashicorp/go-secure-stdlib/parseutil","version":"v0.2.0","vcs_hash":"bcc198691428b6b365ada6a0b3d1e5d04b642c5bb34cfcb73f25f5bf6b988354","timestamp":"2025-03-06T22:34:24Z","subdir":"parseutil","vcs_ref":"refs/tags/parseutil/v0.2.0"},\
{"module":"github.com/hashicorp/go-sockaddr","version":"v1.0.7","vcs_hash":"717e523035675664a908708fd1030c060601f362c429f3f95fcbc91804cd0b54","timestamp":"2024-09-19T09:47:04Z","subdir":"","vcs_ref":"refs/tags/v1.0.7"},\
{"module":"github.com/hashicorp/golang-lru/v2","version":"v2.0.7","vcs_hash":"0a17d620bc2f7dd8c00efd79d0b78bb5f5c0bfaa2ec311417e9256a33b35db77","timestamp":"2023-09-21T18:26:40Z","subdir":"","vcs_ref":"refs/tags/v2.0.7"},\
{"module":"github.com/hashicorp/go-cleanhttp","version":"v0.5.2","vcs_hash":"da345fc970b7e579c1da9ec42edfbe1bf896f5e3274ce418f134b15952eb2494","timestamp":"2021-02-03T18:51:13Z","subdir":"","vcs_ref":"refs/tags/v0.5.2"},\
{"module":"github.com/cheggaaa/pb/v3","version":"v3.1.6","vcs_hash":"ffd0a2edfdc27e42499e995967632513fb99ad79553d0a6a1a3687e7e93199f9","timestamp":"2025-01-21T09:10:56Z","subdir":"","vcs_ref":"refs/tags/v3.1.6"},\
{"module":"github.com/Azure/go-ansiterm","version":"v0.0.0-20250102033503-faa5f7b0171c","vcs_hash":"d9abe4d330489bbcc2f3473a042a0886c4f556d7a3b9128c484c2fef3396e790","timestamp":"2025-01-02T03:35:03Z","subdir":"","vcs_ref":""},\
{"module":"github.com/Azure/go-autorest","version":"v14.2.0+incompatible","vcs_hash":"ba92764bce2c8d42421946b97590b547d049aa0cc3fb86bbf6a377d7a7689c16","timestamp":"2020-06-23T16:10:07Z","subdir":"","vcs_ref":"refs/tags/v14.2.0"},\
{"module":"github.com/Azure/go-autorest/autorest","version":"v0.11.29","vcs_hash":"c22657f37c59c0945b4e336aad22b3f709ef0460eadfe752afa8df0de2e4cc5e","timestamp":"2023-04-27T23:34:14Z","subdir":"autorest","vcs_ref":"refs/tags/autorest/v0.11.29"},\
{"module":"github.com/Azure/go-autorest/autorest","version":"v0.11.24","vcs_hash":"356d7e51921981c7cb18328f317f7ebfd024b9ed6eb5ca9f0087c6db0ee483f3","timestamp":"2022-01-12T16:21:45Z","subdir":"autorest","vcs_ref":"refs/tags/autorest/v0.11.24"},\
{"module":"github.com/Azure/go-autorest/autorest/date","version":"v0.3.0","vcs_hash":"8823b0db59dc2635c635c7236494cef70af188fa4524bb59b384d629aef1d2eb","timestamp":"2020-06-23T18:36:26Z","subdir":"autorest/date","vcs_ref":"refs/tags/autorest/date/v0.3.0"},\
{"module":"github.com/Azure/go-autorest/autorest/azure/cli","version":"v0.4.6","vcs_hash":"1213bc6ac1eb7e061714c141c39c0c1c78a6d0b3a3928900cd5f28f20a5730d7","timestamp":"2022-07-26T15:30:24Z","subdir":"autorest/azure/cli","vcs_ref":"refs/tags/autorest/azure/cli/v0.4.6"},\
{"module":"github.com/Azure/go-autorest/autorest/azure/cli","version":"v0.4.5","vcs_hash":"f99e2b6a8cd1b56dbdcc1361957cce4a2b9179afbd297dc7cbaae6a99d138bcf","timestamp":"2022-01-12T16:31:33Z","subdir":"autorest/azure/cli","vcs_ref":"refs/tags/autorest/azure/cli/v0.4.5"},\
{"module":"github.com/Azure/go-autorest/autorest/azure/auth","version":"v0.5.12","vcs_hash":"e2ee1954a64e63fcc0a4dadc70ce966b8e0190c0c5dcdfa7e481972212617acb","timestamp":"2023-01-17T19:03:26Z","subdir":"autorest/azure/auth","vcs_ref":"refs/tags/autorest/azure/auth/v0.5.12"},\
{"module":"github.com/Azure/go-autorest/autorest/adal","version":"v0.9.18","vcs_hash":"0b9609d795b834a1a57dc202c2616331afa7dd39bb76d67dcf5d034207afe0fb","timestamp":"2021-12-14T01:42:51Z","subdir":"autorest/adal","vcs_ref":"refs/tags/autorest/adal/v0.9.18"},\
{"module":"github.com/Azure/go-autorest/autorest/adal","version":"v0.9.22","vcs_hash":"66916539dacd020ddf8ed08323dcd3fba46d7fed71699118afcca9d098c7094c","timestamp":"2023-01-17T16:45:42Z","subdir":"autorest/adal","vcs_ref":"refs/tags/autorest/adal/v0.9.22"},\
{"module":"github.com/Azure/go-autorest/autorest/adal","version":"v0.9.23","vcs_hash":"875a9ca575cb934830ebbda8e9001839b4aaefe5b1f34a9227f5cff452d12473","timestamp":"2023-03-15T18:42:44Z","subdir":"autorest/adal","vcs_ref":"refs/tags/autorest/adal/v0.9.23"},\
{"module":"github.com/Azure/go-autorest/autorest/mocks","version":"v0.4.1","vcs_hash":"dbb9e4314843d6870f0e92bb4f7882dc6aab7192acaafc56e8a6e7bd410c8e93","timestamp":"2020-08-13T18:36:39Z","subdir":"autorest/mocks","vcs_ref":"refs/tags/autorest/mocks/v0.4.1"},\
{"module":"github.com/Azure/go-autorest/autorest/mocks","version":"v0.4.2","vcs_hash":"5e9fd1a39dce251d3dfe919689626f4e4ca647850fd52443742cef16d4b6658d","timestamp":"2022-03-31T16:15:44Z","subdir":"autorest/mocks","vcs_ref":"refs/tags/autorest/mocks/v0.4.2"},\
{"module":"github.com/Azure/go-autorest/logger","version":"v0.2.1","vcs_hash":"83b430e0cf9f7d4185c0a827633af519ec8a22d61244b82172855b0e3210b68f","timestamp":"2021-02-05T22:21:48Z","subdir":"logger","vcs_ref":"refs/tags/logger/v0.2.1"},\
{"module":"github.com/Azure/go-autorest/tracing","version":"v0.6.0","vcs_hash":"8823b0db59dc2635c635c7236494cef70af188fa4524bb59b384d629aef1d2eb","timestamp":"2020-06-23T18:36:26Z","subdir":"tracing","vcs_ref":"refs/tags/tracing/v0.6.0"},\
{"module":"github.com/Azure/azure-sdk-for-go","version":"v68.0.0+incompatible","vcs_hash":"afc338f359d229bfb27b7fc6688607f88cc190edcf28b4f719a9467d4a936b3e","timestamp":"2023-01-19T11:02:01Z","subdir":"","vcs_ref":"refs/tags/v68.0.0"},\
{"module":"github.com/Azure/azure-sdk-for-go/sdk/storage/azblob","version":"v1.6.4","vcs_hash":"7939b346f7cae7d8d9db14599fc03eb079f5815fea8a308b27e2da570c9f064b","timestamp":"2026-01-13T05:26:14Z","subdir":"sdk/storage/azblob","vcs_ref":"refs/tags/sdk/storage/azblob/v1.6.4"},\
{"module":"github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal","version":"v1.2.0","vcs_hash":"643f56d75383f31426093d9aaedda74056143315012ba8d86490e9ef8120ad0d","timestamp":"2025-06-12T20:47:26Z","subdir":"sdk/security/keyvault/internal","vcs_ref":"refs/tags/sdk/security/keyvault/internal/v1.2.0"},\
{"module":"github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys","version":"v1.4.0","vcs_hash":"447345c182198a0e877fb3043791636d5b8fb2bc068b8ec1559a6f0771eba87c","timestamp":"2025-06-12T23:43:05Z","subdir":"sdk/security/keyvault/azkeys","vcs_ref":"refs/tags/sdk/security/keyvault/azkeys/v1.4.0"},\
{"module":"github.com/Azure/azure-sdk-for-go/sdk/azcore","version":"v1.21.0","vcs_hash":"d32f735a33cc3468a96e10ec6a196417f35abe0a3664e8f9ea2ffa16f1b1cf2a","timestamp":"2026-01-13T00:39:40Z","subdir":"sdk/azcore","vcs_ref":"refs/tags/sdk/azcore/v1.21.0"},\
{"module":"github.com/Azure/azure-sdk-for-go/sdk/azidentity","version":"v1.13.1","vcs_hash":"b80d29c1ad9369a1185c04ff6677176d1d56f8a746b65ef588727523e8cac4fa","timestamp":"2025-11-10T16:14:28Z","subdir":"sdk/azidentity","vcs_ref":"refs/tags/sdk/azidentity/v1.13.1"},\
{"module":"github.com/Azure/azure-sdk-for-go/sdk/azidentity/cache","version":"v0.3.2","vcs_hash":"59ceaeef9ecbd01e4764b39f8a24e81849fefab743b43df3e945eafc69e2493c","timestamp":"2025-01-15T20:46:27Z","subdir":"sdk/azidentity/cache","vcs_ref":"refs/tags/sdk/azidentity/cache/v0.3.2"},\
{"module":"github.com/Azure/azure-sdk-for-go/sdk/internal","version":"v1.11.2","vcs_hash":"29bb1f5f66b9ef2c0d8280dc2ef9de2d950d32bde6082c37129d36181e7f8ad0","timestamp":"2025-07-29T15:53:06Z","subdir":"sdk/internal","vcs_ref":"refs/tags/sdk/internal/v1.11.2"},\
{"module":"github.com/go-quicktest/qt","version":"v1.101.0","vcs_hash":"4b8a9919003a99b021851f8df3b43c27b288035acdffd206c627bff7e91717fe","timestamp":"2023-08-03T17:11:21Z","subdir":"","vcs_ref":"refs/tags/v1.101.0"},\
{"module":"github.com/NYTimes/gziphandler","version":"v1.1.1","vcs_hash":"4432cf17688d98dd536a5b6fffc152e59d0c129e894bd16e3de993748e44bed5","timestamp":"2019-02-21T23:16:47Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\
{"module":"github.com/digitorus/pkcs7","version":"v0.0.0-20230818184609-3a137a874352","vcs_hash":"fd2b6e349ca1abce350a94202038bc78abc083934bc68342108df0ef0a47c72c","timestamp":"2023-08-18T18:46:09Z","subdir":"","vcs_ref":""},\
{"module":"github.com/digitorus/pkcs7","version":"v0.0.0-20230713084857-e76b763bdc49","vcs_hash":"b01e6012f330ef4b4ab621c48b6e80a7beddde7e846c06e463baf722da14ad32","timestamp":"2023-07-13T08:48:57Z","subdir":"","vcs_ref":""},\
{"module":"github.com/digitorus/timestamp","version":"v0.0.0-20231217203849-220c5c2851b7","vcs_hash":"316e808b25b3a6563da681b8e93bb537209a2463c7239f367cc18628056cecf7","timestamp":"2023-12-17T20:38:49Z","subdir":"","vcs_ref":""},\
{"module":"github.com/magiconair/properties","version":"v1.8.10","vcs_hash":"c97479fb46a7e15abf895966e9b8e63015d259ca2a147e68571b64fc63c0d728","timestamp":"2025-04-09T19:30:57Z","subdir":"","vcs_ref":"refs/tags/v1.8.10"},\
{"module":"github.com/jonboulle/clockwork","version":"v0.5.0","vcs_hash":"8a9b3a40ae13b2679138bcbfbe409f1586f92c23e873f4e219066c6596debc26","timestamp":"2024-11-29T18:02:53Z","subdir":"","vcs_ref":"refs/tags/v0.5.0"},\
{"module":"github.com/cavaliergopher/cpio","version":"v1.0.1","vcs_hash":"0d970369bb570756812288d61aa56927228609fee6ce46cc2dbe56e9c5f6f4a8","timestamp":"2021-10-28T09:38:00Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\
{"module":"github.com/DATA-DOG/go-sqlmock","version":"v1.5.2","vcs_hash":"b58deb3344a056d5fcc11def75a7fdb0d39c95564a3d8af19363f6dce869a54d","timestamp":"2024-01-06T21:33:25Z","subdir":"","vcs_ref":"refs/tags/v1.5.2"},\
{"module":"github.com/chainguard-dev/clog","version":"v1.8.0","vcs_hash":"5e43652fa8f8a0347bc1ae6b61e701c63c194df6eea93c968ed690f9e0df059b","timestamp":"2025-12-10T19:58:12Z","subdir":"","vcs_ref":"refs/tags/v1.8.0"},\
{"module":"github.com/jellydator/ttlcache/v3","version":"v3.4.0","vcs_hash":"8d29deb4da2db314248507c697eb946396275f9e038fcdcc5cea9f817103bb82","timestamp":"2025-06-17T18:28:59Z","subdir":"","vcs_ref":"refs/tags/v3.4.0"},\
{"module":"github.com/chrismellard/docker-credential-acr-env","version":"v0.0.0-20230304212654-82a0ddb27589","vcs_hash":"4b8a47820e2cae71250071218d1d5c106e2d4de63432d4beadaa1123d52f9651","timestamp":"2023-03-04T21:26:54Z","subdir":"","vcs_ref":""},\
{"module":"github.com/imdario/mergo","version":"v0.3.16","vcs_hash":"290fb19f9a5f9073db90468b4dc0e8fe8311dc6cedba860d5135f4d0e7fd7ecc","timestamp":"2023-04-02T14:27:58Z","subdir":"","vcs_ref":"refs/tags/v0.3.16"},\
{"module":"github.com/gregjones/httpcache","version":"v0.0.0-20190611155906-901d90724c79","vcs_hash":"0af7be998159ab0dc0165b502262d5536011cd1634a80210d2c71cac89e1481e","timestamp":"2019-06-11T15:59:06Z","subdir":"","vcs_ref":""},\
{"module":"github.com/dustin/go-humanize","version":"v1.0.1","vcs_hash":"c6234fca390287f69b38a8f6d0ab98d492cb6f0df51d81ae32097b058cde1f72","timestamp":"2023-01-10T06:44:38Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\
{"module":"github.com/onsi/gomega","version":"v1.19.0","vcs_hash":"28dcd87c5118c456f54d669a43808a7357ca11e54faeb05c921b4d75a1a5f1b4","timestamp":"2022-03-25T19:12:09Z","subdir":"","vcs_ref":"refs/tags/v1.19.0"},\
{"module":"github.com/onsi/gomega","version":"v1.7.1","vcs_hash":"eca01df4f63425b54410888126f5e562e7f2c689d9483249110a2f793909648b","timestamp":"2019-10-30T17:12:58Z","subdir":"","vcs_ref":"refs/tags/v1.7.1"},\
{"module":"github.com/onsi/gomega","version":"v1.38.2","vcs_hash":"53f0d919d9d1c22f4a26303d53aef5e527ace7f31ab6a1b7c3080caf560c1e1e","timestamp":"2025-08-26T12:55:58Z","subdir":"","vcs_ref":"refs/tags/v1.38.2"},\
{"module":"github.com/onsi/gomega","version":"v1.10.1","vcs_hash":"e571b7221ee14ed8fea9c7f14ef8983f04ed4b66f345debbc02c82ad5c0a9bf0","timestamp":"2020-05-20T16:26:41Z","subdir":"","vcs_ref":"refs/tags/v1.10.1"},\
{"module":"github.com/onsi/gomega","version":"v1.17.0","vcs_hash":"75b4c7a1d2804fac807707499515613e72033966dbe4b0b39efcc9d717ad1b13","timestamp":"2021-11-07T19:22:36Z","subdir":"","vcs_ref":"refs/tags/v1.17.0"},\
{"module":"github.com/onsi/ginkgo","version":"v1.16.4","vcs_hash":"26c0895633c49fefdc8d45a3656a0c02b6e01a54bc0701f99b72ad6209a0e446","timestamp":"2021-06-02T18:20:44Z","subdir":"","vcs_ref":"refs/tags/v1.16.4"},\
{"module":"github.com/onsi/ginkgo","version":"v1.16.5","vcs_hash":"5d5337553584cfbd61a079f00c73fab896dfe1413aba0d8fc16c28a2fc5c2f3d","timestamp":"2021-10-11T17:27:58Z","subdir":"","vcs_ref":"refs/tags/v1.16.5"},\
{"module":"github.com/onsi/ginkgo","version":"v1.6.0","vcs_hash":"084961c940c1064ad8f72342797a7f84ceb5184e0f4f98076f0ac0a75a0a376f","timestamp":"2018-07-17T16:34:38Z","subdir":"","vcs_ref":"refs/tags/v1.6.0"},\
{"module":"github.com/onsi/ginkgo","version":"v1.12.1","vcs_hash":"6826b3ed1a90808dd6fb46f361b6d89b2fcb8e9f80cfc7e2a39971af1cfab3a7","timestamp":"2020-05-16T11:05:36Z","subdir":"","vcs_ref":"refs/tags/v1.12.1"},\
{"module":"github.com/onsi/ginkgo/v2","version":"v2.27.2","vcs_hash":"9566a60efd570b70d9723ab73006661df9edcbb6af07caabdc1a35d56c581255","timestamp":"2025-10-27T19:11:28Z","subdir":"","vcs_ref":"refs/tags/v2.27.2"},\
{"module":"github.com/onsi/ginkgo/v2","version":"v2.1.3","vcs_hash":"c39f9b15b8cfef33e2d8bd19f26cc415035e92447fed52b79e7bc704b0456244","timestamp":"2022-02-15T16:56:24Z","subdir":"v2","vcs_ref":"refs/tags/v2.1.3"},\
{"module":"github.com/cockroachdb/apd/v3","version":"v3.2.1","vcs_hash":"468ac27cc9eab6bc439a686df1d537073fe05444c0796606f48ea0b286f39528","timestamp":"2023-09-13T03:04:08Z","subdir":"","vcs_ref":"refs/tags/v3.2.1"},\
{"module":"github.com/cockroachdb/cockroach-go/v2","version":"v2.4.0","vcs_hash":"814981cb2765abc98d605c6f74830bd8650175cd9947e5a08df4f6ee916d0882","timestamp":"2025-02-05T22:02:46Z","subdir":"","vcs_ref":"refs/tags/v2.4.0"},\
{"module":"github.com/Microsoft/go-winio","version":"v0.6.2","vcs_hash":"963154633520174004b7a508de4bfa23c0374f9312f6db845c29aa3cb751d708","timestamp":"2024-04-09T20:07:04Z","subdir":"","vcs_ref":"refs/tags/v0.6.2"},\
{"module":"github.com/russross/blackfriday","version":"v1.6.0","vcs_hash":"45882c51d4da17f32775abbdabd353753e5115f6ec6282c3bf028fe3471fc743","timestamp":"2020-10-27T03:46:40Z","subdir":"","vcs_ref":"refs/tags/v1.6.0"},\
{"module":"github.com/russross/blackfriday/v2","version":"v2.1.0","vcs_hash":"6dd1604eceba1790dbf7f827f1e22a5866a5348a2ab616daed7363a6e16e081d","timestamp":"2020-10-27T03:47:54Z","subdir":"v2","vcs_ref":"refs/tags/v2.1.0"},\
{"module":"github.com/josharian/intern","version":"v1.0.0","vcs_hash":"273d42676826fc8f106c11c2800d01690a09463878fa115700b2e26df24a2440","timestamp":"2019-12-14T22:12:22Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/titanous/rocacheck","version":"v0.0.0-20171023193734-afe73141d399","vcs_hash":"333921fe7c4fb4be2fd4b694b9d4ec2e6000c6f84fe6e5a447504b83a30df193","timestamp":"2017-10-23T19:37:34Z","subdir":"","vcs_ref":""},\
{"module":"github.com/sassoftware/relic","version":"v7.2.1+incompatible","vcs_hash":"11b818fd7c4740f195b6669f17117f3e72c1b14cd4cca20dca3b88334a67edcf","timestamp":"2019-07-31T17:49:13Z","subdir":"","vcs_ref":"refs/tags/v7.2.1"},\
{"module":"github.com/sassoftware/relic/v7","version":"v7.6.2","vcs_hash":"47cd006d03c40be7da9c5a49989f6d69cb0efb2c67cbf07a3a3d180618ae605d","timestamp":"2024-02-05T21:45:32Z","subdir":"","vcs_ref":"refs/tags/v7.6.2"},\
{"module":"github.com/withfig/autocomplete-tools/integrations/cobra","version":"v1.2.1","vcs_hash":"33623bfa0b04b5f8eb90b2f2f2cb7cf4c2ef7e5fc99ee3e08b07439cb9d577ec","timestamp":"2022-08-18T08:45:12Z","subdir":"integrations/cobra","vcs_ref":"refs/tags/integrations/cobra/v1.2.1"},\
{"module":"github.com/kr/pretty","version":"v0.3.1","vcs_hash":"487dccea2d19da29e6f873ffd57f7f4d33720781a3f60bb9f852176acb476435","timestamp":"2022-08-29T23:03:05Z","subdir":"","vcs_ref":"refs/tags/v0.3.1"},\
{"module":"github.com/kr/text","version":"v0.1.0","vcs_hash":"d47a4a089998b1398264c79fffcb25588459baa28396ff9e275fff9f4995519a","timestamp":"2018-05-06T08:24:08Z","subdir":"","vcs_ref":"refs/tags/v0.1.0"},\
{"module":"github.com/kr/text","version":"v0.2.0","vcs_hash":"62674ecb33f72b9ab66dd856fe2e651dbf7344dea40ba5132203c7b4b32cfd61","timestamp":"2020-02-14T20:31:06Z","subdir":"","vcs_ref":"refs/tags/v0.2.0"},\
{"module":"github.com/kr/pty","version":"v1.1.1","vcs_hash":"1bac58bd1947d8ae4f18469faf2550b830a1ff3614f2644b00e44b1dc16e13ec","timestamp":"2018-01-13T18:08:13Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\
{"module":"github.com/xhit/go-str2duration/v2","version":"v2.1.0","vcs_hash":"395a3ddd7e351b7b882dc20af4936a00bd11a84147f83ac7a7c25f8093a51cb3","timestamp":"2022-12-07T00:32:32Z","subdir":"","vcs_ref":"refs/tags/v2.1.0"},\
{"module":"github.com/rcrowley/go-metrics","version":"v0.0.0-20250401214520-65e299d6c5c9","vcs_hash":"0cbaeb01627514ae95e6aae5f103c7c103c0c38175dca1ae96d51d0c083cb2ae","timestamp":"2025-04-01T21:45:20Z","subdir":"","vcs_ref":""},\
{"module":"github.com/PaesslerAG/jsonpath","version":"v0.1.1","vcs_hash":"ee939411ca99645f0b84f8a86386d493dfd58fa3d0ecfb96da71919c16a6fb1c","timestamp":"2019-05-16T14:20:47Z","subdir":"","vcs_ref":"refs/tags/v0.1.1"},\
{"module":"github.com/PaesslerAG/gval","version":"v1.0.0","vcs_hash":"30be8274297aac19a7c325dd144cde1c383944541db9da9eb888283a6f108ad3","timestamp":"2019-05-16T11:11:09Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/shopspring/decimal","version":"v1.4.0","vcs_hash":"81d14461a67982eaec5bffc77f8be489a3c6f734185bbe7b48d2143a04bcf53f","timestamp":"2024-04-12T14:15:38Z","subdir":"","vcs_ref":"refs/tags/v1.4.0"},\
{"module":"github.com/gopherjs/gopherjs","version":"v0.0.0-20200217142428-fce0ec30dd00","vcs_hash":"937c968b17b16dfbe9dcf02b93e01091b15e6380b65317d04eab2e6a50fe3fc2","timestamp":"2020-02-17T14:24:28Z","subdir":"","vcs_ref":""},\
{"module":"github.com/gopherjs/gopherjs","version":"v0.0.0-20181017120253-0766667cb4d1","vcs_hash":"01a1edbf006e84ee72823df53fd6bfec0668d43ccc43130966699159da6af4f1","timestamp":"2018-10-17T12:02:53Z","subdir":"","vcs_ref":""},\
{"module":"github.com/alibabacloud-go/alibabacloud-gateway-spi","version":"v0.0.2","vcs_hash":"7b141c57f4ddc48e3ec0519241f13e366db6b0b54aa5b000f81d6419efffa6c4","timestamp":"2021-12-03T07:49:19Z","subdir":"","vcs_ref":"refs/tags/v0.0.2"},\
{"module":"github.com/alibabacloud-go/alibabacloud-gateway-spi","version":"v0.0.4","vcs_hash":"d86de6e6f94efbeff8280524073110c2ea0847a6bcb4c5011e98a46a232ffe88","timestamp":"2022-03-19T18:10:00Z","subdir":"","vcs_ref":"refs/tags/v0.0.4"},\
{"module":"github.com/alibabacloud-go/darabonba-openapi","version":"v0.1.12","vcs_hash":"cb63a7c63520030c86a56657349c756dd016e6a771c0cb43ac8c320b2adea1ea","timestamp":"2021-12-03T07:51:02Z","subdir":"","vcs_ref":"refs/tags/v0.1.12"},\
{"module":"github.com/alibabacloud-go/darabonba-openapi","version":"v0.2.1","vcs_hash":"6cdb189279cf4f2a68e1e530df758c78191f5d7a134a7a3d6e7412e5ba701bff","timestamp":"2022-06-30T10:18:43Z","subdir":"","vcs_ref":"refs/tags/v0.2.1"},\
{"module":"github.com/alibabacloud-go/darabonba-openapi","version":"v0.1.14","vcs_hash":"72b377f76c39f2437111361b668d32d793746aaafe02cee8cea2159859663aa4","timestamp":"2021-12-22T07:45:24Z","subdir":"","vcs_ref":"refs/tags/v0.1.14"},\
{"module":"github.com/alibabacloud-go/debug","version":"v1.0.0","vcs_hash":"6c842b08328802d9f222c299210f64ad57422e6679e741800cc2d56eec79467c","timestamp":"2023-06-28T11:09:27Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/alibabacloud-go/debug","version":"v0.0.0-20190504072949-9472017b5c68","vcs_hash":"111f1cbaa926ba0628769510dc9ff031a3c558201ea23c87ef7e8867744778a2","timestamp":"2019-05-04T07:29:49Z","subdir":"","vcs_ref":""},\
{"module":"github.com/alibabacloud-go/openapi-util","version":"v0.1.0","vcs_hash":"ec19395565c997dc9c32bb5fe22f2eeb27bdfbf92a3c9addc8a4564cd920e778","timestamp":"2022-11-08T13:18:04Z","subdir":"","vcs_ref":"refs/tags/v0.1.0"},\
{"module":"github.com/alibabacloud-go/openapi-util","version":"v0.0.10","vcs_hash":"0082d015703fa0ba3bcc331541f71ebc05d53f5112dde5d3c8c0efb4e29d2859","timestamp":"2021-12-14T02:58:52Z","subdir":"","vcs_ref":"refs/tags/v0.0.10"},\
{"module":"github.com/alibabacloud-go/openapi-util","version":"v0.0.9","vcs_hash":"cefee74420c2d095203d46ea18db0ec97bd51e86d0c8fc29f8a9d14ac9c76954","timestamp":"2021-10-20T07:26:07Z","subdir":"","vcs_ref":"refs/tags/v0.0.9"},\
{"module":"github.com/alibabacloud-go/openapi-util","version":"v0.0.11","vcs_hash":"8f7704caaa5adeb8fbd0a0a828a8a24861e4b6d974ad0017a1741883df393955","timestamp":"2022-03-13T07:42:09Z","subdir":"","vcs_ref":"refs/tags/v0.0.11"},\
{"module":"github.com/alibabacloud-go/darabonba-string","version":"v1.0.0","vcs_hash":"826304ba51eb0928ffe7312f0a7afd5b04a460e1d9a22f635944eabb97d7cda5","timestamp":"2020-11-02T09:23:30Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/alibabacloud-go/cr-20160607","version":"v1.0.1","vcs_hash":"e8e9b665241cb01abb754420695ada4ba7d0948ad1d863e944c7a95bfecee778","timestamp":"2021-12-10T12:06:05Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\
{"module":"github.com/alibabacloud-go/tea-utils","version":"v1.3.9","vcs_hash":"6ea5b905fa0aba88e5d636a0b213216a97dfea27d65601df32bfd3fe897379a2","timestamp":"2021-02-07T14:54:23Z","subdir":"","vcs_ref":"refs/tags/v1.3.9"},\
{"module":"github.com/alibabacloud-go/tea-utils","version":"v1.3.1","vcs_hash":"214486e6c645e0eadf1814b9c1badd187e9a3b60abd0870752360347f05776a2","timestamp":"2020-07-29T04:50:50Z","subdir":"","vcs_ref":"refs/tags/v1.3.1"},\
{"module":"github.com/alibabacloud-go/tea-utils","version":"v1.4.5","vcs_hash":"6393ecda87c3d58436e3468d6d08237626a9d9aeb382d52daa6de505a1ddbd5f","timestamp":"2022-07-05T09:58:20Z","subdir":"","vcs_ref":"refs/tags/v1.4.5"},\
{"module":"github.com/alibabacloud-go/tea-utils","version":"v1.4.3","vcs_hash":"37a2ff4d61d521063f8099cd3d8dc7a607193903e8c0339272a82552424f9f6f","timestamp":"2021-12-20T09:26:13Z","subdir":"","vcs_ref":"refs/tags/v1.4.3"},\
{"module":"github.com/alibabacloud-go/tea-xml","version":"v1.1.3","vcs_hash":"ae5beed5e4518a3595e4e9c6edd4d78e51e1172fd1e1f3b7f32fdad9814fee64","timestamp":"2023-03-23T07:22:25Z","subdir":"","vcs_ref":"refs/tags/v1.1.3"},\
{"module":"github.com/alibabacloud-go/tea-xml","version":"v1.1.2","vcs_hash":"e33ed1cf5c0218927dd3ad3eac5dbdfd36259d1f062581124b4cb312144c2f1f","timestamp":"2021-11-24T02:12:57Z","subdir":"","vcs_ref":"refs/tags/v1.1.2"},\
{"module":"github.com/alibabacloud-go/endpoint-util","version":"v1.1.1","vcs_hash":"74f25b833e8910e2a720bebf1955e4b6f164e58e8d3197c3ff5bf1ecf5223670","timestamp":"2022-03-13T07:26:54Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\
{"module":"github.com/alibabacloud-go/endpoint-util","version":"v1.1.0","vcs_hash":"05beaadd1133d78de94547bbbda5ab2649a19779a5745c3591e781ea23a37e18","timestamp":"2020-05-11T06:07:36Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\
{"module":"github.com/alibabacloud-go/cr-20181201","version":"v1.0.10","vcs_hash":"45fe0468400a779fb3c97153f51e0b5140dd84711009013bb1f484b14445c137","timestamp":"2022-03-10T07:21:26Z","subdir":"","vcs_ref":"refs/tags/v1.0.10"},\
{"module":"github.com/alibabacloud-go/tea","version":"v1.2.1","vcs_hash":"d1b54bcd3b4370d9042c1fe930b993b9165dc1888dc28e9ffc54feee21f72748","timestamp":"2023-06-28T09:46:15Z","subdir":"","vcs_ref":"refs/tags/v1.2.1"},\
{"module":"github.com/alibabacloud-go/tea","version":"v1.1.8","vcs_hash":"ecb6fb21b0afaa988feff1833fe4cfe4529404a51444a40f317db005e7a63f17","timestamp":"2020-08-21T09:24:40Z","subdir":"","vcs_ref":"refs/tags/v1.1.8"},\
{"module":"github.com/alibabacloud-go/tea","version":"v1.1.11","vcs_hash":"d8838b9a86827981e73a7d1cac3f5b61542cf00c4918382db9168a8a5ca95ded","timestamp":"2020-10-19T05:36:46Z","subdir":"","vcs_ref":"refs/tags/v1.1.11"},\
{"module":"github.com/alibabacloud-go/tea","version":"v1.1.19","vcs_hash":"f72e8eb2931d26c80a13a66294c4de715f8535654fcdbcc1d7db93916cdf5fd4","timestamp":"2022-06-20T12:19:19Z","subdir":"","vcs_ref":"refs/tags/v1.1.19"},\
{"module":"github.com/alibabacloud-go/tea","version":"v1.1.7","vcs_hash":"2437499df7eb8ae12ff3cf434433b851d67e1356193e915b0e43fdcba5686489","timestamp":"2020-07-09T05:52:35Z","subdir":"","vcs_ref":"refs/tags/v1.1.7"},\
{"module":"github.com/alibabacloud-go/tea","version":"v1.1.0","vcs_hash":"1c680b210110e03ebbee1fd0d5ad6173186345b4d37f6835b4602cf3f19f3baf","timestamp":"2020-05-11T04:44:54Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\
{"module":"github.com/alibabacloud-go/tea","version":"v1.1.17","vcs_hash":"f489a0b231eb90e3c5194172456998e96fd41cbf274e25a9466f56ee1b7b4edc","timestamp":"2021-07-23T05:54:08Z","subdir":"","vcs_ref":"refs/tags/v1.1.17"},\
{"module":"github.com/mozillazg/docker-credential-acr-helper","version":"v0.4.0","vcs_hash":"c955d1a69758b102556e12f3a1a641e7355c0fa2d9c06595490c459900be1bc7","timestamp":"2024-09-01T06:21:35Z","subdir":"","vcs_ref":"refs/tags/v0.4.0"},\
{"module":"github.com/weppos/publicsuffix-go","version":"v0.50.2","vcs_hash":"72bc5ea96dd7ccf293cb550fe15fc6119fa984cfa401112e744f2ceaff02bea0","timestamp":"2026-01-03T13:47:36Z","subdir":"","vcs_ref":"refs/tags/v0.50.2"},\
{"module":"github.com/tink-crypto/tink-go-hcvault/v2","version":"v2.4.0","vcs_hash":"44c8e1ad479ea60ad41bba1af82609fd200196764f4b92dd9023b99c44f55030","timestamp":"2025-12-03T20:17:12Z","subdir":"","vcs_ref":"refs/tags/v2.4.0"},\
{"module":"github.com/tink-crypto/tink-go-awskms/v2","version":"v2.1.0","vcs_hash":"8ee531a1e4c3202eb8f09e5d5f7868fcddddbdd34a20918506df9ab20a33a6d1","timestamp":"2024-05-06T21:37:04Z","subdir":"","vcs_ref":"refs/tags/v2.1.0"},\
{"module":"github.com/tink-crypto/tink-go-gcpkms/v2","version":"v2.2.0","vcs_hash":"9e8a51f9964dedffcfc725a3311d223984a4ffd6fddceb8118e8cee1951e03ac","timestamp":"2024-05-10T15:17:17Z","subdir":"","vcs_ref":"refs/tags/v2.2.0"},\
{"module":"github.com/tink-crypto/tink-go/v2","version":"v2.6.0","vcs_hash":"75e6af0b326ba0b411a08b59371c1d306a54029409a51860c71245de4abea15b","timestamp":"2025-12-10T09:57:10Z","subdir":"","vcs_ref":"refs/tags/v2.6.0"},\
{"module":"github.com/aws/aws-sdk-go","version":"v1.55.8","vcs_hash":"0adefe254dca8102e233ab160a237fa0416def01f780c8513834e77e0b6f1bc4","timestamp":"2025-07-31T16:05:54Z","subdir":"","vcs_ref":"refs/tags/v1.55.8"},\
{"module":"github.com/aws/smithy-go","version":"v1.24.1","vcs_hash":"a5235947e83b623dd1fae680e6b6612921714bdcf22545d04afd0b1c56b8f20e","timestamp":"2026-02-20T21:07:26Z","subdir":"","vcs_ref":"refs/tags/v1.24.1"},\
{"module":"github.com/aws/aws-sdk-go-v2","version":"v1.41.2","vcs_hash":"16aeeaaa143df3b1145357dedc71c22eb6e12290fea52215ccf6f3370c2a0f95","timestamp":"2026-02-23T19:11:41Z","subdir":"","vcs_ref":"refs/tags/v1.41.2"},\
{"module":"github.com/aws/aws-sdk-go-v2/credentials","version":"v1.19.10","vcs_hash":"16aeeaaa143df3b1145357dedc71c22eb6e12290fea52215ccf6f3370c2a0f95","timestamp":"2026-02-23T19:11:41Z","subdir":"credentials","vcs_ref":"refs/tags/credentials/v1.19.10"},\
{"module":"github.com/aws/aws-sdk-go-v2/service/sts","version":"v1.41.7","vcs_hash":"16aeeaaa143df3b1145357dedc71c22eb6e12290fea52215ccf6f3370c2a0f95","timestamp":"2026-02-23T19:11:41Z","subdir":"service/sts","vcs_ref":"refs/tags/service/sts/v1.41.7"},\
{"module":"github.com/aws/aws-sdk-go-v2/service/ec2","version":"v1.279.2","vcs_hash":"5bdbc456fb063bed3d7104b22a9dd99dc8d12c54e12f839a87685c313a84c924","timestamp":"2026-01-15T19:17:29Z","subdir":"service/ec2","vcs_ref":"refs/tags/service/ec2/v1.279.2"},\
{"module":"github.com/aws/aws-sdk-go-v2/service/sso","version":"v1.30.11","vcs_hash":"16aeeaaa143df3b1145357dedc71c22eb6e12290fea52215ccf6f3370c2a0f95","timestamp":"2026-02-23T19:11:41Z","subdir":"service/sso","vcs_ref":"refs/tags/service/sso/v1.30.11"},\
{"module":"github.com/aws/aws-sdk-go-v2/service/signin","version":"v1.0.6","vcs_hash":"16aeeaaa143df3b1145357dedc71c22eb6e12290fea52215ccf6f3370c2a0f95","timestamp":"2026-02-23T19:11:41Z","subdir":"service/signin","vcs_ref":"refs/tags/service/signin/v1.0.6"},\
{"module":"github.com/aws/aws-sdk-go-v2/service/ecrpublic","version":"v1.38.10","vcs_hash":"16aeeaaa143df3b1145357dedc71c22eb6e12290fea52215ccf6f3370c2a0f95","timestamp":"2026-02-23T19:11:41Z","subdir":"service/ecrpublic","vcs_ref":"refs/tags/service/ecrpublic/v1.38.10"},\
{"module":"github.com/aws/aws-sdk-go-v2/service/kms","version":"v1.50.1","vcs_hash":"16aeeaaa143df3b1145357dedc71c22eb6e12290fea52215ccf6f3370c2a0f95","timestamp":"2026-02-23T19:11:41Z","subdir":"service/kms","vcs_ref":"refs/tags/service/kms/v1.50.1"},\
{"module":"github.com/aws/aws-sdk-go-v2/service/s3","version":"v1.96.0","vcs_hash":"5ed044d1d49e98a72205d17d40724500529e2b0639d37461196180717c5d8bb5","timestamp":"2026-01-28T19:24:43Z","subdir":"service/s3","vcs_ref":"refs/tags/service/s3/v1.96.0"},\
{"module":"github.com/aws/aws-sdk-go-v2/service/internal/s3shared","version":"v1.19.17","vcs_hash":"c4afe1adcb115986c2c2ed96ccc6e241595c09932af5115ebabef158c7970918","timestamp":"2026-01-09T19:14:10Z","subdir":"service/internal/s3shared","vcs_ref":"refs/tags/service/internal/s3shared/v1.19.17"},\
{"module":"github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding","version":"v1.13.5","vcs_hash":"16aeeaaa143df3b1145357dedc71c22eb6e12290fea52215ccf6f3370c2a0f95","timestamp":"2026-02-23T19:11:41Z","subdir":"service/internal/accept-encoding","vcs_ref":"refs/tags/service/internal/accept-encoding/v1.13.5"},\
{"module":"github.com/aws/aws-sdk-go-v2/service/internal/presigned-url","version":"v1.13.18","vcs_hash":"16aeeaaa143df3b1145357dedc71c22eb6e12290fea52215ccf6f3370c2a0f95","timestamp":"2026-02-23T19:11:41Z","subdir":"service/internal/presigned-url","vcs_ref":"refs/tags/service/internal/presigned-url/v1.13.18"},\
{"module":"github.com/aws/aws-sdk-go-v2/service/internal/checksum","version":"v1.9.8","vcs_hash":"c4afe1adcb115986c2c2ed96ccc6e241595c09932af5115ebabef158c7970918","timestamp":"2026-01-09T19:14:10Z","subdir":"service/internal/checksum","vcs_ref":"refs/tags/service/internal/checksum/v1.9.8"},\
{"module":"github.com/aws/aws-sdk-go-v2/service/ecr","version":"v1.55.3","vcs_hash":"16aeeaaa143df3b1145357dedc71c22eb6e12290fea52215ccf6f3370c2a0f95","timestamp":"2026-02-23T19:11:41Z","subdir":"service/ecr","vcs_ref":"refs/tags/service/ecr/v1.55.3"},\
{"module":"github.com/aws/aws-sdk-go-v2/service/ssooidc","version":"v1.35.15","vcs_hash":"16aeeaaa143df3b1145357dedc71c22eb6e12290fea52215ccf6f3370c2a0f95","timestamp":"2026-02-23T19:11:41Z","subdir":"service/ssooidc","vcs_ref":"refs/tags/service/ssooidc/v1.35.15"},\
{"module":"github.com/aws/aws-sdk-go-v2/internal/endpoints/v2","version":"v2.7.18","vcs_hash":"16aeeaaa143df3b1145357dedc71c22eb6e12290fea52215ccf6f3370c2a0f95","timestamp":"2026-02-23T19:11:41Z","subdir":"internal/endpoints","vcs_ref":"refs/tags/internal/endpoints/v2.7.18"},\
{"module":"github.com/aws/aws-sdk-go-v2/internal/v4a","version":"v1.4.17","vcs_hash":"c4afe1adcb115986c2c2ed96ccc6e241595c09932af5115ebabef158c7970918","timestamp":"2026-01-09T19:14:10Z","subdir":"internal/v4a","vcs_ref":"refs/tags/internal/v4a/v1.4.17"},\
{"module":"github.com/aws/aws-sdk-go-v2/internal/configsources","version":"v1.4.18","vcs_hash":"16aeeaaa143df3b1145357dedc71c22eb6e12290fea52215ccf6f3370c2a0f95","timestamp":"2026-02-23T19:11:41Z","subdir":"internal/configsources","vcs_ref":"refs/tags/internal/configsources/v1.4.18"},\
{"module":"github.com/aws/aws-sdk-go-v2/internal/ini","version":"v1.8.4","vcs_hash":"7beb4ea4ace2b86f2fd5d920e72a2086021f585de496c7f0a8183fc9d22665bd","timestamp":"2025-10-16T18:13:47Z","subdir":"internal/ini","vcs_ref":"refs/tags/internal/ini/v1.8.4"},\
{"module":"github.com/aws/aws-sdk-go-v2/config","version":"v1.32.10","vcs_hash":"16aeeaaa143df3b1145357dedc71c22eb6e12290fea52215ccf6f3370c2a0f95","timestamp":"2026-02-23T19:11:41Z","subdir":"config","vcs_ref":"refs/tags/config/v1.32.10"},\
{"module":"github.com/aws/aws-sdk-go-v2/feature/ec2/imds","version":"v1.18.18","vcs_hash":"16aeeaaa143df3b1145357dedc71c22eb6e12290fea52215ccf6f3370c2a0f95","timestamp":"2026-02-23T19:11:41Z","subdir":"feature/ec2/imds","vcs_ref":"refs/tags/feature/ec2/imds/v1.18.18"},\
{"module":"github.com/aws/aws-sdk-go-v2/feature/s3/manager","version":"v1.20.19","vcs_hash":"c4afe1adcb115986c2c2ed96ccc6e241595c09932af5115ebabef158c7970918","timestamp":"2026-01-09T19:14:10Z","subdir":"feature/s3/manager","vcs_ref":"refs/tags/feature/s3/manager/v1.20.19"},\
{"module":"github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream","version":"v1.7.4","vcs_hash":"ea190329ddb30f780d07fc81aea71235eb8159ed2b64ef64b5b217648d148d0d","timestamp":"2025-12-02T16:09:54Z","subdir":"aws/protocol/eventstream","vcs_ref":"refs/tags/aws/protocol/eventstream/v1.7.4"},\
{"module":"github.com/open-policy-agent/opa","version":"v1.14.1","vcs_hash":"f28e493068391b1299f22361437e5d1f7269e7a58587b24ecb78243729f9d470","timestamp":"2026-03-09T09:24:50Z","subdir":"","vcs_ref":"refs/tags/v1.14.1"},\
{"module":"github.com/rogpeppe/fastuuid","version":"v1.2.0","vcs_hash":"20ca2e2cf2990cc136cad7958992d06abd356dc16a58362afd2bd51be48ae0ac","timestamp":"2019-07-08T15:05:45Z","subdir":"","vcs_ref":"refs/tags/v1.2.0"},\
{"module":"github.com/rogpeppe/go-internal","version":"v1.14.1","vcs_hash":"84674da628e57d1722274a512e0879c23e8465ad7ef7e016c3bc39c8ea13175b","timestamp":"2025-02-25T12:37:03Z","subdir":"","vcs_ref":"refs/tags/v1.14.1"},\
{"module":"github.com/bytecodealliance/wasmtime-go/v39","version":"v39.0.1","vcs_hash":"29bd4967228cfeae6f6e378b91b3d489da8953e18b22573fbc341d1977bc971e","timestamp":"2025-11-22T19:28:27Z","subdir":"","vcs_ref":"refs/tags/v39.0.1"},\
{"module":"github.com/zeebo/errs","version":"v1.4.0","vcs_hash":"c48b3247a05cb20bf2a81d75ef369d317463f64a4267ed1c3e73da685dd8fa09","timestamp":"2023-05-08T22:56:17Z","subdir":"","vcs_ref":"refs/tags/v1.4.0"},\
{"module":"github.com/cncf/xds/go","version":"v0.0.0-20251210132809-ee656c7534f5","vcs_hash":"435954769a254a102c631bb1d8bcead9b217385136a42fc400889bf3c53118fc","timestamp":"2025-12-10T13:28:09Z","subdir":"go","vcs_ref":""},\
{"module":"github.com/cncf/udpa/go","version":"v0.0.0-20191209042840-269d4d468f6f","vcs_hash":"2d4bb3719cd74b7802454af2a99a01288222b8d83502e76ab100cd853a9f4b62","timestamp":"2019-12-09T04:28:40Z","subdir":"go","vcs_ref":""},\
{"module":"github.com/pseudomuto/protokit","version":"v0.2.0","vcs_hash":"cd9a5b01879c4526734bd42b5aa62f6c6f5aafb046996ddefa47d8ab4b1e304e","timestamp":"2019-04-15T15:43:08Z","subdir":"","vcs_ref":"refs/tags/v0.2.0"},\
{"module":"github.com/pseudomuto/protoc-gen-doc","version":"v1.5.1","vcs_hash":"26a781c1c7b961404ab78e933655b58bf5ea21d8c41c924b13e587032a18c68d","timestamp":"2022-02-18T17:47:37Z","subdir":"","vcs_ref":"refs/tags/v1.5.1"},\
{"module":"github.com/niemeyer/pretty","version":"v0.0.0-20200227124842-a10e7caefd8e","vcs_hash":"7b69594221f05faea56a0d177d0ca9efaac2b2e4ba4f7539c68b87cfe214c6ef","timestamp":"2020-02-27T12:48:42Z","subdir":"","vcs_ref":""},\
{"module":"github.com/puzpuzpuz/xsync/v3","version":"v3.5.1","vcs_hash":"e0ad38b71cf95c4b6214da9867c59c7ef5110d6fcee27239b1aa4851267ed402","timestamp":"2025-01-27T07:29:28Z","subdir":"","vcs_ref":"refs/tags/v3.5.1"},\
{"module":"github.com/puzpuzpuz/xsync/v2","version":"v2.5.1","vcs_hash":"ccec89d1caebecb07c79daed6c02935ff3464a6ba9c349fc86eba55125edaa58","timestamp":"2023-09-26T18:44:06Z","subdir":"","vcs_ref":"refs/tags/v2.5.1"},\
{"module":"github.com/AdamKorcz/go-fuzz-headers-1","version":"v0.0.0-20230919221257-8b5d3ce2d11d","vcs_hash":"35f7e61c7c2bd9148d054dac589ec9b9299c5b19dfcb1f364908d12c3c56da6b","timestamp":"2023-09-19T22:12:57Z","subdir":"","vcs_ref":""},\
{"module":"github.com/vbatts/tar-split","version":"v0.12.2","vcs_hash":"748e9d5ff174cd19acc98de6dc7f6c3d780e0ffcf645aea8c246a36eaa6cac37","timestamp":"2025-10-14T18:26:16Z","subdir":"","vcs_ref":"refs/tags/v0.12.2"},\
{"module":"github.com/MakeNowJust/heredoc/v2","version":"v2.0.1","vcs_hash":"8afa829f04064040c879c49eda82f6dd6ff68294f4208701005a6ac10050c80a","timestamp":"2019-08-26T12:03:31Z","subdir":"v2","vcs_ref":"refs/tags/v2.0.1"},\
{"module":"github.com/stretchr/testify","version":"v1.7.1","vcs_hash":"719be8c83742fcd5ea6c60cce03388f5367bceeb8522379d83d0110c884426a5","timestamp":"2022-03-15T21:08:43Z","subdir":"","vcs_ref":"refs/tags/v1.7.1"},\
{"module":"github.com/stretchr/testify","version":"v1.7.0","vcs_hash":"f87883f9ef1ad6bd6ecb844fe9108ae126c4dfab49080e5fb37bd27ca64417be","timestamp":"2021-01-13T09:54:11Z","subdir":"","vcs_ref":"refs/tags/v1.7.0"},\
{"module":"github.com/stretchr/testify","version":"v1.7.2","vcs_hash":"4805fd660d5ebf46efcecca310f821c693d07cae282d3900f04fc04a9dc59587","timestamp":"2022-06-06T09:52:45Z","subdir":"","vcs_ref":"refs/tags/v1.7.2"},\
{"module":"github.com/stretchr/testify","version":"v1.8.0","vcs_hash":"39798af0c50431f2d4ce305d1aea9c6d13ad19d1ab6af227d59ebb3580e7a7f0","timestamp":"2022-06-29T10:56:06Z","subdir":"","vcs_ref":"refs/tags/v1.8.0"},\
{"module":"github.com/stretchr/testify","version":"v1.5.1","vcs_hash":"725790d9265526f327bc846ba6025be038cd5cdf6367be0f622409ad58ac9aa0","timestamp":"2020-02-19T20:56:11Z","subdir":"","vcs_ref":"refs/tags/v1.5.1"},\
{"module":"github.com/stretchr/testify","version":"v1.11.1","vcs_hash":"ba91b84762300277627df761c9f004ffcc560434a1a1c2e613269b0c2e378278","timestamp":"2025-08-27T10:46:31Z","subdir":"","vcs_ref":"refs/tags/v1.11.1"},\
{"module":"github.com/stretchr/testify","version":"v1.3.0","vcs_hash":"15f4be955793ecb9ef81031cf64191211271265868a72e4bf25c409e978a8ce8","timestamp":"2019-01-03T19:31:39Z","subdir":"","vcs_ref":"refs/tags/v1.3.0"},\
{"module":"github.com/stretchr/testify","version":"v1.8.2","vcs_hash":"5eed4f7019d77fd1a97b264bb91f3668f2495d84acd03b9b60d32e894e4518a5","timestamp":"2023-02-25T12:46:30Z","subdir":"","vcs_ref":"refs/tags/v1.8.2"},\
{"module":"github.com/stretchr/testify","version":"v1.8.4","vcs_hash":"cec0eadb3ceb93408aae446eb0c115ea4a39cd4ba2048947ee55e1f8969c3872","timestamp":"2023-05-30T09:38:40Z","subdir":"","vcs_ref":"refs/tags/v1.8.4"},\
{"module":"github.com/stretchr/objx","version":"v0.1.0","vcs_hash":"39828321881a0709a36a2d1edde8fc9928ddd471ebd0bbdf7012076e7214bb02","timestamp":"2018-01-06T01:13:53Z","subdir":"","vcs_ref":"refs/tags/v0.1.0"},\
{"module":"github.com/stretchr/objx","version":"v0.4.0","vcs_hash":"4ca532f3c50e5c7c19e3dc9316d05026ba007fe253a359de8b2a8492d16f1faa","timestamp":"2022-04-12T09:17:15Z","subdir":"","vcs_ref":"refs/tags/v0.4.0"},\
{"module":"github.com/stretchr/objx","version":"v0.2.0","vcs_hash":"982a1df420b1f34eee71122e02865aa89e1ea251dc09362265917bd0e0ca3995","timestamp":"2019-04-09T12:31:02Z","subdir":"","vcs_ref":"refs/tags/v0.2.0"},\
{"module":"github.com/stretchr/objx","version":"v0.5.0","vcs_hash":"956998068f3cc530e52afae6bcb80d92158cdaee2b707bdfdaf132ff05de3b4f","timestamp":"2022-09-18T03:09:40Z","subdir":"","vcs_ref":"refs/tags/v0.5.0"},\
{"module":"github.com/stretchr/objx","version":"v0.5.2","vcs_hash":"fe4a57d26379977ebf461da8c71a20095b9f973a91d55076b67fa0de48206a1e","timestamp":"2024-02-29T09:57:51Z","subdir":"","vcs_ref":"refs/tags/v0.5.2"},\
{"module":"github.com/smartystreets/assertions","version":"v0.0.0-20180927180507-b2de0cb4f26d","vcs_hash":"310f2954c5f2a924abf876fdb6f582c35eb0e0522caa0f6d5922ebd1f4d98f70","timestamp":"2018-09-27T18:05:07Z","subdir":"","vcs_ref":""},\
{"module":"github.com/smartystreets/assertions","version":"v1.1.0","vcs_hash":"6f94044dd3f8c4d4a0c2d46b6b4a4032aabe760b1b7a5871f75e81282040e714","timestamp":"2020-04-25T22:40:22Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\
{"module":"github.com/smartystreets/goconvey","version":"v1.6.4","vcs_hash":"b127d43981f2610691c976c5bd9e08cf42a14d62b5938fc97bc7194327185236","timestamp":"2019-07-31T23:36:26Z","subdir":"","vcs_ref":"refs/tags/v1.6.4"},\
{"module":"github.com/jmoiron/sqlx","version":"v1.4.0","vcs_hash":"6f1b34d3dd34a2e424db7e43d9e1950c1573f990b2bdeb2f85dd035e3c2eb1bd","timestamp":"2024-04-15T12:21:02Z","subdir":"","vcs_ref":"refs/tags/v1.4.0"},\
{"module":"github.com/gliderlabs/ssh","version":"v0.3.8","vcs_hash":"29768f04f3e8c9319949f7cb8383e935d815e26fc8c83306857e281f8c2d2bd0","timestamp":"2024-12-12T05:00:05Z","subdir":"","vcs_ref":"refs/tags/v0.3.8"},\
{"module":"github.com/clipperhouse/uax29/v2","version":"v2.6.0","vcs_hash":"3eb09cba10899deec8f228f35a30fe2bd9c666215800fc40e9b33b7381e295d1","timestamp":"2026-02-08T15:02:09Z","subdir":"","vcs_ref":"refs/tags/v2.6.0"},\
{"module":"github.com/clipperhouse/displaywidth","version":"v0.10.0","vcs_hash":"c40d1f11fec7901d3446e1942bbe1d52f03b06b4129f6a95f9f8013620ecc048","timestamp":"2026-02-09T01:07:05Z","subdir":"","vcs_ref":"refs/tags/v0.10.0"},\
{"module":"github.com/peterh/liner","version":"v1.2.2","vcs_hash":"1f8f18a9b5f0eb2b3fb41eed21ef1d732ac4c585b926e04b2cb73f2551aace77","timestamp":"2022-01-14T22:30:32Z","subdir":"","vcs_ref":"refs/tags/v1.2.2"},\
{"module":"github.com/inconshreveable/mousetrap","version":"v1.1.0","vcs_hash":"a9f0ac4cf05240ceb9790811cbd8ab3cbdcd404501a9ca5a402a28033e7235d8","timestamp":"2022-11-27T22:01:53Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\
{"module":"github.com/cpuguy83/go-md2man/v2","version":"v2.0.6","vcs_hash":"0b9036af46cc50aa9433a461266e6ef3b3645807c3d1fa49cc53eb201e011781","timestamp":"2024-12-16T17:50:50Z","subdir":"","vcs_ref":"refs/tags/v2.0.6"},\
{"module":"github.com/cpuguy83/go-md2man/v2","version":"v2.0.7","vcs_hash":"44790142f31974c97a48f51298f4d80d17cdea0211947e7cbfe90054a7fe7774","timestamp":"2025-04-24T23:51:24Z","subdir":"","vcs_ref":"refs/tags/v2.0.7"},\
{"module":"github.com/secure-systems-lab/go-securesystemslib","version":"v0.10.0","vcs_hash":"994235dd15b0fe3f1f6929ffaad19803d748bf717abf3185bb700d75af65e53f","timestamp":"2026-01-06T15:36:12Z","subdir":"","vcs_ref":"refs/tags/v0.10.0"},\
{"module":"github.com/hpcloud/tail","version":"v1.0.0","vcs_hash":"9dfd08c5a4f07a465c8fe6fd4e5e96ac82ccaeba87143831c1a6290e944a3c84","timestamp":"2016-04-28T00:30:50Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"github.com/redis/go-redis/extra/rediscmd/v9","version":"v9.5.3","vcs_hash":"b57dac149c01ce6c7183ade505f86a67f490f6871026f050288146474568fa30","timestamp":"2024-06-07T14:04:08Z","subdir":"extra/rediscmd","vcs_ref":"refs/tags/extra/rediscmd/v9.5.3"},\
{"module":"github.com/redis/go-redis/extra/redisotel/v9","version":"v9.5.3","vcs_hash":"b57dac149c01ce6c7183ade505f86a67f490f6871026f050288146474568fa30","timestamp":"2024-06-07T14:04:08Z","subdir":"extra/redisotel","vcs_ref":"refs/tags/extra/redisotel/v9.5.3"},\
{"module":"github.com/redis/go-redis/v9","version":"v9.18.0","vcs_hash":"79c459d4fc5cc1799a9039004a96f117f273ffcfed4ca2843505600826e84d28","timestamp":"2026-02-16T14:41:48Z","subdir":"","vcs_ref":"refs/tags/v9.18.0"},\
{"module":"github.com/xiang90/probing","version":"v0.0.0-20221125231312-a49e3df8f510","vcs_hash":"d2061d68c832996bd0e67cf52556c9e8923750fb34190a39eba1a85e96d63c26","timestamp":"2022-11-25T23:13:12Z","subdir":"","vcs_ref":""},\
{"module":"github.com/peterbourgon/diskv","version":"v2.0.1+incompatible","vcs_hash":"8625edde317f1f22cc2818a98d9abcbe70bd7594027c378d1af3b3b0354ac6fe","timestamp":"2017-08-14T17:35:58Z","subdir":"","vcs_ref":"refs/tags/v2.0.1"},\
{"module":"github.com/peterbourgon/diskv/v3","version":"v3.0.1","vcs_hash":"7cb93d2e0b7662dc208e62e027863616321a00595f129a7459025c262d712268","timestamp":"2021-11-10T01:10:07Z","subdir":"v3","vcs_ref":"refs/tags/v3.0.1"},\
{"module":"github.com/cespare/xxhash/v2","version":"v2.3.0","vcs_hash":"4cf9134295bfe252b2146507759140e7050e00021c322cfd0d38a231ef3c0b20","timestamp":"2024-04-04T20:00:10Z","subdir":"","vcs_ref":"refs/tags/v2.3.0"},\
{"module":"github.com/go-chi/chi/v5","version":"v5.2.5","vcs_hash":"2db5f35f57b05f42889bb9a478902cad9dbdf344d6e97e04073eb7b4388549b4","timestamp":"2026-02-05T11:05:34Z","subdir":"","vcs_ref":"refs/tags/v5.2.5"},\
{"module":"github.com/santhosh-tekuri/jsonschema/v5","version":"v5.3.1","vcs_hash":"9964fa94eb99b405ebcfa3af19e0e16d07aef590c7af497cdfc6743aa4544776","timestamp":"2023-07-22T18:48:50Z","subdir":"","vcs_ref":"refs/tags/v5.3.1"},\
{"module":"go.uber.org/mock","version":"v0.6.0","vcs_hash":"03540ab2f6f54b62764f09a177ce039608b19eb6106bf7b67da770000fde2a48","timestamp":"2025-08-18T14:58:04Z","subdir":"","vcs_ref":"refs/tags/v0.6.0"},\
{"module":"go.uber.org/goleak","version":"v1.3.0","vcs_hash":"358840d6c8d4d8a268b95a505fd6f93da14af34041c0824fe51920b4cd523ae2","timestamp":"2023-10-24T16:28:03Z","subdir":"","vcs_ref":"refs/tags/v1.3.0"},\
{"module":"go.uber.org/multierr","version":"v1.11.0","vcs_hash":"9e9b72c633d0ee4d572aa2aef1a020bd0d0430b461457342ecf9ba78885e216c","timestamp":"2023-03-29T23:00:37Z","subdir":"","vcs_ref":"refs/tags/v1.11.0"},\
{"module":"go.uber.org/automaxprocs","version":"v1.6.0","vcs_hash":"8ab31d7b6c65257de48f8b07a1403dfaa497f722b374c5c6ddcb0804a3c02e9a","timestamp":"2024-09-23T17:47:22Z","subdir":"","vcs_ref":"refs/tags/v1.6.0"},\
{"module":"go.uber.org/atomic","version":"v1.11.0","vcs_hash":"d00c989f8bb8a9438dd86b0aa36df5fb6d45f6e7fc0c9a3e46fb1aa00c952c73","timestamp":"2023-05-03T17:25:03Z","subdir":"","vcs_ref":"refs/tags/v1.11.0"},\
{"module":"go.uber.org/zap","version":"v1.27.1","vcs_hash":"67e343786276ffdcabe10fced1cc35f12935c34465b4aa9b7a745028a33b44b5","timestamp":"2025-11-19T21:20:44Z","subdir":"","vcs_ref":"refs/tags/v1.27.1"},\
{"module":"filippo.io/edwards25519","version":"v1.1.1","vcs_hash":"2cae1fc2d308175e4aa6553fe690ddca793e894f25ee318895edb644a8e5093c","timestamp":"2026-02-17T16:50:01Z","subdir":"","vcs_ref":"refs/tags/v1.1.1"},\
{"module":"sigs.k8s.io/structured-merge-diff/v4","version":"v4.4.2","vcs_hash":"bd07b477e76c25bb800db70142fb1436fe8ef483195e7de25f8f31a1eda2c37d","timestamp":"2024-11-01T00:59:28Z","subdir":"","vcs_ref":"refs/tags/v4.4.2"},\
{"module":"sigs.k8s.io/structured-merge-diff/v6","version":"v6.3.0","vcs_hash":"d66ac94ec61bd2ff1830ecd910c5ba59307d9987a0b5e8bc4d43eed2a9670e03","timestamp":"2025-07-16T20:34:24Z","subdir":"","vcs_ref":"refs/tags/v6.3.0"},\
{"module":"sigs.k8s.io/json","version":"v0.0.0-20250730193827-2d320260d730","vcs_hash":"464b6144a42f16f67617e6ae70c780fa6b3663ca909d664a33af0b61e7456764","timestamp":"2025-07-30T19:38:27Z","subdir":"","vcs_ref":""},\
{"module":"sigs.k8s.io/release-utils","version":"v0.12.4","vcs_hash":"629defb1abd971fbda44482b5e65c18d8a58bf5c3286b98e3e7d92a6875c04d3","timestamp":"2026-03-31T08:40:15Z","subdir":"","vcs_ref":"refs/tags/v0.12.4"},\
{"module":"sigs.k8s.io/yaml","version":"v1.6.0","vcs_hash":"289ff1bc36e2275d8f58e8de4b1e27b0cabf0d8bfcb2058f040045490a48f9fc","timestamp":"2025-07-24T18:12:28Z","subdir":"","vcs_ref":"refs/tags/v1.6.0"},\
{"module":"sigs.k8s.io/randfill","version":"v1.0.0","vcs_hash":"64598686d0dc1d499a7860fd9d58ec01370c353b03b4e9377d668d615af13dc6","timestamp":"2025-03-04T18:23:53Z","subdir":"","vcs_ref":"refs/tags/v1.0.0"},\
{"module":"drjosh.dev/zzglob","version":"v0.4.2","vcs_hash":"ac9025b22c8566bb4c6f44e580f9918fdf2bd59c55de93296cef91b12f95655c","timestamp":"2025-10-19T23:27:15Z","subdir":"","vcs_ref":"refs/tags/v0.4.2"},\
{"module":"contrib.go.opencensus.io/exporter/stackdriver","version":"v0.13.14","vcs_hash":"33676bfb76aa7b607f54f7758c4caa957fb883597a88f4d903cfc1d0ba3bd1e2","timestamp":"2022-09-14T19:28:37Z","subdir":"","vcs_ref":"refs/tags/v0.13.14"},\
{"module":"cuelabs.dev/go/oci/ociregistry","version":"v0.0.0-20251212221603-3adeb8663819","vcs_hash":"f5ea1832e12267457017bd0240cd5e93e4116345dbf2f71141e58674ff1142a5","timestamp":"2025-12-12T22:16:03Z","subdir":"ociregistry","vcs_ref":""},\
{"module":"cel.dev/expr","version":"v0.25.1","vcs_hash":"aa7727faf6d3d07cc2dd703f32ef5e153071a4e80bc7a5f4ff31cf427863a8ce","timestamp":"2025-11-08T22:07:56Z","subdir":"","vcs_ref":"refs/tags/v0.25.1"},\
{"module":"al.essio.dev/pkg/shellescape","version":"v1.6.0","vcs_hash":"91bb4a89e05d12b1f8ae8317d21c6f8e294699d5acf55a09f9438dbcff7ceb46","timestamp":"2025-02-25T18:11:40Z","subdir":"","vcs_ref":"refs/tags/v1.6.0"},\
{"module":"gocloud.dev","version":"v0.45.0","vcs_hash":"34ee63157d31df5e2b20b20e0474c693a09263f77e10a1492a6f8ccf0514f3f9","timestamp":"2026-03-01T17:53:39Z","subdir":"","vcs_ref":"refs/tags/v0.45.0"},\
{"module":"go.opencensus.io","version":"v0.24.0","vcs_hash":"8607148e6fbec2ab3d0020ea3ffb8bdce7bc15dae97ebec60385afa6ddb97c29","timestamp":"2022-11-03T20:13:50Z","subdir":"","vcs_ref":"refs/tags/v0.24.0"},\
{"module":"gonum.org/v1/gonum","version":"v0.17.0","vcs_hash":"97e0ee36296f2cb2f3d1791623b4a81368a81b9887e637d57840b4152a64f400","timestamp":"2025-12-29T19:16:44Z","subdir":"","vcs_ref":"refs/tags/v0.17.0"},\
{"module":"chainguard.dev/sdk","version":"v0.1.45","vcs_hash":"1942a3670ce1ca9cae29605ced32c3ced4d1f67d72cecf4a29eb23d8792f296d","timestamp":"2025-12-08T22:14:20Z","subdir":"","vcs_ref":"refs/tags/v0.1.45"},\
{"module":"chainguard.dev/go-grpc-kit","version":"v0.17.15","vcs_hash":"9fc37384166e6c03fc03c066b492112afeb5ff606b8a0e4fe9430533fe7c5a91","timestamp":"2025-09-04T15:28:40Z","subdir":"","vcs_ref":"refs/tags/v0.17.15"},\
{"module":"go.yaml.in/yaml/v3","version":"v3.0.4","vcs_hash":"28af0e86ac86bfc3e00873c91eee3b58eb4f82e4f4c0f7963ccfc8872fd4a4a5","timestamp":"2025-06-29T14:09:51Z","subdir":"","vcs_ref":"refs/tags/v3.0.4"},\
{"module":"go.yaml.in/yaml/v2","version":"v2.4.3","vcs_hash":"2408eeac30b1574986dd0e17458ada4d251f9845f816637202936da13fcdab91","timestamp":"2025-09-11T04:10:14Z","subdir":"","vcs_ref":"refs/tags/v2.4.3"},\
{"module":"golang.org/x/sys","version":"v0.1.0","vcs_hash":"b1e9a27b98fa2dd77074f2947aa9586de17609eb0bdd77672fccab342a0f1a77","timestamp":"2022-10-13T17:17:32Z","subdir":"","vcs_ref":"refs/tags/v0.1.0"},\
{"module":"golang.org/x/sys","version":"v0.8.0","vcs_hash":"aedaafe73d2d04f8ec6f72bf045d67462baa8cb261dd5ba7cee843d028806a97","timestamp":"2023-05-03T21:21:24Z","subdir":"","vcs_ref":"refs/tags/v0.8.0"},\
{"module":"golang.org/x/sys","version":"v0.13.0","vcs_hash":"e6d69ebf27d5262733f08946c94bfe8e17eee9d04aa9a201bf1c5bfa3a2ca66f","timestamp":"2023-09-28T17:55:56Z","subdir":"","vcs_ref":"refs/tags/v0.13.0"},\
{"module":"golang.org/x/sys","version":"v0.5.0","vcs_hash":"b402dcf4abb8c639432471f2cec9e99460d32185589fe7bdc4e9cbaf4cbfbbef","timestamp":"2023-02-07T00:05:19Z","subdir":"","vcs_ref":"refs/tags/v0.5.0"},\
{"module":"golang.org/x/sys","version":"v0.42.0","vcs_hash":"8e0c29133c55549f2a5ccd9da93c1f00cb94b6e82a15ed2bf8a2406448f69c37","timestamp":"2026-03-03T01:51:03Z","subdir":"","vcs_ref":"refs/tags/v0.42.0"},\
{"module":"golang.org/x/sys","version":"v0.9.0","vcs_hash":"d903497f6dd22f0e8eea790109f0baad6d19f1470b3999c60c952bfa6e26f87d","timestamp":"2023-06-12T14:18:21Z","subdir":"","vcs_ref":"refs/tags/v0.9.0"},\
{"module":"golang.org/x/mod","version":"v0.8.0","vcs_hash":"7ef51338d8e623e736e20c1b31c1b901aaec9b92183668719ead1a38003fbd8c","timestamp":"2023-02-02T20:50:06Z","subdir":"","vcs_ref":"refs/tags/v0.8.0"},\
{"module":"golang.org/x/mod","version":"v0.34.0","vcs_hash":"1af1d21eb7fa2b5e8a9a6a7d5808842d0eea82c835de520cff0561f026a05912","timestamp":"2026-03-10T01:41:08Z","subdir":"","vcs_ref":"refs/tags/v0.34.0"},\
{"module":"golang.org/x/oauth2","version":"v0.36.0","vcs_hash":"864afddc69fad1ce0a681e3dd141ae639e4d432bb2054f4e23bade98cd28e520","timestamp":"2026-02-11T19:14:10Z","subdir":"","vcs_ref":"refs/tags/v0.36.0"},\
{"module":"golang.org/x/term","version":"v0.8.0","vcs_hash":"986b18b424003ddda556bb95340ddc7abb3f0f6bf5c651aa8cfd40f0ac99f6c3","timestamp":"2023-05-04T15:43:54Z","subdir":"","vcs_ref":"refs/tags/v0.8.0"},\
{"module":"golang.org/x/term","version":"v0.13.0","vcs_hash":"96b54224a1da567f23b6296b65688c0d3c0b5d52054167a077829f86815129c4","timestamp":"2023-10-05T14:06:51Z","subdir":"","vcs_ref":"refs/tags/v0.13.0"},\
{"module":"golang.org/x/term","version":"v0.5.0","vcs_hash":"8c925145fa5ca5db53f91e3399c9a423d5164629af4b7130510ea7c1f232da88","timestamp":"2023-02-07T17:11:03Z","subdir":"","vcs_ref":"refs/tags/v0.5.0"},\
{"module":"golang.org/x/term","version":"v0.41.0","vcs_hash":"7bae64b3057af373aecee34a2667fba2aff1e229ff6472c080e93e65458ffe5a","timestamp":"2026-03-10T01:43:14Z","subdir":"","vcs_ref":"refs/tags/v0.41.0"},\
{"module":"golang.org/x/term","version":"v0.9.0","vcs_hash":"cf3b7d49004279c34bcdada288c1eefe6f861733143f66f3e8fdae90d38f0c7c","timestamp":"2023-06-12T17:38:33Z","subdir":"","vcs_ref":"refs/tags/v0.9.0"},\
{"module":"golang.org/x/sync","version":"v0.20.0","vcs_hash":"7832f0aec63a5b5bc0fa1a349a5a6f0126ede331ea71a528ecb5f3968f2b000c","timestamp":"2026-02-23T18:54:42Z","subdir":"","vcs_ref":"refs/tags/v0.20.0"},\
{"module":"golang.org/x/sync","version":"v0.1.0","vcs_hash":"82c5f68308634d71f14642af33f7cae6ce2af441f244d3c2d379f3b81e8912f8","timestamp":"2022-09-29T20:41:14Z","subdir":"","vcs_ref":"refs/tags/v0.1.0"},\
{"module":"golang.org/x/sync","version":"v0.7.0","vcs_hash":"ee5f66a740cf90c02e7e970c3568863387f64bb7461b46cd2e1b321f0f2cedd5","timestamp":"2024-03-04T17:26:02Z","subdir":"","vcs_ref":"refs/tags/v0.7.0"},\
{"module":"golang.org/x/crypto","version":"v0.6.0","vcs_hash":"1f4de74df25d254a331f014913e7e4bff9ea9b9243245a41ab2cd542d2f6cab6","timestamp":"2023-02-08T21:57:58Z","subdir":"","vcs_ref":"refs/tags/v0.6.0"},\
{"module":"golang.org/x/crypto","version":"v0.14.0","vcs_hash":"94c550089cb8c110e388eea126345f7e5ce4dd0ad7cdd447489b3ecfd8d52b5d","timestamp":"2023-10-05T15:12:11Z","subdir":"","vcs_ref":"refs/tags/v0.14.0"},\
{"module":"golang.org/x/crypto","version":"v0.10.0","vcs_hash":"03604c90c615af0bf122fb98b697e974b0a35346cfeba4a2bf664a4c0c340d21","timestamp":"2023-06-12T19:51:08Z","subdir":"","vcs_ref":"refs/tags/v0.10.0"},\
{"module":"golang.org/x/crypto","version":"v0.49.0","vcs_hash":"23dac2d7085396c124998bcb52ef3e320806e49ca8538858dc73b51f3a6b50c9","timestamp":"2026-03-11T14:17:49Z","subdir":"","vcs_ref":"refs/tags/v0.49.0"},\
{"module":"golang.org/x/net","version":"v0.6.0","vcs_hash":"b7ae66e3510d0f80f4750c2913d64e3dfa0ebbeb04ef2448d5d9f7485751d7a6","timestamp":"2023-02-08T18:40:08Z","subdir":"","vcs_ref":"refs/tags/v0.6.0"},\
{"module":"golang.org/x/net","version":"v0.52.0","vcs_hash":"8d3e280d3345387bdd35c143197391bbd4383d486ebe6282af075a83bafb973d","timestamp":"2026-03-12T00:35:42Z","subdir":"","vcs_ref":"refs/tags/v0.52.0"},\
{"module":"golang.org/x/net","version":"v0.11.0","vcs_hash":"e6ad3bc40ade98fbe7f7ba618b072fa651059f2adf1cdda1e36b356c977aa688","timestamp":"2023-06-13T13:43:36Z","subdir":"","vcs_ref":"refs/tags/v0.11.0"},\
{"module":"golang.org/x/net","version":"v0.10.0","vcs_hash":"ef893f7ed2797af547df6a271db0743593abf4c5e07ef52033e9b3e5a585dff9","timestamp":"2023-05-04T16:26:08Z","subdir":"","vcs_ref":"refs/tags/v0.10.0"},\
{"module":"golang.org/x/net","version":"v0.17.0","vcs_hash":"60398892b1fdf7a88cddd97b207408ff1232fd3bc87e65ef87223bd426f22305","timestamp":"2023-10-10T15:45:19Z","subdir":"","vcs_ref":"refs/tags/v0.17.0"},\
{"module":"golang.org/x/exp","version":"v0.0.0-20251023183803-a4bb9ffd2546","vcs_hash":"e45227fc1231b7be1608b94a9286f61be5a4516ceb381a9208ec9e99c0010667","timestamp":"2025-10-23T18:38:03Z","subdir":"","vcs_ref":""},\
{"module":"golang.org/x/text","version":"v0.35.0","vcs_hash":"ebd21b780d473b9c6279389bf7828889387f448497e2613cddf2feabfcde4ea8","timestamp":"2026-03-10T01:41:36Z","subdir":"","vcs_ref":"refs/tags/v0.35.0"},\
{"module":"golang.org/x/text","version":"v0.7.0","vcs_hash":"96612e2431a1761ab2f4e3efdfda115a56ed517010d61db70a8407c43037c89f","timestamp":"2023-01-31T16:01:06Z","subdir":"","vcs_ref":"refs/tags/v0.7.0"},\
{"module":"golang.org/x/text","version":"v0.13.0","vcs_hash":"ed54a0e184a3b90d3ba2af01ba5f552a6df0a6e921276bc3891efe8bd8c3d81e","timestamp":"2023-08-28T17:26:32Z","subdir":"","vcs_ref":"refs/tags/v0.13.0"},\
{"module":"golang.org/x/text","version":"v0.10.0","vcs_hash":"1cc9e0f1ff2b837234418566a8f6c2d5269620b493d44c7ac004e13c143075ed","timestamp":"2023-06-12T16:55:37Z","subdir":"","vcs_ref":"refs/tags/v0.10.0"},\
{"module":"golang.org/x/text","version":"v0.9.0","vcs_hash":"3967a908774b78ac4accafb04231e416ce132dfa549184a51d5d00981ace0f45","timestamp":"2023-04-04T14:19:46Z","subdir":"","vcs_ref":"refs/tags/v0.9.0"},\
{"module":"golang.org/x/time","version":"v0.15.0","vcs_hash":"4f7b813c442e7a003dce36760b55a7302a49070bef2e7a1fb30ccb0f444eee98","timestamp":"2026-02-11T19:14:29Z","subdir":"","vcs_ref":"refs/tags/v0.15.0"},\
{"module":"golang.org/x/xerrors","version":"v0.0.0-20240903120638-7835f813f4da","vcs_hash":"85f1ddb5366a63575b400fe71b8e71e61442686574ec1bd9cbe86a4d29b14eaa","timestamp":"2024-09-03T12:06:38Z","subdir":"","vcs_ref":""},\
{"module":"golang.org/x/telemetry","version":"v0.0.0-20260311193753-579e4da9a98c","vcs_hash":"7ed0b7495d855a1adca18eebc24961ad0903de6c26a5eecb97e329d8584443cd","timestamp":"2026-03-11T19:37:53Z","subdir":"","vcs_ref":""},\
{"module":"golang.org/x/tools","version":"v0.6.0","vcs_hash":"9cceea9495e6089f0c928f6375a5a449bcc62a88cb95dab0e1f31915000449d9","timestamp":"2023-02-08T22:43:44Z","subdir":"","vcs_ref":"refs/tags/v0.6.0"},\
{"module":"golang.org/x/tools","version":"v0.43.0","vcs_hash":"b4e15c2bd2ae70b346d536f2c90da575e37fb9ee7f4a4623803ae6c7cab66d75","timestamp":"2026-03-12T03:16:51Z","subdir":"","vcs_ref":"refs/tags/v0.43.0"},\
{"module":"golang.org/x/tools/go/expect","version":"v0.1.0-deprecated","vcs_hash":"2eb3287db940156bd2959401e8d48cb2fb49c63aa67526d9ceb95c021e217faa","timestamp":"2025-06-12T15:17:39Z","subdir":"go/expect","vcs_ref":"refs/tags/go/expect/v0.1.0-deprecated"},\
{"module":"golang.org/x/tools/go/packages/packagestest","version":"v0.1.1-deprecated","vcs_hash":"8e3caf6560e23534404ba0ab07b0c731a8ce6b61a9e6f462e08b6981ef496441","timestamp":"2025-06-13T18:44:18Z","subdir":"go/packages/packagestest","vcs_ref":"refs/tags/go/packages/packagestest/v0.1.1-deprecated"},\
{"module":"k8s.io/apimachinery","version":"v0.35.3","vcs_hash":"3607284db090a16c797d866e0afc2f5981016fa804bf28b6ae61b062c6e6c8c3","timestamp":"2025-12-04T22:24:03Z","subdir":"","vcs_ref":"refs/tags/v0.35.3"},\
{"module":"k8s.io/api","version":"v0.35.3","vcs_hash":"4c866a946bb10a93a8bae39b56bf25058d2c96270c3d1178d4e983bc3486de8d","timestamp":"2026-03-19T04:20:27Z","subdir":"","vcs_ref":"refs/tags/v0.35.3"},\
{"module":"k8s.io/klog/v2","version":"v2.130.1","vcs_hash":"eaab5e8e1958570d9bced9a912298fdaa9472cecec794161f58aebf8c4d1e963","timestamp":"2024-06-20T00:51:19Z","subdir":"","vcs_ref":"refs/tags/v2.130.1"},\
{"module":"k8s.io/kube-openapi","version":"v0.0.0-20250910181357-589584f1c912","vcs_hash":"d52ae18a0311c6102c8f6db1458120357ba6824e0af66b6ec92f343cd130aab6","timestamp":"2025-09-10T18:13:57Z","subdir":"","vcs_ref":""},\
{"module":"k8s.io/gengo/v2","version":"v2.0.0-20250604051438-85fd79dbfd9f","vcs_hash":"fecf0b6497c8938df1af06bac17e71f9443e9b53c193ded4d9ff97fae707fc02","timestamp":"2025-06-04T05:14:38Z","subdir":"","vcs_ref":""},\
{"module":"k8s.io/utils","version":"v0.0.0-20251002143259-bc988d571ff4","vcs_hash":"fb4c92184a0c1cd25830e66a6860cd9ba95d39bd4c7299f50c01f78da028780a","timestamp":"2025-10-02T14:32:59Z","subdir":"","vcs_ref":""},\
{"module":"k8s.io/client-go","version":"v0.35.3","vcs_hash":"8b529e801b17536e65f6c58983c445925f7a0e10978ed051ee16bf15e3820efa","timestamp":"2026-03-19T04:54:07Z","subdir":"","vcs_ref":"refs/tags/v0.35.3"},\
{"module":"cuelang.org/go","version":"v0.16.0","vcs_hash":"a4ef1a252d7128ec04733d4143795d91569a88b65d1b47de67c8b8ccfb3844ac","timestamp":"2026-03-03T13:21:57Z","subdir":"","vcs_ref":"refs/tags/v0.16.0"},\
{"module":"go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp","version":"v0.65.0","vcs_hash":"46a62e6140fa598420e0a297538ad174673a7a4fa4a227316738de156f481d75","timestamp":"2026-02-02T19:10:47Z","subdir":"instrumentation/net/http/otelhttp","vcs_ref":"refs/tags/instrumentation/net/http/otelhttp/v0.65.0"},\
{"module":"go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc","version":"v0.63.0","vcs_hash":"a35299710fa18a3df076b2389758f98c816c8d03e316516b36a9d5299420a7f7","timestamp":"2025-08-29T20:56:25Z","subdir":"instrumentation/google.golang.org/grpc/otelgrpc","vcs_ref":"refs/tags/instrumentation/google.golang.org/grpc/otelgrpc/v0.63.0"},\
{"module":"go.opentelemetry.io/contrib/propagators/ot","version":"v1.40.0","vcs_hash":"46a62e6140fa598420e0a297538ad174673a7a4fa4a227316738de156f481d75","timestamp":"2026-02-02T19:10:47Z","subdir":"propagators/ot","vcs_ref":"refs/tags/propagators/ot/v1.40.0"},\
{"module":"go.opentelemetry.io/contrib/propagators/jaeger","version":"v1.40.0","vcs_hash":"46a62e6140fa598420e0a297538ad174673a7a4fa4a227316738de156f481d75","timestamp":"2026-02-02T19:10:47Z","subdir":"propagators/jaeger","vcs_ref":"refs/tags/propagators/jaeger/v1.40.0"},\
{"module":"go.opentelemetry.io/contrib/propagators/aws","version":"v1.40.0","vcs_hash":"46a62e6140fa598420e0a297538ad174673a7a4fa4a227316738de156f481d75","timestamp":"2026-02-02T19:10:47Z","subdir":"propagators/aws","vcs_ref":"refs/tags/propagators/aws/v1.40.0"},\
{"module":"go.opentelemetry.io/contrib/propagators/b3","version":"v1.40.0","vcs_hash":"46a62e6140fa598420e0a297538ad174673a7a4fa4a227316738de156f481d75","timestamp":"2026-02-02T19:10:47Z","subdir":"propagators/b3","vcs_ref":"refs/tags/propagators/b3/v1.40.0"},\
{"module":"go.opentelemetry.io/contrib/detectors/gcp","version":"v1.40.0","vcs_hash":"46a62e6140fa598420e0a297538ad174673a7a4fa4a227316738de156f481d75","timestamp":"2026-02-02T19:10:47Z","subdir":"detectors/gcp","vcs_ref":"refs/tags/detectors/gcp/v1.40.0"},\
{"module":"go.opentelemetry.io/contrib/bridges/otelzap","version":"v0.10.0","vcs_hash":"e68cfa240102a0ba411506ff8b1aa264dbdc8d1fde95e16ea08f3695aad05b0b","timestamp":"2025-03-06T01:43:27Z","subdir":"bridges/otelzap","vcs_ref":"refs/tags/bridges/otelzap/v0.10.0"},\
{"module":"go.opentelemetry.io/collector/pdata","version":"v1.31.0","vcs_hash":"26861e0711d29ae45824510dad0ba06a5a1b36bb0500efb005cd76ac362089f3","timestamp":"2025-04-28T19:04:17Z","subdir":"pdata","vcs_ref":"refs/tags/pdata/v1.31.0"},\
{"module":"go.opentelemetry.io/collector/featuregate","version":"v1.31.0","vcs_hash":"26861e0711d29ae45824510dad0ba06a5a1b36bb0500efb005cd76ac362089f3","timestamp":"2025-04-28T19:04:17Z","subdir":"featuregate","vcs_ref":"refs/tags/featuregate/v1.31.0"},\
{"module":"go.opentelemetry.io/collector/semconv","version":"v0.125.0","vcs_hash":"26861e0711d29ae45824510dad0ba06a5a1b36bb0500efb005cd76ac362089f3","timestamp":"2025-04-28T19:04:17Z","subdir":"semconv","vcs_ref":"refs/tags/semconv/v0.125.0"},\
{"module":"go.opentelemetry.io/collector/internal/telemetry","version":"v0.125.0","vcs_hash":"26861e0711d29ae45824510dad0ba06a5a1b36bb0500efb005cd76ac362089f3","timestamp":"2025-04-28T19:04:17Z","subdir":"internal/telemetry","vcs_ref":"refs/tags/internal/telemetry/v0.125.0"},\
{"module":"go.opentelemetry.io/collector/component","version":"v1.31.0","vcs_hash":"26861e0711d29ae45824510dad0ba06a5a1b36bb0500efb005cd76ac362089f3","timestamp":"2025-04-28T19:04:17Z","subdir":"component","vcs_ref":"refs/tags/component/v1.31.0"},\
{"module":"go.opentelemetry.io/auto/sdk","version":"v1.2.1","vcs_hash":"1fd877c6ad92470308433b00b2458aacc47c259fb28a0596272d30410c77f412","timestamp":"2025-09-15T16:53:44Z","subdir":"sdk","vcs_ref":"refs/tags/sdk/v1.2.1"},\
{"module":"go.opentelemetry.io/proto/otlp","version":"v1.9.0","vcs_hash":"48dd3b051b2ade937fb3ae600f1d49e4d17f78f386f08b2de9f4df57cbb13d0b","timestamp":"2025-11-03T15:38:58Z","subdir":"otlp","vcs_ref":"refs/tags/otlp/v1.9.0"},\
{"module":"go.opentelemetry.io/otel","version":"v1.41.0","vcs_hash":"65f39d9f974075161c61a33f1161ce41c95fe7119a6d6994fd694d98d647e286","timestamp":"2026-03-02T18:39:57Z","subdir":"","vcs_ref":"refs/tags/v1.41.0"},\
{"module":"go.opentelemetry.io/otel/sdk","version":"v1.41.0","vcs_hash":"65f39d9f974075161c61a33f1161ce41c95fe7119a6d6994fd694d98d647e286","timestamp":"2026-03-02T18:39:57Z","subdir":"sdk","vcs_ref":"refs/tags/sdk/v1.41.0"},\
{"module":"go.opentelemetry.io/otel/sdk/metric","version":"v1.41.0","vcs_hash":"65f39d9f974075161c61a33f1161ce41c95fe7119a6d6994fd694d98d647e286","timestamp":"2026-03-02T18:39:57Z","subdir":"sdk/metric","vcs_ref":"refs/tags/sdk/metric/v1.41.0"},\
{"module":"go.opentelemetry.io/otel/metric","version":"v1.41.0","vcs_hash":"65f39d9f974075161c61a33f1161ce41c95fe7119a6d6994fd694d98d647e286","timestamp":"2026-03-02T18:39:57Z","subdir":"metric","vcs_ref":"refs/tags/metric/v1.41.0"},\
{"module":"go.opentelemetry.io/otel/trace","version":"v1.41.0","vcs_hash":"65f39d9f974075161c61a33f1161ce41c95fe7119a6d6994fd694d98d647e286","timestamp":"2026-03-02T18:39:57Z","subdir":"trace","vcs_ref":"refs/tags/trace/v1.41.0"},\
{"module":"go.opentelemetry.io/otel/log","version":"v0.11.0","vcs_hash":"b9cfff93834a1198be78227766ecca2711856b6b1b0c7afbad371f153e4a7552","timestamp":"2025-03-05T18:33:59Z","subdir":"log","vcs_ref":"refs/tags/log/v0.11.0"},\
{"module":"go.opentelemetry.io/otel/exporters/prometheus","version":"v0.62.0","vcs_hash":"2c9ea599ff73e5f744f217415379b3ace9e1fc6da96e40b4e9f8b4b0dde1d494","timestamp":"2026-02-02T17:46:33Z","subdir":"exporters/prometheus","vcs_ref":"refs/tags/exporters/prometheus/v0.62.0"},\
{"module":"go.opentelemetry.io/otel/exporters/otlp/otlptrace","version":"v1.40.0","vcs_hash":"2c9ea599ff73e5f744f217415379b3ace9e1fc6da96e40b4e9f8b4b0dde1d494","timestamp":"2026-02-02T17:46:33Z","subdir":"exporters/otlp/otlptrace","vcs_ref":"refs/tags/exporters/otlp/otlptrace/v1.40.0"},\
{"module":"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracehttp","version":"v1.40.0","vcs_hash":"2c9ea599ff73e5f744f217415379b3ace9e1fc6da96e40b4e9f8b4b0dde1d494","timestamp":"2026-02-02T17:46:33Z","subdir":"exporters/otlp/otlptrace/otlptracehttp","vcs_ref":"refs/tags/exporters/otlp/otlptrace/otlptracehttp/v1.40.0"},\
{"module":"go.opentelemetry.io/otel/exporters/otlp/otlptrace/otlptracegrpc","version":"v1.40.0","vcs_hash":"2c9ea599ff73e5f744f217415379b3ace9e1fc6da96e40b4e9f8b4b0dde1d494","timestamp":"2026-02-02T17:46:33Z","subdir":"exporters/otlp/otlptrace/otlptracegrpc","vcs_ref":"refs/tags/exporters/otlp/otlptrace/otlptracegrpc/v1.40.0"},\
{"module":"modernc.org/sqlite","version":"v1.44.3","vcs_hash":"3ba95426e5b11c92894a628a1ce667ac8811711e8c832c87c14692301c893392","timestamp":"2026-01-20T20:13:46Z","subdir":"","vcs_ref":"refs/tags/v1.44.3"},\
{"module":"modernc.org/mathutil","version":"v1.7.1","vcs_hash":"d9fcb4a707a5528902c43a333ebcd4a79ad8983a639c0e7d1b83b7844659041f","timestamp":"2024-12-26T12:13:25Z","subdir":"","vcs_ref":"refs/tags/v1.7.1"},\
{"module":"modernc.org/memory","version":"v1.11.0","vcs_hash":"2caa87ea35c8a729d5b00b040a7f8ad66258dd180945be426f986dc7d295f65b","timestamp":"2025-05-17T20:55:10Z","subdir":"","vcs_ref":"refs/tags/v1.11.0"},\
{"module":"modernc.org/libc","version":"v1.67.6","vcs_hash":"1defb59588828d7a735ee8508d9f384969ff4cdf661c5fbf02228cf24eb1aa4b","timestamp":"2026-01-15T14:30:41Z","subdir":"","vcs_ref":"refs/tags/v1.67.6"},\
{"module":"go.etcd.io/bbolt","version":"v1.4.3","vcs_hash":"5983ea71bb9e5e22aede686f4e2d57552e937bd9f2a5a3ca5e595c01b957c33a","timestamp":"2025-08-19T17:17:23Z","subdir":"","vcs_ref":"refs/tags/v1.4.3"},\
{"module":"go.etcd.io/gofail","version":"v0.2.0","vcs_hash":"94af41cb3791d3446ad2efcce59de525d2df0ae4cf689775b2914bcf4100d3a8","timestamp":"2024-06-19T04:45:01Z","subdir":"","vcs_ref":"refs/tags/v0.2.0"},\
{"module":"go.etcd.io/etcd/client/pkg/v3","version":"v3.6.8","vcs_hash":"1bdac8be56518513f69c74fe2b8e1ae1be48990f4715e000b654cb74c518ff5d","timestamp":"2026-02-13T18:39:11Z","subdir":"client/pkg","vcs_ref":"refs/tags/client/pkg/v3.6.8"},\
{"module":"go.etcd.io/etcd/client/v3","version":"v3.6.8","vcs_hash":"1bdac8be56518513f69c74fe2b8e1ae1be48990f4715e000b654cb74c518ff5d","timestamp":"2026-02-13T18:39:11Z","subdir":"client","vcs_ref":"refs/tags/client/v3.6.8"},\
{"module":"go.etcd.io/etcd/client/v2","version":"v2.305.19","vcs_hash":"e7eee5b3b41d8bd477ae42e2d3c4a4a9c00e7b2431af9a84ee3f8525a8644509","timestamp":"2025-03-05T19:33:28Z","subdir":"client","vcs_ref":"refs/tags/client/v2.305.19"},\
{"module":"go.etcd.io/etcd/pkg/v3","version":"v3.6.8","vcs_hash":"1bdac8be56518513f69c74fe2b8e1ae1be48990f4715e000b654cb74c518ff5d","timestamp":"2026-02-13T18:39:11Z","subdir":"pkg","vcs_ref":"refs/tags/pkg/v3.6.8"},\
{"module":"go.etcd.io/etcd/api/v3","version":"v3.6.8","vcs_hash":"1bdac8be56518513f69c74fe2b8e1ae1be48990f4715e000b654cb74c518ff5d","timestamp":"2026-02-13T18:39:11Z","subdir":"api","vcs_ref":"refs/tags/api/v3.6.8"},\
{"module":"go.etcd.io/etcd/v3","version":"v3.6.8","vcs_hash":"1bdac8be56518513f69c74fe2b8e1ae1be48990f4715e000b654cb74c518ff5d","timestamp":"2026-02-13T18:39:11Z","subdir":"","vcs_ref":"refs/tags/v3.6.8"},\
{"module":"go.etcd.io/etcd/server/v3","version":"v3.6.8","vcs_hash":"1bdac8be56518513f69c74fe2b8e1ae1be48990f4715e000b654cb74c518ff5d","timestamp":"2026-02-13T18:39:11Z","subdir":"server","vcs_ref":"refs/tags/server/v3.6.8"},\
{"module":"go.etcd.io/etcd/etcdutl/v3","version":"v3.6.8","vcs_hash":"1bdac8be56518513f69c74fe2b8e1ae1be48990f4715e000b654cb74c518ff5d","timestamp":"2026-02-13T18:39:11Z","subdir":"etcdutl","vcs_ref":"refs/tags/etcdutl/v3.6.8"},\
{"module":"go.etcd.io/etcd/tests/v3","version":"v3.6.8","vcs_hash":"1bdac8be56518513f69c74fe2b8e1ae1be48990f4715e000b654cb74c518ff5d","timestamp":"2026-02-13T18:39:11Z","subdir":"tests","vcs_ref":"refs/tags/tests/v3.6.8"},\
{"module":"go.etcd.io/etcd/etcdctl/v3","version":"v3.6.8","vcs_hash":"1bdac8be56518513f69c74fe2b8e1ae1be48990f4715e000b654cb74c518ff5d","timestamp":"2026-02-13T18:39:11Z","subdir":"etcdctl","vcs_ref":"refs/tags/etcdctl/v3.6.8"},\
{"module":"go.etcd.io/etcd/raft/v3","version":"v3.5.19","vcs_hash":"e7eee5b3b41d8bd477ae42e2d3c4a4a9c00e7b2431af9a84ee3f8525a8644509","timestamp":"2025-03-05T19:33:28Z","subdir":"raft","vcs_ref":"refs/tags/raft/v3.5.19"},\
{"module":"go.etcd.io/raft/v3","version":"v3.6.0","vcs_hash":"021b1761a70a4212e4f2b025e054475e53e23fb505ca7d877de026578df975ca","timestamp":"2025-02-05T08:13:35Z","subdir":"","vcs_ref":"refs/tags/v3.6.0"},\
{"module":"gopkg.in/check.v1","version":"v0.0.0-20161208181325-20d25e280405","vcs_hash":"f6f7125ac7ef086ca6395a14a9a28c8c11cd6f8790a8be7cfd6475d1acd0f40b","timestamp":"2016-12-08T18:13:25Z","subdir":"","vcs_ref":""},\
{"module":"gopkg.in/check.v1","version":"v1.0.0-20200227125254-8fa46927fb4f","vcs_hash":"23da246e09df0cfb88f7874f3e8ab42f1563033c51f59b8fd9f88f708ab87083","timestamp":"2020-02-27T12:52:54Z","subdir":"","vcs_ref":""},\
{"module":"gopkg.in/check.v1","version":"v1.0.0-20201130134442-10cb98267c6c","vcs_hash":"b8ed7c01feb15e76511fd0dcf4b7d5e0ab535f96b5fe0e22cd9854a758a6c38d","timestamp":"2020-11-30T13:44:42Z","subdir":"","vcs_ref":""},\
{"module":"gopkg.in/inf.v0","version":"v0.9.1","vcs_hash":"61185ca91404d2e09a193aede807b4a9ededd43199f58cd49ec4cef480d7bc7f","timestamp":"2018-03-26T17:23:32Z","subdir":"","vcs_ref":"refs/tags/v0.9.1"},\
{"module":"gopkg.in/DataDog/dd-trace-go.v1","version":"v1.74.8","vcs_hash":"b1812ace11427e4e4a7ff6aeb101492a2840329d1d8c69a0c2a9d59d8fee19a0","timestamp":"2025-10-24T17:12:39Z","subdir":"","vcs_ref":"refs/tags/v1.74.8"},\
{"module":"gopkg.in/tomb.v1","version":"v1.0.0-20141024135613-dd632973f1e7","vcs_hash":"3eb09c53457860b46e591b55bd3d381c6c4ceb426eeef3c43e3b3eac38964c0d","timestamp":"2014-10-24T13:56:13Z","subdir":"","vcs_ref":""},\
{"module":"gopkg.in/evanphx/json-patch.v4","version":"v4.13.0","vcs_hash":"664c761587abdd7a37f78115c7dbea5a3bcbea104244f81430c0e47dc5396047","timestamp":"2025-01-28T17:43:52Z","subdir":"","vcs_ref":"refs/tags/v4.13.0"},\
{"module":"gopkg.in/yaml.v2","version":"v2.3.0","vcs_hash":"47818511ee2bfcfc1a926b574cbc1b54e0a5d07acab371acfa6c419d7cbe812e","timestamp":"2020-05-06T23:08:38Z","subdir":"","vcs_ref":"refs/tags/v2.3.0"},\
{"module":"gopkg.in/yaml.v2","version":"v2.2.8","vcs_hash":"400816c86851106c70bff651cdce4df77403b9659ec70d1d1bbe2d3211dfa942","timestamp":"2020-01-21T17:19:40Z","subdir":"","vcs_ref":"refs/tags/v2.2.8"},\
{"module":"gopkg.in/yaml.v2","version":"v2.2.2","vcs_hash":"8a100ce674e65e72daf096e45d53f5beec9f9123c742acb89993de84b6414834","timestamp":"2018-11-15T11:05:04Z","subdir":"","vcs_ref":"refs/tags/v2.2.2"},\
{"module":"gopkg.in/yaml.v2","version":"v2.2.4","vcs_hash":"16ad1bc1035b50f99a688a97524eadf6fc6a8b09612f99dd2ef19e0889b7935a","timestamp":"2019-10-02T18:33:36Z","subdir":"","vcs_ref":"refs/tags/v2.2.4"},\
{"module":"gopkg.in/yaml.v2","version":"v2.4.0","vcs_hash":"84e688efadb8602ec1990d3cd251d5818e95c14682a169266ac9a1edadfe5424","timestamp":"2020-11-17T15:46:20Z","subdir":"","vcs_ref":"refs/tags/v2.4.0"},\
{"module":"gopkg.in/natefinch/lumberjack.v2","version":"v2.2.1","vcs_hash":"77a6dec8af06a8bf3eb517dd856ae09528093b19ff97b50a057dcd174887232f","timestamp":"2023-02-06T19:38:14Z","subdir":"","vcs_ref":"refs/tags/v2.2.1"},\
{"module":"gopkg.in/fsnotify.v1","version":"v1.4.7","vcs_hash":"cc44f7bf337eee80812ff411465b4e87c78887003ae940c1b27adb151bbed7d2","timestamp":"2018-01-10T05:33:47Z","subdir":"","vcs_ref":"refs/tags/v1.4.7"},\
{"module":"gopkg.in/ini.v1","version":"v1.56.0","vcs_hash":"957d2b955742effb82d03e5ecffe6e1ffc47c7f7ab9379af803488e4a6ef2f35","timestamp":"2020-05-09T14:43:35Z","subdir":"","vcs_ref":"refs/tags/v1.56.0"},\
{"module":"gopkg.in/ini.v1","version":"v1.67.1","vcs_hash":"0f99adc0e17933a4dc811a68416c5c2664e524c354fcc8c6df74de8b2f396682","timestamp":"2026-01-10T18:46:57Z","subdir":"","vcs_ref":"refs/tags/v1.67.1"},\
{"module":"gopkg.in/yaml.v3","version":"v3.0.1","vcs_hash":"8d340fff421a1861f196061b40e49b2f9e802647204935d08e1062b8ecd90b0d","timestamp":"2022-05-27T08:35:30Z","subdir":"","vcs_ref":"refs/tags/v3.0.1"},\
{"module":"gopkg.in/yaml.v3","version":"v3.0.0-20200313102051-9f266ea9e77c","vcs_hash":"ae6e6119974a43d5668501b6efe7e743408319dee4094d1929d3e75a4f5dac98","timestamp":"2020-03-13T10:20:51Z","subdir":"","vcs_ref":""},\
{"module":"google.golang.org/api","version":"v0.269.0","vcs_hash":"0ebdae9ac31741dae934238d756d6199cac810ac8145a12caaadd2ae112b5517","timestamp":"2026-02-24T22:51:28Z","subdir":"","vcs_ref":"refs/tags/v0.269.0"},\
{"module":"google.golang.org/grpc","version":"v1.19.0","vcs_hash":"a0c196f14d37fa5876674ce232fea42efebf6c35dc46d41f266e22b2c7e30959","timestamp":"2019-02-26T18:45:09Z","subdir":"","vcs_ref":"refs/tags/v1.19.0"},\
{"module":"google.golang.org/grpc","version":"v1.80.0","vcs_hash":"51178c1cf97da46d378c9936542b9684a39613d55ba64759f758f991aeee32c7","timestamp":"2026-04-01T07:57:02Z","subdir":"","vcs_ref":"refs/tags/v1.80.0"},\
{"module":"google.golang.org/grpc","version":"v1.25.1","vcs_hash":"418d54448e9be6e664bfa3e3e2514e15f092e4297963eed5c1e3c7e7e569c464","timestamp":"2019-11-08T18:22:05Z","subdir":"","vcs_ref":"refs/tags/v1.25.1"},\
{"module":"google.golang.org/grpc","version":"v1.23.0","vcs_hash":"ffbc3aa648503af50d3781760eb60394842a0f05e745dbb7f28b5246843e0675","timestamp":"2019-08-13T19:31:37Z","subdir":"","vcs_ref":"refs/tags/v1.23.0"},\
{"module":"google.golang.org/grpc","version":"v1.31.0","vcs_hash":"25958acc82abe0402e2a00368865127290031e756b729cdfbe495b6092056de0","timestamp":"2020-07-30T17:22:51Z","subdir":"","vcs_ref":"refs/tags/v1.31.0"},\
{"module":"google.golang.org/grpc/examples","version":"v0.0.0-20250407062114-b368379ef8f6","vcs_hash":"a90ec14e8552849de27e7bb1f82f671cf1498f3d8c507c389b5d77585301e981","timestamp":"2025-04-07T06:21:14Z","subdir":"examples","vcs_ref":""},\
{"module":"google.golang.org/grpc/cmd/protoc-gen-go-grpc","version":"v1.6.1","vcs_hash":"b08ce2f5a629d5626d65170de4be0c453af030a85e00bc304ecf0df1ddb809d3","timestamp":"2026-02-04T10:04:59Z","subdir":"cmd/protoc-gen-go-grpc","vcs_ref":"refs/tags/cmd/protoc-gen-go-grpc/v1.6.1"},\
{"module":"google.golang.org/appengine","version":"v1.4.0","vcs_hash":"6985551872e9385a78906b511015e4428f8582eda7da3fa8b99f12fc9e94e0e3","timestamp":"2018-12-17T20:59:03Z","subdir":"","vcs_ref":"refs/tags/v1.4.0"},\
{"module":"google.golang.org/appengine","version":"v1.6.8","vcs_hash":"24e06ca0a32817f590c2e899f465938d32d463c11d4ae310636e7a4be7117a85","timestamp":"2023-08-30T01:12:52Z","subdir":"","vcs_ref":"refs/tags/v1.6.8"},\
{"module":"google.golang.org/appengine","version":"v1.1.0","vcs_hash":"002b5670204043ccd079efb6d63593281adeda7cdb3438553d5f59123714dd9d","timestamp":"2018-05-21T22:34:13Z","subdir":"","vcs_ref":"refs/tags/v1.1.0"},\
{"module":"google.golang.org/genproto","version":"v0.0.0-20180817151627-c66870c02cf8","vcs_hash":"2e90a35366d1da1bf52aba5763ec05ba14e4ec06446cdfe1a754af830eb9fc4a","timestamp":"2018-08-17T15:16:27Z","subdir":"","vcs_ref":""},\
{"module":"google.golang.org/genproto","version":"v0.0.0-20190819201941-24fa4b261c55","vcs_hash":"8c877fcc5f4a5bef6db5a87334d34f9165c6d6c864a08e9fe01ad2e1269bb030","timestamp":"2019-08-19T20:19:41Z","subdir":"","vcs_ref":""},\
{"module":"google.golang.org/genproto","version":"v0.0.0-20260128011058-8636f8732409","vcs_hash":"8664b01a39a923b83280873e381002f1bf056fdc7de72640f84de6c79d82b165","timestamp":"2026-01-28T01:10:58Z","subdir":"","vcs_ref":""},\
{"module":"google.golang.org/genproto/googleapis/api","version":"v0.0.0-20260203192932-546029d2fa20","vcs_hash":"4a87aab8f7c73e590ab227629d935eff038a686d0408240aa3c708f787d20454","timestamp":"2026-02-03T19:29:32Z","subdir":"googleapis/api","vcs_ref":""},\
{"module":"google.golang.org/genproto/googleapis/bytestream","version":"v0.0.0-20260217215200-42d3e9bedb6d","vcs_hash":"1faa1c5e45595467563cffac7ebacb2041e120bbc5e7bb3366ae00feb45d5e01","timestamp":"2026-02-17T21:52:00Z","subdir":"googleapis/bytestream","vcs_ref":""},\
{"module":"google.golang.org/genproto/googleapis/rpc","version":"v0.0.0-20260217215200-42d3e9bedb6d","vcs_hash":"1faa1c5e45595467563cffac7ebacb2041e120bbc5e7bb3366ae00feb45d5e01","timestamp":"2026-02-17T21:52:00Z","subdir":"googleapis/rpc","vcs_ref":""},\
{"module":"google.golang.org/protobuf","version":"v1.26.0","vcs_hash":"370ff55436487ce8327607354d76a2fe5c1bea3a9995f9dae41280231ebd4e59","timestamp":"2021-03-18T00:27:53Z","subdir":"","vcs_ref":"refs/tags/v1.26.0"},\
{"module":"google.golang.org/protobuf","version":"v1.21.0","vcs_hash":"b66e2f94014f3dadd38321a8ae33347a24d4580a57d66c71189f792e6fbdccb2","timestamp":"2020-04-13T18:57:02Z","subdir":"","vcs_ref":"refs/tags/v1.21.0"},\
{"module":"google.golang.org/protobuf","version":"v1.20.1-0.20200309200217-e05f789c0967","vcs_hash":"5be79d49c339af2a47aec21e2a6c3827a854579ce046e58eb12c45b13cc54dfb","timestamp":"2020-03-09T20:02:17Z","subdir":"","vcs_ref":""},\
{"module":"google.golang.org/protobuf","version":"v1.36.11","vcs_hash":"d5e44d171a0e43b2572231e7dad4dbb2fbeb34ff9c7aaf7a36a393294ff3d55d","timestamp":"2025-12-12T08:48:31Z","subdir":"","vcs_ref":"refs/tags/v1.36.11"},\
{"module":"google.golang.org/protobuf","version":"v0.0.0-20200109180630-ec00e32a8dfd","vcs_hash":"11dd3abcdf0bca5a664e8bbb4cfe97a029b0429be1f3ffa36c3ff6291d482fe6","timestamp":"2020-01-09T18:06:30Z","subdir":"","vcs_ref":""},\
{"module":"google.golang.org/protobuf","version":"v0.0.0-20200228230310-ab0ca4ff8a60","vcs_hash":"bc64bffea0101db18ce198fe50ccee1b34ede4bbe6df0daf4943785f88a2665f","timestamp":"2020-02-28T23:03:10Z","subdir":"","vcs_ref":""},\
{"module":"google.golang.org/protobuf","version":"v1.23.0","vcs_hash":"fe9b8770004b8051ad2328d8bc677057a91d457f03b0a432dda814855d97d008","timestamp":"2020-05-14T20:12:30Z","subdir":"","vcs_ref":"refs/tags/v1.23.0"},\
{"module":"google.golang.org/protobuf","version":"v0.0.0-20200221191635-4d8936d0db64","vcs_hash":"5ff0520fa4067b911a561ac5bd9b5c4aef35ed0b28bc716a0d7503df6f292fba","timestamp":"2020-02-21T19:16:35Z","subdir":"","vcs_ref":""},\
{"module":"google.golang.org/protobuf","version":"v1.26.0-rc.1","vcs_hash":"f1a03aacb1afd3779b8ede2d7fc7ef21b6b219f30f2b619b139876293b42dd48","timestamp":"2021-03-17T22:45:34Z","subdir":"","vcs_ref":"refs/tags/v1.26.0-rc.1"},\
{"module":"go.mongodb.org/mongo-driver","version":"v1.17.6","vcs_hash":"e629113ada68e74e78e8cccbe5f20cfc312b1982f3b922205f92ed2458babd7f","timestamp":"2025-10-27T23:16:51Z","subdir":"","vcs_ref":"refs/tags/v1.17.6"},\
{"module":"bitbucket.org/creachadair/shell","version":"v0.0.8","vcs_hash":"61e84484097fb6e7918fa9bb7fcbcc82dd80040a0660bfe31d8b16800920cecf","timestamp":"2023-12-20T01:32:19Z","subdir":"","vcs_ref":"refs/tags/v0.0.8"},\
{"module":"cloud.google.com/go","version":"v0.123.0","vcs_hash":"0d5d16f0820e1a355a7489464a687676cdb569ea829fadc38fd4151d9cd275f8","timestamp":"2025-09-22T16:26:20Z","subdir":"","vcs_ref":"refs/tags/v0.123.0"},\
{"module":"cloud.google.com/go/language","version":"v1.14.6","vcs_hash":"b6d8c54babe3665af352e292b2e2fdf826f6d45023c02f7c1c695ca9e7f61109","timestamp":"2025-10-07T22:46:56Z","subdir":"language","vcs_ref":"refs/tags/language/v1.14.6"},\
{"module":"cloud.google.com/go/profiler","version":"v0.4.3","vcs_hash":"d3b61b696b599464544a6bc01e097c82212a66f320a0b0d7cf5f8292f3bd7f89","timestamp":"2025-06-17T17:02:19Z","subdir":"profiler","vcs_ref":"refs/heads/main"},\
{"module":"cloud.google.com/go/clouddms","version":"v1.8.8","vcs_hash":"2b868b8a903d10214cdb945dd8a9cdbee0dc4f9f4d39724cfbc7ad1c5db6d4a2","timestamp":"2025-09-16T21:26:26Z","subdir":"clouddms","vcs_ref":"refs/tags/clouddms/v1.8.8"},\
{"module":"cloud.google.com/go/shell","version":"v1.8.7","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"shell","vcs_ref":"refs/tags/shell/v1.8.7"},\
{"module":"cloud.google.com/go/metastore","version":"v1.14.8","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"metastore","vcs_ref":"refs/tags/metastore/v1.14.8"},\
{"module":"cloud.google.com/go/webrisk","version":"v1.11.2","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"webrisk","vcs_ref":"refs/tags/webrisk/v1.11.2"},\
{"module":"cloud.google.com/go/area120","version":"v0.9.7","vcs_hash":"190a3f0a5e82b0454cbe425097ec36836e98d3fd2079da8ac19183b78bf24371","timestamp":"2025-06-04T18:21:12Z","subdir":"area120","vcs_ref":"refs/tags/area120/v0.9.7"},\
{"module":"cloud.google.com/go/datacatalog","version":"v1.26.1","vcs_hash":"2b868b8a903d10214cdb945dd8a9cdbee0dc4f9f4d39724cfbc7ad1c5db6d4a2","timestamp":"2025-09-16T21:26:26Z","subdir":"datacatalog","vcs_ref":"refs/tags/datacatalog/v1.26.1"},\
{"module":"cloud.google.com/go/datastream","version":"v1.15.1","vcs_hash":"2b868b8a903d10214cdb945dd8a9cdbee0dc4f9f4d39724cfbc7ad1c5db6d4a2","timestamp":"2025-09-16T21:26:26Z","subdir":"datastream","vcs_ref":"refs/tags/datastream/v1.15.1"},\
{"module":"cloud.google.com/go/eventarc","version":"v1.18.0","vcs_hash":"5a080a4404e2fd2516c4605063ea6590116a97c226b67e965a99cb0fea2fbdbe","timestamp":"2025-12-04T16:36:22Z","subdir":"eventarc","vcs_ref":"refs/tags/eventarc/v1.18.0"},\
{"module":"cloud.google.com/go/translate","version":"v1.12.7","vcs_hash":"b6d8c54babe3665af352e292b2e2fdf826f6d45023c02f7c1c695ca9e7f61109","timestamp":"2025-10-07T22:46:56Z","subdir":"translate","vcs_ref":"refs/tags/translate/v1.12.7"},\
{"module":"cloud.google.com/go/datastore","version":"v1.21.0","vcs_hash":"7cb3b36bcc0d3f2b2d2967b296aa111f3f61be016c6196781d4e23666efe08ff","timestamp":"2025-10-20T15:24:21Z","subdir":"datastore","vcs_ref":"refs/tags/datastore/v1.21.0"},\
{"module":"cloud.google.com/go/vmmigration","version":"v1.10.0","vcs_hash":"5a080a4404e2fd2516c4605063ea6590116a97c226b67e965a99cb0fea2fbdbe","timestamp":"2025-12-04T16:36:22Z","subdir":"vmmigration","vcs_ref":"refs/tags/vmmigration/v1.10.0"},\
{"module":"cloud.google.com/go/binaryauthorization","version":"v1.10.0","vcs_hash":"1beab6b76e58b73b9fbd1a9e68739567e51520be368034c46f7a74051759d79f","timestamp":"2025-10-13T14:06:17Z","subdir":"binaryauthorization","vcs_ref":"refs/tags/binaryauthorization/v1.10.0"},\
{"module":"cloud.google.com/go/recaptchaenterprise/v2","version":"v2.21.0","vcs_hash":"9d877d64b9f837bdac8b6623322f15f3b8fb932294396fb92a7e6da825df8d86","timestamp":"2025-12-18T14:18:21Z","subdir":"recaptchaenterprise","vcs_ref":"refs/tags/recaptchaenterprise/v2.21.0"},\
{"module":"cloud.google.com/go/automl","version":"v1.15.0","vcs_hash":"1beab6b76e58b73b9fbd1a9e68739567e51520be368034c46f7a74051759d79f","timestamp":"2025-10-13T14:06:17Z","subdir":"automl","vcs_ref":"refs/tags/automl/v1.15.0"},\
{"module":"cloud.google.com/go/video","version":"v1.27.1","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"video","vcs_ref":"refs/tags/video/v1.27.1"},\
{"module":"cloud.google.com/go/baremetalsolution","version":"v1.4.0","vcs_hash":"1beab6b76e58b73b9fbd1a9e68739567e51520be368034c46f7a74051759d79f","timestamp":"2025-10-13T14:06:17Z","subdir":"baremetalsolution","vcs_ref":"refs/tags/baremetalsolution/v1.4.0"},\
{"module":"cloud.google.com/go/monitoring","version":"v1.24.3","vcs_hash":"6254d0865f56a16b8c1ab467ec5334bea06e5b28bf370972c3fc98749e922f2b","timestamp":"2025-10-08T19:17:02Z","subdir":"monitoring","vcs_ref":"refs/tags/monitoring/v1.24.3"},\
{"module":"cloud.google.com/go/assuredworkloads","version":"v1.13.0","vcs_hash":"1beab6b76e58b73b9fbd1a9e68739567e51520be368034c46f7a74051759d79f","timestamp":"2025-10-13T14:06:17Z","subdir":"assuredworkloads","vcs_ref":"refs/tags/assuredworkloads/v1.13.0"},\
{"module":"cloud.google.com/go/resourcemanager","version":"v1.10.7","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"resourcemanager","vcs_ref":"refs/tags/resourcemanager/v1.10.7"},\
{"module":"cloud.google.com/go/containeranalysis","version":"v0.14.2","vcs_hash":"35c2fa1fcb826c3bd075bd300994fd27fc880ce7c0d09515188ff2309d2fca2e","timestamp":"2025-10-09T18:20:38Z","subdir":"containeranalysis","vcs_ref":"refs/tags/containeranalysis/v0.14.2"},\
{"module":"cloud.google.com/go/networksecurity","version":"v0.11.0","vcs_hash":"5a080a4404e2fd2516c4605063ea6590116a97c226b67e965a99cb0fea2fbdbe","timestamp":"2025-12-04T16:36:22Z","subdir":"networksecurity","vcs_ref":"refs/tags/networksecurity/v0.11.0"},\
{"module":"cloud.google.com/go/videointelligence","version":"v1.12.7","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"videointelligence","vcs_ref":"refs/tags/videointelligence/v1.12.7"},\
{"module":"cloud.google.com/go/iap","version":"v1.11.3","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"iap","vcs_ref":"refs/tags/iap/v1.11.3"},\
{"module":"cloud.google.com/go/iam","version":"v1.5.3","vcs_hash":"6254d0865f56a16b8c1ab467ec5334bea06e5b28bf370972c3fc98749e922f2b","timestamp":"2025-10-08T19:17:02Z","subdir":"iam","vcs_ref":"refs/tags/iam/v1.5.3"},\
{"module":"cloud.google.com/go/ids","version":"v1.5.7","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"ids","vcs_ref":"refs/tags/ids/v1.5.7"},\
{"module":"cloud.google.com/go/maps","version":"v1.26.0","vcs_hash":"a664909afdc163e532fc90dcd652c3f30e9f66e5b9ae015ed3b8387b26316d8f","timestamp":"2025-11-10T17:27:35Z","subdir":"maps","vcs_ref":"refs/tags/maps/v1.26.0"},\
{"module":"cloud.google.com/go/gsuiteaddons","version":"v1.7.8","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"gsuiteaddons","vcs_ref":"refs/tags/gsuiteaddons/v1.7.8"},\
{"module":"cloud.google.com/go/analytics","version":"v0.30.1","vcs_hash":"b6d8c54babe3665af352e292b2e2fdf826f6d45023c02f7c1c695ca9e7f61109","timestamp":"2025-10-07T22:46:56Z","subdir":"analytics","vcs_ref":"refs/tags/analytics/v0.30.1"},\
{"module":"cloud.google.com/go/storage","version":"v1.59.2","vcs_hash":"3563ef78fb332c86b69068f9ae2b0e4c884619f7b403ba54710636d532efb54a","timestamp":"2026-01-28T16:38:33Z","subdir":"storage","vcs_ref":"refs/tags/storage/v1.59.2"},\
{"module":"cloud.google.com/go/scheduler","version":"v1.11.8","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"scheduler","vcs_ref":"refs/tags/scheduler/v1.11.8"},\
{"module":"cloud.google.com/go/osconfig","version":"v1.15.1","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"osconfig","vcs_ref":"refs/tags/osconfig/v1.15.1"},\
{"module":"cloud.google.com/go/security","version":"v1.19.2","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"security","vcs_ref":"refs/tags/security/v1.19.2"},\
{"module":"cloud.google.com/go/logging","version":"v1.13.1","vcs_hash":"9a4a9486061db7700061b0ac7993e04811d79c756449befac5d76c7b26bca6a1","timestamp":"2025-10-28T17:12:19Z","subdir":"logging","vcs_ref":"refs/tags/logging/v1.13.1"},\
{"module":"cloud.google.com/go/networkmanagement","version":"v1.21.0","vcs_hash":"a664909afdc163e532fc90dcd652c3f30e9f66e5b9ae015ed3b8387b26316d8f","timestamp":"2025-11-10T17:27:35Z","subdir":"networkmanagement","vcs_ref":"refs/tags/networkmanagement/v1.21.0"},\
{"module":"cloud.google.com/go/iot","version":"v1.8.7","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"iot","vcs_ref":"refs/tags/iot/v1.8.7"},\
{"module":"cloud.google.com/go/accesscontextmanager","version":"v1.9.7","vcs_hash":"b6d8c54babe3665af352e292b2e2fdf826f6d45023c02f7c1c695ca9e7f61109","timestamp":"2025-10-07T22:46:56Z","subdir":"accesscontextmanager","vcs_ref":"refs/tags/accesscontextmanager/v1.9.7"},\
{"module":"cloud.google.com/go/dataform","version":"v0.12.1","vcs_hash":"2b868b8a903d10214cdb945dd8a9cdbee0dc4f9f4d39724cfbc7ad1c5db6d4a2","timestamp":"2025-09-16T21:26:26Z","subdir":"dataform","vcs_ref":"refs/tags/dataform/v0.12.1"},\
{"module":"cloud.google.com/go/orchestration","version":"v1.11.10","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"orchestration","vcs_ref":"refs/tags/orchestration/v1.11.10"},\
{"module":"cloud.google.com/go/domains","version":"v0.10.7","vcs_hash":"2b868b8a903d10214cdb945dd8a9cdbee0dc4f9f4d39724cfbc7ad1c5db6d4a2","timestamp":"2025-09-16T21:26:26Z","subdir":"domains","vcs_ref":"refs/tags/domains/v0.10.7"},\
{"module":"cloud.google.com/go/errorreporting","version":"v0.4.0","vcs_hash":"71d8251cf559bd4bed4bedfb1dc70530b7f7b0ce7458c63c07bc8f3e8e1450ca","timestamp":"2026-01-08T15:34:10Z","subdir":"errorreporting","vcs_ref":"refs/tags/errorreporting/v0.4.0"},\
{"module":"cloud.google.com/go/certificatemanager","version":"v1.9.6","vcs_hash":"dd2327ceb3385fe14f59836b2368cc301e1b4f42a235a30e2c9dfad827c8ce95","timestamp":"2025-10-15T22:00:41Z","subdir":"certificatemanager","vcs_ref":"refs/tags/certificatemanager/v1.9.6"},\
{"module":"cloud.google.com/go/vision/v2","version":"v2.9.6","vcs_hash":"b6d8c54babe3665af352e292b2e2fdf826f6d45023c02f7c1c695ca9e7f61109","timestamp":"2025-10-07T22:46:56Z","subdir":"vision","vcs_ref":"refs/tags/vision/v2.9.6"},\
{"module":"cloud.google.com/go/recommendationengine","version":"v0.9.7","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"recommendationengine","vcs_ref":"refs/tags/recommendationengine/v0.9.7"},\
{"module":"cloud.google.com/go/pubsublite","version":"v1.8.2","vcs_hash":"cd52cec5862dfcf08e56c99b4b313a0276a9b14d94262cbff2d9cf2bae9475f2","timestamp":"2024-06-05T00:20:59Z","subdir":"pubsublite","vcs_ref":"refs/tags/pubsublite/v1.8.2"},\
{"module":"cloud.google.com/go/compute","version":"v1.54.0","vcs_hash":"449f73df264ef4d9e31f197b56f4793105dff5814b43173571f20642201e6647","timestamp":"2026-01-22T15:05:45Z","subdir":"compute","vcs_ref":"refs/tags/compute/v1.54.0"},\
{"module":"cloud.google.com/go/compute/metadata","version":"v0.9.0","vcs_hash":"ef8ad73ce6cafa3fbb115b0895d2b391fa5aefa58dac151c1ff06e7279185884","timestamp":"2025-09-24T19:41:55Z","subdir":"compute/metadata","vcs_ref":"refs/tags/compute/metadata/v0.9.0"},\
{"module":"cloud.google.com/go/apigeeconnect","version":"v1.7.7","vcs_hash":"190a3f0a5e82b0454cbe425097ec36836e98d3fd2079da8ac19183b78bf24371","timestamp":"2025-06-04T18:21:12Z","subdir":"apigeeconnect","vcs_ref":"refs/tags/apigeeconnect/v1.7.7"},\
{"module":"cloud.google.com/go/accessapproval","version":"v1.8.8","vcs_hash":"dd2327ceb3385fe14f59836b2368cc301e1b4f42a235a30e2c9dfad827c8ce95","timestamp":"2025-10-15T22:00:41Z","subdir":"accessapproval","vcs_ref":"refs/tags/accessapproval/v1.8.8"},\
{"module":"cloud.google.com/go/batch","version":"v1.14.0","vcs_hash":"5a080a4404e2fd2516c4605063ea6590116a97c226b67e965a99cb0fea2fbdbe","timestamp":"2025-12-04T16:36:22Z","subdir":"batch","vcs_ref":"refs/tags/batch/v1.14.0"},\
{"module":"cloud.google.com/go/edgecontainer","version":"v1.4.4","vcs_hash":"2b868b8a903d10214cdb945dd8a9cdbee0dc4f9f4d39724cfbc7ad1c5db6d4a2","timestamp":"2025-09-16T21:26:26Z","subdir":"edgecontainer","vcs_ref":"refs/tags/edgecontainer/v1.4.4"},\
{"module":"cloud.google.com/go/functions","version":"v1.19.7","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"functions","vcs_ref":"refs/tags/functions/v1.19.7"},\
{"module":"cloud.google.com/go/talent","version":"v1.8.4","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"talent","vcs_ref":"refs/tags/talent/v1.8.4"},\
{"module":"cloud.google.com/go/websecurityscanner","version":"v1.7.7","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"websecurityscanner","vcs_ref":"refs/tags/websecurityscanner/v1.7.7"},\
{"module":"cloud.google.com/go/essentialcontacts","version":"v1.7.7","vcs_hash":"2b868b8a903d10214cdb945dd8a9cdbee0dc4f9f4d39724cfbc7ad1c5db6d4a2","timestamp":"2025-09-16T21:26:26Z","subdir":"essentialcontacts","vcs_ref":"refs/tags/essentialcontacts/v1.7.7"},\
{"module":"cloud.google.com/go/deploy","version":"v1.27.3","vcs_hash":"2b868b8a903d10214cdb945dd8a9cdbee0dc4f9f4d39724cfbc7ad1c5db6d4a2","timestamp":"2025-09-16T21:26:26Z","subdir":"deploy","vcs_ref":"refs/tags/deploy/v1.27.3"},\
{"module":"cloud.google.com/go/resourcesettings","version":"v1.8.3","vcs_hash":"ebb02825cfe69809a8c9fec5f7095807254fee68a8cfd77fdf549bccf6df6f6f","timestamp":"2025-01-02T19:03:39Z","subdir":"resourcesettings","vcs_ref":"refs/tags/resourcesettings/v1.8.3"},\
{"module":"cloud.google.com/go/cloudbuild","version":"v1.25.0","vcs_hash":"9d877d64b9f837bdac8b6623322f15f3b8fb932294396fb92a7e6da825df8d86","timestamp":"2025-12-18T14:18:21Z","subdir":"cloudbuild","vcs_ref":"refs/tags/cloudbuild/v1.25.0"},\
{"module":"cloud.google.com/go/speech","version":"v1.29.0","vcs_hash":"71d8251cf559bd4bed4bedfb1dc70530b7f7b0ce7458c63c07bc8f3e8e1450ca","timestamp":"2026-01-08T15:34:10Z","subdir":"speech","vcs_ref":"refs/tags/speech/v1.29.0"},\
{"module":"cloud.google.com/go/longrunning","version":"v0.8.0","vcs_hash":"71d8251cf559bd4bed4bedfb1dc70530b7f7b0ce7458c63c07bc8f3e8e1450ca","timestamp":"2026-01-08T15:34:10Z","subdir":"longrunning","vcs_ref":"refs/tags/longrunning/v0.8.0"},\
{"module":"cloud.google.com/go/dialogflow","version":"v1.74.0","vcs_hash":"449f73df264ef4d9e31f197b56f4793105dff5814b43173571f20642201e6647","timestamp":"2026-01-22T15:05:45Z","subdir":"dialogflow","vcs_ref":"refs/tags/dialogflow/v1.74.0"},\
{"module":"cloud.google.com/go/contactcenterinsights","version":"v1.17.4","vcs_hash":"2b868b8a903d10214cdb945dd8a9cdbee0dc4f9f4d39724cfbc7ad1c5db6d4a2","timestamp":"2025-09-16T21:26:26Z","subdir":"contactcenterinsights","vcs_ref":"refs/tags/contactcenterinsights/v1.17.4"},\
{"module":"cloud.google.com/go/pubsub","version":"v1.50.1","vcs_hash":"cb5e54f6c229558cc7e3a9102afdbc1cf777d7ac883a4a39bb2597a3811bdc11","timestamp":"2025-09-04T22:45:55Z","subdir":"pubsub","vcs_ref":"refs/tags/pubsub/v1.50.1"},\
{"module":"cloud.google.com/go/pubsub/v2","version":"v2.4.0","vcs_hash":"1e2bc8e1d37a2b055926604b4ff67885b45e31006cb47b94abbf2cb8d549c86b","timestamp":"2026-02-04T19:21:45Z","subdir":"pubsub","vcs_ref":"refs/tags/pubsub/v2.4.0"},\
{"module":"cloud.google.com/go/cloudtasks","version":"v1.13.7","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"cloudtasks","vcs_ref":"refs/tags/cloudtasks/v1.13.7"},\
{"module":"cloud.google.com/go/gkemulticloud","version":"v1.6.0","vcs_hash":"5a080a4404e2fd2516c4605063ea6590116a97c226b67e965a99cb0fea2fbdbe","timestamp":"2025-12-04T16:36:22Z","subdir":"gkemulticloud","vcs_ref":"refs/tags/gkemulticloud/v1.6.0"},\
{"module":"cloud.google.com/go/retail","version":"v1.25.1","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"retail","vcs_ref":"refs/tags/retail/v1.25.1"},\
{"module":"cloud.google.com/go/securitycenter","version":"v1.38.1","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"securitycenter","vcs_ref":"refs/tags/securitycenter/v1.38.1"},\
{"module":"cloud.google.com/go/oslogin","version":"v1.14.7","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"oslogin","vcs_ref":"refs/tags/oslogin/v1.14.7"},\
{"module":"cloud.google.com/go/artifactregistry","version":"v1.19.0","vcs_hash":"71d8251cf559bd4bed4bedfb1dc70530b7f7b0ce7458c63c07bc8f3e8e1450ca","timestamp":"2026-01-08T15:34:10Z","subdir":"artifactregistry","vcs_ref":"refs/tags/artifactregistry/v1.19.0"},\
{"module":"cloud.google.com/go/datalabeling","version":"v0.9.7","vcs_hash":"2b868b8a903d10214cdb945dd8a9cdbee0dc4f9f4d39724cfbc7ad1c5db6d4a2","timestamp":"2025-09-16T21:26:26Z","subdir":"datalabeling","vcs_ref":"refs/tags/datalabeling/v0.9.7"},\
{"module":"cloud.google.com/go/gkeconnect","version":"v0.12.5","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"gkeconnect","vcs_ref":"refs/tags/gkeconnect/v0.12.5"},\
{"module":"cloud.google.com/go/spanner","version":"v1.87.0","vcs_hash":"44f914e1f2e90952dfcca683ede582c855e862606981759d63663351b03d11ca","timestamp":"2025-12-15T09:31:08Z","subdir":"spanner","vcs_ref":"refs/tags/spanner/v1.87.0"},\
{"module":"cloud.google.com/go/optimization","version":"v1.7.7","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"optimization","vcs_ref":"refs/tags/optimization/v1.7.7"},\
{"module":"cloud.google.com/go/networkconnectivity","version":"v1.20.0","vcs_hash":"449f73df264ef4d9e31f197b56f4793105dff5814b43173571f20642201e6647","timestamp":"2026-01-22T15:05:45Z","subdir":"networkconnectivity","vcs_ref":"refs/tags/networkconnectivity/v1.20.0"},\
{"module":"cloud.google.com/go/gkehub","version":"v0.16.0","vcs_hash":"155a8c5857d71921d4d48a9064b1d1db849d4dba3424d79ae5b9f8bed6d5c196","timestamp":"2025-09-15T13:21:12Z","subdir":"gkehub","vcs_ref":"refs/tags/gkehub/v0.16.0"},\
{"module":"cloud.google.com/go/datafusion","version":"v1.8.7","vcs_hash":"2b868b8a903d10214cdb945dd8a9cdbee0dc4f9f4d39724cfbc7ad1c5db6d4a2","timestamp":"2025-09-16T21:26:26Z","subdir":"datafusion","vcs_ref":"refs/tags/datafusion/v1.8.7"},\
{"module":"cloud.google.com/go/servicedirectory","version":"v1.12.7","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"servicedirectory","vcs_ref":"refs/tags/servicedirectory/v1.12.7"},\
{"module":"cloud.google.com/go/firestore","version":"v1.21.0","vcs_hash":"f3e10b1cdd0119b163d0771b9f3f17356a70d347ace227ee167a3d94039bcb95","timestamp":"2026-01-15T22:45:02Z","subdir":"firestore","vcs_ref":"refs/tags/firestore/v1.21.0"},\
{"module":"cloud.google.com/go/kms","version":"v1.26.0","vcs_hash":"3c3c29b1195ad5cf67a43c90fed34319a3b95ed4a9c5434910351f6b89034b49","timestamp":"2026-02-19T15:43:07Z","subdir":"kms","vcs_ref":"refs/tags/kms/v1.26.0"},\
{"module":"cloud.google.com/go/trace","version":"v1.11.7","vcs_hash":"35c2fa1fcb826c3bd075bd300994fd27fc880ce7c0d09515188ff2309d2fca2e","timestamp":"2025-10-09T18:20:38Z","subdir":"trace","vcs_ref":"refs/tags/trace/v1.11.7"},\
{"module":"cloud.google.com/go/appengine","version":"v1.9.7","vcs_hash":"190a3f0a5e82b0454cbe425097ec36836e98d3fd2079da8ac19183b78bf24371","timestamp":"2025-06-04T18:21:12Z","subdir":"appengine","vcs_ref":"refs/tags/appengine/v1.9.7"},\
{"module":"cloud.google.com/go/gkebackup","version":"v1.8.1","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"gkebackup","vcs_ref":"refs/tags/gkebackup/v1.8.1"},\
{"module":"cloud.google.com/go/secretmanager","version":"v1.16.0","vcs_hash":"0628f1b8b514c594149704f6cf5aaa4e4c174a2da6dd6c159baefdcce347f286","timestamp":"2025-10-20T06:46:33Z","subdir":"secretmanager","vcs_ref":"refs/tags/secretmanager/v1.16.0"},\
{"module":"cloud.google.com/go/documentai","version":"v1.39.0","vcs_hash":"35c2fa1fcb826c3bd075bd300994fd27fc880ce7c0d09515188ff2309d2fca2e","timestamp":"2025-10-09T18:20:38Z","subdir":"documentai","vcs_ref":"refs/tags/documentai/v1.39.0"},\
{"module":"cloud.google.com/go/vmwareengine","version":"v1.3.6","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"vmwareengine","vcs_ref":"refs/tags/vmwareengine/v1.3.6"},\
{"module":"cloud.google.com/go/container","version":"v1.45.0","vcs_hash":"b0814f16f95c82734497f461977a8d9db72df4f2ddc4a7e7342bae7332736fd9","timestamp":"2025-10-22T18:17:05Z","subdir":"container","vcs_ref":"refs/tags/container/v1.45.0"},\
{"module":"cloud.google.com/go/dataplex","version":"v1.28.0","vcs_hash":"a664909afdc163e532fc90dcd652c3f30e9f66e5b9ae015ed3b8387b26316d8f","timestamp":"2025-11-10T17:27:35Z","subdir":"dataplex","vcs_ref":"refs/tags/dataplex/v1.28.0"},\
{"module":"cloud.google.com/go/dlp","version":"v1.28.0","vcs_hash":"9d877d64b9f837bdac8b6623322f15f3b8fb932294396fb92a7e6da825df8d86","timestamp":"2025-12-18T14:18:21Z","subdir":"dlp","vcs_ref":"refs/tags/dlp/v1.28.0"},\
{"module":"cloud.google.com/go/bigtable","version":"v1.41.0","vcs_hash":"09d1ff7d9573d20e0fb1b432c16fcccd022a2bd95306ca594323a9461224e8af","timestamp":"2025-12-15T20:00:29Z","subdir":"bigtable","vcs_ref":"refs/tags/bigtable/v1.41.0"},\
{"module":"cloud.google.com/go/run","version":"v1.15.0","vcs_hash":"449f73df264ef4d9e31f197b56f4793105dff5814b43173571f20642201e6647","timestamp":"2026-01-22T15:05:45Z","subdir":"run","vcs_ref":"refs/tags/run/v1.15.0"},\
{"module":"cloud.google.com/go/apigeeregistry","version":"v0.10.0","vcs_hash":"1beab6b76e58b73b9fbd1a9e68739567e51520be368034c46f7a74051759d79f","timestamp":"2025-10-13T14:06:17Z","subdir":"apigeeregistry","vcs_ref":"refs/tags/apigeeregistry/v0.10.0"},\
{"module":"cloud.google.com/go/orgpolicy","version":"v1.15.1","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"orgpolicy","vcs_ref":"refs/tags/orgpolicy/v1.15.1"},\
{"module":"cloud.google.com/go/dataflow","version":"v0.11.1","vcs_hash":"b6d8c54babe3665af352e292b2e2fdf826f6d45023c02f7c1c695ca9e7f61109","timestamp":"2025-10-07T22:46:56Z","subdir":"dataflow","vcs_ref":"refs/tags/dataflow/v0.11.1"},\
{"module":"cloud.google.com/go/filestore","version":"v1.10.3","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"filestore","vcs_ref":"refs/tags/filestore/v1.10.3"},\
{"module":"cloud.google.com/go/bigquery","version":"v1.72.0","vcs_hash":"110fcfe4b7022fade70c8221bffd44a278b6db124753b75857115117a9f3f0e6","timestamp":"2025-10-28T18:23:55Z","subdir":"bigquery","vcs_ref":"refs/tags/bigquery/v1.72.0"},\
{"module":"cloud.google.com/go/recommender","version":"v1.13.6","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"recommender","vcs_ref":"refs/tags/recommender/v1.13.6"},\
{"module":"cloud.google.com/go/vpcaccess","version":"v1.8.7","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"vpcaccess","vcs_ref":"refs/tags/vpcaccess/v1.8.7"},\
{"module":"cloud.google.com/go/channel","version":"v1.21.0","vcs_hash":"5a080a4404e2fd2516c4605063ea6590116a97c226b67e965a99cb0fea2fbdbe","timestamp":"2025-12-04T16:36:22Z","subdir":"channel","vcs_ref":"refs/tags/channel/v1.21.0"},\
{"module":"cloud.google.com/go/notebooks","version":"v1.12.7","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"notebooks","vcs_ref":"refs/tags/notebooks/v1.12.7"},\
{"module":"cloud.google.com/go/privatecatalog","version":"v0.10.8","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"privatecatalog","vcs_ref":"refs/tags/privatecatalog/v0.10.8"},\
{"module":"cloud.google.com/go/dataproc/v2","version":"v2.15.0","vcs_hash":"1beab6b76e58b73b9fbd1a9e68739567e51520be368034c46f7a74051759d79f","timestamp":"2025-10-13T14:06:17Z","subdir":"dataproc","vcs_ref":"refs/tags/dataproc/v2.15.0"},\
{"module":"cloud.google.com/go/lifesciences","version":"v0.10.7","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"lifesciences","vcs_ref":"refs/tags/lifesciences/v0.10.7"},\
{"module":"cloud.google.com/go/dataqna","version":"v0.9.8","vcs_hash":"dd2327ceb3385fe14f59836b2368cc301e1b4f42a235a30e2c9dfad827c8ce95","timestamp":"2025-10-15T22:00:41Z","subdir":"dataqna","vcs_ref":"refs/tags/dataqna/v0.9.8"},\
{"module":"cloud.google.com/go/workflows","version":"v1.14.3","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"workflows","vcs_ref":"refs/tags/workflows/v1.14.3"},\
{"module":"cloud.google.com/go/mediatranslation","version":"v0.9.7","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"mediatranslation","vcs_ref":"refs/tags/mediatranslation/v0.9.7"},\
{"module":"cloud.google.com/go/beyondcorp","version":"v1.2.0","vcs_hash":"1beab6b76e58b73b9fbd1a9e68739567e51520be368034c46f7a74051759d79f","timestamp":"2025-10-13T14:06:17Z","subdir":"beyondcorp","vcs_ref":"refs/tags/beyondcorp/v1.2.0"},\
{"module":"cloud.google.com/go/phishingprotection","version":"v0.9.7","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"phishingprotection","vcs_ref":"refs/tags/phishingprotection/v0.9.7"},\
{"module":"cloud.google.com/go/tpu","version":"v1.8.4","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"tpu","vcs_ref":"refs/tags/tpu/v1.8.4"},\
{"module":"cloud.google.com/go/apigateway","version":"v1.7.7","vcs_hash":"190a3f0a5e82b0454cbe425097ec36836e98d3fd2079da8ac19183b78bf24371","timestamp":"2025-06-04T18:21:12Z","subdir":"apigateway","vcs_ref":"refs/tags/apigateway/v1.7.7"},\
{"module":"cloud.google.com/go/aiplatform","version":"v1.114.0","vcs_hash":"449f73df264ef4d9e31f197b56f4793105dff5814b43173571f20642201e6647","timestamp":"2026-01-22T15:05:45Z","subdir":"aiplatform","vcs_ref":"refs/tags/aiplatform/v1.114.0"},\
{"module":"cloud.google.com/go/memcache","version":"v1.11.7","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"memcache","vcs_ref":"refs/tags/memcache/v1.11.7"},\
{"module":"cloud.google.com/go/policytroubleshooter","version":"v1.11.7","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"policytroubleshooter","vcs_ref":"refs/tags/policytroubleshooter/v1.11.7"},\
{"module":"cloud.google.com/go/asset","version":"v1.22.0","vcs_hash":"1beab6b76e58b73b9fbd1a9e68739567e51520be368034c46f7a74051759d79f","timestamp":"2025-10-13T14:06:17Z","subdir":"asset","vcs_ref":"refs/tags/asset/v1.22.0"},\
{"module":"cloud.google.com/go/storagetransfer","version":"v1.13.1","vcs_hash":"35c2fa1fcb826c3bd075bd300994fd27fc880ce7c0d09515188ff2309d2fca2e","timestamp":"2025-10-09T18:20:38Z","subdir":"storagetransfer","vcs_ref":"refs/tags/storagetransfer/v1.13.1"},\
{"module":"cloud.google.com/go/managedidentities","version":"v1.7.7","vcs_hash":"64e3b33b498653a365f4dafb2a49300830715d9708bfa4c535bf36eca97ee256","timestamp":"2025-09-18T17:06:16Z","subdir":"managedidentities","vcs_ref":"refs/tags/managedidentities/v1.7.7"},\
{"module":"cloud.google.com/go/auth","version":"v0.18.2","vcs_hash":"ba3b6ef6e68413a94833cc5038845ec631f582441ee01616dfc369f17f502b64","timestamp":"2026-02-13T17:14:27Z","subdir":"auth","vcs_ref":"refs/tags/auth/v0.18.2"},\
{"module":"cloud.google.com/go/auth/oauth2adapt","version":"v0.2.8","vcs_hash":"85c196ba7a00f8c42b8abd6f5a7d70e0d659e64e36505e2ec8398441bb2c8985","timestamp":"2025-03-20T15:18:21Z","subdir":"auth/oauth2adapt","vcs_ref":"refs/tags/auth/oauth2adapt/v0.2.8"},\
{"module":"cloud.google.com/go/texttospeech","version":"v1.16.0","vcs_hash":"b0814f16f95c82734497f461977a8d9db72df4f2ddc4a7e7342bae7332736fd9","timestamp":"2025-10-22T18:17:05Z","subdir":"texttospeech","vcs_ref":"refs/tags/texttospeech/v1.16.0"},\
{"module":"cloud.google.com/go/redis","version":"v1.18.3","vcs_hash":"05f6ad842f4809f139b0df8c411b9b040c22016d69414c9025e096a8a4a43d62","timestamp":"2025-09-22T19:12:45Z","subdir":"redis","vcs_ref":"refs/tags/redis/v1.18.3"},\
{"module":"cloud.google.com/go/billing","version":"v1.21.0","vcs_hash":"1beab6b76e58b73b9fbd1a9e68739567e51520be368034c46f7a74051759d79f","timestamp":"2025-10-13T14:06:17Z","subdir":"billing","vcs_ref":"refs/tags/billing/v1.21.0"},\
{"module":"gotest.tools/v3","version":"v3.5.2","vcs_hash":"0059a65e8d8f001755ae605517342ab3e098223b600f512103941850dfee7cc5","timestamp":"2024-09-05T03:48:22Z","subdir":"","vcs_ref":"refs/tags/v3.5.2"},\
{"module":"gotest.tools/gotestsum","version":"v1.13.0","vcs_hash":"429a63b7b1d1dfa80fee0ca076ab9e18b5826e13744a14a0aecf0437b1c58577","timestamp":"2025-09-11T03:13:16Z","subdir":"","vcs_ref":"refs/tags/v1.13.0"},\
{"module":"go.step.sm/crypto","version":"v0.76.2","vcs_hash":"65e0b8b246a35216fc23e3c6d4562c0d60edfd5616841f94c94d3acd1b768e72","timestamp":"2026-02-18T23:38:58Z","subdir":"","vcs_ref":"refs/tags/v0.76.2"},\
{"module":"dario.cat/mergo","version":"v1.0.1","vcs_hash":"ec93951cf02739e6e999cf0902a7970a4983432145559425fd7600b4d7fd553b","timestamp":"2024-08-17T20:16:10Z","subdir":"","vcs_ref":"refs/tags/v1.0.1"},\
{"module":"buf.build/go/protovalidate","version":"v1.1.3","vcs_hash":"9ba3cf55a26ac9b2a72ad6b39a11c6c547594e85e57aba625a6e68114e4f8960","timestamp":"2026-02-19T18:24:11Z","subdir":"","vcs_ref":"refs/tags/v1.1.3"},\
{"module":"buf.build/go/protoyaml","version":"v0.6.0","vcs_hash":"ac0e158f8d9bf560f84436952debbe8b5eab7478802481f9d08ac064a1b4e540","timestamp":"2025-04-30T23:15:30Z","subdir":"","vcs_ref":"refs/tags/v0.6.0"},\
{"module":"golang.org/x/lint","version":"v0.0.0-20190313153728-d0100b6bd8b3","vcs_hash":"1579e0152a59419ec03794703218d5fb2fa620626cecad2e79ddd1fdd861441d","timestamp":"2019-03-13T15:37:28Z","subdir":"","vcs_ref":"refs/tags/v1.6.0"},\
{"module":"gopkg.in/cheggaaa/pb.v1","version":"v1.0.28","vcs_hash":"5efaf6746bd1a20b3f338c432682e43b7cc1f695f4a6b99ef2b0744fa8240372","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":""},\
{"module":"honnef.co/go/tools","version":"v0.0.0-20190523083050-ea95bdfd59fc","vcs_hash":"995bdd0e708de1678d46517c89bc37c3a96f080c46f8be3ca8451c42cf0fb77c","timestamp":"2019-05-23T08:30:50Z","subdir":"tools","vcs_ref":"refs/tags/v0.1.2"},\
{"module":"cloud.google.com/go","version":"v0.26.0","vcs_hash":"9baabd0f71699c684812b7f389cd3d568e37a0683bd02d5556e7076b96b7c14c","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":"refs/tags/v0.26.0"},\
{"module":"github.com/golang/protobuf","version":"v1.4.0-rc.1.0.20200221234624-67d41d38c208","vcs_hash":"c28e9343742243cdee005673f96471e706656cf20d04c341fa92bd68aa01b2fe","timestamp":"2020-02-21T23:46:24Z","subdir":"","vcs_ref":"refs/tags/v0.26.0"},\
{"module":"github.com/golang/protobuf","version":"v1.4.0-rc.4.0.20200313231945-b860323f09d0","vcs_hash":"98ed126049f2fe622e56ae85917fc45f5ac219562243345c1d1eec9fd349dbb1","timestamp":"2020-03-13T23:19:45Z","subdir":"","vcs_ref":"refs/tags/v0.26.0"},\
{"module":"golang.org/x/crypto","version":"v0.0.0-20190308221718-c2843e01d9a2","vcs_hash":"6aba404d0e9e7095b3cccdd40e1c510f30f0db39f1a1159675c50a2e098effa6","timestamp":"2019-03-08T22:17:18Z","subdir":"","vcs_ref":"refs/tags/v0.26.0"},\
{"module":"golang.org/x/crypto","version":"v0.0.0-20191011191535-87dc89f01550","vcs_hash":"2c240249311dd23ac0e4519a6b3e14d9e797e206ecba3d5d123e8908b8493c0e","timestamp":"2019-10-11T19:15:35Z","subdir":"","vcs_ref":"refs/tags/v0.26.0"},\
{"module":"golang.org/x/crypto","version":"v0.0.0-20191219195013-becbf705a915","vcs_hash":"6bcfdbf9c989f589fe1bf63ece25eeb182c0be8e08ef6c30ef7ad58509c94dcd","timestamp":"2019-12-19T19:50:13Z","subdir":"","vcs_ref":"refs/tags/v0.26.0"},\
{"module":"golang.org/x/crypto","version":"v0.0.0-20200510223506-06a226fb4e37","vcs_hash":"c49e5a188ec00e1b191be2bd19551e5eb9d9aeec031879192c1a233cf0c395c2","timestamp":"2020-05-10T22:35:06Z","subdir":"","vcs_ref":"refs/tags/v0.26.0"},\
{"module":"golang.org/x/crypto","version":"v0.0.0-20200622213623-75b288015ac9","vcs_hash":"53f32142c6ae91d9eb1970827fb761d947fb13c8e1584e0aab69bbe8abe723b0","timestamp":"2020-06-22T21:36:23Z","subdir":"","vcs_ref":"refs/tags/v0.26.0"},\
{"module":"golang.org/x/crypto","version":"v0.0.0-20201012173705-84dcc777aaee","vcs_hash":"9911727dc6d7bedd371820da8b7d2145e49f4ef4fe7c4daeab06c7815ec11f86","timestamp":"2020-10-12T17:37:05Z","subdir":"","vcs_ref":"refs/tags/v0.26.0"},\
{"module":"golang.org/x/crypto","version":"v0.0.0-20210921155107-089bfa567519","vcs_hash":"8258f387b3f95c16a93a968ff7903b11adbad1c1d4845a7649fe56982fde63d8","timestamp":"2021-09-21T15:51:07Z","subdir":"","vcs_ref":"refs/tags/v0.26.0"},\
{"module":"golang.org/x/crypto","version":"v0.0.0-20211215153901-e495a2d5b3d3","vcs_hash":"a56309297164f4de1a38474afd0f660413a402a991afcc349f3b14f514431b89","timestamp":"2021-12-15T15:39:01Z","subdir":"","vcs_ref":"refs/tags/v0.26.0"},\
{"module":"golang.org/x/crypto","version":"v0.0.0-20220722155217-630584e8d5aa","vcs_hash":"611d0401c33ecdf51e8182bfd8bc3f628561edb957be179dbfbee2a60632d873","timestamp":"2022-07-22T15:52:17Z","subdir":"","vcs_ref":"refs/tags/v0.26.0"},\
{"module":"golang.org/x/exp","version":"v0.0.0-20190121172915-509febef88a4","vcs_hash":"24a92c0230c7a99a0620162cfb1c9889faa209539dc7a8d6c83fe5ce9072c5a3","timestamp":"2019-01-21T17:29:15Z","subdir":"","vcs_ref":"refs/tags/v0.26.0"},\
{"module":"golang.org/x/lint","version":"v0.0.0-20181026193005-c67002cb31c3","vcs_hash":"6b2abb729597bb5430a8004e6adf93f29a65335edf3dd4666738bb06a30ac3c8","timestamp":"2018-10-26T19:30:05Z","subdir":"","vcs_ref":"refs/tags/v0.26.0"},\
{"module":"golang.org/x/lint","version":"v0.0.0-20190227174305-5b3e6a55c961","vcs_hash":"5dbf106b5fa49944ed578a1d4dd6e6bc1b88cb0bf1f588495a8e835681de3445","timestamp":"2019-02-27T17:43:05Z","subdir":"","vcs_ref":"refs/tags/v0.26.0"},\
{"module":"golang.org/x/mod","version":"v0.2.0","vcs_hash":"d8ce3a26ef11a4e81bfc12391c4d0bf865766bcb2812acb31931c12ee0d326f8","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":"refs/tags/v0.2.0"},\
{"module":"golang.org/x/mod","version":"v0.3.0","vcs_hash":"c7adf8bcca55c1652cddd18c7e949788e387f878482d2553dd5f0a8b63dae8ba","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/mod","version":"v0.6.0-dev.0.20220419223038-86c51ed26bb4","vcs_hash":"8d01fb415e3ecdf7c1c57243ebaa9b07a2cecd87ea1574f747bbc2ab686be373","timestamp":"2022-04-19T22:30:38Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/net","version":"v0.0.0-20180724234803-3673e40ba225","vcs_hash":"645542ab30875dc13b8cd02d69294c39bfb243c2b7a5924217909131e99f8b30","timestamp":"2018-07-24T23:48:03Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/net","version":"v0.0.0-20180826012351-8a410e7b638d","vcs_hash":"e31ab9c9a7277e166a279e2fceb43f80960020ca579fa9fb048ecf231b9c8448","timestamp":"2018-08-26T01:23:51Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/net","version":"v0.0.0-20180906233101-161cd47e91fd","vcs_hash":"babc11e479dde015dda8f2983ff3d34baeca8fc3c8f903c8cdb86bbe5bd33276","timestamp":"2018-09-06T23:31:01Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/net","version":"v0.0.0-20190213061140-3a22650c66bd","vcs_hash":"7fc88000c7c9a3a6439d5b27a58b149d3380e568a6d6928be7bd8ebe28174e5b","timestamp":"2019-02-13T06:11:40Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/net","version":"v0.0.0-20190311183353-d8887717615a","vcs_hash":"714bec1e4a790e75c4d5f275f6cc3299377b76073bf188eb3f7cafe8d758a77d","timestamp":"2019-03-11T18:33:53Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/net","version":"v0.0.0-20190404232315-eb5bcb51f2a3","vcs_hash":"ae86d4593bf8e0a0514f77d1f3831f0f2f4214c3d1e77cc50661343ba4fcdebe","timestamp":"2019-04-04T23:23:15Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/net","version":"v0.0.0-20190620200207-3b0461eec859","vcs_hash":"3c84774e4b117bf9ca7f463a9106bc672447617fbfdf58b268e7a74cb79b8882","timestamp":"2019-06-20T20:02:07Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/net","version":"v0.0.0-20200226121028-0de0cce0169b","vcs_hash":"4a83ce2ea03f8d39736df96f33e3c12c6f2736e4e2d7c83f96b043f96b097451","timestamp":"2020-02-26T12:10:28Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/net","version":"v0.0.0-20200506145744-7e3656a0809f","vcs_hash":"a1bbc21b37faf7d1ede5ef6a8ea7ae9df3d51426d3b2eade960e923ffa0fe5c9","timestamp":"2020-05-06T14:57:44Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/net","version":"v0.0.0-20200520004742-59133d7f0dd7","vcs_hash":"7937e992c0d1f0b4be1e1ea7667ca1b3e9e990a50dc56eb27dfd87719dc91839","timestamp":"2020-05-20T00:47:42Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/net","version":"v0.0.0-20201010224723-4f7140c49acb","vcs_hash":"53493c50fee07205ea3e9e185cc57dba084e4a0bbedb7284b612c11272f67ece","timestamp":"2020-10-10T22:47:23Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/net","version":"v0.0.0-20201021035429-f5854403a974","vcs_hash":"fc8ecf11eddaf279509465d2c0dde9c76fb90ea7c097356e83c6ed4c375e1c16","timestamp":"2020-10-21T03:54:29Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/net","version":"v0.0.0-20210226172049-e18ecbb05110","vcs_hash":"376d3afffd1f62bc65b76e58fc724fe033367b5c6b239fa6c7d0367687a2bfbd","timestamp":"2021-02-26T17:20:49Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/net","version":"v0.0.0-20210428140749-89ef3d95e781","vcs_hash":"4c610f5d1ad731e2395f6a96a5b82e650eea4600164e9e15e4edbf35567b3034","timestamp":"2021-04-28T14:07:49Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/net","version":"v0.0.0-20211112202133-69e39bad7dc2","vcs_hash":"c6b36b0a823fd504b152a69d2c500bc29f970b2c7a68833bbaa05cdf6220aa34","timestamp":"2021-11-12T20:21:33Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/net","version":"v0.0.0-20220225172249-27dd8689420f","vcs_hash":"e71dbc2480c69faa2e636df8111d0db2a797d257a616e7e4ab6d75fa265f92af","timestamp":"2022-02-25T17:22:49Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/net","version":"v0.0.0-20220607020251-c690dde0001d","vcs_hash":"1f322b061efa7e1794fe238a723931ad6e75421ccb8db7c539f27c2cfd891049","timestamp":"2022-06-07T02:02:51Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/net","version":"v0.0.0-20220722155237-a158d28d115b","vcs_hash":"2de939cb01f6e50973e8ce809ddfa5b8ceec4f7d5e7a3aef65caea692eb1f5b5","timestamp":"2022-07-22T15:52:37Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/oauth2","version":"v0.0.0-20180821212333-d2e6202438be","vcs_hash":"aa7163e3ef1faa055e8f431a679121b6aa4ca8647ee8b06ea68618e819017713","timestamp":"2018-08-21T21:23:33Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sync","version":"v0.0.0-20180314180146-1d60e4601c6f","vcs_hash":"a474d88ee14fcd89b314b779d02a4628461aebbfc6613a6ba90e583c35e15b02","timestamp":"2018-03-14T18:01:46Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sync","version":"v0.0.0-20181108010431-42b317875d0f","vcs_hash":"19d48188f5a03164bde06d13dc555c6a2ebc78aafd3dabc7439ec4c9dcca3519","timestamp":"2018-11-08T01:04:31Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sync","version":"v0.0.0-20190423024810-112230192c58","vcs_hash":"b68e56943c8c12324ce0414e7075fd80f016eafe879c0c69e6b25893ebb49bce","timestamp":"2019-04-23T02:48:10Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sync","version":"v0.0.0-20190911185100-cd5d95a43a6e","vcs_hash":"eaa2921285a7524f3154ea98a551847767b259c18f901ed97668900b204aa7a6","timestamp":"2019-09-11T18:51:00Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sync","version":"v0.0.0-20200317015054-43a5402ce75a","vcs_hash":"32b2418d90427c02e56a995b913942d75791bb2c01e6fe4bf4397ff7373d9d58","timestamp":"2020-03-17T01:50:54Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sync","version":"v0.0.0-20201020160332-67f06af15bc9","vcs_hash":"63c5dce6fecd17ec0193ec4ee4221b61ccd0834c745a066128df4000c7ec583e","timestamp":"2020-10-20T16:03:32Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sync","version":"v0.0.0-20220722155255-886fb9371eb4","vcs_hash":"ca22f14e147dd49170157c4d70861fe830bc43b62113fa8da7da7806f515979b","timestamp":"2022-07-22T15:52:55Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20180830151530-49385e6e1522","vcs_hash":"9039de5e2ba775addafc7d6cd06d2390dd60ba6ff11978f6f7708e792ae9b202","timestamp":"2018-08-30T15:15:30Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20180909124046-d0be0721c37e","vcs_hash":"e23d421c76c78ddc7b91228f72ce5f09a2820d7648b887aa27f4e1b7ffe9f8a4","timestamp":"2018-09-09T12:40:46Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20181122145206-62eef0e2fa9b","vcs_hash":"3a7c7117bfc5f35b548f910eca45ea79f9cdf95d622ffdec9d6558b5cafb4197","timestamp":"2018-11-22T14:52:06Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20190215142949-d0b11bdaac8a","vcs_hash":"f12e98c7124bdf27aa44290b851a1ac08039087a76b23733d63312bc784b1556","timestamp":"2019-02-15T14:29:49Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20190412213103-97732733099d","vcs_hash":"aa620878a9f9f2576616d28b01af853869a5a014c70f6b2966e79beae63baeae","timestamp":"2019-04-12T21:31:03Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20190904154756-749cb33beabd","vcs_hash":"85264864acfe88751a9792e7f09fdc367309f145049f9d27238de8933df49364","timestamp":"2019-09-04T15:47:56Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20191005200804-aed5e4c7ecf9","vcs_hash":"76c8b59c51f75579a2bf90e92cc57e8f4e2a500ed3725ed80a3658d53656f5a9","timestamp":"2019-10-05T20:08:04Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20191120155948-bd437916bb0e","vcs_hash":"253eeaed31139dc6c6092c9677b29b309c54686acef6519ba8e7423b19d0c65e","timestamp":"2019-11-20T15:59:48Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20191204072324-ce4227a45e2e","vcs_hash":"2d4d3c85c670be13ab91f6602ebc0a1892bb1d1ae5f03a88fe4f3645248e0a4a","timestamp":"2019-12-04T07:23:24Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20200323222414-85ca7c5b95cd","vcs_hash":"e96cdab86f9bbbd262bddd0a9bc3f4aa35bc1cf702672a6bc6c39fadecbdacea","timestamp":"2020-03-23T22:24:14Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20200509044756-6aff5f38e54f","vcs_hash":"49dd8fca659329042cac2d9c30b873bc5f1b2f44b6e7fd4d6cdac86083d41979","timestamp":"2020-05-09T04:47:56Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20200930185726-fdedc70b468f","vcs_hash":"782e11bb6bc760c1f6beebcc00039d583f0f5dce996fff1adc7a3eac70c2c65b","timestamp":"2020-09-30T18:57:26Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20201119102817-f84b799fce68","vcs_hash":"5e73009c1afca32127ea1cb27ff11e49ac3eab70df61f2738a4e4d8f95e48511","timestamp":"2020-11-19T10:28:17Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20210112080510-489259a85091","vcs_hash":"e029b6116c54d42beede5228f464ee04073cc9623956921b65451e7aa1b3afb5","timestamp":"2021-01-12T08:05:10Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20210423082822-04245dca01da","vcs_hash":"9b60b37567defa9ab3ce9a92538852c39dedfb0055e40f9d0573de15b731e84d","timestamp":"2021-04-23T08:28:22Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20210615035016-665e8c7367d1","vcs_hash":"7389e79775019a8b50e34efbdfd1a6f9ee910ef3822e04963ba444b3d04db399","timestamp":"2021-06-15T03:50:16Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20210616094352-59db8d763f22","vcs_hash":"34a6c6ff0efd234ebc0cc2a5cfdad07405fca7403da460f8d25bfb69091bc0c5","timestamp":"2021-06-16T09:43:52Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20211216021012-1d35b9e2eb4e","vcs_hash":"c2f90f78280ac7ca73e6b4b4597cfa69ed82a1efda74bf57a6f9054174f9172e","timestamp":"2021-12-16T02:10:12Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20220310020820-b874c991c1a5","vcs_hash":"7fc6194a6eb552fe8a04fcd9de7f21b28047a0ebf0efd51c5557201a5f2f03dd","timestamp":"2022-03-10T02:08:20Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20220412211240-33da011f77ad","vcs_hash":"144d2f77c6aa06af51d5820df4e7506c5ecad01c86e770e0027b682ff0d3f9a9","timestamp":"2022-04-12T21:12:40Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20220520151302-bc2c85ada10a","vcs_hash":"f1ca944a9f749f11954489cf91646b40418e0abb15fdadc5040f1dbba7b6ee33","timestamp":"2022-05-20T15:13:02Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/sys","version":"v0.0.0-20220722155257-8c9f86f7a55f","vcs_hash":"2b23297aec08f23623501029a20a4eee604e87ce090001ef6ad0a5930d799dd5","timestamp":"2022-07-22T15:52:57Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/term","version":"v0.0.0-20201126162022-7de9c90e9dd1","vcs_hash":"ead0d27eba7bab1501c9338f4e8f06fcaeada49e20ae7ea11b3242a3e7e99835","timestamp":"2020-11-26T16:20:22Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/term","version":"v0.0.0-20210927222741-03fcf44c2211","vcs_hash":"39b5e1daf17afc894da71452dbc3a21bfd60c2a69143fd621e2f4c38e90360ea","timestamp":"2021-09-27T22:27:41Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/text","version":"v0.3.0","vcs_hash":"e9ec4c6af0acd56750bc559cb32d09c01276f0ac22e70bb84dd122fdfa9e2db7","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":"refs/tags/v0.3.0"},\
{"module":"golang.org/x/text","version":"v0.3.2","vcs_hash":"7b34b135bbda1292ea284d86dfed6e5bdf5fc64fa2fe19d2299467019e4d1944","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":"refs/tags/v0.3.2"},\
{"module":"golang.org/x/text","version":"v0.3.3","vcs_hash":"fc27daff31c5f47a26c7ef94196bf8cee86c79308480edbe7cf8e4dc0c447e43","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":"refs/tags/v0.3.3"},\
{"module":"golang.org/x/text","version":"v0.3.6","vcs_hash":"4b522f9dc77a0e02cea9ffd3b10d3f85a766a1f7900b412ab5c3f6a41718c2ea","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":"refs/tags/v0.3.6"},\
{"module":"golang.org/x/text","version":"v0.3.7","vcs_hash":"3b8a76fcf794a9f1d2139606900fb5805f666e19e7234b234fc05ccf35ef6a06","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":"refs/tags/v0.3.7"},\
{"module":"golang.org/x/tools","version":"v0.0.0-20180917221912-90fa682c2a6e","vcs_hash":"e396d41e128acc62cbad331ee090a99e470d23a3611d8b07d3c2cc41a1cc0b49","timestamp":"2018-09-17T22:19:12Z","subdir":"","vcs_ref":"refs/tags/v0.3.7"},\
{"module":"golang.org/x/tools","version":"v0.0.0-20190114222345-bf090417da8b","vcs_hash":"af3c08c9017348d0a11699087455e33b9a2822c39bdbae5ffe5757b448be7d38","timestamp":"2019-01-14T22:23:45Z","subdir":"","vcs_ref":"refs/tags/v0.3.7"},\
{"module":"golang.org/x/tools","version":"v0.0.0-20190226205152-f727befe758c","vcs_hash":"4e56e084dd75c8283bc4445105a474a9f715b9fd5d860b0e5c12c567ddd9f950","timestamp":"2019-02-26T20:51:52Z","subdir":"","vcs_ref":"refs/tags/v0.3.7"},\
{"module":"golang.org/x/tools","version":"v0.0.0-20190311212946-11955173bddd","vcs_hash":"844d4dad510f2c01dc0afd28d06c23ff2ffc385ddf161fb554c91479292e1856","timestamp":"2019-03-11T21:29:46Z","subdir":"","vcs_ref":"refs/tags/v0.3.7"},\
{"module":"golang.org/x/tools","version":"v0.0.0-20190328211700-ab21143f2384","vcs_hash":"7120c62aa1f536f776c11268e04c38e6f605d466d77fdee84ce605103cb163c9","timestamp":"2019-03-28T21:17:00Z","subdir":"","vcs_ref":"refs/tags/v0.3.7"},\
{"module":"golang.org/x/tools","version":"v0.0.0-20190524140312-2c0ae7006135","vcs_hash":"4c8a444f6107791541908255bd50e11af470e356ff01ab9ac1f463decf2926fe","timestamp":"2019-05-24T14:03:12Z","subdir":"","vcs_ref":"refs/tags/v0.3.7"},\
{"module":"golang.org/x/tools","version":"v0.0.0-20191119224855-298f0cb1881e","vcs_hash":"4bdade122172b6644bff0ea433cdb68d5460d8b894432e030ced235888ac6fdc","timestamp":"2019-11-19T22:48:55Z","subdir":"","vcs_ref":"refs/tags/v0.3.7"},\
{"module":"golang.org/x/tools","version":"v0.0.0-20200509030707-2212a7e161a5","vcs_hash":"53acb10a67b5da14b1419240266b5748e1efb87d307ea8aeeebb8c782226d856","timestamp":"2020-05-09T03:07:07Z","subdir":"","vcs_ref":"refs/tags/v0.3.7"},\
{"module":"golang.org/x/tools","version":"v0.0.0-20201224043029-2b0845dc783e","vcs_hash":"da5f801626b8ecc7f643f170be0442e698401205c545c04533826fc759af9266","timestamp":"2020-12-24T04:30:29Z","subdir":"","vcs_ref":"refs/tags/v0.3.7"},\
{"module":"golang.org/x/tools","version":"v0.1.12","vcs_hash":"caef14ab3734fcbf0d05c7a9aab8ffc3dee6066c109316257d37ec9c806f1482","timestamp":"1970-01-01T00:00:00Z","subdir":"","vcs_ref":"refs/tags/v0.1.12"},\
{"module":"golang.org/x/xerrors","version":"v0.0.0-20190717185122-a985d3407aa7","vcs_hash":"19bf66358270f1db6b287805895c6fc8385236e01234a96b3da1d15fe70245f7","timestamp":"2019-07-17T18:51:22Z","subdir":"","vcs_ref":"refs/tags/v0.1.12"},\
{"module":"golang.org/x/xerrors","version":"v0.0.0-20191011141410-1b5146add898","vcs_hash":"8c142112d3bf2046dde4cb3dda11db03c95a8ab51bfb424b4d31be45594f7e6a","timestamp":"2019-10-11T14:14:10Z","subdir":"","vcs_ref":"refs/tags/v0.1.12"},\
{"module":"golang.org/x/xerrors","version":"v0.0.0-20191204190536-9bdfabe68543","vcs_hash":"a190c0bd506167cc1631eefeb81697d88fd666066c0d35abb4f058915f9881cd","timestamp":"2019-12-04T19:05:36Z","subdir":"","vcs_ref":"refs/tags/v0.1.12"},\
{"module":"golang.org/x/xerrors","version":"v0.0.0-20200804184101-5ec99f83aff1","vcs_hash":"1a7eef0babb47828059471e537bef1e9023bf22cd1c23e5fcaf7523b68332e82","timestamp":"2020-08-04T18:41:01Z","subdir":"","vcs_ref":"refs/tags/v0.1.12"},\
{"module":"golang.org/x/xerrors","version":"v0.0.0-20220517211312-f3a8303e98df","vcs_hash":"b58a4cb0d6e1fba648c1252d9b2defce5bc798b0687f24402e56035456e8856c","timestamp":"2022-05-17T21:13:12Z","subdir":"","vcs_ref":"refs/tags/v0.1.12"},\
{"module":"honnef.co/go/tools","version":"v0.0.0-20190102054323-c2f93a96b099","vcs_hash":"1c8623cf2c7ebfeee0aad3729998ea1016b99ce59691f48e992f1fbd376fe06b","timestamp":"2019-01-02T05:43:23Z","subdir":"tools","vcs_ref":"refs/tags/v0.1.12"}\
]'
|