bitcoinleveldb-file 0.1.19

contains file abstractions from the bitcoin leveldb
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
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
[build-dependencies.bitcoin-cfg]
path = "../bitcoin-cfg"
version = "0.1.19"

[dependencies.bitcoin-derive]
path = "../bitcoin-derive"
version = "0.1.19"

[dependencies.bitcoin-imports]
path = "../bitcoin-imports"
version = "0.1.19"

[dependencies.bitcoin-support]
path = "../bitcoin-support"
version = "0.1.19"

[dependencies.bitcoinleveldb-key]
path = "../bitcoinleveldb-key"
version = "0.1.19"

[dependencies.bitcoinleveldb-slice]
path = "../bitcoinleveldb-slice"
version = "0.1.19"

[dependencies.bitcoinleveldb-status]
path = "../bitcoinleveldb-status"
version = "0.1.19"

[dependencies.bitcoinleveldb-util]
path = "../bitcoinleveldb-util"
version = "0.1.19"

[dependencies.derive_builder]
workspace = true

[dependencies.getset]
workspace = true

[dependencies.libc-stdhandle]
workspace = true

[dependencies.tracing]
workspace = true

[package]
authors = ["klebs <none>"]
description = "contains file abstractions from the bitcoin leveldb"
documentation = "https://docs.rs/bitcoinleveldb-file"
edition = "2021"
license = "MIT"
name = "bitcoinleveldb-file"
repository = "https://github.com/klebs6/bitcoin-rs"
version = "0.1.19"

[package.metadata]
cpp-authors = [
    "Wladimir J. van der Laan <laanwj@gmail.com>",
    "MarcoFalke <falke.marco@gmail.com>",
    "Pieter Wuille <pieter.wuille@gmail.com>",
    "fanquake <fanquake@gmail.com>",
    "Gavin Andresen <gavinandresen@gmail.com>",
    "Hennadii Stepanov <32963518+hebasto@users.noreply.github.com>",
    "Wladimir J. van der Laan <laanwj@protonmail.com>",
    "John Newbery <john@johnnewbery.com>",
    "practicalswift <practicalswift@users.noreply.github.com>",
    "Philip Kaufmann <phil.kaufmann@t-online.de>",
    "Andrew Chow <achow101-github@achow101.com>",
    "Cory Fields <cory-nospam-@coryfields.com>",
    "Jonas Schnelli <dev@jonasschnelli.ch>",
    "Matt Corallo <git@bluematt.me>",
    "Jon Atack <jon@atack.com>",
    "Luke Dashjr <luke-jr+git@utopios.org>",
    "Russell Yanofsky <russ@yanofsky.org>",
    "Carl Dong <contact@carldong.me>",
    "João Barbosa <joao.paulo.barbosa@gmail.com>",
    "Jeff Garzik <jgarzik@exmulti.com>",
    "s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b>",
    "Gregory Maxwell <greg@xiph.org>",
    "Suhas Daftuar <sdaftuar@gmail.com>",
    "Alex Morcos <morcos@chaincode.com>",
    "Sebastian Falbesoner <sebastian.falbesoner@gmail.com>",
    "W. J. van der Laan <laanwj@protonmail.com>",
    "Jonas Schnelli <jonas.schnelli@include7.ch>",
    "Pieter Wuille <pieter@wuille.net>",
    "Jeff Garzik <jgarzik@bitpay.com>",
    "Sjors Provoost <sjors@sprovoost.nl>",
    "Anthony Towns <aj@erisian.com.au>",
    "Samuel Dobson <dobsonsa68@gmail.com>",
    "Karl-Johan Alm <karljohan-alm@garage.co.jp>",
    "Matt Corallo <matt@bluematt.me>",
    "Amiti Uttarwar <amiti@uttarwar.org>",
    "Ben Woosley <ben.woosley@gmail.com>",
    "Gregory Sanders <gsanders87@gmail.com>",
    "MeshCollider <dobsonsa68@gmail.com>",
    "Vasil Dimov <vd@FreeBSD.org>",
    "Peter Todd <pete@petertodd.org>",
    "Chun Kuan Lee <ken2812221@gmail.com>",
    "Jorge Timón <jtimon@jtimon.cc>",
    "James O'Beirne <james.obeirne@gmail.com>",
    "Pavel Janík <Pavel@Janik.cz>",
    "Fabian Jahr <fjahr@protonmail.com>",
    "Jeff Garzik <jeff@garzik.org>",
    "Cozz Lovan <cozzlovan@yahoo.com>",
    "Michael Ford <fanquake@gmail.com>",
    "Suhas Daftuar <sdaftuar@chaincode.com>",
    "Patrick Strateman <patrick.strateman@gmail.com>",
    "Daniel Kraft <d@domob.eu>",
    "Jim Posen <jim.posen@gmail.com>",
    "Aaron Clauson <aaron@sipsorcery.com>",
    "gzhao408 <gzhao408@berkeley.edu>",
    "Antoine Riard <ariard@student.42.fr>",
    "Jim Posen <jimpo@coinbase.com>",
    "jtimon <jtimon@monetize.io>",
    "Carl Dong <accounts@carldong.me>",
    "R E Broadley <rebroad+github@gmail.com>",
    "glozow <gzhao408@berkeley.edu>",
    "glozow <gloriajzhao@gmail.com>",
    "Giel van Schijndel <me@mortis.eu>",
    "James O'Beirne <james.obeirne@pm.me>",
    "Jeremy Rubin <jeremy.l.rubin@gmail.com>",
    "Gregory Maxwell <gmaxwell@gmail.com>",
    "BtcDrak <btcdrak@gmail.com>",
    "Eric Lombrozo <elombrozo@gmail.com>",
    "jtimon <jtimon@blockstream.io>",
    "Chris Moore <dooglus@gmail.com>",
    "merge-script <falke.marco@gmail.com>",
    "Jarol Rodriguez <jarolrod@tutanota.com>",
    "Kiminuo <kiminuo@protonmail.com>",
    "Glenn Willen <gwillen@nerdnet.org>",
    "Satoshi Nakamoto <satoshin@gmx.com>",
    "sirius-m <sirius-m@1a98c847-1fd6-4fd8-948a-caf3550aa51b>",
    "Martin Zumsande <mzumsande@gmail.com>",
    "Antoine Poinsot <darosior@protonmail.com>",
    "instagibbs <gsanders87@gmail.com>",
    "Evan Klitzke <evan@eklitzke.org>",
    "Nils Schneider <nils.schneider@gmail.com>",
    "Ivan Metlushko <metlushko@gmail.com>",
    "Jeremy Rubin <j@rubin.io>",
    "Johnson Lau <jl2012@xbt.hk>",
    "Micha <michagogo@server.fake>",
    "Troy Giorshev <troygiorshev@gmail.com>",
    "Michael Dietz <michael.dietz@waya.ai>",
    "Pieter Wuille <sipa@ulyssis.org>",
    "Tom Harding <tomh@thinlink.com>",
    "Warren Togami <wtogami@gmail.com>",
    "gavinandresen <gavinandresen@1a98c847-1fd6-4fd8-948a-caf3550aa51b>",
    "tcatm <tcatm@gawab.com>",
    "Dhruv Mehta <856960+dhruv@users.noreply.github.com>",
    "Marko Bencun <marko.bencun@monetas.net>",
    "NicolasDorier <nicolas.dorier@gmail.com>",
    "dexX7 <dexx@bitwatch.co>",
    "Akio Nakamura <nakamura@dgtechnologies.co.jp>",
    "David A. Harding <dave@dtrt.org>",
    "Martin Ankerl <martin.ankerl@gmail.com>",
    "Patick Strateman <patrick.strateman@gmail.com>",
    "mrbandrews <bandrewsny@gmail.com>",
    "Emil Engler <me@emilengler.com>",
    "JaSK <temp@temp.temp>",
    "Kaz Wesley <keziahw@gmail.com>",
    "Casey Rodarmor <casey@rodarmor.com>",
    "Gleb Naumenko <naumenko.gs@gmail.com>",
    "Jesse Cohen <jc@jc.lol>",
    "Kamil Domanski <kdomanski@kdemail.net>",
    "Kristaps Kaupe <kristaps@blogiem.lv>",
    "nicolas.dorier <nicolas.dorier@gmail.com>",
    "251 <13120787+251Labs@users.noreply.github.com>",
    "Igor Cota <igor@codexapertus.com>",
    "Jimmy Song <jaejoon@gmail.com>",
    "paveljanik <Pavel@Janik.cz>",
    "xanatos <xanatos@geocities.com>",
    "Adam Jonas <jonas@chaincode.com>",
    "ENikS <evgeni@eniks.com>",
    "Elichai Turkel <elichai.turkel@gmail.com>",
    "Harris <brakmic@gmail.com>",
    "Jack Grigg <jack@z.cash>",
    "Mark Friedenbach <mark@friedenbach.org>",
    "super3 <me@super3.org>",
    "Jeffrey Czyz <jkczyz@gmail.com>",
    "Julian Fleischer <tirednesscankill@warhog.net>",
    "S3RK <1466284+S3RK@users.noreply.github.com>",
    "Thomas Snider <tjps636@gmail.com>",
    "jnewbery <john@johnnewbery.com>",
    "mruddy <mruddy@users.noreply.github.com>",
    "nthumann <me@n-thumann.de>",
    "wodry <wodry@users.noreply.github.com>",
    "21E14 <21xe14@gmail.com>",
    "Andrew Chow <achow101@gmail.com>",
    "Jon Layton <me@jonl.io>",
    "William Casarin <jb55@jb55.com>",
    "darosior <darosior@protonmail.com>",
    "nomnombtc <mastergizmo@arcor.de>",
    "Ben Carman <benthecarman@live.com>",
    "Cory Fields <theuni-nospam-@xbmc.org>",
    "Cristian Mircea Messel <mess110@gmail.com>",
    "Han Lin Yap <codler@gmail.com>",
    "Ricardo M. Correia <rcorreia@wizy.org>",
    "Christian von Roques <roques@mti.ag>",
    "Conor Scott <conor.r.scott.88@gmail.com>",
    "Johnathan Corgan <johnathan@corganlabs.com>",
    "Pavel Vasin <pavel@vasin.nl>",
    "Peter Bushnell <bushsolo@gmail.com>",
    "--author=Satoshi Nakamoto <satoshin@gmx.com>",
    "Adam Weiss <adam@signal11.com>",
    "Andreas Schildbach <andreas@schildbach.de>",
    "Chris Stewart <stewart.chris1234@gmail.com>",
    "Dan Raviv <dan@soundradix.com>",
    "Daniel Cousens <github@dcousens.com>",
    "Jameson Lopp <jameson.lopp@gmail.com>",
    "Johnson Lau <jl2012@users.noreply.github.com>",
    "Jordan Lewis <jordanthelewis@gmail.com>",
    "Josh Triplett <josh@joshtriplett.org>",
    "João Barbosa <joao@uphold.com>",
    "Neha Narula <narula@gmail.com>",
    "Pierre Rochard <pierre@rochard.org>",
    "Steven Roose <steven@stevenroose.org>",
    "danra <danra@users.noreply.github.com>",
    "isle2983 <isle2983@yahoo.com>",
    "marcoagner <marco@agner.io>",
    "murrayn <github@nesbitt.ca>",
    "sinetek <pitwuu@gmail.com>",
    "Drak <drak@zikula.org>",
    "Forrest Voight <forrest@forre.st>",
    "JamesC <james.chiangwu@gmail.com>",
    "JeremyRand <biolizard89@gmail.com>",
    "Karl-Johan Alm <kalle.alm@gmail.com>",
    "Nils Schneider <nils@nilsschneider.net>",
    "Ross Nicoll <jrn@jrn.me.uk>",
    "freewil <sean@eternalrise.com>",
    "fyquah <fyquah@protonmail.com>",
    "lucash-dev <lucash.dev@gmail.com>",
    "randy-waterhouse <noone@yodasan>",
    "whythat <yuri.zhykin@gmail.com>",
    "0xb10c <0xb10c@gmail.com>",
    "Ashley Holman <dscvlt@gmail.com>",
    "Celil <celil.kj@gmail.com>",
    "Christian Decker <decker.christian@gmail.com>",
    "Guillermo Céspedes Tabárez <dev.dertin@gmail.com>",
    "Igor Cota <igor@openbook.hr>",
    "Janne Pulkkinen <jannepulk@gmail.com>",
    "Kaz Wesley <kaz@lambdaverse.org>",
    "Larry Ruane <larryruane@gmail.com>",
    "Martin Erlandsson <martin@megabit.se>",
    "Mason Simon <masonsimon@gmail.com>",
    "Matt Giuca <matt.giuca@gmail.com>",
    "Mike Hearn <hearn@google.com>",
    "Niklas Gögge <n.goeggi@gmail.com>",
    "Otto Allmendinger <otto.allmendinger@gmail.com>",
    "Rune K. Svendsen <runesvend@gmail.com>",
    "Tim Ruffing <crypto@timruffing.de>",
    "Vegard Nossum <vegard.nossum@gmail.com>",
    "Zak Wilcox <iwilcox@iwilcox.me.uk>",
    "benthecarman <benthecarman@live.com>",
    "fsb4000 <fsb4000@yandex.ru>",
    "glowang <wanggloria21@gmail.com>",
    "mruddy <6440430+mruddy@users.noreply.github.com>",
    "p2k <patrick.p2k.schneider@gmail.com>",
    "randy-waterhouse <kiwigb@yahoo.com>",
    "setpill <37372069+setpill@users.noreply.github.com>",
    "Alexander Kjeldaas <alexander.kjeldaas@gmail.com>",
    "Andrew C <achow101@gmail.com>",
    "Andrew Toth <andrewstoth@gmail.com>",
    "Bob McElrath <bob_git@mcelrath.org>",
    "Danny Lee <robot-visions@protonmail.com>",
    "Dimitris Apostolou <dimitris.apostolou@icloud.com>",
    "Doug Huff <mith@jrbobdobbs.org>",
    "Douglas Roark <doug@bloq.com>",
    "DrahtBot <39886733+DrahtBot@users.noreply.github.com>",
    "Federico Bond <federicobond@gmail.com>",
    "Graham Krizek <graham@krizek.io>",
    "Henrik Jonsson <me@hkjn.me>",
    "James Chiang <james.chiangwu@gmail.com>",
    "James Hilliard <james.hilliard1@gmail.com>",
    "Jeff Rade <jeffrade@gmail.com>",
    "Kalle Alm <kalle.alm@gmail.com>",
    "Lawrence Nahum <lawrence@greenaddress.it>",
    "Manuel Araoz <manuelaraoz@gmail.com>",
    "Michael Hendricks <michael@ndrix.org>",
    "Robert Backhaus <robbak@robbak.com>",
    "Roman Mindalev <r000n@r000n.net>",
    "Roy Badami <roy@gnomon.org.uk>",
    "Vinnie Falco <vinnie.falco@gmail.com>",
    "Werner Lemberg <wl@gnu.org>",
    "Whit J <whitj00@users.noreply.github.com>",
    "accraze <accraze@gmail.com>",
    "andrewtoth <andrewstoth@gmail.com>",
    "donaloconnor <donaloconnor@gmail.com>",
    "eugene <elzeigel@gmail.com>",
    "fcicq <fcicq@fcicq.net>",
    "gubatron <gubatron@gmail.com>",
    "lsilva01 <lsilva01@protonmail.com>",
    "ptschip <peter.tschipper@gmail.com>",
    "randymcmillan <randy.lee.mcmillan@gmail.com>",
    "sandakersmann <sandakersmann@users.noreply.github.com>",
    "sanket1729 <sanket1729@gmail.com>",
    "sje397 <sje397@gmail.com>",
    "Alex B <paraipanakos@gmail.com>",
    "Brandon Dahler <brandon.dahler@gmail.com>",
    "Chris chris@vikki-old.(none)",
    "CryptAxe <cryptaxe@gmail.com>",
    "Daniel Edgecumbe <esotericnonsense@danedgecumbe.com>",
    "Daniel Ingram <ingramds@appstate.edu>",
    "David Joel Schwartz <davidjoelschwartz@gmail.com>",
    "Dev Random <c1.github@niftybox.net>",
    "Dominyk Tiller <DomT4@users.noreply.github.com>",
    "Douglas Roark <joroark@vt.edu>",
    "Elliott Jin <elliott.jin@gmail.com>",
    "Eric Hosmer <EricJ2190@gmail.com>",
    "Fabian Jahr <fabian.jahr@whu.edu>",
    "Fordy <fanquake@gmail.com>",
    "Huang Le <4tarhl@gmail.com>",
    "Jay Weisskopf <jay@jayschwa.net>",
    "Jeff Garzik <jeff@bloq.com>",
    "Jeff Garzik <jgarzik@pobox.com>",
    "John Maguire <johnmaguire2013@gmail.com>",
    "Justin Turner Arthur <justinarthur@gmail.com>",
    "Kosta Zertsekel <zertsekel@gmail.com>",
    "LongShao007 <007longshao@gmail.com>",
    "Martin Ankerl <Martin.Ankerl@gmail.com>",
    "Martin Erlandsson <merland@users.noreply.github.com>",
    "Matthew Zipkin <pinheadmz@gmail.com>",
    "Michael Bemmerl <mail@mx-server.de>",
    "Michael Ford <fanquake@users.noreply.github.com>",
    "Mitchell Cash <mitchell@mitchellcash.com>",
    "Murray Nesbitt <github@nesbitt.ca>",
    "Oliver Gugger <gugger@gmail.com>",
    "Pedro Branco <branco@uphold.com>",
    "Prayank <prayank23@outlook.com>",
    "Randolf Richardson <randolf@richardson.tw>",
    "Roman Zeyde <me@romanzey.de>",
    "Russell Yanofsky <russ@chaincode.com>",
    "S. Matthew English <s-matthew-english@users.noreply.github.com>",
    "Shashwat <svangani239@gmail.com>",
    "Sishir Giri <sishirg27@gmail.com>",
    "Thomas Zander <thomas@thomaszander.se>",
    "UdjinM6 <UdjinM6@dash.org>",
    "Venkatesh Srinivas <me@endeavour.zapto.org>",
    "daniel <arowser@gmail.com>",
    "devrandom <c1.github@niftybox.net>",
    "dexX7 <ugithub@bitwatch.co>",
    "ezegom <ezegom@bu.edu>",
    "fivepiece <fivepiece@users.noreply.github.com>",
    "flack <flack@contentcontrol-berlin.de>",
    "globalcitizen <walter@pratyeka.org>",
    "grimd34th <ubpd34th@gmail.com>",
    "jonnynewbs <jonnynewbs@gmail.com>",
    "jtimon <jtimon@jtimon.cc>",
    "kjj2 <github@jerviss.org>",
    "pierrenn <git@pnn.sh>",
    "theuni <theuni-nospam@xbmc.org>",
    "10xcryptodev <10xcryptodev@gmail.com>",
    "Akira Takizawa <akx20000@protonmail.com>",
    "Amir Abrams <AmirAbrams@users.noreply.github.com>",
    "Andrew Poelstra <apoelstra@wpsoftware.net>",
    "Antoine Riard <dev@ariard.me>",
    "BitcoinTsunami <>",
    "Braydon Fuller <braydon@bitpay.com>",
    "Brian Liotti <bliotti@protonmail.com>",
    "Bruno Garcia <brunoely.gc@gmail.com>",
    "Bushstar <bushsolo@gmail.com>",
    "Calvin Kim <calvin@kcalvinalvin.info>",
    "Dag Robole <dag.robole@gmail.com>",
    "Daniel Cousens <dcousens@users.noreply.github.com>",
    "Daniel Folkinshteyn <nanotube@users.sourceforge.net>",
    "Dave Collins <davec@conformal.com>",
    "DesWurstes <DesWurstes@users.noreply.github.com>",
    "Doug <joroark@vt.edu>",
    "Eelis <eelis@bitonic.nl>",
    "Elle Mouton <elle.mouton@gmail.com>",
    "Eric R. Schulz <ersmail@gmail.com>",
    "Ethan Heilman <Ethan.R.Heilman@gmail.com>",
    "EthanHeilman <ethan.r.heilman@gmail.com>",
    "Ferdinando M. Ametrano <fametrano@users.noreply.github.com>",
    "Florian Schmaus <flo@geekplace.eu>",
    "Gloria Zhao <gzhao408@berkeley.edu>",
    "Ian Kelling <ian@iankelling.org>",
    "Isidoro Ghezzi <isidoro.ghezzi@icloud.com>",
    "James Evans <keystrike@users.noreply.github.com>",
    "John Bampton <jbampton@users.noreply.github.com>",
    "Jon Lund Steffensen <jonlst@gmail.com>",
    "Jonas Nick <jonasd.nick@gmail.com>",
    "Jordan Baczuk <Jordan.Baczuk@gmail.com>",
    "Josh Lehan <krellan@krellan.net>",
    "Julian Fleischer <scravy@users.noreply.github.com>",
    "Ken Lee <ken2812221@gmail.com>",
    "Lake Denman <lake@lakedenman.com>",
    "Lauda <lauda.m@protonmail.ch>",
    "Luca Venturini <luca@yepa.com>",
    "Marcin Jachymiak <marcin.jachymiak1@gmail.com>",
    "Mark Friedenbach <mark@monetize.io>",
    "Matthew King <chohag@jtan.com>",
    "Michael Goldstein <michael@bitstein.org>",
    "Michael Polzer <hashrate@pm-tech.at>",
    "Michael Rotarius <michael-rotarius@rotamedia.de>",
    "Michagogo <Michagogo@users.noreply.github.com>",
    "Mike Hearn <mike@plan99.net>",
    "Murch <alszacrel@web.de>",
    "Pavol Rusnak <stick@gk2.sk>",
    "Prateek Sancheti <psancheti110@gmail.com>",
    "Richard Kiss <him@richardkiss.com>",
    "Ruben Dario Ponticelli <rdponticelli@gmail.com>",
    "Ryan Havar <rhavar@protonmail.com>",
    "Samer Afach <info@afach.de>",
    "Sebastian Kung <seb.kung@gmail.com>",
    "SergioDemianLerner <Sergio.d.Lerner@gmail.com>",
    "Shaul Kfir <shaul.kfir@gmail.com>",
    "Shawn Wilkinson <me@super3.org>",
    "ShubhamPalriwala <spalriwalau@gmail.com>",
    "Spencer Lievens <spencerlievens@users.noreply.github.com>",
    "Stephan Oeste <emzy@emzy.de>",
    "TheCharlatan <seb.kung@gmail.com>",
    "Thomas Holenstein <thomas.holenstein@gmail.com>",
    "Thomas Kerin <afk11@users.noreply.github.com>",
    "Tyler Hardin <th020394@gmail.com>",
    "User <naumenko.gs@gmail.com>",
    "Zero <zero1729@protonmail.com>",
    "Zero-1729 <zero1729@protonmail.com>",
    "cjdelisle <calebdelisle@lavabit.com>",
    "codeShark149 <rajarshi149@gmail.com>",
    "dannmat <mattwardiom>",
    "kazcw <keziahw@gmail.com>",
    "lpescher <lukas_078@yahoo.ca>",
    "lucash.dev@gmail.com <lucash.dev@gmail.com>",
    "mryandao <mryandao@tutanota.com>",
    "nijynot <nijynot@gmail.com>",
    "ntrgn <ntrgnt@gmail.com>",
    "t-bast <bastuc@hotmail.fr>",
    "whythat <whythat@protonmail.com>",
    "windsok <windsok@protonmail.com>",
    "1Il1 <33648696+1Il1@users.noreply.github.com>",
    "= <ruhiasap@gmail.com>",
    "Aaron Golliver <aaron.golliver@gmail.com>",
    "Alex <alex>",
    "Alex Groce <agroce@gmail.com>",
    "Alex Vear <axvr@users.noreply.github.com>",
    "Alex Waters <AmpedAl@Gmail.com>",
    "Alexander Leishman <leishman3@gmail.com>",
    "Alexey Ivanov <alexey.ivanes@gmail.com>",
    "Alice Wonder <github@domblogger.net>",
    "Alin Rus <alin@fsck.ro>",
    "Alon Muroch <alonmuroch@gmail.com>",
    "Anditto Heristyo <anditto.heristyo@gmail.com>",
    "Andrey <al42and@gmail.com>",
    "Anthony Fieroni <bvbfan@abv.bg>",
    "Antoine Le Calvez <antoine@alc.io>",
    "Arvid Norberg <arvid@blockstream.io>",
    "Benedict Chan <bencxr@fragnetics.com>",
    "Block Mechanic <blockmecha@gmail.com>",
    "Bryan Bishop <kanzure@gmail.com>",
    "Carlo Alberto Ferraris <github@cafxx.strayorange.com>",
    "Chris Beams <chris@beams.io>",
    "Chris Gavin <chris@chrisgavin.me>",
    "Chris Howie <me@chrishowie.com>",
    "Christopher Latham <sudosurootdev@gmail.com>",
    "Chuf <42591821+gapeman@users.noreply.github.com>",
    "Clark Gaebel <cgaebel@csclub.uwaterloo.ca>",
    "Colin Dean <git@cad.cx>",
    "Daki Carnhof <carnhofdaki@gmail.com>",
    "Damian Mee <spam@meedamian.com>",
    "Dan Benjamin <danben@gmail.com>",
    "Dan Gershony <dan.gershony@gmail.com>",
    "Daniel Larimer <dlarimer@gmail.com>",
    "Danny-Scott <daniel@coincorner.com>",
    "David FRANCOIS <david.francois@webflows.fr>",
    "David Hill <dhill@conformal.com>",
    "David Perry <enmaku@gmail.com>",
    "David Reikher <david.reikher@gmail.com>",
    "Dawid Spiechowicz <spiechu@gmail.com>",
    "Dean Lee <xslidian@gmail.com>",
    "Dmitry Petukhov <dp@simplexum.com>",
    "Duncan Dean <duncangleeddean@gmail.com>",
    "Dwayne C. Litzenberger <dlitz@dlitz.net>",
    "Dylan Noblesmith <nobled@dreamwidth.org>",
    "Eric Shaw <ericshaw.linux@gmail.com>",
    "Eric Shaw <ericshawlinux@users.noreply.github.com>",
    "Ethan Heilman <ethan.r.heilman@gmail.com>",
    "Fabian Raetz <fabian.raetz@gmail.com>",
    "Felix Weis <mail@felixweis.com>",
    "Flavien Charlon <flavien@charlon.net>",
    "GChuf <gasper.cefarin@gmail.com>",
    "Giulio Lombardo <giulio.lombardo@gmail.com>",
    "Giuseppe Mazzotta <gdm85@users.noreply.github.com>",
    "GreatSock <greatsock@protonmail.com>",
    "Haakon Nilsen <haakonn@gmail.com>",
    "Hampus Sjöberg <hampus.sjoberg@gmail.com>",
    "J Ross Nicoll <jrn@jrn.me.uk>",
    "Jacob Welsh <jacob@welshcomputing.com>",
    "Jan Beich <jbeich@FreeBSD.org>",
    "JeremyCrookshank <46864828+JeremyCrookshank@users.noreply.github.com>",
    "Jiaxing Wang <hello.wjx@gmail.com>",
    "Joao Fonseca <jpdf.fonseca@gmail.com>",
    "JoelKatz <DavidJoelSchwartz@GMail.com>",
    "Jonas Schnelli <jonasschnelli@Jonass-MacBook-Pro.local>",
    "Jonathan Cross <jonathancross@users.noreply.github.com>",
    "Jonathan Schoeller <jonathan.schoeller@rea-group.com>",
    "Joonmo Yang <dev@remagpie.com>",
    "Josu Goñi <josu_z@hotmail.com>",
    "João Barbosa <joao@bitreserve.org>",
    "Kangmo <kangmo@nanolat.com>",
    "Karel Bílek <kb@karelbilek.com>",
    "Kevin Cooper <k.coopr@gmail.com>",
    "Klement Tan <klementtan@gmail.com>",
    "Kvaciral <kvaciral@protonmail.com>",
    "Lenny Maiorani <lenny@colorado.edu>",
    "Marco <falke.marco@gmail.com>",
    "Mario Dian <mariodian@gmail.com>",
    "Marius Hanne <marius.hanne@sourceagency.org>",
    "Marius Kjærstad <sandakersmann@users.noreply.github.com>",
    "Mark Tyneway <mark@purse.io>",
    "Marty Jones <murtin.jones@gmail.com>",
    "Masahiko Hyuga <mail@mhyuga.jp>",
    "Matt Bogosian <mtb19@columbia.edu>",
    "Matthew English <s-matthew-english@users.noreply.github.com>",
    "Michael <fanquake@users.noreply.github.com>",
    "Michael Dietz <michaeldietz@Michaels-MacBook-Air.local>",
    "Michael Folkson <michaelfolkson@gmail.com>",
    "Miguel Herranz <miguel@ipglider.org>",
    "Mike Hearn <mike@riker.plan99.net>",
    "Mitchell Cash <mitchell.cash@gmail.com>",
    "Mustafa <mus@musalbas.com>",
    "Nadav Ivgi <nadav@shesek.info>",
    "Nathan Marley <nathan.marley@gmail.com>",
    "Nathaniel Mahieu <nate@mahie.us>",
    "Nicolas Benoit <nbenoit@tuxfamily.org>",
    "NikhilBartwal <nikhilbartwal1234@gmail.com>",
    "Nikolay Mitev <face@hmel.org>",
    "Paul Rabahy <PRabahy@gmail.com>",
    "Pavlos Antoniou <antoniou-p@hotmail.com>",
    "Pavol Rusnak <pavol@rusnak.io>",
    "Pieter Wuille <pieterw@google.com>",
    "Prayank <prayank@tutanota.de>",
    "René Nyffenegger <mail@renenyffenegger.ch>",
    "Rob Van Mieghem <rob@vanmieghemcloud.com>",
    "Rod Vagg <rod@vagg.org>",
    "Rusty Russell <rusty@rustcorp.com.au>",
    "Samuel B. Atwood <samuel.atwood@gmail.com>",
    "Scott Ellis <sje397@gmail.com>",
    "Scott Howard <showard314@gmail.com>",
    "Seleme Topuz <seleme94@hotmail.com>",
    "Simon Males <sime@sime.net.au>",
    "Sriram <sriramdvt@gmail.com>",
    "Stéphane Gimenez <dev@gim.name>",
    "Sylvain Goumy <sylvain@uplab.fr>",
    "Timothy Redaelli <timothy.redaelli@gmail.com>",
    "Torkel Rogstad <torkel@rogstad.io>",
    "Trevin Hofmann <trevinhofmann@gmail.com>",
    "Varunram <vrg2009@ymail.com>",
    "Will Binns <binns@21.co>",
    "Witchspace <witchspace81@gmail.com>",
    "Yoichi Hirai <i@yoichihirai.com>",
    "Yuri Zhykin <yuri.zhykin@gmail.com>",
    "aideca <aideca@users.noreply.github.com>",
    "amadeuszpawlik <apawlik@protonmail.com>",
    "bruno <brunoely.gc@gmail.com>",
    "brunoerg <brunoely.gc@gmail.com>",
    "cardpuncher <mauron@vmail.me>",
    "coderrr <coderrr.contact@gmail.com>",
    "constantined <nobody@constantined.com>",
    "crowning- <crowning-@users.noreply.github.com>",
    "ctp-tsteenholdt <tsteenholdt@cascadetechnologypartners.com>",
    "djpnewton <djpnewton@gmail.com>",
    "face <face@hmel.org>",
    "furszy <matiasfurszyfer@protonmail.com>",
    "gustavonalle <gustavonalle@gmail.com>",
    "hackerrdave <davekerrcode@gmail.com>",
    "harry <harrywu@tvunetworks.com>",
    "imharrywu <imharrywu@users.noreply.github.com>",
    "josibake <josibake@protonmail.com>",
    "kanon <60179867+decryp2kanon@users.noreply.github.com>",
    "ken2812221 <ken2812221@gmail.com>",
    "klementtan <klement.tan@ninjavan.co>",
    "klementtan <klementtan@gmail.com>",
    "kobake <kobake@users.sourceforge.net>",
    "lmanners <lowellmanners@gmail.com>",
    "lsilva01 <84432093+lsilva01@users.noreply.github.com>",
    "marcaiaf <mmachicao@m19r.de>",
    "matthias <s.matthew.english@gmail.com>",
    "parazyd <parazyd@dyne.org>",
    "patrick s <patrick.strateman@gmail.com>",
    "phelixbtc <github@blockchained.com>",
    "qmma <qmma70@gmail.com>",
    "r8921039 <r8921039@hotmail.com>",
    "saibato <saibato.naga@pm.me>",
    "sandakersmann <mkjaerstad@yahoo.no>",
    "shshshsh <shshshsh@sdsdsdfsd.invalid>",
    "soroosh-sdi <soroosh.sardari@gmail.com>",
    "unknown <prayank23@outlook.com>",
    "unsystemizer <something@gmail.com>",
    "unsystemizer <unsystemizer@users.noreply.github.com>",
    "willyk <wko@blockchainfoundry.co>",
    "ロハン ダル <rohun-dhar@MN14042102.local>",
    "251 <13120787+251labs@users.noreply.github.com>",
    "251 <13120787+l2a5b1@users.noreply.github.com>",
    "4d55397500 <svjk24@gmail.com>",
    "532479301 <532479301@qq.com>",
    "APerson241 <setup.pyc@gmail.com>",
    "Aaron Clauson <aaron.clauson@gmail.com>",
    "Aaron Hook <ahook@protonmail.com>",
    "Abraham Jewowich <abuse@loljews.com>",
    "Adam Brown <adam@deftnerd.com>",
    "Adam Langley <agl@google.com>",
    "Adam Soltys <asoltys@gmail.com>",
    "Adam Stein <adaminsky@gmail.com>",
    "Addy Yeow <ayeowch@gmail.com>",
    "Adrian-Stefan Mares <a.mares@student.tue.nl>",
    "Ahmad Kazi <plaxton@users.noreply.github.com>",
    "Aitor Pazos <mail@aitorpazos.es>",
    "AlSzacrel <alszacrel@web.de>",
    "Albert <github@albert.sh>",
    "Alejandro Avilés <omegak@gmail.com>",
    "Alex Willmer <alex@moreati.org.uk>",
    "Alex van der Peet <alex.van.der.peet@gmail.com>",
    "Alexander Jeng <alexanderjeng@gmail.com>",
    "Alexander Regueiro <alexreg@me.com>",
    "Alexey Poghilenkov <leshiy12345678@gmail.com>",
    "Alexey Vesnin <serxis@gmail.com>",
    "Alfie John <alfie@alfie.wtf>",
    "Alistair Buxton <a.j.buxton@gmail.com>",
    "Alistair Mann <al+tfl@pectw.net>",
    "Allan Doensen <allan@doensen.com>",
    "Altoidnerd <allenmajs1@gmail.com>",
    "Altoidnerd <altoidnerd.btc@gmail.com>",
    "Amir Ghorbanian <deanghorbanian@gatech.edu>",
    "Amir Yalon <git@please.nospammail.net>",
    "Anders Øyvind Urke-Sætre <andersoyvind@gmail.com>",
    "Andras Elso <elso.andras@gmail.com>",
    "Andrea Comand <andrea@comand.me>",
    "Andrea D'Amore <anddam@brapi.net>",
    "Andres G. Aragoneses <knocte@gmail.com>",
    "Andrew <achow101@gmail.com>",
    "Andrew Poelstra <asp11@sfu.ca>",
    "Andrey Alekseenko <al42and@gmail.com>",
    "Andriy Voskoboinyk <andriivos@gmail.com>",
    "Andrés G. Aragoneses <knocte@gmail.com>",
    "Andy Alness <andy@coinbase.com>",
    "Ang Iong Chun <angiongchun@gmail.com>",
    "Anonymous <none@anon>",
    "Antti Majakivi <anduck@users.noreply.github.com>",
    "Arnav Singh <arnavion@gmail.com>",
    "Arne Brutschy <abrutschy@xylon.de>",
    "Aseem Sood <asood123@yahoo.com>",
    "AtsukiTak <takatomgoo@gmail.com>",
    "Ava Barron <mztriz@gmail.com>",
    "Awemany <awemany@protonmail.com>",
    "Bardi Harborow <bardi_harborow@yahoo.com.au>",
    "Ben Holden-Crowther <benhc123@users.noreply.github.com>",
    "Ben Holden-Crowther <benhc@live.co.uk>",
    "Benoit Verret <verret.benoit@gmail.com>",
    "Bernhard M. Wiedemann <bwiedemann@suse.de>",
    "Bezdrighin <mbbezdri@3c22fbe8ae1b.ant.amazon.com>",
    "BitcoinPRReadingGroup <gsanders.87@gmail.com>",
    "Blake Jakopovic <blake.jakopovic@gmail.com>",
    "Blitzboom <anon@none>",
    "BlockMechanic <blockmecha@gmail.com>",
    "Bob McElrath <bob@mcelrath.org>",
    "Brandon Ruggles <brandonrninefive@gmail.com>",
    "Brian Deery <brian@factom.org>",
    "Brian McMichael <brian@brianmcmichael.com>",
    "Brian Solon <solon@users.noreply.github.com>",
    "Calvin Owens <jcalvinowens@gmail.com>",
    "Calvin Tam <calvinyhtam@gmail.com>",
    "Carlos Pizarro <kr105@kr105.com>",
    "Carnhof Daki <carnhofdaki@gmail.com>",
    "Chakib Benziane <chakib.benz@gmail.com>",
    "Charlie Lee <coblee@litecoin.org>",
    "Chirag Davé <c@chirag.io>",
    "Chris Abrams <mail@chrisabrams.com>",
    "Chris Arnesen <chris.arnesen@gmail.com>",
    "Chris Capobianco <chris.capobianco@greenbricklabs.com>",
    "Chris Kleeschulte <chrisk@bitpay.com>",
    "Chris L <stylesuxx@gmail.com>",
    "Chris Wheeler <chris@haydenwheeler.com>",
    "Christian Barcenas <christian@cbarcenas.com>",
    "Christian Decker <cdecker@tik.ee.ethz.ch>",
    "Christian Gentry <christiangentry@gmail.com>",
    "Christopher Coverdale <chris.coverdale24@gmail.com>",
    "Chuck <chuck@borboggle.com>",
    "Chuck LeDuc Díaz <chuck.leduc@sage.com>",
    "Chuf <42591821+GChuf@users.noreply.github.com>",
    "Ciemon <ciemon@gmail.com>",
    "Clem Taylor <clem@ossifrage.com>",
    "Clinton Christian <Clinton.Christian@me.com>",
    "CohibAA <CohibAA@users.noreply.github.com>",
    "Conrado Gouvea <conradoplg@gmail.com>",
    "Corinne Dashjr <corinne+git@dashjr.org>",
    "Cornelius Schumacher <schumacher@kde.org>",
    "Craig Andrews <candrews@integralblue.com>",
    "Craig Younkins <cyounkins@gmail.com>",
    "CryptoVote <cryptovote@yandex.com>",
    "Cuong V. Nguyen <nguyencuongcl1215@gmail.com>",
    "Cédric Félizard <cedric@felizard.fr>",
    "Dagur Valberg Johannsson <dagurval@pvv.ntnu.no>",
    "Daira Hopwood <daira@jacaranda.org>",
    "Damian Williamson <willtech@live.com.au>",
    "Dan Bolser <dan.bolser@gmail.com>",
    "Dan Helfman <witten@torsion.org>",
    "Dan Loewenherz <dloewenherz@gmail.com>",
    "Daniel Aleksandersen <code@daniel.priv.no>",
    "Daniel Holbert <dholbert@cs.stanford.edu>",
    "Daniel McNally <mcnallydp@gmail.com>",
    "Daniel Newton <djpnewton@gmail.com>",
    "Danube <anon@none>",
    "Darius Parvin <darius@berkeley.edu>",
    "Darko Janković <3431769+trulex@users.noreply.github.com>",
    "DaveFromBinary <36311895+DaveFromBinary@users.noreply.github.com>",
    "David Griffith <dave@661.org>",
    "David Grogan <dgrogan@chromium.org>",
    "David Hill <dhill@mindcry.org>",
    "David O'Callaghan <dave@docallag.com>",
    "David Serrano <dserrano5@dserrano5.es>",
    "Denis Lukianov <denis@voxelsoft.com>",
    "Derek Miller <Derek701@users.noreply.github.com>",
    "Derek701 <brainish@gmail.com>",
    "Diego Viola <diego.viola@gmail.com>",
    "Dimitris Tsapakidis <dimitris@tsapakidis.com>",
    "Dmitry Goncharov <dgoncharov@users.sf.net>",
    "Dmitry Smirnov <onlyjob@member.fsf.org>",
    "Dominik Spicher <dominik.spicher@inacta.ch>",
    "Don Patterson <d_j_p_3@djp3.net>",
    "Donal OConnor <donaloconnor@gmail.com>",
    "Doug <doug@bitcoinarmory.com>",
    "Douglas Chimento <dchimento@gmail.com>",
    "Douglas Huff <mith@jrbobdobbs.org>",
    "Drew Rasmussen <drew@otcxn.com>",
    "Dusty Williams <dusty.wil@gmail.com>",
    "Earlz <earlz@earlz.net>",
    "Elias Rohrer <rohrer@informatik.hu-berlin.de>",
    "Elliot Olds <elliotolds@gmail.com>",
    "Emanuele Cisbani <emanuele.cisbani@gmail.com>",
    "Emil <emu@emuadmin.com>",
    "Emil Engler <emilstud2015@gmail.com>",
    "Eric S. Bullington <eric.s.bullington@gmail.com>",
    "Eric Scrivner <eric.t.scrivner@gmail.com>",
    "Eric Shaw Jr <ericshaw.linux@gmail.com>",
    "Eric Swanson <eswanson@alloscomp.com>",
    "Erik Mossberg <lingonvecka@gmail.com>",
    "Ernest Hemingway <coomni120@gmail.com>",
    "Esteban Ordano <eordano@gmail.com>",
    "Ethan Heilman <ethan@geographicslab.org>",
    "Everett Forth <everett.forth@gmail.com>",
    "Fabian H jr. <fabianherediajr@yahoo.com.mx>",
    "Fabrice Fontaine <fontaine.fabrice@gmail.com>",
    "Federico Faggiano <federico.sk@katamail.com>",
    "Felix Wolfsteller <felix.wolfsteller@gmail.com>",
    "Filip Gospodinov <f@gospodinov.ch>",
    "Florin <florin@libertv.ro>",
    "Forrest Voight <forrest@forrest-laptop.(none)>",
    "Fotis Koutoupas <fotis.koutoupas@gmail.com>",
    "Francesco 'makevoid' Canessa <makevoid@gmail.com>",
    "Francis GASCHET <fg@numlog.fr>",
    "Franck Royer <franck@coblox.tech>",
    "Fu Yong Quah <stanislavwritescode@gmail.com>",
    "Fuzzbawls <fuzzbawls@gmail.com>",
    "Gabriel Davidian <gabrielius.dav@gmail.com>",
    "Gastón I. Silva <givanse@users.noreply.github.com>",
    "Gaurav Rana <bitcoinsSG@gmail.com>",
    "Geoffrey Tsui <tsui.geoffrey@gmail.com>",
    "Gert-Jaap Glasbergen <gertjaap@gertjaap.org>",
    "Gillian Chu <gillianchu@Gillians-MacBook-Pro.local>",
    "Gleb <naumenko.gs@gmail.com>",
    "Gr0kchain <7654306+gr0kchain@users.noreply.github.com>",
    "Grady Laksmono <grady@laksmono.com>",
    "Graham Krizek <gkrizek@nodesource.com>",
    "Greg Griffith <cryptounitedteam@gmail.com>",
    "Greg Walker <greg@learnmeabitcoin.com>",
    "Guido Vranken <guidovranken@gmail.com>",
    "Gunar C. Gessner <gunargessner@gmail.com>",
    "Gunar Gessner <gunargessner@gmail.com>",
    "HAOYUatHZ <haoyu@protonmail.com>",
    "HaltingState <haltingstate@gmail.com>",
    "Harry Moreno <morenoh149@gmail.com>",
    "HarryWu <imharrywu@users.noreply.github.com>",
    "Heath <heathmatlock@gmail.com>",
    "Hector Jusforgues <contact@hectorj.net>",
    "HostFat <hostfat@gmail.com>",
    "Hugo Nguyen <hugh.hn@gmail.com>",
    "Ian Carroll <him@ian.sh>",
    "Ian T <hello@chainquery.com>",
    "Ikko Ashimine <eltociear@gmail.com>",
    "Indospace.io <justin@indospace.io>",
    "Irving Ruan <irvingruan@gmail.com>",
    "Ivan Pustogarov <ivanpustogarov@users.noreply.github.com>",
    "Ivan Vershigora <ivan.vershigora@gmail.com>",
    "Ivo van der Sangen <ivdsangen@gmail.com>",
    "JL2035 <jl2035@users.noreply.github.com>",
    "Jack Mallers <jackmallers@Jacks-MacBook-Pro.local>",
    "Jacky C <jackycjh@users.noreply.github.com>",
    "Jadi <jadi@axiros.com>",
    "Jake Leventhal <jakeleventhal@me.com>",
    "Jakob Kramer <jakob.kramer@gmx.de>",
    "James Burkle <james.burkle@gmail.com>",
    "James O'Beirne <james@chaincode.com>",
    "James White <jamesmacwhite@users.noreply.github.com>",
    "Jameson Lopp <jameson@bitgo.com>",
    "Jameson Lopp <jameson@team.casa>",
    "Jan Sarenik <jasan@jasan.tk>",
    "Jan Čapek <jan.capek@braiins.cz>",
    "Janusz Lenar <malleor@users.noreply.github.com>",
    "Jaromil <jaromil@dyne.org>",
    "Jarret Dyrbye <jarret.dyrbye@gmail.com>",
    "Jason Lewicki <lewicki.jason@gmail.com>",
    "Jeff Frontz <jeff.frontz@gmail.com>",
    "Jeff Frontz <jhf@blockstream.io>",
    "Jeremiah Buddenhagen <bitspill+git@bitspill.net>",
    "Jeremy Rand <jeremyrand@airmail.cc>",
    "Jeroenz0r <jeroen.marshmallow@gmail.com>",
    "Joan Karadimov <joan.karadimov@gmail.com>",
    "Joe Harvell <joe.harvell.x@gmail.com>",
    "Joel Kaartinen <jkaartinen@iki.fi>",
    "Joel Klabo <joelklabo@gmail.com>",
    "Joerie de Gram <j.de.gram@gmail.com>",
    "Johannes Henninger <blaubaer@gmail.com>",
    "Johannes Kanig <kanigsson@users.noreply.github.com>",
    "John L. Jegutanis <erasmospunk@gmail.com>",
    "Jon Layton <jon@seequ.com>",
    'Jonathan "Duke" Leto <jonathan@leto.net>',
    "Jonathan Brown <jbrown@bluedroplet.com>",
    "Jordan Baczuk <jordan.baczuk@gmail.com>",
    "Josh Hartshorn <joshhartshorn1021@gmail.com>",
    "Josiah Baker <josibake@protonmail.com>",
    "Julian Haight <github@a.julianhaight.com>",
    "Julian Langschaedel <meta.rb@gmail.com>",
    "Julian Yap <jyap808@users.noreply.github.com>",
    "Justin Camarena <justin121994@gmail.com>",
    "Justin Moon <mail@justinmoon.com>",
    "Karel Bilek <kb@karelbilek.com>",
    "Kefkius <kefkius@mail.com>",
    "Kennan Mell <kmell96@gmail.com>",
    "Kevin Pan <bit.kevin@gmail.com>",
    "Kewde <code@shadowproject.io>",
    "Khalahan <khal@bitcoin-contact.org>",
    "KibbledJiveElkZoo <KibbledJiveElkZoo@GMail.com>",
    "Kirill Fomichev <fanatid@ya.ru>",
    "Koki Takahashi <Koki.Takahashi@jp.sony.com>",
    "Kostiantyn Stepaniuk <kostya.stepanyuk@gmail.com>",
    "Kristian Kramer <kristian@beyonddata.llc>",
    "Krzysztof Jurewicz <krzysztof.jurewicz@gmail.com>",
    "Kyle Honeycutt <coinables@gmail.com>",
    "Kyuntae Ethan Kim <ethan.kyuntae.kim@gmail.com>",
    "Larry Gilbert <larry@l2g.to>",
    "Lars Rasmusson <Lars.Rasmusson@sics.se>",
    "Leviathn <johnny@blockstream.io>",
    "Linrono <24950563+Linrono@users.noreply.github.com>",
    "Loganaden Velvindron <logan@hackers.mu>",
    "Lowell Manners <lowellmanners@gmail.com>",
    "Lucas Betschart <lucasbetschart@gmail.com>",
    "Lucas Ontivero <lucasontivero@gmail.com>",
    "Luke <lukem512@users.noreply.github.com>",
    "Luke Mlsna <luke@mlsna.net>",
    "Luv Khemani <luvb@hotmail.com>",
    "MIZUTA Takeshi <mizuta.takeshi@fujitsu.com>",
    "Maayan Keshet <maayan@maayank.com>",
    "MapleLaker <31602441+MapleLaker@users.noreply.github.com>",
    "Marcel Krüger <zauguin@gmail.com>",
    "Marcin Jachymiak <marcin@bitcoinops.org>",
    "Marcos Mayorga <mm@mm-studios.com>",
    "Marijn Stollenga <m.stollenga@gmail.com>",
    "Mark Erhardt <mark@bitgo.com>",
    "Mark Friedenbach <mark@blockstream.io>",
    "Mathy Vanvoorden <mathy@vanvoorden.be>",
    "Matt <sirmatt@ksu.edu>",
    "Matt Corallo <matt@mattcorallo.com>",
    "Matt Quinn <matt@mattjquinn.com>",
    "Matteo Sumberaz <gnappoms@gmail.com>",
    "Matthew Bogosian <mtb19@columbia.edu>",
    "Matthias Grundmann <matthias@glasmail.de>",
    "Max Kaplan <kaplanmaxe3@gmail.com>",
    "Meeh <meeh@sigterm.no>",
    "Micha <Michagogo@users.noreply.github.com>",
    "Michael <fanquake@gmail.com>",
    "Michael Bauer <michael@m-bauer.org>",
    "Michael Tidwell <tidwell@zebedee.io>",
    "Michagogo <michagogo@server.fake>",
    "Michal Zima <xhire@mujmalysvet.cz>",
    "Michał Zabielski <zabielski.michal@gmail.com>",
    "Micky Yun Chan <michan@redhat.com>",
    "Midnight Magic <midnightmagic@example.com>",
    "Midnight Magic <midnightmagic@users.noreply.github.com>",
    "Mikael Wikman <mikael@swedcontent.com>",
    "Mike Cassano <mcassano@gmail.com>",
    "Mike van Rossum <mike@mikevanrossum.nl>",
    "Mikerah <mikerah14@gmail.com>",
    "Misbakh-Soloviev Vadim A <mva@mva.name>",
    "Mitchell Cash <mitchell@fastmail.com.au>",
    "Murch <uwblp@student.kit.edu>",
    "Nelson Galdeman <nelsongaldeman@gmail.com>",
    "Nick <nikzhavoronkov@gmail.com>",
    "Nick Bosma <nick.bosma@gmail.com>",
    "Nick Vercammen <nvercamm@users.noreply.github.com>",
    "Nicolas DORIER <nicolas.dorier@gmail.com>",
    "Nicolas Dorier <nicolas.dorier@gmail.com>",
    "Nicolas Thumann <me@n-thumann.de>",
    "Nils Loewen <nilswloewen@gmail.com>",
    "Nima Yazdanmehr <yazdanmehr@protonmail.com>",
    "Noel Tiernan <tiernolan@gmail.com>",
    "NullFunctor <support@bitcoinv.org>",
    "Olivier Langlois <olivier@olivierlanglois.net>",
    "OverlordQ <overlordq@gmail.com>",
    "Pablo Fernandez <fernandezpablo85@gmail.com>",
    "Pasta <pasta@dashboost.org>",
    "Patrick Brown <patrick.arthur.brown@gmail.com>",
    "Patrick Kamin <patrick@caminus.de>",
    "Patrick Varilly <patvarilly@gmail.com>",
    "Paul Berg <paul.berg@inl.gov>",
    "Paul Georgiou <pavlos1998@gmail.com>",
    "Paul Rabahy <prabahy@gmail.com>",
    "Pavel Vasin <rat4vier@gmail.com>",
    "Pedro Branco <pedrobrancolcc@gmail.com>",
    "Peter Josling <peterjosling@gmail.com>",
    "Peter Wagner <puchu@gmx.at>",
    "Petter Reinholdtsen <pere@hungry.com>",
    "Pierre K <pierrekn@gmail.com>",
    "Pierre Pronchery <khorben@defora.org>",
    "Pierre Rochard <pierre.rochard@axial.net>",
    "Prayag Verma <prayag.verma@gmail.com>",
    "Puru <tuladharpuru@gmail.com>",
    "Qasim Javed <qasimj@gmail.com>",
    "RJ Rybarczyk <rj@rybar.tech>",
    "Rafael Sadowski <rafael@sizeofvoid.org>",
    "RandyMcMillan <randy.lee.mcmillan@gmail.com>",
    "Raul Siles <5730357+raulsiles@users.noreply.github.com>",
    "Rav3nPL <rav3n.pl@gmail.com>",
    "Raúl Martínez (RME) <i-rme@users.noreply.github.com>",
    "René Nyffenegger <rene.nyffenegger@adp-gmbh.ch>",
    "Ricardo Velhote <rvelhote@gmail.com>",
    "Riccardo Masutti <46527252+RiccardoMasutti@users.noreply.github.com>",
    "Riccardo Spagni <ric@spagni.net>",
    "Richard Schwab <mail@richardschwab.de>",
    "Richard Schwab <mail@w.tf-w.tf>",
    "Rjected <kidscline01@gmail.com>",
    "Robert <robert@lyberry.com>",
    "Robert McLaughlin <robert@sparkk.us>",
    "Rose Toomey <rktoomey@gmail.com>",
    "Roy Shao <ycshao0402@gmail.com>",
    "Ruben Dario Ponticeli <rdponticelli@gmail.com>",
    "Ruben de Vries <ruben@rubensayshi.com>",
    "Rubén Darío Ponticelli <rdponticelli@gmail.com>",
    "Rune K Svendsen <runesvend@gmail.com>",
    "Russell O'Connor <roconnor@blockstream.io>",
    "Ryan Havar <ryan@moneypot.com>",
    "Ryan Niebur <ryanryan52@gmail.com>",
    "Ryan X. Charles <ryanxcharles@gmail.com>",
    "Saahil Shangle <saahilshangle@gmail.com>",
    "Saibato <saibato.naga@pm.me>",
    "Saivann <saivann@gmail.com>",
    "Sanjay Ghemawat <sanjay@google.com>",
    "Sanjay K <sanjaykdragon@gmail.com>",
    "Santiago M. Mola <coldwind@coldwind.org>",
    "Sawyer Billings <sawpaw19@gmail.com>",
    "Scott Willeke <scott@willeke.com>",
    "Sergey Kazenyuk <kazenyuk@gmail.com>",
    "Sev <git@sevastos.com>",
    "Shane Wegner <shane-github@csy.ca>",
    "Shigeya Suzuki <shigeya@wide.ad.jp>",
    "Shooter <shooterman@users.noreply.github.com>",
    "Shubhankar <Shubhankargambhir013@gmail.com>",
    "Shubhankar Gambhir <Shubhankargambhir013@gmail.com>",
    "Simon de la Rouviere <simon@delarouviere.com>",
    "Simone Madeo <simone.madeo@gmail.com>",
    "Sined <nightsbird@gmail.com>",
    "Stanislas Marion <stanislas.marion@gmail.com>",
    "Stepan Snigirev <snigirev.stepan@gmail.com>",
    "Stephane Glondu <steph@glondu.net>",
    "Stephen <scmorse@colby.edu>",
    "Steve Lee <stevenjlee+git@gmail.com>",
    "Steven <steven@sigwo.com>",
    "Steven D. Lander <stevendlander@gmail.com>",
    "Stuart Cardall <developer@it-offshore.co.uk>",
    "Subo1978 <shuebbel@gmx.de>",
    "Suriyaa Kudo <SuriyaaKudoIsc@users.noreply.github.com>",
    "Suriyaa Rocky Sundararuban <github@suriyaa.tk>",
    "Suriyaa Sundararuban <github@suriyaa.tk>",
    "Sven Slootweg <info@sven-slootweg.nl>",
    "THETCR <thetcr@live.nl>",
    "Takashi Mitsuta <knhn1117@gmail.com>",
    "Tamas Blummer <tamas.blummer@gmail.com>",
    "Tamas Blummer <tamas@bitsofproof.com>",
    "Tariq Bashir <tariqbashir@gmail.com>",
    "Tawanda Kembo <tawanda@zimstay.com>",
    "Telepatheic <thomas@instantsolve.net>",
    "Teran McKinney <sega01@go-beyond.org>",
    "TheLazieR Yip <thelazier@gmail.com>",
    "Thomas Kerin <thomas.kerin@bitmaintech.com>",
    "Thoragh <larssonvictor93@gmail.com>",
    "Tim Akinbo <41004+takinbo@users.noreply.github.com>",
    "Tim Shimmin <TimothyShimmin@users.noreply.github.com>",
    "Timon Rapp <timon@zaeda.net>",
    "Timothy Redaelli <tredaelli@redhat.com>",
    "Timothy Stranex <timothy@Timothys-MacBook-Pro.local>",
    "Tobias Kaderle <tobias.kaderle@dynatrace.com>",
    "Tomas van der Wansem <tomas@tomasvdw.nl>",
    "Torhte Butler <torhte@protonmail.com>",
    "Torstein Husebø <torstein@huseboe.net>",
    "Travin Keith <travin@travinkeith.com>",
    "TrentZ <wazzytrent@gmail.com>",
    "Tushar Singla <singlatushar07@gmail.com>",
    "Tyler Chambers <me@tylerchambers.net>",
    "Tyler Chambers <tyler@iHeartAPIs.com>",
    "Tyler Chambers <tyler@iheartapis.com>",
    "U-Zyn Chua <chua@uzyn.com>",
    "UdjinM6 <UdjinM6@users.noreply.github.com>",
    "Ulrich Kempken <Uli.Kempken@t-online.de>",
    "Uplab <uplab@macbook-pro-de-uplab.home>",
    "Utsav Gupta <utsavgupta89@gmail.com>",
    "Vaclav Vobornik <git@vobornik.eu>",
    "Varunram Ganesh <vrg2009@ymail.com>",
    "Veres Lajos <vlajos@gmail.com>",
    "Victor Leschuk <vleschuk@gmail.com>",
    "Vidar Holen <spam@vidarholen.net>",
    "Virgil Dupras <hsoft@hardcoded.net>",
    "Vitalii Demianets <vitalii@orsoc.se>",
    "Vivek Ganesan <caliberoviv@gmail.com>",
    "Walter <s.heinhuis@outlook.com>",
    "Wil Bown <wilbown@users.noreply.github.com>",
    "Will Ayd <william.ayd@icloud.com>",
    "William Bright <wbright@protonmail.com>",
    "William Robinson <wbarobinson@gmail.com>",
    "William Yager <will.yager@gmail.com>",
    "Willy Ko <k.o.willy@gmail.com>",
    "Wilson Ccasihue S <wilson2cs@gmail.com>",
    "Wladimir van der Laan <laanwj@gmail.com>",
    "Yahia Chiheb <chihebyahia@gmail.com>",
    "Yancy Ribbens <yancy.ribbens@gmail.com>",
    "Yerzhan Mazhkenov <20302932+yerzhan7@users.noreply.github.com>",
    "Yusuf Sahin HAMZA <yusufsahinhamza@gmail.com>",
    "Yuval Kogman <nothingmuch@woobling.org>",
    "Zain Iqbal Allarakhia <zain.allarakhia@gmail.com>",
    "Zain Iqbal Allarakhia <zain@za1.co>",
    "Zakk <zakklakin@outlook.com>",
    "aaron-hanson <archaeal@gmail.com>",
    "adlawren <adlawren010@gmail.com>",
    "aitorjs <aitiba@gmail.com>",
    "anduck <anduck@users.noreply.github.com>",
    "antonio-fr <anferron@gmail.com>",
    "apitko <81133459+apitko@users.noreply.github.com>",
    "araspitzu <a.raspitzu@gmail.com>",
    "ariel <ariel@ficticio.com>",
    "ayeowch <ayeowch@gmail.com>",
    "azeteki <azeteki@safe-mail.net>",
    "azuchi <azuchi@haw.co.jp>",
    "b6393ce9-d324-4fe1-996b-acf82dbc3d53 <m8r-emkdvd@mailinator.com>",
    "benk10 <ben.kaufman10@gmail.com>",
    "bikinibabe <amberwelch@unomaha.edu>",
    "bitcoinhodler <31543633+bitcoinhodler@users.noreply.github.com>",
    "bitsofproof <tamas@bitsofproof.com>",
    "bpay <bpay@users.noreply.github.com>",
    "bruno <bgarcia@3xbit.com.br>",
    "buddilla <buddilla@users.noreply.github.com>",
    "burger2 <birger.hedman@gmail.com>",
    "calebogden <email@calebogden.com>",
    "ccdle12 <chris.coverdale24@gmail.com>",
    "celil-kj <celil.kj@gmail.com>",
    "centaur1 <centaur1@users.noreply.github.com>",
    "charlescharles <platypode@gmail.com>",
    "chris-belcher <chris-belcher@users.noreply.github.com>",
    "clashicly <35277077+clashicly@users.noreply.github.com>",
    "coblee <chocobo@alum.mit.edu>",
    "coinforensics <59567284+coinforensics@users.noreply.github.com>",
    "dabaopku <guocong89@gmail.com>",
    "darksh1ne <microspam@list.ru>",
    "darosior <darosior@gmail.com>",
    "default <default@default-dell.(none)>",
    "ditto-b <ditto-b@users.noreply.github.com>",
    "ditto-b <nipun.d93+evil@gmail.com>",
    "dllud <david.ludovino@gmail.com>",
    "dongsamb <dongsamb@gmail.com>",
    "dplusplus1024 <82842780+dplusplus1024@users.noreply.github.com>",
    "dscotese <dscotese@litmocracy.com>",
    "duanemoody <duane_moody@yahoo.com>",
    "e0 <ethan.r.heilman@gmail.com>",
    "elichai <elichai.turkel@gmail.com>",
    "elkingtowa <elkingtowa@gmail.com>",
    "emu <emu@inbox.srvmin.network>",
    "error10 <error@ioerror.us>",
    "esneider <dariosn@gmail.com>",
    "fdov <fd21@pm.me>",
    "flower <flower@k1024.de>",
    "freenancial <freenancial@protonmail.com>",
    "fridokus <oskar.fridell@gmail.com>",
    "fridokus <raxomukus@gmail.com>",
    "gchuf <gasper.cefarin@gmail.com>",
    "gjs278 <admin@garyshood.com>",
    "gladoscc <admin@glados.cc>",
    "gladoscc <elacoin@glados.cc>",
    "gmaxwell <gmaxwell@gmail.com>",
    "gnuser <cjay0106@gmail.com>",
    "gr0kchain <gr0kchain@bitcoindev.network>",
    "graingert <tagrain@gmail.com>",
    "grim-trigger <36375872+grim-trigger@users.noreply.github.com>",
    "grubles <grubles@users.noreply.github.com>",
    "gwillen <gwillen@nerdnet.org>",
    "h <harshit_goyal333@outlook.com>",
    "himynameismartin <himynameismartin@gmail.com>",
    "ianliu <i@yiyangliu.me>",
    "jackielove4u <jackielove4u@hotmail.com>",
    "jarolrod <jarolrod@tutanota.com>",
    "jjz <woaf1003@gmail.com>",
    "jl2012 <jl2012@xbt.hk>",
    "jloughry <joe.loughry@gmail.com>",
    "jmacwhyte <keatonatron@gmail.com>",
    "jmorgan <jmorgan@onshape.com>",
    "joemphilips <joemphilips@gmail.com>",
    "johnlow95 <38558408+johnlow95@users.noreply.github.com>",
    "jonatack <jon@atack.com>",
    "joshr <joshr@joshr.com>",
    "justmoon <justmoon@members.fsf.org>",
    "kallewoof <kalle.alm@gmail.com>",
    "keepkeyjon <35975617+keepkeyjon@users.noreply.github.com>",
    "kevin <bit.kevin@gmail.com>",
    "keystrike <keystrike@users.noreply.github.com>",
    "kirit93 <kirit.thadaka@gmail.com>",
    "kirkalx <kirkalx@yahoo.co.nz>",
    "kiwigb <kiwigb@localhost.localdomain>",
    "klemens <ka7@github.com>",
    "kodslav <kodslav@home.local>",
    "kwaaak <kwaaak@gmail.com>",
    "langerhans <max.keller@gmx.com>",
    "laszloh <laszloh@1a98c847-1fd6-4fd8-948a-caf3550aa51b>",
    "laudaa <lauda.m@protonmail.ch>",
    "leijurv <leijurv@gmail.com>",
    "lewuathe <lewuathe@me.com>",
    "lisa neigut <niftynei@gmail.com>",
    "liuyujun <liuyujun@fingera.cn>",
    "lizhi <cqtenq9@gmail.com>",
    "lontivero <lucasontivero@gmail.com>",
    "luciana <lucianadacostamarques@gmail.com>",
    "lutangar <johan.dufour@gmail.com>",
    "m0ray <anon@none>",
    "maiiz <maiiz@users.noreply.github.com>",
    "malevolent <malevolentbtc@gmail.com>",
    "marcuswin <46599751+marcuswin@users.noreply.github.com>",
    "mark <mark@shotgunsoftware.com>",
    "maskoficarus <bitcoin@maskoficarus.com>",
    "mb300sd <mb300sd@git>",
    "mb300sd <mb300sd@github>",
    "merge-script <90386131+bitcoin-core-merge-script@users.noreply.github.com>",
    "mewantsbitcoins <anon@none>",
    "naiza <naiza@iitk.ac.in>",
    "nkostoulas <nkostoulas@gmail.com>",
    "nsa <elzeigel@gmail.com>",
    "ojab <ojab@ojab.ru>",
    "okayplanet <tyrick@gmail.com>",
    "olalonde <olalonde@gmail.com>",
    "orient <orientye@users.noreply.github.com>",
    "osmosis <stevenwagner@gmail.com>",
    "ovdeathiam <krystian.maksymowicz@gmail.com>",
    "pad <pad@maitrebitcoin.com>",
    "pasta <pasta@dashboost.org>",
    "peryaudo <peraudo@gmail.com>",
    "phantomcircuit <patrick@cloudhashing.com>",
    "phantomcircuit <phantomcircuit@debian>",
    "philsong <songbohr@163.com>",
    "poiuty <poiuty@lepus.su>",
    "poole_party <james@esixteen.co>",
    "pox <pox@xi27pox.org>",
    "pradumnasaraf <pradumnasaraf@gmail.com>",
    "pranabp-bit <pranabp@iitk.ac.in>",
    "priscoan <39646804+priscoan@users.noreply.github.com>",
    "pryds <thomas@pryds.eu>",
    "pstratem <patrick.strateman@gmail.com>",
    "qubenix <qubenix@users.noreply.github.com>",
    "rajarshimaitra <rajarshi149@gmail.com>",
    "randymcmillann <randy.lee.mcmillan@gmail.com>",
    "redshark1802 <redshark@gmx.org>",
    "regergregregerrge <regergregregerrge@oxymail.de>",
    "richierichrawr <richierichrawr@users.noreply.github.com>",
    "rion <rion@cs.stanford.edu>",
    "riordant <riordant@tcd.ie>",
    "ritickgoenka <rgoenka@ec.iitr.ac.in>",
    "rodasmith <rodasmith@users.noreply.github.com>",
    "romanornr <romanornr@gmail.com>",
    "rxl <me@ryanshea.org>",
    "sachinkm77 <sachinkm77>",
    "sandos <sandos@sanddesk.(none)>",
    "sanket1729 <smk7@illinois.edu>",
    "sean <merehap@gmail.com>",
    "sgulls <abaoagjoojin@outlook.com>",
    "shannon1916 <shannon@unita.network>",
    "shaolinfry <shaolinfry@protonmail.ch>",
    "sje <sje3000@gmail.com>",
    "skmcontrib <skmcontrib>",
    "stefanwouldgo <stefan@sblbs.de>",
    "steverusso <steverusso@protonmail.com>",
    "svost <ya.nowa@yandex.ru>",
    "tailsjoin <tailsjoin@users.noreply.github.com>",
    "tecnovert <tecnovert@particl.io>",
    "tm314159 <tm314159@users.noreply.github.com>",
    "tnaka <nakagat@gmail.com>",
    "tryphe <tryphe@noreply.github.com>",
    "tryphe <tryphe@users.noreply.github.com>",
    "tucenaber <tucenaber@gmail.com>",
    "tulip <tulip@JBinUp.local>",
    "vhf / victor felder <victorfelder@gmail.com>",
    "vim88 <vim88vim88@gmail.com>",
    "winder <wwinder.unh@gmail.com>",
    "wiz <j@wiz.biz>",
    "wodry <wodry@localhost>",
    "xHire <xhire@mujmalysvet.cz>",
    "zathras-crypto <zathrasc@gmail.com>",
    "zenosage <zenosage@protonmail.com>",
    "฿tcDrak <btcdrak@users.noreply.github.com>",
    "“jkcd” <“jkreadsemail@gmail.com”>",
]