forked from joonacode/mintify_nft_marketplace
-
Notifications
You must be signed in to change notification settings - Fork 0
/
fake_data.js
130 lines (130 loc) · 2.65 KB
/
fake_data.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
export const fake_list = [
{
id: 1,
first_name: 'Curt',
last_name: 'Andreazzi',
email: '[email protected]',
gender: 'Genderqueer',
username: 'Nannopterum harrisi',
},
{
id: 2,
first_name: 'Carolyn',
last_name: 'Haskell',
email: '[email protected]',
gender: 'Non-binary',
username: 'Haliaeetus leucoryphus',
},
{
id: 3,
first_name: 'Lise',
last_name: 'Flanner',
email: '[email protected]',
gender: 'Genderfluid',
username: 'Alopochen aegyptiacus',
},
{
id: 4,
first_name: 'Ronni',
last_name: 'Gillise',
email: '[email protected]',
gender: 'Non-binary',
username: 'Columba palumbus',
},
{
id: 5,
first_name: 'Consalve',
last_name: 'Gumm',
email: '[email protected]',
gender: 'Bigender',
username: 'Anathana ellioti',
},
{
id: 6,
first_name: 'James',
last_name: 'Hartropp',
email: '[email protected]',
gender: 'Agender',
username: 'Toxostoma curvirostre',
},
{
id: 7,
first_name: 'Gabbi',
last_name: 'Mandell',
email: '[email protected]',
gender: 'Genderfluid',
username: 'Cercopithecus aethiops',
},
{
id: 8,
first_name: 'Sunshine',
last_name: 'Rizon',
email: '[email protected]',
gender: 'Genderqueer',
username: 'Chlamydosaurus kingii',
},
{
id: 9,
first_name: 'Chickie',
last_name: 'Sansome',
email: '[email protected]',
gender: 'Male',
username: 'Felis concolor',
},
{
id: 10,
first_name: 'Blinni',
last_name: 'Postin',
email: '[email protected]',
gender: 'Bigender',
username: 'Macropus rufogriseus',
},
{
id: 11,
first_name: 'Dee dee',
last_name: 'Makin',
email: '[email protected]',
gender: 'Non-binary',
username: 'Dicrostonyx groenlandicus',
},
{
id: 12,
first_name: 'Broddy',
last_name: 'Klagges',
email: '[email protected]',
gender: 'Bigender',
username: 'Cacatua galerita',
},
{
id: 13,
first_name: 'Jany',
last_name: 'Pietrasik',
email: '[email protected]',
gender: 'Agender',
username: 'Suricata suricatta',
},
{
id: 14,
first_name: 'Bay',
last_name: 'Brimman',
email: '[email protected]',
gender: 'Male',
username: 'Sylvicapra grimma',
},
{
id: 15,
first_name: 'Hermione',
last_name: 'Reedshaw',
email: '[email protected]',
gender: 'Non-binary',
username: 'Macropus rufogriseus',
},
{
id: 16,
first_name: 'Barr',
last_name: 'Heggs',
email: '[email protected]',
gender: 'Male',
username: 'Cacatua tenuirostris',
},
];