loredata 0.3.0 → 0.4.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (48) hide show
  1. package/README.md +97 -59
  2. package/data/avengers/characters.json +304 -177
  3. package/data/better-call-saul/characters.json +267 -155
  4. package/data/big-bang-theory/characters.json +197 -120
  5. package/data/big-bang-theory/meta.json +1 -1
  6. package/data/breaking-bad/characters.json +249 -155
  7. package/data/fast-and-furious/addresses.json +1 -2
  8. package/data/fast-and-furious/characters.json +226 -140
  9. package/data/friends/characters.json +402 -291
  10. package/data/friends/meta.json +1 -1
  11. package/data/game-of-thrones/addresses.json +6 -22
  12. package/data/game-of-thrones/characters.json +507 -314
  13. package/data/guardians-of-the-galaxy/characters.json +225 -123
  14. package/data/harry-potter/addresses.json +6 -11
  15. package/data/harry-potter/characters.json +239 -154
  16. package/data/house-md/characters.json +164 -43
  17. package/data/lost/characters.json +420 -311
  18. package/data/matrix/characters.json +123 -24
  19. package/data/matrix/meta.json +1 -1
  20. package/data/peaky-blinders/characters.json +180 -37
  21. package/data/peaky-blinders/meta.json +1 -1
  22. package/data/prison-break/characters.json +91 -19
  23. package/data/sherlock/characters.json +369 -272
  24. package/data/simpsons/characters.json +205 -41
  25. package/data/sopranos/characters.json +291 -183
  26. package/data/south-park/characters.json +371 -229
  27. package/data/spider-man/characters.json +124 -39
  28. package/data/spider-man/meta.json +6 -6
  29. package/data/star-wars/characters.json +129 -28
  30. package/data/stranger-things/addresses.json +31 -0
  31. package/data/stranger-things/characters.json +226 -0
  32. package/data/stranger-things/meta.json +13 -0
  33. package/data/supernatural/characters.json +96 -19
  34. package/data/supernatural/meta.json +6 -6
  35. package/data/the-crown/addresses.json +27 -0
  36. package/data/the-crown/characters.json +275 -0
  37. package/data/the-crown/meta.json +13 -0
  38. package/data/the-office/characters.json +478 -298
  39. package/data/the-walking-dead/characters.json +93 -21
  40. package/data/the-witcher/addresses.json +22 -0
  41. package/data/the-witcher/characters.json +272 -0
  42. package/data/the-witcher/meta.json +13 -0
  43. package/data/vikings/addresses.json +26 -0
  44. package/data/vikings/characters.json +240 -0
  45. package/data/vikings/meta.json +13 -0
  46. package/data/westworld/characters.json +71 -18
  47. package/data/x-men/characters.json +108 -24
  48. package/package.json +85 -84
@@ -1,292 +1,403 @@
1
1
  [
2
- {
3
- "id": "ross-geller",
4
- "firstName": "Ross",
5
- "lastName": "Geller",
6
- "usernames": [
7
- "we_were_on_a_break",
8
- "divorcemaster_phd",
9
- "cookie_duuude",
10
- "pivot_guy",
11
- "homo_sapiens_are_people"
12
- ],
13
- "profession": "Paleontologist",
14
- "interests": ["dinosaurs", "paleontology", "archaeology", "coffee", "academia", "sci-fi"],
15
- "quotes": [
16
- "WE WERE ON A BREAK!",
17
- "I'm fine!",
18
- "Someone at work ate my sandwich! MY SANDWICH!",
19
- "I'm a paleontologist, and I have to say, evolution is not something for you to buy. Evolution is scientific fact.",
20
- "I hate to lecture you guys but it's kind of disgraceful that a group of well-educated adults, and Joey, can't name all the states.",
21
- "I'm going to be happy this year. I'm going to make myself happy."
22
- ],
23
- "gender": "male",
24
- "address": { "city": "New York", "state": "NY", "country": "US" },
25
- "symbol": "🦕",
26
- "color": "#3b1f0a",
27
- "emailDomains": ["nyu.edu", "natural-history-nyc.org"]
28
- },
29
- {
30
- "id": "rachel-green",
31
- "firstName": "Rachel",
32
- "lastName": "Green",
33
- "usernames": [
34
- "got_off_the_plane",
35
- "who_is_fica",
36
- "steamed_milk_life",
37
- "not_a_library_card",
38
- "green_with_style"
39
- ],
40
- "profession": "Fashion Executive",
41
- "interests": ["fashion", "shopping", "coffee", "relationships", "style", "fitness"],
42
- "quotes": [
43
- "I got off the plane.",
44
- "Who's FICA? Why is he getting all my money?",
45
- "I can't believe I have to walk down the aisle in front of 200 people looking like something you drink when you're nauseous!",
46
- "I wasn't supposed to put beef in the trifle!",
47
- "It's not that common, it doesn't happen to every guy, and it is a big deal!"
48
- ],
49
- "gender": "female",
50
- "address": {
51
- "street": "90 Bedford Street",
52
- "city": "New York",
53
- "state": "NY",
54
- "country": "US"
55
- },
56
- "symbol": "👗",
57
- "color": "#7f1d1d",
58
- "emailDomains": ["ralph-lauren.com", "nyc-fashion.net"]
59
- },
60
- {
61
- "id": "chandler-bing",
62
- "firstName": "Chandler",
63
- "lastName": "Bing",
64
- "usernames": [
65
- "jokes_when_uncomfortable",
66
- "the_nubbin",
67
- "could_i_be_more_sarcastic",
68
- "transponster",
69
- "bing_no_first_name"
70
- ],
71
- "profession": "Statistical Analysis and Data Reconfiguration",
72
- "interests": ["TV", "sarcasm", "foosball", "comedy", "movies", "video games"],
73
- "quotes": [
74
- "I make jokes when I'm uncomfortable.",
75
- "Could I BE wearing any more clothes?",
76
- "The meaning of the box is threefold. One, it gives me the time to think about what I did. Two, it proves how much I care about my friendship with Joey. And three... it hurts!",
77
- "Oh, I know, this must be so hard. 'Oh, no! Two women love me. They're both gorgeous and sexy. My wallet's too small for my fifties, and my diamond shoes are too tight!'",
78
- "When I walk outside naked, people throw garbage at me.",
79
- "I thought this was going to be the most difficult thing I ever had to do. But when I saw you walking down that aisle, I realized how simple it was. I love you."
80
- ],
81
- "gender": "male",
82
- "address": { "city": "New York", "state": "NY", "country": "US" },
83
- "symbol": "😬",
84
- "color": "#4a1942",
85
- "emailDomains": ["nyc-mail.net", "msyb-corp.com"]
86
- },
87
- {
88
- "id": "monica-geller",
89
- "firstName": "Monica",
90
- "lastName": "Geller",
91
- "usernames": [
92
- "big_fat_goalie",
93
- "chef_mode_on",
94
- "eleven_towel_categories",
95
- "competitive_cook",
96
- "seven_erogenous_zones"
97
- ],
98
- "profession": "Chef",
99
- "interests": ["cooking", "cleaning", "competition", "catering", "organizing", "sports"],
100
- "quotes": [
101
- "Welcome to the real world. It sucks. You're gonna love it.",
102
- "Fine! Judge all you want to, but: married a lesbian, left a man at the altar, fell in love with a gay ice dancer, threw a girl's wooden leg in a fire, LIVING IN A BOX!",
103
- "I know of two surefire ways to shut a man up. And one of them is sex.",
104
- "Chandler, you have to tell Joey that you're not in Tulsa.",
105
- "I want a marriage."
106
- ],
107
- "gender": "female",
108
- "address": {
109
- "street": "90 Bedford Street",
110
- "city": "New York",
111
- "state": "NY",
112
- "country": "US"
113
- },
114
- "symbol": "👨‍🍳",
115
- "color": "#312e81",
116
- "emailDomains": ["central-perk.com", "nyc-chefs.net"]
117
- },
118
- {
119
- "id": "joey-tribbiani",
120
- "firstName": "Joey",
121
- "lastName": "Tribbiani",
122
- "usernames": [
123
- "how_you_doin",
124
- "joey_no_share_food",
125
- "drake_ramoray_md",
126
- "baby_kangaroo",
127
- "sandwich_first"
128
- ],
129
- "profession": "Actor",
130
- "interests": [
131
- "food",
132
- "acting",
133
- "women",
134
- "sandwiches",
135
- "Days of Our Lives",
136
- "foosball",
137
- "sports"
138
- ],
139
- "quotes": [
140
- "JOEY DOESN'T SHARE FOOD.",
141
- "No, I had sex in high school.",
142
- "Oh, is this not the good part? Well, if little Joey's dead, then I've got no reason to live.",
143
- "You know, like a cow's opinion. It doesn't matter. It's moo.",
144
- "The Netherlands is this make-believe place where Peter Pan and Tinkerbell come from.",
145
- "I want girls on bread!"
146
- ],
147
- "gender": "male",
148
- "address": { "city": "New York", "state": "NY", "country": "US" },
149
- "symbol": "🍕",
150
- "color": "#059669",
151
- "emailDomains": ["casting-nyc.com", "days-of-our-lives.net"]
152
- },
153
- {
154
- "id": "phoebe-buffay",
155
- "firstName": "Phoebe",
156
- "lastName": "Buffay",
157
- "usernames": [
158
- "smelly_cat_official",
159
- "princess_consuela",
160
- "buried_alive_tombstone",
161
- "not_so_much_evolution",
162
- "stabbed_a_cop"
163
- ],
164
- "profession": "Masseuse / Singer-Songwriter",
165
- "interests": [
166
- "music",
167
- "massage",
168
- "spirituality",
169
- "the paranormal",
170
- "vegetarianism",
171
- "cats",
172
- "knitting"
173
- ],
174
- "quotes": [
175
- "Hello, teeny embryos. I'm Phoebe Buffay. I'm hoping to be your uterus for the next nine months.",
176
- "I don't believe in evolution.",
177
- "I just found a selfless good deed; I went to the park and let a bee sting me.",
178
- "Someday I'll tell you about the time I stabbed a cop. He stabbed me first!",
179
- "My tombstone is going to say 'Phoebe Buffay: Buried Alive.'",
180
- "For 99 cents, I'd eat you."
181
- ],
182
- "gender": "female",
183
- "address": { "city": "New York", "state": "NY", "country": "US" },
184
- "symbol": "🎸",
185
- "color": "#083344",
186
- "emailDomains": ["smelly-cat.net", "nyc-mail.net"]
187
- },
188
- {
189
- "id": "gunther",
190
- "firstName": "Gunther",
191
- "lastName": "",
192
- "usernames": [
193
- "always_staring_at_rachel",
194
- "central_perk_forever",
195
- "ill_take_it_all",
196
- "blonde_barista",
197
- "unrequited_gunther"
198
- ],
199
- "profession": "Barista / Coffee Shop Manager",
200
- "interests": ["Rachel Green", "coffee", "Central Perk", "Swedish culture"],
201
- "quotes": [
202
- "I'll take it all.",
203
- "What is my last name?",
204
- "Flexible hours.",
205
- "Well, I wouldn't call her a star, but she's really good.",
206
- "You don't have to fill these silences."
207
- ],
208
- "gender": "male",
209
- "address": { "city": "New York", "state": "NY", "country": "US" },
210
- "symbol": "",
211
- "color": "#0c4a6e",
212
- "emailDomains": ["central-perk.com", "nyc-barista.net"]
213
- },
214
- {
215
- "id": "janice-litman-goralnik",
216
- "firstName": "Janice",
217
- "lastName": "Litman-Goralnik",
218
- "usernames": [
219
- "oh_my_god_janice",
220
- "the_chandler_magnet",
221
- "janice_is_back",
222
- "never_fully_gone",
223
- "nasal_queen_nyc"
224
- ],
225
- "profession": "Unknown",
226
- "interests": ["Chandler Bing", "shopping", "New York", "surprises"],
227
- "quotes": [
228
- "Oh. My. God.",
229
- "I brought you something. Is it loaded?",
230
- "So, I hear you hate me.",
231
- "A little birdie said something about ripping your arm off and throwing it at me.",
232
- "You got 'hate' from that?"
233
- ],
234
- "gender": "female",
235
- "address": { "city": "New York", "state": "NY", "country": "US" },
236
- "symbol": "😱",
237
- "color": "#1e3a5f",
238
- "emailDomains": ["nyc-mail.net"]
239
- },
240
- {
241
- "id": "richard-burke",
242
- "firstName": "Richard",
243
- "lastName": "Burke",
244
- "usernames": [
245
- "the_mustache_guy",
246
- "dr_burke_ophthalmologist",
247
- "too_old_for_monica",
248
- "eye_doctor_nyc",
249
- "richard_with_mustache"
250
- ],
251
- "profession": "Ophthalmologist",
252
- "interests": ["Monica Geller", "baseball", "ophthalmology", "cigars", "cooking"],
253
- "quotes": [
254
- "My nose was getting lonely.",
255
- "I see you grew your hair long.",
256
- "I love children, I have children. I just don't want to be 70 when our kids go off to college.",
257
- "You go get her, Chandler. And can I give you a piece of advice? If you do get her, don't let her go. Trust me.",
258
- "You're with Chandler, a guy I really like. And if you say he's straight, I'll believe you."
259
- ],
260
- "gender": "male",
261
- "address": { "city": "New York", "state": "NY", "country": "US" },
262
- "symbol": "👨‍⚕️",
263
- "color": "#2563eb",
264
- "emailDomains": ["nyc-ophthalmology.com", "manhattan-md.net"]
265
- },
266
- {
267
- "id": "mike-hannigan",
268
- "firstName": "Mike",
269
- "lastName": "Hannigan",
270
- "usernames": [
271
- "crap_bag_hannigan",
272
- "buffay_hannigan",
273
- "piano_mike",
274
- "phoebe_plus_one",
275
- "mike_not_vtox"
276
- ],
277
- "profession": "Lawyer / Pianist",
278
- "interests": ["piano", "Phoebe Buffay", "ping pong", "law", "crosswords"],
279
- "quotes": [
280
- "My name is Crap Bag.",
281
- "You know, you're right. The capital of Peru is Vtox.",
282
- "Only if you'll be Phoebe Buffay.",
283
- "Do you know what a banana hammock is?",
284
- "It's a speedo!"
285
- ],
286
- "gender": "male",
287
- "address": { "city": "New York", "state": "NY", "country": "US" },
288
- "symbol": "🎹",
289
- "color": "#16a34a",
290
- "emailDomains": ["nyc-bar.org", "nyc-mail.net"]
291
- }
292
- ]
2
+ {
3
+ "id": "ross-geller",
4
+ "firstName": "Ross",
5
+ "lastName": "Geller",
6
+ "usernames": [
7
+ "we_were_on_a_break",
8
+ "divorcemaster_phd",
9
+ "cookie_duuude",
10
+ "pivot_guy",
11
+ "homo_sapiens_are_people"
12
+ ],
13
+ "profession": "Paleontologist",
14
+ "interests": [
15
+ "dinosaurs",
16
+ "fossils",
17
+ "museum exhibits",
18
+ "coffee",
19
+ "science lectures",
20
+ "sci-fi"
21
+ ],
22
+ "quotes": [
23
+ "WE WERE ON A BREAK!",
24
+ "I'm fine!",
25
+ "Someone at work ate my sandwich! MY SANDWICH!",
26
+ "I'm a paleontologist, and I have to say, evolution is not something for you to buy. Evolution is scientific fact.",
27
+ "I hate to lecture you guys but it's kind of disgraceful that a group of well-educated adults, and Joey, can't name all the states.",
28
+ "I'm going to be happy this year. I'm going to make myself happy."
29
+ ],
30
+ "gender": "male",
31
+ "address": {
32
+ "city": "New York",
33
+ "state": "NY",
34
+ "country": "US"
35
+ },
36
+ "symbol": "🦕",
37
+ "color": "#3b1f0a",
38
+ "emailDomains": [
39
+ "nyu.edu",
40
+ "natural-history-nyc.org"
41
+ ]
42
+ },
43
+ {
44
+ "id": "rachel-green",
45
+ "firstName": "Rachel",
46
+ "lastName": "Green",
47
+ "usernames": [
48
+ "got_off_the_plane",
49
+ "who_is_fica",
50
+ "steamed_milk_life",
51
+ "not_a_library_card",
52
+ "ralph_lauren_nyc"
53
+ ],
54
+ "profession": "Fashion Executive",
55
+ "interests": [
56
+ "fashion",
57
+ "shopping",
58
+ "coffee",
59
+ "style",
60
+ "sailing",
61
+ "skiing"
62
+ ],
63
+ "quotes": [
64
+ "I got off the plane.",
65
+ "Who's FICA? Why is he getting all my money?",
66
+ "I can't believe I have to walk down the aisle in front of 200 people looking like something you drink when you're nauseous!",
67
+ "I wasn't supposed to put beef in the trifle!",
68
+ "It's not that common, it doesn't happen to every guy, and it is a big deal!"
69
+ ],
70
+ "gender": "female",
71
+ "address": {
72
+ "street": "90 Bedford Street",
73
+ "city": "New York",
74
+ "state": "NY",
75
+ "country": "US"
76
+ },
77
+ "symbol": "👗",
78
+ "color": "#7f1d1d",
79
+ "emailDomains": [
80
+ "ralph-lauren.com",
81
+ "nyc-fashion.net"
82
+ ]
83
+ },
84
+ {
85
+ "id": "chandler-bing",
86
+ "firstName": "Chandler",
87
+ "lastName": "Bing",
88
+ "usernames": [
89
+ "chanandler_bong",
90
+ "the_nubbin",
91
+ "could_i_be_more_sarcastic",
92
+ "transponster",
93
+ "bing_no_first_name"
94
+ ],
95
+ "profession": "Statistical Analysis and Data Reconfiguration",
96
+ "interests": [
97
+ "TV",
98
+ "foosball",
99
+ "comedy",
100
+ "movies",
101
+ "video games",
102
+ "novelty songs"
103
+ ],
104
+ "quotes": [
105
+ "I make jokes when I'm uncomfortable.",
106
+ "Could I BE wearing any more clothes?",
107
+ "The meaning of the box is threefold. One, it gives me the time to think about what I did. Two, it proves how much I care about my friendship with Joey. And three... it hurts!",
108
+ "Oh, I know, this must be so hard. 'Oh, no! Two women love me. They're both gorgeous and sexy. My wallet's too small for my fifties, and my diamond shoes are too tight!'",
109
+ "When I walk outside naked, people throw garbage at me.",
110
+ "I thought this was going to be the most difficult thing I ever had to do. But when I saw you walking down that aisle, I realized how simple it was. I love you."
111
+ ],
112
+ "gender": "male",
113
+ "address": {
114
+ "city": "New York",
115
+ "state": "NY",
116
+ "country": "US"
117
+ },
118
+ "symbol": "😬",
119
+ "color": "#4a1942",
120
+ "emailDomains": [
121
+ "nyc-mail.net",
122
+ "msyb-corp.com"
123
+ ]
124
+ },
125
+ {
126
+ "id": "monica-geller",
127
+ "firstName": "Monica",
128
+ "lastName": "Geller",
129
+ "usernames": [
130
+ "big_fat_goalie",
131
+ "monica_clean",
132
+ "eleven_towel_categories",
133
+ "welcome_to_the_real_world",
134
+ "seven_erogenous_zones"
135
+ ],
136
+ "profession": "Chef",
137
+ "interests": [
138
+ "French cuisine",
139
+ "cleaning",
140
+ "hosting dinners",
141
+ "organizing",
142
+ "competitive games",
143
+ "football"
144
+ ],
145
+ "quotes": [
146
+ "Welcome to the real world. It sucks. You're gonna love it.",
147
+ "Fine! Judge all you want to, but: married a lesbian, left a man at the altar, fell in love with a gay ice dancer, threw a girl's wooden leg in a fire, LIVING IN A BOX!",
148
+ "I know of two surefire ways to shut a man up. And one of them is sex.",
149
+ "Chandler, you have to tell Joey that you're not in Tulsa.",
150
+ "I want a marriage."
151
+ ],
152
+ "gender": "female",
153
+ "address": {
154
+ "street": "90 Bedford Street",
155
+ "city": "New York",
156
+ "state": "NY",
157
+ "country": "US"
158
+ },
159
+ "symbol": "🍳",
160
+ "color": "#312e81",
161
+ "emailDomains": [
162
+ "central-perk.com",
163
+ "nyc-chefs.net"
164
+ ]
165
+ },
166
+ {
167
+ "id": "joey-tribbiani",
168
+ "firstName": "Joey",
169
+ "lastName": "Tribbiani",
170
+ "usernames": [
171
+ "how_you_doin",
172
+ "joey_no_share_food",
173
+ "drake_ramoray_md",
174
+ "baby_kangaroo",
175
+ "sandwich_first"
176
+ ],
177
+ "profession": "Actor",
178
+ "interests": [
179
+ "food",
180
+ "acting",
181
+ "dating",
182
+ "sandwiches",
183
+ "Days of Our Lives",
184
+ "foosball",
185
+ "sports"
186
+ ],
187
+ "quotes": [
188
+ "JOEY DOESN'T SHARE FOOD.",
189
+ "No, I had sex in high school.",
190
+ "Oh, is this not the good part? Well, if little Joey's dead, then I've got no reason to live.",
191
+ "You know, like a cow's opinion. It doesn't matter. It's moo.",
192
+ "The Netherlands is this make-believe place where Peter Pan and Tinkerbell come from.",
193
+ "I want girls on bread!"
194
+ ],
195
+ "gender": "male",
196
+ "address": {
197
+ "city": "New York",
198
+ "state": "NY",
199
+ "country": "US"
200
+ },
201
+ "symbol": "🍕",
202
+ "color": "#059669",
203
+ "emailDomains": [
204
+ "casting-nyc.com",
205
+ "days-of-our-lives.net"
206
+ ]
207
+ },
208
+ {
209
+ "id": "phoebe-buffay",
210
+ "firstName": "Phoebe",
211
+ "lastName": "Buffay",
212
+ "usernames": [
213
+ "smelly_cat_official",
214
+ "princess_consuela",
215
+ "buried_alive_tombstone",
216
+ "not_so_much_evolution",
217
+ "stabbed_a_cop"
218
+ ],
219
+ "profession": "Masseuse and singer-songwriter",
220
+ "interests": [
221
+ "music",
222
+ "massage",
223
+ "spirituality",
224
+ "the paranormal",
225
+ "vegetarianism",
226
+ "cats",
227
+ "knitting"
228
+ ],
229
+ "quotes": [
230
+ "Hello, teeny embryos. I'm Phoebe Buffay. I'm hoping to be your uterus for the next nine months.",
231
+ "I don't believe in evolution.",
232
+ "I just found a selfless good deed; I went to the park and let a bee sting me.",
233
+ "Someday I'll tell you about the time I stabbed a cop. He stabbed me first!",
234
+ "My tombstone is going to say 'Phoebe Buffay: Buried Alive.'",
235
+ "For 99 cents, I'd eat you."
236
+ ],
237
+ "gender": "female",
238
+ "address": {
239
+ "city": "New York",
240
+ "state": "NY",
241
+ "country": "US"
242
+ },
243
+ "symbol": "🎸",
244
+ "color": "#083344",
245
+ "emailDomains": [
246
+ "smelly-cat.net",
247
+ "nyc-mail.net"
248
+ ]
249
+ },
250
+ {
251
+ "id": "gunther",
252
+ "firstName": "Gunther",
253
+ "lastName": "",
254
+ "usernames": [
255
+ "always_staring_at_rachel",
256
+ "central_perk_forever",
257
+ "ill_take_it_all",
258
+ "mr_central_perk",
259
+ "unrequited_gunther"
260
+ ],
261
+ "profession": "Coffee shop manager",
262
+ "interests": [
263
+ "coffee",
264
+ "Dutch",
265
+ "Rachel Green",
266
+ "opera"
267
+ ],
268
+ "quotes": [
269
+ "I'll take it all.",
270
+ "What is my last name?",
271
+ "Flexible hours.",
272
+ "Well, I wouldn't call her a star, but she's really good.",
273
+ "You don't have to fill these silences."
274
+ ],
275
+ "gender": "male",
276
+ "address": {
277
+ "city": "New York",
278
+ "state": "NY",
279
+ "country": "US"
280
+ },
281
+ "symbol": "☕",
282
+ "color": "#0c4a6e",
283
+ "emailDomains": [
284
+ "central-perk.com",
285
+ "nyc-barista.net"
286
+ ]
287
+ },
288
+ {
289
+ "id": "janice-litman-goralnik",
290
+ "firstName": "Janice",
291
+ "lastName": "Litman-Goralnik",
292
+ "usernames": [
293
+ "oh_my_god_janice",
294
+ "the_chandler_magnet",
295
+ "janice_is_back",
296
+ "machine_like_laughter",
297
+ "day_of_fun"
298
+ ],
299
+ "profession": "Sales representative",
300
+ "interests": [
301
+ "shopping",
302
+ "day trips",
303
+ "Broadway",
304
+ "Chandler Bing"
305
+ ],
306
+ "quotes": [
307
+ "Oh. My. God.",
308
+ "I brought you something. Is it loaded?",
309
+ "So, I hear you hate me.",
310
+ "A little birdie said something about ripping your arm off and throwing it at me.",
311
+ "You got 'hate' from that?"
312
+ ],
313
+ "gender": "female",
314
+ "address": {
315
+ "city": "New York",
316
+ "state": "NY",
317
+ "country": "US"
318
+ },
319
+ "symbol": "😱",
320
+ "color": "#1e3a5f",
321
+ "emailDomains": [
322
+ "nyc-mail.net"
323
+ ]
324
+ },
325
+ {
326
+ "id": "richard-burke",
327
+ "firstName": "Richard",
328
+ "lastName": "Burke",
329
+ "usernames": [
330
+ "tom_selleck_stache",
331
+ "dr_burke",
332
+ "video_message_guy",
333
+ "mustache_and_cigars",
334
+ "monica_old_boyfriend"
335
+ ],
336
+ "profession": "Ophthalmologist",
337
+ "interests": [
338
+ "baseball",
339
+ "cigars",
340
+ "cooking",
341
+ "sailing",
342
+ "Monica Geller"
343
+ ],
344
+ "quotes": [
345
+ "My nose was getting lonely.",
346
+ "I see you grew your hair long.",
347
+ "I love children, I have children. I just don't want to be 70 when our kids go off to college.",
348
+ "You go get her, Chandler. And can I give you a piece of advice? If you do get her, don't let her go. Trust me.",
349
+ "You're with Chandler, a guy I really like. And if you say he's straight, I'll believe you."
350
+ ],
351
+ "gender": "male",
352
+ "address": {
353
+ "city": "New York",
354
+ "state": "NY",
355
+ "country": "US"
356
+ },
357
+ "symbol": "👨‍⚕️",
358
+ "color": "#2563eb",
359
+ "emailDomains": [
360
+ "nyc-ophthalmology.com",
361
+ "manhattan-md.net"
362
+ ]
363
+ },
364
+ {
365
+ "id": "mike-hannigan",
366
+ "firstName": "Mike",
367
+ "lastName": "Hannigan",
368
+ "usernames": [
369
+ "crap_bag_hannigan",
370
+ "buffay_hannigan",
371
+ "piano_mike",
372
+ "phoebe_plus_one",
373
+ "mike_not_vtox"
374
+ ],
375
+ "profession": "Pianist",
376
+ "interests": [
377
+ "piano",
378
+ "ping pong",
379
+ "crosswords",
380
+ "Phoebe Buffay",
381
+ "rats"
382
+ ],
383
+ "quotes": [
384
+ "My name is Crap Bag.",
385
+ "You know, you're right. The capital of Peru is Vtox.",
386
+ "Only if you'll be Phoebe Buffay.",
387
+ "Do you know what a banana hammock is?",
388
+ "It's a speedo!"
389
+ ],
390
+ "gender": "male",
391
+ "address": {
392
+ "city": "New York",
393
+ "state": "NY",
394
+ "country": "US"
395
+ },
396
+ "symbol": "🎹",
397
+ "color": "#16a34a",
398
+ "emailDomains": [
399
+ "nyc-bar.org",
400
+ "nyc-mail.net"
401
+ ]
402
+ }
403
+ ]