loredata 0.1.0 → 0.3.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 (95) hide show
  1. package/README.md +72 -21
  2. package/data/avengers/addresses.json +27 -0
  3. package/data/avengers/characters.json +178 -0
  4. package/data/avengers/meta.json +13 -0
  5. package/data/better-call-saul/addresses.json +37 -0
  6. package/data/better-call-saul/characters.json +156 -0
  7. package/data/better-call-saul/meta.json +13 -0
  8. package/data/big-bang-theory/addresses.json +31 -0
  9. package/data/big-bang-theory/characters.json +121 -0
  10. package/data/big-bang-theory/meta.json +13 -0
  11. package/data/breaking-bad/characters.json +49 -13
  12. package/data/breaking-bad/meta.json +10 -1
  13. package/data/fast-and-furious/characters.json +39 -13
  14. package/data/fast-and-furious/meta.json +15 -1
  15. package/data/friends/characters.json +138 -22
  16. package/data/friends/meta.json +13 -1
  17. package/data/game-of-thrones/characters.json +61 -16
  18. package/data/game-of-thrones/meta.json +10 -1
  19. package/data/guardians-of-the-galaxy/addresses.json +17 -0
  20. package/data/guardians-of-the-galaxy/characters.json +124 -0
  21. package/data/guardians-of-the-galaxy/meta.json +13 -0
  22. package/data/harry-potter/characters.json +37 -7
  23. package/data/harry-potter/meta.json +10 -1
  24. package/data/house-md/characters.json +79 -25
  25. package/data/house-md/meta.json +13 -1
  26. package/data/lost/characters.json +144 -36
  27. package/data/lost/meta.json +13 -1
  28. package/data/matrix/characters.json +133 -34
  29. package/data/matrix/meta.json +18 -1
  30. package/data/peaky-blinders/characters.json +44 -11
  31. package/data/peaky-blinders/meta.json +13 -1
  32. package/data/prison-break/addresses.json +24 -0
  33. package/data/prison-break/characters.json +116 -0
  34. package/data/prison-break/meta.json +13 -0
  35. package/data/sherlock/characters.json +116 -27
  36. package/data/sherlock/meta.json +13 -1
  37. package/data/simpsons/addresses.json +21 -0
  38. package/data/simpsons/characters.json +219 -0
  39. package/data/simpsons/meta.json +13 -0
  40. package/data/sopranos/addresses.json +37 -0
  41. package/data/sopranos/characters.json +184 -0
  42. package/data/sopranos/meta.json +13 -0
  43. package/data/south-park/addresses.json +31 -0
  44. package/data/south-park/characters.json +230 -0
  45. package/data/south-park/meta.json +13 -0
  46. package/data/spider-man/addresses.json +31 -0
  47. package/data/spider-man/characters.json +134 -0
  48. package/data/spider-man/meta.json +13 -0
  49. package/data/star-wars/addresses.json +19 -0
  50. package/data/star-wars/characters.json +153 -0
  51. package/data/star-wars/meta.json +13 -0
  52. package/data/supernatural/addresses.json +25 -0
  53. package/data/supernatural/characters.json +113 -0
  54. package/data/supernatural/meta.json +13 -0
  55. package/data/the-office/characters.json +84 -29
  56. package/data/the-office/meta.json +10 -1
  57. package/data/the-walking-dead/addresses.json +25 -0
  58. package/data/the-walking-dead/characters.json +114 -0
  59. package/data/the-walking-dead/meta.json +13 -0
  60. package/data/westworld/addresses.json +19 -0
  61. package/data/westworld/characters.json +108 -0
  62. package/data/westworld/meta.json +13 -0
  63. package/data/x-men/addresses.json +24 -0
  64. package/data/x-men/characters.json +158 -0
  65. package/data/x-men/meta.json +18 -0
  66. package/dist/browser.cjs +114 -69
  67. package/dist/browser.cjs.map +1 -1
  68. package/dist/browser.d.cts +7 -3
  69. package/dist/browser.d.ts +7 -3
  70. package/dist/browser.js +110 -69
  71. package/dist/browser.js.map +1 -1
  72. package/dist/cli/cli.cjs +131 -70
  73. package/dist/cli/cli.cjs.map +1 -1
  74. package/dist/cli/cli.js +132 -71
  75. package/dist/cli/cli.js.map +1 -1
  76. package/dist/index.cjs +132 -68
  77. package/dist/index.cjs.map +1 -1
  78. package/dist/index.d.cts +15 -4
  79. package/dist/index.d.ts +15 -4
  80. package/dist/index.js +132 -69
  81. package/dist/index.js.map +1 -1
  82. package/dist/{universe-store-DJrm7bP7.d.cts → universe-store-CWhCn3U6.d.cts} +31 -19
  83. package/dist/{universe-store-DJrm7bP7.d.ts → universe-store-CWhCn3U6.d.ts} +31 -19
  84. package/package.json +12 -4
  85. package/data/breaking-bad/domains.json +0 -6
  86. package/data/fast-and-furious/domains.json +0 -6
  87. package/data/friends/domains.json +0 -6
  88. package/data/game-of-thrones/domains.json +0 -6
  89. package/data/harry-potter/domains.json +0 -6
  90. package/data/house-md/domains.json +0 -6
  91. package/data/lost/domains.json +0 -6
  92. package/data/matrix/domains.json +0 -6
  93. package/data/peaky-blinders/domains.json +0 -6
  94. package/data/sherlock/domains.json +0 -6
  95. package/data/the-office/domains.json +0 -6
@@ -0,0 +1,121 @@
1
+ [
2
+ {
3
+ "id": "sheldon-cooper",
4
+ "firstName": "Sheldon",
5
+ "lastName": "Cooper",
6
+ "usernames": ["spot_taken", "bazinga_master", "moon_pie_shelly"],
7
+ "profession": "Theoretical physicist",
8
+ "interests": ["comic books", "trains", "video games", "board games", "science fiction"],
9
+ "quotes": [
10
+ "Bazinga!",
11
+ "I'm not crazy, my mother had me tested.",
12
+ "That is my spot. In an ever-changing world it is a simple point of consistency.",
13
+ "Knock knock knock, Penny. Knock knock knock, Penny. Knock knock knock, Penny.",
14
+ "One cries because one is sad. For example, I cry because others are stupid, and that makes me sad."
15
+ ],
16
+ "gender": "male",
17
+ "symbol": "🪑",
18
+ "color": "#1e3a5f",
19
+ "emailDomains": ["caltech.edu", "physicist-net.org", "bazinga-mail.com"]
20
+ },
21
+ {
22
+ "id": "leonard-hofstadter",
23
+ "firstName": "Leonard",
24
+ "lastName": "Hofstadter",
25
+ "usernames": ["cello_nerd", "nobel_never_cooper", "glasses_across_the_hall"],
26
+ "profession": "Experimental physicist",
27
+ "interests": ["Star Wars", "comic books", "laser optics", "role-playing games", "cello"],
28
+ "quotes": [
29
+ "I'm Leonard. I live across the hall.",
30
+ "Yeah, my parents felt that naming me Leonard and putting me in advanced placement classes wasn't getting me beaten up enough.",
31
+ "My parents focused on celebrating achievements, and my being expelled from a birth canal was not considered one of them.",
32
+ "Come on, we have a combined IQ of 360, we should be able to figure out how to get into a stupid building.",
33
+ "It must be humbling to suck on so many levels."
34
+ ],
35
+ "gender": "male",
36
+ "symbol": "🔭",
37
+ "color": "#166534",
38
+ "emailDomains": ["caltech.edu", "pasadena-labs.net"]
39
+ },
40
+ {
41
+ "id": "penny",
42
+ "firstName": "Penny",
43
+ "usernames": ["across_the_hall", "cheesecake_waitress", "nebraska_to_hollywood"],
44
+ "profession": "Actress",
45
+ "interests": ["acting", "socializing", "wine", "serial killers", "shopping"],
46
+ "quotes": [
47
+ "I'm Penny. I live across the hall.",
48
+ "Oh, sweetie.",
49
+ "Look, you are a great guy, and it is the things you love that make you who you are.",
50
+ "Hey, you do your little experiments, I do mine.",
51
+ "It means I wish you weren't going."
52
+ ],
53
+ "gender": "female",
54
+ "symbol": "🍷",
55
+ "color": "#7f1d1d",
56
+ "emailDomains": ["pennyblossom.com", "pasadena-mail.net"]
57
+ },
58
+ {
59
+ "id": "howard-wolowitz",
60
+ "firstName": "Howard",
61
+ "lastName": "Wolowitz",
62
+ "usernames": ["been_to_space", "mit_engineer_mom_basement", "magic_trick_howie"],
63
+ "profession": "Aerospace engineer",
64
+ "interests": ["space", "magic tricks", "cosplay", "Star Trek", "sci-fi films"],
65
+ "quotes": [
66
+ "I have eleven hours with her in a confined space. Unless she's willing to jump off a moving train and tuck and roll down the side of a hill, she will eventually succumb to the acquired taste that is Howard Wolowitz.",
67
+ "Fine, two weeks ago I was an astronaut.",
68
+ "If it's creepy to use the Internet, military satellites, and robot aircraft to find a house full of gorgeous young models so that I can drop in on them unexpectedly, then fine, I'm creepy.",
69
+ "Thy will be done.",
70
+ "Sex criminals don't have keys, Ma!"
71
+ ],
72
+ "gender": "male",
73
+ "symbol": "🚀",
74
+ "color": "#4a1942",
75
+ "emailDomains": ["caltech.edu", "nasa.gov", "mit-alumni.org"]
76
+ },
77
+ {
78
+ "id": "raj-koothrappali",
79
+ "firstName": "Raj",
80
+ "lastName": "Koothrappali",
81
+ "usernames": ["slumdog_astrophysicist", "koothrappali_out", "whiskey_whisperer"],
82
+ "profession": "Astrophysicist",
83
+ "interests": ["romance", "astronomy", "pop culture", "Bollywood", "wine"],
84
+ "quotes": [
85
+ "Three months at the North Pole with Sheldon and I'm reborn as a well-hung billionaire with wings!",
86
+ "I'm a slumdog astrophysicist.",
87
+ "Please don't take this the wrong way, but I would rather swim butt-naked across the Ganges with a paper cut on my nipple, and then die a slow agonizing death from viral infection, than work with you.",
88
+ "That isn't Klingon, it's Yiddish for a meat-filled dumpling!",
89
+ "I'm just saying, maybe if people cut back on the beer, you could get out of the bathroom and satisfy your women without pharmaceutical help."
90
+ ],
91
+ "gender": "male",
92
+ "symbol": "🌌",
93
+ "color": "#1d4ed8",
94
+ "emailDomains": ["caltech.edu", "cosmos-mail.net"]
95
+ },
96
+ {
97
+ "id": "amy-farrah-fowler",
98
+ "firstName": "Amy",
99
+ "lastName": "Farrah Fowler",
100
+ "usernames": ["coitus_off_the_table", "tepid_water_please", "bff_not_by_choice"],
101
+ "profession": "Neurobiologist",
102
+ "interests": [
103
+ "neuroscience",
104
+ "Little House on the Prairie",
105
+ "monkeys",
106
+ "brain experiments",
107
+ "romance novels"
108
+ ],
109
+ "quotes": [
110
+ "I don't object to the concept of a deity, but I'm baffled by the notion of one that takes attendance.",
111
+ "All forms of physical contact up to and including coitus are off the table.",
112
+ "I find the notion of romantic love to be an unnecessary cultural construct that has no value to human relationships.",
113
+ "I have a feeling that after tonight, one of you will become my best friend forever, or BFF if you prefer — which I don't.",
114
+ "Like everybody else's: subject to entropy, decay, and eventual death. Thank you for asking."
115
+ ],
116
+ "gender": "female",
117
+ "symbol": "🔬",
118
+ "color": "#4a3728",
119
+ "emailDomains": ["caltech.edu", "neuro-research.org"]
120
+ }
121
+ ]
@@ -0,0 +1,13 @@
1
+ {
2
+ "id": "big-bang-theory",
3
+ "name": "The Big Bang Theory",
4
+ "genre": ["comedy", "romance", "drama"],
5
+ "description": "A group of brilliant but socially awkward physicists navigate friendships, romance, and the gap between genius intellect and everyday social skills in Pasadena, California.",
6
+ "tmdbId": 1418,
7
+ "mediaType": "tv",
8
+ "year": 2007,
9
+ "rating": 7.9,
10
+ "networks": ["CBS"],
11
+ "posterPath": "/an3uTx1P0XgHPylgfPV6W7yxKAo.jpg",
12
+ "backdropPath": "/gMqQY6SwuhKg1LvmiTxKX6YrINr.jpg"
13
+ }
@@ -4,7 +4,7 @@
4
4
  "firstName": "Walter",
5
5
  "lastName": "White",
6
6
  "usernames": ["heisenberg", "blue_sky_cook", "danger_knocks"],
7
- "profession": "chemistry teacher",
7
+ "profession": "Chemistry teacher",
8
8
  "interests": ["chemistry", "cooking", "family"],
9
9
  "quotes": [
10
10
  "I am the one who knocks.",
@@ -15,14 +15,22 @@
15
15
  ],
16
16
  "gender": "male",
17
17
  "birthYear": 1959,
18
- "address": { "street": "308 Negra Arroyo Lane", "city": "Albuquerque", "state": "NM", "country": "US" }
18
+ "address": {
19
+ "street": "308 Negra Arroyo Lane",
20
+ "city": "Albuquerque",
21
+ "state": "NM",
22
+ "country": "US"
23
+ },
24
+ "symbol": "☢️",
25
+ "color": "#4c1d95",
26
+ "emailDomains": ["los-pollos.com", "abq-chem.edu", "new-mexico-mail.net"]
19
27
  },
20
28
  {
21
29
  "id": "jesse-pinkman",
22
30
  "firstName": "Jesse",
23
31
  "lastName": "Pinkman",
24
32
  "usernames": ["capncook", "yo_bitch_84", "junkyard_artist"],
25
- "profession": "drug dealer",
33
+ "profession": "Drug dealer",
26
34
  "interests": ["art", "cars", "chemistry", "video games"],
27
35
  "quotes": [
28
36
  "Yeah, science!",
@@ -32,14 +40,17 @@
32
40
  "Maybe. But some people are just... broken."
33
41
  ],
34
42
  "gender": "male",
35
- "birthYear": 1984
43
+ "birthYear": 1984,
44
+ "symbol": "🎨",
45
+ "color": "#0c4a6e",
46
+ "emailDomains": ["abq-mail.net"]
36
47
  },
37
48
  {
38
49
  "id": "saul-goodman",
39
50
  "firstName": "Saul",
40
51
  "lastName": "Goodman",
41
52
  "usernames": ["bettercallsaul", "slippin_jimmy", "lawman505"],
42
- "profession": "criminal lawyer",
53
+ "profession": "Criminal lawyer",
43
54
  "interests": ["law", "money", "loopholes", "self-promotion"],
44
55
  "quotes": [
45
56
  "Better call Saul!",
@@ -49,14 +60,22 @@
49
60
  "I fight for you, Albuquerque!"
50
61
  ],
51
62
  "gender": "male",
52
- "address": { "street": "160 Juan Tabo Blvd NE", "city": "Albuquerque", "state": "NM", "country": "US" }
63
+ "address": {
64
+ "street": "160 Juan Tabo Blvd NE",
65
+ "city": "Albuquerque",
66
+ "state": "NM",
67
+ "country": "US"
68
+ },
69
+ "symbol": "⚖️",
70
+ "color": "#4a1942",
71
+ "emailDomains": ["saul-goodman.net", "abq-bar.org"]
53
72
  },
54
73
  {
55
74
  "id": "skyler-white",
56
75
  "firstName": "Skyler",
57
76
  "lastName": "White",
58
77
  "usernames": ["carwash_queen", "sky.steele", "not_afraid_now"],
59
- "profession": "accountant",
78
+ "profession": "Accountant",
60
79
  "interests": ["bookkeeping", "family", "swimming"],
61
80
  "quotes": [
62
81
  "Walt, I'm out.",
@@ -65,7 +84,10 @@
65
84
  "I don't know what to do.",
66
85
  "You've lied to me, manipulated me."
67
86
  ],
68
- "gender": "female"
87
+ "gender": "female",
88
+ "symbol": "💼",
89
+ "color": "#134e4a",
90
+ "emailDomains": ["abq-mail.net", "car-wash-nm.com"]
69
91
  },
70
92
  {
71
93
  "id": "hank-schrader",
@@ -81,14 +103,17 @@
81
103
  "This is my chance to catch the big one.",
82
104
  "Minerals, not rocks."
83
105
  ],
84
- "gender": "male"
106
+ "gender": "male",
107
+ "symbol": "🔍",
108
+ "color": "#3b1f0a",
109
+ "emailDomains": ["dea.gov", "abq-pd.gov"]
85
110
  },
86
111
  {
87
112
  "id": "gustavo-fring",
88
113
  "firstName": "Gustavo",
89
114
  "lastName": "Fring",
90
115
  "usernames": ["los_pollos", "plain_sight", "chicken_man_abq"],
91
- "profession": "fast food entrepreneur",
116
+ "profession": "Fast food entrepreneur",
92
117
  "interests": ["business", "cooking", "philanthropy"],
93
118
  "quotes": [
94
119
  "I hide in plain sight.",
@@ -99,14 +124,22 @@
99
124
  ],
100
125
  "gender": "male",
101
126
  "birthYear": 1958,
102
- "address": { "street": "4257 Isleta Blvd SW", "city": "Albuquerque", "state": "NM", "country": "US" }
127
+ "address": {
128
+ "street": "4257 Isleta Blvd SW",
129
+ "city": "Albuquerque",
130
+ "state": "NM",
131
+ "country": "US"
132
+ },
133
+ "symbol": "🍗",
134
+ "color": "#1e3a5f",
135
+ "emailDomains": ["pollos-hermanos.net", "abq-business.net"]
103
136
  },
104
137
  {
105
138
  "id": "mike-ehrmantraut",
106
139
  "firstName": "Mike",
107
140
  "lastName": "Ehrmantraut",
108
141
  "usernames": ["the_cleaner", "no_half_measures", "fixer_philly"],
109
- "profession": "private investigator",
142
+ "profession": "Private investigator",
110
143
  "interests": ["security", "chess", "family"],
111
144
  "quotes": [
112
145
  "No more half measures.",
@@ -115,6 +148,9 @@
115
148
  "Everyone sounds like Meryl Streep with a gun to their head.",
116
149
  "You talk too much."
117
150
  ],
118
- "gender": "male"
151
+ "gender": "male",
152
+ "symbol": "🧹",
153
+ "color": "#9333ea",
154
+ "emailDomains": ["abq-mail.net", "ehrmantraut-security.com"]
119
155
  }
120
156
  ]
@@ -1,4 +1,13 @@
1
1
  {
2
2
  "id": "breaking-bad",
3
- "name": "Breaking Bad"
3
+ "name": "Breaking Bad",
4
+ "genre": ["crime", "drama", "thriller"],
5
+ "description": "A high school chemistry teacher turned methamphetamine manufacturer navigates the criminal underworld of Albuquerque, New Mexico.",
6
+ "tmdbId": 1396,
7
+ "mediaType": "tv",
8
+ "year": 2008,
9
+ "rating": 8.9,
10
+ "networks": ["AMC"],
11
+ "posterPath": "/ztkUQFLlC19CCMYHW9o1zWhJRNq.jpg",
12
+ "backdropPath": "/tsRy63Mu5cu8etL1X7ZLyf7UP1M.jpg"
4
13
  }
@@ -4,7 +4,7 @@
4
4
  "firstName": "Dominic",
5
5
  "lastName": "Toretto",
6
6
  "usernames": ["dom_toretto", "quarter_mile_king", "ride_or_die"],
7
- "profession": "mechanic",
7
+ "profession": "Mechanic",
8
8
  "interests": ["cars", "racing", "family", "barbecue"],
9
9
  "quotes": [
10
10
  "I live my life a quarter mile at a time.",
@@ -14,14 +14,22 @@
14
14
  "Nobody makes me do anything I don't want to."
15
15
  ],
16
16
  "gender": "male",
17
- "address": {"street": "1327 East Adams Boulevard", "city": "Los Angeles", "state": "CA", "country": "US"}
17
+ "address": {
18
+ "street": "1327 East Adams Boulevard",
19
+ "city": "Los Angeles",
20
+ "state": "CA",
21
+ "country": "US"
22
+ },
23
+ "symbol": "🏁",
24
+ "color": "#2563eb",
25
+ "emailDomains": ["toretto-garage.com", "la-street.net"]
18
26
  },
19
27
  {
20
28
  "id": "brian-oconner",
21
29
  "firstName": "Brian",
22
30
  "lastName": "O'Conner",
23
31
  "usernames": ["bsquad", "bullet_brian", "always_one_more_ride"],
24
- "profession": "former FBI agent",
32
+ "profession": "Former FBI agent",
25
33
  "interests": ["cars", "surfing", "racing", "family"],
26
34
  "quotes": [
27
35
  "I'm a boy who appreciates a good body, regardless of the make.",
@@ -30,14 +38,17 @@
30
38
  "You almost had me? You never had me.",
31
39
  "See you around, Dom."
32
40
  ],
33
- "gender": "male"
41
+ "gender": "male",
42
+ "symbol": "🚓",
43
+ "color": "#7c3aed",
44
+ "emailDomains": ["fbi.gov", "la-street.net"]
34
45
  },
35
46
  {
36
47
  "id": "letty-ortiz",
37
48
  "firstName": "Letty",
38
49
  "lastName": "Ortiz",
39
50
  "usernames": ["ghost_driver", "ride_or_die_letty", "ortiz_racing"],
40
- "profession": "mechanic",
51
+ "profession": "Mechanic",
41
52
  "interests": ["racing", "cars", "fighting", "family"],
42
53
  "quotes": [
43
54
  "I don't have friends. I have family.",
@@ -46,14 +57,17 @@
46
57
  "You want me? You're gonna have to catch me first.",
47
58
  "This is who I am."
48
59
  ],
49
- "gender": "female"
60
+ "gender": "female",
61
+ "symbol": "🔧",
62
+ "color": "#083344",
63
+ "emailDomains": ["toretto-garage.com", "la-street.net"]
50
64
  },
51
65
  {
52
66
  "id": "roman-pearce",
53
67
  "firstName": "Roman",
54
68
  "lastName": "Pearce",
55
69
  "usernames": ["roman_pearce", "pretty_ricky", "no_time_to_die"],
56
- "profession": "driver",
70
+ "profession": "Driver",
57
71
  "interests": ["cars", "money", "women", "food"],
58
72
  "quotes": [
59
73
  "I don't do risk.",
@@ -62,14 +76,17 @@
62
76
  "You know what I say? I say we take the money, we take the car, and we go.",
63
77
  "This is crazy. This is absolutely crazy."
64
78
  ],
65
- "gender": "male"
79
+ "gender": "male",
80
+ "symbol": "💸",
81
+ "color": "#083344",
82
+ "emailDomains": ["la-street.net", "pearce-driving.com"]
66
83
  },
67
84
  {
68
85
  "id": "tej-parker",
69
86
  "firstName": "Tej",
70
87
  "lastName": "Parker",
71
88
  "usernames": ["tej_tech", "garage_genius", "tej_parker"],
72
- "profession": "mechanic and hacker",
89
+ "profession": "Mechanic and hacker",
73
90
  "interests": ["technology", "cars", "money", "engineering"],
74
91
  "quotes": [
75
92
  "I'm a lover, not a fighter.",
@@ -78,14 +95,17 @@
78
95
  "I just need to reroute the transponder through the auxiliary grid.",
79
96
  "Money ain't a thing."
80
97
  ],
81
- "gender": "male"
98
+ "gender": "male",
99
+ "symbol": "💻",
100
+ "color": "#083344",
101
+ "emailDomains": ["la-street.net", "parker-tech.net"]
82
102
  },
83
103
  {
84
104
  "id": "han-lue",
85
105
  "firstName": "Han",
86
106
  "lastName": "Lue",
87
107
  "usernames": ["han_seoul_o", "drifting_han", "tokyo_ghost"],
88
- "profession": "driver",
108
+ "profession": "Driver",
89
109
  "interests": ["drifting", "snacking", "cars", "travel"],
90
110
  "quotes": [
91
111
  "I'm always hungry, man. I just never let it affect me.",
@@ -94,7 +114,10 @@
94
114
  "Chaos, yeah. You know what that is? It's everything. It's your life.",
95
115
  "I have to try things for myself. That's just who I am."
96
116
  ],
97
- "gender": "male"
117
+ "gender": "male",
118
+ "symbol": "🍿",
119
+ "color": "#083344",
120
+ "emailDomains": ["la-street.net", "tokyo-drift.net"]
98
121
  },
99
122
  {
100
123
  "id": "hobbs",
@@ -110,6 +133,9 @@
110
133
  "You just earned yourself a dance with the devil, boy.",
111
134
  "I will beat you like a Cherokee drum."
112
135
  ],
113
- "gender": "male"
136
+ "gender": "male",
137
+ "symbol": "💪",
138
+ "color": "#7f1d1d",
139
+ "emailDomains": ["dss-agency.gov", "dss-hq.net"]
114
140
  }
115
141
  ]
@@ -1,4 +1,18 @@
1
1
  {
2
2
  "id": "fast-and-furious",
3
- "name": "Fast & Furious"
3
+ "name": "Fast & Furious",
4
+ "genre": ["action", "thriller"],
5
+ "description": "A crew of street racers and ex-convicts take on increasingly dangerous heists and missions around the world.",
6
+ "tmdbId": 9799,
7
+ "mediaType": "movie",
8
+ "year": 2001,
9
+ "rating": 7,
10
+ "networks": [
11
+ "Ardustry Entertainment",
12
+ "Universal Pictures",
13
+ "Original Film",
14
+ "Mediastream Film"
15
+ ],
16
+ "posterPath": "/gqY0ITBgT7A82poL9jv851qdnIb.jpg",
17
+ "backdropPath": "/jY9ef5nqY4xIIMu3yzW3qamUCoi.jpg"
4
18
  }