-
Notifications
You must be signed in to change notification settings - Fork 2k
/
domains.json
1030 lines (1030 loc) · 42.1 KB
/
domains.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"vote.amiavax.com": "avaxmemeindex.eth",
"vote.verse.bitcoin.com": "getverse.eth",
"vote.mintstakeshare.com": "mintstakeshare.eth",
"vote.awizard.dev": "love.awizard.eth",
"vote.xyxyx.pro": "xyxyxdao.eth",
"vote.lends.so": "lendsdao.eth",
"vote.spectra.finance": "spectradao.eth",
"vote.vrfd.info": "open-info.eth",
"dao.citadelswap.xyz": "citadelswapdao.eth",
"gov.phanes.network": "phanesnetwork.eth",
"dao.hodlr.xyz": "hodlrxyz.eth",
"vote.gammaswap.com": "dgoods.eth",
"dao.anuinitiative.org": "daotest.anuinitiative.eth",
"dao.aquarius.loan": "aquarius-loan.eth",
"dao.spacetoken.tech": "spacetokendao.eth",
"vote.protectorate.xyz": "protectoratexyz.eth",
"vote.cryptocart.cc": "cryptocartdao.eth",
"vote.hk.chat": "hkchat.eth",
"vote.cybro.io": "cybroio.eth",
"vote.daocred.xyz": "daocred.eth",
"vote.refluid.net": "refluid.eth",
"protocol.secret3.com": "secret3.eth",
"v1dao.chaingpt.org": "chaingptai.eth",
"governance.ouroboros.foundation": "ouroboros-dao.eth",
"snapshot.prismafinance.com": "prismafinance.eth",
"vote.deed3.io": "deed3.eth",
"vote.zerrw.com": "zerrw.eth",
"vote.trotelcoin.com": "alexandretrotel.eth",
"dao.ampleswap.com": "ampleswap.eth",
"governance.thena.fi": "thenafi.eth",
"dao.magicsquare.io": "magicappstore.eth",
"vote.mozaic.finance": "mozaicfinance.eth",
"dao.strike.org": "strikeorg.eth",
"vote.rareships.games": "rareships.eth",
"voting.mero.finance": "backd.eth",
"vote.defialliance.finance": "beitmenotyou.eth",
"vote.edgematrix.pro": "emcdao.eth",
"governance.metavix.io": "metavix.eth",
"gov.fact.technology": "factprotocol.eth",
"gov.yorkie-inu.com": "yorkie-inu.eth",
"governance.radxu.org": "radxu.eth",
"vote.skullz.city": "skullzcity.eth",
"vote.moondao.com": "tomoondao.eth",
"gov.dinero.xyz": "dinero.xyz",
"vote.btcfund.ai": "btcfundai.eth",
"vote.lenshareapp.xyz": "nikoemme.eth",
"vote.monetadao.com": "monetadao.eth",
"vote.swarm.com": "swarm-com.eth",
"vote.vox.finance": "voxfinance.eth",
"vote.halofi.me": "halofi.eth",
"vote.redemptiontoken.com": "redemptioncoin.eth",
"vote.ecollective.xyz": "builders.ecollective.xyz",
"crypto-legal-action.mycryptolawyer.xyz": "mycryptolawyer.eth",
"proposals.unore.io": "unoredao.eth",
"governance.kudoe.io": "kudoe.eth",
"vote.zechub.org": "zechubdao.eth",
"gov.kojib.com": "kojib.eth",
"gov.bluntdao.org": "bluntdao.eth",
"vote.rebelteam.com": "rebelteam.eth",
"tvote.cascadia.foundation": "testcascadia.eth",
"vote.cascadia.foundation": "cascadiasystems.eth",
"dao.dicesia.com": "dicesia.eth",
"vote.hash2o.com": "hash2o.eth",
"vote.allianceblock.io": "allianceblockdao.eth",
"dao.bmcc.finance": "bmcc.eth",
"brethren.venturepirates.xyz": "venturepirates.eth",
"vote.persiandao.io": "persiandao.eth",
"vote.adneo.xyz": "adneo.eth",
"dao.xtressials.com": "xtressials.eth",
"gov.sandclock.org": "sandclockdao.eth",
"dao.connext.network": "dao.connext.eth",
"dao.kumatokens.com": "kumatokens.eth",
"gov.hairdao.xyz": "hairdao.eth",
"dao.optimusinu.io": "coolbots.eth",
"dao.dsla.network": "dsla.eth",
"vote.seizerdao.xyz": "seizerdao.eth",
"vote.goodghosting.com": "halofi.eth",
"vote.meddao.xyz": "meddao.eth",
"vote.slg.games": "slgov.eth",
"vote.stfx.io": "stfxgovernance.eth",
"governance.exzo.technology": "exzonetworkgovernance.eth",
"vote-celo.goodghosting.com": "celo.goodghosting.eth",
"vote-polygon.goodghosting.com": "polygon.goodghosting.eth",
"vote.the-figure.com": "thefiguretoken.eth",
"everydaydao.xyz": "everydaydao.eth",
"vote.chocolatemilkclub.com": "chocolatemilkclub.eth",
"voting.castellocommunity.com": "castellocommunity.eth",
"vote.themetaadvisory.xyz": "themetaadvisory.eth",
"vote.dogemob.com": "dogemob.com",
"vote.anarchydao.io": "anarchytoken.eth",
"dao.exeno.com": "exndao.eth",
"governance.modelphics.com": "modelphics.eth",
"dao.dataphora.com": "dataphora2.eth",
"phi.vote": "phinetwork.eth",
"governance.status.app": "status.eth",
"gov.bitcoinevm.com": "bitcoinevm.eth",
"deployingmorecapital.io": "dmctoken.eth",
"governance.planetmemes.com": "planetmemes.eth",
"gov.tigris.trade": "tigrisdao.eth",
"gov.aliquo.xyz": "aliquo.eth",
"vote.defire.org": "defiredao.eth",
"gov.sapavault.xyz": "projectsapa.eth",
"vote.atlantachain.io": "atlantachain.eth",
"vote.enerart.com": "enerart.eth",
"vote.froggyfriendsnft.com": "froggyfriends.eth",
"vote.cypherpunkzero.com": "cypherpunkzerodao.eth",
"vote.commondao.xyz": "thecommoncouncil.eth",
"vote.metavault.trade": "metavault-trade.eth",
"vote.metavault.org": "metavault-dao.eth",
"lawminati.blockng.money": "lawminati.eth",
"vote.yieldtopia.finance": "yieldtopia.eth",
"vote.gogocoin.io": "gogo-protocol.eth",
"vote.0vix.com": "0vix-protocol.eth",
"dao.metagear.game": "moongear.eth",
"dao.uglienstown.wtf": "ugliens.eth",
"dao.stobox.io": "stoboxweb3.eth",
"vote.teadao.finance": "tea-dao.eth",
"vote.lakaninteractive.com": "lakaninteractive.eth",
"vote.thrivecoin.com": "thrivecoin.eth",
"vote.loopring.io": "loopringdao.eth",
"vote.apocaliens.xyz": "alienvote.eth",
"vote.wefinance.club": "wefinanceclub.eth",
"vote.thestandard.io": "thestandardio.eth",
"vote.safestake.xyz": "istate.eth",
"vote.parastate.io": "istate.eth",
"vote.shifuthemaster.com": "shifuthemaster.eth",
"vote.hov.co": "hovx.eth",
"dao.kokodi.world": "vsrat.eth",
"gov.anzen.finance": "anzenfinance.eth",
"vote.bamboodao.io": "bamboodao.eth",
"vote.moonforcedao.eth": "moonforcedao.eth",
"vote.pye.net": "pyedao.eth",
"vote.metatopiaworld.com": "metatopiaworld.eth",
"vote.symbulldao.eth": "symbulldao.eth",
"vote.minipetsdao.eth": "minipetsdao.eth",
"dao.turtleshellislands.com": "turtleshellisland.eth",
"voting.lilbrains.com": "lilbrainsdao.eth",
"vote.titandao.app": "surf92.eth",
"dao.snowforge.xyz": "studiosnowforge.eth",
"vote.bankofx.xyz": "bankofx.eth",
"vote.morpho.org": "morpho.eth",
"invictus.raidparty.wtf": "mariopaolo.eth",
"bonustrack.io": "fabien.eth",
"vote.goblins.cash": "goblinscash.eth",
"vote.karameladao.com": "karameladao.eth",
"dao.noisegpt.com": "cuntbase.eth",
"vote.ravethefuture.com": "ravethefuture.eth",
"vote.alifelivedfully.com": "vote.alifelivedfully.eth",
"dao.sfm.community": "sfmdao.eth",
"vote.sdao.win": "sdaowin.eth",
"vote.assembly.town": "assemblyhoa.eth",
"governance.cyberestate.io": "cyberrealestate.eth",
"gov.meritvault.xyz": "meritvault.eth",
"vote.hifi.finance": "hifi-finance.eth",
"dao.general.rebellionprotocol.com": "rebellionprotocol.eth",
"vote.particledao.xyz": "particledao.eth",
"vote.waterandmusic.com": "wmvotes.eth",
"dao.web3disruption.xyz": "haavi.eth",
"vote.czpegs.com": "czpegs.eth",
"vote.etherisc.com": "dao.etherisc.eth",
"vote.dixel.club": "dixelclub.eth",
"vote.demedicidao.co": "demedicidao.eth",
"polling.element.fi": "elfi.eth",
"vote.cow.fi": "cow.eth",
"vote.thieveslist.io": "thievestreasury.eth",
"vote.alphagirlclub.io": "alphagirlclub.eth",
"vote.hamsterzbeach.club": "hamsterzbeachclub.eth",
"vote.lmaodao.io": "lmao.jacksón.eth",
"vote.minipets.eth": "minipets.eth",
"snapshot.tokemak.xyz": "tokemak.eth",
"vote.trava.finance": "trava.eth",
"vote.trava.capital": "tradao.eth",
"dao.playermon.com": "pymdao.eth",
"vote.botchatify.com": "paul.mrsigner.eth",
"vote.athame.finance": "athamefinance.eth",
"vote.squiggly.school": "squigglyverse.eth",
"vote.sphere.finance": "spherefinance.eth",
"vote.standard.tech": "stndgov.eth",
"vote.gmr.center": "gmrcenter.eth",
"voting.cryptopugz.io": "cryptopugz.eth",
"vote.powernode.io": "powergenerator.eth",
"vote.breederdao.io": "breederdao-admin.eth",
"vote.diamondheist.game": "diamondheist.eth",
"vote.gatenet.io": "vote.gatenet.eth",
"vote.metamarketingdao.com": "metamarketingdao.eth",
"vote.streetbased.co": "streetbased.eth",
"vote.astronos.io": "astronos.eth",
"vote.holygrail.one": "holygrailone.eth",
"vote.betterdao.io": "betterdao.eth",
"dao.fraktal.io": "fraktal.eth",
"gov.yedaoist.dev": "yedaoist.eth",
"vote.fuzz.fi": "fuzzfinance.eth",
"vote.subx.finance": "subx.eth",
"vote.metarea.org": "metarea.eth",
"dao.kawakami.io": "kawadao.eth",
"vote.kodacapitaldao.xyz": "kodacapitaldao.eth",
"vote.defiplaza.net": "realdefiplaza.eth",
"vote.blockadvocates.org": "blockadvocates.eth",
"polls.chain.xyz": "chaingov.eth",
"vote.choccyswap.com": "choccyswap.eth",
"vote.sinfinite.net": "sinfinite.eth",
"vote.oceanclub.io": "primooceandao.eth",
"eventplan.creativeplatform.xyz": "events.thecreative.eth",
"vote.creativeplatform.xyz": "vote.thecreative.eth",
"vote.prepo.io": "prepo.eth",
"snapshot.gasdao.org": "gasdao.eth",
"vote.thor.financial": "thorfinancial.eth",
"vote.bomb.money": "1coinnetwork.eth",
"vote.chainscore.finance": "chainscore.eth",
"dao.badbears.io": "bad-dao.eth",
"theartistdao.com": "theartistdao.eth",
"vote.losercoin.dao": "losercoin-lowb.eth",
"vote.songadao.org": "songadao.eth",
"vote.theanimal.farm": "theanimalfarm.eth",
"vote.glmrapes.com": "glmrapes.eth",
"vote.paraswap.network": "paraswap-dao.eth",
"dao.reapercouncil.xyz": "reaperdao.eth",
"vote.totem.earth": "totemearth.eth",
"vote.partyhat.finance": "phats.eth",
"vote.beamswap.io": "beamswapio.eth",
"dao.littleghosts.com": "littleghosts.eth",
"vote.panicswap.com": "panicswap.eth",
"vote.phonon.org": "phonon.eth",
"vote.thegreatwave.io": "thegreatwave.eth",
"vote.labdao.co": "dongdo.eth",
"vote.x0rart.com": "mevarmy.eth",
"vote.rainbowtoken.finance": "rainbowtoken.eth",
"vote.jadeprotocol.io": "jadeprotocol.eth",
"vote.anuradao.finance": "anuradao.eth",
"vote.squid.xyz": "shoal.eth",
"vote.kawaii.global": "kawaii-islands.eth",
"vote.kargain.world": "kargainworld.eth",
"vote.lobis.finance": "lobis.eth",
"vote.dapperdinos.com": "dapperdinos.eth",
"vote.hellodao.world": "hello-dao.eth",
"vote.euphoria.money": "euphoriadao.eth",
"vote.nodegamexyz.com": "nodegame.eth",
"vote.cleanocean.io": "cleanocean.eth",
"dao.zcore.network": "zcoreclub.eth",
"vote.nfbeez.xyz": "nfbeez.eth",
"vote.commanderdefi.io": "commanderdefi.eth",
"vote.hotcross.com": "hotcross.eth",
"vote.viper.exchange": "viperswap.eth",
"vote.thunderdao.com": "thunderdao.eth",
"vote.routerprotocol.com": "routerprotocol.eth",
"vote.lava.financial": "mauna.eth",
"vote.cryptocrooks.io": "cryptocrooks.eth",
"vote.somee.social": "someeofficial.eth",
"voting.rewardminer.io": "subx1.eth",
"vote.rebelseals.com": "therebels.eth",
"vote.4thtech.io": "4thtech.eth",
"vote.gizadao.com": "gizadao.eth",
"vote.cryptohobos.io": "cryptohobos.eth",
"vote.tempus.finance": "tempusgov.eth",
"vote.uplift.io": "upliftio.eth",
"vote.cvi.finance": "govi.eth",
"tribe.toughturtlesnft.com": "toughturtles.eth",
"vote.rektdao.finance": "daorekt.eth",
"v.glorylab.xyz": "glorylab.eth",
"gov.eazyswap.io": "eazyswap.eth",
"vote.them.af": "hatdao.eth",
"vote.danielbarankin.com": "danielbarankin.eth",
"vote.antidotedao.org": "antidotedao.eth",
"govern.6ix.com": "6ixdao.eth",
"governance.autonio.io": "niox.eth",
"vote.vikings.finance": "vikingsdao.eth",
"vote.ysl.io": "ysl-io.eth",
"vote.surf.finance": "surf.finance",
"vote.entities.wtf": "entitiesdao.eth",
"gov.frosty.app": "frostypower.eth",
"dao.dexe.network": "dexe.network",
"vote.gyro.money": "gyrodefi.eth",
"vote.mrfas.com": "mrfas.eth",
"snapshot.botto.com": "botto.eth",
"vote.mstable.org": "mstablegovernance.eth",
"dao.wetu.be": "wetube.eth",
"vote.fomodao.xyz": "fomodao.eth",
"vote.betswirl.com": "betswirl.eth",
"vote.defrag.com": "dfrag.eth",
"dao.sleepysloth.finance": "mrbojangles.eth",
"vote.brightunion.io": "brightunion.eth",
"vote.aladdin.club": "aladdindao.eth",
"vote.enter.art": "enternft.eth",
"vote.ascensionprotocol.io": "ascensionprotocol.eth",
"vote.stockmouton.com": "stockmouton.eth",
"vote.elyfi.world": "elyfi-bsc.eth",
"snapshot.moonwell.fi": "moonwell-governance.eth",
"snapshot-apollo.moonwell.fi": "moonwell-apollo-governance.eth",
"snapshot.metaweave.com": "cromatikap.eth",
"dao.civfund.com": "dexman.eth",
"vote.myrevengecat.com": "myrevengecat.eth",
"governance.cntr.finance": "cntr.eth",
"governance.collartoken.com": "dogcollar.eth",
"whey-gov.cntr.finance": "centaurswap.eth",
"gov.impossible.finance": "impossiblefinance.eth",
"vote.stargate.zone": "ohm-dao.eth",
"vote.military.finance": "militaryfinance.eth",
"vote.mycointool.com": "mycointool.eth",
"vote.own.fund": "ownfund.eth",
"gov.minorityprogrammers.org": "minorityprogrammers.eth",
"vote.banksocial.io": "banksocialdao.eth",
"gov.richquack.com": "richquack.eth",
"dao.stredium.com": "stredium.eth",
"vote.dexilla.com": "dexilla.eth",
"vote.newbet.vip": "newbet.eth",
"vote.spaceknightclub.io": "spaceknightclub.eth",
"vote.alkemi.network": "alkemidao.eth",
"vote.macoin.finance": "macoin.eth",
"vote.macncheese.finance": "macncheese.eth",
"vote.artisticsociety.org": "eart.eth",
"vote.olecoin.io": "olecoin.eth",
"gov.light.so": "lightdotso.eth",
"dao.growing.fi": "growingdao.eth",
"dao.gnome.army": "gnometoken.eth",
"vote.dsbswap.com": "dsbswap.eth",
"vote.apy.finance": "apy.eth",
"gov.xspswap.finance": "xsp.eth",
"vote.longdrink.finance": "longdrinkfinance.eth",
"vote.mcafeemoonshot.com": "mcafeemoonshot.eth",
"vote.fbomb.finance": "fbomb.eth",
"vote.evermoon.io": "evermoon.eth",
"vote.gaiadao.org": "gaiadao.eth",
"vote.dispense.finance": "dispense.eth",
"gov.matrixetf.finance": "matrixetf.eth",
"vote.schnoodle.finance": "schnoodle.eth",
"vote.kraken.baby": "babykraken.eth",
"vote.conic.finance": "conic-dao.eth",
"morocco.snapshot.page": "treth.eth",
"signal.blackpool.finance": "blackpoolhq.eth",
"vote.convexfinance.com": "cvx.eth",
"vote.koyo.finance": "koyo-finance.eth",
"vote.suzakucoin.net": "suzakucoin.eth",
"vote.sachetdao.africa": "tjelailah.eth",
"dao.shroomz.cool": "shroomz.eth",
"snapshot.shibuidao.com": "shibuidao.eth",
"vote.dfx.finance": "dfx.eth",
"gov.siphon.finance": "siphonfinance.eth",
"gov.dogownertoken.com": "dogown.eth",
"dao.drsgme.org": "drsgmeorg.eth",
"vote.gametoken.finance": "gmetoken.eth",
"vote.grumpy.finance": "grumpyfinance.eth",
"dao.shibaverse.io": "shibaverse-io.eth",
"vote.decrypt.co": "decrypt-media.eth",
"vote.xtblock.io": "xtblock.eth",
"vote.dough.finance": "doughfinance.eth",
"vote.xbn.finance": "elasticbnb.eth",
"dao.moonrat.finance": "moonrat.eth",
"gov.milliontoken.org": "mmgov.eth",
"governance.tradestars.app": "tradestars.eth",
"vote.athletex.io": "athletex.eth",
"vote.dappchaser.com": "dappchaser.eth",
"dao.pussy.financial": "pussyfinancialdao.eth",
"vote.poolgrants.org": "poolgrants.eth",
"vote.meritcircle.io": "meritcircle.eth",
"vote.dfdao.xyz": "dfdao.eth",
"vote.peghub.com": "peghub.eth",
"vote.xsigma.fi": "xsig.eth",
"gov.onionmixer.com": "omt.eth",
"vote.moonbird.finance": "moonbird.eth",
"vote.varg.ru": "vargru.eth",
"vote.lou.fit": "95501.eth",
"vote.shardcoin.io": "shardcoin.eth",
"vote.depocket.com": "depocket.eth",
"gov.hyruleswap.com": "hyruleswap.eth",
"complus.network": "complus.eth",
"vote.axion.network": "axiondao.eth",
"vote.clucoin.com": "clugov.eth",
"vote.tracer.finance": "tracer.eth",
"gov.visor.finance": "visor.eth",
"vote.easybake.finance": "easybake.eth",
"enchant.soulswap.finance": "soulswap.eth",
"voting.cafeswap.finance": "cafeswapfinance.eth",
"vote.magicbalancer.org": "magicbalancer.eth",
"cast.alchemist.wtf": "alchemistcoin.eth",
"genesis-dao.hoprnet.org": "genesis-dao.hopr.eth",
"gov.stablex.finance": "stablexfinance.eth",
"gov.mig.business": "migbusiness.eth",
"signal.bzx.network": "bzx.eth",
"signal.stakedao.org": "stakedao.eth",
"basedgov.kuhoge.finance": "kuhoge.eth",
"vote.koalaintelligence.agency": "kia-gov.eth",
"survey.novaswap.finance": "novaswap.eth",
"vote.coffeeswap.finance": "coffeeswap.eth",
"gov.archerdao.io": "archerdao.eth",
"vote.carrotswap.org": "carrotswap.eth",
"vote.southchain.digital": "vote.southchain.eth",
"vote.ripae.finance": "ripae.eth",
"vote.polyient.games": "polyient-games-governance",
"vote.acryptos.com": "acryptos",
"vote.balancer.fi": "balancer.eth",
"vote.balancer.finance": "balancer.eth",
"vote.flair.finance": "0xflair.eth",
"vote.daonifty.io": "daonifty.eth",
"vote.meso.finance": "mesofinance.eth",
"vote.ycsdao.com": "ycsdao.eth",
"yearn.snapshot.page": "ybaby.eth",
"decide.fateofwagdie.com": "wagdie.eth",
"gov.zerogoki.org": "zerogoki.eth",
"vote.sushi.com": "sushigov.eth",
"vote.taraxa.io": "taraxa-project.eth",
"vote-for.by.aris.ac": "by.arisac.eth",
"vote.tarot.to": "xtarot.eth",
"vote.jibswap.com": "jibswap.eth",
"gov.artha.finance": "arthadao.eth",
"governance.dfyn.network": "dfyn.eth",
"signal.aave.com": "aave.eth",
"vote.singularitydao.ai": "sdao.eth",
"gov.xfinance.io": "xfinance",
"vote.risingsun.finance": "risingsun.eth",
"vote.nftgoddess.art": "nftgoddessart.eth",
"vote.shuffledao.com": "shuffledao.eth",
"vote.barefootparrots.com": "barefootparrots.eth",
"pillar.snapshot.page": "pillarwallet.eth",
"signal.pickle.finance": "pickle.eth",
"vote.slimysnails.io": "slimysnails.eth",
"vote.airswap.io": "vote.airswap.eth",
"vote-rinkeby.airswap.io": "vote-rinkeby.airswap.eth",
"vote.loopring.org": "lrctoken.eth",
"vote.maha.xyz": "maha.eth",
"vote.aff.icu": "affection-pls.eth",
"signal.s.finance": "s-finance",
"signal.eggy.finance": "egg",
"signal.goldmining.farm": "gmt",
"gov.aragon.org": "aragon",
"vote.yogi.fi": "yogi-fi.eth",
"oaklandvote.citydao.org": "oaklanddao",
"governance.chartex.pro": "chartex",
"governance.trustwallet.com": "trustwallet",
"voting.dfi.money": "dfi",
"vote.ykz.network": "yakuza",
"listing.cream.finance": "cream-listing.eth",
"vote.cream.finance": "cream-finance.eth",
"vote.shade.cash": "shadecash.eth",
"vote.shiny.club": "shinyclub.eth",
"vote.uvault.finance": "unicore",
"gov.exnt.io": "exnetwork",
"gov.exact.ly": "gov.exa.eth",
"dao.thirm.com": "thirm",
"gov.defiat.net": "defiat",
"vote.kwenta.eth.limo": "kwenta.eth",
"gov.synthetix.io": "snxgov.eth",
"vote.infinex.io": "infinex.eth",
"council.synthetix.io": "spartancouncil.eth",
"voting.amplesense.io": "amplesense",
"gov.moontools.io": "moontools",
"voting.pancakeswap.finance": "cakevote.eth",
"governance.wenlambo.finance": "wenlambo.finance",
"vote.beefy.finance": "beefydao.eth",
"vote.galleon.community": "galleondao.eth",
"vote.hunny.finance": "hunny.eth",
"vote.steakbank.finance": "steakbank.eth",
"vote.pancakebunny.finance": "pancakebunny.eth",
"vote.taconomics.io": "taco",
"gov.narwhalswap.org": "narwhal",
"vote.streamr.network": "streamr.eth",
"governance.etgproject.org": "etgfinance",
"gov.pokt.network": "poktdao.eth",
"vote.niceee.org": "nice",
"vote.diadata.org": "diadao.eth",
"cuni.comp.vote": "cuni",
"tbavote.joyso.io": "tballiance",
"vote.rottenswap.org": "rot",
"vote.rari.capital": "fuse.eth",
"vote.bloodyfi.org": "bloody",
"vote.indexcoop.com": "index-coop.eth",
"vote.moonlanderz.com": "ahsyaj.eth",
"governance.dawn.org": "dawn",
"gov.yaxis.io": "yaxis.eth",
"vote.archloot.com": "altvoting.eth",
"gov.dhedge.org": "gov.dhedge.eth",
"vote.frontier.xyz": "frontier",
"vote.oceanprotocol.com": "officialoceandao.eth",
"dao.bosonprotocol.io": "bosondao.eth",
"vote.sav3.org": "sav3",
"vote.bt.finance": "btfinance.eth",
"vote.pawthereum.com": "pawthereum.eth",
"vote.zlot.finance": "zlot",
"signal.idle.finance": "idlefinance.eth",
"gov.flush.lol": "flushlol.eth",
"dao.demonhellclub.com": "demonhellclub.eth",
"fund.emptyset.finance": "esd.eth",
"mtrg.meter.io": "meter-mainnet.eth",
"emtrg.meter.io": "meter-eth.eth",
"gov.kp2r.network": "keep2r.eth",
"gov.metapool.finance": "metapoolgov.eth",
"vote.gokai.org": "gokai.eth",
"governance.raiden.network": "raidendao.eth",
"gov.mink.finance": "minkfinance.eth",
"congress.myhoney.finance": "honeyfinance.eth",
"gdao.synthetix.io": "snxgrants.eth",
"governance.relay3r.network": "relayernetwork.eth",
"voting-mxx.multiplier.finance": "multiplierfinance.eth",
"governance.unique.one": "uniqueone.eth",
"vote.coverprotocol.com": "cover-protocol.eth",
"vote.metacraft.cc": "metacraftcc.eth",
"vote.basis.cash": "basiscash.eth",
"gov.keeper.finance": "keeperfi.eth",
"gov.zenifinance.io": "zenifinance.eth",
"vote.tacoswap.io": "tacoswap.eth",
"gov.playhyperblade.com": "hyperblade.eth",
"gov.basisdollar.fi": "basisdollar.eth",
"vote.keyfi.com": "keyfi-app.eth",
"vote.amptoken.org": "amp.eth",
"vote.spiderdao.io": "spider-dao.eth",
"vote.bdollar.fi": "bdollar.eth",
"devcon.snapshot.page": "devcondemo.eth",
"vote.saffron.finance": "saffronfinance.eth",
"govx.launchzone.org": "bscex.eth",
"vote.kiancoin.com": "kian.eth",
"fund.1sd.finance": "1sd.eth",
"vote.mith.cash": "mithcash.eth",
"vote.innercircle.finance": "innercirclefinance.eth",
"gov.indexed.finance": "ndx.eth",
"vote.creaticles.com": "creaticlesgov.eth",
"vote.perp.fi": "vote-perp.eth",
"vote.cask.fi": "caskprotocol.eth",
"gov.iron.finance": "ironbankfi.eth",
"mint.emptyset.gold": "emptysetgold.eth",
"signal.universe.xyz": "universexyz.eth",
"signal.barnbridge.com": "barnbridge.eth",
"vote.forthedao.com": "forthedao.eth",
"mars.poolin.fi": "marsproject.eth",
"treasury.dsd.finance": "dsd.eth",
"signal.derivadex.com": "derivadao.eth",
"governance.sx.bet": "sportx.eth",
"dao.scifi.finance": "spicedao.eth",
"dao.prosper.so": "prosperso.eth",
"governance.dextf.com": "dextfprotocol.eth",
"governance.dao.domani.finance": "domanidao.eth",
"gov.clap.finance": "clapfinance.eth",
"vote.pandayield.com": "pandayield.eth",
"gov.aventus.network": "aventus.eth",
"gov.kebabfinance.com": "kebabfinance.eth",
"vote.monsterslayer.finance": "monsterslayer.eth",
"signal.opium.network": "opiumprotocol.eth",
"oracles.opium.network": "oracles.opiumprotocol.eth",
"vote.omg.network": "omg.eth",
"vote.shabushabu.finance": "shabushabufi.eth",
"council.illuvium.io": "ilv.eth",
"gov.illuvium.io": "ilvgov.eth",
"vote.yzydao.finance": "yzydao.eth",
"gov.premia.blue": "premia.eth",
"parliament.premia.blue": "parliament.premia.eth",
"vote.perlinx.finance": "perlinx.eth",
"vote.defigeek.xyz": "defigeek.eth",
"ambassador.synthetix.io": "snxambassador.eth",
"vote.bamboodefi.com": "bamboodefi.eth",
"vote.1-b.tc": "1btc.eth",
"poll.santiment.net": "santiment.eth",
"voting-bmxx.multiplier.finance": "mcl-multiplierfinance.eth",
"vote.cndy.finance": "candyfinance.eth",
"gov.alpacafinance.org": "alpacafinance.eth",
"dao.zfo.gg": "zfogg.eth",
"vote.ensuser.com": "ensuser.eth",
"vote.redemptiondao.org": "douglasqian.eth",
"governance.diamondhandsfinance.org": "diamondhandsfinance.eth",
"vote.rankerdao.com": "rankerdao.eth",
"vote.bears.finance": "fbear.eth",
"vote.megamoon.space": "mega-moon.eth",
"vote.zyberswap.io": "zyberswap.eth",
"vote.combine.finance": "xcomb.eth",
"vote.rulerprotocol.com": "rulerprotocol.eth",
"voting.itam.games": "itam.eth",
"dao.apeships.com": "apeships.eth",
"snapshot.valuedefi.io": "gvvalue.eth",
"vote.bingocash.app": "bingocash.eth",
"vote.ballena.io": "ballena.eth",
"vote.kalmy.app": "kalmyapp.eth",
"gov.apoyield.com": "apoyield.eth",
"gov.forcedao.com": "forcedao.eth",
"vote.bancor.network": "bancornetwork.eth",
"vote.cryptokombat.com": "cryptokombat.eth",
"vote.arcx.money": "arcx.eth",
"vote.88mph.app": "88mph.eth",
"vote.kimchidao.org": "kimchidao.eth",
"governance.curio.cards": "curiovoters.eth",
"vote.forkenomics.com": "forkenomics.eth",
"snapshot.comp.vote": "comp-vote.eth",
"gov.tusker.finance": "tuskerfinance.eth",
"gov.sunicoin.org": "suni.eth",
"vote.macaronswap.finance": "macaronswap.eth",
"vote.resdx.io": "resdx.eth",
"vote.gro.xyz": "gro.xyz",
"snapshot.solos.so": "solos.eth",
"snapshot.fei.money": "fei.eth",
"dao.pepemon.world": "pepedontdump.eth",
"vote.levyathan.finance": "levyathan.eth",
"vote.akropolis.io": "akropolis.eth",
"vote.blockzerolabs.io": "blockzerolabs.eth",
"mscore.bprotocol.org": "m.bsnapshot.eth",
"cscore.bprotocol.org": "bsnapshot.eth",
"vote.iftip.io": "iftip.eth",
"vote.supra.finance": "suprafinance.xyz",
"snapshot.strudel.finance": "strudel.eth",
"governance.treedefi.com": "treedefi.eth",
"vote.m1guelpf.me": "token.m1guelpf.eth",
"gov.parallaxprotocol.com": "parallaxprotocol.eth",
"snapshot.everipedia.com": "everipediaiq.eth",
"vote.nerve.fi": "nervefinance.eth",
"ekklesia.mask.io": "masknetwork.eth",
"vote.stakewise.io": "stakewise.eth",
"gov.dalmatians.io": "dalmatians.eth",
"governance.alphr.finance": "alphrdao.eth",
"dao.levinswap.org": "levinswap.eth",
"vote.jetswap.finance": "jetswap-finance.eth",
"polygon-vote.jetswap.finance": "polygon-jetswap-finance.eth",
"vote.fastyield.app": "fastyield.eth",
"vote.apeswap.finance": "apeswap-finance.eth",
"vote.liquidcollectibles.io": "liquidcollectibles.eth",
"vote.crystl.finance": "crystl.eth",
"voting.pippi.finance": "pippi.eth",
"ctrl.lift.kitchen": "liftkitchen.eth",
"vote.lattice.is": "latticegov.eth",
"gov.libertas.network": "libertas.eth",
"voting.pantherswap.com": "pantherswap.eth",
"vote.alchemistdefi.com": "alchemistdefi.eth",
"vote.feeder.finance": "feederfinance.eth",
"voting.adventureland.finance": "adventurelandfinance.eth",
"vote.flydao.app": "flydao.eth",
"vote.fantoms.art": "randomz.eth",
"vote.wraithswap.finance": "wraithswap.eth",
"vote.spooky.fi": "spookyswap.eth",
"vote.smallarmssyndicate.com": "jgbzoo.eth",
"vote.glidefinance.io": "glidefinance.eth",
"signal.ampleforth.org": "ampleforthorg.eth",
"vote.altrucoin.com": "altrucoin.eth",
"voting.font.community": "fontcommunity.eth",
"snapshot.vswap.fi": "vbswap.eth",
"vote.munchproject.io": "munchproject.eth",
"snapshot.behodler.io": "behodler.eth",
"vote.ret.team": "retokendao.eth",
"gov.zoocoin.cash": "zoocoin.eth",
"vote.nftsnafu.org": "nftsnafu.eth",
"vote.fairmoon.community": "fairmoon.eth",
"voting.smartdex.finance": "smartdex-voting.eth",
"vote.moonpirate.finance": "moonpirate.eth",
"vote.mai.finance": "qidao.eth",
"dao.modefi.io": "mod.eth",
"dao-bsc.modefi.io": "mod-bsc.eth",
"dao-ftm.modefi.io": "mod-ftm.eth",
"vote.conqueruranus.com": "conqueruranus.eth",
"vote.cryptohoots.com": "cryptohoots.eth",
"vote.koaladefi.eth": "koaladefi.eth",
"vote.imsuperleague.com": "imsuperleague.eth",
"governance.rotomoon.app": "rotomoon.eth",
"vote.honestchain.finance": "honestfinance.eth",
"vote.earnnetwork.io": "earnnetwork.eth",
"vote.moonpot.com": "moonpotdotcom.eth",
"vote.warp.finance": "votewarp.eth",
"gov.polygon.iron.finance": "iron-polygon.eth",
"vote.steakhouse.finance": "vote-steakhouse.eth",
"vote.flashstake.io": "flashprotocol.eth",
"vote.fenixtoken.net": "fenixtoken.eth",
"vote.supershiba.exchange": "supershiba.eth",
"vote.liquifi.org": "liquifi.eth",
"vote.alliance.xyz": "alliance.eth",
"vote.yetiski.club": "degenyetis.eth",
"vote.x0swap.com": "x0swap.eth",
"vote.luckymaneki.com": "luckymaneki.eth",
"vote.honeydao.com": "honeydao.eth",
"gov.kumatoken.com": "kumainu.eth",
"gov.beluga.fi": "belugaprotocol.eth",
"vote.viralata.finance": "viralata.eth",
"vote.svcs.finance": "givingtoservices.eth",
"vote.spore.engineering": "spore-engineering.eth",
"gov.phuture.finance": "phuture.eth",
"vote.deversifi.com": "rhinofi.vote",
"dao.dogeswap.global": "dogevote.eth",
"vote.moonbud.space": "moonbud.eth",
"vote.crisis.network": "crisisdao.eth",
"vote.cheesecakeswap.com": "cheesecakeswap.eth",
"vote.cyborg.art": "cyborgdao.eth",
"signal.curve.fi": "curve.eth",
"vote.heds.app": "camb0t.eth",
"vote.cyphertrust.fi": "cyphertrust.eth",
"vote.volatility.com": "vol.eth",
"vote.carbonswap.finance": "carbonswap.eth",
"voting.snowcrash.finance": "snowcrashdao.eth",
"vote.planetfinance.io": "planetfinance.eth",
"vote.planet.finance": "planetfinance.eth",
"vote.kogecoin.io": "kogecoin.eth",
"vote.frenchie.so": "frenchienetwork.eth",
"gov.50cent.network": "50centnetwork.eth",
"vote.tea-swap.finance": "tea-swap.eth",
"vote.pitbull.community": "pitbulldao.eth",
"governance.unique.fans": "uniquefans.eth",
"gov.omg.dev": "dao.omg.eth",
"vote.krausehouse.club": "krausehouse.eth",
"vote.dexkit.com": "dexkit.eth",
"gov.inumaki.org": "inumaki.eth",
"gov2.inumaki.org": "dawg.inumaki.eth",
"governance.uniqueone.photo": "uniquephoto.eth",
"voting.chimpyswap.com": "chimpyswap.eth",
"vote.apetroop.io": "apetroop.eth",
"vote.ariva.digital": "arivadao.eth",
"vote.to-the-moon.farm": "to-the-moon-farm.eth",
"vote.moon-vault.com": "moon-vault.eth",
"vote.polyvertex.finance": "polyvertex.eth",
"vote.baconcoin.com": "baconcoin.eth",
"vote.undeadwarriors.io": "undeadwarriors.eth",
"vote.originprotocol.com": "origingov.eth",
"vote.ousd.com": "ousdgov.eth",
"vote.aishine.me": "hustwyz.eth",
"gov.aol.gg": "apesonline.eth",
"gov.forefront.market": "ffdao.eth",
"vote.liquiddriver.finance": "liquiddriver.eth",
"gov.coin-bid.io": "coin-bid.eth",
"vote.doge2.app": "doge2-crypto.eth",
"vote.sil.finance": "sister-in-law.eth",
"vote.avai.finance": "orcapod.eth",
"vote.mint.club": "mintclub.eth",
"vote.thegrandbanks.finance": "thegrandbanks.eth",
"vote.leekdao.xyz": "leekdao.eth",
"vote.tomb.finance": "tombfinance.eth",
"vote.agdeportes.com": "agdeportes.eth",
"vote.minotaur.money": "thewolfgame.eth",
"vote.landshare.io": "landshare.eth",
"vote.meebitsdao.com": "meebitsdao.eth",
"vote.dopeshibas.fun": "dopeshibas.eth",
"vote.manifoldfinance.com": "manifoldfinance.eth",
"vote.littlesh.art": "littlesharts.eth",
"vote.takodefi.com": "takodefi.eth",
"vote.fuse.io": "fusedao.eth",
"vote.chargedefi.fi": "chargedefi.eth",
"grant.mint.club": "mintgrant.eth",
"vote.minto.finance": "minto.eth",
"vote.yamp.finance": "yamp.eth",
"gov.compli.fi": "complifi.eth",
"vote.feistydoge.art": "feistydao.eth",
"vote.shunkakinoki.com": "shunkakinoki.eth",
"vote.hepa.finance": "hepa.eth",
"vote.yakuzainc.io": "yakuzaincdao.eth",
"gov.moonfarm.in": "moonswpadex.eth",
"vote.liquidifty.io": "liquidifty.eth",
"gov.moonswap.tech": "moonswpadex.eth",
"vote.yieldyak.com": "yakherd.eth",
"dao.cvl.network": "cvldao.eth",
"vote.ledgity.com": "ledgity.xyz",
"vote.jarvis.network": "synthereum.eth",
"vote.polywhirl.cash": "polywhirl.eth",
"vote.faraland.io": "faradao.eth",
"dao.chihiro-inu.com": "chihiro-inu.eth",
"vote.nft-gods.com": "nft-gods.eth",
"vote.moonsama.com": "expectchaos.eth",
"vote.sunrisegaming-dao.com": "sunrisegaming.eth",
"dao.babyspacefloki.com": "babyspacefloki.eth",
"vote.meowfinance.org": "meowfinance.eth",
"gov.dot.finance": "dotfinance.eth",
"voting-v2.multiplier.finance": "v2-multiplierfinance.eth",
"vote.mgh.dao": "metagamehub.eth",
"gov.maidcoin.org": "maidcoin.eth",
"vote.cyberkongz.com": "cyberkongz.eth",
"vote.wildcubsociety.io": "wildcubdao.eth",
"vote.wildcubdao.io": "wildcubdao.eth",
"vote.bearsdeluxe.io": "votedeluxe.eth",
"vote.turtlecoin.com": "trtlcoin.eth",
"vote.moonbeans.io": "moonbeans.eth",
"gov.yesports.gg": "yesportsgg.eth",
"vote.dappradar.com": "dappradar.eth",
"gov.coinica.net": "coinica.eth",
"dao.baka.cool": "koumakan.eth",
"governance.yfdai.finance": "yfdaifinance.eth",
"vote.saddle.community": "saddlefinance.eth",
"vote.samot.club": "samotclub.eth",
"vote.inuyasha.io": "yashadao.eth",
"vote.candlelabs.org": "cndl.eth",
"vote.arbibots.xyz": "arbibots.eth",
"vote.lobbytoken.io": "lobbytoken.eth",
"vote.swdao.org": "sw-dao.eth",
"vote.theglitches.art": "theglitchesdao.eth",
"dictatorship.levxdao.org": "levx.eth",
"dao.carbonpaws.io": "carbonpaws.eth",
"dao.cvlp2p.com": "cvldao.eth",
"vote.litedex.io": "litedex.eth",
"vote.scarychaincapital.com": "scarychaincapital.eth",
"vote.matcha.fi": "streamingfast.eth",
"vote.bsc-mvb.io": "mvb.eth",
"vote.dios.finance": "diosfinance.eth",
"vote.mysticalorbs.xyz": "mysticcollective.eth",
"vote.foundance.org": "foundance.eth",
"gov.diversecapital.finance": "diversecapital.eth",
"vote.impermax.finance": "impermax.eth",
"vote.feudalz.io": "feudalz.eth",
"vote.liquidrium.com": "liquidrium.eth",
"vote.underfitted.io": "underfitted.eth",
"dao.cropunks.art": "cropunks.eth",
"snapshot.silo.finance": "silofinance.eth",
"vote.aavegotchi.com": "aavegotchi.eth",
"snapshot.keplerdao.finance": "keplerdao.eth",
"vote.pastry.xyz": "bakerydao.eth",
"vote.alphadao.money": "alphagov.eth",
"vote.jfscaramazza.com": "jfscaramazza.eth",
"signal.paladin.vote": "palvote.eth",
"dao.cronosfrens.io": "cronosfrens.eth",
"vote.treschain.io": "treschain.eth",
"gov.wagumi.xyz": "wagumi.eth",
"vote.rune.game": "runemetaverse.eth",
"vote.hord.fi": "hordgov.eth",
"vote.huckleberry.finance": "huckleberrydex.eth",
"vote.hector.network": "hectordao.eth",
"gov.tethys.finance": "tethysswap.eth",
"vote.darkmatterdefi.com": "dmdarkmatter.eth",
"gov.fxcm.xyz": "symbolspace.eth",
"vote.kratosdao.finance": "kratosdaofi.eth",
"dao.fxcm.xyz": "metauniversecapital.eth",
"vote.solace.fi": "solacefi.eth",
"vote.alluo.com": "alluo.eth",
"vote.mathblocks.io": "mathblocks.eth",
"vote.kap.gg": "thekapitaldao.eth",
"vote.kapital.gg": "thekapitaldao.eth",
"vote.aetherdao.io": "aetherdao.eth",
"vote.swivel.finance": "swiveldao.eth",
"dao.alphakek.ai": "alphakekai.eth",
"vote.construct.tools": "stakeborgdao.eth",
"vote.trapeza.finance": "trapezaprotocol.eth",
"vote.bentfinance.com": "bentfinance.eth",
"vote.empyrean.fi": "empyreandao.eth",
"gm.p12.dev": "p12.eth",
"vote.webb.game": "worldwidewebb.eth",
"vote.utopia42.club": "utopia42.eth",
"vote.trubadger.io": "trubadger.eth",
"vote.gbox.space": "gboxspace.eth",
"vote.guttercatgang.com": "gcgdao.eth",
"vote.pagedao.org": "pagedao.eth",
"gov.fries.fund": "friesdao.eth",
"vote.undisclosedcollectors.com": "undisclosedcollectors.eth",
"vote.kalao.io": "getkalao.eth",
"vote.ethalend.org": "ethaprotocol.eth",
"vote.starsharks.com": "starsharks.com",
"vote.rhino.fi": "rhinofi.vote",
"vote.gorillasquad.finance": "gorillasquad.eth",
"vote.infinitelaunch.io": "infinitelaunch.eth",
"vote.brokoli.network": "brokolinetwork.eth",
"meow.ethercats.io": "ethercats.eth",
"vote.banklessbr.com": "banklessbrdao.eth",
"vote.wanakafarm.com": "wanakafarm-dao.eth",
"vote.defikingdoms.com": "dfkvote.eth",
"dao.astraguild.io": "astraguildventures.eth",
"vote.cyberfrogz.io": "cyberz.eth",
"governance.domani.finance": "dextfprotocol.eth",
"vote.forwardprotocol.io": "forwardprotocol.eth",
"gov.hpb.io": "xinlian.eth",
"dao.solidefied.com": "solidefied.eth",
"vote.fantomstarter.io": "fantomstarter.eth",
"vote.netswap.io": "venett.eth",
"vote.hera.finance": "herafinance.eth",
"vote.benswap.cash": "bentokenfinance.eth",
"dao.decentrastates.org": "red.che.eth",
"vote.hodl.finance": "hft.eth",
"vote.orion.security": "orionsecurity.eth",
"governance.xdc.network": "xinfinxdcnetwork.eth",
"vote.eggsforukraine.com": "eggsforukraine.eth",
"vote.komorebinosekai.com": "komorebi-no-sekai.eth",
"vote.homies.global": "homiesglobal.eth",
"dao.safu.net": "safuyield.eth",
"dao.getagump.org": "getagump.eth",
"dao.boomgala.io": "boomgaladao.eth",
"dao.dakshow.com.vn": "dakshow.eth",
"vote.coniun.io": "coniun.eth",
"vote.cgu.io": "crypto-gaming-united.eth",
"vote.tttreasures.club": "tttreasures.eth",
"vote.banksydao.finance": "banksy.farm",
"vote.rikkei.finance": "rikkei-finance.eth",
"vote.calciumcrew.com": "calciumcrew.eth",
"vote.svote.xyz": "testsnap.eth",
"vote.mimo.capital": "mimo.eth",
"vote.dforce.network": "dforcenet.eth",
"vote.spysignals.io": "spysignals.eth",
"vote.galaxy.eco": "g-dao.eth",
"dao.galxe.org": "g-dao.eth",
"dao.galxe.com": "g-dao.eth",
"dao.gravity.xyz": "g-dao.eth",
"irldao.co": "irldao.eth",
"dao.metfi.io": "metfi.io",
"vote.gamium.world": "gamiumworld.eth",
"nftfightclub.co": "the75.eth",
"dao.ftm.guru": "eliteness.eth",
"vote.rave.domains": "raving.eth",
"vote.razor.network": "raz.eth",
"vote.plasma.finance": "0xplasma.eth",
"vote.lenster.xyz": "lenster.xyz",
"vote.sirius.finance": "siriusfinance.eth",
"vote.pokerkingsclub.com": "pokerkingsclub.eth",
"vote.popop.world": "hanyajun.eth",
"vote.polarisfinance.io": "polarisfinance.eth",
"vote.legalhac.kr": "legalhackr.eth",
"coop-vote.legalhac.kr": "legalhackrcoop.eth",
"vote.pizzaguild.io": "gpizza.eth",
"vote.dedogmadao.com": "dedogmadao.eth",
"dao.liquidex.pro": "liquidex.eth",
"vote.diapo.xyz": "diapo.eth",
"vote.rei.network": "rei-network.eth",
"vote.blockchaincuties.com": "cutiesofficial.eth",
"vote.nuddybits.com": "nuddybits.eth",
"dao.alphalabs.one": "alphalabsdao.eth",
"dao.radiant.capital": "radiantcapital.eth",
"vote.artizen.fund": "artizenfund.eth",
"vote.orolana.com": "orolana.eth",
"vote.kopidao.com": "kopidao.eth",
"vote.dragon.xyz": "dragonmeta.eth",
"dao.leslarmetaverse.com": "leslarmetaverse.eth",
"governance.aurigami.finance": "aurigami-finance.eth",
"vote.ancient8.gg": "ancient8gg.eth",
"vote.treasure.lol": "treasuregaming.eth",
"vote.nextlend.org": "nextlend.eth",
"vote.ib.xyz": "iron-bank.eth",
"gov.thaloz.com": "thaloz.eth",
"vote.aura.finance": "aurafinance.eth",
"gaugevotes.aura.finance": "gauges.aurafinance.eth",
"vote.rocketpool.net": "rocketpool-dao.eth",
"vote.metapocket.games": "meta-pocket.eth",
"snapshot.arbius.ai": "arbiusdao.eth",
"dao.taunetwork.io": "taucoreteam.eth",
"vote.cortexdao.io": "cortexdao.eth",
"gov.emdx.io": "emdx.eth",
"vote.evoverses.com": "evoverses.games",
"vote.wallstreetgames.net": "wsgvote.eth",
"vote.elasticswap.org": "elasticswap.eth",
"vote.nation3.org": "nation3.eth",
"vote.famdao.org": "fam-dao.eth",
"vote.decemount.unidef.org": "decemount.eth",
"gov.daomaker.com": "shomustgoon.eth",
"vote.championfinance.io": "championfinance.eth",
"dao.wearecashcows.com": "wearecashcows.eth",
"dao.cashcows.club": "cashcowsclub.eth",
"vote.testnet.wennect.com": "wennect-dev.eth",
"vote.gurucollective.xyz": "gurucollective.eth",
"vote.ape.fi": "apedotfi.eth",
"dao.pinkieinu.com": "pinkieinu.eth",
"vote.fluent.finance": "fluentdao.eth",
"vote.mambomakers.com": "mambomakers.eth",
"fedvote.fluent.finance": "fluentfed.eth",
"vote.eledao.io": "ele-dao.eth",
"vote.nostalgia-nft.xyz": "nostalgia-dao.eth",
"vote.unitedpandasofmetaverse.com": "unitedpandasofmetaverse.eth",
"vote.chocodoge.dog": "chocodoge.eth",
"vote.buns.land": "bunsland.eth",
"vote.prom.io": "promdao.eth",
"vote.safuchain.net": "safuchain.eth",
"vote.wandinvestments.com": "wandinvestments.com",
"vote.lebo.finance": "lebo-finance.eth",
"vote.dynodao.io": "dynodao.eth",
"vote.cirip.io": "cirip.io",
"vote.grugslair.xyz": "grugslair.eth",
"dao.nufoundry.org": "nufoundry.eth",
"gov.infinitypad.com": "ipadgovernance.eth",
"vote.tubbyturtles.com": "arantuil.eth",
"vote.bluejay.finance": "bluejayfinance.eth",
"vote.posichain.org": "posichaindao.eth",
"vote.hausofprime.com": "hausofprime.eth",
"proposals.powershift.properties": "powershiftproperties.eth",
"gov.ohgeez.org": "levx.eth",
"snapshot.panvala.com": "panvala.eth",
"vote.uwblockchain.ca": "uwblockchainclub.eth",
"dao.notoriousfoolacademy.com": "fooldao.eth",
"vote.tanukiverse.com": "tanukiverse.eth",
"vote.t1bets.gg": "t1bets.eth",
"dao.bglnode.online": "bgldao.eth",
"vote.primapes.gg": "primapes.eth",
"gov.milliontoken.io": "milliongov.eth",
"governance.encode.org": "encodeorg.eth",
"proposals.psjourneys.org": "psjourneys.eth",
"vote.hold.finance": "hft.eth",
"vote.spacedefi.tech": "wandinvestments.com",
"dao.getprimal.com": "getprimal.eth",
"lux.vote": "luxdefi.eth",
"vote.decubate.com": "decubategov.eth",
"vote.nftprotect.app": "nftprotectapp.eth",
"dao.gracie.network": "gracienetwork.eth",
"vote.singlefinance.io": "singlefinance.eth",
"drc.daosquare.io": "poll.daosquare.eth",
"dreo.daosquare.io": "community.daosquare.eth",
"vote.gravityfinance.io": "gravity-finance.eth",
"governance.xdefi.io": "xdefigovernance.eth",
"gov.apedao.finance": "apedao-gov.eth",
"vote.bakeddao.com": "bakeddao.eth",
"vote.sk8block.com": "sk8block.eth",
"vote.pjnen.com": "kazuzxc.eth",
"vote.chigag.studio": "chigag-studio.eth",
"vote.cryodao.org": "vote.cryodao.eth",
"dao.space.id": "dao.spaceid.eth",
"dao.pearl.club": "pearlclubdao.eth",
"vote.molens.xyz": "molens.eth",
"vote.decent-dao.org": "decent-dao.eth",
"vote.pxlmage.com": "pxlmage.eth",
"signal.bumper.org": "bumper.eth",
"vote.safestake.co": "safestakeprotocol.eth",
"proposals.cubedao.net": "thecubedao.eth",
"vote.mfdao.pro": "multiface.eth",
"vote.dragoncrypto.io": "dragoncrypto.io",
"dao.arkadiapark.com": "arkadia-park.eth",
"vote.bcrater.org": "b00tyhole.eth",
"vote.cbidao.com": "cbidao.eth",
"governance.libfi.io": "libfi.eth",
"vote.ethena.fi": "ethena.fi",
"governance.topia.gg": "topia-governance.eth",
"gov.piteas.io": "piteas.eth",
"vote.aitech.io": "aitechio.eth",
"vote.vitadao.com": "vote.vitadao.eth",