diff --git a/assets/img/chevron-up.svg b/assets/img/chevron-up.svg
new file mode 100644
index 0000000..73bc48e
--- /dev/null
+++ b/assets/img/chevron-up.svg
@@ -0,0 +1 @@
+
diff --git a/assets/styles/components/_table.scss b/assets/styles/components/_table.scss
index ea59243..4e49d5d 100644
--- a/assets/styles/components/_table.scss
+++ b/assets/styles/components/_table.scss
@@ -18,6 +18,22 @@
th {
font-weight: $weight-normal;
+
+ &.is-current-sort, &.is-sortable {
+ border-color: $primary;
+
+ &:hover {
+ border-color: #518e6a;
+ }
+ }
+
+ &.is-sortable {
+ .icon {
+ height: 1.071rem;
+ width: 1.071rem;
+ background-image: url('../img/chevron-up.svg')
+ }
+ }
}
td {
diff --git a/pages/index.vue b/pages/index.vue
index 5c79c7c..9ed4f56 100644
--- a/pages/index.vue
+++ b/pages/index.vue
@@ -28,9 +28,11 @@
:per-page="rowsPerPage"
paginated
pagination-position="both"
+ default-sort="followersCount"
+ default-sort-direction="desc"
>
-
+
{{ props.row.id }}
@@ -50,6 +52,10 @@
+
+ {{ props.row.followersCount > 0 ? numberFormater(props.row.followersCount) : '' }}
+
+
{{ props.row.name }}
@@ -148,12 +154,19 @@ export default {
},
computed: {
filteredContributions() {
- return this.contributions
- .filter((contribution) => {
- const name = contribution.name || 'anonymous'
- return name.toLowerCase().includes(this.contributionSearch.toLowerCase())
- })
- .reverse()
+ return this.contributions.filter((contribution) => {
+ const name = contribution.name || 'anonymous'
+ const company = contribution.company ?? ''
+ return (
+ name.toLowerCase().includes(this.contributionSearch.toLowerCase()) ||
+ company.toLowerCase().includes(this.contributionSearch.toLowerCase())
+ )
+ })
+ }
+ },
+ methods: {
+ numberFormater(num) {
+ return num > 999 ? ~~(num / 1000) + 'k' : num
}
}
// async mounted() {
diff --git a/store/contributions.json b/store/contributions.json
index a24effa..7f80289 100644
--- a/store/contributions.json
+++ b/store/contributions.json
@@ -1,10028 +1,10028 @@
[
- {
- "id": 1,
- "date": "2020-04-29 20:00:29",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 2,
- "date": "2020-04-29 20:01:57",
- "name": "pbot",
- "company": null,
- "socialType": "twitter",
- "handle": "PeppersecB",
- "attestation": null
- },
- {
- "id": 3,
- "date": "2020-04-29 20:10:54",
- "name": "Roman Storm",
- "company": "Tornadocash",
- "socialType": "github",
- "handle": "rstormsf",
- "attestation": null
- },
- {
- "id": 4,
- "date": "2020-04-30 07:28:00",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 5,
- "date": "2020-04-30 07:31:00",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 6,
- "date": "2020-04-30 07:32:52",
- "name": "Pertsev Alexey",
- "company": "Tornadocash",
- "socialType": "github",
- "handle": "pertsev",
- "attestation": null
- },
- {
- "id": 7,
- "date": "2020-04-30 07:34:30",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 8,
- "date": "2020-04-30 10:32:17",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 9,
- "date": "2020-04-30 20:48:27",
- "name": "Sergej Kunz",
- "company": "1inch",
- "socialType": "github",
- "handle": "deacix",
- "attestation": "https://twitter.com/1inchExchange/status/1255962655166169090"
- },
- {
- "id": 10,
- "date": "2020-04-30 20:51:32",
- "name": "Anton Bukov",
- "company": "1inch",
- "socialType": "github",
- "handle": "k06a",
- "attestation": "https://twitter.com/k06a/status/1255963728161406989"
- },
- {
- "id": 11,
- "date": "2020-04-30 20:53:11",
- "name": "Kobi Gurkan",
- "company": null,
- "socialType": "twitter",
- "handle": "kobigurk",
- "attestation": "https://twitter.com/kobigurk/status/1255963784763650050"
- },
- {
- "id": 12,
- "date": "2020-04-30 20:54:27",
- "name": "Kieran Daniels",
- "company": "kierankyle ",
- "socialType": "twitter",
- "handle": "kierankyle",
- "attestation": "https://twitter.com/kierankyle/status/1255968613380444160"
- },
- {
- "id": 13,
- "date": "2020-04-30 20:58:31",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 14,
- "date": "2020-04-30 21:00:05",
- "name": "Igor Gulamov",
- "company": "ZeroPool",
- "socialType": "github",
- "handle": "snjax",
- "attestation": null
- },
- {
- "id": 15,
- "date": "2020-04-30 21:01:42",
- "name": "BGGB",
- "company": null,
- "socialType": "twitter",
- "handle": "boston_gamer",
- "attestation": "https://twitter.com/boston_gamer/status/1256075013947564039"
- },
- {
- "id": 16,
- "date": "2020-04-30 21:05:22",
- "name": "Ameen Soleimani",
- "company": "ConsenSith Academy",
- "socialType": "github",
- "handle": "ameensol",
- "attestation": "https://twitter.com/ameensol/status/1255969939912974338"
- },
- {
- "id": 17,
- "date": "2020-04-30 21:06:32",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 18,
- "date": "2020-04-30 21:07:41",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 19,
- "date": "2020-04-30 21:09:02",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 20,
- "date": "2020-04-30 21:10:25",
- "name": "Arnaud Schenk",
- "company": "Aztec",
- "socialType": "github",
- "handle": "ArnSch",
- "attestation": null
- },
- {
- "id": 21,
- "date": "2020-04-30 21:12:04",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 22,
- "date": "2020-04-30 21:13:38",
- "name": "Brian Gu",
- "company": "EF",
- "socialType": "twitter",
- "handle": "bgu33",
- "attestation": "https://twitter.com/bgu33/status/1255970838102319104"
- },
- {
- "id": 23,
- "date": "2020-04-30 21:15:30",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 24,
- "date": "2020-04-30 21:16:56",
- "name": "Ameen Soleimani",
- "company": "Moloch Ventures",
- "socialType": "github",
- "handle": "ameensol",
- "attestation": "https://twitter.com/ameensol/status/1255969806320234496"
- },
- {
- "id": 25,
- "date": "2020-04-30 21:23:18",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 26,
- "date": "2020-04-30 21:24:52",
- "name": "betatestereth",
- "company": null,
- "socialType": "twitter",
- "handle": "kevingaspar",
- "attestation": "https://twitter.com/kevingaspar/status/1255971452689567747"
- },
- {
- "id": 27,
- "date": "2020-04-30 21:33:24",
- "name": "Rajarshee",
- "company": "",
- "socialType": "twitter",
- "handle": "RajarsheeDutta",
- "attestation": "https://twitter.com/RajarsheeDutta/status/1255974081515536384"
- },
- {
- "id": 28,
- "date": "2020-04-30 21:35:40",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 29,
- "date": "2020-04-30 21:44:53",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 30,
- "date": "2020-04-30 21:49:16",
- "name": "Tyler Durden",
- "company": "Mayhem",
- "socialType": "github",
- "handle": "ethereumkev",
- "attestation": null
- },
- {
- "id": 31,
- "date": "2020-04-30 22:06:40",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 32,
- "date": "2020-04-30 22:07:57",
- "name": "Wilbo Waggins",
- "company": "DeversiFi",
- "socialType": "twitter",
- "handle": "will_harborne",
- "attestation": "https://twitter.com/will_harborne/status/1255982682569347074"
- },
- {
- "id": 33,
- "date": "2020-04-30 22:12:37",
- "name": "jimjim",
- "company": null,
- "socialType": "twitter",
- "handle": "JimjimValkema",
- "attestation": null
- },
- {
- "id": 34,
- "date": "2020-04-30 22:13:59",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 35,
- "date": "2020-04-30 22:16:35",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 36,
- "date": "2020-04-30 22:17:52",
- "name": "jimjimbutfromrust",
- "company": "",
- "socialType": "twitter",
- "handle": "JimjimValkema",
- "attestation": null
- },
- {
- "id": 37,
- "date": "2020-04-30 22:19:42",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 38,
- "date": "2020-04-30 22:22:57",
- "name": "Kaden",
- "company": "Trustless Fund",
- "socialType": "twitter",
- "handle": "KadenZipfel",
- "attestation": "https://twitter.com/KadenZipfel/status/1255990622164418560"
- },
- {
- "id": 39,
- "date": "2020-04-30 22:33:32",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 40,
- "date": "2020-04-30 22:38:56",
- "name": "MePAK",
- "company": null,
- "socialType": "twitter",
- "handle": "mepak",
- "attestation": "https://twitter.com/mepak/status/1255990190415454218"
- },
- {
- "id": 41,
- "date": "2020-04-30 22:43:04",
- "name": "Nate Gentile",
- "company": null,
- "socialType": "twitter",
- "handle": "thenateway",
- "attestation": "https://twitter.com/thenateway/status/1255992145544019970"
- },
- {
- "id": 42,
- "date": "2020-04-30 22:46:09",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 43,
- "date": "2020-04-30 22:48:12",
- "name": "Gun Sal Lo",
- "company": "ConsenSys Diligence",
- "socialType": "twitter",
- "handle": "GNSPS",
- "attestation": "https://twitter.com/GNSPS/status/1255992815055708163"
- },
- {
- "id": 44,
- "date": "2020-04-30 22:52:44",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 45,
- "date": "2020-04-30 22:56:32",
- "name": "Pedro Gomes",
- "company": "WalletConnect",
- "socialType": "twitter",
- "handle": "pedrouid",
- "attestation": "https://twitter.com/pedrouid/status/1255994532656799744"
- },
- {
- "id": 46,
- "date": "2020-04-30 22:58:52",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 47,
- "date": "2020-04-30 23:01:13",
- "name": "Paul Vienhage",
- "company": "0xProject",
- "socialType": "github",
- "handle": "pvienhage",
- "attestation": "https://twitter.com/pvienhage/status/1255995729484513281"
- },
- {
- "id": 48,
- "date": "2020-04-30 23:02:51",
- "name": "ligi",
- "company": "WallETH",
- "socialType": "github",
- "handle": "ligi",
- "attestation": "https://twitter.com/mr_ligi/status/1255996579787558913"
- },
- {
- "id": 49,
- "date": "2020-04-30 23:07:28",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 50,
- "date": "2020-04-30 23:08:41",
- "name": "Jlien Genestoux",
- "company": "Unlock Protocol",
- "socialType": "twitter",
- "handle": "julien51",
- "attestation": "https://twitter.com/julien51/status/1255997795347173377"
- },
- {
- "id": 51,
- "date": "2020-04-30 23:10:01",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 52,
- "date": "2020-04-30 23:11:42",
- "name": "Lefteris Karapetsas",
- "company": "Rotki",
- "socialType": "twitter",
- "handle": "LefterisJP",
- "attestation": "https://twitter.com/LefterisJP/status/1255998669951840262"
- },
- {
- "id": 53,
- "date": "2020-04-30 23:13:03",
- "name": "Not ur dog not ur problem",
- "company": "GunClear",
- "socialType": "twitter",
- "handle": "fubuloubu",
- "attestation": "https://twitter.com/fubuloubu/status/1255998727350824961"
- },
- {
- "id": 54,
- "date": "2020-04-30 23:14:42",
- "name": "The Officious BokkyPooBah",
- "company": "Optino options on ETHERC20 pairs",
- "socialType": "twitter",
- "handle": "BokkyPooBah",
- "attestation": "https://twitter.com/BokkyPooBah/status/1255999454307483649"
- },
- {
- "id": 55,
- "date": "2020-04-30 23:16:47",
- "name": "DeFi Dude defidudeeth",
- "company": "DeFi Dude",
- "socialType": "twitter",
- "handle": "DeFiDude",
- "attestation": "https://twitter.com/DeFiDude/status/1255999688941154305"
- },
- {
- "id": 56,
- "date": "2020-04-30 23:19:40",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 57,
- "date": "2020-04-30 23:21:00",
- "name": "Validator",
- "company": "ETH2",
- "socialType": "twitter",
- "handle": "ethStaker",
- "attestation": null
- },
- {
- "id": 58,
- "date": "2020-04-30 23:22:31",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 59,
- "date": "2020-04-30 23:24:03",
- "name": "Elies",
- "company": null,
- "socialType": "twitter",
- "handle": "elies",
- "attestation": null
- },
- {
- "id": 60,
- "date": "2020-04-30 23:25:33",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 61,
- "date": "2020-04-30 23:27:20",
- "name": "Cristian Espinoza ",
- "company": "BUIDL Honduras",
- "socialType": "twitter",
- "handle": "crisgarner",
- "attestation": "https://twitter.com/crisgarner/status/1256002271571296261"
- },
- {
- "id": 62,
- "date": "2020-04-30 23:28:44",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 63,
- "date": "2020-04-30 23:30:26",
- "name": "Franco Zeoli ",
- "company": "Nomic Labs",
- "socialType": "twitter",
- "handle": "zfran",
- "attestation": "https://twitter.com/zfran/status/1256004398569881600"
- },
- {
- "id": 64,
- "date": "2020-04-30 23:35:34",
- "name": "pedro cruz",
- "company": null,
- "socialType": "twitter",
- "handle": "pedrocrvz",
- "attestation": "https://twitter.com/pedrocrvz/status/1256004349219803142"
- },
- {
- "id": 65,
- "date": "2020-04-30 23:37:55",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 66,
- "date": "2020-04-30 23:39:22",
- "name": "ethStaker",
- "company": "BeaconChain",
- "socialType": "twitter",
- "handle": "ethStaker",
- "attestation": null
- },
- {
- "id": 67,
- "date": "2020-04-30 23:40:50",
- "name": "Dogetoshi",
- "company": null,
- "socialType": "twitter",
- "handle": "Dogetoshi",
- "attestation": "https://twitter.com/Dogetoshi/status/1256005677312548871"
- },
- {
- "id": 68,
- "date": "2020-04-30 23:42:52",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 69,
- "date": "2020-04-30 23:44:08",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 70,
- "date": "2020-04-30 23:45:28",
- "name": "Brantly Millegan",
- "company": "ENS",
- "socialType": "twitter",
- "handle": "BrantlyMillegan",
- "attestation": "https://twitter.com/BrantlyMillegan/status/1256007059503370241"
- },
- {
- "id": 71,
- "date": "2020-04-30 23:46:48",
- "name": "DanNolan",
- "company": "ChainShot",
- "socialType": "twitter",
- "handle": "BeingDanNolan",
- "attestation": "https://twitter.com/BeingDanNolan/status/1256007414224162816"
- },
- {
- "id": 72,
- "date": "2020-04-30 23:48:27",
- "name": "Mariano Conti",
- "company": "MakerDAO",
- "socialType": "twitter",
- "handle": "nanexcool",
- "attestation": "https://twitter.com/nanexcool/status/1256007646672556032"
- },
- {
- "id": 73,
- "date": "2020-04-30 23:50:37",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 74,
- "date": "2020-04-30 23:51:56",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 75,
- "date": "2020-04-30 23:54:23",
- "name": "r0n1n",
- "company": "Ethereum Classic",
- "socialType": "github",
- "handle": "gitr0n1n",
- "attestation": "https://twitter.com/gitr0n1n/status/1256009476521390080"
- },
- {
- "id": 76,
- "date": "2020-04-30 23:56:23",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 77,
- "date": "2020-04-30 23:57:27",
- "name": "Eric Chen",
- "company": "Injective",
- "socialType": "twitter",
- "handle": "ericchenmelt",
- "attestation": null
- },
- {
- "id": 78,
- "date": "2020-04-30 23:59:07",
- "name": "Igor Yalovoy",
- "company": null,
- "socialType": "github",
- "handle": "ylv-io",
- "attestation": "https://twitter.com/ylv_io/status/1256010457854418945"
- },
- {
- "id": 79,
- "date": "2020-05-01 00:00:25",
- "name": "Martin",
- "company": null,
- "socialType": "twitter",
- "handle": "martint",
- "attestation": "https://twitter.com/martint/status/1256012658387619840"
- },
- {
- "id": 80,
- "date": "2020-05-01 00:02:07",
- "name": "Linda Xie",
- "company": "Scalar Capital",
- "socialType": "twitter",
- "handle": "ljxie",
- "attestation": "https://twitter.com/ljxie/status/1256011102715965440"
- },
- {
- "id": 81,
- "date": "2020-05-01 00:03:40",
- "name": "Arvin Bhangu",
- "company": "algorithmictrading",
- "socialType": "twitter",
- "handle": "arvinbhangu",
- "attestation": null
- },
- {
- "id": 82,
- "date": "2020-05-01 00:05:14",
- "name": "Anish Agnihotri",
- "company": null,
- "socialType": "github",
- "handle": "Anish-Agnihotri",
- "attestation": "https://twitter.com/_anishagnihotri/status/1256011832868974592"
- },
- {
- "id": 83,
- "date": "2020-05-01 00:06:44",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 84,
- "date": "2020-05-01 00:08:19",
- "name": "brianmcmichaeleth",
- "company": "Ethereum Columbus",
- "socialType": "twitter",
- "handle": "brianmcmichael",
- "attestation": "https://twitter.com/brianmcmichael/status/1256012991809695749"
- },
- {
- "id": 85,
- "date": "2020-05-01 00:11:24",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 86,
- "date": "2020-05-01 00:13:22",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 87,
- "date": "2020-05-01 00:16:10",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 88,
- "date": "2020-05-01 00:18:25",
- "name": "Neel",
- "company": null,
- "socialType": "twitter",
- "handle": "heyneel",
- "attestation": "https://twitter.com/heyneel/status/1256015155135156224"
- },
- {
- "id": 89,
- "date": "2020-05-01 00:23:24",
- "name": "Santiago Gonzlez Toral",
- "company": "Decentraminds",
- "socialType": "twitter",
- "handle": "santteegt",
- "attestation": "https://twitter.com/santteegt/status/1256017796825329666"
- },
- {
- "id": 90,
- "date": "2020-05-01 00:25:22",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 91,
- "date": "2020-05-01 00:27:17",
- "name": "Santiago Gonzalez Toral",
- "company": "Decentraminds",
- "socialType": "twitter",
- "handle": "santteegt",
- "attestation": null
- },
- {
- "id": 92,
- "date": "2020-05-01 00:29:34",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 93,
- "date": "2020-05-01 00:31:08",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 94,
- "date": "2020-05-01 00:34:38",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 95,
- "date": "2020-05-01 00:36:08",
- "name": "Jason Somensatto",
- "company": "0x",
- "socialType": "twitter",
- "handle": "jasonsomensatto",
- "attestation": "https://twitter.com/jasonsomensatto/status/1256019590347358215"
- },
- {
- "id": 96,
- "date": "2020-05-01 00:38:38",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 97,
- "date": "2020-05-01 00:40:02",
- "name": "alexangelj",
- "company": "primitive",
- "socialType": "twitter",
- "handle": "alexangelj",
- "attestation": null
- },
- {
- "id": 98,
- "date": "2020-05-01 00:44:42",
- "name": "Haythem Sellami",
- "company": null,
- "socialType": "twitter",
- "handle": "HS10010110",
- "attestation": "https://twitter.com/HS10010110/status/1256023457726332929"
- },
- {
- "id": 99,
- "date": "2020-05-01 00:49:28",
- "name": "Cody Burns",
- "company": "Chipprbots",
- "socialType": "github",
- "handle": "realcodywburns",
- "attestation": "https://twitter.com/BotBridgette/status/1256023071670009856"
- },
- {
- "id": 100,
- "date": "2020-05-01 00:52:46",
- "name": "Spencer Graham ",
- "company": "saveDAI",
- "socialType": "twitter",
- "handle": "spengrah",
- "attestation": "https://twitter.com/spengrah/status/1256024340950405122"
- },
- {
- "id": 101,
- "date": "2020-05-01 00:57:12",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 102,
- "date": "2020-05-01 01:03:05",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 103,
- "date": "2020-05-01 01:07:49",
- "name": "Jason Smythe",
- "company": "avolabsio",
- "socialType": "github",
- "handle": "JasoonS",
- "attestation": "https://twitter.com/JasoonSmythe/status/1256036623340441601"
- },
- {
- "id": 104,
- "date": "2020-05-01 01:18:07",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 105,
- "date": "2020-05-01 01:20:27",
- "name": "Michael Bauer triplespeedereth",
- "company": "tacdappstario",
- "socialType": "twitter",
- "handle": "TripleSpeeder",
- "attestation": "https://twitter.com/TripleSpeeder/status/1256030893732495360"
- },
- {
- "id": 106,
- "date": "2020-05-01 01:27:43",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 107,
- "date": "2020-05-01 01:31:00",
- "name": "Ryan Ouyang",
- "company": null,
- "socialType": "twitter",
- "handle": "RyanOuyang_",
- "attestation": "https://twitter.com/RyanOuyang_/status/1256033397543178240"
- },
- {
- "id": 108,
- "date": "2020-05-01 01:34:42",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 109,
- "date": "2020-05-01 01:37:03",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 110,
- "date": "2020-05-01 01:39:50",
- "name": "kain",
- "company": "Synthetix",
- "socialType": "twitter",
- "handle": "kaiynne",
- "attestation": "https://twitter.com/kaiynne/status/1256038115401064449"
- },
- {
- "id": 111,
- "date": "2020-05-01 01:41:27",
- "name": "Nadav from Dharma",
- "company": "Dharma",
- "socialType": "twitter",
- "handle": "NadavAHollander",
- "attestation": null
- },
- {
- "id": 112,
- "date": "2020-05-01 01:50:57",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 113,
- "date": "2020-05-01 01:54:10",
- "name": "SNX Professor",
- "company": "Twitter Shitposter",
- "socialType": "twitter",
- "handle": "nocturnalsheet",
- "attestation": "https://twitter.com/nocturnalsheet/status/1256057140751425537"
- },
- {
- "id": 114,
- "date": "2020-05-01 01:57:29",
- "name": "Christobrrrr Mooney",
- "company": null,
- "socialType": "twitter",
- "handle": "godsflaw",
- "attestation": "https://twitter.com/godsflaw/status/1256040246292217857"
- },
- {
- "id": 115,
- "date": "2020-05-01 02:00:00",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 116,
- "date": "2020-05-01 02:01:20",
- "name": "gweicz",
- "company": "CZSK ETHDeFi community",
- "socialType": "twitter",
- "handle": "gweicz",
- "attestation": "https://twitter.com/gweicz/status/1256041021403803649"
- },
- {
- "id": 117,
- "date": "2020-05-01 02:07:57",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 118,
- "date": "2020-05-01 02:10:22",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 119,
- "date": "2020-05-01 02:12:38",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 120,
- "date": "2020-05-01 02:14:51",
- "name": " G ",
- "company": "Degen Senpai",
- "socialType": "twitter",
- "handle": "DegenSpartan",
- "attestation": "https://twitter.com/DegenSpartan/status/1256044508023713792"
- },
- {
- "id": 121,
- "date": "2020-05-01 02:20:31",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 122,
- "date": "2020-05-01 02:22:31",
- "name": "musaeth",
- "company": null,
- "socialType": "twitter",
- "handle": "musatheredguard",
- "attestation": null
- },
- {
- "id": 123,
- "date": "2020-05-01 02:28:54",
- "name": "Anthony Sassano",
- "company": "Set Protocol and EthHub",
- "socialType": "twitter",
- "handle": "sassal0x",
- "attestation": "https://twitter.com/sassal0x/status/1256048945182076933"
- },
- {
- "id": 124,
- "date": "2020-05-01 02:30:33",
- "name": "Sassano",
- "company": "ETHISMONEY",
- "socialType": "twitter",
- "handle": "solar_opposites",
- "attestation": null
- },
- {
- "id": 125,
- "date": "2020-05-01 02:40:50",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 126,
- "date": "2020-05-01 02:44:20",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 127,
- "date": "2020-05-01 02:48:28",
- "name": "kazuaki",
- "company": "CREAM",
- "socialType": "twitter",
- "handle": "KazuakiIshiguro",
- "attestation": "https://twitter.com/KazuakiIshiguro/status/1256052995097124864"
- },
- {
- "id": 128,
- "date": "2020-05-01 02:50:51",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 129,
- "date": "2020-05-01 02:57:58",
- "name": "CryptRillionaire",
- "company": "Life",
- "socialType": "twitter",
- "handle": "CryptRillionair",
- "attestation": null
- },
- {
- "id": 130,
- "date": "2020-05-01 02:59:30",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 131,
- "date": "2020-05-01 03:04:54",
- "name": "runetard",
- "company": null,
- "socialType": "twitter",
- "handle": "KaiAnsaari",
- "attestation": "https://twitter.com/KaiAnsaari/status/1256057491080663040"
- },
- {
- "id": 132,
- "date": "2020-05-01 03:06:24",
- "name": "FrogPow",
- "company": "FrogPow",
- "socialType": "twitter",
- "handle": "ethStaker",
- "attestation": null
- },
- {
- "id": 133,
- "date": "2020-05-01 03:07:55",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 134,
- "date": "2020-05-01 03:10:56",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 135,
- "date": "2020-05-01 03:13:46",
- "name": "scoopy trooples",
- "company": "defi shitposter",
- "socialType": "twitter",
- "handle": "scupytrooples",
- "attestation": "https://twitter.com/scupytrooples/status/1256070588151377923"
- },
- {
- "id": 136,
- "date": "2020-05-01 03:17:11",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 137,
- "date": "2020-05-01 03:18:54",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 138,
- "date": "2020-05-01 03:20:30",
- "name": "Martin Krung",
- "company": null,
- "socialType": "twitter",
- "handle": "martinkrung",
- "attestation": "https://twitter.com/martinkrung/status/1256061061624729600"
- },
- {
- "id": 139,
- "date": "2020-05-01 03:22:07",
- "name": "geoffeth",
- "company": null,
- "socialType": "twitter",
- "handle": "glamperd",
- "attestation": "https://twitter.com/glamperd/status/1256061694922481664"
- },
- {
- "id": 140,
- "date": "2020-05-01 03:23:33",
- "name": "monetsupplyeth",
- "company": null,
- "socialType": "twitter",
- "handle": "MonetSupply",
- "attestation": "https://twitter.com/MonetSupply/status/1256062313330692097"
- },
- {
- "id": 141,
- "date": "2020-05-01 03:25:11",
- "name": "weijieeth",
- "company": "Semaphore",
- "socialType": "github",
- "handle": "weijiekoh",
- "attestation": null
- },
- {
- "id": 142,
- "date": "2020-05-01 03:27:00",
- "name": "Lev Dubinets",
- "company": null,
- "socialType": "twitter",
- "handle": "LevDubinets",
- "attestation": null
- },
- {
- "id": 143,
- "date": "2020-05-01 03:31:26",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 144,
- "date": "2020-05-01 03:42:56",
- "name": "Taras Bobrovytsky",
- "company": null,
- "socialType": "twitter",
- "handle": "TarasBob",
- "attestation": "https://twitter.com/TarasBob/status/1256066677130752000"
- },
- {
- "id": 145,
- "date": "2020-05-01 03:45:03",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 146,
- "date": "2020-05-01 03:46:53",
- "name": "RickTGeorge BuiltOnEthereumeth",
- "company": "The Bag of Doom",
- "socialType": "twitter",
- "handle": "RickTGeorge",
- "attestation": null
- },
- {
- "id": 147,
- "date": "2020-05-01 03:48:00",
- "name": "Moody Salem",
- "company": null,
- "socialType": "github",
- "handle": "moodysalem",
- "attestation": null
- },
- {
- "id": 148,
- "date": "2020-05-01 03:50:14",
- "name": "kennethngeth",
- "company": "ef ecosystem support program",
- "socialType": "twitter",
- "handle": "nkennethk",
- "attestation": null
- },
- {
- "id": 149,
- "date": "2020-05-01 03:52:18",
- "name": "joeldcleth",
- "company": "niftexcom",
- "socialType": "twitter",
- "handle": "jmahh",
- "attestation": "https://twitter.com/jmahh/status/1256069152160141312"
- },
- {
- "id": 150,
- "date": "2020-05-01 03:54:56",
- "name": "econoar",
- "company": null,
- "socialType": "twitter",
- "handle": "econoar",
- "attestation": "https://twitter.com/econoar/status/1256069808283504642"
- },
- {
- "id": 151,
- "date": "2020-05-01 04:01:38",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 152,
- "date": "2020-05-01 04:05:25",
- "name": "Moises C",
- "company": null,
- "socialType": "twitter",
- "handle": "moigottweets",
- "attestation": null
- },
- {
- "id": 153,
- "date": "2020-05-01 04:06:49",
- "name": "Terence Tsao",
- "company": "prysmatic labs",
- "socialType": "twitter",
- "handle": "terencechain",
- "attestation": "https://twitter.com/terencechain/status/1256072771924226048"
- },
- {
- "id": 154,
- "date": "2020-05-01 04:08:16",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 155,
- "date": "2020-05-01 04:11:54",
- "name": "Nicolas Venturo",
- "company": "OpenZeppelin",
- "socialType": "github",
- "handle": "nventuro",
- "attestation": "https://twitter.com/mrnventuro/status/1256082799364378627"
- },
- {
- "id": 156,
- "date": "2020-05-01 04:17:11",
- "name": "Miguel Cervera ",
- "company": null,
- "socialType": "twitter",
- "handle": "MiguelCervera",
- "attestation": "https://twitter.com/MiguelCervera/status/1256075291199299584"
- },
- {
- "id": 157,
- "date": "2020-05-01 04:22:15",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 158,
- "date": "2020-05-01 04:23:44",
- "name": "Nikhil",
- "company": null,
- "socialType": "twitter",
- "handle": "Nikhil1415926",
- "attestation": null
- },
- {
- "id": 159,
- "date": "2020-05-01 04:44:37",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 160,
- "date": "2020-05-01 04:50:33",
- "name": "chinadefi",
- "company": "globaldeficom",
- "socialType": "twitter",
- "handle": "chinadefi1",
- "attestation": "https://twitter.com/chinadefi1/status/1256094036034613248"
- },
- {
- "id": 161,
- "date": "2020-05-01 04:59:59",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 162,
- "date": "2020-05-01 05:04:29",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 163,
- "date": "2020-05-01 05:20:24",
- "name": "Lecky Lao",
- "company": null,
- "socialType": "twitter",
- "handle": "leckylao",
- "attestation": "https://twitter.com/leckylao/status/1256092579931668481"
- },
- {
- "id": 164,
- "date": "2020-05-01 05:25:12",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 165,
- "date": "2020-05-01 05:31:22",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 166,
- "date": "2020-05-01 05:52:46",
- "name": "Eva Beylin",
- "company": null,
- "socialType": "twitter",
- "handle": "evabeylin",
- "attestation": "https://twitter.com/evabeylin/status/1256100609431760896"
- },
- {
- "id": 167,
- "date": "2020-05-01 06:06:01",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 168,
- "date": "2020-05-01 06:07:19",
- "name": "gabrielShapir0",
- "company": "LeXpunK",
- "socialType": "twitter",
- "handle": "lex_node",
- "attestation": "https://twitter.com/lex_node/status/1256102964822896640"
- },
- {
- "id": 169,
- "date": "2020-05-01 06:10:15",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 170,
- "date": "2020-05-01 06:16:58",
- "name": "Maximilian Roszko",
- "company": null,
- "socialType": "twitter",
- "handle": "MaxRoszko",
- "attestation": null
- },
- {
- "id": 171,
- "date": "2020-05-01 06:38:42",
- "name": "Denham Preen",
- "company": "avolabsio",
- "socialType": "github",
- "handle": "DenhamPreen",
- "attestation": "https://twitter.com/DenhamPreen/status/1256118775134420992"
- },
- {
- "id": 172,
- "date": "2020-05-01 06:45:13",
- "name": "Igor Barinov",
- "company": "xDai",
- "socialType": "twitter",
- "handle": "barinov",
- "attestation": "https://twitter.com/barinov/status/1256112491035312128"
- },
- {
- "id": 173,
- "date": "2020-05-01 06:59:24",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 174,
- "date": "2020-05-01 07:13:04",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 175,
- "date": "2020-05-01 07:15:03",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 176,
- "date": "2020-05-01 07:27:31",
- "name": "Dominik Odermatt",
- "company": null,
- "socialType": "twitter",
- "handle": "domiodermatt",
- "attestation": "https://twitter.com/domiodermatt/status/1256123165002129409"
- },
- {
- "id": 177,
- "date": "2020-05-01 07:45:25",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 178,
- "date": "2020-05-01 07:52:11",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 179,
- "date": "2020-05-01 07:57:39",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 180,
- "date": "2020-05-01 07:58:54",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 181,
- "date": "2020-05-01 08:00:46",
- "name": "Richard Heart HEX did 84x",
- "company": "HEX The Worlds First Blockchain CD",
- "socialType": "twitter",
- "handle": "RichardHeartWin",
- "attestation": "https://twitter.com/RichardHeartWin/status/1256135635003412481"
- },
- {
- "id": 182,
- "date": "2020-05-01 08:03:20",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 183,
- "date": "2020-05-01 08:09:03",
- "name": "vdo1138",
- "company": null,
- "socialType": "github",
- "handle": "vdo",
- "attestation": "https://twitter.com/vdo/status/1256182623027843075"
- },
- {
- "id": 184,
- "date": "2020-05-01 08:16:27",
- "name": "blaiseeth",
- "company": "Hello World",
- "socialType": "twitter",
- "handle": "BlaiseEth",
- "attestation": "https://twitter.com/BlaiseEth/status/1256137553603899393"
- },
- {
- "id": 185,
- "date": "2020-05-01 08:18:20",
- "name": "Moe ",
- "company": "Bitaccess",
- "socialType": "twitter",
- "handle": "moeadham",
- "attestation": "https://twitter.com/moeadham/status/1256135942190088192"
- },
- {
- "id": 186,
- "date": "2020-05-01 08:29:18",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 187,
- "date": "2020-05-01 08:33:32",
- "name": "Roman Semenov",
- "company": "TornadoCash",
- "socialType": "github",
- "handle": "poma",
- "attestation": "https://twitter.com/semenov_roman_/status/1256139869409198081"
- },
- {
- "id": 188,
- "date": "2020-05-01 08:35:43",
- "name": "POA Mania",
- "company": "Noloss lottery with daily draws",
- "socialType": "twitter",
- "handle": "poamania",
- "attestation": "https://twitter.com/poamania/status/1256140987547750402"
- },
- {
- "id": 189,
- "date": "2020-05-01 08:37:08",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 190,
- "date": "2020-05-01 08:38:38",
- "name": "Pawel Bylica",
- "company": "Fizzy",
- "socialType": "github",
- "handle": "chfast",
- "attestation": null
- },
- {
- "id": 191,
- "date": "2020-05-01 08:40:06",
- "name": "Mahyen",
- "company": null,
- "socialType": "twitter",
- "handle": "cryptomavee",
- "attestation": "https://twitter.com/cryptomavee/status/1256141534870659072"
- },
- {
- "id": 192,
- "date": "2020-05-01 08:43:34",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 193,
- "date": "2020-05-01 08:45:16",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 194,
- "date": "2020-05-01 08:47:40",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 195,
- "date": "2020-05-01 08:50:38",
- "name": "Kai Bakker",
- "company": null,
- "socialType": "twitter",
- "handle": "KaiBakker",
- "attestation": null
- },
- {
- "id": 196,
- "date": "2020-05-01 08:53:59",
- "name": "Alex Manuskin",
- "company": "ZenGo",
- "socialType": "twitter",
- "handle": "amanusk_",
- "attestation": "https://twitter.com/amanusk_/status/1256145087601524736"
- },
- {
- "id": 197,
- "date": "2020-05-01 08:56:29",
- "name": "Juan Blanco",
- "company": "Nethereum",
- "socialType": "twitter",
- "handle": "juanfranblanco",
- "attestation": "https://twitter.com/juanfranblanco/status/1256157386240294913"
- },
- {
- "id": 198,
- "date": "2020-05-01 08:58:26",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 199,
- "date": "2020-05-01 09:07:25",
- "name": "Willy",
- "company": "Kleros Fan",
- "socialType": "twitter",
- "handle": "wekawork2",
- "attestation": null
- },
- {
- "id": 200,
- "date": "2020-05-01 09:09:23",
- "name": "Stefan George ",
- "company": "Gnosis",
- "socialType": "twitter",
- "handle": "StefanDGeorge",
- "attestation": "https://twitter.com/StefanDGeorge/status/1256149080981602304"
- },
- {
- "id": 201,
- "date": "2020-05-01 09:15:00",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 202,
- "date": "2020-05-01 09:17:20",
- "name": "Alex",
- "company": null,
- "socialType": "twitter",
- "handle": "ibexalec",
- "attestation": "https://twitter.com/ibexalec/status/1256160694870958080"
- },
- {
- "id": 203,
- "date": "2020-05-01 09:22:06",
- "name": "adria0",
- "company": null,
- "socialType": "twitter",
- "handle": "adria0",
- "attestation": "https://twitter.com/adria0/status/1256152307789705218"
- },
- {
- "id": 204,
- "date": "2020-05-01 09:25:05",
- "name": "Greg Jeanmart",
- "company": "Multis",
- "socialType": "twitter",
- "handle": "GregJeanmart",
- "attestation": "https://twitter.com/GregJeanmart/status/1256152969680244742"
- },
- {
- "id": 205,
- "date": "2020-05-01 09:26:52",
- "name": "wh9it",
- "company": null,
- "socialType": "github",
- "handle": "davidqw",
- "attestation": null
- },
- {
- "id": 206,
- "date": "2020-05-01 09:33:22",
- "name": "momoNosquito",
- "company": "Ethereum is fun",
- "socialType": "twitter",
- "handle": "MomoNosquito",
- "attestation": "https://twitter.com/MomoNosquito/status/1256155701262651393"
- },
- {
- "id": 207,
- "date": "2020-05-01 09:40:13",
- "name": "Alan Lau",
- "company": "Ethereum Tornado Cash",
- "socialType": "twitter",
- "handle": "alau1218",
- "attestation": null
- },
- {
- "id": 208,
- "date": "2020-05-01 09:42:28",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 209,
- "date": "2020-05-01 09:44:25",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 210,
- "date": "2020-05-01 09:47:00",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 211,
- "date": "2020-05-01 09:48:28",
- "name": "Jimmy Ragosa",
- "company": null,
- "socialType": "twitter",
- "handle": "JimmyRagosa",
- "attestation": "https://twitter.com/JimmyRagosa/status/1256158597672849408"
- },
- {
- "id": 212,
- "date": "2020-05-01 09:54:08",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 213,
- "date": "2020-05-01 09:56:01",
- "name": "Philippe Schommers",
- "company": "Apyos",
- "socialType": "github",
- "handle": "filoozom",
- "attestation": null
- },
- {
- "id": 214,
- "date": "2020-05-01 09:59:53",
- "name": "d10r",
- "company": "lab10 collective",
- "socialType": "github",
- "handle": "d10r",
- "attestation": null
- },
- {
- "id": 215,
- "date": "2020-05-01 10:15:32",
- "name": "Jim McDonald",
- "company": null,
- "socialType": "github",
- "handle": "mcdee",
- "attestation": null
- },
- {
- "id": 216,
- "date": "2020-05-01 10:23:18",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 217,
- "date": "2020-05-01 10:30:13",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 218,
- "date": "2020-05-01 10:32:25",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 219,
- "date": "2020-05-01 10:35:54",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 220,
- "date": "2020-05-01 10:37:29",
- "name": "wslyvh",
- "company": null,
- "socialType": "twitter",
- "handle": "wslyvh",
- "attestation": "https://twitter.com/wslyvh/status/1256170931908681732"
- },
- {
- "id": 221,
- "date": "2020-05-01 10:39:03",
- "name": "Chris Wessels",
- "company": null,
- "socialType": "twitter",
- "handle": "undefinedza",
- "attestation": "https://twitter.com/undefinedza/status/1256178448030146560"
- },
- {
- "id": 222,
- "date": "2020-05-01 10:40:36",
- "name": "Danil Kovtonyuk",
- "company": "TornadoCash",
- "socialType": "github",
- "handle": "dan1kov",
- "attestation": "https://twitter.com/dan1kov/status/1256172167928127490"
- },
- {
- "id": 223,
- "date": "2020-05-01 10:46:47",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 224,
- "date": "2020-05-01 10:48:41",
- "name": "Agusx1211",
- "company": "UniswapEX",
- "socialType": "twitter",
- "handle": "Agusx1211",
- "attestation": null
- },
- {
- "id": 225,
- "date": "2020-05-01 10:50:18",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 226,
- "date": "2020-05-01 10:54:21",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 227,
- "date": "2020-05-01 10:59:45",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 228,
- "date": "2020-05-01 11:03:09",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 229,
- "date": "2020-05-01 11:06:38",
- "name": "Tsunami",
- "company": "Tsunami Wallet",
- "socialType": "github",
- "handle": "tsunamidev",
- "attestation": null
- },
- {
- "id": 230,
- "date": "2020-05-01 11:14:12",
- "name": "Henri",
- "company": "LPA",
- "socialType": "twitter",
- "handle": "HenriLieutaud",
- "attestation": "https://twitter.com/HenriLieutaud/status/1256180427343216641"
- },
- {
- "id": 231,
- "date": "2020-05-01 11:16:50",
- "name": "Braduc",
- "company": "",
- "socialType": "twitter",
- "handle": "Radu64786064",
- "attestation": "https://twitter.com/Radu64786064/status/1256181356276613122"
- },
- {
- "id": 232,
- "date": "2020-05-01 11:19:27",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 233,
- "date": "2020-05-01 11:20:42",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 234,
- "date": "2020-05-01 11:28:02",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 235,
- "date": "2020-05-01 11:30:36",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 236,
- "date": "2020-05-01 11:34:44",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 237,
- "date": "2020-05-01 11:36:50",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 238,
- "date": "2020-05-01 11:38:19",
- "name": "Qian Hong",
- "company": "ceremonyentropy",
- "socialType": "github",
- "handle": "fracting",
- "attestation": null
- },
- {
- "id": 239,
- "date": "2020-05-01 11:39:42",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 240,
- "date": "2020-05-01 11:42:24",
- "name": "Tom French",
- "company": "NoteStream",
- "socialType": "github",
- "handle": "TomAFrench",
- "attestation": "https://twitter.com/TomFrench_eth/status/1256190880362496000"
- },
- {
- "id": 241,
- "date": "2020-05-01 11:44:17",
- "name": "eanthompson",
- "company": "Tornado Cash",
- "socialType": "twitter",
- "handle": "ean_thompson",
- "attestation": "https://twitter.com/ean_thompson/status/1256188018794262532"
- },
- {
- "id": 242,
- "date": "2020-05-01 11:47:39",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 243,
- "date": "2020-05-01 11:49:22",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 244,
- "date": "2020-05-01 11:50:49",
- "name": "Benjamin offchainfr",
- "company": "offchainfr",
- "socialType": "twitter",
- "handle": "offchainfr",
- "attestation": "https://twitter.com/offchainfr/status/1256189442773180417"
- },
- {
- "id": 245,
- "date": "2020-05-01 11:53:40",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 246,
- "date": "2020-05-01 11:59:29",
- "name": "Matthew Campassi",
- "company": null,
- "socialType": "github",
- "handle": "campassi",
- "attestation": null
- },
- {
- "id": 247,
- "date": "2020-05-01 12:02:54",
- "name": " Sonya Dolmatova",
- "company": "Thorchain ",
- "socialType": "twitter",
- "handle": "SonyaDolmatova1",
- "attestation": "https://twitter.com/SonyaDolmatova1/status/1256192747159138304"
- },
- {
- "id": 248,
- "date": "2020-05-01 12:06:32",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 249,
- "date": "2020-05-01 12:10:45",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 250,
- "date": "2020-05-01 12:15:26",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 251,
- "date": "2020-05-01 12:18:04",
- "name": "Jonathan Caras",
- "company": "Tornado Cash",
- "socialType": "twitter",
- "handle": "madcapslaugh",
- "attestation": null
- },
- {
- "id": 252,
- "date": "2020-05-01 12:22:27",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 253,
- "date": "2020-05-01 12:28:19",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 254,
- "date": "2020-05-01 12:33:56",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 255,
- "date": "2020-05-01 12:35:39",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 256,
- "date": "2020-05-01 12:36:56",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 257,
- "date": "2020-05-01 12:38:40",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 258,
- "date": "2020-05-01 12:40:28",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 259,
- "date": "2020-05-01 12:42:57",
- "name": "Gaspard Peduzzi",
- "company": "",
- "socialType": "twitter",
- "handle": "GaspardPeduzzi",
- "attestation": "https://twitter.com/GaspardPeduzzi/status/1256203502814220289"
- },
- {
- "id": 260,
- "date": "2020-05-01 12:45:29",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 261,
- "date": "2020-05-01 12:47:29",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 262,
- "date": "2020-05-01 12:49:47",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 263,
- "date": "2020-05-01 12:53:52",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 264,
- "date": "2020-05-01 12:56:23",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 265,
- "date": "2020-05-01 12:58:22",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 266,
- "date": "2020-05-01 13:04:59",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 267,
- "date": "2020-05-01 13:07:33",
- "name": "erusheth",
- "company": null,
- "socialType": "twitter",
- "handle": "yasinaktimur",
- "attestation": "https://twitter.com/yasinaktimur/status/1256208682070802432"
- },
- {
- "id": 268,
- "date": "2020-05-01 13:08:57",
- "name": "Mick de Graaf ",
- "company": "PieDAO",
- "socialType": "twitter",
- "handle": "MickdeG010",
- "attestation": "https://twitter.com/MickdeG010/status/1256210288732450817"
- },
- {
- "id": 269,
- "date": "2020-05-01 13:10:43",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 270,
- "date": "2020-05-01 13:13:56",
- "name": "Vaibhav Chellani",
- "company": null,
- "socialType": "twitter",
- "handle": "vaibhavchellani",
- "attestation": "https://twitter.com/vaibhavchellani/status/1256211137579806722"
- },
- {
- "id": 271,
- "date": "2020-05-01 13:16:09",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 272,
- "date": "2020-05-01 13:22:14",
- "name": "Erik Bjareholt",
- "company": null,
- "socialType": "github",
- "handle": "ErikBjare",
- "attestation": null
- },
- {
- "id": 273,
- "date": "2020-05-01 13:27:14",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 274,
- "date": "2020-05-01 13:29:34",
- "name": "Joshua Pritikin",
- "company": null,
- "socialType": "github",
- "handle": "jpritikin",
- "attestation": null
- },
- {
- "id": 275,
- "date": "2020-05-01 13:37:50",
- "name": "kumavis",
- "company": "MetaMask",
- "socialType": "github",
- "handle": "kumavis",
- "attestation": "https://twitter.com/kumavis_/status/1256224103100547078"
- },
- {
- "id": 276,
- "date": "2020-05-01 13:43:09",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 277,
- "date": "2020-05-01 13:44:43",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 278,
- "date": "2020-05-01 13:46:11",
- "name": "Patricio Palladino ",
- "company": "Nomic Labs",
- "socialType": "twitter",
- "handle": "alcuadrado",
- "attestation": null
- },
- {
- "id": 279,
- "date": "2020-05-01 13:47:39",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 280,
- "date": "2020-05-01 13:49:21",
- "name": "Daniel Bar ",
- "company": "Project",
- "socialType": "twitter",
- "handle": "danieltbar",
- "attestation": "https://twitter.com/danieltbar/status/1256219337163243523"
- },
- {
- "id": 281,
- "date": "2020-05-01 13:50:39",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 282,
- "date": "2020-05-01 13:52:24",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 283,
- "date": "2020-05-01 13:54:08",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 284,
- "date": "2020-05-01 13:56:03",
- "name": "bitfwd ",
- "company": "Bitfwd",
- "socialType": "twitter",
- "handle": "danieltbar",
- "attestation": null
- },
- {
- "id": 285,
- "date": "2020-05-01 13:57:26",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 286,
- "date": "2020-05-01 13:59:20",
- "name": "Caleb Lau",
- "company": "Etherscan",
- "socialType": "twitter",
- "handle": "EnigmaticUnreal",
- "attestation": "https://twitter.com/EnigmaticUnreal/status/1256222440394559490"
- },
- {
- "id": 287,
- "date": "2020-05-01 14:03:00",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 288,
- "date": "2020-05-01 14:05:35",
- "name": "Ana Olsson",
- "company": null,
- "socialType": "twitter",
- "handle": "AnaJOlsson",
- "attestation": "https://twitter.com/AnaJOlsson/status/1256223430267088897"
- },
- {
- "id": 289,
- "date": "2020-05-01 14:07:04",
- "name": "Simon Polrot",
- "company": "ADAN",
- "socialType": "twitter",
- "handle": "simonpolrot",
- "attestation": "https://twitter.com/simonpolrot/status/1256224345703186433"
- },
- {
- "id": 290,
- "date": "2020-05-01 14:08:54",
- "name": "Ben Edgington",
- "company": "PegaSys",
- "socialType": "github",
- "handle": "benjaminion",
- "attestation": null
- },
- {
- "id": 291,
- "date": "2020-05-01 14:10:31",
- "name": "Chase Wright",
- "company": null,
- "socialType": "twitter",
- "handle": "mysticryuujin",
- "attestation": "https://twitter.com/mysticryuujin/status/1256224561907077120"
- },
- {
- "id": 292,
- "date": "2020-05-01 14:11:57",
- "name": "Carl Beekhuizen",
- "company": "eth2 EF",
- "socialType": "github",
- "handle": "CarlBeek",
- "attestation": null
- },
- {
- "id": 293,
- "date": "2020-05-01 14:14:04",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 294,
- "date": "2020-05-01 14:15:33",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 295,
- "date": "2020-05-01 14:20:56",
- "name": "Pumipat",
- "company": null,
- "socialType": "github",
- "handle": "pumipatw",
- "attestation": null
- },
- {
- "id": 296,
- "date": "2020-05-01 14:23:10",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 297,
- "date": "2020-05-01 14:24:45",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 298,
- "date": "2020-05-01 14:26:25",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 299,
- "date": "2020-05-01 14:28:23",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 300,
- "date": "2020-05-01 14:29:22",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 301,
- "date": "2020-05-01 14:30:45",
- "name": "Dan Bedford",
- "company": null,
- "socialType": "twitter",
- "handle": "danbedford",
- "attestation": "https://twitter.com/danbedford/status/1256230207318523913"
- },
- {
- "id": 302,
- "date": "2020-05-01 14:35:43",
- "name": "David Roon",
- "company": "Openlaw",
- "socialType": "github",
- "handle": "adridadou",
- "attestation": null
- },
- {
- "id": 303,
- "date": "2020-05-01 14:37:36",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 304,
- "date": "2020-05-01 14:39:16",
- "name": "Stan Kladko",
- "company": "SKALE LABS",
- "socialType": "github",
- "handle": "kladkogex",
- "attestation": null
- },
- {
- "id": 305,
- "date": "2020-05-01 14:44:27",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 306,
- "date": "2020-05-01 14:45:42",
- "name": "Rafal",
- "company": null,
- "socialType": "github",
- "handle": "rafal-na",
- "attestation": null
- },
- {
- "id": 307,
- "date": "2020-05-01 14:54:40",
- "name": "Leon Erichsen",
- "company": "RadicalxChange",
- "socialType": "twitter",
- "handle": "leonerichsen",
- "attestation": "https://twitter.com/leonerichsen/status/1256235741719465986"
- },
- {
- "id": 308,
- "date": "2020-05-01 14:57:41",
- "name": "jrp25",
- "company": "",
- "socialType": "twitter",
- "handle": "jrp256",
- "attestation": "https://twitter.com/jrp256/status/1256236478545477638"
- },
- {
- "id": 309,
- "date": "2020-05-01 15:04:05",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 310,
- "date": "2020-05-01 15:10:24",
- "name": "Brecht Devos",
- "company": "Loopring",
- "socialType": "github",
- "handle": "Brechtpd",
- "attestation": "https://twitter.com/Brechtpd/status/1256239848354189315"
- },
- {
- "id": 311,
- "date": "2020-05-01 15:13:58",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 312,
- "date": "2020-05-01 15:15:26",
- "name": "Mats",
- "company": "Dune Analytics",
- "socialType": "twitter",
- "handle": "mewwts",
- "attestation": null
- },
- {
- "id": 313,
- "date": "2020-05-01 15:16:53",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 314,
- "date": "2020-05-01 15:18:18",
- "name": "Doppel Bock",
- "company": null,
- "socialType": "twitter",
- "handle": "Doppelbock42",
- "attestation": "https://twitter.com/Doppelbock42/status/1256241985855254528"
- },
- {
- "id": 315,
- "date": "2020-05-01 15:22:01",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 316,
- "date": "2020-05-01 15:23:43",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 317,
- "date": "2020-05-01 15:26:14",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 318,
- "date": "2020-05-01 15:30:32",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 319,
- "date": "2020-05-01 15:32:21",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 320,
- "date": "2020-05-01 15:35:22",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 321,
- "date": "2020-05-01 15:39:48",
- "name": "Mouran Antoine",
- "company": "Blockchain Student Association EPFL",
- "socialType": "github",
- "handle": "Seigneur774",
- "attestation": "https://twitter.com/Seigneur774/status/1256249091853553664"
- },
- {
- "id": 322,
- "date": "2020-05-01 15:42:10",
- "name": "0xNicketh",
- "company": "ethereumpriceorg",
- "socialType": "twitter",
- "handle": "0xEther",
- "attestation": null
- },
- {
- "id": 323,
- "date": "2020-05-01 15:44:54",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 324,
- "date": "2020-05-01 15:46:22",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 325,
- "date": "2020-05-01 15:47:47",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 326,
- "date": "2020-05-01 15:50:33",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 327,
- "date": "2020-05-01 15:57:49",
- "name": "Tobias Schubotz",
- "company": null,
- "socialType": "twitter",
- "handle": "tschubotz",
- "attestation": "https://twitter.com/tschubotz/status/1256252323892023296"
- },
- {
- "id": 328,
- "date": "2020-05-01 16:00:35",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 329,
- "date": "2020-05-01 16:08:26",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 330,
- "date": "2020-05-01 16:10:27",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 331,
- "date": "2020-05-01 16:13:46",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 332,
- "date": "2020-05-01 16:17:03",
- "name": "shazow",
- "company": "Vipnode",
- "socialType": "github",
- "handle": "shazow",
- "attestation": null
- },
- {
- "id": 333,
- "date": "2020-05-01 16:24:32",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 334,
- "date": "2020-05-01 16:26:39",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 335,
- "date": "2020-05-01 16:28:06",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 336,
- "date": "2020-05-01 16:29:19",
- "name": "Jan Hendrik Scheufen",
- "company": "Aldeia Solutions",
- "socialType": "github",
- "handle": "j-h-scheufen",
- "attestation": null
- },
- {
- "id": 337,
- "date": "2020-05-01 16:35:54",
- "name": "BSA EPFL",
- "company": "Helping the fongibility of ETH",
- "socialType": "twitter",
- "handle": "bsa_epfl",
- "attestation": "https://twitter.com/bsa_epfl/status/1256261905661992964"
- },
- {
- "id": 338,
- "date": "2020-05-01 16:41:33",
- "name": "ChainShot",
- "company": "ChainShot",
- "socialType": "twitter",
- "handle": "TeamChainShot",
- "attestation": "https://twitter.com/TeamChainShot/status/1256262514494582785"
- },
- {
- "id": 339,
- "date": "2020-05-01 16:46:35",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 340,
- "date": "2020-05-01 16:53:11",
- "name": "Michael Welnick",
- "company": "",
- "socialType": "github",
- "handle": "bijeebuss",
- "attestation": null
- },
- {
- "id": 341,
- "date": "2020-05-01 16:56:26",
- "name": "heigoeth",
- "company": "",
- "socialType": "twitter",
- "handle": "in_a_hurry",
- "attestation": "https://twitter.com/in_a_hurry/status/1256267719000948736"
- },
- {
- "id": 342,
- "date": "2020-05-01 16:57:56",
- "name": "Piotr Misiurek",
- "company": "zrozumiecbitcoinapl",
- "socialType": "twitter",
- "handle": "PiotrMisiurek",
- "attestation": null
- },
- {
- "id": 343,
- "date": "2020-05-01 17:02:04",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 344,
- "date": "2020-05-01 17:10:20",
- "name": "Tufcos",
- "company": "",
- "socialType": "twitter",
- "handle": "tufcos1",
- "attestation": "https://twitter.com/tufcos1/status/1256273236976898053"
- },
- {
- "id": 345,
- "date": "2020-05-01 17:19:00",
- "name": "Jitendra Chittoda",
- "company": "Genesis Consulting ",
- "socialType": "twitter",
- "handle": "JChittoda",
- "attestation": "https://twitter.com/JChittoda/status/1256272073846128652"
- },
- {
- "id": 346,
- "date": "2020-05-01 17:20:09",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 347,
- "date": "2020-05-01 17:21:42",
- "name": "5fiftyseven7",
- "company": null,
- "socialType": "twitter",
- "handle": "5fiftyseven7",
- "attestation": "https://twitter.com/5fiftyseven7/status/1256272651582136320"
- },
- {
- "id": 348,
- "date": "2020-05-01 17:27:12",
- "name": "0xSardis",
- "company": null,
- "socialType": "twitter",
- "handle": "0Sardis",
- "attestation": "https://twitter.com/0Sardis/status/1256274066018906114"
- },
- {
- "id": 349,
- "date": "2020-05-01 17:30:46",
- "name": "wwweth",
- "company": null,
- "socialType": "twitter",
- "handle": "cnhridol",
- "attestation": "https://twitter.com/cnhridol/status/1256275080591499264"
- },
- {
- "id": 350,
- "date": "2020-05-01 17:32:47",
- "name": "Chadwick Strange",
- "company": "SKALE Network",
- "socialType": "twitter",
- "handle": "ChadwickStrange",
- "attestation": "https://twitter.com/ChadwickStrange/status/1256275817182695426"
- },
- {
- "id": 351,
- "date": "2020-05-01 17:49:55",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 352,
- "date": "2020-05-01 17:56:02",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 353,
- "date": "2020-05-01 18:02:26",
- "name": "Logan Bek",
- "company": "DataTransparency Task Force",
- "socialType": "github",
- "handle": "loganbek",
- "attestation": null
- },
- {
- "id": 354,
- "date": "2020-05-01 18:06:54",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 355,
- "date": "2020-05-01 18:11:29",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 356,
- "date": "2020-05-01 18:20:52",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 357,
- "date": "2020-05-01 18:22:38",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 358,
- "date": "2020-05-01 18:24:24",
- "name": "Yang 2024",
- "company": "Universal Basic Income",
- "socialType": "github",
- "handle": "mstrcrz",
- "attestation": null
- },
- {
- "id": 359,
- "date": "2020-05-01 18:25:27",
- "name": "FishofIvory",
- "company": "codeuorg",
- "socialType": "github",
- "handle": "fishofivory",
- "attestation": null
- },
- {
- "id": 360,
- "date": "2020-05-01 18:27:07",
- "name": "FishOfIvory",
- "company": "codeuorg",
- "socialType": "github",
- "handle": "fishofivory",
- "attestation": null
- },
- {
- "id": 361,
- "date": "2020-05-01 18:28:18",
- "name": "FishofIvory",
- "company": "codeuorg",
- "socialType": "github",
- "handle": "fishofivory",
- "attestation": null
- },
- {
- "id": 362,
- "date": "2020-05-01 18:29:38",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 363,
- "date": "2020-05-01 18:31:34",
- "name": "Jacob Willemsma",
- "company": "ETHGlobal",
- "socialType": "twitter",
- "handle": "jacobwillemsma",
- "attestation": "https://twitter.com/jacobwillemsma/status/1256291347683819520"
- },
- {
- "id": 364,
- "date": "2020-05-01 18:33:55",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 365,
- "date": "2020-05-01 18:40:21",
- "name": "trent",
- "company": "ETHGlobal",
- "socialType": "twitter",
- "handle": "trent_vanepps",
- "attestation": "https://twitter.com/trent_vanepps/status/1256295097584541702"
- },
- {
- "id": 366,
- "date": "2020-05-01 18:42:53",
- "name": "ishareeth",
- "company": null,
- "socialType": "twitter",
- "handle": "ishareushare",
- "attestation": "https://twitter.com/ishareushare/status/1256293867713953793"
- },
- {
- "id": 367,
- "date": "2020-05-01 18:44:18",
- "name": "Justin Leroux",
- "company": "GridPlus",
- "socialType": "twitter",
- "handle": "0xMidnight",
- "attestation": "https://twitter.com/0xMidnight/status/1256294211911135232"
- },
- {
- "id": 368,
- "date": "2020-05-01 18:46:02",
- "name": "Noel Maersk",
- "company": null,
- "socialType": "github",
- "handle": "veox",
- "attestation": null
- },
- {
- "id": 369,
- "date": "2020-05-01 18:47:18",
- "name": "Dowland Aiello",
- "company": "Notedly Media",
- "socialType": "github",
- "handle": "dowlandaiello",
- "attestation": null
- },
- {
- "id": 370,
- "date": "2020-05-01 18:50:06",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 371,
- "date": "2020-05-01 18:53:50",
- "name": "Nate welch flygoingeth",
- "company": null,
- "socialType": "twitter",
- "handle": "natewelch_",
- "attestation": null
- },
- {
- "id": 372,
- "date": "2020-05-01 19:04:29",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 373,
- "date": "2020-05-01 19:06:46",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 374,
- "date": "2020-05-01 19:08:06",
- "name": "feds",
- "company": "cai",
- "socialType": "github",
- "handle": "anfederico",
- "attestation": null
- },
- {
- "id": 375,
- "date": "2020-05-01 19:10:27",
- "name": "Christopher",
- "company": null,
- "socialType": "twitter",
- "handle": "OaktreeInv",
- "attestation": "https://twitter.com/OaktreeInv/status/1256300016496447489"
- },
- {
- "id": 376,
- "date": "2020-05-01 19:13:04",
- "name": "Aktion Mutante",
- "company": "S23",
- "socialType": "github",
- "handle": "mutante",
- "attestation": null
- },
- {
- "id": 377,
- "date": "2020-05-01 19:16:34",
- "name": "Christopher",
- "company": null,
- "socialType": "twitter",
- "handle": "OaktreeInv",
- "attestation": null
- },
- {
- "id": 378,
- "date": "2020-05-01 19:18:49",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 379,
- "date": "2020-05-01 19:21:38",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 380,
- "date": "2020-05-01 19:27:23",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 381,
- "date": "2020-05-01 19:40:39",
- "name": "Alex dot eth",
- "company": null,
- "socialType": "twitter",
- "handle": "AlexanderFisher",
- "attestation": "https://twitter.com/AlexanderFisher/status/1256307659919241217"
- },
- {
- "id": 382,
- "date": "2020-05-01 19:45:14",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 383,
- "date": "2020-05-01 19:46:27",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 384,
- "date": "2020-05-01 19:48:32",
- "name": "Andre Rossi Korol",
- "company": "",
- "socialType": "github",
- "handle": "andrekorol",
- "attestation": null
- },
- {
- "id": 385,
- "date": "2020-05-01 19:50:43",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 386,
- "date": "2020-05-01 19:52:37",
- "name": "BeckersC",
- "company": null,
- "socialType": "twitter",
- "handle": "BeckersC93",
- "attestation": null
- },
- {
- "id": 387,
- "date": "2020-05-01 20:02:24",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 388,
- "date": "2020-05-01 20:18:21",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 389,
- "date": "2020-05-01 20:19:53",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 390,
- "date": "2020-05-01 20:23:25",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 391,
- "date": "2020-05-01 20:28:12",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 392,
- "date": "2020-05-01 20:30:40",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 393,
- "date": "2020-05-01 20:33:07",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 394,
- "date": "2020-05-01 20:35:24",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 395,
- "date": "2020-05-01 20:38:04",
- "name": "ALEXANDER",
- "company": "ETH Memes",
- "socialType": "twitter",
- "handle": "0x_____________",
- "attestation": "https://twitter.com/0x_____________/status/1256322190712045569"
- },
- {
- "id": 396,
- "date": "2020-05-01 20:40:28",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 397,
- "date": "2020-05-01 20:43:57",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 398,
- "date": "2020-05-01 20:47:41",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 399,
- "date": "2020-05-01 20:54:11",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 400,
- "date": "2020-05-01 20:56:01",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 401,
- "date": "2020-05-01 20:59:39",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 402,
- "date": "2020-05-01 21:04:44",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 403,
- "date": "2020-05-01 21:13:37",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 404,
- "date": "2020-05-01 21:17:47",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 405,
- "date": "2020-05-01 21:18:59",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 406,
- "date": "2020-05-01 21:20:50",
- "name": "Erik van Rijn",
- "company": "",
- "socialType": "github",
- "handle": "erikrijn",
- "attestation": null
- },
- {
- "id": 407,
- "date": "2020-05-01 21:22:19",
- "name": "Pretoria Research Lab",
- "company": "DeFi research PoS infrastructure",
- "socialType": "twitter",
- "handle": "PretoriaLab",
- "attestation": "https://twitter.com/PretoriaLab/status/1256333248562487296"
- },
- {
- "id": 408,
- "date": "2020-05-01 21:26:07",
- "name": "Mcgravier",
- "company": null,
- "socialType": "github",
- "handle": "mcgravier",
- "attestation": null
- },
- {
- "id": 409,
- "date": "2020-05-01 21:35:08",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 410,
- "date": "2020-05-01 21:39:22",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 411,
- "date": "2020-05-01 21:45:26",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 412,
- "date": "2020-05-01 21:55:31",
- "name": "Duncan",
- "company": "discordbotts",
- "socialType": "github",
- "handle": "legowerewolf",
- "attestation": null
- },
- {
- "id": 413,
- "date": "2020-05-01 22:02:33",
- "name": "Sh18025729",
- "company": "ethismoney",
- "socialType": "twitter",
- "handle": "Sh18025729",
- "attestation": "https://twitter.com/Sh18025729/status/1256343325445173248"
- },
- {
- "id": 414,
- "date": "2020-05-01 22:13:44",
- "name": "Luciano",
- "company": "DeFi LATAM",
- "socialType": "twitter",
- "handle": "Luciano_vPEPO",
- "attestation": "https://twitter.com/Luciano_vPEPO/status/1256346240331251715"
- },
- {
- "id": 415,
- "date": "2020-05-01 22:16:39",
- "name": "Willian Mitsuda",
- "company": null,
- "socialType": "twitter",
- "handle": "wmitsuda",
- "attestation": "https://twitter.com/wmitsuda/status/1256346992743190535"
- },
- {
- "id": 416,
- "date": "2020-05-01 22:18:41",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 417,
- "date": "2020-05-01 22:23:28",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 418,
- "date": "2020-05-01 22:29:20",
- "name": "0xsurf",
- "company": "0xsurf",
- "socialType": "github",
- "handle": "0x-surf",
- "attestation": null
- },
- {
- "id": 419,
- "date": "2020-05-01 22:37:58",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 420,
- "date": "2020-05-01 22:54:05",
- "name": "ChainLinkGod",
- "company": "Chainlink",
- "socialType": "twitter",
- "handle": "ChainLinkGod",
- "attestation": null
- },
- {
- "id": 421,
- "date": "2020-05-01 23:02:28",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 422,
- "date": "2020-05-01 23:06:48",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 423,
- "date": "2020-05-01 23:20:45",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 424,
- "date": "2020-05-01 23:50:32",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 425,
- "date": "2020-05-01 23:53:47",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 426,
- "date": "2020-05-01 23:56:57",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 427,
- "date": "2020-05-01 23:59:26",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 428,
- "date": "2020-05-02 00:01:39",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 429,
- "date": "2020-05-02 00:03:58",
- "name": "Drake",
- "company": null,
- "socialType": "github",
- "handle": "ihatecsv",
- "attestation": null
- },
- {
- "id": 430,
- "date": "2020-05-02 00:06:55",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 431,
- "date": "2020-05-02 00:15:10",
- "name": "uday",
- "company": "nothing",
- "socialType": "github",
- "handle": "exelso",
- "attestation": null
- },
- {
- "id": 432,
- "date": "2020-05-02 00:19:42",
- "name": "derrend",
- "company": "cryptoproofinfo",
- "socialType": "github",
- "handle": "derrend",
- "attestation": null
- },
- {
- "id": 433,
- "date": "2020-05-02 00:29:55",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 434,
- "date": "2020-05-02 00:34:31",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 435,
- "date": "2020-05-02 01:14:10",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 436,
- "date": "2020-05-02 01:18:03",
- "name": "Thore",
- "company": "RTW",
- "socialType": "github",
- "handle": "ETHorHIL",
- "attestation": null
- },
- {
- "id": 437,
- "date": "2020-05-02 01:33:04",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 438,
- "date": "2020-05-02 01:34:46",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 439,
- "date": "2020-05-02 01:40:00",
- "name": "chainlinkmeme",
- "company": "chainlinkmeme",
- "socialType": "twitter",
- "handle": "chainlinkmeme",
- "attestation": null
- },
- {
- "id": 440,
- "date": "2020-05-02 02:12:15",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 441,
- "date": "2020-05-02 02:27:28",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 442,
- "date": "2020-05-02 02:30:58",
- "name": "Preston Van Loon",
- "company": "Prysmatic Labs",
- "socialType": "github",
- "handle": "prestonvanloon",
- "attestation": null
- },
- {
- "id": 443,
- "date": "2020-05-02 02:48:38",
- "name": "Sourabh raj singh",
- "company": "",
- "socialType": "twitter",
- "handle": "Sourabhrajsing1",
- "attestation": "https://twitter.com/Sourabhrajsing1/status/1256416736238284806"
- },
- {
- "id": 444,
- "date": "2020-05-02 02:58:58",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 445,
- "date": "2020-05-02 03:01:09",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 446,
- "date": "2020-05-02 03:08:50",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 447,
- "date": "2020-05-02 03:11:41",
- "name": "Fredrik Bixo",
- "company": "Trustless",
- "socialType": "twitter",
- "handle": "FredrikBixo",
- "attestation": "https://twitter.com/FredrikBixo/status/1256421148486766592"
- },
- {
- "id": 448,
- "date": "2020-05-02 03:17:29",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 449,
- "date": "2020-05-02 03:19:14",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 450,
- "date": "2020-05-02 03:22:54",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 451,
- "date": "2020-05-02 03:43:24",
- "name": "BitcoinLouieeth",
- "company": null,
- "socialType": "twitter",
- "handle": "BitcoinLouie",
- "attestation": "https://twitter.com/BitcoinLouie/status/1256429098060017664"
- },
- {
- "id": 452,
- "date": "2020-05-02 03:45:17",
- "name": "Mateo",
- "company": "CanExta",
- "socialType": "github",
- "handle": "Canalytic",
- "attestation": null
- },
- {
- "id": 453,
- "date": "2020-05-02 03:56:24",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 454,
- "date": "2020-05-02 04:48:42",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 455,
- "date": "2020-05-02 05:25:36",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 456,
- "date": "2020-05-02 05:38:35",
- "name": "N1mr0d ",
- "company": "Adventures of N1mr0d",
- "socialType": "twitter",
- "handle": "N1mr0dWildfire",
- "attestation": "https://twitter.com/N1mr0dWildfire/status/1256458370321543168"
- },
- {
- "id": 457,
- "date": "2020-05-02 05:56:21",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 458,
- "date": "2020-05-02 06:28:17",
- "name": "Broke Satoshi",
- "company": null,
- "socialType": "twitter",
- "handle": "BrokeSatoshi",
- "attestation": null
- },
- {
- "id": 459,
- "date": "2020-05-02 06:33:32",
- "name": "poroboveth",
- "company": "Upala digital identity",
- "socialType": "twitter",
- "handle": "porobov_p",
- "attestation": "https://twitter.com/porobov_p/status/1256473191830020098"
- },
- {
- "id": 460,
- "date": "2020-05-02 06:44:10",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 461,
- "date": "2020-05-02 06:48:02",
- "name": "Frank Topbottom",
- "company": null,
- "socialType": "twitter",
- "handle": "FrankResearcher",
- "attestation": null
- },
- {
- "id": 462,
- "date": "2020-05-02 07:07:58",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 463,
- "date": "2020-05-02 07:11:01",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 464,
- "date": "2020-05-02 07:39:46",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 465,
- "date": "2020-05-02 07:42:34",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 466,
- "date": "2020-05-02 07:51:24",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 467,
- "date": "2020-05-02 07:53:44",
- "name": "Ben Smith",
- "company": null,
- "socialType": "twitter",
- "handle": "bh2smith",
- "attestation": "https://twitter.com/bh2smith/status/1256494159734673413"
- },
- {
- "id": 468,
- "date": "2020-05-02 08:02:22",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 469,
- "date": "2020-05-02 08:08:24",
- "name": "ivankaz",
- "company": null,
- "socialType": "twitter",
- "handle": "i_van_kaz",
- "attestation": "https://twitter.com/i_van_kaz/status/1256496100317581312"
- },
- {
- "id": 470,
- "date": "2020-05-02 08:25:43",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 471,
- "date": "2020-05-02 08:34:41",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 472,
- "date": "2020-05-02 08:46:00",
- "name": "Leo Cornelius",
- "company": "Avrio project",
- "socialType": "github",
- "handle": "leocornelius",
- "attestation": null
- },
- {
- "id": 473,
- "date": "2020-05-02 08:55:37",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 474,
- "date": "2020-05-02 09:03:10",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 475,
- "date": "2020-05-02 09:09:39",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 476,
- "date": "2020-05-02 09:11:16",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 477,
- "date": "2020-05-02 09:15:18",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 478,
- "date": "2020-05-02 09:19:24",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 479,
- "date": "2020-05-02 09:20:54",
- "name": "Vihren P",
- "company": null,
- "socialType": "github",
- "handle": "webs7er",
- "attestation": null
- },
- {
- "id": 480,
- "date": "2020-05-02 09:24:51",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 481,
- "date": "2020-05-02 09:31:08",
- "name": "Gandalf",
- "company": "Something something about a ring",
- "socialType": "github",
- "handle": "ignatiusr",
- "attestation": null
- },
- {
- "id": 482,
- "date": "2020-05-02 09:35:38",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 483,
- "date": "2020-05-02 09:38:14",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 484,
- "date": "2020-05-02 09:40:59",
- "name": "Rosco Kalis",
- "company": null,
- "socialType": "twitter",
- "handle": "RoscoKalis",
- "attestation": "https://twitter.com/RoscoKalis/status/1256519405871169537"
- },
- {
- "id": 485,
- "date": "2020-05-02 09:45:36",
- "name": "Toad",
- "company": "Toad Hall",
- "socialType": "github",
- "handle": "BenBartleby",
- "attestation": null
- },
- {
- "id": 486,
- "date": "2020-05-02 09:46:59",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 487,
- "date": "2020-05-02 09:53:29",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 488,
- "date": "2020-05-02 09:57:54",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 489,
- "date": "2020-05-02 10:00:33",
- "name": "HostFat",
- "company": null,
- "socialType": "twitter",
- "handle": "HostFat",
- "attestation": "https://twitter.com/HostFat/status/1256524089067474945"
- },
- {
- "id": 490,
- "date": "2020-05-02 10:02:12",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 491,
- "date": "2020-05-02 10:04:32",
- "name": "Block Enthusiast",
- "company": null,
- "socialType": "twitter",
- "handle": "BlockEnthusiast",
- "attestation": null
- },
- {
- "id": 492,
- "date": "2020-05-02 10:07:36",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 493,
- "date": "2020-05-02 10:09:34",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 494,
- "date": "2020-05-02 10:17:16",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 495,
- "date": "2020-05-02 10:34:35",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 496,
- "date": "2020-05-02 10:39:52",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 497,
- "date": "2020-05-02 10:46:01",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 498,
- "date": "2020-05-02 10:57:54",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 499,
- "date": "2020-05-02 11:02:11",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 500,
- "date": "2020-05-02 11:03:51",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 501,
- "date": "2020-05-02 11:19:39",
- "name": "Vetinaryeth",
- "company": "",
- "socialType": "twitter",
- "handle": "vetinary_eth",
- "attestation": "https://twitter.com/vetinary_eth/status/1256545704136318976"
- },
- {
- "id": 502,
- "date": "2020-05-02 11:31:17",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 503,
- "date": "2020-05-02 11:36:08",
- "name": "Jens",
- "company": "Please Hire Me",
- "socialType": "github",
- "handle": "bucketcapacity",
- "attestation": null
- },
- {
- "id": 504,
- "date": "2020-05-02 11:40:03",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 505,
- "date": "2020-05-02 11:55:24",
- "name": "Hans Marius",
- "company": null,
- "socialType": "twitter",
- "handle": "Hans66346439",
- "attestation": "https://twitter.com/Hans66346439/status/1256553031207878656"
- },
- {
- "id": 506,
- "date": "2020-05-02 11:58:47",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 507,
- "date": "2020-05-02 12:00:20",
- "name": "nigeon",
- "company": null,
- "socialType": "twitter",
- "handle": "nigeon",
- "attestation": "https://twitter.com/nigeon/status/1256554454230487040"
- },
- {
- "id": 508,
- "date": "2020-05-02 12:06:58",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 509,
- "date": "2020-05-02 12:40:20",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 510,
- "date": "2020-05-02 12:57:02",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 511,
- "date": "2020-05-02 12:58:18",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 512,
- "date": "2020-05-02 13:00:04",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 513,
- "date": "2020-05-02 13:05:22",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 514,
- "date": "2020-05-02 13:13:11",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 515,
- "date": "2020-05-02 13:22:54",
- "name": "Christian Lanz ",
- "company": null,
- "socialType": "twitter",
- "handle": "rekt0x",
- "attestation": "https://twitter.com/rekt0x/status/1256576299008700416"
- },
- {
- "id": 516,
- "date": "2020-05-02 13:30:41",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 517,
- "date": "2020-05-02 13:33:47",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 518,
- "date": "2020-05-02 13:49:25",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 519,
- "date": "2020-05-02 13:55:29",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 520,
- "date": "2020-05-02 14:08:12",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 521,
- "date": "2020-05-02 14:16:36",
- "name": "Edouard L",
- "company": null,
- "socialType": "github",
- "handle": "EdouardLvdl",
- "attestation": null
- },
- {
- "id": 522,
- "date": "2020-05-02 14:54:21",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 523,
- "date": "2020-05-02 14:55:36",
- "name": "CryptoSovereign",
- "company": null,
- "socialType": "twitter",
- "handle": "MatthieuECDSA",
- "attestation": "https://twitter.com/MatthieuECDSA/status/1256598467092402176"
- },
- {
- "id": 524,
- "date": "2020-05-02 15:02:48",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 525,
- "date": "2020-05-02 15:06:35",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 526,
- "date": "2020-05-02 15:16:37",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 527,
- "date": "2020-05-02 15:18:13",
- "name": "VEOMaximalist EMA200Maximalist",
- "company": "Project X",
- "socialType": "twitter",
- "handle": "CryptoMaestro",
- "attestation": "https://twitter.com/CryptoMaestro/status/1256604285678153728"
- },
- {
- "id": 528,
- "date": "2020-05-02 15:22:20",
- "name": "alvs",
- "company": null,
- "socialType": "github",
- "handle": "alexvinyas",
- "attestation": "https://twitter.com/VinyasAlex/status/1256874607300222976"
- },
- {
- "id": 529,
- "date": "2020-05-02 15:30:46",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 530,
- "date": "2020-05-02 15:32:25",
- "name": "SuburbanDad",
- "company": "",
- "socialType": "github",
- "handle": "SuburbanDad",
- "attestation": null
- },
- {
- "id": 531,
- "date": "2020-05-02 15:36:21",
- "name": "Vincent Cloutier",
- "company": null,
- "socialType": "github",
- "handle": "cloutier",
- "attestation": null
- },
- {
- "id": 532,
- "date": "2020-05-02 15:43:36",
- "name": "Krisma",
- "company": "X",
- "socialType": "twitter",
- "handle": "KRMA_0",
- "attestation": null
- },
- {
- "id": 533,
- "date": "2020-05-02 16:35:36",
- "name": "Nils",
- "company": "Nyuels",
- "socialType": "github",
- "handle": "Nyuels",
- "attestation": null
- },
- {
- "id": 534,
- "date": "2020-05-02 16:41:31",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 535,
- "date": "2020-05-02 16:48:56",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 536,
- "date": "2020-05-02 17:01:09",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 537,
- "date": "2020-05-02 17:24:15",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 538,
- "date": "2020-05-02 17:59:12",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 539,
- "date": "2020-05-02 18:02:58",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 540,
- "date": "2020-05-02 18:06:33",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 541,
- "date": "2020-05-02 18:08:55",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 542,
- "date": "2020-05-02 18:10:25",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 543,
- "date": "2020-05-02 18:38:11",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 544,
- "date": "2020-05-02 18:42:18",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 545,
- "date": "2020-05-02 18:49:52",
- "name": "Meir",
- "company": "",
- "socialType": "twitter",
- "handle": "__Meir__",
- "attestation": null
- },
- {
- "id": 546,
- "date": "2020-05-02 18:56:06",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 547,
- "date": "2020-05-02 19:28:43",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 548,
- "date": "2020-05-02 19:47:25",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 549,
- "date": "2020-05-02 20:02:13",
- "name": "juelianshana",
- "company": null,
- "socialType": "twitter",
- "handle": "juelianshana",
- "attestation": null
- },
- {
- "id": 550,
- "date": "2020-05-02 20:27:53",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 551,
- "date": "2020-05-02 20:32:24",
- "name": "Thomas",
- "company": null,
- "socialType": "twitter",
- "handle": "T_Nenninger",
- "attestation": null
- },
- {
- "id": 552,
- "date": "2020-05-02 20:35:23",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 553,
- "date": "2020-05-02 21:02:43",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 554,
- "date": "2020-05-02 21:06:08",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 555,
- "date": "2020-05-02 21:56:09",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 556,
- "date": "2020-05-02 22:57:05",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 557,
- "date": "2020-05-02 22:58:47",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 558,
- "date": "2020-05-02 23:21:00",
- "name": "Bruno Caldeireiro",
- "company": null,
- "socialType": "github",
- "handle": "EpStR0M",
- "attestation": null
- },
- {
- "id": 559,
- "date": "2020-05-02 23:28:43",
- "name": "Bruno Caldeireiro",
- "company": null,
- "socialType": "github",
- "handle": "EpStR0M",
- "attestation": null
- },
- {
- "id": 560,
- "date": "2020-05-03 00:29:10",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 561,
- "date": "2020-05-03 00:30:40",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 562,
- "date": "2020-05-03 00:35:10",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 563,
- "date": "2020-05-03 00:36:56",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 564,
- "date": "2020-05-03 00:39:03",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 565,
- "date": "2020-05-03 00:40:08",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 566,
- "date": "2020-05-03 00:55:01",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 567,
- "date": "2020-05-03 00:58:22",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 568,
- "date": "2020-05-03 01:28:49",
- "name": "Victor928",
- "company": "AlphaWallet and TokenScript",
- "socialType": "twitter",
- "handle": "Victor928",
- "attestation": "https://twitter.com/Victor928/status/1256758188994637826"
- },
- {
- "id": 569,
- "date": "2020-05-03 01:32:55",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 570,
- "date": "2020-05-03 01:47:37",
- "name": "EthPay",
- "company": "Fhjfddfhjytrfc",
- "socialType": "twitter",
- "handle": "ETHpay",
- "attestation": null
- },
- {
- "id": 571,
- "date": "2020-05-03 01:51:14",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 572,
- "date": "2020-05-03 02:20:31",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 573,
- "date": "2020-05-03 02:34:46",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 574,
- "date": "2020-05-03 02:37:38",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 575,
- "date": "2020-05-03 02:39:22",
- "name": "Bryan Stitt",
- "company": null,
- "socialType": "github",
- "handle": "WyseNynja",
- "attestation": "https://twitter.com/StittsHappening/status/1256775387960315904"
- },
- {
- "id": 576,
- "date": "2020-05-03 02:57:37",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 577,
- "date": "2020-05-03 02:59:32",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 578,
- "date": "2020-05-03 03:05:35",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 579,
- "date": "2020-05-03 03:07:47",
- "name": "appendonly",
- "company": null,
- "socialType": "twitter",
- "handle": "appendonly",
- "attestation": null
- },
- {
- "id": 580,
- "date": "2020-05-03 03:11:30",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 581,
- "date": "2020-05-03 03:23:11",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 582,
- "date": "2020-05-03 03:31:13",
- "name": "Ian Macalinao",
- "company": "cvix dot info",
- "socialType": "github",
- "handle": "macalinao",
- "attestation": null
- },
- {
- "id": 583,
- "date": "2020-05-03 03:36:18",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 584,
- "date": "2020-05-03 03:52:14",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 585,
- "date": "2020-05-03 04:06:26",
- "name": "William M Peaster",
- "company": "DeFi Arts Intelligencer",
- "socialType": "twitter",
- "handle": "WPeaster",
- "attestation": "https://twitter.com/WPeaster/status/1257812334321512448"
- },
- {
- "id": 586,
- "date": "2020-05-03 04:08:10",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 587,
- "date": "2020-05-03 04:11:59",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 588,
- "date": "2020-05-03 04:17:56",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 589,
- "date": "2020-05-03 04:25:24",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 590,
- "date": "2020-05-03 04:35:11",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 591,
- "date": "2020-05-03 04:40:28",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 592,
- "date": "2020-05-03 04:44:19",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 593,
- "date": "2020-05-03 04:47:53",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 594,
- "date": "2020-05-03 04:49:59",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 595,
- "date": "2020-05-03 04:53:36",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 596,
- "date": "2020-05-03 05:17:00",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 597,
- "date": "2020-05-03 05:57:10",
- "name": "Typto",
- "company": "DAOSquare",
- "socialType": "github",
- "handle": "Typto",
- "attestation": "https://twitter.com/Typto_DAOSquare/status/1256836594880983040"
- },
- {
- "id": 598,
- "date": "2020-05-03 07:21:06",
- "name": "Matt",
- "company": null,
- "socialType": "github",
- "handle": "zinootje",
- "attestation": null
- },
- {
- "id": 599,
- "date": "2020-05-03 07:45:13",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 600,
- "date": "2020-05-03 07:47:59",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 601,
- "date": "2020-05-03 07:55:40",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 602,
- "date": "2020-05-03 08:06:41",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 603,
- "date": "2020-05-03 08:57:18",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 604,
- "date": "2020-05-03 09:24:45",
- "name": "Deepcryptodive",
- "company": null,
- "socialType": "github",
- "handle": "Deepcryptodive",
- "attestation": "https://twitter.com/Deepcryptodive/status/1256877923069505536"
- },
- {
- "id": 605,
- "date": "2020-05-03 09:54:58",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 606,
- "date": "2020-05-03 12:06:39",
- "name": "matt",
- "company": null,
- "socialType": "github",
- "handle": "zinootje",
- "attestation": null
- },
- {
- "id": 607,
- "date": "2020-05-03 12:54:02",
- "name": "calumeth",
- "company": null,
- "socialType": "twitter",
- "handle": "calumtomeny",
- "attestation": "https://twitter.com/calumtomeny/status/1256930200836812800"
- },
- {
- "id": 608,
- "date": "2020-05-03 13:49:37",
- "name": "benoxmo",
- "company": "mana",
- "socialType": "github",
- "handle": "benoxmo",
- "attestation": null
- },
- {
- "id": 609,
- "date": "2020-05-03 14:53:49",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 610,
- "date": "2020-05-03 15:36:54",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 611,
- "date": "2020-05-03 17:11:36",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 612,
- "date": "2020-05-03 18:44:44",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 613,
- "date": "2020-05-03 19:02:56",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 614,
- "date": "2020-05-03 19:11:50",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 615,
- "date": "2020-05-03 19:21:25",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 616,
- "date": "2020-05-03 20:27:29",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 617,
- "date": "2020-05-03 20:55:34",
- "name": "Heiko Fisch",
- "company": "",
- "socialType": "github",
- "handle": "HeikoFisch",
- "attestation": null
- },
- {
- "id": 618,
- "date": "2020-05-03 21:59:48",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 619,
- "date": "2020-05-03 23:05:04",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 620,
- "date": "2020-05-03 23:24:42",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 621,
- "date": "2020-05-03 23:28:46",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 622,
- "date": "2020-05-03 23:35:34",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 623,
- "date": "2020-05-03 23:39:17",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 624,
- "date": "2020-05-03 23:45:33",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 625,
- "date": "2020-05-03 23:48:56",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 626,
- "date": "2020-05-03 23:51:01",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 627,
- "date": "2020-05-03 23:54:30",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 628,
- "date": "2020-05-04 00:23:08",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 629,
- "date": "2020-05-04 00:39:35",
- "name": "superphiz",
- "company": "",
- "socialType": "github",
- "handle": "superphiz",
- "attestation": "https://twitter.com/superphiz/status/1257107713269645312"
- },
- {
- "id": 630,
- "date": "2020-05-04 00:46:50",
- "name": "danielaustralia1",
- "company": "noproject",
- "socialType": "github",
- "handle": "danielaustralia1",
- "attestation": null
- },
- {
- "id": 631,
- "date": "2020-05-04 00:48:19",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 632,
- "date": "2020-05-04 00:53:43",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 633,
- "date": "2020-05-04 00:57:02",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 634,
- "date": "2020-05-04 01:02:00",
- "name": "Walid Mujahid ",
- "company": null,
- "socialType": "github",
- "handle": "walidmujahid",
- "attestation": "https://twitter.com/walidmujahid1/status/1257114485921320961"
- },
- {
- "id": 635,
- "date": "2020-05-04 01:04:50",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 636,
- "date": "2020-05-04 01:09:12",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 637,
- "date": "2020-05-04 01:19:17",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 638,
- "date": "2020-05-04 01:30:21",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 639,
- "date": "2020-05-04 01:38:12",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 640,
- "date": "2020-05-04 01:44:56",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 641,
- "date": "2020-05-04 01:47:14",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 642,
- "date": "2020-05-04 02:03:29",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 643,
- "date": "2020-05-04 02:11:56",
- "name": "Ali Atiia",
- "company": null,
- "socialType": "twitter",
- "handle": "aliatiia_",
- "attestation": "https://twitter.com/aliatiia_/status/1257131721948114945"
- },
- {
- "id": 644,
- "date": "2020-05-04 02:14:23",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 645,
- "date": "2020-05-04 02:20:59",
- "name": "Matthew P Schmidt",
- "company": "Saving the World through Beauty",
- "socialType": "github",
- "handle": "Smithgift",
- "attestation": null
- },
- {
- "id": 646,
- "date": "2020-05-04 02:23:08",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 647,
- "date": "2020-05-04 02:33:57",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 648,
- "date": "2020-05-04 02:43:43",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 649,
- "date": "2020-05-04 02:45:38",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 650,
- "date": "2020-05-04 02:48:13",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 651,
- "date": "2020-05-04 02:52:22",
- "name": "pstehlik",
- "company": null,
- "socialType": "github",
- "handle": "pstehlik",
- "attestation": null
- },
- {
- "id": 652,
- "date": "2020-05-04 02:55:03",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 653,
- "date": "2020-05-04 02:59:21",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 654,
- "date": "2020-05-04 03:10:39",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 655,
- "date": "2020-05-04 03:12:13",
- "name": "Joshua DCKicks",
- "company": null,
- "socialType": "twitter",
- "handle": "DCKicks1988",
- "attestation": "https://twitter.com/DCKicks1988/status/1257146288358830081"
- },
- {
- "id": 656,
- "date": "2020-05-04 03:14:55",
- "name": "Feng Liu",
- "company": "Blockstech",
- "socialType": "twitter",
- "handle": "fishkiller",
- "attestation": "https://twitter.com/fishkiller/status/1257147021145726982"
- },
- {
- "id": 657,
- "date": "2020-05-04 03:36:06",
- "name": "Pierre Marie Riviere",
- "company": "Visageeth",
- "socialType": "twitter",
- "handle": "pmriviere",
- "attestation": null
- },
- {
- "id": 658,
- "date": "2020-05-04 04:13:34",
- "name": "Solomon",
- "company": null,
- "socialType": "twitter",
- "handle": "Sol68635937",
- "attestation": "https://twitter.com/Sol68635937/status/1257161710986645504"
- },
- {
- "id": 659,
- "date": "2020-05-04 04:16:38",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 660,
- "date": "2020-05-04 04:18:51",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 661,
- "date": "2020-05-04 04:35:20",
- "name": "Mohamed Hayibor",
- "company": null,
- "socialType": "github",
- "handle": "mohamedhayibor",
- "attestation": null
- },
- {
- "id": 662,
- "date": "2020-05-04 04:38:24",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 663,
- "date": "2020-05-04 04:50:59",
- "name": "Logan Saether",
- "company": null,
- "socialType": "github",
- "handle": "lsaether",
- "attestation": "https://twitter.com/logansaether/status/1257171010027216896"
- },
- {
- "id": 664,
- "date": "2020-05-04 04:53:13",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 665,
- "date": "2020-05-04 05:10:12",
- "name": "Airon",
- "company": "Ubiq",
- "socialType": "twitter",
- "handle": "Crypt0ptimus",
- "attestation": "https://twitter.com/Crypt0ptimus/status/1257175831824044033"
- },
- {
- "id": 666,
- "date": "2020-05-04 05:22:20",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 667,
- "date": "2020-05-04 05:41:55",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 668,
- "date": "2020-05-04 05:45:37",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 669,
- "date": "2020-05-04 06:04:47",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 670,
- "date": "2020-05-04 06:07:36",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 671,
- "date": "2020-05-04 06:30:35",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 672,
- "date": "2020-05-04 06:33:36",
- "name": "Jinwoo",
- "company": "Hashed",
- "socialType": "twitter",
- "handle": "hashed_jinwoo",
- "attestation": null
- },
- {
- "id": 673,
- "date": "2020-05-04 06:35:32",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 674,
- "date": "2020-05-04 06:37:26",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 675,
- "date": "2020-05-04 06:41:17",
- "name": "Lars Feyaerts",
- "company": "",
- "socialType": "github",
- "handle": "fifalars",
- "attestation": null
- },
- {
- "id": 676,
- "date": "2020-05-04 06:53:27",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 677,
- "date": "2020-05-04 06:54:57",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 678,
- "date": "2020-05-04 07:06:23",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 679,
- "date": "2020-05-04 07:23:22",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 680,
- "date": "2020-05-04 07:25:38",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 681,
- "date": "2020-05-04 07:28:31",
- "name": "HEXkye",
- "company": "HEX",
- "socialType": "twitter",
- "handle": "HEXkye",
- "attestation": null
- },
- {
- "id": 682,
- "date": "2020-05-04 07:32:36",
- "name": "glgrau",
- "company": null,
- "socialType": "twitter",
- "handle": "gugwatchout",
- "attestation": null
- },
- {
- "id": 683,
- "date": "2020-05-04 07:41:20",
- "name": "HEXkye",
- "company": "HEX",
- "socialType": "twitter",
- "handle": "HEXkye",
- "attestation": "https://twitter.com/HEXkye/status/1257213906231144449"
- },
- {
- "id": 684,
- "date": "2020-05-04 07:47:02",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 685,
- "date": "2020-05-04 07:49:06",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 686,
- "date": "2020-05-04 08:07:23",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 687,
- "date": "2020-05-04 08:11:23",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 688,
- "date": "2020-05-04 08:23:20",
- "name": "wschwab",
- "company": null,
- "socialType": "github",
- "handle": "wschwab",
- "attestation": "https://twitter.com/William94029369/status/1257224925603082240"
- },
- {
- "id": 689,
- "date": "2020-05-04 08:25:26",
- "name": "Friederike Ernst",
- "company": null,
- "socialType": "twitter",
- "handle": "tw_tter",
- "attestation": "https://twitter.com/tw_tter/status/1257244192490901506"
- },
- {
- "id": 690,
- "date": "2020-05-04 08:33:21",
- "name": "Arthus",
- "company": null,
- "socialType": "twitter",
- "handle": "cryptoarthus",
- "attestation": null
- },
- {
- "id": 691,
- "date": "2020-05-04 08:36:02",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 692,
- "date": "2020-05-04 08:59:32",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 693,
- "date": "2020-05-04 09:22:18",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 694,
- "date": "2020-05-04 09:37:41",
- "name": "Apostolos Provatidis",
- "company": null,
- "socialType": "github",
- "handle": "provatidis",
- "attestation": "https://twitter.com/provatidis/status/1257243833462595584"
- },
- {
- "id": 695,
- "date": "2020-05-04 09:47:38",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 696,
- "date": "2020-05-04 09:51:47",
- "name": "Catlos Gonzlez ",
- "company": "Guesser",
- "socialType": "twitter",
- "handle": "Carlos_molotov",
- "attestation": null
- },
- {
- "id": 697,
- "date": "2020-05-04 09:54:31",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 698,
- "date": "2020-05-04 09:58:07",
- "name": "Grme Blackwood",
- "company": "Argent",
- "socialType": "twitter",
- "handle": "graemeblackwood",
- "attestation": null
- },
- {
- "id": 699,
- "date": "2020-05-04 10:14:10",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 700,
- "date": "2020-05-04 10:22:02",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 701,
- "date": "2020-05-04 10:30:31",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 702,
- "date": "2020-05-04 10:32:45",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 703,
- "date": "2020-05-04 10:37:40",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 704,
- "date": "2020-05-04 10:48:15",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 705,
- "date": "2020-05-04 11:33:58",
- "name": "emanuelcoen",
- "company": "Cryptotesters",
- "socialType": "twitter",
- "handle": "litocoen",
- "attestation": "https://twitter.com/litocoen/status/1257272410090254340"
- },
- {
- "id": 706,
- "date": "2020-05-04 11:36:12",
- "name": "Felix Machart",
- "company": null,
- "socialType": "twitter",
- "handle": "felix_macht",
- "attestation": "https://twitter.com/felix_macht/status/1257273669409275904"
- },
- {
- "id": 707,
- "date": "2020-05-04 11:43:01",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 708,
- "date": "2020-05-04 11:58:13",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 709,
- "date": "2020-05-04 12:01:41",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 710,
- "date": "2020-05-04 12:26:39",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 711,
- "date": "2020-05-04 12:36:50",
- "name": "Denis Subbotin",
- "company": null,
- "socialType": "github",
- "handle": "mr-tron",
- "attestation": null
- },
- {
- "id": 712,
- "date": "2020-05-04 12:49:58",
- "name": "Mirko Da Corte",
- "company": "Etherna",
- "socialType": "github",
- "handle": "tmm360",
- "attestation": null
- },
- {
- "id": 713,
- "date": "2020-05-04 12:52:16",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 714,
- "date": "2020-05-04 13:03:15",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 715,
- "date": "2020-05-04 13:29:00",
- "name": "GraemeB",
- "company": null,
- "socialType": "twitter",
- "handle": "PmGraeme",
- "attestation": null
- },
- {
- "id": 716,
- "date": "2020-05-04 13:44:43",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 717,
- "date": "2020-05-04 13:55:07",
- "name": "uvizhe",
- "company": null,
- "socialType": "twitter",
- "handle": "uvizhe",
- "attestation": null
- },
- {
- "id": 718,
- "date": "2020-05-04 14:09:35",
- "name": "KOWEI TSENG",
- "company": "Quantum computerCQT",
- "socialType": "twitter",
- "handle": "kowei1995",
- "attestation": "https://twitter.com/kowei1995/status/1257311939169902601"
- },
- {
- "id": 719,
- "date": "2020-05-04 14:37:36",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 720,
- "date": "2020-05-04 14:39:44",
- "name": "Dennison Bertram",
- "company": "DAPPHERO",
- "socialType": "twitter",
- "handle": "DennisonBertram",
- "attestation": "https://twitter.com/DennisonBertram/status/1257319569275772940"
- },
- {
- "id": 721,
- "date": "2020-05-04 14:47:24",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 722,
- "date": "2020-05-04 14:53:06",
- "name": "Token Factory Switzerland",
- "company": "blockimmo",
- "socialType": "twitter",
- "handle": "token_factory",
- "attestation": "https://twitter.com/token_factory/status/1257322426423078916"
- },
- {
- "id": 723,
- "date": "2020-05-04 15:17:40",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 724,
- "date": "2020-05-04 15:40:09",
- "name": "Nazzareno Massari",
- "company": null,
- "socialType": "github",
- "handle": "naszam",
- "attestation": null
- },
- {
- "id": 725,
- "date": "2020-05-04 15:42:21",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 726,
- "date": "2020-05-04 15:50:19",
- "name": "Nazzareno Massari",
- "company": null,
- "socialType": "github",
- "handle": "naszam",
- "attestation": null
- },
- {
- "id": 727,
- "date": "2020-05-04 15:53:05",
- "name": "gekon",
- "company": null,
- "socialType": "github",
- "handle": "Gekonn",
- "attestation": null
- },
- {
- "id": 728,
- "date": "2020-05-04 16:03:09",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 729,
- "date": "2020-05-04 16:10:22",
- "name": "Xavier Maysonnave",
- "company": "IPFS with TiddlyWiki",
- "socialType": "github",
- "handle": "xmaysonnave",
- "attestation": "https://twitter.com/xmaysonnave/status/1257341904246767616"
- },
- {
- "id": 730,
- "date": "2020-05-04 16:14:47",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 731,
- "date": "2020-05-04 16:23:56",
- "name": "Mwaa Joseph",
- "company": "",
- "socialType": "github",
- "handle": "mwaa",
- "attestation": null
- },
- {
- "id": 732,
- "date": "2020-05-04 16:28:12",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 733,
- "date": "2020-05-04 16:34:18",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 734,
- "date": "2020-05-04 16:37:32",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 735,
- "date": "2020-05-04 16:40:03",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 736,
- "date": "2020-05-04 16:41:48",
- "name": "Swaroop Hegde",
- "company": "BlockVigil",
- "socialType": "twitter",
- "handle": "SwaroopH",
- "attestation": null
- },
- {
- "id": 737,
- "date": "2020-05-04 16:47:27",
- "name": "PetSte",
- "company": null,
- "socialType": "github",
- "handle": "PetSte",
- "attestation": null
- },
- {
- "id": 738,
- "date": "2020-05-04 16:50:17",
- "name": "GeoCoin",
- "company": "GeoCoin",
- "socialType": "twitter",
- "handle": "geo_coin",
- "attestation": "https://twitter.com/geo_coin/status/1257352247547236354"
- },
- {
- "id": 739,
- "date": "2020-05-04 17:02:55",
- "name": "Jose Vicente",
- "company": "dexFreight QuillaLabs",
- "socialType": "twitter",
- "handle": "bellinas90",
- "attestation": "https://twitter.com/bellinas90/status/1257355795680944129"
- },
- {
- "id": 740,
- "date": "2020-05-04 17:09:23",
- "name": "Kyle Bryant",
- "company": null,
- "socialType": "twitter",
- "handle": "komodoman",
- "attestation": null
- },
- {
- "id": 741,
- "date": "2020-05-04 17:14:17",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 742,
- "date": "2020-05-04 17:34:44",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 743,
- "date": "2020-05-04 17:41:50",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 744,
- "date": "2020-05-04 17:46:36",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 745,
- "date": "2020-05-04 17:58:16",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 746,
- "date": "2020-05-04 18:20:06",
- "name": "Adrian Calvo",
- "company": null,
- "socialType": "github",
- "handle": "AdrianClv",
- "attestation": null
- },
- {
- "id": 747,
- "date": "2020-05-04 18:23:58",
- "name": "Bianca Trov",
- "company": null,
- "socialType": "github",
- "handle": "biancasama",
- "attestation": "https://twitter.com/bianca_troveaux/status/1257376044987932675"
- },
- {
- "id": 748,
- "date": "2020-05-04 18:26:15",
- "name": "Jan Benes",
- "company": null,
- "socialType": "github",
- "handle": "benesjan",
- "attestation": null
- },
- {
- "id": 749,
- "date": "2020-05-04 19:10:27",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 750,
- "date": "2020-05-04 19:13:17",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 751,
- "date": "2020-05-04 19:16:39",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 752,
- "date": "2020-05-04 19:42:32",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 753,
- "date": "2020-05-04 20:01:46",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 754,
- "date": "2020-05-04 20:05:56",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 755,
- "date": "2020-05-04 20:29:10",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 756,
- "date": "2020-05-04 20:50:08",
- "name": "Jeroen",
- "company": "tornado",
- "socialType": "github",
- "handle": "Yerontour",
- "attestation": null
- },
- {
- "id": 757,
- "date": "2020-05-04 20:59:32",
- "name": "ChristophSiegenthaler",
- "company": "ethbuilduniswapch",
- "socialType": "github",
- "handle": "ChristophSiegenthaler",
- "attestation": "https://twitter.com/Christoph_Sigi/status/1257415499744456709"
- },
- {
- "id": 758,
- "date": "2020-05-04 21:07:54",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 759,
- "date": "2020-05-04 21:12:49",
- "name": "Dennis Schlegel",
- "company": null,
- "socialType": "twitter",
- "handle": "DennisSchlege14",
- "attestation": "https://twitter.com/DennisSchlege14/status/1257418002225606656"
- },
- {
- "id": 760,
- "date": "2020-05-04 21:14:08",
- "name": "XyzjynX",
- "company": null,
- "socialType": "twitter",
- "handle": "xyzjynx",
- "attestation": "https://twitter.com/xyzjynx/status/1257418345441382400"
- },
- {
- "id": 761,
- "date": "2020-05-04 21:29:44",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 762,
- "date": "2020-05-04 21:46:00",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 763,
- "date": "2020-05-04 22:16:18",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 764,
- "date": "2020-05-04 22:28:11",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 765,
- "date": "2020-05-04 22:52:32",
- "name": "Derek Silva",
- "company": null,
- "socialType": "github",
- "handle": "dereksilva",
- "attestation": "https://twitter.com/dereksilva/status/1257443192070381574"
- },
- {
- "id": 766,
- "date": "2020-05-04 23:03:42",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 767,
- "date": "2020-05-04 23:11:05",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 768,
- "date": "2020-05-04 23:30:01",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 769,
- "date": "2020-05-04 23:33:22",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 770,
- "date": "2020-05-04 23:39:23",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 771,
- "date": "2020-05-04 23:47:57",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 772,
- "date": "2020-05-04 23:49:23",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 773,
- "date": "2020-05-04 23:54:14",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 774,
- "date": "2020-05-05 00:03:21",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 775,
- "date": "2020-05-05 00:05:08",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 776,
- "date": "2020-05-05 00:20:06",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 777,
- "date": "2020-05-05 01:21:36",
- "name": "xiaojay",
- "company": "",
- "socialType": "github",
- "handle": "xiaojay",
- "attestation": null
- },
- {
- "id": 778,
- "date": "2020-05-05 01:34:16",
- "name": "Jay Zhou",
- "company": "Loopring zkRollup",
- "socialType": "twitter",
- "handle": "jfromsep",
- "attestation": "https://twitter.com/jfromsep/status/1257484261319270400"
- },
- {
- "id": 779,
- "date": "2020-05-05 02:08:46",
- "name": "dan m",
- "company": null,
- "socialType": "twitter",
- "handle": "0xdanm",
- "attestation": "https://twitter.com/0xdanm/status/1257492482931204097"
- },
- {
- "id": 780,
- "date": "2020-05-05 02:28:55",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 781,
- "date": "2020-05-05 03:05:17",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 782,
- "date": "2020-05-05 03:07:58",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 783,
- "date": "2020-05-05 03:22:21",
- "name": "devcorn",
- "company": "tendermint",
- "socialType": "github",
- "handle": "devcorn",
- "attestation": null
- },
- {
- "id": 784,
- "date": "2020-05-05 04:03:16",
- "name": "jacopo",
- "company": "ruan",
- "socialType": "github",
- "handle": "RJacopo",
- "attestation": null
- },
- {
- "id": 785,
- "date": "2020-05-05 05:30:26",
- "name": "George Spasov",
- "company": "Lime",
- "socialType": "github",
- "handle": "Perseverance",
- "attestation": null
- },
- {
- "id": 786,
- "date": "2020-05-05 07:31:16",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 787,
- "date": "2020-05-05 07:36:34",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 788,
- "date": "2020-05-05 07:53:31",
- "name": " Anett anetteth ",
- "company": "EMSP",
- "socialType": "twitter",
- "handle": "AnettRolikova",
- "attestation": "https://twitter.com/AnettRolikova/status/1257590615342276609"
- },
- {
- "id": 789,
- "date": "2020-05-05 09:39:56",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 790,
- "date": "2020-05-05 09:46:49",
- "name": "Micah Zoltu",
- "company": "Keydonix",
- "socialType": "github",
- "handle": "MicahZoltu",
- "attestation": null
- },
- {
- "id": 791,
- "date": "2020-05-05 09:50:09",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 792,
- "date": "2020-05-05 10:17:50",
- "name": "notyourkeys",
- "company": "",
- "socialType": "twitter",
- "handle": "notyourkeys",
- "attestation": null
- },
- {
- "id": 793,
- "date": "2020-05-05 10:31:31",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 794,
- "date": "2020-05-05 10:37:59",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 795,
- "date": "2020-05-05 11:15:55",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 796,
- "date": "2020-05-05 11:21:56",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 797,
- "date": "2020-05-05 11:25:56",
- "name": "HuKuTo",
- "company": null,
- "socialType": "github",
- "handle": "HuKuTo",
- "attestation": "https://twitter.com/ns_raykov/status/1257632746593226753"
- },
- {
- "id": 798,
- "date": "2020-05-05 13:23:36",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 799,
- "date": "2020-05-05 13:45:29",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 800,
- "date": "2020-05-05 14:48:46",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 801,
- "date": "2020-05-05 15:15:58",
- "name": "Ben DiFrancesco",
- "company": null,
- "socialType": "github",
- "handle": "apbendi",
- "attestation": "https://twitter.com/BenDiFrancesco/status/1257690693750882314"
- },
- {
- "id": 802,
- "date": "2020-05-05 16:06:42",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 803,
- "date": "2020-05-05 16:29:15",
- "name": "0xdeniz",
- "company": null,
- "socialType": "github",
- "handle": "0xdeniz",
- "attestation": "https://twitter.com/0xdeniz/status/1257709189922795520"
- },
- {
- "id": 804,
- "date": "2020-05-05 16:54:04",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 805,
- "date": "2020-05-05 18:31:24",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 806,
- "date": "2020-05-05 20:08:47",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 807,
- "date": "2020-05-05 20:57:37",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 808,
- "date": "2020-05-05 21:45:08",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 809,
- "date": "2020-05-05 21:47:35",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 810,
- "date": "2020-05-05 22:03:43",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 811,
- "date": "2020-05-05 22:52:55",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 812,
- "date": "2020-05-05 23:02:29",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 813,
- "date": "2020-05-05 23:05:03",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 814,
- "date": "2020-05-06 00:04:05",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 815,
- "date": "2020-05-06 00:39:31",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 816,
- "date": "2020-05-06 01:55:20",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 817,
- "date": "2020-05-06 02:30:04",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 818,
- "date": "2020-05-06 02:38:08",
- "name": "Sandeep Chakravartty",
- "company": "DemoProject",
- "socialType": "github",
- "handle": "scha54",
- "attestation": "https://twitter.com/scha1292/status/1257863358155378688"
- },
- {
- "id": 819,
- "date": "2020-05-06 02:51:17",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 820,
- "date": "2020-05-06 02:53:42",
- "name": "phileth",
- "company": null,
- "socialType": "twitter",
- "handle": "Crypt0Phil",
- "attestation": "https://twitter.com/Crypt0Phil/status/1257866180909510662"
- },
- {
- "id": 821,
- "date": "2020-05-06 03:22:04",
- "name": "Kevin Gaspar",
- "company": "Operation Phoenix",
- "socialType": "github",
- "handle": "ethereumkev",
- "attestation": null
- },
- {
- "id": 822,
- "date": "2020-05-06 03:23:55",
- "name": "Raymond",
- "company": "Someone Supporting Privacy",
- "socialType": "twitter",
- "handle": "RaymondDurk",
- "attestation": null
- },
- {
- "id": 823,
- "date": "2020-05-06 03:35:07",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 824,
- "date": "2020-05-06 03:53:03",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 825,
- "date": "2020-05-06 04:26:01",
- "name": "Primitive",
- "company": "Primitive",
- "socialType": "twitter",
- "handle": "PrimitiveFi",
- "attestation": null
- },
- {
- "id": 826,
- "date": "2020-05-06 04:43:49",
- "name": "Harith Kamarul",
- "company": null,
- "socialType": "twitter",
- "handle": "harithk17",
- "attestation": "https://twitter.com/harithk17/status/1258752639086387200"
- },
- {
- "id": 827,
- "date": "2020-05-06 04:51:36",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 828,
- "date": "2020-05-06 05:12:18",
- "name": "gnattishness",
- "company": null,
- "socialType": "github",
- "handle": "gnattishness",
- "attestation": null
- },
- {
- "id": 829,
- "date": "2020-05-06 05:17:08",
- "name": "Lorenzo Dalvit",
- "company": null,
- "socialType": "twitter",
- "handle": "Dalwitter_",
- "attestation": null
- },
- {
- "id": 830,
- "date": "2020-05-06 07:01:31",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 831,
- "date": "2020-05-06 07:17:47",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 832,
- "date": "2020-05-06 07:59:37",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 833,
- "date": "2020-05-06 08:12:37",
- "name": "praneeths",
- "company": "Consensys",
- "socialType": "twitter",
- "handle": "bees_neeth",
- "attestation": null
- },
- {
- "id": 834,
- "date": "2020-05-06 08:14:05",
- "name": "Rune",
- "company": null,
- "socialType": "twitter",
- "handle": "minskmink87",
- "attestation": null
- },
- {
- "id": 835,
- "date": "2020-05-06 08:21:03",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 836,
- "date": "2020-05-06 08:42:46",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 837,
- "date": "2020-05-06 08:55:13",
- "name": "Hugo Sanchez",
- "company": "Bradbvry",
- "socialType": "twitter",
- "handle": "SchezHugo",
- "attestation": "https://twitter.com/SchezHugo/status/1257957152267866112"
- },
- {
- "id": 838,
- "date": "2020-05-06 09:05:14",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 839,
- "date": "2020-05-06 09:25:18",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 840,
- "date": "2020-05-06 09:56:09",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 841,
- "date": "2020-05-06 10:25:51",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 842,
- "date": "2020-05-06 11:00:21",
- "name": "skywinder",
- "company": null,
- "socialType": "github",
- "handle": "skywinder",
- "attestation": null
- },
- {
- "id": 843,
- "date": "2020-05-06 11:15:00",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 844,
- "date": "2020-05-06 11:18:51",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 845,
- "date": "2020-05-06 12:07:52",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 846,
- "date": "2020-05-06 12:12:18",
- "name": "Unnawut Leepaisalsuwanna",
- "company": null,
- "socialType": "github",
- "handle": "unnawut",
- "attestation": "https://twitter.com/unnawut/status/1258006853386027009"
- },
- {
- "id": 847,
- "date": "2020-05-06 12:32:40",
- "name": "Leonid Beder",
- "company": null,
- "socialType": "twitter",
- "handle": "LeonidBeder",
- "attestation": "https://twitter.com/LeonidBeder/status/1258012013873238017"
- },
- {
- "id": 848,
- "date": "2020-05-06 12:57:18",
- "name": "Jeewaka",
- "company": "Ubiq",
- "socialType": "github",
- "handle": "jeewaka",
- "attestation": null
- },
- {
- "id": 849,
- "date": "2020-05-06 13:07:44",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 850,
- "date": "2020-05-06 13:29:21",
- "name": "Dexter Valkyrie",
- "company": null,
- "socialType": "twitter",
- "handle": "Dexter_Valkyrie",
- "attestation": "https://twitter.com/Dexter_Valkyrie/status/1258026145032933376"
- },
- {
- "id": 851,
- "date": "2020-05-06 13:50:49",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 852,
- "date": "2020-05-06 14:02:56",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 853,
- "date": "2020-05-06 14:10:54",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 854,
- "date": "2020-05-06 14:18:38",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 855,
- "date": "2020-05-06 14:26:51",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 856,
- "date": "2020-05-06 14:45:45",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 857,
- "date": "2020-05-06 15:38:20",
- "name": "Craig Fratrik",
- "company": null,
- "socialType": "github",
- "handle": "fratrik",
- "attestation": null
- },
- {
- "id": 858,
- "date": "2020-05-06 15:42:58",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 859,
- "date": "2020-05-06 19:19:20",
- "name": "Walkingmage",
- "company": null,
- "socialType": "twitter",
- "handle": "Walkingmage",
- "attestation": "https://twitter.com/Walkingmage/status/1258114232807313411"
- },
- {
- "id": 860,
- "date": "2020-05-06 21:23:01",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 861,
- "date": "2020-05-06 23:39:02",
- "name": "BackroadDave",
- "company": "GeoCoin Ubiq",
- "socialType": "twitter",
- "handle": "BackroadDave",
- "attestation": "https://twitter.com/BackroadDave/status/1258179654696878082"
- },
- {
- "id": 862,
- "date": "2020-05-06 23:42:57",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 863,
- "date": "2020-05-06 23:59:45",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 864,
- "date": "2020-05-07 00:02:34",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 865,
- "date": "2020-05-07 00:43:20",
- "name": "JosephC",
- "company": "",
- "socialType": "twitter",
- "handle": "josephch",
- "attestation": "https://twitter.com/josephch/status/1258197906458361856"
- },
- {
- "id": 866,
- "date": "2020-05-07 04:46:45",
- "name": "Decentralized J40",
- "company": "Ubiq",
- "socialType": "twitter",
- "handle": "j40j",
- "attestation": "https://twitter.com/j40j/status/1258257691840897024"
- },
- {
- "id": 867,
- "date": "2020-05-07 06:04:41",
- "name": "Luis F Escobar Driver",
- "company": "California Hoax",
- "socialType": "github",
- "handle": "LEscobar-Driver",
- "attestation": "https://twitter.com/BTCbuddah/status/1258276668105322496"
- },
- {
- "id": 868,
- "date": "2020-05-07 06:09:18",
- "name": "Nathan Carlson",
- "company": null,
- "socialType": "github",
- "handle": "nscarlson",
- "attestation": "https://twitter.com/mrnathancarlson/status/1258277792615145472"
- },
- {
- "id": 869,
- "date": "2020-05-07 06:39:46",
- "name": "Alex",
- "company": "",
- "socialType": "github",
- "handle": "cicnos",
- "attestation": null
- },
- {
- "id": 870,
- "date": "2020-05-07 07:16:06",
- "name": "Anon",
- "company": null,
- "socialType": "twitter",
- "handle": "AnaJOlsson",
- "attestation": null
- },
- {
- "id": 871,
- "date": "2020-05-07 07:48:36",
- "name": "Erik van Rijn",
- "company": "Ubiq",
- "socialType": "twitter",
- "handle": "ErikRijn",
- "attestation": "https://twitter.com/ErikRijn/status/1258302842684801024"
- },
- {
- "id": 872,
- "date": "2020-05-07 07:50:33",
- "name": "Koh Wei Jie",
- "company": "Used cargo run to contribute",
- "socialType": "github",
- "handle": "weijiekoh",
- "attestation": null
- },
- {
- "id": 873,
- "date": "2020-05-07 08:09:09",
- "name": "Sven Hoek",
- "company": "Ubiq",
- "socialType": "github",
- "handle": "svenrenhoek",
- "attestation": "https://twitter.com/GKurhl/status/1258308104338526208"
- },
- {
- "id": 874,
- "date": "2020-05-07 08:15:00",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 875,
- "date": "2020-05-07 09:18:53",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 876,
- "date": "2020-05-07 13:46:32",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 877,
- "date": "2020-05-07 14:19:45",
- "name": "Michael Haindl",
- "company": null,
- "socialType": "twitter",
- "handle": "MHaindl",
- "attestation": "https://twitter.com/MHaindl/status/1258401333092200449"
- },
- {
- "id": 878,
- "date": "2020-05-07 14:46:25",
- "name": "ethereumnetwork",
- "company": null,
- "socialType": "twitter",
- "handle": "EthereumNetw",
- "attestation": null
- },
- {
- "id": 879,
- "date": "2020-05-07 15:30:58",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 880,
- "date": "2020-05-07 16:01:14",
- "name": "Dennis Ahlqvist",
- "company": null,
- "socialType": "github",
- "handle": "dennisahlqvist",
- "attestation": null
- },
- {
- "id": 881,
- "date": "2020-05-07 18:16:13",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 882,
- "date": "2020-05-07 18:25:40",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 883,
- "date": "2020-05-07 18:50:59",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 884,
- "date": "2020-05-07 19:47:25",
- "name": "Elena Nadolinski",
- "company": "Beanstalk",
- "socialType": "twitter",
- "handle": "leanthebean",
- "attestation": null
- },
- {
- "id": 885,
- "date": "2020-05-07 21:35:13",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
{
"id": 886,
- "date": "2020-05-07 21:51:52",
"name": "Vitalik Buterin",
"company": null,
- "socialType": "twitter",
"handle": "VitalikButerin",
- "attestation": "https://twitter.com/VitalikButerin/status/1258515050492395521"
- },
- {
- "id": 887,
- "date": "2020-05-07 21:58:52",
- "name": "LucasSharpn",
- "company": null,
"socialType": "twitter",
- "handle": "lucas_sharpn",
- "attestation": null
- },
- {
- "id": 888,
- "date": "2020-05-07 22:00:19",
- "name": "Zachary Thielemann",
- "company": "Lease on the Block",
- "socialType": "twitter",
- "handle": "_zachdt",
- "attestation": "https://twitter.com/_zachdt/status/1258517298106662912"
- },
- {
- "id": 889,
- "date": "2020-05-07 22:01:36",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 890,
- "date": "2020-05-07 22:03:04",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 891,
- "date": "2020-05-07 22:04:41",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 892,
- "date": "2020-05-07 22:06:05",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 893,
- "date": "2020-05-07 22:07:39",
- "name": "GEOMIC",
- "company": "ManagePlaces",
- "socialType": "twitter",
- "handle": "georgiomic",
- "attestation": "https://twitter.com/georgiomic/status/1258518964851761152"
- },
- {
- "id": 894,
- "date": "2020-05-07 22:09:22",
- "name": "Matthew Finestone 3bodyeth",
- "company": "loopring",
- "socialType": "twitter",
- "handle": "finestonematt",
- "attestation": "https://twitter.com/finestonematt/status/1258520679692947456"
- },
- {
- "id": 895,
- "date": "2020-05-07 22:10:38",
- "name": "TylerSmitheth",
- "company": null,
- "socialType": "twitter",
- "handle": "R_Tyler_Smith",
- "attestation": "https://twitter.com/R_Tyler_Smith/status/1258519854073569280"
- },
- {
- "id": 896,
- "date": "2020-05-07 22:13:57",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 897,
- "date": "2020-05-07 22:15:50",
- "name": "Braden",
- "company": null,
- "socialType": "twitter",
- "handle": "jackofalltr8ds",
- "attestation": null
- },
- {
- "id": 898,
- "date": "2020-05-07 22:17:40",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 899,
- "date": "2020-05-07 22:19:55",
- "name": "Tendo Pein",
- "company": "Spedn",
- "socialType": "twitter",
- "handle": "tendo_pein_sama",
- "attestation": "https://twitter.com/tendo_pein_sama/status/1258522483201736704"
- },
- {
- "id": 900,
- "date": "2020-05-07 22:21:30",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 901,
- "date": "2020-05-07 22:24:33",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 902,
- "date": "2020-05-07 22:26:34",
- "name": "Dick Dickenson",
- "company": "BIG DICK",
- "socialType": "twitter",
- "handle": "Rafal_2025",
- "attestation": null
- },
- {
- "id": 903,
- "date": "2020-05-07 22:28:17",
- "name": "Dick Dickenson",
- "company": "Big Dick",
- "socialType": "twitter",
- "handle": "Rafal_2025",
- "attestation": "https://twitter.com/Rafal_2025/status/1258524141973467137"
- },
- {
- "id": 904,
- "date": "2020-05-07 22:30:04",
- "name": " Troy Murray",
- "company": "snglsDAO",
- "socialType": "twitter",
- "handle": "Danny_Desert",
- "attestation": "https://twitter.com/Danny_Desert/status/1258524667502931969"
- },
- {
- "id": 905,
- "date": "2020-05-07 22:31:03",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 906,
- "date": "2020-05-07 22:32:23",
- "name": "dnktaeth",
- "company": null,
- "socialType": "twitter",
- "handle": "dnkta",
- "attestation": "https://twitter.com/dnkta/status/1258525540169904130"
- },
- {
- "id": 907,
- "date": "2020-05-07 22:34:10",
- "name": "tcrypt",
- "company": null,
- "socialType": "github",
- "handle": "tyler-smith",
- "attestation": null
- },
- {
- "id": 908,
- "date": "2020-05-07 22:36:37",
- "name": "Alexintosh PieDAO",
- "company": "PieDAO",
- "socialType": "twitter",
- "handle": "Alexintosh",
- "attestation": null
- },
- {
- "id": 909,
- "date": "2020-05-07 22:40:12",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 910,
- "date": "2020-05-07 22:41:51",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 911,
- "date": "2020-05-07 22:44:16",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 912,
- "date": "2020-05-07 22:45:33",
- "name": "Hammad Jutt",
- "company": null,
- "socialType": "github",
- "handle": "hammadj",
- "attestation": null
- },
- {
- "id": 913,
- "date": "2020-05-07 22:47:46",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 914,
- "date": "2020-05-07 22:51:41",
- "name": "Leon Berghoff",
- "company": null,
- "socialType": "twitter",
- "handle": "LeonBerghoff",
- "attestation": "https://twitter.com/LeonBerghoff/status/1258530289023725568"
- },
- {
- "id": 915,
- "date": "2020-05-07 22:53:09",
- "name": "Dareh Winston",
- "company": null,
- "socialType": "twitter",
- "handle": "DarehWinston",
- "attestation": "https://twitter.com/DarehWinston/status/1258530430170443782"
- },
- {
- "id": 916,
- "date": "2020-05-07 22:54:59",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 917,
- "date": "2020-05-07 23:06:29",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 918,
- "date": "2020-05-07 23:08:04",
- "name": "Jake Song",
- "company": null,
- "socialType": "twitter",
- "handle": "Jake_Mubok",
- "attestation": "https://twitter.com/Jake_Mubok/status/1258534176803811328"
- },
- {
- "id": 919,
- "date": "2020-05-07 23:11:53",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 920,
- "date": "2020-05-07 23:13:22",
- "name": "Mikhail Melnik",
- "company": null,
- "socialType": "github",
- "handle": "ZumZoom",
- "attestation": null
- },
- {
- "id": 921,
- "date": "2020-05-07 23:15:21",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 922,
- "date": "2020-05-07 23:19:46",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 923,
- "date": "2020-05-07 23:21:26",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 924,
- "date": "2020-05-07 23:27:02",
- "name": "XuTPoBaH",
- "company": null,
- "socialType": "github",
- "handle": "XuTPoBaH",
- "attestation": null
- },
- {
- "id": 925,
- "date": "2020-05-07 23:34:46",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 926,
- "date": "2020-05-07 23:43:11",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 927,
- "date": "2020-05-08 00:06:39",
- "name": "Leo Gao",
- "company": null,
- "socialType": "twitter",
- "handle": "nabla_theta",
- "attestation": "https://twitter.com/nabla_theta/status/1258548995355377664"
- },
- {
- "id": 928,
- "date": "2020-05-08 00:32:25",
- "name": "Sebastian Aldasoro",
- "company": null,
- "socialType": "twitter",
- "handle": "Saldasoro",
- "attestation": "https://twitter.com/Saldasoro/status/1258558412683718659"
- },
- {
- "id": 929,
- "date": "2020-05-08 00:53:04",
- "name": "Ryan Garner",
- "company": null,
- "socialType": "twitter",
- "handle": "imkharn",
- "attestation": "https://twitter.com/imkharn/status/1258560610939396096"
+ "attestation": "https://twitter.com/VitalikButerin/status/1258515050492395521",
+ "followersCount": 904106
},
{
"id": 930,
- "date": "2020-05-08 00:58:48",
"name": "Gavin Andresen",
"company": null,
- "socialType": "twitter",
"handle": "gavinandresen",
- "attestation": "https://twitter.com/gavinandresen/status/1258562090530484225"
- },
- {
- "id": 931,
- "date": "2020-05-08 01:00:44",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 932,
- "date": "2020-05-08 01:02:38",
- "name": "Gavin Andresen",
- "company": "",
"socialType": "twitter",
- "handle": "gavinandresen",
- "attestation": null
+ "attestation": "https://twitter.com/gavinandresen/status/1258562090530484225",
+ "followersCount": 153628
},
{
- "id": 933,
- "date": "2020-05-08 01:04:19",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
+ "id": 80,
+ "name": "Linda Xie",
+ "company": "Scalar Capital",
+ "handle": "ljxie",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/ljxie/status/1256011102715965440",
+ "followersCount": 62027
},
{
- "id": 934,
- "date": "2020-05-08 01:08:11",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
+ "id": 181,
+ "name": "Richard Heart HEX did 84x",
+ "company": "HEX The Worlds First Blockchain CD",
+ "handle": "RichardHeartWin",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/RichardHeartWin/status/1256135635003412481",
+ "followersCount": 61074
},
{
- "id": 935,
- "date": "2020-05-08 01:10:40",
- "name": "Cem Ozer",
+ "id": 527,
+ "name": "VEOMaximalist EMA200Maximalist",
+ "company": "Project X",
+ "handle": "CryptoMaestro",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/CryptoMaestro/status/1256604285678153728",
+ "followersCount": 27409
+ },
+ {
+ "id": 150,
+ "name": "econoar",
"company": null,
+ "handle": "econoar",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/econoar/status/1256069808283504642",
+ "followersCount": 14157
+ },
+ {
+ "id": 123,
+ "name": "Anthony Sassano",
+ "company": "Set Protocol and EthHub",
+ "handle": "sassal0x",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/sassal0x/status/1256048945182076933",
+ "followersCount": 13511
+ },
+ {
+ "id": 16,
+ "name": "Ameen Soleimani",
+ "company": "ConsenSith Academy",
+ "handle": "ameensol",
"socialType": "github",
- "handle": "cemozerr",
- "attestation": null
+ "attestation": "https://twitter.com/ameensol/status/1255969939912974338",
+ "followersCount": 10559
},
{
- "id": 936,
- "date": "2020-05-08 01:11:59",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 937,
- "date": "2020-05-08 01:14:36",
- "name": "Martin Kppelmann",
- "company": null,
- "socialType": "twitter",
- "handle": "koeppelmann",
- "attestation": null
- },
- {
- "id": 938,
- "date": "2020-05-08 01:18:06",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 939,
- "date": "2020-05-08 01:19:42",
- "name": "Marius Kjrstad",
- "company": null,
- "socialType": "twitter",
- "handle": "MKjrstad",
- "attestation": "https://twitter.com/MKjrstad/status/1258567456295174146"
- },
- {
- "id": 940,
- "date": "2020-05-08 01:22:18",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 941,
- "date": "2020-05-08 01:29:59",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 942,
- "date": "2020-05-08 01:34:42",
- "name": "Mickael Salabi",
- "company": null,
- "socialType": "twitter",
- "handle": "MickaelSalabi",
- "attestation": "https://twitter.com/MickaelSalabi/status/1258571190588846083"
- },
- {
- "id": 943,
- "date": "2020-05-08 01:42:39",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 944,
- "date": "2020-05-08 01:50:35",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 945,
- "date": "2020-05-08 01:58:32",
- "name": "Youssef El Housni",
- "company": null,
- "socialType": "twitter",
- "handle": "YoussefElHousn3",
- "attestation": "https://twitter.com/YoussefElHousn3/status/1258577090754097152"
- },
- {
- "id": 946,
- "date": "2020-05-08 02:01:05",
- "name": "Rogerio Schneider",
- "company": null,
- "socialType": "twitter",
- "handle": "stockrt",
- "attestation": null
- },
- {
- "id": 947,
- "date": "2020-05-08 02:04:12",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 948,
- "date": "2020-05-08 02:11:25",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 949,
- "date": "2020-05-08 02:13:29",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 950,
- "date": "2020-05-08 02:17:54",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 951,
- "date": "2020-05-08 02:46:56",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 952,
- "date": "2020-05-08 02:53:47",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 953,
- "date": "2020-05-08 03:18:25",
- "name": "Michael McCaffrey",
- "company": null,
- "socialType": "twitter",
- "handle": "MichaelMancap",
- "attestation": "https://twitter.com/MichaelMancap/status/1258597206698807296"
- },
- {
- "id": 954,
- "date": "2020-05-08 03:20:07",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 955,
- "date": "2020-05-08 03:23:28",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 956,
- "date": "2020-05-08 03:27:06",
- "name": "Josh Ellithorpe",
- "company": null,
+ "id": 24,
+ "name": "Ameen Soleimani",
+ "company": "Moloch Ventures",
+ "handle": "ameensol",
"socialType": "github",
- "handle": "zquestz",
- "attestation": "https://twitter.com/zquestz/status/1258599574689603584"
+ "attestation": "https://twitter.com/ameensol/status/1255969806320234496",
+ "followersCount": 10559
},
{
- "id": 957,
- "date": "2020-05-08 03:30:12",
- "name": "Akethcheta",
- "company": null,
+ "id": 738,
+ "name": "GeoCoin",
+ "company": "GeoCoin",
+ "handle": "geo_coin",
"socialType": "twitter",
- "handle": "akethcheta",
- "attestation": null
+ "attestation": "https://twitter.com/geo_coin/status/1257352247547236354",
+ "followersCount": 9249
},
{
- "id": 958,
- "date": "2020-05-08 03:31:43",
- "name": "Akethcheta",
- "company": null,
+ "id": 52,
+ "name": "Lefteris Karapetsas",
+ "company": "Rotki",
+ "handle": "LefterisJP",
"socialType": "twitter",
- "handle": "akethcheta",
- "attestation": "https://twitter.com/akethcheta/status/1258600792484769793"
- },
- {
- "id": 959,
- "date": "2020-05-08 03:33:33",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 960,
- "date": "2020-05-08 03:42:15",
- "name": "checksum0",
- "company": null,
- "socialType": "twitter",
- "handle": "notChecksum0",
- "attestation": "https://twitter.com/notChecksum0/status/1258603123662348289"
- },
- {
- "id": 961,
- "date": "2020-05-08 03:48:17",
- "name": "woki GITer of Coins",
- "company": "gitcoin",
- "socialType": "twitter",
- "handle": "owocki",
- "attestation": null
- },
- {
- "id": 962,
- "date": "2020-05-08 03:57:03",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 963,
- "date": "2020-05-08 04:07:54",
- "name": "kaichen",
- "company": null,
- "socialType": "github",
- "handle": "kaichen",
- "attestation": "https://twitter.com/_kaichen/status/1258609998415814657"
- },
- {
- "id": 964,
- "date": "2020-05-08 04:38:20",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 965,
- "date": "2020-05-08 04:42:39",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 966,
- "date": "2020-05-08 04:45:29",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 967,
- "date": "2020-05-08 04:59:02",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 968,
- "date": "2020-05-08 05:05:03",
- "name": "ksheni",
- "company": "decentralized protectors",
- "socialType": "github",
- "handle": "ksheni56",
- "attestation": null
- },
- {
- "id": 969,
- "date": "2020-05-08 05:30:17",
- "name": "Patrik Svensson",
- "company": "",
- "socialType": "twitter",
- "handle": "apatriksvensson",
- "attestation": "https://twitter.com/apatriksvensson/status/1258630666369019904"
- },
- {
- "id": 970,
- "date": "2020-05-08 05:36:01",
- "name": "Mekyle Naidoo",
- "company": "MIH Ventures",
- "socialType": "twitter",
- "handle": "MekyleLogen",
- "attestation": "https://twitter.com/MekyleLogen/status/1258634908706041858"
- },
- {
- "id": 971,
- "date": "2020-05-08 05:49:00",
- "name": "pet3rpan",
- "company": "metacartel",
- "socialType": "twitter",
- "handle": "pet3rpan_",
- "attestation": "https://twitter.com/meta_cartel/status/1258636258777206784"
- },
- {
- "id": 972,
- "date": "2020-05-08 05:57:34",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
+ "attestation": "https://twitter.com/LefterisJP/status/1255998669951840262",
+ "followersCount": 7885
},
{
"id": 973,
- "date": "2020-05-08 06:06:17",
"name": "Nick Sawinyh",
"company": "defiprimecom",
- "socialType": "twitter",
"handle": "sawinyh",
- "attestation": "https://twitter.com/defiprime/status/1258639416668483586"
- },
- {
- "id": 974,
- "date": "2020-05-08 06:08:08",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 975,
- "date": "2020-05-08 06:09:39",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 976,
- "date": "2020-05-08 06:11:23",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 977,
- "date": "2020-05-08 06:12:55",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 978,
- "date": "2020-05-08 06:14:24",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 979,
- "date": "2020-05-08 06:15:51",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 980,
- "date": "2020-05-08 06:17:19",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 981,
- "date": "2020-05-08 06:18:46",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 982,
- "date": "2020-05-08 06:20:22",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 983,
- "date": "2020-05-08 06:21:47",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 984,
- "date": "2020-05-08 06:23:55",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 985,
- "date": "2020-05-08 06:25:55",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 986,
- "date": "2020-05-08 06:27:23",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 987,
- "date": "2020-05-08 06:30:27",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 988,
- "date": "2020-05-08 06:36:52",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 989,
- "date": "2020-05-08 06:46:57",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 990,
- "date": "2020-05-08 06:51:38",
- "name": "Pr0toshi",
- "company": "Keychain",
- "socialType": "github",
- "handle": "pr0toshi",
- "attestation": "https://twitter.com/0xNow/status/1258650907698487296"
- },
- {
- "id": 991,
- "date": "2020-05-08 06:57:22",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 992,
- "date": "2020-05-08 06:59:30",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 993,
- "date": "2020-05-08 07:03:04",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 994,
- "date": "2020-05-08 07:04:34",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 995,
- "date": "2020-05-08 07:06:53",
- "name": "Christopher",
- "company": "",
"socialType": "twitter",
- "handle": "OaktreeInv",
- "attestation": null
+ "attestation": "https://twitter.com/defiprime/status/1258639416668483586",
+ "followersCount": 7126
},
{
- "id": 996,
- "date": "2020-05-08 07:09:18",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
+ "id": 72,
+ "name": "Mariano Conti",
+ "company": "MakerDAO",
+ "handle": "nanexcool",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/nanexcool/status/1256007646672556032",
+ "followersCount": 6819
},
{
- "id": 997,
- "date": "2020-05-08 07:10:46",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 998,
- "date": "2020-05-08 07:12:15",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 999,
- "date": "2020-05-08 07:13:57",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1000,
- "date": "2020-05-08 07:15:23",
- "name": "Kevin",
- "company": "ENSPortal",
- "socialType": "github",
- "handle": "ethereumkev",
- "attestation": "https://twitter.com/kevingaspar/status/1258656870585307137"
+ "id": 50,
+ "name": "Jlien Genestoux",
+ "company": "Unlock Protocol",
+ "handle": "julien51",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/julien51/status/1255997795347173377",
+ "followersCount": 5976
},
{
"id": 1001,
- "date": "2020-05-08 07:17:01",
"name": "DeFi",
"company": "DeFi",
- "socialType": "twitter",
"handle": "defiopfi",
- "attestation": "https://twitter.com/defiopfi/status/1258663403821969409"
- },
- {
- "id": 1002,
- "date": "2020-05-08 07:19:11",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1003,
- "date": "2020-05-08 07:23:43",
- "name": "Alexintosh",
- "company": "PieDAO",
"socialType": "twitter",
- "handle": "Alexintosh",
- "attestation": "https://twitter.com/Alexintosh/status/1258659947052781568"
- },
- {
- "id": 1004,
- "date": "2020-05-08 07:27:07",
- "name": "feux07",
- "company": null,
- "socialType": "github",
- "handle": "feux07",
- "attestation": null
- },
- {
- "id": 1005,
- "date": "2020-05-08 07:35:20",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1006,
- "date": "2020-05-08 07:36:57",
- "name": "Benjamin Lupton",
- "company": "Bevry",
- "socialType": "twitter",
- "handle": "balupton",
- "attestation": "https://twitter.com/balupton/status/1258662308848398338"
- },
- {
- "id": 1007,
- "date": "2020-05-08 07:41:58",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1008,
- "date": "2020-05-08 08:08:02",
- "name": "Istvan Andras Seres",
- "company": "ELTE Eotvos Lorand University",
- "socialType": "twitter",
- "handle": "Istvan_A_Seres",
- "attestation": null
- },
- {
- "id": 1009,
- "date": "2020-05-08 08:12:03",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1010,
- "date": "2020-05-08 08:14:10",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1011,
- "date": "2020-05-08 08:18:24",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1012,
- "date": "2020-05-08 08:21:01",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1013,
- "date": "2020-05-08 08:26:48",
- "name": "vlct0r",
- "company": "myTornadoContribution",
- "socialType": "github",
- "handle": "vlct0rs-github-acct",
- "attestation": null
- },
- {
- "id": 1014,
- "date": "2020-05-08 08:29:12",
- "name": "vlct0r",
- "company": "myTornadoContribution",
- "socialType": "github",
- "handle": "vlct0rs-github-acct",
- "attestation": "https://twitter.com/victorpiper/status/1258675385115557889"
- },
- {
- "id": 1015,
- "date": "2020-05-08 08:31:16",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1016,
- "date": "2020-05-08 08:35:25",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1017,
- "date": "2020-05-08 08:39:06",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1018,
- "date": "2020-05-08 08:44:49",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1019,
- "date": "2020-05-08 08:49:01",
- "name": "Rikard Hjort",
- "company": "KWasm",
- "socialType": "twitter",
- "handle": "rikardhjort",
- "attestation": "https://twitter.com/rikardhjort/status/1258697311942782976"
- },
- {
- "id": 1020,
- "date": "2020-05-08 08:51:41",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1021,
- "date": "2020-05-08 09:07:04",
- "name": "feux07",
- "company": null,
- "socialType": "twitter",
- "handle": "feux07",
- "attestation": "https://twitter.com/feux07/status/1258684973281935361"
- },
- {
- "id": 1022,
- "date": "2020-05-08 09:58:56",
- "name": "Mero",
- "company": null,
- "socialType": "twitter",
- "handle": "omanoui",
- "attestation": null
- },
- {
- "id": 1023,
- "date": "2020-05-08 10:19:03",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1024,
- "date": "2020-05-08 10:44:27",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1025,
- "date": "2020-05-08 10:46:54",
- "name": "Barnabas Debreczeni",
- "company": "MrCoin",
- "socialType": "twitter",
- "handle": "keo",
- "attestation": "https://twitter.com/keo/status/1258737034358857728"
- },
- {
- "id": 1026,
- "date": "2020-05-08 11:56:22",
- "name": "psswrd12345",
- "company": "",
- "socialType": "github",
- "handle": "psswrd12345",
- "attestation": null
- },
- {
- "id": 1027,
- "date": "2020-05-08 11:57:51",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1028,
- "date": "2020-05-08 11:59:20",
- "name": "Roman Semenov ",
- "company": "Tornado Cash",
- "socialType": "twitter",
- "handle": "semenov_roman_",
- "attestation": "https://twitter.com/semenov_roman_/status/1258728255420497926"
- },
- {
- "id": 1029,
- "date": "2020-05-08 12:09:36",
- "name": "JustisMental",
- "company": "Tornado cash",
- "socialType": "twitter",
- "handle": "JustisMental",
- "attestation": "https://twitter.com/JustisMental/status/1258730912067588096"
- },
- {
- "id": 1030,
- "date": "2020-05-08 12:15:29",
- "name": "dabye",
- "company": null,
- "socialType": "twitter",
- "handle": "dabye3",
- "attestation": "https://twitter.com/dabye3/status/1258732297794265089"
- },
- {
- "id": 1031,
- "date": "2020-05-08 12:23:35",
- "name": " Alexander Seleznev",
- "company": "Basic Block Radio",
- "socialType": "twitter",
- "handle": "basicblockradio",
- "attestation": null
- },
- {
- "id": 1032,
- "date": "2020-05-08 12:25:56",
- "name": " Alexander Seleznev",
- "company": "Basic Block Radio",
- "socialType": "twitter",
- "handle": "basicblockradio",
- "attestation": null
- },
- {
- "id": 1033,
- "date": "2020-05-08 12:29:01",
- "name": " Alexander Seleznev",
- "company": "Basic Block Radio",
- "socialType": "twitter",
- "handle": "basicblockradio",
- "attestation": null
- },
- {
- "id": 1034,
- "date": "2020-05-08 13:04:02",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1035,
- "date": "2020-05-08 13:11:56",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1036,
- "date": "2020-05-08 13:16:30",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1037,
- "date": "2020-05-08 13:19:31",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1038,
- "date": "2020-05-08 13:30:53",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1039,
- "date": "2020-05-08 13:32:45",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1040,
- "date": "2020-05-08 13:36:44",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1041,
- "date": "2020-05-08 13:54:44",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1042,
- "date": "2020-05-08 14:02:59",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1043,
- "date": "2020-05-08 14:25:45",
- "name": "corydickson",
- "company": "ETHRegistry",
- "socialType": "github",
- "handle": "corydickson",
- "attestation": null
- },
- {
- "id": 1044,
- "date": "2020-05-08 14:39:31",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1045,
- "date": "2020-05-08 14:41:42",
- "name": "CryptRillionaire",
- "company": "Life",
- "socialType": "twitter",
- "handle": "CryptRillionair",
- "attestation": "https://twitter.com/CryptRillionair/status/1258769149439938560"
- },
- {
- "id": 1046,
- "date": "2020-05-08 14:55:23",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1047,
- "date": "2020-05-08 15:11:52",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1048,
- "date": "2020-05-08 15:31:37",
- "name": "Jenna Zenk",
- "company": null,
- "socialType": "twitter",
- "handle": "jennaszenk",
- "attestation": "https://twitter.com/jennaszenk/status/1258792822943232004"
- },
- {
- "id": 1049,
- "date": "2020-05-08 15:53:48",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1050,
- "date": "2020-05-08 15:56:08",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1051,
- "date": "2020-05-08 16:10:05",
- "name": "frank19542",
- "company": "Tornado Cash 1049",
- "socialType": "github",
- "handle": "zyfrank",
- "attestation": null
- },
- {
- "id": 1052,
- "date": "2020-05-08 16:19:07",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1053,
- "date": "2020-05-08 17:35:29",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1054,
- "date": "2020-05-08 18:15:37",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1055,
- "date": "2020-05-08 18:19:44",
- "name": "Lukas Schor",
- "company": "Gnosis",
- "socialType": "twitter",
- "handle": "SchorLukas",
- "attestation": "https://twitter.com/SchorLukas/status/1258825287699177473"
- },
- {
- "id": 1056,
- "date": "2020-05-08 18:21:18",
- "name": "psybull",
- "company": null,
- "socialType": "github",
- "handle": "psybull",
- "attestation": "https://twitter.com/psybull/status/1258824387454660608"
- },
- {
- "id": 1057,
- "date": "2020-05-08 18:36:48",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1058,
- "date": "2020-05-08 18:43:49",
- "name": "Justin Drake",
- "company": null,
- "socialType": "twitter",
- "handle": "drakefjustin",
- "attestation": null
- },
- {
- "id": 1059,
- "date": "2020-05-08 18:47:27",
- "name": "Nick Barry",
- "company": "TokenTunnel",
- "socialType": "github",
- "handle": "ItsNickBarry",
- "attestation": null
- },
- {
- "id": 1060,
- "date": "2020-05-08 18:56:27",
- "name": "jefflau",
- "company": "ENS",
- "socialType": "twitter",
- "handle": "_jefflau",
- "attestation": "https://twitter.com/_jefflau/status/1258833585580077056"
- },
- {
- "id": 1061,
- "date": "2020-05-08 19:57:04",
- "name": "calvbore",
- "company": null,
- "socialType": "github",
- "handle": "calvbore",
- "attestation": null
+ "attestation": "https://twitter.com/defiopfi/status/1258663403821969409",
+ "followersCount": 5817
},
{
"id": 1062,
- "date": "2020-05-08 20:58:28",
"name": "Thomas Bertani ",
"company": null,
- "socialType": "twitter",
"handle": "ThomasBertani",
- "attestation": "https://twitter.com/ThomasBertani/status/1258863946645241858"
- },
- {
- "id": 1063,
- "date": "2020-05-08 21:16:10",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1064,
- "date": "2020-05-08 21:20:33",
- "name": "Franco Victorio",
- "company": null,
"socialType": "twitter",
- "handle": "tqbfjotld2",
- "attestation": null
+ "attestation": "https://twitter.com/ThomasBertani/status/1258863946645241858",
+ "followersCount": 5160
},
{
- "id": 1065,
- "date": "2020-05-08 21:27:44",
- "name": "Emiliano Vernini",
- "company": null,
+ "id": 168,
+ "name": "gabrielShapir0",
+ "company": "LeXpunK",
+ "handle": "lex_node",
"socialType": "twitter",
- "handle": "EmilianoVernini",
- "attestation": "https://twitter.com/EmilianoVernini/status/1258871369485467650"
+ "attestation": "https://twitter.com/lex_node/status/1256102964822896640",
+ "followersCount": 5129
},
{
- "id": 1066,
- "date": "2020-05-08 21:38:39",
- "name": "wimel",
- "company": "ColmenaLabsSVQ",
+ "id": 451,
+ "name": "BitcoinLouieeth",
+ "company": null,
+ "handle": "BitcoinLouie",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/BitcoinLouie/status/1256429098060017664",
+ "followersCount": 4904
+ },
+ {
+ "id": 275,
+ "name": "kumavis",
+ "company": "MetaMask",
+ "handle": "kumavis",
"socialType": "github",
- "handle": "wimel",
- "attestation": null
+ "attestation": "https://twitter.com/kumavis_/status/1256224103100547078",
+ "followersCount": 4769
},
{
- "id": 1067,
- "date": "2020-05-08 21:41:36",
- "name": "Phil Ngo",
- "company": "SphinxTech",
+ "id": 350,
+ "name": "Chadwick Strange",
+ "company": "SKALE Network",
+ "handle": "ChadwickStrange",
"socialType": "twitter",
- "handle": "phil__knows",
- "attestation": "https://twitter.com/phil__knows/status/1258875086293159937"
+ "attestation": "https://twitter.com/ChadwickStrange/status/1256275817182695426",
+ "followersCount": 4696
},
{
- "id": 1068,
- "date": "2020-05-08 22:01:59",
- "name": "admin",
- "company": "DelegaNetworks",
+ "id": 166,
+ "name": "Eva Beylin",
+ "company": null,
+ "handle": "evabeylin",
"socialType": "twitter",
- "handle": "DelegaNetworks",
- "attestation": "https://twitter.com/DelegaNetworks/status/1258880913410347009"
+ "attestation": "https://twitter.com/evabeylin/status/1256100609431760896",
+ "followersCount": 4660
},
{
- "id": 1069,
- "date": "2020-05-08 22:29:17",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1070,
- "date": "2020-05-08 22:37:31",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1071,
- "date": "2020-05-08 22:40:56",
- "name": "Danny Willems",
- "company": "Random",
+ "id": 200,
+ "name": "Stefan George ",
+ "company": "Gnosis",
+ "handle": "StefanDGeorge",
"socialType": "twitter",
- "handle": "dwillems42",
- "attestation": "https://twitter.com/dwillems42/status/1258889870711443460"
+ "attestation": "https://twitter.com/StefanDGeorge/status/1256149080981602304",
+ "followersCount": 4650
},
{
- "id": 1072,
- "date": "2020-05-09 00:05:24",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1073,
- "date": "2020-05-09 02:27:22",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1074,
- "date": "2020-05-09 03:26:32",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1075,
- "date": "2020-05-09 03:46:26",
- "name": "Auryn ",
- "company": "",
+ "id": 110,
+ "name": "kain",
+ "company": "Synthetix",
+ "handle": "kaiynne",
"socialType": "twitter",
- "handle": "auryn_macmillan",
- "attestation": null
+ "attestation": "https://twitter.com/kaiynne/status/1256038115401064449",
+ "followersCount": 4634
},
{
- "id": 1076,
- "date": "2020-05-09 04:48:58",
- "name": "cornflow",
+ "id": 67,
+ "name": "Dogetoshi",
"company": null,
+ "handle": "Dogetoshi",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/Dogetoshi/status/1256005677312548871",
+ "followersCount": 4621
+ },
+ {
+ "id": 9,
+ "name": "Sergej Kunz",
+ "company": "1inch",
+ "handle": "deacix",
"socialType": "github",
- "handle": "markocorn",
- "attestation": null
+ "attestation": "https://twitter.com/1inchExchange/status/1255962655166169090",
+ "followersCount": 4505
+ },
+ {
+ "id": 381,
+ "name": "Alex dot eth",
+ "company": null,
+ "handle": "AlexanderFisher",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/AlexanderFisher/status/1256307659919241217",
+ "followersCount": 3673
+ },
+ {
+ "id": 172,
+ "name": "Igor Barinov",
+ "company": "xDai",
+ "handle": "barinov",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/barinov/status/1256112491035312128",
+ "followersCount": 3557
+ },
+ {
+ "id": 289,
+ "name": "Simon Polrot",
+ "company": "ADAN",
+ "handle": "simonpolrot",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/simonpolrot/status/1256224345703186433",
+ "followersCount": 3319
+ },
+ {
+ "id": 45,
+ "name": "Pedro Gomes",
+ "company": "WalletConnect",
+ "handle": "pedrouid",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/pedrouid/status/1255994532656799744",
+ "followersCount": 3266
+ },
+ {
+ "id": 55,
+ "name": "DeFi Dude defidudeeth",
+ "company": "DeFi Dude",
+ "handle": "DeFiDude",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/DeFiDude/status/1255999688941154305",
+ "followersCount": 3260
+ },
+ {
+ "id": 1003,
+ "name": "Alexintosh",
+ "company": "PieDAO",
+ "handle": "Alexintosh",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/Alexintosh/status/1258659947052781568",
+ "followersCount": 3114
+ },
+ {
+ "id": 971,
+ "name": "pet3rpan",
+ "company": "metacartel",
+ "handle": "pet3rpan_",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/meta_cartel/status/1258636258777206784",
+ "followersCount": 3102
+ },
+ {
+ "id": 120,
+ "name": " G ",
+ "company": "Degen Senpai",
+ "handle": "DegenSpartan",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/DegenSpartan/status/1256044508023713792",
+ "followersCount": 2990
+ },
+ {
+ "id": 801,
+ "name": "Ben DiFrancesco",
+ "company": null,
+ "handle": "apbendi",
+ "socialType": "github",
+ "attestation": "https://twitter.com/BenDiFrancesco/status/1257690693750882314",
+ "followersCount": 2959
+ },
+ {
+ "id": 956,
+ "name": "Josh Ellithorpe",
+ "company": null,
+ "handle": "zquestz",
+ "socialType": "github",
+ "attestation": "https://twitter.com/zquestz/status/1258599574689603584",
+ "followersCount": 2759
+ },
+ {
+ "id": 365,
+ "name": "trent",
+ "company": "ETHGlobal",
+ "handle": "trent_vanepps",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/trent_vanepps/status/1256295097584541702",
+ "followersCount": 2737
+ },
+ {
+ "id": 153,
+ "name": "Terence Tsao",
+ "company": "prysmatic labs",
+ "handle": "terencechain",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/terencechain/status/1256072771924226048",
+ "followersCount": 2458
+ },
+ {
+ "id": 489,
+ "name": "HostFat",
+ "company": null,
+ "handle": "HostFat",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/HostFat/status/1256524089067474945",
+ "followersCount": 2427
+ },
+ {
+ "id": 12,
+ "name": "Kieran Daniels",
+ "company": "kierankyle ",
+ "handle": "kierankyle",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/kierankyle/status/1255968613380444160",
+ "followersCount": 2404
+ },
+ {
+ "id": 1048,
+ "name": "Jenna Zenk",
+ "company": null,
+ "handle": "jennaszenk",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/jennaszenk/status/1258792822943232004",
+ "followersCount": 2366
+ },
+ {
+ "id": 48,
+ "name": "ligi",
+ "company": "WallETH",
+ "handle": "ligi",
+ "socialType": "github",
+ "attestation": "https://twitter.com/mr_ligi/status/1255996579787558913",
+ "followersCount": 2271
+ },
+ {
+ "id": 267,
+ "name": "erusheth",
+ "company": null,
+ "handle": "yasinaktimur",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/yasinaktimur/status/1256208682070802432",
+ "followersCount": 2253
+ },
+ {
+ "id": 585,
+ "name": "William M Peaster",
+ "company": "DeFi Arts Intelligencer",
+ "handle": "WPeaster",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/WPeaster/status/1257812334321512448",
+ "followersCount": 2226
+ },
+ {
+ "id": 1006,
+ "name": "Benjamin Lupton",
+ "company": "Bevry",
+ "handle": "balupton",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/balupton/status/1258662308848398338",
+ "followersCount": 2172
},
{
"id": 1077,
- "date": "2020-05-09 05:59:38",
"name": "Edmund Edgar",
"company": "Realitio",
- "socialType": "twitter",
"handle": "edmundedgar",
- "attestation": "https://twitter.com/edmundedgar/status/1259001291285557249"
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/edmundedgar/status/1259001291285557249",
+ "followersCount": 2126
},
{
- "id": 1078,
- "date": "2020-05-09 06:10:42",
- "name": "Moonman",
- "company": "10grans dot cash",
+ "id": 71,
+ "name": "DanNolan",
+ "company": "ChainShot",
+ "handle": "BeingDanNolan",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/BeingDanNolan/status/1256007414224162816",
+ "followersCount": 1865
+ },
+ {
+ "id": 765,
+ "name": "Derek Silva",
+ "company": null,
+ "handle": "dereksilva",
"socialType": "github",
- "handle": "SaulMoonves",
- "attestation": null
+ "attestation": "https://twitter.com/dereksilva/status/1257443192070381574",
+ "followersCount": 1721
},
{
- "id": 1079,
- "date": "2020-05-09 06:12:56",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1080,
- "date": "2020-05-09 06:27:53",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1081,
- "date": "2020-05-09 07:36:48",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1082,
- "date": "2020-05-09 10:39:43",
- "name": "Kevin Wildenradt",
- "company": "",
+ "id": 280,
+ "name": "Daniel Bar ",
+ "company": "Project",
+ "handle": "danieltbar",
"socialType": "twitter",
- "handle": "KevinWildenradt",
- "attestation": "https://twitter.com/KevinWildenradt/status/1259070789166313472"
+ "attestation": "https://twitter.com/danieltbar/status/1256219337163243523",
+ "followersCount": 1663
},
{
- "id": 1083,
- "date": "2020-05-09 10:58:53",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1084,
- "date": "2020-05-09 11:03:06",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1085,
- "date": "2020-05-09 11:32:41",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1086,
- "date": "2020-05-09 12:18:25",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1087,
- "date": "2020-05-09 14:00:22",
- "name": "Chris Engel",
- "company": "dethlifycom",
+ "id": 95,
+ "name": "Jason Somensatto",
+ "company": "0x",
+ "handle": "jasonsomensatto",
"socialType": "twitter",
- "handle": "chrsengel",
- "attestation": "https://twitter.com/chrsengel/status/1259121082470146049"
+ "attestation": "https://twitter.com/jasonsomensatto/status/1256019590347358215",
+ "followersCount": 1629
},
{
- "id": 1088,
- "date": "2020-05-09 14:47:45",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1089,
- "date": "2020-05-09 15:04:08",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1090,
- "date": "2020-05-09 15:55:24",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1091,
- "date": "2020-05-09 17:34:55",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1092,
- "date": "2020-05-09 17:43:10",
- "name": "michael1011",
- "company": null,
- "socialType": "github",
- "handle": "michael1011",
- "attestation": null
- },
- {
- "id": 1093,
- "date": "2020-05-09 20:10:56",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1094,
- "date": "2020-05-09 21:07:15",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1095,
- "date": "2020-05-10 06:22:49",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1096,
- "date": "2020-05-10 07:07:24",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1097,
- "date": "2020-05-10 07:56:37",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1098,
- "date": "2020-05-10 07:59:13",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1099,
- "date": "2020-05-10 08:23:37",
- "name": "Betatester",
- "company": "",
- "socialType": "github",
- "handle": "ethereumkev",
- "attestation": null
- },
- {
- "id": 1100,
- "date": "2020-05-10 08:28:17",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1101,
- "date": "2020-05-10 08:30:31",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1102,
- "date": "2020-05-10 08:41:20",
- "name": null,
- "company": null,
- "socialType": "github",
- "handle": "ethereumkev",
- "attestation": null
- },
- {
- "id": 1103,
- "date": "2020-05-10 08:44:09",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1104,
- "date": "2020-05-10 11:07:10",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1105,
- "date": "2020-05-10 11:22:48",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1106,
- "date": "2020-05-10 12:08:19",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
- },
- {
- "id": 1107,
- "date": "2020-05-10 12:38:40",
- "name": "Lion dappLion",
+ "id": 211,
+ "name": "Jimmy Ragosa",
"company": null,
+ "handle": "JimmyRagosa",
"socialType": "twitter",
- "handle": "dapplion",
- "attestation": "https://twitter.com/dapplion/status/1259469050385764353"
- },
- {
- "id": 1108,
- "date": "2020-05-10 13:12:22",
- "name": "rockfridrich",
- "company": null,
- "socialType": "twitter",
- "handle": "rockfridrich",
- "attestation": "https://twitter.com/rockfridrich/status/1259471445530488832"
- },
- {
- "id": 1109,
- "date": "2020-05-10 14:28:10",
- "name": "Alexey Pertsev",
- "company": "Tornadocash",
- "socialType": "twitter",
- "handle": "_p4lex",
- "attestation": "https://twitter.com/_p4lex/status/1259490524827979776"
- },
- {
- "id": 1110,
- "date": "2020-05-10 16:52:24",
- "name": null,
- "company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
+ "attestation": "https://twitter.com/JimmyRagosa/status/1256158597672849408",
+ "followersCount": 1493
},
{
"id": 1111,
- "date": "2020-05-10 17:06:12",
"name": "Roman Storm",
"company": "Tornado cash",
- "socialType": "twitter",
"handle": "rstormsf",
- "attestation": "https://twitter.com/rstormsf/status/1259547632977895424"
- },
- {
- "id": 1112,
- "date": "2020-05-10 18:22:03",
- "name": "Pavel",
- "company": null,
"socialType": "twitter",
- "handle": "pavel9119",
- "attestation": "https://twitter.com/pavel9119/status/1259549429268447234"
+ "attestation": "https://twitter.com/rstormsf/status/1259547632977895424",
+ "followersCount": 1449
},
{
- "id": 1113,
- "date": "2020-05-10 18:25:30",
- "name": null,
+ "id": 10,
+ "name": "Anton Bukov",
+ "company": "1inch",
+ "handle": "k06a",
+ "socialType": "github",
+ "attestation": "https://twitter.com/k06a/status/1255963728161406989",
+ "followersCount": 1413
+ },
+ {
+ "id": 70,
+ "name": "Brantly Millegan",
+ "company": "ENS",
+ "handle": "BrantlyMillegan",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/BrantlyMillegan/status/1256007059503370241",
+ "followersCount": 1410
+ },
+ {
+ "id": 26,
+ "name": "betatestereth",
"company": null,
- "socialType": "anonymous",
- "handle": null,
- "attestation": null
+ "handle": "kevingaspar",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/kevingaspar/status/1255971452689567747",
+ "followersCount": 1400
+ },
+ {
+ "id": 1000,
+ "name": "Kevin",
+ "company": "ENSPortal",
+ "handle": "ethereumkev",
+ "socialType": "github",
+ "attestation": "https://twitter.com/kevingaspar/status/1258656870585307137",
+ "followersCount": 1400
+ },
+ {
+ "id": 895,
+ "name": "TylerSmitheth",
+ "company": null,
+ "handle": "R_Tyler_Smith",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/R_Tyler_Smith/status/1258519854073569280",
+ "followersCount": 1364
+ },
+ {
+ "id": 788,
+ "name": " Anett anetteth ",
+ "company": "EMSP",
+ "handle": "AnettRolikova",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/AnettRolikova/status/1257590615342276609",
+ "followersCount": 1333
+ },
+ {
+ "id": 197,
+ "name": "Juan Blanco",
+ "company": "Nethereum",
+ "handle": "juanfranblanco",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/juanfranblanco/status/1256157386240294913",
+ "followersCount": 1305
+ },
+ {
+ "id": 367,
+ "name": "Justin Leroux",
+ "company": "GridPlus",
+ "handle": "0xMidnight",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/0xMidnight/status/1256294211911135232",
+ "followersCount": 1293
+ },
+ {
+ "id": 395,
+ "name": "ALEXANDER",
+ "company": "ETH Memes",
+ "handle": "0x_____________",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/0x_____________/status/1256322190712045569",
+ "followersCount": 1291
+ },
+ {
+ "id": 54,
+ "name": "The Officious BokkyPooBah",
+ "company": "Optino options on ETHERC20 pairs",
+ "handle": "BokkyPooBah",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/BokkyPooBah/status/1255999454307483649",
+ "followersCount": 1280
+ },
+ {
+ "id": 43,
+ "name": "Gun Sal Lo",
+ "company": "ConsenSys Diligence",
+ "handle": "GNSPS",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/GNSPS/status/1255992815055708163",
+ "followersCount": 1274
+ },
+ {
+ "id": 32,
+ "name": "Wilbo Waggins",
+ "company": "DeversiFi",
+ "handle": "will_harborne",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/will_harborne/status/1255982682569347074",
+ "followersCount": 1236
+ },
+ {
+ "id": 928,
+ "name": "Sebastian Aldasoro",
+ "company": null,
+ "handle": "Saldasoro",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/Saldasoro/status/1258558412683718659",
+ "followersCount": 1183
+ },
+ {
+ "id": 720,
+ "name": "Dennison Bertram",
+ "company": "DAPPHERO",
+ "handle": "DennisonBertram",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/DennisonBertram/status/1257319569275772940",
+ "followersCount": 1148
+ },
+ {
+ "id": 156,
+ "name": "Miguel Cervera ",
+ "company": null,
+ "handle": "MiguelCervera",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/MiguelCervera/status/1256075291199299584",
+ "followersCount": 1142
+ },
+ {
+ "id": 113,
+ "name": "SNX Professor",
+ "company": "Twitter Shitposter",
+ "handle": "nocturnalsheet",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/nocturnalsheet/status/1256057140751425537",
+ "followersCount": 1093
+ },
+ {
+ "id": 665,
+ "name": "Airon",
+ "company": "Ubiq",
+ "handle": "Crypt0ptimus",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/Crypt0ptimus/status/1257175831824044033",
+ "followersCount": 1083
+ },
+ {
+ "id": 689,
+ "name": "Friederike Ernst",
+ "company": null,
+ "handle": "tw_tter",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/tw_tter/status/1257244192490901506",
+ "followersCount": 1080
+ },
+ {
+ "id": 939,
+ "name": "Marius Kjrstad",
+ "company": null,
+ "handle": "MKjrstad",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/MKjrstad/status/1258567456295174146",
+ "followersCount": 1073
+ },
+ {
+ "id": 963,
+ "name": "kaichen",
+ "company": null,
+ "handle": "kaichen",
+ "socialType": "github",
+ "attestation": "https://twitter.com/_kaichen/status/1258609998415814657",
+ "followersCount": 1068
+ },
+ {
+ "id": 1021,
+ "name": "feux07",
+ "company": null,
+ "handle": "feux07",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/feux07/status/1258684973281935361",
+ "followersCount": 1062
+ },
+ {
+ "id": 778,
+ "name": "Jay Zhou",
+ "company": "Loopring zkRollup",
+ "handle": "jfromsep",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/jfromsep/status/1257484261319270400",
+ "followersCount": 1038
+ },
+ {
+ "id": 1060,
+ "name": "jefflau",
+ "company": "ENS",
+ "handle": "_jefflau",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/_jefflau/status/1258833585580077056",
+ "followersCount": 1037
+ },
+ {
+ "id": 131,
+ "name": "runetard",
+ "company": null,
+ "handle": "KaiAnsaari",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/KaiAnsaari/status/1256057491080663040",
+ "followersCount": 1023
+ },
+ {
+ "id": 11,
+ "name": "Kobi Gurkan",
+ "company": null,
+ "handle": "kobigurk",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/kobigurk/status/1255963784763650050",
+ "followersCount": 1018
+ },
+ {
+ "id": 568,
+ "name": "Victor928",
+ "company": "AlphaWallet and TokenScript",
+ "handle": "Victor928",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/Victor928/status/1256758188994637826",
+ "followersCount": 968
+ },
+ {
+ "id": 850,
+ "name": "Dexter Valkyrie",
+ "company": null,
+ "handle": "Dexter_Valkyrie",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/Dexter_Valkyrie/status/1258026145032933376",
+ "followersCount": 932
},
{
"id": 1114,
- "date": "2020-05-10 18:35:53",
"name": "Konstantin Lomashuk",
"company": null,
- "socialType": "twitter",
"handle": "Lomashuk",
- "attestation": "https://twitter.com/Lomashuk/status/1259572276997087234"
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/Lomashuk/status/1259572276997087234",
+ "followersCount": 862
+ },
+ {
+ "id": 634,
+ "name": "Walid Mujahid ",
+ "company": null,
+ "handle": "walidmujahid",
+ "socialType": "github",
+ "attestation": "https://twitter.com/walidmujahid1/status/1257114485921320961",
+ "followersCount": 846
+ },
+ {
+ "id": 484,
+ "name": "Rosco Kalis",
+ "company": null,
+ "handle": "RoscoKalis",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/RoscoKalis/status/1256519405871169537",
+ "followersCount": 772
+ },
+ {
+ "id": 79,
+ "name": "Martin",
+ "company": null,
+ "handle": "martint",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/martint/status/1256012658387619840",
+ "followersCount": 764
+ },
+ {
+ "id": 84,
+ "name": "brianmcmichaeleth",
+ "company": "Ethereum Columbus",
+ "handle": "brianmcmichael",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/brianmcmichael/status/1256012991809695749",
+ "followersCount": 687
+ },
+ {
+ "id": 135,
+ "name": "scoopy trooples",
+ "company": "defi shitposter",
+ "handle": "scupytrooples",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/scupytrooples/status/1256070588151377923",
+ "followersCount": 656
+ },
+ {
+ "id": 203,
+ "name": "adria0",
+ "company": null,
+ "handle": "adria0",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/adria0/status/1256152307789705218",
+ "followersCount": 643
+ },
+ {
+ "id": 61,
+ "name": "Cristian Espinoza ",
+ "company": "BUIDL Honduras",
+ "handle": "crisgarner",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/crisgarner/status/1256002271571296261",
+ "followersCount": 609
+ },
+ {
+ "id": 904,
+ "name": " Troy Murray",
+ "company": "snglsDAO",
+ "handle": "Danny_Desert",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/Danny_Desert/status/1258524667502931969",
+ "followersCount": 599
+ },
+ {
+ "id": 270,
+ "name": "Vaibhav Chellani",
+ "company": null,
+ "handle": "vaibhavchellani",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/vaibhavchellani/status/1256211137579806722",
+ "followersCount": 578
+ },
+ {
+ "id": 894,
+ "name": "Matthew Finestone 3bodyeth",
+ "company": "loopring",
+ "handle": "finestonematt",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/finestonematt/status/1258520679692947456",
+ "followersCount": 569
+ },
+ {
+ "id": 63,
+ "name": "Franco Zeoli ",
+ "company": "Nomic Labs",
+ "handle": "zfran",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/zfran/status/1256004398569881600",
+ "followersCount": 558
+ },
+ {
+ "id": 220,
+ "name": "wslyvh",
+ "company": null,
+ "handle": "wslyvh",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/wslyvh/status/1256170931908681732",
+ "followersCount": 529
+ },
+ {
+ "id": 268,
+ "name": "Mick de Graaf ",
+ "company": "PieDAO",
+ "handle": "MickdeG010",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/MickdeG010/status/1256210288732450817",
+ "followersCount": 527
+ },
+ {
+ "id": 185,
+ "name": "Moe ",
+ "company": "Bitaccess",
+ "handle": "moeadham",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/moeadham/status/1256135942190088192",
+ "followersCount": 514
+ },
+ {
+ "id": 345,
+ "name": "Jitendra Chittoda",
+ "company": "Genesis Consulting ",
+ "handle": "JChittoda",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/JChittoda/status/1256272073846128652",
+ "followersCount": 507
+ },
+ {
+ "id": 221,
+ "name": "Chris Wessels",
+ "company": null,
+ "handle": "undefinedza",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/undefinedza/status/1256178448030146560",
+ "followersCount": 489
+ },
+ {
+ "id": 970,
+ "name": "Mekyle Naidoo",
+ "company": "MIH Ventures",
+ "handle": "MekyleLogen",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/MekyleLogen/status/1258634908706041858",
+ "followersCount": 461
+ },
+ {
+ "id": 1025,
+ "name": "Barnabas Debreczeni",
+ "company": "MrCoin",
+ "handle": "keo",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/keo/status/1258737034358857728",
+ "followersCount": 450
+ },
+ {
+ "id": 1108,
+ "name": "rockfridrich",
+ "company": null,
+ "handle": "rockfridrich",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/rockfridrich/status/1259471445530488832",
+ "followersCount": 447
+ },
+ {
+ "id": 138,
+ "name": "Martin Krung",
+ "company": null,
+ "handle": "martinkrung",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/martinkrung/status/1256061061624729600",
+ "followersCount": 439
+ },
+ {
+ "id": 861,
+ "name": "BackroadDave",
+ "company": "GeoCoin Ubiq",
+ "handle": "BackroadDave",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/BackroadDave/status/1258179654696878082",
+ "followersCount": 438
+ },
+ {
+ "id": 321,
+ "name": "Mouran Antoine",
+ "company": "Blockchain Student Association EPFL",
+ "handle": "Seigneur774",
+ "socialType": "github",
+ "attestation": "https://twitter.com/Seigneur774/status/1256249091853553664",
+ "followersCount": 435
+ },
+ {
+ "id": 307,
+ "name": "Leon Erichsen",
+ "company": "RadicalxChange",
+ "handle": "leonerichsen",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/leonerichsen/status/1256235741719465986",
+ "followersCount": 420
+ },
+ {
+ "id": 747,
+ "name": "Bianca Trov",
+ "company": null,
+ "handle": "biancasama",
+ "socialType": "github",
+ "attestation": "https://twitter.com/bianca_troveaux/status/1257376044987932675",
+ "followersCount": 411
+ },
+ {
+ "id": 658,
+ "name": "Solomon",
+ "company": null,
+ "handle": "Sol68635937",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/Sol68635937/status/1257161710986645504",
+ "followersCount": 408
+ },
+ {
+ "id": 914,
+ "name": "Leon Berghoff",
+ "company": null,
+ "handle": "LeonBerghoff",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/LeonBerghoff/status/1258530289023725568",
+ "followersCount": 387
+ },
+ {
+ "id": 1071,
+ "name": "Danny Willems",
+ "company": "Random",
+ "handle": "dwillems42",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/dwillems42/status/1258889870711443460",
+ "followersCount": 380
+ },
+ {
+ "id": 705,
+ "name": "emanuelcoen",
+ "company": "Cryptotesters",
+ "handle": "litocoen",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/litocoen/status/1257272410090254340",
+ "followersCount": 376
+ },
+ {
+ "id": 291,
+ "name": "Chase Wright",
+ "company": null,
+ "handle": "mysticryuujin",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/mysticryuujin/status/1256224561907077120",
+ "followersCount": 373
+ },
+ {
+ "id": 301,
+ "name": "Dan Bedford",
+ "company": null,
+ "handle": "danbedford",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/danbedford/status/1256230207318523913",
+ "followersCount": 370
+ },
+ {
+ "id": 528,
+ "name": "alvs",
+ "company": null,
+ "handle": "alexvinyas",
+ "socialType": "github",
+ "attestation": "https://twitter.com/VinyasAlex/status/1256874607300222976",
+ "followersCount": 370
+ },
+ {
+ "id": 739,
+ "name": "Jose Vicente",
+ "company": "dexFreight QuillaLabs",
+ "handle": "bellinas90",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/bellinas90/status/1257355795680944129",
+ "followersCount": 368
+ },
+ {
+ "id": 643,
+ "name": "Ali Atiia",
+ "company": null,
+ "handle": "aliatiia_",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/aliatiia_/status/1257131721948114945",
+ "followersCount": 367
+ },
+ {
+ "id": 837,
+ "name": "Hugo Sanchez",
+ "company": "Bradbvry",
+ "handle": "SchezHugo",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/SchezHugo/status/1257957152267866112",
+ "followersCount": 359
+ },
+ {
+ "id": 515,
+ "name": "Christian Lanz ",
+ "company": null,
+ "handle": "rekt0x",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/rekt0x/status/1256576299008700416",
+ "followersCount": 352
+ },
+ {
+ "id": 846,
+ "name": "Unnawut Leepaisalsuwanna",
+ "company": null,
+ "handle": "unnawut",
+ "socialType": "github",
+ "attestation": "https://twitter.com/unnawut/status/1258006853386027009",
+ "followersCount": 351
+ },
+ {
+ "id": 183,
+ "name": "vdo1138",
+ "company": null,
+ "handle": "vdo",
+ "socialType": "github",
+ "attestation": "https://twitter.com/vdo/status/1256182623027843075",
+ "followersCount": 340
+ },
+ {
+ "id": 575,
+ "name": "Bryan Stitt",
+ "company": null,
+ "handle": "WyseNynja",
+ "socialType": "github",
+ "attestation": "https://twitter.com/StittsHappening/status/1256775387960315904",
+ "followersCount": 332
+ },
+ {
+ "id": 338,
+ "name": "ChainShot",
+ "company": "ChainShot",
+ "handle": "TeamChainShot",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/TeamChainShot/status/1256262514494582785",
+ "followersCount": 331
+ },
+ {
+ "id": 187,
+ "name": "Roman Semenov",
+ "company": "TornadoCash",
+ "handle": "poma",
+ "socialType": "github",
+ "attestation": "https://twitter.com/semenov_roman_/status/1256139869409198081",
+ "followersCount": 330
+ },
+ {
+ "id": 1028,
+ "name": "Roman Semenov ",
+ "company": "Tornado Cash",
+ "handle": "semenov_roman_",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/semenov_roman_/status/1258728255420497926",
+ "followersCount": 330
+ },
+ {
+ "id": 327,
+ "name": "Tobias Schubotz",
+ "company": null,
+ "handle": "tschubotz",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/tschubotz/status/1256252323892023296",
+ "followersCount": 327
+ },
+ {
+ "id": 114,
+ "name": "Christobrrrr Mooney",
+ "company": null,
+ "handle": "godsflaw",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/godsflaw/status/1256040246292217857",
+ "followersCount": 323
+ },
+ {
+ "id": 663,
+ "name": "Logan Saether",
+ "company": null,
+ "handle": "lsaether",
+ "socialType": "github",
+ "attestation": "https://twitter.com/logansaether/status/1257171010027216896",
+ "followersCount": 321
+ },
+ {
+ "id": 906,
+ "name": "dnktaeth",
+ "company": null,
+ "handle": "dnkta",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/dnkta/status/1258525540169904130",
+ "followersCount": 309
+ },
+ {
+ "id": 865,
+ "name": "JosephC",
+ "company": "",
+ "handle": "josephch",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/josephch/status/1258197906458361856",
+ "followersCount": 301
+ },
+ {
+ "id": 1055,
+ "name": "Lukas Schor",
+ "company": "Gnosis",
+ "handle": "SchorLukas",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/SchorLukas/status/1258825287699177473",
+ "followersCount": 286
+ },
+ {
+ "id": 139,
+ "name": "geoffeth",
+ "company": null,
+ "handle": "glamperd",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/glamperd/status/1256061694922481664",
+ "followersCount": 285
+ },
+ {
+ "id": 127,
+ "name": "kazuaki",
+ "company": "CREAM",
+ "handle": "KazuakiIshiguro",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/KazuakiIshiguro/status/1256052995097124864",
+ "followersCount": 284
+ },
+ {
+ "id": 53,
+ "name": "Not ur dog not ur problem",
+ "company": "GunClear",
+ "handle": "fubuloubu",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/fubuloubu/status/1255998727350824961",
+ "followersCount": 281
+ },
+ {
+ "id": 204,
+ "name": "Greg Jeanmart",
+ "company": "Multis",
+ "handle": "GregJeanmart",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/GregJeanmart/status/1256152969680244742",
+ "followersCount": 279
+ },
+ {
+ "id": 459,
+ "name": "poroboveth",
+ "company": "Upala digital identity",
+ "handle": "porobov_p",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/porobov_p/status/1256473191830020098",
+ "followersCount": 278
+ },
+ {
+ "id": 706,
+ "name": "Felix Machart",
+ "company": null,
+ "handle": "felix_macht",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/felix_macht/status/1257273669409275904",
+ "followersCount": 277
+ },
+ {
+ "id": 176,
+ "name": "Dominik Odermatt",
+ "company": null,
+ "handle": "domiodermatt",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/domiodermatt/status/1256123165002129409",
+ "followersCount": 270
+ },
+ {
+ "id": 893,
+ "name": "GEOMIC",
+ "company": "ManagePlaces",
+ "handle": "georgiomic",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/georgiomic/status/1258518964851761152",
+ "followersCount": 265
+ },
+ {
+ "id": 847,
+ "name": "Leonid Beder",
+ "company": null,
+ "handle": "LeonidBeder",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/LeonidBeder/status/1258012013873238017",
+ "followersCount": 261
+ },
+ {
+ "id": 1019,
+ "name": "Rikard Hjort",
+ "company": "KWasm",
+ "handle": "rikardhjort",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/rikardhjort/status/1258697311942782976",
+ "followersCount": 261
+ },
+ {
+ "id": 1067,
+ "name": "Phil Ngo",
+ "company": "SphinxTech",
+ "handle": "phil__knows",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/phil__knows/status/1258875086293159937",
+ "followersCount": 261
+ },
+ {
+ "id": 163,
+ "name": "Lecky Lao",
+ "company": null,
+ "handle": "leckylao",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/leckylao/status/1256092579931668481",
+ "followersCount": 257
+ },
+ {
+ "id": 363,
+ "name": "Jacob Willemsma",
+ "company": "ETHGlobal",
+ "handle": "jacobwillemsma",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/jacobwillemsma/status/1256291347683819520",
+ "followersCount": 253
+ },
+ {
+ "id": 868,
+ "name": "Nathan Carlson",
+ "company": null,
+ "handle": "nscarlson",
+ "socialType": "github",
+ "attestation": "https://twitter.com/mrnathancarlson/status/1258277792615145472",
+ "followersCount": 251
+ },
+ {
+ "id": 100,
+ "name": "Spencer Graham ",
+ "company": "saveDAI",
+ "handle": "spengrah",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/spengrah/status/1256024340950405122",
+ "followersCount": 241
+ },
+ {
+ "id": 866,
+ "name": "Decentralized J40",
+ "company": "Ubiq",
+ "handle": "j40j",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/j40j/status/1258257691840897024",
+ "followersCount": 235
+ },
+ {
+ "id": 826,
+ "name": "Harith Kamarul",
+ "company": null,
+ "handle": "harithk17",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/harithk17/status/1258752639086387200",
+ "followersCount": 232
+ },
+ {
+ "id": 656,
+ "name": "Feng Liu",
+ "company": "Blockstech",
+ "handle": "fishkiller",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/fishkiller/status/1257147021145726982",
+ "followersCount": 217
+ },
+ {
+ "id": 82,
+ "name": "Anish Agnihotri",
+ "company": null,
+ "handle": "Anish-Agnihotri",
+ "socialType": "github",
+ "attestation": "https://twitter.com/_anishagnihotri/status/1256011832868974592",
+ "followersCount": 215
+ },
+ {
+ "id": 942,
+ "name": "Mickael Salabi",
+ "company": null,
+ "handle": "MickaelSalabi",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/MickaelSalabi/status/1258571190588846083",
+ "followersCount": 215
+ },
+ {
+ "id": 103,
+ "name": "Jason Smythe",
+ "company": "avolabsio",
+ "handle": "JasoonS",
+ "socialType": "github",
+ "attestation": "https://twitter.com/JasoonSmythe/status/1256036623340441601",
+ "followersCount": 214
+ },
+ {
+ "id": 89,
+ "name": "Santiago Gonzlez Toral",
+ "company": "Decentraminds",
+ "handle": "santteegt",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/santteegt/status/1256017796825329666",
+ "followersCount": 211
+ },
+ {
+ "id": 899,
+ "name": "Tendo Pein",
+ "company": "Spedn",
+ "handle": "tendo_pein_sama",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/tendo_pein_sama/status/1258522483201736704",
+ "followersCount": 209
+ },
+ {
+ "id": 149,
+ "name": "joeldcleth",
+ "company": "niftexcom",
+ "handle": "jmahh",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/jmahh/status/1256069152160141312",
+ "followersCount": 200
+ },
+ {
+ "id": 867,
+ "name": "Luis F Escobar Driver",
+ "company": "California Hoax",
+ "handle": "LEscobar-Driver",
+ "socialType": "github",
+ "attestation": "https://twitter.com/BTCbuddah/status/1258276668105322496",
+ "followersCount": 200
+ },
+ {
+ "id": 597,
+ "name": "Typto",
+ "company": "DAOSquare",
+ "handle": "Typto",
+ "socialType": "github",
+ "attestation": "https://twitter.com/Typto_DAOSquare/status/1256836594880983040",
+ "followersCount": 193
+ },
+ {
+ "id": 1109,
+ "name": "Alexey Pertsev",
+ "company": "Tornadocash",
+ "handle": "_p4lex",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/_p4lex/status/1259490524827979776",
+ "followersCount": 193
+ },
+ {
+ "id": 22,
+ "name": "Brian Gu",
+ "company": "EF",
+ "handle": "bgu33",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/bgu33/status/1255970838102319104",
+ "followersCount": 192
+ },
+ {
+ "id": 38,
+ "name": "Kaden",
+ "company": "Trustless Fund",
+ "handle": "KadenZipfel",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/KadenZipfel/status/1255990622164418560",
+ "followersCount": 192
+ },
+ {
+ "id": 286,
+ "name": "Caleb Lau",
+ "company": "Etherscan",
+ "handle": "EnigmaticUnreal",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/EnigmaticUnreal/status/1256222440394559490",
+ "followersCount": 191
+ },
+ {
+ "id": 98,
+ "name": "Haythem Sellami",
+ "company": null,
+ "handle": "HS10010110",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/HS10010110/status/1256023457726332929",
+ "followersCount": 180
+ },
+ {
+ "id": 78,
+ "name": "Igor Yalovoy",
+ "company": null,
+ "handle": "ylv-io",
+ "socialType": "github",
+ "attestation": "https://twitter.com/ylv_io/status/1256010457854418945",
+ "followersCount": 177
+ },
+ {
+ "id": 64,
+ "name": "pedro cruz",
+ "company": null,
+ "handle": "pedrocrvz",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/pedrocrvz/status/1256004349219803142",
+ "followersCount": 176
+ },
+ {
+ "id": 469,
+ "name": "ivankaz",
+ "company": null,
+ "handle": "i_van_kaz",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/i_van_kaz/status/1256496100317581312",
+ "followersCount": 168
+ },
+ {
+ "id": 694,
+ "name": "Apostolos Provatidis",
+ "company": null,
+ "handle": "provatidis",
+ "socialType": "github",
+ "attestation": "https://twitter.com/provatidis/status/1257243833462595584",
+ "followersCount": 164
+ },
+ {
+ "id": 230,
+ "name": "Henri",
+ "company": "LPA",
+ "handle": "HenriLieutaud",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/HenriLieutaud/status/1256180427343216641",
+ "followersCount": 154
+ },
+ {
+ "id": 655,
+ "name": "Joshua DCKicks",
+ "company": null,
+ "handle": "DCKicks1988",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/DCKicks1988/status/1257146288358830081",
+ "followersCount": 153
+ },
+ {
+ "id": 155,
+ "name": "Nicolas Venturo",
+ "company": "OpenZeppelin",
+ "handle": "nventuro",
+ "socialType": "github",
+ "attestation": "https://twitter.com/mrnventuro/status/1256082799364378627",
+ "followersCount": 148
+ },
+ {
+ "id": 244,
+ "name": "Benjamin offchainfr",
+ "company": "offchainfr",
+ "handle": "offchainfr",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/offchainfr/status/1256189442773180417",
+ "followersCount": 138
+ },
+ {
+ "id": 820,
+ "name": "phileth",
+ "company": null,
+ "handle": "Crypt0Phil",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/Crypt0Phil/status/1257866180909510662",
+ "followersCount": 135
+ },
+ {
+ "id": 1087,
+ "name": "Chris Engel",
+ "company": "dethlifycom",
+ "handle": "chrsengel",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/chrsengel/status/1259121082470146049",
+ "followersCount": 134
+ },
+ {
+ "id": 337,
+ "name": "BSA EPFL",
+ "company": "Helping the fongibility of ETH",
+ "handle": "bsa_epfl",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/bsa_epfl/status/1256261905661992964",
+ "followersCount": 129
+ },
+ {
+ "id": 507,
+ "name": "nigeon",
+ "company": null,
+ "handle": "nigeon",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/nigeon/status/1256554454230487040",
+ "followersCount": 126
+ },
+ {
+ "id": 718,
+ "name": "KOWEI TSENG",
+ "company": "Quantum computerCQT",
+ "handle": "kowei1995",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/kowei1995/status/1257311939169902601",
+ "followersCount": 125
+ },
+ {
+ "id": 760,
+ "name": "XyzjynX",
+ "company": null,
+ "handle": "xyzjynx",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/xyzjynx/status/1257418345441382400",
+ "followersCount": 125
+ },
+ {
+ "id": 191,
+ "name": "Mahyen",
+ "company": null,
+ "handle": "cryptomavee",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/cryptomavee/status/1256141534870659072",
+ "followersCount": 123
+ },
+ {
+ "id": 871,
+ "name": "Erik van Rijn",
+ "company": "Ubiq",
+ "handle": "ErikRijn",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/ErikRijn/status/1258302842684801024",
+ "followersCount": 121
+ },
+ {
+ "id": 27,
+ "name": "Rajarshee",
+ "company": "",
+ "handle": "RajarsheeDutta",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/RajarsheeDutta/status/1255974081515536384",
+ "followersCount": 120
+ },
+ {
+ "id": 88,
+ "name": "Neel",
+ "company": null,
+ "handle": "heyneel",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/heyneel/status/1256015155135156224",
+ "followersCount": 120
+ },
+ {
+ "id": 1107,
+ "name": "Lion dappLion",
+ "company": null,
+ "handle": "dapplion",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/dapplion/status/1259469050385764353",
+ "followersCount": 118
+ },
+ {
+ "id": 447,
+ "name": "Fredrik Bixo",
+ "company": "Trustless",
+ "handle": "FredrikBixo",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/FredrikBixo/status/1256421148486766592",
+ "followersCount": 113
+ },
+ {
+ "id": 15,
+ "name": "BGGB",
+ "company": null,
+ "handle": "boston_gamer",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/boston_gamer/status/1256075013947564039",
+ "followersCount": 108
+ },
+ {
+ "id": 75,
+ "name": "r0n1n",
+ "company": "Ethereum Classic",
+ "handle": "gitr0n1n",
+ "socialType": "github",
+ "attestation": "https://twitter.com/gitr0n1n/status/1256009476521390080",
+ "followersCount": 108
+ },
+ {
+ "id": 990,
+ "name": "Pr0toshi",
+ "company": "Keychain",
+ "handle": "pr0toshi",
+ "socialType": "github",
+ "attestation": "https://twitter.com/0xNow/status/1258650907698487296",
+ "followersCount": 107
+ },
+ {
+ "id": 202,
+ "name": "Alex",
+ "company": null,
+ "handle": "ibexalec",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/ibexalec/status/1256160694870958080",
+ "followersCount": 98
+ },
+ {
+ "id": 759,
+ "name": "Dennis Schlegel",
+ "company": null,
+ "handle": "DennisSchlege14",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/DennisSchlege14/status/1257418002225606656",
+ "followersCount": 97
+ },
+ {
+ "id": 47,
+ "name": "Paul Vienhage",
+ "company": "0xProject",
+ "handle": "pvienhage",
+ "socialType": "github",
+ "attestation": "https://twitter.com/pvienhage/status/1255995729484513281",
+ "followersCount": 93
+ },
+ {
+ "id": 288,
+ "name": "Ana Olsson",
+ "company": null,
+ "handle": "AnaJOlsson",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/AnaJOlsson/status/1256223430267088897",
+ "followersCount": 93
+ },
+ {
+ "id": 41,
+ "name": "Nate Gentile",
+ "company": null,
+ "handle": "thenateway",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/thenateway/status/1255992145544019970",
+ "followersCount": 92
+ },
+ {
+ "id": 105,
+ "name": "Michael Bauer triplespeedereth",
+ "company": "tacdappstario",
+ "handle": "TripleSpeeder",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/TripleSpeeder/status/1256030893732495360",
+ "followersCount": 91
+ },
+ {
+ "id": 184,
+ "name": "blaiseeth",
+ "company": "Hello World",
+ "handle": "BlaiseEth",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/BlaiseEth/status/1256137553603899393",
+ "followersCount": 91
+ },
+ {
+ "id": 607,
+ "name": "calumeth",
+ "company": null,
+ "handle": "calumtomeny",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/calumtomeny/status/1256930200836812800",
+ "followersCount": 84
+ },
+ {
+ "id": 1065,
+ "name": "Emiliano Vernini",
+ "company": null,
+ "handle": "EmilianoVernini",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/EmilianoVernini/status/1258871369485467650",
+ "followersCount": 83
+ },
+ {
+ "id": 171,
+ "name": "Denham Preen",
+ "company": "avolabsio",
+ "handle": "DenhamPreen",
+ "socialType": "github",
+ "attestation": "https://twitter.com/DenhamPreen/status/1256118775134420992",
+ "followersCount": 82
+ },
+ {
+ "id": 1068,
+ "name": "admin",
+ "company": "DelegaNetworks",
+ "handle": "DelegaNetworks",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/DelegaNetworks/status/1258880913410347009",
+ "followersCount": 80
+ },
+ {
+ "id": 40,
+ "name": "MePAK",
+ "company": null,
+ "handle": "mepak",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/mepak/status/1255990190415454218",
+ "followersCount": 79
+ },
+ {
+ "id": 960,
+ "name": "checksum0",
+ "company": null,
+ "handle": "notChecksum0",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/notChecksum0/status/1258603123662348289",
+ "followersCount": 79
+ },
+ {
+ "id": 247,
+ "name": " Sonya Dolmatova",
+ "company": "Thorchain ",
+ "handle": "SonyaDolmatova1",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/SonyaDolmatova1/status/1256192747159138304",
+ "followersCount": 78
+ },
+ {
+ "id": 683,
+ "name": "HEXkye",
+ "company": "HEX",
+ "handle": "HEXkye",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/HEXkye/status/1257213906231144449",
+ "followersCount": 77
+ },
+ {
+ "id": 888,
+ "name": "Zachary Thielemann",
+ "company": "Lease on the Block",
+ "handle": "_zachdt",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/_zachdt/status/1258517298106662912",
+ "followersCount": 74
+ },
+ {
+ "id": 310,
+ "name": "Brecht Devos",
+ "company": "Loopring",
+ "handle": "Brechtpd",
+ "socialType": "github",
+ "attestation": "https://twitter.com/Brechtpd/status/1256239848354189315",
+ "followersCount": 72
+ },
+ {
+ "id": 779,
+ "name": "dan m",
+ "company": null,
+ "handle": "0xdanm",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/0xdanm/status/1257492482931204097",
+ "followersCount": 72
+ },
+ {
+ "id": 99,
+ "name": "Cody Burns",
+ "company": "Chipprbots",
+ "handle": "realcodywburns",
+ "socialType": "github",
+ "attestation": "https://twitter.com/BotBridgette/status/1256023071670009856",
+ "followersCount": 70
+ },
+ {
+ "id": 958,
+ "name": "Akethcheta",
+ "company": null,
+ "handle": "akethcheta",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/akethcheta/status/1258600792484769793",
+ "followersCount": 67
+ },
+ {
+ "id": 259,
+ "name": "Gaspard Peduzzi",
+ "company": "",
+ "handle": "GaspardPeduzzi",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/GaspardPeduzzi/status/1256203502814220289",
+ "followersCount": 66
+ },
+ {
+ "id": 1045,
+ "name": "CryptRillionaire",
+ "company": "Life",
+ "handle": "CryptRillionair",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/CryptRillionair/status/1258769149439938560",
+ "followersCount": 62
+ },
+ {
+ "id": 144,
+ "name": "Taras Bobrovytsky",
+ "company": null,
+ "handle": "TarasBob",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/TarasBob/status/1256066677130752000",
+ "followersCount": 61
+ },
+ {
+ "id": 107,
+ "name": "Ryan Ouyang",
+ "company": null,
+ "handle": "RyanOuyang_",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/RyanOuyang_/status/1256033397543178240",
+ "followersCount": 57
+ },
+ {
+ "id": 722,
+ "name": "Token Factory Switzerland",
+ "company": "blockimmo",
+ "handle": "token_factory",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/token_factory/status/1257322426423078916",
+ "followersCount": 56
+ },
+ {
+ "id": 407,
+ "name": "Pretoria Research Lab",
+ "company": "DeFi research PoS infrastructure",
+ "handle": "PretoriaLab",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/PretoriaLab/status/1256333248562487296",
+ "followersCount": 54
+ },
+ {
+ "id": 196,
+ "name": "Alex Manuskin",
+ "company": "ZenGo",
+ "handle": "amanusk_",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/amanusk_/status/1256145087601524736",
+ "followersCount": 52
+ },
+ {
+ "id": 859,
+ "name": "Walkingmage",
+ "company": null,
+ "handle": "Walkingmage",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/Walkingmage/status/1258114232807313411",
+ "followersCount": 52
+ },
+ {
+ "id": 160,
+ "name": "chinadefi",
+ "company": "globaldeficom",
+ "handle": "chinadefi1",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/chinadefi1/status/1256094036034613248",
+ "followersCount": 51
+ },
+ {
+ "id": 873,
+ "name": "Sven Hoek",
+ "company": "Ubiq",
+ "handle": "svenrenhoek",
+ "socialType": "github",
+ "attestation": "https://twitter.com/GKurhl/status/1258308104338526208",
+ "followersCount": 51
+ },
+ {
+ "id": 1056,
+ "name": "psybull",
+ "company": null,
+ "handle": "psybull",
+ "socialType": "github",
+ "attestation": "https://twitter.com/psybull/status/1258824387454660608",
+ "followersCount": 51
+ },
+ {
+ "id": 366,
+ "name": "ishareeth",
+ "company": null,
+ "handle": "ishareushare",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/ishareushare/status/1256293867713953793",
+ "followersCount": 50
+ },
+ {
+ "id": 414,
+ "name": "Luciano",
+ "company": "DeFi LATAM",
+ "handle": "Luciano_vPEPO",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/Luciano_vPEPO/status/1256346240331251715",
+ "followersCount": 50
+ },
+ {
+ "id": 929,
+ "name": "Ryan Garner",
+ "company": null,
+ "handle": "imkharn",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/imkharn/status/1258560610939396096",
+ "followersCount": 50
+ },
+ {
+ "id": 375,
+ "name": "Christopher",
+ "company": null,
+ "handle": "OaktreeInv",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/OaktreeInv/status/1256300016496447489",
+ "followersCount": 49
+ },
+ {
+ "id": 1082,
+ "name": "Kevin Wildenradt",
+ "company": "",
+ "handle": "KevinWildenradt",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/KevinWildenradt/status/1259070789166313472",
+ "followersCount": 49
+ },
+ {
+ "id": 116,
+ "name": "gweicz",
+ "company": "CZSK ETHDeFi community",
+ "handle": "gweicz",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/gweicz/status/1256041021403803649",
+ "followersCount": 45
+ },
+ {
+ "id": 729,
+ "name": "Xavier Maysonnave",
+ "company": "IPFS with TiddlyWiki",
+ "handle": "xmaysonnave",
+ "socialType": "github",
+ "attestation": "https://twitter.com/xmaysonnave/status/1257341904246767616",
+ "followersCount": 45
+ },
+ {
+ "id": 915,
+ "name": "Dareh Winston",
+ "company": null,
+ "handle": "DarehWinston",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/DarehWinston/status/1258530430170443782",
+ "followersCount": 45
+ },
+ {
+ "id": 140,
+ "name": "monetsupplyeth",
+ "company": null,
+ "handle": "MonetSupply",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/MonetSupply/status/1256062313330692097",
+ "followersCount": 44
+ },
+ {
+ "id": 347,
+ "name": "5fiftyseven7",
+ "company": null,
+ "handle": "5fiftyseven7",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/5fiftyseven7/status/1256272651582136320",
+ "followersCount": 43
+ },
+ {
+ "id": 757,
+ "name": "ChristophSiegenthaler",
+ "company": "ethbuilduniswapch",
+ "handle": "ChristophSiegenthaler",
+ "socialType": "github",
+ "attestation": "https://twitter.com/Christoph_Sigi/status/1257415499744456709",
+ "followersCount": 42
+ },
+ {
+ "id": 927,
+ "name": "Leo Gao",
+ "company": null,
+ "handle": "nabla_theta",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/nabla_theta/status/1258548995355377664",
+ "followersCount": 38
+ },
+ {
+ "id": 797,
+ "name": "HuKuTo",
+ "company": null,
+ "handle": "HuKuTo",
+ "socialType": "github",
+ "attestation": "https://twitter.com/ns_raykov/status/1257632746593226753",
+ "followersCount": 36
+ },
+ {
+ "id": 523,
+ "name": "CryptoSovereign",
+ "company": null,
+ "handle": "MatthieuECDSA",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/MatthieuECDSA/status/1256598467092402176",
+ "followersCount": 34
+ },
+ {
+ "id": 629,
+ "name": "superphiz",
+ "company": "",
+ "handle": "superphiz",
+ "socialType": "github",
+ "attestation": "https://twitter.com/superphiz/status/1257107713269645312",
+ "followersCount": 33
+ },
+ {
+ "id": 415,
+ "name": "Willian Mitsuda",
+ "company": null,
+ "handle": "wmitsuda",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/wmitsuda/status/1256346992743190535",
+ "followersCount": 30
+ },
+ {
+ "id": 467,
+ "name": "Ben Smith",
+ "company": null,
+ "handle": "bh2smith",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/bh2smith/status/1256494159734673413",
+ "followersCount": 27
+ },
+ {
+ "id": 1014,
+ "name": "vlct0r",
+ "company": "myTornadoContribution",
+ "handle": "vlct0rs-github-acct",
+ "socialType": "github",
+ "attestation": "https://twitter.com/victorpiper/status/1258675385115557889",
+ "followersCount": 25
+ },
+ {
+ "id": 1112,
+ "name": "Pavel",
+ "company": null,
+ "handle": "pavel9119",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/pavel9119/status/1259549429268447234",
+ "followersCount": 25
+ },
+ {
+ "id": 688,
+ "name": "wschwab",
+ "company": null,
+ "handle": "wschwab",
+ "socialType": "github",
+ "attestation": "https://twitter.com/William94029369/status/1257224925603082240",
+ "followersCount": 22
+ },
+ {
+ "id": 903,
+ "name": "Dick Dickenson",
+ "company": "Big Dick",
+ "handle": "Rafal_2025",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/Rafal_2025/status/1258524141973467137",
+ "followersCount": 22
+ },
+ {
+ "id": 945,
+ "name": "Youssef El Housni",
+ "company": null,
+ "handle": "YoussefElHousn3",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/YoussefElHousn3/status/1258577090754097152",
+ "followersCount": 21
+ },
+ {
+ "id": 604,
+ "name": "Deepcryptodive",
+ "company": null,
+ "handle": "Deepcryptodive",
+ "socialType": "github",
+ "attestation": "https://twitter.com/Deepcryptodive/status/1256877923069505536",
+ "followersCount": 20
+ },
+ {
+ "id": 314,
+ "name": "Doppel Bock",
+ "company": null,
+ "handle": "Doppelbock42",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/Doppelbock42/status/1256241985855254528",
+ "followersCount": 19
+ },
+ {
+ "id": 501,
+ "name": "Vetinaryeth",
+ "company": "",
+ "handle": "vetinary_eth",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/vetinary_eth/status/1256545704136318976",
+ "followersCount": 18
+ },
+ {
+ "id": 188,
+ "name": "POA Mania",
+ "company": "Noloss lottery with daily draws",
+ "handle": "poamania",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/poamania/status/1256140987547750402",
+ "followersCount": 15
+ },
+ {
+ "id": 240,
+ "name": "Tom French",
+ "company": "NoteStream",
+ "handle": "TomAFrench",
+ "socialType": "github",
+ "attestation": "https://twitter.com/TomFrench_eth/status/1256190880362496000",
+ "followersCount": 15
+ },
+ {
+ "id": 206,
+ "name": "momoNosquito",
+ "company": "Ethereum is fun",
+ "handle": "MomoNosquito",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/MomoNosquito/status/1256155701262651393",
+ "followersCount": 14
+ },
+ {
+ "id": 413,
+ "name": "Sh18025729",
+ "company": "ethismoney",
+ "handle": "Sh18025729",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/Sh18025729/status/1256343325445173248",
+ "followersCount": 14
+ },
+ {
+ "id": 953,
+ "name": "Michael McCaffrey",
+ "company": null,
+ "handle": "MichaelMancap",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/MichaelMancap/status/1258597206698807296",
+ "followersCount": 14
+ },
+ {
+ "id": 222,
+ "name": "Danil Kovtonyuk",
+ "company": "TornadoCash",
+ "handle": "dan1kov",
+ "socialType": "github",
+ "attestation": "https://twitter.com/dan1kov/status/1256172167928127490",
+ "followersCount": 13
+ },
+ {
+ "id": 348,
+ "name": "0xSardis",
+ "company": null,
+ "handle": "0Sardis",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/0Sardis/status/1256274066018906114",
+ "followersCount": 13
+ },
+ {
+ "id": 803,
+ "name": "0xdeniz",
+ "company": null,
+ "handle": "0xdeniz",
+ "socialType": "github",
+ "attestation": "https://twitter.com/0xdeniz/status/1257709189922795520",
+ "followersCount": 12
+ },
+ {
+ "id": 969,
+ "name": "Patrik Svensson",
+ "company": "",
+ "handle": "apatriksvensson",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/apatriksvensson/status/1258630666369019904",
+ "followersCount": 12
+ },
+ {
+ "id": 344,
+ "name": "Tufcos",
+ "company": "",
+ "handle": "tufcos1",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/tufcos1/status/1256273236976898053",
+ "followersCount": 11
+ },
+ {
+ "id": 241,
+ "name": "eanthompson",
+ "company": "Tornado Cash",
+ "handle": "ean_thompson",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/ean_thompson/status/1256188018794262532",
+ "followersCount": 10
+ },
+ {
+ "id": 456,
+ "name": "N1mr0d ",
+ "company": "Adventures of N1mr0d",
+ "handle": "N1mr0dWildfire",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/N1mr0dWildfire/status/1256458370321543168",
+ "followersCount": 10
+ },
+ {
+ "id": 231,
+ "name": "Braduc",
+ "company": "",
+ "handle": "Radu64786064",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/Radu64786064/status/1256181356276613122",
+ "followersCount": 9
+ },
+ {
+ "id": 341,
+ "name": "heigoeth",
+ "company": "",
+ "handle": "in_a_hurry",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/in_a_hurry/status/1256267719000948736",
+ "followersCount": 9
+ },
+ {
+ "id": 308,
+ "name": "jrp25",
+ "company": "",
+ "handle": "jrp256",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/jrp256/status/1256236478545477638",
+ "followersCount": 8
+ },
+ {
+ "id": 349,
+ "name": "wwweth",
+ "company": null,
+ "handle": "cnhridol",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/cnhridol/status/1256275080591499264",
+ "followersCount": 6
+ },
+ {
+ "id": 443,
+ "name": "Sourabh raj singh",
+ "company": "",
+ "handle": "Sourabhrajsing1",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/Sourabhrajsing1/status/1256416736238284806",
+ "followersCount": 6
+ },
+ {
+ "id": 877,
+ "name": "Michael Haindl",
+ "company": null,
+ "handle": "MHaindl",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/MHaindl/status/1258401333092200449",
+ "followersCount": 5
+ },
+ {
+ "id": 1029,
+ "name": "JustisMental",
+ "company": "Tornado cash",
+ "handle": "JustisMental",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/JustisMental/status/1258730912067588096",
+ "followersCount": 5
+ },
+ {
+ "id": 505,
+ "name": "Hans Marius",
+ "company": null,
+ "handle": "Hans66346439",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/Hans66346439/status/1256553031207878656",
+ "followersCount": 4
+ },
+ {
+ "id": 818,
+ "name": "Sandeep Chakravartty",
+ "company": "DemoProject",
+ "handle": "scha54",
+ "socialType": "github",
+ "attestation": "https://twitter.com/scha1292/status/1257863358155378688",
+ "followersCount": 3
+ },
+ {
+ "id": 918,
+ "name": "Jake Song",
+ "company": null,
+ "handle": "Jake_Mubok",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/Jake_Mubok/status/1258534176803811328",
+ "followersCount": 2
+ },
+ {
+ "id": 2,
+ "name": "pbot",
+ "company": null,
+ "handle": "PeppersecB",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 3,
+ "name": "Roman Storm",
+ "company": "Tornadocash",
+ "handle": "rstormsf",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 6,
+ "name": "Pertsev Alexey",
+ "company": "Tornadocash",
+ "handle": "pertsev",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 14,
+ "name": "Igor Gulamov",
+ "company": "ZeroPool",
+ "handle": "snjax",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 20,
+ "name": "Arnaud Schenk",
+ "company": "Aztec",
+ "handle": "ArnSch",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 30,
+ "name": "Tyler Durden",
+ "company": "Mayhem",
+ "handle": "ethereumkev",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 33,
+ "name": "jimjim",
+ "company": null,
+ "handle": "JimjimValkema",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 36,
+ "name": "jimjimbutfromrust",
+ "company": "",
+ "handle": "JimjimValkema",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 57,
+ "name": "Validator",
+ "company": "ETH2",
+ "handle": "ethStaker",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 59,
+ "name": "Elies",
+ "company": null,
+ "handle": "elies",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 66,
+ "name": "ethStaker",
+ "company": "BeaconChain",
+ "handle": "ethStaker",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 77,
+ "name": "Eric Chen",
+ "company": "Injective",
+ "handle": "ericchenmelt",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 81,
+ "name": "Arvin Bhangu",
+ "company": "algorithmictrading",
+ "handle": "arvinbhangu",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 91,
+ "name": "Santiago Gonzalez Toral",
+ "company": "Decentraminds",
+ "handle": "santteegt",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 97,
+ "name": "alexangelj",
+ "company": "primitive",
+ "handle": "alexangelj",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 111,
+ "name": "Nadav from Dharma",
+ "company": "Dharma",
+ "handle": "NadavAHollander",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 122,
+ "name": "musaeth",
+ "company": null,
+ "handle": "musatheredguard",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 124,
+ "name": "Sassano",
+ "company": "ETHISMONEY",
+ "handle": "solar_opposites",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 129,
+ "name": "CryptRillionaire",
+ "company": "Life",
+ "handle": "CryptRillionair",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 132,
+ "name": "FrogPow",
+ "company": "FrogPow",
+ "handle": "ethStaker",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 141,
+ "name": "weijieeth",
+ "company": "Semaphore",
+ "handle": "weijiekoh",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 142,
+ "name": "Lev Dubinets",
+ "company": null,
+ "handle": "LevDubinets",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 146,
+ "name": "RickTGeorge BuiltOnEthereumeth",
+ "company": "The Bag of Doom",
+ "handle": "RickTGeorge",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 147,
+ "name": "Moody Salem",
+ "company": null,
+ "handle": "moodysalem",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 148,
+ "name": "kennethngeth",
+ "company": "ef ecosystem support program",
+ "handle": "nkennethk",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 152,
+ "name": "Moises C",
+ "company": null,
+ "handle": "moigottweets",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 158,
+ "name": "Nikhil",
+ "company": null,
+ "handle": "Nikhil1415926",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 170,
+ "name": "Maximilian Roszko",
+ "company": null,
+ "handle": "MaxRoszko",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 190,
+ "name": "Pawel Bylica",
+ "company": "Fizzy",
+ "handle": "chfast",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 195,
+ "name": "Kai Bakker",
+ "company": null,
+ "handle": "KaiBakker",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 199,
+ "name": "Willy",
+ "company": "Kleros Fan",
+ "handle": "wekawork2",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 205,
+ "name": "wh9it",
+ "company": null,
+ "handle": "davidqw",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 207,
+ "name": "Alan Lau",
+ "company": "Ethereum Tornado Cash",
+ "handle": "alau1218",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 213,
+ "name": "Philippe Schommers",
+ "company": "Apyos",
+ "handle": "filoozom",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 214,
+ "name": "d10r",
+ "company": "lab10 collective",
+ "handle": "d10r",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 215,
+ "name": "Jim McDonald",
+ "company": null,
+ "handle": "mcdee",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 224,
+ "name": "Agusx1211",
+ "company": "UniswapEX",
+ "handle": "Agusx1211",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 229,
+ "name": "Tsunami",
+ "company": "Tsunami Wallet",
+ "handle": "tsunamidev",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 238,
+ "name": "Qian Hong",
+ "company": "ceremonyentropy",
+ "handle": "fracting",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 246,
+ "name": "Matthew Campassi",
+ "company": null,
+ "handle": "campassi",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 251,
+ "name": "Jonathan Caras",
+ "company": "Tornado Cash",
+ "handle": "madcapslaugh",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 272,
+ "name": "Erik Bjareholt",
+ "company": null,
+ "handle": "ErikBjare",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 274,
+ "name": "Joshua Pritikin",
+ "company": null,
+ "handle": "jpritikin",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 278,
+ "name": "Patricio Palladino ",
+ "company": "Nomic Labs",
+ "handle": "alcuadrado",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 284,
+ "name": "bitfwd ",
+ "company": "Bitfwd",
+ "handle": "danieltbar",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 290,
+ "name": "Ben Edgington",
+ "company": "PegaSys",
+ "handle": "benjaminion",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 292,
+ "name": "Carl Beekhuizen",
+ "company": "eth2 EF",
+ "handle": "CarlBeek",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 295,
+ "name": "Pumipat",
+ "company": null,
+ "handle": "pumipatw",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 302,
+ "name": "David Roon",
+ "company": "Openlaw",
+ "handle": "adridadou",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 304,
+ "name": "Stan Kladko",
+ "company": "SKALE LABS",
+ "handle": "kladkogex",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 306,
+ "name": "Rafal",
+ "company": null,
+ "handle": "rafal-na",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 312,
+ "name": "Mats",
+ "company": "Dune Analytics",
+ "handle": "mewwts",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 322,
+ "name": "0xNicketh",
+ "company": "ethereumpriceorg",
+ "handle": "0xEther",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 332,
+ "name": "shazow",
+ "company": "Vipnode",
+ "handle": "shazow",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 336,
+ "name": "Jan Hendrik Scheufen",
+ "company": "Aldeia Solutions",
+ "handle": "j-h-scheufen",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 340,
+ "name": "Michael Welnick",
+ "company": "",
+ "handle": "bijeebuss",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 342,
+ "name": "Piotr Misiurek",
+ "company": "zrozumiecbitcoinapl",
+ "handle": "PiotrMisiurek",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 353,
+ "name": "Logan Bek",
+ "company": "DataTransparency Task Force",
+ "handle": "loganbek",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 358,
+ "name": "Yang 2024",
+ "company": "Universal Basic Income",
+ "handle": "mstrcrz",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 359,
+ "name": "FishofIvory",
+ "company": "codeuorg",
+ "handle": "fishofivory",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 360,
+ "name": "FishOfIvory",
+ "company": "codeuorg",
+ "handle": "fishofivory",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 361,
+ "name": "FishofIvory",
+ "company": "codeuorg",
+ "handle": "fishofivory",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 368,
+ "name": "Noel Maersk",
+ "company": null,
+ "handle": "veox",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 369,
+ "name": "Dowland Aiello",
+ "company": "Notedly Media",
+ "handle": "dowlandaiello",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 371,
+ "name": "Nate welch flygoingeth",
+ "company": null,
+ "handle": "natewelch_",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 374,
+ "name": "feds",
+ "company": "cai",
+ "handle": "anfederico",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 376,
+ "name": "Aktion Mutante",
+ "company": "S23",
+ "handle": "mutante",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 377,
+ "name": "Christopher",
+ "company": null,
+ "handle": "OaktreeInv",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 384,
+ "name": "Andre Rossi Korol",
+ "company": "",
+ "handle": "andrekorol",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 386,
+ "name": "BeckersC",
+ "company": null,
+ "handle": "BeckersC93",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 406,
+ "name": "Erik van Rijn",
+ "company": "",
+ "handle": "erikrijn",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 408,
+ "name": "Mcgravier",
+ "company": null,
+ "handle": "mcgravier",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 412,
+ "name": "Duncan",
+ "company": "discordbotts",
+ "handle": "legowerewolf",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 418,
+ "name": "0xsurf",
+ "company": "0xsurf",
+ "handle": "0x-surf",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 420,
+ "name": "ChainLinkGod",
+ "company": "Chainlink",
+ "handle": "ChainLinkGod",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 429,
+ "name": "Drake",
+ "company": null,
+ "handle": "ihatecsv",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 431,
+ "name": "uday",
+ "company": "nothing",
+ "handle": "exelso",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 432,
+ "name": "derrend",
+ "company": "cryptoproofinfo",
+ "handle": "derrend",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 436,
+ "name": "Thore",
+ "company": "RTW",
+ "handle": "ETHorHIL",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 439,
+ "name": "chainlinkmeme",
+ "company": "chainlinkmeme",
+ "handle": "chainlinkmeme",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 442,
+ "name": "Preston Van Loon",
+ "company": "Prysmatic Labs",
+ "handle": "prestonvanloon",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 452,
+ "name": "Mateo",
+ "company": "CanExta",
+ "handle": "Canalytic",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 458,
+ "name": "Broke Satoshi",
+ "company": null,
+ "handle": "BrokeSatoshi",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 461,
+ "name": "Frank Topbottom",
+ "company": null,
+ "handle": "FrankResearcher",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 472,
+ "name": "Leo Cornelius",
+ "company": "Avrio project",
+ "handle": "leocornelius",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 479,
+ "name": "Vihren P",
+ "company": null,
+ "handle": "webs7er",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 481,
+ "name": "Gandalf",
+ "company": "Something something about a ring",
+ "handle": "ignatiusr",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 485,
+ "name": "Toad",
+ "company": "Toad Hall",
+ "handle": "BenBartleby",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 491,
+ "name": "Block Enthusiast",
+ "company": null,
+ "handle": "BlockEnthusiast",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 503,
+ "name": "Jens",
+ "company": "Please Hire Me",
+ "handle": "bucketcapacity",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 521,
+ "name": "Edouard L",
+ "company": null,
+ "handle": "EdouardLvdl",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 530,
+ "name": "SuburbanDad",
+ "company": "",
+ "handle": "SuburbanDad",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 531,
+ "name": "Vincent Cloutier",
+ "company": null,
+ "handle": "cloutier",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 532,
+ "name": "Krisma",
+ "company": "X",
+ "handle": "KRMA_0",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 533,
+ "name": "Nils",
+ "company": "Nyuels",
+ "handle": "Nyuels",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 545,
+ "name": "Meir",
+ "company": "",
+ "handle": "__Meir__",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 549,
+ "name": "juelianshana",
+ "company": null,
+ "handle": "juelianshana",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 551,
+ "name": "Thomas",
+ "company": null,
+ "handle": "T_Nenninger",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 558,
+ "name": "Bruno Caldeireiro",
+ "company": null,
+ "handle": "EpStR0M",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 559,
+ "name": "Bruno Caldeireiro",
+ "company": null,
+ "handle": "EpStR0M",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 570,
+ "name": "EthPay",
+ "company": "Fhjfddfhjytrfc",
+ "handle": "ETHpay",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 579,
+ "name": "appendonly",
+ "company": null,
+ "handle": "appendonly",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 582,
+ "name": "Ian Macalinao",
+ "company": "cvix dot info",
+ "handle": "macalinao",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 598,
+ "name": "Matt",
+ "company": null,
+ "handle": "zinootje",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 606,
+ "name": "matt",
+ "company": null,
+ "handle": "zinootje",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 608,
+ "name": "benoxmo",
+ "company": "mana",
+ "handle": "benoxmo",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 617,
+ "name": "Heiko Fisch",
+ "company": "",
+ "handle": "HeikoFisch",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 630,
+ "name": "danielaustralia1",
+ "company": "noproject",
+ "handle": "danielaustralia1",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 645,
+ "name": "Matthew P Schmidt",
+ "company": "Saving the World through Beauty",
+ "handle": "Smithgift",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 651,
+ "name": "pstehlik",
+ "company": null,
+ "handle": "pstehlik",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 657,
+ "name": "Pierre Marie Riviere",
+ "company": "Visageeth",
+ "handle": "pmriviere",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 661,
+ "name": "Mohamed Hayibor",
+ "company": null,
+ "handle": "mohamedhayibor",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 672,
+ "name": "Jinwoo",
+ "company": "Hashed",
+ "handle": "hashed_jinwoo",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 675,
+ "name": "Lars Feyaerts",
+ "company": "",
+ "handle": "fifalars",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 681,
+ "name": "HEXkye",
+ "company": "HEX",
+ "handle": "HEXkye",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 682,
+ "name": "glgrau",
+ "company": null,
+ "handle": "gugwatchout",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 690,
+ "name": "Arthus",
+ "company": null,
+ "handle": "cryptoarthus",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 696,
+ "name": "Catlos Gonzlez ",
+ "company": "Guesser",
+ "handle": "Carlos_molotov",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 698,
+ "name": "Grme Blackwood",
+ "company": "Argent",
+ "handle": "graemeblackwood",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 711,
+ "name": "Denis Subbotin",
+ "company": null,
+ "handle": "mr-tron",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 712,
+ "name": "Mirko Da Corte",
+ "company": "Etherna",
+ "handle": "tmm360",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 715,
+ "name": "GraemeB",
+ "company": null,
+ "handle": "PmGraeme",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 717,
+ "name": "uvizhe",
+ "company": null,
+ "handle": "uvizhe",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 724,
+ "name": "Nazzareno Massari",
+ "company": null,
+ "handle": "naszam",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 726,
+ "name": "Nazzareno Massari",
+ "company": null,
+ "handle": "naszam",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 727,
+ "name": "gekon",
+ "company": null,
+ "handle": "Gekonn",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 731,
+ "name": "Mwaa Joseph",
+ "company": "",
+ "handle": "mwaa",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 736,
+ "name": "Swaroop Hegde",
+ "company": "BlockVigil",
+ "handle": "SwaroopH",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 737,
+ "name": "PetSte",
+ "company": null,
+ "handle": "PetSte",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 740,
+ "name": "Kyle Bryant",
+ "company": null,
+ "handle": "komodoman",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 746,
+ "name": "Adrian Calvo",
+ "company": null,
+ "handle": "AdrianClv",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 748,
+ "name": "Jan Benes",
+ "company": null,
+ "handle": "benesjan",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 756,
+ "name": "Jeroen",
+ "company": "tornado",
+ "handle": "Yerontour",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 777,
+ "name": "xiaojay",
+ "company": "",
+ "handle": "xiaojay",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 783,
+ "name": "devcorn",
+ "company": "tendermint",
+ "handle": "devcorn",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 784,
+ "name": "jacopo",
+ "company": "ruan",
+ "handle": "RJacopo",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 785,
+ "name": "George Spasov",
+ "company": "Lime",
+ "handle": "Perseverance",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 790,
+ "name": "Micah Zoltu",
+ "company": "Keydonix",
+ "handle": "MicahZoltu",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 792,
+ "name": "notyourkeys",
+ "company": "",
+ "handle": "notyourkeys",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 821,
+ "name": "Kevin Gaspar",
+ "company": "Operation Phoenix",
+ "handle": "ethereumkev",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 822,
+ "name": "Raymond",
+ "company": "Someone Supporting Privacy",
+ "handle": "RaymondDurk",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 825,
+ "name": "Primitive",
+ "company": "Primitive",
+ "handle": "PrimitiveFi",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 828,
+ "name": "gnattishness",
+ "company": null,
+ "handle": "gnattishness",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 829,
+ "name": "Lorenzo Dalvit",
+ "company": null,
+ "handle": "Dalwitter_",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 833,
+ "name": "praneeths",
+ "company": "Consensys",
+ "handle": "bees_neeth",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 834,
+ "name": "Rune",
+ "company": null,
+ "handle": "minskmink87",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 842,
+ "name": "skywinder",
+ "company": null,
+ "handle": "skywinder",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 848,
+ "name": "Jeewaka",
+ "company": "Ubiq",
+ "handle": "jeewaka",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 857,
+ "name": "Craig Fratrik",
+ "company": null,
+ "handle": "fratrik",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 869,
+ "name": "Alex",
+ "company": "",
+ "handle": "cicnos",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 870,
+ "name": "Anon",
+ "company": null,
+ "handle": "AnaJOlsson",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 872,
+ "name": "Koh Wei Jie",
+ "company": "Used cargo run to contribute",
+ "handle": "weijiekoh",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 878,
+ "name": "ethereumnetwork",
+ "company": null,
+ "handle": "EthereumNetw",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 880,
+ "name": "Dennis Ahlqvist",
+ "company": null,
+ "handle": "dennisahlqvist",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 884,
+ "name": "Elena Nadolinski",
+ "company": "Beanstalk",
+ "handle": "leanthebean",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 887,
+ "name": "LucasSharpn",
+ "company": null,
+ "handle": "lucas_sharpn",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 897,
+ "name": "Braden",
+ "company": null,
+ "handle": "jackofalltr8ds",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 902,
+ "name": "Dick Dickenson",
+ "company": "BIG DICK",
+ "handle": "Rafal_2025",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 907,
+ "name": "tcrypt",
+ "company": null,
+ "handle": "tyler-smith",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 908,
+ "name": "Alexintosh PieDAO",
+ "company": "PieDAO",
+ "handle": "Alexintosh",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 912,
+ "name": "Hammad Jutt",
+ "company": null,
+ "handle": "hammadj",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 920,
+ "name": "Mikhail Melnik",
+ "company": null,
+ "handle": "ZumZoom",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 924,
+ "name": "XuTPoBaH",
+ "company": null,
+ "handle": "XuTPoBaH",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 932,
+ "name": "Gavin Andresen",
+ "company": "",
+ "handle": "gavinandresen",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 935,
+ "name": "Cem Ozer",
+ "company": null,
+ "handle": "cemozerr",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 937,
+ "name": "Martin Kppelmann",
+ "company": null,
+ "handle": "koeppelmann",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 946,
+ "name": "Rogerio Schneider",
+ "company": null,
+ "handle": "stockrt",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 957,
+ "name": "Akethcheta",
+ "company": null,
+ "handle": "akethcheta",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 961,
+ "name": "woki GITer of Coins",
+ "company": "gitcoin",
+ "handle": "owocki",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 968,
+ "name": "ksheni",
+ "company": "decentralized protectors",
+ "handle": "ksheni56",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 995,
+ "name": "Christopher",
+ "company": "",
+ "handle": "OaktreeInv",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1004,
+ "name": "feux07",
+ "company": null,
+ "handle": "feux07",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1008,
+ "name": "Istvan Andras Seres",
+ "company": "ELTE Eotvos Lorand University",
+ "handle": "Istvan_A_Seres",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1013,
+ "name": "vlct0r",
+ "company": "myTornadoContribution",
+ "handle": "vlct0rs-github-acct",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1022,
+ "name": "Mero",
+ "company": null,
+ "handle": "omanoui",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1026,
+ "name": "psswrd12345",
+ "company": "",
+ "handle": "psswrd12345",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1030,
+ "name": "dabye",
+ "company": null,
+ "handle": "dabye3",
+ "socialType": "twitter",
+ "attestation": "https://twitter.com/dabye3/status/1258732297794265089",
+ "followersCount": 0
+ },
+ {
+ "id": 1031,
+ "name": " Alexander Seleznev",
+ "company": "Basic Block Radio",
+ "handle": "basicblockradio",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1032,
+ "name": " Alexander Seleznev",
+ "company": "Basic Block Radio",
+ "handle": "basicblockradio",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1033,
+ "name": " Alexander Seleznev",
+ "company": "Basic Block Radio",
+ "handle": "basicblockradio",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1043,
+ "name": "corydickson",
+ "company": "ETHRegistry",
+ "handle": "corydickson",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1051,
+ "name": "frank19542",
+ "company": "Tornado Cash 1049",
+ "handle": "zyfrank",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1058,
+ "name": "Justin Drake",
+ "company": null,
+ "handle": "drakefjustin",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1059,
+ "name": "Nick Barry",
+ "company": "TokenTunnel",
+ "handle": "ItsNickBarry",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1061,
+ "name": "calvbore",
+ "company": null,
+ "handle": "calvbore",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1064,
+ "name": "Franco Victorio",
+ "company": null,
+ "handle": "tqbfjotld2",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1066,
+ "name": "wimel",
+ "company": "ColmenaLabsSVQ",
+ "handle": "wimel",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1075,
+ "name": "Auryn ",
+ "company": "",
+ "handle": "auryn_macmillan",
+ "socialType": "twitter",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1076,
+ "name": "cornflow",
+ "company": null,
+ "handle": "markocorn",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1078,
+ "name": "Moonman",
+ "company": "10grans dot cash",
+ "handle": "SaulMoonves",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1092,
+ "name": "michael1011",
+ "company": null,
+ "handle": "michael1011",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1099,
+ "name": "Betatester",
+ "company": "",
+ "handle": "ethereumkev",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1102,
+ "name": null,
+ "company": null,
+ "handle": "ethereumkev",
+ "socialType": "github",
+ "attestation": null,
+ "followersCount": 0
+ },
+ {
+ "id": 1113,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1110,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1106,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1105,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1104,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1103,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1101,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1100,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1098,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1097,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1096,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1095,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1094,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1093,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1091,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1090,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1089,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1088,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1086,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1085,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1084,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1083,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1081,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1080,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1079,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1074,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1073,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1072,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1070,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1069,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1063,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1057,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1054,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1053,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1052,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1050,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1049,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1047,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1046,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1044,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1042,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1041,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1040,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1039,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1038,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1037,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1036,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1035,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1034,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1027,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1024,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1023,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1020,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1018,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1017,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1016,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1015,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1012,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1011,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1010,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1009,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1007,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1005,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1002,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 999,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 998,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 997,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 996,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 994,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 993,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 992,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 991,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 989,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 988,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 987,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 986,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 985,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 984,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 983,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 982,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 981,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 980,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 979,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 978,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 977,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 976,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 975,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 974,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 972,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 967,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 966,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 965,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 964,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 962,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 959,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 955,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 954,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 952,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 951,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 950,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 949,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 948,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 947,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 944,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 943,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 941,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 940,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 938,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 936,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 934,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 933,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 931,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 926,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 925,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 923,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 922,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 921,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 919,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 917,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 916,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 913,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 911,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 910,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 909,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 905,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 901,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 900,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 898,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 896,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 892,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 891,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 890,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 889,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 885,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 883,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 882,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 881,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 879,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 876,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 875,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 874,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 864,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 863,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 862,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 860,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 858,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 856,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 855,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 854,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 853,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 852,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 851,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 849,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 845,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 844,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 843,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 841,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 840,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 839,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 838,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 836,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 835,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 832,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 831,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 830,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 827,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 824,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 823,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 819,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 817,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 816,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 815,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 814,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 813,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 812,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 811,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 810,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 809,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 808,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 807,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 806,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 805,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 804,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 802,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 800,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 799,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 798,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 796,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 795,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 794,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 793,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 791,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 789,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 787,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 786,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 782,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 781,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 780,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 776,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 775,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 774,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 773,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 772,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 771,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 770,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 769,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 768,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 767,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 766,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 764,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 763,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 762,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 761,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 758,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 755,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 754,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 753,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 752,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 751,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 750,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 749,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 745,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 744,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 743,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 742,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 741,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 735,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 734,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 733,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 732,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 730,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 728,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 725,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 723,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 721,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 719,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 716,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 714,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 713,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 710,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 709,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 708,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 707,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 704,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 703,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 702,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 701,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 700,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 699,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 697,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 695,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 693,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 692,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 691,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 687,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 686,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 685,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 684,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 680,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 679,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 678,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 677,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 676,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 674,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 673,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 671,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 670,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 669,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 668,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 667,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 666,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 664,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 662,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 660,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 659,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 654,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 653,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 652,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 650,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 649,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 648,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 647,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 646,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 644,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 642,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 641,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 640,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 639,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 638,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 637,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 636,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 635,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 633,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 632,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 631,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 628,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 627,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 626,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 625,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 624,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 623,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 622,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 621,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 620,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 619,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 618,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 616,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 615,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 614,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 613,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 612,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 611,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 610,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 609,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 605,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 603,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 602,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 601,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 600,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 599,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 596,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 595,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 594,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 593,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 592,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 591,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 590,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 589,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 588,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 587,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 586,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 584,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 583,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 581,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 580,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 578,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 577,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 576,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 574,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 573,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 572,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 571,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 569,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 567,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 566,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 565,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 564,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 563,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 562,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 561,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 560,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 557,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 556,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 555,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 554,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 553,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 552,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 550,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 548,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 547,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 546,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 544,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 543,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 542,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 541,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 540,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 539,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 538,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 537,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 536,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 535,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 534,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 529,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 526,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 525,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 524,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 522,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 520,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 519,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 518,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 517,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 516,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 514,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 513,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 512,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 511,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 510,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 509,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 508,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 506,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 504,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 502,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 500,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 499,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 498,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 497,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 496,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 495,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 494,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 493,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 492,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 490,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 488,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 487,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 486,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 483,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 482,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 480,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 478,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 477,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 476,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 475,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 474,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 473,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 471,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 470,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 468,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 466,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 465,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 464,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 463,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 462,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 460,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 457,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 455,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 454,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 453,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 450,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 449,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 448,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 446,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 445,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 444,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 441,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 440,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 438,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 437,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 435,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 434,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 433,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 430,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 428,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 427,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 426,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 425,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 424,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 423,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 422,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 421,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 419,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 417,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 416,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 411,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 410,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 409,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 405,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 404,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 403,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 402,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 401,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 400,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 399,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 398,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 397,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 396,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 394,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 393,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 392,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 391,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 390,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 389,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 388,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 387,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 385,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 383,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 382,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 380,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 379,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 378,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 373,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 372,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 370,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 364,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 362,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 357,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 356,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 355,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 354,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 352,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 351,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 346,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 343,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 339,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 335,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 334,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 333,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 331,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 330,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 329,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 328,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 326,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 325,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 324,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 323,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 320,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 319,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 318,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 317,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 316,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 315,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 313,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 311,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 309,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 305,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 303,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 300,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 299,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 298,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 297,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 296,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 294,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 293,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 287,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 285,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 283,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 282,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 281,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 279,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 277,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 276,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 273,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 271,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 269,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 266,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 265,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 264,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 263,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 262,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 261,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 260,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 258,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 257,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 256,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 255,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 254,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 253,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 252,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 250,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 249,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 248,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 245,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 243,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 242,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 239,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 237,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 236,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 235,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 234,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 233,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 232,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 228,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 227,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 226,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 225,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 223,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 219,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 218,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 217,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 216,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 212,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 210,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 209,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 208,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 201,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 198,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 194,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 193,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 192,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 189,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 186,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 182,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 180,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 179,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 178,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 177,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 175,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 174,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 173,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 169,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 167,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 165,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 164,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 162,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 161,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 159,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 157,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 154,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 151,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 145,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 143,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 137,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 136,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 134,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 133,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 130,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 128,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 126,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 125,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 121,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 119,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 118,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 117,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 115,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 112,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 109,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 108,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 106,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 104,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 102,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 101,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 96,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 94,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 93,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 92,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 90,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 87,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 86,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 85,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 83,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 76,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 74,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 73,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 69,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 68,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 65,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 62,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 60,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 58,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 56,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 51,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 49,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 46,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 44,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 42,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 39,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 37,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 35,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 34,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 31,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 29,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 28,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 25,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 23,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 21,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 19,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 18,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 17,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 13,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 8,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 7,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 5,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 4,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
+ },
+ {
+ "id": 1,
+ "name": null,
+ "company": null,
+ "handle": null,
+ "socialType": "anonymous",
+ "attestation": null,
+ "followersCount": null
}
]
\ No newline at end of file