loredata 0.1.0

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 (67) hide show
  1. package/LICENSE +9 -0
  2. package/README.md +119 -0
  3. package/data/breaking-bad/addresses.json +37 -0
  4. package/data/breaking-bad/characters.json +120 -0
  5. package/data/breaking-bad/domains.json +6 -0
  6. package/data/breaking-bad/meta.json +4 -0
  7. package/data/fast-and-furious/addresses.json +28 -0
  8. package/data/fast-and-furious/characters.json +115 -0
  9. package/data/fast-and-furious/domains.json +6 -0
  10. package/data/fast-and-furious/meta.json +4 -0
  11. package/data/friends/addresses.json +34 -0
  12. package/data/friends/characters.json +176 -0
  13. package/data/friends/domains.json +6 -0
  14. package/data/friends/meta.json +1 -0
  15. package/data/game-of-thrones/addresses.json +37 -0
  16. package/data/game-of-thrones/characters.json +270 -0
  17. package/data/game-of-thrones/domains.json +6 -0
  18. package/data/game-of-thrones/meta.json +4 -0
  19. package/data/harry-potter/addresses.json +37 -0
  20. package/data/harry-potter/characters.json +125 -0
  21. package/data/harry-potter/domains.json +6 -0
  22. package/data/harry-potter/meta.json +4 -0
  23. package/data/house-md/addresses.json +32 -0
  24. package/data/house-md/characters.json +213 -0
  25. package/data/house-md/domains.json +6 -0
  26. package/data/house-md/meta.json +1 -0
  27. package/data/lost/addresses.json +31 -0
  28. package/data/lost/characters.json +204 -0
  29. package/data/lost/domains.json +6 -0
  30. package/data/lost/meta.json +1 -0
  31. package/data/matrix/addresses.json +6 -0
  32. package/data/matrix/characters.json +194 -0
  33. package/data/matrix/domains.json +6 -0
  34. package/data/matrix/meta.json +1 -0
  35. package/data/peaky-blinders/addresses.json +26 -0
  36. package/data/peaky-blinders/characters.json +198 -0
  37. package/data/peaky-blinders/domains.json +6 -0
  38. package/data/peaky-blinders/meta.json +1 -0
  39. package/data/sherlock/addresses.json +31 -0
  40. package/data/sherlock/characters.json +184 -0
  41. package/data/sherlock/domains.json +6 -0
  42. package/data/sherlock/meta.json +1 -0
  43. package/data/the-office/addresses.json +30 -0
  44. package/data/the-office/characters.json +244 -0
  45. package/data/the-office/domains.json +6 -0
  46. package/data/the-office/meta.json +4 -0
  47. package/dist/browser.cjs +321 -0
  48. package/dist/browser.cjs.map +1 -0
  49. package/dist/browser.d.cts +11 -0
  50. package/dist/browser.d.ts +11 -0
  51. package/dist/browser.js +288 -0
  52. package/dist/browser.js.map +1 -0
  53. package/dist/cli/cli.cjs +390 -0
  54. package/dist/cli/cli.cjs.map +1 -0
  55. package/dist/cli/cli.d.cts +1 -0
  56. package/dist/cli/cli.d.ts +1 -0
  57. package/dist/cli/cli.js +388 -0
  58. package/dist/cli/cli.js.map +1 -0
  59. package/dist/index.cjs +356 -0
  60. package/dist/index.cjs.map +1 -0
  61. package/dist/index.d.cts +26 -0
  62. package/dist/index.d.ts +26 -0
  63. package/dist/index.js +323 -0
  64. package/dist/index.js.map +1 -0
  65. package/dist/universe-store-DJrm7bP7.d.cts +98 -0
  66. package/dist/universe-store-DJrm7bP7.d.ts +98 -0
  67. package/package.json +77 -0
@@ -0,0 +1,213 @@
1
+ [
2
+ {
3
+ "id": "gregory-house",
4
+ "firstName": "Gregory",
5
+ "lastName": "House",
6
+ "usernames": ["everybody_lies", "vicodin_md", "cane_and_able", "diagnostics_genius", "not_lupus"],
7
+ "profession": "diagnostician",
8
+ "interests": ["medicine", "piano", "motorcycle", "puzzles", "vicodin"],
9
+ "quotes": [
10
+ "Everybody lies.",
11
+ "There's no such thing! Our bodies break down, sometimes when we're 90, sometimes before we're even born, but it always happens and there's never any dignity in it. I don't care if you can walk, see, wipe your own ass. It's always ugly - always! We can live with dignity - we can't die with it.",
12
+ "Reality is almost always wrong.",
13
+ "I said I was an addict, I didn't say I had a problem. I pay my bills, I make my meals. I function.",
14
+ "I take risks; sometimes patients die. But not taking risks causes more patients to die, so I guess my biggest problem is I've been cursed with the ability to do the math.",
15
+ "Treating illnesses is why we became doctors. Treating patients is what makes most doctors miserable.",
16
+ "Almost dying changes nothing. Dying changes everything.",
17
+ "Like I always say, there's no 'I' in 'team.' There is a 'me,' though, if you jumble it up.",
18
+ "Solving puzzles. Saving lives is just collateral damage.",
19
+ "If the wonder's gone when the truth is known, there never was any wonder."
20
+ ],
21
+ "gender": "male"
22
+ },
23
+ {
24
+ "id": "james-wilson",
25
+ "firstName": "James",
26
+ "lastName": "Wilson",
27
+ "usernames": ["best_friend_of_house", "oncology_wilson", "enabler_in_chief", "three_divorces_wilson"],
28
+ "profession": "oncologist",
29
+ "interests": ["oncology", "friendship", "cooking", "relationships"],
30
+ "quotes": [
31
+ "You don't like yourself. But you do admire yourself. It's all you've got so you cling to it. You're so afraid if you change, you'll lose what makes you special. Being miserable doesn't make you better than anybody else, House. It just makes you miserable.",
32
+ "I have no kids, my marriage sucks... I only got two things that work for me: this job and this stupid screwed up friendship, and neither mattered enough for you to give one lousy speech.",
33
+ "You value our friendship more than your ethical responsibilities? Our friendship is an ethical responsibility.",
34
+ "Billionaires buy movie studios to get laid. They buy hospitals to get respect.",
35
+ "Stop being an ass.",
36
+ "No. I was there. You are not just some regular guy who's getting older. You've changed! You're miserable! And you're afraid to face yourself.",
37
+ "You spread misery because you can't feel anything else. You manipulate people because you can't handle any kind of real relationship.",
38
+ "Dying's easy. Living's hard!",
39
+ "Because you're not ordinary, House. You're way out there on the fringe somewhere. I'm your best friend, and half the time I don't understand you. You're alone. Been alone your whole life."
40
+ ],
41
+ "gender": "male"
42
+ },
43
+ {
44
+ "id": "lisa-cuddy",
45
+ "firstName": "Lisa",
46
+ "lastName": "Cuddy",
47
+ "usernames": ["dean_of_medicine", "ppth_dean", "house_wrangler", "cuddy_md"],
48
+ "profession": "Dean of Medicine",
49
+ "interests": ["hospital administration", "medicine", "family", "fundraising"],
50
+ "quotes": [
51
+ "Your reputation won't last if you don't do your job; the clinic is part of your job. I want you to do your job.",
52
+ "I assume those are two separate points.",
53
+ "If you think House deserves to go, if you think I deserve to go, Wilson deserved to go then vote yes. But if you're doing this because you are afraid of losing his money, then he's right, he does own you.",
54
+ "He did his job.",
55
+ "I'm stuck, House. I keep wanting to move forward. I keep wanting to move on, and I can't. I mean, my new house, with my new fiance, and all I can think about is you. I just need to know if you and I can work.",
56
+ "You can't make a competition out of patient care.",
57
+ "An egomaniacal, narcissistic pain in the ass — same as before you left.",
58
+ "You are waking her up so that you could both say goodbye to each other. She would want it."
59
+ ],
60
+ "gender": "female"
61
+ },
62
+ {
63
+ "id": "eric-foreman",
64
+ "firstName": "Eric",
65
+ "lastName": "Foreman",
66
+ "usernames": ["foreman_neurologist", "not_a_car_thief", "dean_foreman", "team_foreman"],
67
+ "profession": "neurologist",
68
+ "interests": ["neurology", "medicine", "ethics", "career advancement"],
69
+ "quotes": [
70
+ "Isn't treating patients why we became doctors?",
71
+ "From what I've read false paternity is more like ten percent.",
72
+ "You have no evidence to support a poisoning diagnosis.",
73
+ "Get this straight. You break the law, you go back to jail. Scam extra Vicodin, back to jail. Flout my authority, make the hospital look bad, back to jail. I own you.",
74
+ "I know how you operate. So when I see symptoms magically show up right when you need them...",
75
+ "Even if House is messed up by Kutner's suicide, wouldn't matter. He already thinks that life is nasty, brutish and long. And misery helps his diagnostic skills.",
76
+ "Every slavemaster thought they were doing the black man a favour.",
77
+ "I think you got her in because of your usual messiah complex. I think you messed with the appointment schedule because of your I-like-to-have-sex complex."
78
+ ],
79
+ "gender": "male"
80
+ },
81
+ {
82
+ "id": "robert-chase",
83
+ "firstName": "Robert",
84
+ "lastName": "Chase",
85
+ "usernames": ["pretty_boy_chase", "aussie_doctor", "not_british", "dr_chase_ppth"],
86
+ "profession": "intensivist",
87
+ "interests": ["surgery", "intensive care", "surfing", "religion"],
88
+ "quotes": [
89
+ "They tend to keep quiet on account of them not having any mouths.",
90
+ "I don't hate him. I loved him until I figured out it hurts a lot less to just not care. You don't expect him to turn up to your football match? No disappointments. You don't expect a call on your birthday, don't expect to see him for months? No disappointments.",
91
+ "How would you feel if I interfered in your personal life? I'd hate it. That's why I cleverly have no personal life.",
92
+ "He likes crazy people. He likes the way they think.",
93
+ "Tired of surfing.",
94
+ "You know how I got interested in medicine? When my mother drank, she couldn't handle me, so she locked me in my father's study.",
95
+ "If people told nothing but the truth, the world would probably burn down overnight.",
96
+ "This is why we left House's team. To avoid this constant flood of pure craziness."
97
+ ],
98
+ "gender": "male"
99
+ },
100
+ {
101
+ "id": "allison-cameron",
102
+ "firstName": "Allison",
103
+ "lastName": "Cameron",
104
+ "usernames": ["dr_cameron_er", "always_caring_cameron", "cameron_immunology", "mercy_and_reason"],
105
+ "profession": "emergency medicine physician",
106
+ "interests": ["medicine", "ethics", "immunology", "human rights"],
107
+ "quotes": [
108
+ "He cured you. You didn't cure him.",
109
+ "Dr. House doesn't like dealing with patients.",
110
+ "Sex could kill you. Do you know what the human body goes through when you have sex? Pupils dilate, arteries constrict, core temperature rises, heart races, blood pressure skyrockets, respiration becomes rapid and shallow, the brain fires bursts of electrical impulses from nowhere to nowhere, and secretions spit out of every gland, and the muscles tense and spasm like you're lifting three times your body weight. It's violent, it's ugly and it's messy, and if God hadn't made it unbelievably fun, the human race would have died out eons ago.",
111
+ "Parents are never as bad as kids think they are.",
112
+ "I hate sports metaphors.",
113
+ "I love Dr. House.",
114
+ "It's why I left House. You got fired.",
115
+ "In ER we like to actually resuscitate dying people, not just let them flop around."
116
+ ],
117
+ "gender": "female"
118
+ },
119
+ {
120
+ "id": "chris-taub",
121
+ "firstName": "Chris",
122
+ "lastName": "Taub",
123
+ "usernames": ["taub_plastics", "nose_job_taub", "dr_taub_ppth", "taub_survivor"],
124
+ "profession": "physician",
125
+ "interests": ["medicine", "plastic surgery", "family", "poker"],
126
+ "quotes": [
127
+ "We treat her like a sixty-year-old Asian man, too?",
128
+ "Sane people don't attempt suicide.",
129
+ "House always has an agenda, just screwing with us isn't...",
130
+ "If anarchy breaks out, I plan to do what my ancestors have done throughout the ages: run.",
131
+ "House always has an agenda.",
132
+ "Save people's lives instead of just their noses.",
133
+ "I'll bring it up at the next world domination subcommittee meeting.",
134
+ "Why me?"
135
+ ],
136
+ "gender": "male"
137
+ },
138
+ {
139
+ "id": "remy-hadley",
140
+ "firstName": "Remy",
141
+ "lastName": "Hadley",
142
+ "usernames": ["thirteen_hadley", "huntingtons_thirteen", "dr_thirteen", "remy_hadley_md"],
143
+ "profession": "internist",
144
+ "interests": ["medicine", "clinical trials", "Huntington's disease", "neurology"],
145
+ "quotes": [
146
+ "No one can describe themselves in ten words. Why would we wanna hear anyone else do it?",
147
+ "You spend your whole life looking for answers, because you think the next answer will change something, maybe make you a little less miserable. And you know that when you run out of questions, you don't just run out of answers, you run out of hope.",
148
+ "I'm not giving up on life. I'm just giving up on you. I finally feel like I have a grip on things. I can handle this. What I can't handle is dragging anyone else down with me.",
149
+ "This is Dr. House. He's too brilliant for introductions.",
150
+ "Drugs are always a mask for something else.",
151
+ "Here I thought I was just into boobs.",
152
+ "Patient has spinal muscular atrophy. It's genetic, incurable. This is not a diagnostic mystery.",
153
+ "We could save this patient but all you care about is getting your answer!"
154
+ ],
155
+ "gender": "female"
156
+ },
157
+ {
158
+ "id": "lawrence-kutner",
159
+ "firstName": "Lawrence",
160
+ "lastName": "Kutner",
161
+ "usernames": ["kutner_md", "foster_kid_kutner", "kutner_diagnostics", "excitable_kutner"],
162
+ "profession": "sports medicine physician",
163
+ "interests": ["medicine", "sports medicine", "pranks", "pop culture"],
164
+ "quotes": [
165
+ "Belonging's overrated. I was adopted by a white family when I was nine. I like being different the view's better from the outside looking in.",
166
+ "Not every teenager is having sex.",
167
+ "But not every teenager is stupid... Wait—",
168
+ "The infection destroyed your liver which released toxins that caused the locked-in syndrome. You were dying of a paper cut.",
169
+ "I treated her based on the symptoms she presented.",
170
+ "Why are you pushing a crash cart?",
171
+ "You slept with Foreman? Sorry, you were busy.",
172
+ "Yeah he'd never do that. Oh wait — he already did last year!"
173
+ ],
174
+ "gender": "male"
175
+ },
176
+ {
177
+ "id": "jessica-adams",
178
+ "firstName": "Jessica",
179
+ "lastName": "Adams",
180
+ "usernames": ["dr_adams_ppth", "formerly_incarcerated_md", "adams_diagnostics", "jail_doc_adams"],
181
+ "profession": "diagnostician",
182
+ "interests": ["medicine", "ethics", "charity work", "volunteering"],
183
+ "quotes": [
184
+ "I checked your file. You didn't have a bad lawyer. You had no lawyer. You took the first deal they offered because you wanted to punish yourself.",
185
+ "So you want to research it? Why? It's the greatest mystery there is. Theory of everything. And completely divorced from humanity.",
186
+ "Some people think it's burning now. Maybe if everybody didn't lie...",
187
+ "There is a free clinic in Trenton.",
188
+ "Sex releases oxytocin. It's the neurochemical basis for bonding.",
189
+ "Was it Santa?",
190
+ "Thad Barton? We only help rich white guys?",
191
+ "I could do $5,000. If you double your clinic hours."
192
+ ],
193
+ "gender": "female"
194
+ },
195
+ {
196
+ "id": "chi-park",
197
+ "firstName": "Chi",
198
+ "lastName": "Park",
199
+ "usernames": ["dr_park_ppth", "punched_the_boss", "park_diagnostics", "dr_chi_park"],
200
+ "profession": "neurologist",
201
+ "interests": ["medicine", "neurology", "family", "self-defense"],
202
+ "quotes": [
203
+ "You do know I punched the last person that pissed me off?",
204
+ "My mom's Filipino, dad's Korean, and my boss grabbed my behind.",
205
+ "I'm sorry. I thought I was here to treat the patients, not entertain you.",
206
+ "No it's not. I've tapped over 30 guys and never wanted to see most of them again. I live next to a Jewish frat.",
207
+ "First patriotism, now loyalty. You hate ice cream, too?",
208
+ "If you were me, what would you do?",
209
+ "Would it hurt to do both?"
210
+ ],
211
+ "gender": "female"
212
+ }
213
+ ]
@@ -0,0 +1,6 @@
1
+ {
2
+ "emailDomains": ["ppth.edu", "princeton-plainsboro.org", "rutgers.edu", "njms.edu", "diagnosticsgenius.net", "ppth.org"],
3
+ "phonePrefixes": ["609", "732", "848"],
4
+ "phoneEasterEggs": [],
5
+ "passwordEasterEggs": ["everybody_lies", "its_never_lupus", "vicodin", "what_would_house_do", "solving_puzzles", "not_your_call", "dead_end_diagnostics", "thirteen_hadley"]
6
+ }
@@ -0,0 +1 @@
1
+ {"id": "house-md", "name": "House M.D."}
@@ -0,0 +1,31 @@
1
+ [
2
+ {
3
+ "city": "The Island"
4
+ },
5
+ {
6
+ "city": "Los Angeles",
7
+ "state": "CA",
8
+ "country": "US"
9
+ },
10
+ {
11
+ "city": "Sydney",
12
+ "country": "AU"
13
+ },
14
+ {
15
+ "city": "Tikrit",
16
+ "country": "IQ"
17
+ },
18
+ {
19
+ "city": "London",
20
+ "country": "GB"
21
+ },
22
+ {
23
+ "city": "Albuquerque",
24
+ "state": "NM",
25
+ "country": "US"
26
+ },
27
+ {
28
+ "city": "Seoul",
29
+ "country": "KR"
30
+ }
31
+ ]
@@ -0,0 +1,204 @@
1
+ [
2
+ {
3
+ "id": "jack-shephard",
4
+ "firstName": "Jack",
5
+ "lastName": "Shephard",
6
+ "usernames": ["live_together_die_alone", "chief_of_surgery", "man_of_science", "oceanic815_doc", "spinal_surgeon"],
7
+ "profession": "spinal surgeon",
8
+ "interests": ["medicine", "leadership", "rock climbing", "reading", "fixing things"],
9
+ "quotes": [
10
+ "We can't do this. Everyman for himself is not going to work. It's time to start organizing. If we can't live together, we're going to die alone.",
11
+ "Three days ago we all died. We should all be able to start over.",
12
+ "I just made a choice. I'd let the fear in, let it take over, let it do its thing, but only for five seconds, that's all I was going to give it.",
13
+ "I don't believe in destiny.",
14
+ "I'm gonna kill you.",
15
+ "You're not John Locke. You disrespect his memory by wearing his face, but you're nothing like him. Turns out he was right about most everything. I just wish I could've told him that while he was still alive."
16
+ ],
17
+ "gender": "male"
18
+ },
19
+ {
20
+ "id": "kate-austen",
21
+ "firstName": "Kate",
22
+ "lastName": "Austen",
23
+ "usernames": ["always_running", "freckles_fugitive", "marshal_bait", "oceanic815_kate", "not_running_now"],
24
+ "profession": "fugitive, former farmer",
25
+ "interests": ["survival", "firearms", "climbing", "running", "fixing engines"],
26
+ "quotes": [
27
+ "Live together, die alone.",
28
+ "Welcome to the wonderful world of not knowing what the hell's going on.",
29
+ "I need to find Claire. I thought, maybe if I could catch up to you, you could help me — and then, maybe if we could find her and bring her back to Aaron then maybe all of this wouldn't have been for nothing.",
30
+ "Since when did shooting kids and blowing up hydrogen bombs become okay?",
31
+ "I saved you a bullet!"
32
+ ],
33
+ "gender": "female"
34
+ },
35
+ {
36
+ "id": "john-locke",
37
+ "firstName": "John",
38
+ "lastName": "Locke",
39
+ "usernames": ["man_of_faith", "dont_tell_me_what_i_cant", "walkabout_john", "box_company_hunter", "the_island_chose_me"],
40
+ "profession": "box company employee, survivalist",
41
+ "interests": ["hunting", "backgammon", "nature", "philosophy", "destiny"],
42
+ "quotes": [
43
+ "Don't tell me what I can't do.",
44
+ "I've looked into the eye of this Island. And what I saw was beautiful.",
45
+ "I'm a man of faith. Do you really think all this is an accident — that we, a group of strangers survived, many of us with just superficial injuries? We were brought here for a purpose, for a reason, all of us.",
46
+ "I believe that I was being tested.",
47
+ "No, I don't think that's true. You're not running now.",
48
+ "Two players. Two sides. One is light... one is dark."
49
+ ],
50
+ "gender": "male"
51
+ },
52
+ {
53
+ "id": "hugo-hurley-reyes",
54
+ "firstName": "Hugo",
55
+ "lastName": "Reyes",
56
+ "usernames": ["hurley_dude", "number_42_hugo", "clucks_lottery_winner", "dharma_chef", "156_million_problems"],
57
+ "profession": "fast food restaurant owner, lottery winner",
58
+ "interests": ["golf", "comic books", "Star Wars", "chicken", "people"],
59
+ "quotes": [
60
+ "Dude, look, I'd never lie.",
61
+ "Our lives suck! Everyone's nerves are stretched to the max! We're lost on an island, running from boars and monsters... freakin' polar bears!",
62
+ "All of us — the Oceanic Six, we lied about what happened after the crash.",
63
+ "You're not a zombie, right?",
64
+ "I can sorta use someone with, like, experience. For a little while. So... will you help me, Ben?",
65
+ "It's kind of true, dude. He's worse than Yoda."
66
+ ],
67
+ "gender": "male"
68
+ },
69
+ {
70
+ "id": "james-sawyer-ford",
71
+ "firstName": "James",
72
+ "lastName": "Ford",
73
+ "usernames": ["sawyer_nicknames", "dharmaville_lafleur", "confidence_man_jim", "redneck_man", "dharma_cowboy"],
74
+ "profession": "con man, DHARMA Initiative security chief",
75
+ "interests": ["reading", "poker", "nicknames", "cons", "whiskey"],
76
+ "quotes": [
77
+ "I'm a complex guy, sweetheart.",
78
+ "Me? I'm in the wild.",
79
+ "Baby, I am tied to a tree in a jungle of mystery. I just got tortured by a damn spinal surgeon and a gen-u-ine I-raqi. Of course, I'm serious.",
80
+ "I became the man I was hunting. Became Sawyer. Don't you feel sorry for me.",
81
+ "I ain't no hero, Mike.",
82
+ "Some of us are meant to be alone."
83
+ ],
84
+ "gender": "male"
85
+ },
86
+ {
87
+ "id": "sayid-jarrah",
88
+ "firstName": "Sayid",
89
+ "lastName": "Jarrah",
90
+ "usernames": ["republican_guard_sayid", "torturer_of_the_island", "nadia_letter", "iraqi_soldier", "communications_officer"],
91
+ "profession": "former Iraqi Republican Guard communications officer",
92
+ "interests": ["electronics", "cooking", "engineering", "chess", "Nadia"],
93
+ "quotes": [
94
+ "My name is Sayid Jarrah, and I am a torturer.",
95
+ "If we tell them what we know, we take away their hope... and hope is a very dangerous thing to lose.",
96
+ "You'll find me in the next life, if not in this one.",
97
+ "You would remember! You would remember how deep! You would remember every shovelful, every moment! You would remember what it felt like to place her body inside. You would remember if you buried the woman you loved!",
98
+ "I've tortured more people than I can remember. I murdered. Wherever I'm going... it can't be very pleasant.",
99
+ "Because it is going to be you, Jack."
100
+ ],
101
+ "gender": "male"
102
+ },
103
+ {
104
+ "id": "charlie-pace",
105
+ "firstName": "Charlie",
106
+ "lastName": "Pace",
107
+ "usernames": ["driveshaft_bass", "bloody_rock_god", "not_pennys_boat_charlie", "gods_pianist", "heroin_hobbit"],
108
+ "profession": "rock musician, bass player of Drive Shaft",
109
+ "interests": ["music", "guitar", "Drive Shaft", "Claire", "Aaron"],
110
+ "quotes": [
111
+ "I'm a bloody rock god!",
112
+ "That's French! The French are coming! I've never been so happy to hear the French!",
113
+ "Guys. Where are we?",
114
+ "You think you're the only person with baggage? You know what I was doing when the plane went down? I was snorting heroin in the toilet.",
115
+ "It wouldn't be an irrational fear of bees if I could just pull myself together, would it?",
116
+ "Charlie! Tell him I said hi!"
117
+ ],
118
+ "gender": "male"
119
+ },
120
+ {
121
+ "id": "desmond-hume",
122
+ "firstName": "Desmond",
123
+ "lastName": "Hume",
124
+ "usernames": ["see_you_in_another_life", "button_pusher_3years", "pennys_constant", "brother_desmond", "failsafe_key_man"],
125
+ "profession": "former Royal Scots soldier, button pusher",
126
+ "interests": ["sailing", "Penny", "running", "philosophy", "Dickens"],
127
+ "quotes": [
128
+ "Good luck, brother. See you in another life, yeah?",
129
+ "We are stuck in a bloody snowglobe! There's no outside world! There's no escape!",
130
+ "I love you, Penny. I've always loved you. I'm so sorry. I love you.",
131
+ "I'll see you in another life, brother.",
132
+ "What's the point in being afraid?",
133
+ "Calling my bloody constant."
134
+ ],
135
+ "gender": "male"
136
+ },
137
+ {
138
+ "id": "sun-hwa-kwon",
139
+ "firstName": "Sun",
140
+ "lastName": "Kwon",
141
+ "usernames": ["paiks_daughter", "sun_speaks_english", "ji_yeon_mama", "oceanic6_sun", "controlling_interest_sun"],
142
+ "profession": "businesswoman, daughter of a Korean industrialist",
143
+ "interests": ["gardening", "languages", "painting", "Ji Yeon", "Jin"],
144
+ "quotes": [
145
+ "My husband is many things. But he is not a liar.",
146
+ "We are in shock, Jack.",
147
+ "You ruined my husband's life. It is because of you we were on that plane. Two people are responsible for his death. You are one of them.",
148
+ "Oceanic paid us our settlement for the crash. It was very significant. This morning, I bought a controlling interest in your company. So you will now respect me.",
149
+ "We can start a new life. We'll go away.",
150
+ "So, Seoul. Is that in the good Korea or the bad Korea? The good one."
151
+ ],
152
+ "gender": "female"
153
+ },
154
+ {
155
+ "id": "jin-soo-kwon",
156
+ "firstName": "Jin",
157
+ "lastName": "Kwon",
158
+ "usernames": ["jin_kwon_fisherman", "paik_enforcer_jin", "dharma_security_jin", "korean_survivor", "sun_husband"],
159
+ "profession": "hotel doorman, Paik Industries enforcer",
160
+ "interests": ["fishing", "family", "cooking", "Sun", "honor"],
161
+ "quotes": [
162
+ "I do this for you, Sun! I do this because your father expects it. I do this because that's what it takes to be married to you!",
163
+ "In a good world... she would hate her father, not me.",
164
+ "Married.",
165
+ "Daniel... No more flash?",
166
+ "Please, translate!"
167
+ ],
168
+ "gender": "male"
169
+ },
170
+ {
171
+ "id": "benjamin-linus",
172
+ "firstName": "Benjamin",
173
+ "lastName": "Linus",
174
+ "usernames": ["henry_gale_ben", "the_good_guys_leader", "i_always_have_a_plan", "otherville_ben", "jacob_was_wrong_ben"],
175
+ "profession": "leader of the Others, former DHARMA Initiative member",
176
+ "interests": ["reading", "power", "manipulation", "the Island", "Dostoevsky"],
177
+ "quotes": [
178
+ "I always have a plan.",
179
+ "We're the good guys, Michael.",
180
+ "God doesn't know how long we've been here, John. He can't see this island any better than the rest of the world can.",
181
+ "Dead is dead. You don't get to come back from that, not even here. So the fact that John Locke is walking around this Island... scares the living hell out of me.",
182
+ "John Locke was a... a believer, he was a man of faith, he was... a much better man than I will ever be. And I'm very sorry I murdered him.",
183
+ "I would be honored."
184
+ ],
185
+ "gender": "male"
186
+ },
187
+ {
188
+ "id": "richard-alpert",
189
+ "firstName": "Richard",
190
+ "lastName": "Alpert",
191
+ "usernames": ["never_ages_richard", "jacobus_emissary", "eyeliner_richard", "advisor_to_the_island", "ab_aeterno_richard"],
192
+ "profession": "adviser to the Others, immortal",
193
+ "interests": ["the Island", "Jacob", "history", "faith", "serving"],
194
+ "quotes": [
195
+ "It points north, John.",
196
+ "You're gonna have to die, John.",
197
+ "I devoted my life — longer than you can possibly imagine — in service of a man who told me that everything was happening for a reason, that he had a plan — a plan that I was a part of — and when the time was right that he'd share it with me. And now that man's gone. So why do I want to die? Because I just found out my entire life had no purpose.",
198
+ "I am in Hell. I know that I am in Hell.",
199
+ "I want my wife back.",
200
+ "I never want to die. I want to live forever."
201
+ ],
202
+ "gender": "male"
203
+ }
204
+ ]
@@ -0,0 +1,6 @@
1
+ {
2
+ "emailDomains": ["dharma-initiative.org", "oceanic-air.com", "hanso-foundation.org", "lostisland.net", "theothers.org", "widmore-corp.com"],
3
+ "phonePrefixes": ["310", "213", "323", "424"],
4
+ "phoneEasterEggs": [],
5
+ "passwordEasterEggs": ["the_numbers", "4_8_15_16_23_42", "oceanic815", "not_pennys_boat", "execute_button", "dharma_namaste", "live_together_die_alone", "man_of_faith", "see_you_in_another_life", "push_the_button"]
6
+ }
@@ -0,0 +1 @@
1
+ {"id": "lost", "name": "Lost"}
@@ -0,0 +1,6 @@
1
+ [
2
+ {"city": "Zion"},
3
+ {"city": "Machine City"},
4
+ {"city": "Sydney", "country": "AU"},
5
+ {"city": "Chicago", "country": "US"}
6
+ ]