mnemorandom 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (358) hide show
  1. checksums.yaml +7 -0
  2. data/CHANGELOG.md +5 -0
  3. data/CODE_OF_CONDUCT.md +70 -0
  4. data/Gemfile +12 -0
  5. data/Gemfile.lock +49 -0
  6. data/LICENSE.txt +21 -0
  7. data/README.md +43 -0
  8. data/Rakefile +12 -0
  9. data/bin/console +15 -0
  10. data/bin/setup +8 -0
  11. data/lib/mnemorandom/version.rb +5 -0
  12. data/lib/mnemorandom.rb +30 -0
  13. data/vendor/git/corpora.git/.editorconfig +16 -0
  14. data/vendor/git/corpora.git/.github/workflows/test.yml +39 -0
  15. data/vendor/git/corpora.git/.gitignore +4 -0
  16. data/vendor/git/corpora.git/.travis.yml +17 -0
  17. data/vendor/git/corpora.git/Gruntfile.js +23 -0
  18. data/vendor/git/corpora.git/README.md +46 -0
  19. data/vendor/git/corpora.git/data/animals/ant_anatomy.json +107 -0
  20. data/vendor/git/corpora.git/data/animals/birds_antarctica.json +106 -0
  21. data/vendor/git/corpora.git/data/animals/birds_north_america.json +1448 -0
  22. data/vendor/git/corpora.git/data/animals/cats.json +100 -0
  23. data/vendor/git/corpora.git/data/animals/cephalopod_anatomy.json +281 -0
  24. data/vendor/git/corpora.git/data/animals/collateral_adjectives.json +1103 -0
  25. data/vendor/git/corpora.git/data/animals/common.json +139 -0
  26. data/vendor/git/corpora.git/data/animals/dinosaurs.json +1455 -0
  27. data/vendor/git/corpora.git/data/animals/dog_names.json +1005 -0
  28. data/vendor/git/corpora.git/data/animals/dogs-en-de.json +1814 -0
  29. data/vendor/git/corpora.git/data/animals/dogs.json +459 -0
  30. data/vendor/git/corpora.git/data/animals/donkeys.json +174 -0
  31. data/vendor/git/corpora.git/data/animals/horses.json +349 -0
  32. data/vendor/git/corpora.git/data/animals/ponies.json +175 -0
  33. data/vendor/git/corpora.git/data/animals/rabbits.json +55 -0
  34. data/vendor/git/corpora.git/data/archetypes/artifact.json +53 -0
  35. data/vendor/git/corpora.git/data/archetypes/character.json +257 -0
  36. data/vendor/git/corpora.git/data/archetypes/event.json +107 -0
  37. data/vendor/git/corpora.git/data/archetypes/setting.json +179 -0
  38. data/vendor/git/corpora.git/data/architecture/passages.json +35 -0
  39. data/vendor/git/corpora.git/data/architecture/rooms.json +113 -0
  40. data/vendor/git/corpora.git/data/art/isms.json +146 -0
  41. data/vendor/git/corpora.git/data/books/academic_subjects.json +261 -0
  42. data/vendor/git/corpora.git/data/books/bestsellers.json +258 -0
  43. data/vendor/git/corpora.git/data/colors/crayola.json +485 -0
  44. data/vendor/git/corpora.git/data/colors/dulux.json +42242 -0
  45. data/vendor/git/corpora.git/data/colors/fictional.json +47 -0
  46. data/vendor/git/corpora.git/data/colors/google_material_colors.json +294 -0
  47. data/vendor/git/corpora.git/data/colors/paints.json +4005 -0
  48. data/vendor/git/corpora.git/data/colors/palettes.json +1403 -0
  49. data/vendor/git/corpora.git/data/colors/web_colors.json +565 -0
  50. data/vendor/git/corpora.git/data/colors/wikipedia.json +4070 -0
  51. data/vendor/git/corpora.git/data/colors/xkcd.json +4749 -0
  52. data/vendor/git/corpora.git/data/corporations/cars.json +71 -0
  53. data/vendor/git/corpora.git/data/corporations/charities.json +105 -0
  54. data/vendor/git/corpora.git/data/corporations/djia.json +125 -0
  55. data/vendor/git/corpora.git/data/corporations/fortune500.json +506 -0
  56. data/vendor/git/corpora.git/data/corporations/industries.json +155 -0
  57. data/vendor/git/corpora.git/data/corporations/nasdaq.json +409 -0
  58. data/vendor/git/corpora.git/data/corporations/newspapers.json +107 -0
  59. data/vendor/git/corpora.git/data/divination/hexagrams.json +261 -0
  60. data/vendor/git/corpora.git/data/divination/tarot_interpretations.json +2593 -0
  61. data/vendor/git/corpora.git/data/divination/zodiac.json +274 -0
  62. data/vendor/git/corpora.git/data/film-tv/Westworld_quotes.json +326 -0
  63. data/vendor/git/corpora.git/data/film-tv/extended-netflix-categories.json +605 -0
  64. data/vendor/git/corpora.git/data/film-tv/game-of-thrones-houses.json +277 -0
  65. data/vendor/git/corpora.git/data/film-tv/iab_categories.json +1571 -0
  66. data/vendor/git/corpora.git/data/film-tv/look-around-you-shakespeare.json +28 -0
  67. data/vendor/git/corpora.git/data/film-tv/netflix-categories.json +216 -0
  68. data/vendor/git/corpora.git/data/film-tv/popular-movies.json +263 -0
  69. data/vendor/git/corpora.git/data/film-tv/tv_shows.json +1005 -0
  70. data/vendor/git/corpora.git/data/foods/apple_cultivars.json +1005 -0
  71. data/vendor/git/corpora.git/data/foods/bad_beers.json +104 -0
  72. data/vendor/git/corpora.git/data/foods/beer_categories.json +631 -0
  73. data/vendor/git/corpora.git/data/foods/beer_styles.json +144 -0
  74. data/vendor/git/corpora.git/data/foods/breads_and_pastries.json +62 -0
  75. data/vendor/git/corpora.git/data/foods/combine.json +96 -0
  76. data/vendor/git/corpora.git/data/foods/condiments.json +104 -0
  77. data/vendor/git/corpora.git/data/foods/curds.json +1969 -0
  78. data/vendor/git/corpora.git/data/foods/fruits.json +85 -0
  79. data/vendor/git/corpora.git/data/foods/herbs_n_spices.json +202 -0
  80. data/vendor/git/corpora.git/data/foods/hot_peppers.json +69 -0
  81. data/vendor/git/corpora.git/data/foods/iba_cocktails.json +82 -0
  82. data/vendor/git/corpora.git/data/foods/menuItems.json +1005 -0
  83. data/vendor/git/corpora.git/data/foods/pizzaToppings.json +30 -0
  84. data/vendor/git/corpora.git/data/foods/sandwiches.json +855 -0
  85. data/vendor/git/corpora.git/data/foods/sausages.json +208 -0
  86. data/vendor/git/corpora.git/data/foods/scotch_whiskey.json +82 -0
  87. data/vendor/git/corpora.git/data/foods/tea.json +533 -0
  88. data/vendor/git/corpora.git/data/foods/vegetable_cooking_times.json +310 -0
  89. data/vendor/git/corpora.git/data/foods/vegetables.json +125 -0
  90. data/vendor/git/corpora.git/data/foods/verbs.json +287 -0
  91. data/vendor/git/corpora.git/data/foods/wine_descriptions.json +108 -0
  92. data/vendor/git/corpora.git/data/games/League_of_legends_champion_names.json +150 -0
  93. data/vendor/git/corpora.git/data/games/bannedGames/argentina/bannedList.json +9 -0
  94. data/vendor/git/corpora.git/data/games/bannedGames/brazil/bannedList.json +53 -0
  95. data/vendor/git/corpora.git/data/games/bannedGames/china/bannedList.json +25 -0
  96. data/vendor/git/corpora.git/data/games/bannedGames/denmark/bannedList.json +9 -0
  97. data/vendor/git/corpora.git/data/games/bannedGames/germany/bannedList.json +457 -0
  98. data/vendor/git/corpora.git/data/games/bannedGames/saudi_arabia/bannedList.json +69 -0
  99. data/vendor/git/corpora.git/data/games/board_games.json +218 -0
  100. data/vendor/git/corpora.git/data/games/cluedo.json +65 -0
  101. data/vendor/git/corpora.git/data/games/dark_souls_iii_messages.json +367 -0
  102. data/vendor/git/corpora.git/data/games/jeopardy_questions.json +9005 -0
  103. data/vendor/git/corpora.git/data/games/pokemon.json +20684 -0
  104. data/vendor/git/corpora.git/data/games/rpg/rpg_designers.json +202 -0
  105. data/vendor/git/corpora.git/data/games/rpg/rpg_games.json +859 -0
  106. data/vendor/git/corpora.git/data/games/rpg/rpg_settings.json +103 -0
  107. data/vendor/git/corpora.git/data/games/scrabble.json +33 -0
  108. data/vendor/git/corpora.git/data/games/street_fighter_ii.json +73 -0
  109. data/vendor/git/corpora.git/data/games/trivial_pursuit.json +29 -0
  110. data/vendor/git/corpora.git/data/games/wrestling_moves.json +284 -0
  111. data/vendor/git/corpora.git/data/games/zelda.json +372 -0
  112. data/vendor/git/corpora.git/data/geography/anthropogenic_features.json +143 -0
  113. data/vendor/git/corpora.git/data/geography/canada_provinces_and_territories.json +16 -0
  114. data/vendor/git/corpora.git/data/geography/canadian_municipalities.json +606 -0
  115. data/vendor/git/corpora.git/data/geography/countries.json +203 -0
  116. data/vendor/git/corpora.git/data/geography/countries_with_capitals.json +202 -0
  117. data/vendor/git/corpora.git/data/geography/english_towns_cities.json +997 -0
  118. data/vendor/git/corpora.git/data/geography/environmental_hazards.json +76 -0
  119. data/vendor/git/corpora.git/data/geography/geographic_features.json +514 -0
  120. data/vendor/git/corpora.git/data/geography/japanese_prefectures.json +99 -0
  121. data/vendor/git/corpora.git/data/geography/london_underground_stations.json +1352 -0
  122. data/vendor/git/corpora.git/data/geography/nationalities.json +232 -0
  123. data/vendor/git/corpora.git/data/geography/norwegian_cities.json +370 -0
  124. data/vendor/git/corpora.git/data/geography/nyc_neighborhood_zips.json +395 -0
  125. data/vendor/git/corpora.git/data/geography/oceans.json +305 -0
  126. data/vendor/git/corpora.git/data/geography/rivers.json +1101 -0
  127. data/vendor/git/corpora.git/data/geography/sf_neighborhoods.json +455 -0
  128. data/vendor/git/corpora.git/data/geography/us_airport_codes.json +373 -0
  129. data/vendor/git/corpora.git/data/geography/us_cities.json +5006 -0
  130. data/vendor/git/corpora.git/data/geography/us_counties.json +2979 -0
  131. data/vendor/git/corpora.git/data/geography/us_metropolitan_areas.json +4488 -0
  132. data/vendor/git/corpora.git/data/geography/us_state_capitals.json +205 -0
  133. data/vendor/git/corpora.git/data/geography/venues.json +3656 -0
  134. data/vendor/git/corpora.git/data/geography/winds.json +117 -0
  135. data/vendor/git/corpora.git/data/governments/governmentForms.json +28 -0
  136. data/vendor/git/corpora.git/data/governments/mass-surveillance-project-names.json +215 -0
  137. data/vendor/git/corpora.git/data/governments/nsa_projects.json +213 -0
  138. data/vendor/git/corpora.git/data/governments/uk_political_parties.json +623 -0
  139. data/vendor/git/corpora.git/data/governments/us_federal_agencies.json +128 -0
  140. data/vendor/git/corpora.git/data/governments/us_mil_operations.json +3613 -0
  141. data/vendor/git/corpora.git/data/humans/2016_us_presidential_candidates.json +7329 -0
  142. data/vendor/git/corpora.git/data/humans/atus_activities.json +4617 -0
  143. data/vendor/git/corpora.git/data/humans/authors.json +506 -0
  144. data/vendor/git/corpora.git/data/humans/bodyParts.json +46 -0
  145. data/vendor/git/corpora.git/data/humans/britishActors.json +705 -0
  146. data/vendor/git/corpora.git/data/humans/celebrities.json +998 -0
  147. data/vendor/git/corpora.git/data/humans/descriptions.json +398 -0
  148. data/vendor/git/corpora.git/data/humans/englishHonorifics.json +226 -0
  149. data/vendor/git/corpora.git/data/humans/familyRelations.json +77 -0
  150. data/vendor/git/corpora.git/data/humans/famousDuos.json +194 -0
  151. data/vendor/git/corpora.git/data/humans/firstNames.json +400 -0
  152. data/vendor/git/corpora.git/data/humans/genders.json +82 -0
  153. data/vendor/git/corpora.git/data/humans/human_universals.json +374 -0
  154. data/vendor/git/corpora.git/data/humans/lastNames.json +205 -0
  155. data/vendor/git/corpora.git/data/humans/moods.json +771 -0
  156. data/vendor/git/corpora.git/data/humans/norwayFirstNamesBoys.json +822 -0
  157. data/vendor/git/corpora.git/data/humans/norwayFirstNamesGirls.json +929 -0
  158. data/vendor/git/corpora.git/data/humans/norwayLastNames.json +1003 -0
  159. data/vendor/git/corpora.git/data/humans/occupations.json +976 -0
  160. data/vendor/git/corpora.git/data/humans/prefixes.json +88 -0
  161. data/vendor/git/corpora.git/data/humans/richpeople.json +305 -0
  162. data/vendor/git/corpora.git/data/humans/scientists.json +333 -0
  163. data/vendor/git/corpora.git/data/humans/spanishFirstNames.json +460 -0
  164. data/vendor/git/corpora.git/data/humans/spanishLastNames.json +108 -0
  165. data/vendor/git/corpora.git/data/humans/spinalTapDrummers.json +93 -0
  166. data/vendor/git/corpora.git/data/humans/suffixes.json +50 -0
  167. data/vendor/git/corpora.git/data/humans/thirdPersonPronouns.json +9749 -0
  168. data/vendor/git/corpora.git/data/humans/tolkienCharacterNames.json +600 -0
  169. data/vendor/git/corpora.git/data/humans/us_presidents.json +2743 -0
  170. data/vendor/git/corpora.git/data/humans/wrestlers.json +99 -0
  171. data/vendor/git/corpora.git/data/instructions/burroughsinstructionset.json +216 -0
  172. data/vendor/git/corpora.git/data/instructions/laundry_care.json +149 -0
  173. data/vendor/git/corpora.git/data/materials/abridged-body-fluids.json +34 -0
  174. data/vendor/git/corpora.git/data/materials/building-materials.json +50 -0
  175. data/vendor/git/corpora.git/data/materials/carbon-allotropes.json +19 -0
  176. data/vendor/git/corpora.git/data/materials/decorative-stones.json +99 -0
  177. data/vendor/git/corpora.git/data/materials/fabrics.json +211 -0
  178. data/vendor/git/corpora.git/data/materials/fibers.json +33 -0
  179. data/vendor/git/corpora.git/data/materials/fictional-materials.json +170 -0
  180. data/vendor/git/corpora.git/data/materials/gemstones.json +357 -0
  181. data/vendor/git/corpora.git/data/materials/layperson-metals.json +23 -0
  182. data/vendor/git/corpora.git/data/materials/metals.json +97 -0
  183. data/vendor/git/corpora.git/data/materials/natural-materials.json +15 -0
  184. data/vendor/git/corpora.git/data/materials/packaging.json +32 -0
  185. data/vendor/git/corpora.git/data/materials/plastic-brands.json +9 -0
  186. data/vendor/git/corpora.git/data/materials/sculpture-materials.json +49 -0
  187. data/vendor/git/corpora.git/data/materials/technical-fabrics.json +16 -0
  188. data/vendor/git/corpora.git/data/mathematics/fibonnaciSequence.json +1492 -0
  189. data/vendor/git/corpora.git/data/mathematics/primes.json +1015 -0
  190. data/vendor/git/corpora.git/data/mathematics/primes_binary.json +1005 -0
  191. data/vendor/git/corpora.git/data/mathematics/trigonometry.json +24 -0
  192. data/vendor/git/corpora.git/data/medicine/cancer.json +1007 -0
  193. data/vendor/git/corpora.git/data/medicine/diagnoses.json +1006 -0
  194. data/vendor/git/corpora.git/data/medicine/diseases.json +1007 -0
  195. data/vendor/git/corpora.git/data/medicine/drugNameStems.json +470 -0
  196. data/vendor/git/corpora.git/data/medicine/drugs.json +1006 -0
  197. data/vendor/git/corpora.git/data/medicine/hospitals.json +963 -0
  198. data/vendor/git/corpora.git/data/medicine/infectious_diseases.json +122 -0
  199. data/vendor/git/corpora.git/data/medicine/symptoms.json +551 -0
  200. data/vendor/git/corpora.git/data/music/a_list_of_guitar_manufacturers.json +722 -0
  201. data/vendor/git/corpora.git/data/music/bands_that_have_opened_for_tool.json +37 -0
  202. data/vendor/git/corpora.git/data/music/female_classical_guitarists.json +260 -0
  203. data/vendor/git/corpora.git/data/music/genres.json +375 -0
  204. data/vendor/git/corpora.git/data/music/hamilton_musical_obcrecording_actors_characters.json +63 -0
  205. data/vendor/git/corpora.git/data/music/instruments.json +60 -0
  206. data/vendor/git/corpora.git/data/music/media-formats.json +62 -0
  207. data/vendor/git/corpora.git/data/music/mtv_day_one.json +1257 -0
  208. data/vendor/git/corpora.git/data/music/rock_hall_of_fame.json +891 -0
  209. data/vendor/git/corpora.git/data/music/xxl_freshman.json +17 -0
  210. data/vendor/git/corpora.git/data/mythology/egyptian_gods.json +279 -0
  211. data/vendor/git/corpora.git/data/mythology/greek_gods.json +36 -0
  212. data/vendor/git/corpora.git/data/mythology/greek_monsters.json +29 -0
  213. data/vendor/git/corpora.git/data/mythology/greek_myths_master.json +98 -0
  214. data/vendor/git/corpora.git/data/mythology/greek_titans.json +38 -0
  215. data/vendor/git/corpora.git/data/mythology/hebrew_god.json +69 -0
  216. data/vendor/git/corpora.git/data/mythology/lovecraft.json +100 -0
  217. data/vendor/git/corpora.git/data/mythology/monsters.json +91 -0
  218. data/vendor/git/corpora.git/data/mythology/norse_gods.json +75 -0
  219. data/vendor/git/corpora.git/data/mythology/roman_deities.json +30 -0
  220. data/vendor/git/corpora.git/data/objects/clothing.json +95 -0
  221. data/vendor/git/corpora.git/data/objects/corpora_winners.json +32 -0
  222. data/vendor/git/corpora.git/data/objects/objects.json +452 -0
  223. data/vendor/git/corpora.git/data/objects/premodern_weapons.json +55 -0
  224. data/vendor/git/corpora.git/data/plants/cannabis.json +426 -0
  225. data/vendor/git/corpora.git/data/plants/flowers.json +67 -0
  226. data/vendor/git/corpora.git/data/plants/plants.json +2526 -0
  227. data/vendor/git/corpora.git/data/psychology/personality_test.json +305 -0
  228. data/vendor/git/corpora.git/data/religion/christian_saints.json +6982 -0
  229. data/vendor/git/corpora.git/data/religion/fictional_religions.json +267 -0
  230. data/vendor/git/corpora.git/data/religion/parody_religions.json +20 -0
  231. data/vendor/git/corpora.git/data/religion/religions.json +880 -0
  232. data/vendor/git/corpora.git/data/science/elements.json +2835 -0
  233. data/vendor/git/corpora.git/data/science/hail_size.json +85 -0
  234. data/vendor/git/corpora.git/data/science/meteorology.json +659 -0
  235. data/vendor/git/corpora.git/data/science/minor_planets.json +1005 -0
  236. data/vendor/git/corpora.git/data/science/planets.json +241 -0
  237. data/vendor/git/corpora.git/data/science/pregnancy.json +220 -0
  238. data/vendor/git/corpora.git/data/science/toxic_chemicals.json +385 -0
  239. data/vendor/git/corpora.git/data/science/weather_conditions.json +269 -0
  240. data/vendor/git/corpora.git/data/societies_and_groups/animal_welfare.json +408 -0
  241. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/australia.json +24 -0
  242. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/canada.json +54 -0
  243. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/china.json +6 -0
  244. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/egypt.json +9 -0
  245. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/european_union.json +31 -0
  246. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/india.json +35 -0
  247. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/iran.json +7 -0
  248. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/israel.json +13 -0
  249. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/kazakhstan.json +11 -0
  250. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/russia.json +23 -0
  251. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/saudi_arabia.json +9 -0
  252. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/tunisia.json +3 -0
  253. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/turkey.json +15 -0
  254. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/ukraine.json +4 -0
  255. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_arab_emirates.json +31 -0
  256. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_kingdom.json +82 -0
  257. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_nations.json +37 -0
  258. data/vendor/git/corpora.git/data/societies_and_groups/designated_terrorist_groups/united_states.json +73 -0
  259. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/coeducational_fraternities.json +107 -0
  260. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/defunct.json +107 -0
  261. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/fraternities.json +884 -0
  262. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/professional.json +574 -0
  263. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/service.json +90 -0
  264. data/vendor/git/corpora.git/data/societies_and_groups/fraternities/sororities.json +674 -0
  265. data/vendor/git/corpora.git/data/societies_and_groups/semi_secret.json +146 -0
  266. data/vendor/git/corpora.git/data/sports/football/epl_teams.json +145 -0
  267. data/vendor/git/corpora.git/data/sports/football/laliga_teams.json +125 -0
  268. data/vendor/git/corpora.git/data/sports/football/serieA.json +104 -0
  269. data/vendor/git/corpora.git/data/sports/mlb_teams.json +245 -0
  270. data/vendor/git/corpora.git/data/sports/nba_mvps.json +254 -0
  271. data/vendor/git/corpora.git/data/sports/nba_teams.json +244 -0
  272. data/vendor/git/corpora.git/data/sports/nfl_teams.json +261 -0
  273. data/vendor/git/corpora.git/data/sports/nhl_teams.json +244 -0
  274. data/vendor/git/corpora.git/data/sports/olympics.json +572 -0
  275. data/vendor/git/corpora.git/data/sports/sports.json +972 -0
  276. data/vendor/git/corpora.git/data/technology/appliances.json +112 -0
  277. data/vendor/git/corpora.git/data/technology/computer_sciences.json +203 -0
  278. data/vendor/git/corpora.git/data/technology/fireworks.json +45 -0
  279. data/vendor/git/corpora.git/data/technology/guns_n_rifles.json +65 -0
  280. data/vendor/git/corpora.git/data/technology/knots.json +217 -0
  281. data/vendor/git/corpora.git/data/technology/lisp.json +70 -0
  282. data/vendor/git/corpora.git/data/technology/new_technologies.json +534 -0
  283. data/vendor/git/corpora.git/data/technology/photo_sharing_websites.json +42 -0
  284. data/vendor/git/corpora.git/data/technology/programming_languages.json +707 -0
  285. data/vendor/git/corpora.git/data/technology/programming_languages_popular.json +38 -0
  286. data/vendor/git/corpora.git/data/technology/social_networking_websites.json +217 -0
  287. data/vendor/git/corpora.git/data/technology/video_hosting_websites.json +98 -0
  288. data/vendor/git/corpora.git/data/transportation/commercial-aircraft.json +242 -0
  289. data/vendor/git/corpora.git/data/transportation/launchVehicleList.json +549 -0
  290. data/vendor/git/corpora.git/data/travel/lcc.json +378 -0
  291. data/vendor/git/corpora.git/data/words/adjs.json +965 -0
  292. data/vendor/git/corpora.git/data/words/adverbs.json +330 -0
  293. data/vendor/git/corpora.git/data/words/closed_pairs.json +203 -0
  294. data/vendor/git/corpora.git/data/words/common.json +986 -0
  295. data/vendor/git/corpora.git/data/words/compounds.json +13380 -0
  296. data/vendor/git/corpora.git/data/words/crash_blossoms.json +68 -0
  297. data/vendor/git/corpora.git/data/words/eggcorns.json +183 -0
  298. data/vendor/git/corpora.git/data/words/emoji/codePage437.json +261 -0
  299. data/vendor/git/corpora.git/data/words/emoji/cute_kaomoji.json +36 -0
  300. data/vendor/git/corpora.git/data/words/emoji/emoji.json +869 -0
  301. data/vendor/git/corpora.git/data/words/encouraging_words.json +53 -0
  302. data/vendor/git/corpora.git/data/words/ergative_verbs.json +286 -0
  303. data/vendor/git/corpora.git/data/words/expletives.json +615 -0
  304. data/vendor/git/corpora.git/data/words/harvard_sentences.json +728 -0
  305. data/vendor/git/corpora.git/data/words/infinitive_verbs.json +635 -0
  306. data/vendor/git/corpora.git/data/words/interjections.json +223 -0
  307. data/vendor/git/corpora.git/data/words/literature/infinitejest.json +155 -0
  308. data/vendor/git/corpora.git/data/words/literature/lovecraft_words.json +61 -0
  309. data/vendor/git/corpora.git/data/words/literature/mr_men_little_miss.json +94 -0
  310. data/vendor/git/corpora.git/data/words/literature/shakespeare_phrases.json +161 -0
  311. data/vendor/git/corpora.git/data/words/literature/shakespeare_sonnets.json +2929 -0
  312. data/vendor/git/corpora.git/data/words/literature/shakespeare_words.json +324 -0
  313. data/vendor/git/corpora.git/data/words/literature/technology_quotes.json +79 -0
  314. data/vendor/git/corpora.git/data/words/nouns.json +997 -0
  315. data/vendor/git/corpora.git/data/words/oprah_quotes.json +47 -0
  316. data/vendor/git/corpora.git/data/words/personal_nouns.json +9314 -0
  317. data/vendor/git/corpora.git/data/words/personal_pronouns.json +61 -0
  318. data/vendor/git/corpora.git/data/words/possessive_pronouns.json +43 -0
  319. data/vendor/git/corpora.git/data/words/prefix_root_suffix.json +3688 -0
  320. data/vendor/git/corpora.git/data/words/prepositions.json +135 -0
  321. data/vendor/git/corpora.git/data/words/proverbs.json +533 -0
  322. data/vendor/git/corpora.git/data/words/resume_action_words.json +142 -0
  323. data/vendor/git/corpora.git/data/words/rhymeless_words.json +125 -0
  324. data/vendor/git/corpora.git/data/words/spells.json +460 -0
  325. data/vendor/git/corpora.git/data/words/state_verbs.json +25 -0
  326. data/vendor/git/corpora.git/data/words/states_of_drunkenness.json +39 -0
  327. data/vendor/git/corpora.git/data/words/stopwords/ar.json +169 -0
  328. data/vendor/git/corpora.git/data/words/stopwords/bg.json +265 -0
  329. data/vendor/git/corpora.git/data/words/stopwords/cs.json +412 -0
  330. data/vendor/git/corpora.git/data/words/stopwords/da.json +70 -0
  331. data/vendor/git/corpora.git/data/words/stopwords/de.json +599 -0
  332. data/vendor/git/corpora.git/data/words/stopwords/en.json +862 -0
  333. data/vendor/git/corpora.git/data/words/stopwords/es.json +450 -0
  334. data/vendor/git/corpora.git/data/words/stopwords/fi.json +754 -0
  335. data/vendor/git/corpora.git/data/words/stopwords/fr.json +501 -0
  336. data/vendor/git/corpora.git/data/words/stopwords/gr.json +159 -0
  337. data/vendor/git/corpora.git/data/words/stopwords/it.json +439 -0
  338. data/vendor/git/corpora.git/data/words/stopwords/jp.json +50 -0
  339. data/vendor/git/corpora.git/data/words/stopwords/lv.json +171 -0
  340. data/vendor/git/corpora.git/data/words/stopwords/nl.json +275 -0
  341. data/vendor/git/corpora.git/data/words/stopwords/no.json +125 -0
  342. data/vendor/git/corpora.git/data/words/stopwords/pl.json +281 -0
  343. data/vendor/git/corpora.git/data/words/stopwords/pt.json +449 -0
  344. data/vendor/git/corpora.git/data/words/stopwords/ru.json +428 -0
  345. data/vendor/git/corpora.git/data/words/stopwords/sk.json +185 -0
  346. data/vendor/git/corpora.git/data/words/stopwords/sv.json +393 -0
  347. data/vendor/git/corpora.git/data/words/stopwords/tr.json +236 -0
  348. data/vendor/git/corpora.git/data/words/strange_words.json +65 -0
  349. data/vendor/git/corpora.git/data/words/ultraconserved.json +1673 -0
  350. data/vendor/git/corpora.git/data/words/units_of_time.json +32 -0
  351. data/vendor/git/corpora.git/data/words/us_president_quotes.json +202 -0
  352. data/vendor/git/corpora.git/data/words/verbs.json +2537 -0
  353. data/vendor/git/corpora.git/data/words/verbs_with_conjugations.json +13313 -0
  354. data/vendor/git/corpora.git/data/words/word_clues/clues_five.json +10296 -0
  355. data/vendor/git/corpora.git/data/words/word_clues/clues_four.json +6329 -0
  356. data/vendor/git/corpora.git/data/words/word_clues/clues_six.json +10909 -0
  357. data/vendor/git/corpora.git/package.json +23 -0
  358. metadata +403 -0
@@ -0,0 +1,2835 @@
1
+ {
2
+ "elements": [{
3
+ "atomic_number": 1,
4
+ "name": "Hydrogen",
5
+ "symbol": "H",
6
+ "atomic_weight": 1,
7
+ "period": 1,
8
+ "group": 1,
9
+ "phase": "gas",
10
+ "most_stable_crystal": "",
11
+ "type": "Nonmetal",
12
+ "ionic_radius": 0.012,
13
+ "atomic_radius": 0.79,
14
+ "electronegativity": 2.2,
15
+ "first_ionization_potential": 13.5984,
16
+ "density": 0.00008988,
17
+ "melting_point": 14.175,
18
+ "boiling_point": 20.28,
19
+ "isotopes": 3,
20
+ "discoverer": "Cavendish",
21
+ "year_of_discovery": "1766",
22
+ "specific_heat_capacity": 14.304,
23
+ "electron_configuration": "1s1",
24
+ "display_row": 1,
25
+ "display_column": 1
26
+ }, {
27
+ "atomic_number": 2,
28
+ "name": "Helium",
29
+ "symbol": "He",
30
+ "atomic_weight": 4,
31
+ "period": 1,
32
+ "group": 18,
33
+ "phase": "gas",
34
+ "most_stable_crystal": "",
35
+ "type": "Noble Gas",
36
+ "ionic_radius": null,
37
+ "atomic_radius": 0.49,
38
+ "electronegativity": null,
39
+ "first_ionization_potential": 24.5874,
40
+ "density": 0.0001785,
41
+ "melting_point": null,
42
+ "boiling_point": 4.22,
43
+ "isotopes": 5,
44
+ "discoverer": "Janssen",
45
+ "year_of_discovery": "1868",
46
+ "specific_heat_capacity": 5.193,
47
+ "electron_configuration": "1s2",
48
+ "display_row": 1,
49
+ "display_column": 18
50
+ }, {
51
+ "atomic_number": 3,
52
+ "name": "Lithium",
53
+ "symbol": "Li",
54
+ "atomic_weight": 6,
55
+ "period": 2,
56
+ "group": 1,
57
+ "phase": "solid",
58
+ "most_stable_crystal": "bcc",
59
+ "type": "Alkali Metal",
60
+ "ionic_radius": 0.76,
61
+ "atomic_radius": 2.1,
62
+ "electronegativity": 0.98,
63
+ "first_ionization_potential": 5.3917,
64
+ "density": 0.534,
65
+ "melting_point": 453.85,
66
+ "boiling_point": 1615,
67
+ "isotopes": 5,
68
+ "discoverer": "Arfvedson",
69
+ "year_of_discovery": "1817",
70
+ "specific_heat_capacity": 3.582,
71
+ "electron_configuration": "[He] 2s1",
72
+ "display_row": 2,
73
+ "display_column": 1
74
+ }, {
75
+ "atomic_number": 4,
76
+ "name": "Beryllium",
77
+ "symbol": "Be",
78
+ "atomic_weight": 9,
79
+ "period": 2,
80
+ "group": 2,
81
+ "phase": "solid",
82
+ "most_stable_crystal": "hex",
83
+ "type": "Alkaline Earth Metal",
84
+ "ionic_radius": 0.35,
85
+ "atomic_radius": 1.4,
86
+ "electronegativity": 1.57,
87
+ "first_ionization_potential": 9.3227,
88
+ "density": 1.85,
89
+ "melting_point": 1560.15,
90
+ "boiling_point": 2742,
91
+ "isotopes": 6,
92
+ "discoverer": "Vaulquelin",
93
+ "year_of_discovery": "1798",
94
+ "specific_heat_capacity": 1.825,
95
+ "electron_configuration": "[He] 2s2",
96
+ "display_row": 2,
97
+ "display_column": 2
98
+ }, {
99
+ "atomic_number": 5,
100
+ "name": "Boron",
101
+ "symbol": "B",
102
+ "atomic_weight": 10,
103
+ "period": 2,
104
+ "group": 13,
105
+ "phase": "solid",
106
+ "most_stable_crystal": "rho",
107
+ "type": "Metalloid",
108
+ "ionic_radius": 0.23,
109
+ "atomic_radius": 1.2,
110
+ "electronegativity": 2.04,
111
+ "first_ionization_potential": 8.298,
112
+ "density": 2.34,
113
+ "melting_point": 2573.15,
114
+ "boiling_point": 4200,
115
+ "isotopes": 6,
116
+ "discoverer": "Gay-Lussac",
117
+ "year_of_discovery": "1808",
118
+ "specific_heat_capacity": 1.026,
119
+ "electron_configuration": "[He] 2s2 2p1",
120
+ "display_row": 2,
121
+ "display_column": 13
122
+ }, {
123
+ "atomic_number": 6,
124
+ "name": "Carbon",
125
+ "symbol": "C",
126
+ "atomic_weight": 12,
127
+ "period": 2,
128
+ "group": 14,
129
+ "phase": "solid",
130
+ "most_stable_crystal": "hex",
131
+ "type": "Nonmetal",
132
+ "ionic_radius": null,
133
+ "atomic_radius": 0.91,
134
+ "electronegativity": 2.55,
135
+ "first_ionization_potential": 11.2603,
136
+ "density": 2.267,
137
+ "melting_point": 3948.15,
138
+ "boiling_point": 4300,
139
+ "isotopes": 7,
140
+ "discoverer": "Prehistoric",
141
+ "year_of_discovery": "",
142
+ "specific_heat_capacity": 0.709,
143
+ "electron_configuration": "[He] 2s2 2p2",
144
+ "display_row": 2,
145
+ "display_column": 14
146
+ }, {
147
+ "atomic_number": 7,
148
+ "name": "Nitrogen",
149
+ "symbol": "N",
150
+ "atomic_weight": 14,
151
+ "period": 2,
152
+ "group": 15,
153
+ "phase": "gas",
154
+ "most_stable_crystal": "",
155
+ "type": "Nonmetal",
156
+ "ionic_radius": 0.13,
157
+ "atomic_radius": 0.75,
158
+ "electronegativity": 3.04,
159
+ "first_ionization_potential": 14.5341,
160
+ "density": 0.0012506,
161
+ "melting_point": 63.29,
162
+ "boiling_point": 77.36,
163
+ "isotopes": 8,
164
+ "discoverer": "Rutherford",
165
+ "year_of_discovery": "1772",
166
+ "specific_heat_capacity": 1.04,
167
+ "electron_configuration": "[He] 2s2 2p3",
168
+ "display_row": 2,
169
+ "display_column": 15
170
+ }, {
171
+ "atomic_number": 8,
172
+ "name": "Oxygen",
173
+ "symbol": "O",
174
+ "atomic_weight": 15,
175
+ "period": 2,
176
+ "group": 16,
177
+ "phase": "gas",
178
+ "most_stable_crystal": "",
179
+ "type": "Nonmetal",
180
+ "ionic_radius": 1.4,
181
+ "atomic_radius": 0.65,
182
+ "electronegativity": 3.44,
183
+ "first_ionization_potential": 13.6181,
184
+ "density": 0.001429,
185
+ "melting_point": 50.5,
186
+ "boiling_point": 90.2,
187
+ "isotopes": 8,
188
+ "discoverer": "Priestley/Scheele",
189
+ "year_of_discovery": "1774",
190
+ "specific_heat_capacity": 0.918,
191
+ "electron_configuration": "[He] 2s2 2p4",
192
+ "display_row": 2,
193
+ "display_column": 16
194
+ }, {
195
+ "atomic_number": 9,
196
+ "name": "Fluorine",
197
+ "symbol": "F",
198
+ "atomic_weight": 18,
199
+ "period": 2,
200
+ "group": 17,
201
+ "phase": "gas",
202
+ "most_stable_crystal": "",
203
+ "type": "Halogen",
204
+ "ionic_radius": 1.3,
205
+ "atomic_radius": 0.57,
206
+ "electronegativity": 3.98,
207
+ "first_ionization_potential": 17.4228,
208
+ "density": 0.001696,
209
+ "melting_point": 53.63,
210
+ "boiling_point": 85.03,
211
+ "isotopes": 6,
212
+ "discoverer": "Moissan",
213
+ "year_of_discovery": "1886",
214
+ "specific_heat_capacity": 0.824,
215
+ "electron_configuration": "[He] 2s2 2p5",
216
+ "display_row": 2,
217
+ "display_column": 17
218
+ }, {
219
+ "atomic_number": 10,
220
+ "name": "Neon",
221
+ "symbol": "Ne",
222
+ "atomic_weight": 20,
223
+ "period": 2,
224
+ "group": 18,
225
+ "phase": "gas",
226
+ "most_stable_crystal": "",
227
+ "type": "Noble Gas",
228
+ "ionic_radius": null,
229
+ "atomic_radius": 0.51,
230
+ "electronegativity": null,
231
+ "first_ionization_potential": 21.5645,
232
+ "density": 0.0008999,
233
+ "melting_point": 24.703,
234
+ "boiling_point": 27.07,
235
+ "isotopes": 8,
236
+ "discoverer": "Ramsay and Travers",
237
+ "year_of_discovery": "1898",
238
+ "specific_heat_capacity": 1.03,
239
+ "electron_configuration": "[He] 2s2 2p6",
240
+ "display_row": 2,
241
+ "display_column": 18
242
+ }, {
243
+ "atomic_number": 11,
244
+ "name": "Sodium",
245
+ "symbol": "Na",
246
+ "atomic_weight": 22,
247
+ "period": 3,
248
+ "group": 1,
249
+ "phase": "solid",
250
+ "most_stable_crystal": "bcc",
251
+ "type": "Alkali Metal",
252
+ "ionic_radius": 1,
253
+ "atomic_radius": 2.2,
254
+ "electronegativity": 0.93,
255
+ "first_ionization_potential": 5.1391,
256
+ "density": 0.971,
257
+ "melting_point": 371.15,
258
+ "boiling_point": 1156,
259
+ "isotopes": 7,
260
+ "discoverer": "Davy",
261
+ "year_of_discovery": "1807",
262
+ "specific_heat_capacity": 1.228,
263
+ "electron_configuration": "[Ne] 3s1",
264
+ "display_row": 3,
265
+ "display_column": 1
266
+ }, {
267
+ "atomic_number": 12,
268
+ "name": "Magnesium",
269
+ "symbol": "Mg",
270
+ "atomic_weight": 24,
271
+ "period": 3,
272
+ "group": 2,
273
+ "phase": "solid",
274
+ "most_stable_crystal": "hex",
275
+ "type": "Alkaline Earth Metal",
276
+ "ionic_radius": 0.72,
277
+ "atomic_radius": 1.7,
278
+ "electronegativity": 1.31,
279
+ "first_ionization_potential": 7.6462,
280
+ "density": 1.738,
281
+ "melting_point": 923.15,
282
+ "boiling_point": 1363,
283
+ "isotopes": 8,
284
+ "discoverer": "Black",
285
+ "year_of_discovery": "1755",
286
+ "specific_heat_capacity": 1.023,
287
+ "electron_configuration": "[Ne] 3s2",
288
+ "display_row": 3,
289
+ "display_column": 2
290
+ }, {
291
+ "atomic_number": 13,
292
+ "name": "Aluminum",
293
+ "symbol": "Al",
294
+ "atomic_weight": 26,
295
+ "period": 3,
296
+ "group": 13,
297
+ "phase": "solid",
298
+ "most_stable_crystal": "fcc",
299
+ "type": "Metal",
300
+ "ionic_radius": 0.54,
301
+ "atomic_radius": 1.8,
302
+ "electronegativity": 1.61,
303
+ "first_ionization_potential": 5.9858,
304
+ "density": 2.698,
305
+ "melting_point": 933.4,
306
+ "boiling_point": 2792,
307
+ "isotopes": 8,
308
+ "discoverer": "W�hler",
309
+ "year_of_discovery": "1827",
310
+ "specific_heat_capacity": 0.897,
311
+ "electron_configuration": "[Ne] 3s2 3p1",
312
+ "display_row": 3,
313
+ "display_column": 13
314
+ }, {
315
+ "atomic_number": 14,
316
+ "name": "Silicon",
317
+ "symbol": "Si",
318
+ "atomic_weight": 28,
319
+ "period": 3,
320
+ "group": 14,
321
+ "phase": "solid",
322
+ "most_stable_crystal": "fcc",
323
+ "type": "Metalloid",
324
+ "ionic_radius": 0.4,
325
+ "atomic_radius": 1.5,
326
+ "electronegativity": 1.9,
327
+ "first_ionization_potential": 8.1517,
328
+ "density": 2.3296,
329
+ "melting_point": 1683.15,
330
+ "boiling_point": 3538,
331
+ "isotopes": 8,
332
+ "discoverer": "Berzelius",
333
+ "year_of_discovery": "1824",
334
+ "specific_heat_capacity": 0.705,
335
+ "electron_configuration": "[Ne] 3s2 3p2",
336
+ "display_row": 3,
337
+ "display_column": 14
338
+ }, {
339
+ "atomic_number": 15,
340
+ "name": "Phosphorus",
341
+ "symbol": "P",
342
+ "atomic_weight": 30,
343
+ "period": 3,
344
+ "group": 15,
345
+ "phase": "solid",
346
+ "most_stable_crystal": "cub",
347
+ "type": "Nonmetal",
348
+ "ionic_radius": 0.38,
349
+ "atomic_radius": 1.2,
350
+ "electronegativity": 2.19,
351
+ "first_ionization_potential": 10.4867,
352
+ "density": 1.82,
353
+ "melting_point": 317.25,
354
+ "boiling_point": 553,
355
+ "isotopes": 7,
356
+ "discoverer": "BranBrand",
357
+ "year_of_discovery": "1669",
358
+ "specific_heat_capacity": 0.769,
359
+ "electron_configuration": "[Ne] 3s2 3p3",
360
+ "display_row": 3,
361
+ "display_column": 15
362
+ }, {
363
+ "atomic_number": 16,
364
+ "name": "Sulfur",
365
+ "symbol": "S",
366
+ "atomic_weight": 32,
367
+ "period": 3,
368
+ "group": 16,
369
+ "phase": "solid",
370
+ "most_stable_crystal": "orth",
371
+ "type": "Nonmetal",
372
+ "ionic_radius": 0.37,
373
+ "atomic_radius": 1.1,
374
+ "electronegativity": 2.58,
375
+ "first_ionization_potential": 10.36,
376
+ "density": 2.067,
377
+ "melting_point": 388.51,
378
+ "boiling_point": 717.8,
379
+ "isotopes": 10,
380
+ "discoverer": "Prehistoric",
381
+ "year_of_discovery": "",
382
+ "specific_heat_capacity": 0.71,
383
+ "electron_configuration": "[Ne] 3s2 3p4",
384
+ "display_row": 3,
385
+ "display_column": 16
386
+ }, {
387
+ "atomic_number": 17,
388
+ "name": "Chlorine",
389
+ "symbol": "Cl",
390
+ "atomic_weight": 35,
391
+ "period": 3,
392
+ "group": 17,
393
+ "phase": "gas",
394
+ "most_stable_crystal": "",
395
+ "type": "Halogen",
396
+ "ionic_radius": 1.8,
397
+ "atomic_radius": 0.97,
398
+ "electronegativity": 3.16,
399
+ "first_ionization_potential": 12.9676,
400
+ "density": 0.003214,
401
+ "melting_point": 172.31,
402
+ "boiling_point": 239.11,
403
+ "isotopes": 11,
404
+ "discoverer": "Scheele",
405
+ "year_of_discovery": "1774",
406
+ "specific_heat_capacity": 0.479,
407
+ "electron_configuration": "[Ne] 3s2 3p5",
408
+ "display_row": 3,
409
+ "display_column": 17
410
+ }, {
411
+ "atomic_number": 18,
412
+ "name": "Argon",
413
+ "symbol": "Ar",
414
+ "atomic_weight": 39,
415
+ "period": 3,
416
+ "group": 18,
417
+ "phase": "gas",
418
+ "most_stable_crystal": "",
419
+ "type": "Noble Gas",
420
+ "ionic_radius": null,
421
+ "atomic_radius": 0.88,
422
+ "electronegativity": null,
423
+ "first_ionization_potential": 15.7596,
424
+ "density": 0.0017837,
425
+ "melting_point": 83.96,
426
+ "boiling_point": 87.3,
427
+ "isotopes": 8,
428
+ "discoverer": "Rayleigh and Ramsay",
429
+ "year_of_discovery": "1894",
430
+ "specific_heat_capacity": 0.52,
431
+ "electron_configuration": "[Ne] 3s2 3p6",
432
+ "display_row": 3,
433
+ "display_column": 18
434
+ }, {
435
+ "atomic_number": 19,
436
+ "name": "Potassium",
437
+ "symbol": "K",
438
+ "atomic_weight": 39,
439
+ "period": 4,
440
+ "group": 1,
441
+ "phase": "solid",
442
+ "most_stable_crystal": "bcc",
443
+ "type": "Alkali Metal",
444
+ "ionic_radius": 1.4,
445
+ "atomic_radius": 2.8,
446
+ "electronegativity": 0.82,
447
+ "first_ionization_potential": 4.3407,
448
+ "density": 0.862,
449
+ "melting_point": 336.5,
450
+ "boiling_point": 1032,
451
+ "isotopes": 10,
452
+ "discoverer": "Davy",
453
+ "year_of_discovery": "1807",
454
+ "specific_heat_capacity": 0.757,
455
+ "electron_configuration": "[Ar] 4s1",
456
+ "display_row": 4,
457
+ "display_column": 1
458
+ }, {
459
+ "atomic_number": 20,
460
+ "name": "Calcium",
461
+ "symbol": "Ca",
462
+ "atomic_weight": 40,
463
+ "period": 4,
464
+ "group": 2,
465
+ "phase": "solid",
466
+ "most_stable_crystal": "fcc",
467
+ "type": "Alkaline Earth Metal",
468
+ "ionic_radius": 0.99,
469
+ "atomic_radius": 2.2,
470
+ "electronegativity": 1,
471
+ "first_ionization_potential": 6.1132,
472
+ "density": 1.54,
473
+ "melting_point": 1112.15,
474
+ "boiling_point": 1757,
475
+ "isotopes": 14,
476
+ "discoverer": "Davy",
477
+ "year_of_discovery": "1808",
478
+ "specific_heat_capacity": 0.647,
479
+ "electron_configuration": "[Ar] 4s2",
480
+ "display_row": 4,
481
+ "display_column": 2
482
+ }, {
483
+ "atomic_number": 21,
484
+ "name": "Scandium",
485
+ "symbol": "Sc",
486
+ "atomic_weight": 44,
487
+ "period": 4,
488
+ "group": 3,
489
+ "phase": "solid",
490
+ "most_stable_crystal": "hex",
491
+ "type": "Transition Metal",
492
+ "ionic_radius": 0.75,
493
+ "atomic_radius": 2.1,
494
+ "electronegativity": 1.36,
495
+ "first_ionization_potential": 6.5615,
496
+ "density": 2.989,
497
+ "melting_point": 1812.15,
498
+ "boiling_point": 3109,
499
+ "isotopes": 15,
500
+ "discoverer": "Nilson",
501
+ "year_of_discovery": "1878",
502
+ "specific_heat_capacity": 0.568,
503
+ "electron_configuration": "[Ar] 3d1 4s2",
504
+ "display_row": 4,
505
+ "display_column": 3
506
+ }, {
507
+ "atomic_number": 22,
508
+ "name": "Titanium",
509
+ "symbol": "Ti",
510
+ "atomic_weight": 47,
511
+ "period": 4,
512
+ "group": 4,
513
+ "phase": "solid",
514
+ "most_stable_crystal": "hex",
515
+ "type": "Transition Metal",
516
+ "ionic_radius": 0.61,
517
+ "atomic_radius": 2,
518
+ "electronegativity": 1.54,
519
+ "first_ionization_potential": 6.8281,
520
+ "density": 4.54,
521
+ "melting_point": 1933.15,
522
+ "boiling_point": 3560,
523
+ "isotopes": 9,
524
+ "discoverer": "Gregor",
525
+ "year_of_discovery": "1791",
526
+ "specific_heat_capacity": 0.523,
527
+ "electron_configuration": "[Ar] 3d2 4s2",
528
+ "display_row": 4,
529
+ "display_column": 4
530
+ }, {
531
+ "atomic_number": 23,
532
+ "name": "Vanadium",
533
+ "symbol": "V",
534
+ "atomic_weight": 50,
535
+ "period": 4,
536
+ "group": 5,
537
+ "phase": "solid",
538
+ "most_stable_crystal": "bcc",
539
+ "type": "Transition Metal",
540
+ "ionic_radius": 0.59,
541
+ "atomic_radius": 1.9,
542
+ "electronegativity": 1.63,
543
+ "first_ionization_potential": 6.7462,
544
+ "density": 6.11,
545
+ "melting_point": 2175.15,
546
+ "boiling_point": 3680,
547
+ "isotopes": 9,
548
+ "discoverer": "del Rio",
549
+ "year_of_discovery": "1801",
550
+ "specific_heat_capacity": 0.489,
551
+ "electron_configuration": "[Ar] 3d3 4s2",
552
+ "display_row": 4,
553
+ "display_column": 5
554
+ }, {
555
+ "atomic_number": 24,
556
+ "name": "Chromium",
557
+ "symbol": "Cr",
558
+ "atomic_weight": 51,
559
+ "period": 4,
560
+ "group": 6,
561
+ "phase": "solid",
562
+ "most_stable_crystal": "bcc",
563
+ "type": "Transition Metal",
564
+ "ionic_radius": 0.52,
565
+ "atomic_radius": 1.9,
566
+ "electronegativity": 1.66,
567
+ "first_ionization_potential": 6.7665,
568
+ "density": 7.15,
569
+ "melting_point": 2130.15,
570
+ "boiling_point": 2944,
571
+ "isotopes": 9,
572
+ "discoverer": "Vauquelin",
573
+ "year_of_discovery": "1797",
574
+ "specific_heat_capacity": 0.449,
575
+ "electron_configuration": "[Ar] 3d5 4s1",
576
+ "display_row": 4,
577
+ "display_column": 6
578
+ }, {
579
+ "atomic_number": 25,
580
+ "name": "Manganese",
581
+ "symbol": "Mn",
582
+ "atomic_weight": 54,
583
+ "period": 4,
584
+ "group": 7,
585
+ "phase": "solid",
586
+ "most_stable_crystal": "bcc",
587
+ "type": "Transition Metal",
588
+ "ionic_radius": 0.46,
589
+ "atomic_radius": 1.8,
590
+ "electronegativity": 1.55,
591
+ "first_ionization_potential": 7.434,
592
+ "density": 7.44,
593
+ "melting_point": 1519.15,
594
+ "boiling_point": 2334,
595
+ "isotopes": 11,
596
+ "discoverer": "Gahn, Scheele",
597
+ "year_of_discovery": "1774",
598
+ "specific_heat_capacity": 0.479,
599
+ "electron_configuration": "[Ar] 3d5 4s2",
600
+ "display_row": 4,
601
+ "display_column": 7
602
+ }, {
603
+ "atomic_number": 26,
604
+ "name": "Iron",
605
+ "symbol": "Fe",
606
+ "atomic_weight": 55,
607
+ "period": 4,
608
+ "group": 8,
609
+ "phase": "solid",
610
+ "most_stable_crystal": "bcc",
611
+ "type": "Transition Metal",
612
+ "ionic_radius": 0.65,
613
+ "atomic_radius": 1.7,
614
+ "electronegativity": 1.83,
615
+ "first_ionization_potential": 7.9024,
616
+ "density": 7.874,
617
+ "melting_point": 1808.15,
618
+ "boiling_point": 3134,
619
+ "isotopes": 10,
620
+ "discoverer": "Prehistoric",
621
+ "year_of_discovery": "",
622
+ "specific_heat_capacity": 0.449,
623
+ "electron_configuration": "[Ar] 3d6 4s2",
624
+ "display_row": 4,
625
+ "display_column": 8
626
+ }, {
627
+ "atomic_number": 27,
628
+ "name": "Cobalt",
629
+ "symbol": "Co",
630
+ "atomic_weight": 58,
631
+ "period": 4,
632
+ "group": 9,
633
+ "phase": "solid",
634
+ "most_stable_crystal": "hex",
635
+ "type": "Transition Metal",
636
+ "ionic_radius": 0.75,
637
+ "atomic_radius": 1.7,
638
+ "electronegativity": 1.88,
639
+ "first_ionization_potential": 7.881,
640
+ "density": 8.86,
641
+ "melting_point": 1768.15,
642
+ "boiling_point": 3200,
643
+ "isotopes": 14,
644
+ "discoverer": "Brandt",
645
+ "year_of_discovery": "1735",
646
+ "specific_heat_capacity": 0.421,
647
+ "electron_configuration": "[Ar] 3d7 4s2",
648
+ "display_row": 4,
649
+ "display_column": 9
650
+ }, {
651
+ "atomic_number": 28,
652
+ "name": "Nickel",
653
+ "symbol": "Ni",
654
+ "atomic_weight": 58,
655
+ "period": 4,
656
+ "group": 10,
657
+ "phase": "solid",
658
+ "most_stable_crystal": "fcc",
659
+ "type": "Transition Metal",
660
+ "ionic_radius": 0.69,
661
+ "atomic_radius": 1.6,
662
+ "electronegativity": 1.91,
663
+ "first_ionization_potential": 7.6398,
664
+ "density": 8.912,
665
+ "melting_point": 1726.15,
666
+ "boiling_point": 3186,
667
+ "isotopes": 11,
668
+ "discoverer": "Cronstedt",
669
+ "year_of_discovery": "1751",
670
+ "specific_heat_capacity": 0.444,
671
+ "electron_configuration": "[Ar] 3d8 4s2",
672
+ "display_row": 4,
673
+ "display_column": 10
674
+ }, {
675
+ "atomic_number": 29,
676
+ "name": "Copper",
677
+ "symbol": "Cu",
678
+ "atomic_weight": 63,
679
+ "period": 4,
680
+ "group": 11,
681
+ "phase": "solid",
682
+ "most_stable_crystal": "fcc",
683
+ "type": "Transition Metal",
684
+ "ionic_radius": 0.73,
685
+ "atomic_radius": 1.6,
686
+ "electronegativity": 1.9,
687
+ "first_ionization_potential": 7.7264,
688
+ "density": 8.96,
689
+ "melting_point": 1357.75,
690
+ "boiling_point": 2835,
691
+ "isotopes": 11,
692
+ "discoverer": "Prehistoric",
693
+ "year_of_discovery": "",
694
+ "specific_heat_capacity": 0.385,
695
+ "electron_configuration": "[Ar] 3d10 4s1",
696
+ "display_row": 4,
697
+ "display_column": 11
698
+ }, {
699
+ "atomic_number": 30,
700
+ "name": "Zinc",
701
+ "symbol": "Zn",
702
+ "atomic_weight": 65,
703
+ "period": 4,
704
+ "group": 12,
705
+ "phase": "solid",
706
+ "most_stable_crystal": "hex",
707
+ "type": "Transition Metal",
708
+ "ionic_radius": 0.74,
709
+ "atomic_radius": 1.5,
710
+ "electronegativity": 1.65,
711
+ "first_ionization_potential": 9.3942,
712
+ "density": 7.134,
713
+ "melting_point": 692.88,
714
+ "boiling_point": 1180,
715
+ "isotopes": 15,
716
+ "discoverer": "Prehistoric",
717
+ "year_of_discovery": "",
718
+ "specific_heat_capacity": 0.388,
719
+ "electron_configuration": "[Ar] 3d10 4s2",
720
+ "display_row": 4,
721
+ "display_column": 12
722
+ }, {
723
+ "atomic_number": 31,
724
+ "name": "Gallium",
725
+ "symbol": "Ga",
726
+ "atomic_weight": 69,
727
+ "period": 4,
728
+ "group": 13,
729
+ "phase": "solid",
730
+ "most_stable_crystal": "orth",
731
+ "type": "Metal",
732
+ "ionic_radius": 0.62,
733
+ "atomic_radius": 1.8,
734
+ "electronegativity": 1.81,
735
+ "first_ionization_potential": 5.9993,
736
+ "density": 5.907,
737
+ "melting_point": 302.91,
738
+ "boiling_point": 2477,
739
+ "isotopes": 14,
740
+ "discoverer": "de Boisbaudran",
741
+ "year_of_discovery": "1875",
742
+ "specific_heat_capacity": 0.371,
743
+ "electron_configuration": "[Ar] 3d10 4s2 4p1",
744
+ "display_row": 4,
745
+ "display_column": 13
746
+ }, {
747
+ "atomic_number": 32,
748
+ "name": "Germanium",
749
+ "symbol": "Ge",
750
+ "atomic_weight": 72,
751
+ "period": 4,
752
+ "group": 14,
753
+ "phase": "solid",
754
+ "most_stable_crystal": "fcc",
755
+ "type": "Metalloid",
756
+ "ionic_radius": 0.53,
757
+ "atomic_radius": 1.5,
758
+ "electronegativity": 2.01,
759
+ "first_ionization_potential": 7.8994,
760
+ "density": 5.323,
761
+ "melting_point": 1211.45,
762
+ "boiling_point": 3106,
763
+ "isotopes": 17,
764
+ "discoverer": "Winkler",
765
+ "year_of_discovery": "1886",
766
+ "specific_heat_capacity": 0.32,
767
+ "electron_configuration": "[Ar] 3d10 4s2 4p2",
768
+ "display_row": 4,
769
+ "display_column": 14
770
+ }, {
771
+ "atomic_number": 33,
772
+ "name": "Arsenic",
773
+ "symbol": "As",
774
+ "atomic_weight": 74,
775
+ "period": 4,
776
+ "group": 15,
777
+ "phase": "solid",
778
+ "most_stable_crystal": "rho",
779
+ "type": "Metalloid",
780
+ "ionic_radius": 0.58,
781
+ "atomic_radius": 1.3,
782
+ "electronegativity": 2.18,
783
+ "first_ionization_potential": 9.7886,
784
+ "density": 5.776,
785
+ "melting_point": 1090.15,
786
+ "boiling_point": 887,
787
+ "isotopes": 14,
788
+ "discoverer": "Albertus Magnus",
789
+ "year_of_discovery": "1250",
790
+ "specific_heat_capacity": 0.329,
791
+ "electron_configuration": "[Ar] 3d10 4s2 4p3",
792
+ "display_row": 4,
793
+ "display_column": 15
794
+ }, {
795
+ "atomic_number": 34,
796
+ "name": "Selenium",
797
+ "symbol": "Se",
798
+ "atomic_weight": 78,
799
+ "period": 4,
800
+ "group": 16,
801
+ "phase": "solid",
802
+ "most_stable_crystal": "hex",
803
+ "type": "Nonmetal",
804
+ "ionic_radius": 0.5,
805
+ "atomic_radius": 1.2,
806
+ "electronegativity": 2.55,
807
+ "first_ionization_potential": 9.7524,
808
+ "density": 4.809,
809
+ "melting_point": 494.15,
810
+ "boiling_point": 958,
811
+ "isotopes": 20,
812
+ "discoverer": "Berzelius",
813
+ "year_of_discovery": "1817",
814
+ "specific_heat_capacity": 0.321,
815
+ "electron_configuration": "[Ar] 3d10 4s2 4p4",
816
+ "display_row": 4,
817
+ "display_column": 16
818
+ }, {
819
+ "atomic_number": 35,
820
+ "name": "Bromine",
821
+ "symbol": "Br",
822
+ "atomic_weight": 79,
823
+ "period": 4,
824
+ "group": 17,
825
+ "phase": "liq",
826
+ "most_stable_crystal": "",
827
+ "type": "Halogen",
828
+ "ionic_radius": 2,
829
+ "atomic_radius": 1.1,
830
+ "electronegativity": 2.96,
831
+ "first_ionization_potential": 11.8138,
832
+ "density": 3.122,
833
+ "melting_point": 266.05,
834
+ "boiling_point": 332,
835
+ "isotopes": 19,
836
+ "discoverer": "Balard",
837
+ "year_of_discovery": "1826",
838
+ "specific_heat_capacity": 0.474,
839
+ "electron_configuration": "[Ar] 3d10 4s2 4p5",
840
+ "display_row": 4,
841
+ "display_column": 17
842
+ }, {
843
+ "atomic_number": 36,
844
+ "name": "Krypton",
845
+ "symbol": "Kr",
846
+ "atomic_weight": 83,
847
+ "period": 4,
848
+ "group": 18,
849
+ "phase": "gas",
850
+ "most_stable_crystal": "",
851
+ "type": "Noble Gas",
852
+ "ionic_radius": null,
853
+ "atomic_radius": 1,
854
+ "electronegativity": null,
855
+ "first_ionization_potential": 13.9996,
856
+ "density": 0.003733,
857
+ "melting_point": 115.93,
858
+ "boiling_point": 119.93,
859
+ "isotopes": 23,
860
+ "discoverer": "Ramsay and Travers",
861
+ "year_of_discovery": "1898",
862
+ "specific_heat_capacity": 0.248,
863
+ "electron_configuration": "[Ar] 3d10 4s2 4p6",
864
+ "display_row": 4,
865
+ "display_column": 18
866
+ }, {
867
+ "atomic_number": 37,
868
+ "name": "Rubidium",
869
+ "symbol": "Rb",
870
+ "atomic_weight": 85,
871
+ "period": 5,
872
+ "group": 1,
873
+ "phase": "solid",
874
+ "most_stable_crystal": "bcc",
875
+ "type": "Alkali Metal",
876
+ "ionic_radius": 1.5,
877
+ "atomic_radius": 3,
878
+ "electronegativity": 0.82,
879
+ "first_ionization_potential": 4.1771,
880
+ "density": 1.532,
881
+ "melting_point": 312.79,
882
+ "boiling_point": 961,
883
+ "isotopes": 20,
884
+ "discoverer": "Bunsen and Kirchoff",
885
+ "year_of_discovery": "1861",
886
+ "specific_heat_capacity": 0.363,
887
+ "electron_configuration": "[Kr] 5s1",
888
+ "display_row": 5,
889
+ "display_column": 1
890
+ }, {
891
+ "atomic_number": 38,
892
+ "name": "Strontium",
893
+ "symbol": "Sr",
894
+ "atomic_weight": 87,
895
+ "period": 5,
896
+ "group": 2,
897
+ "phase": "solid",
898
+ "most_stable_crystal": "fcc",
899
+ "type": "Alkaline Earth Metal",
900
+ "ionic_radius": 1.1,
901
+ "atomic_radius": 2.5,
902
+ "electronegativity": 0.95,
903
+ "first_ionization_potential": 5.6949,
904
+ "density": 2.64,
905
+ "melting_point": 1042.15,
906
+ "boiling_point": 1655,
907
+ "isotopes": 18,
908
+ "discoverer": "Davy",
909
+ "year_of_discovery": "1808",
910
+ "specific_heat_capacity": 0.301,
911
+ "electron_configuration": "[Kr] 5s2",
912
+ "display_row": 5,
913
+ "display_column": 2
914
+ }, {
915
+ "atomic_number": 39,
916
+ "name": "Yttrium",
917
+ "symbol": "Y",
918
+ "atomic_weight": 88,
919
+ "period": 5,
920
+ "group": 3,
921
+ "phase": "solid",
922
+ "most_stable_crystal": "hex",
923
+ "type": "Transition Metal",
924
+ "ionic_radius": 0.9,
925
+ "atomic_radius": 2.3,
926
+ "electronegativity": 1.22,
927
+ "first_ionization_potential": 6.2173,
928
+ "density": 4.469,
929
+ "melting_point": 1799.15,
930
+ "boiling_point": 3609,
931
+ "isotopes": 21,
932
+ "discoverer": "Gadolin",
933
+ "year_of_discovery": "1794",
934
+ "specific_heat_capacity": 0.298,
935
+ "electron_configuration": "[Kr] 4d1 5s2",
936
+ "display_row": 5,
937
+ "display_column": 3
938
+ }, {
939
+ "atomic_number": 40,
940
+ "name": "Zirconium",
941
+ "symbol": "Zr",
942
+ "atomic_weight": 91,
943
+ "period": 5,
944
+ "group": 4,
945
+ "phase": "solid",
946
+ "most_stable_crystal": "hex",
947
+ "type": "Transition Metal",
948
+ "ionic_radius": 0.72,
949
+ "atomic_radius": 2.2,
950
+ "electronegativity": 1.33,
951
+ "first_ionization_potential": 6.6339,
952
+ "density": 6.506,
953
+ "melting_point": 2125.15,
954
+ "boiling_point": 4682,
955
+ "isotopes": 20,
956
+ "discoverer": "Klaproth",
957
+ "year_of_discovery": "1789",
958
+ "specific_heat_capacity": 0.278,
959
+ "electron_configuration": "[Kr] 4d2 5s2",
960
+ "display_row": 5,
961
+ "display_column": 4
962
+ }, {
963
+ "atomic_number": 41,
964
+ "name": "Niobium",
965
+ "symbol": "Nb",
966
+ "atomic_weight": 92,
967
+ "period": 5,
968
+ "group": 5,
969
+ "phase": "solid",
970
+ "most_stable_crystal": "bcc",
971
+ "type": "Transition Metal",
972
+ "ionic_radius": 0.69,
973
+ "atomic_radius": 2.1,
974
+ "electronegativity": 1.6,
975
+ "first_ionization_potential": 6.7589,
976
+ "density": 8.57,
977
+ "melting_point": 2741.15,
978
+ "boiling_point": 5017,
979
+ "isotopes": 24,
980
+ "discoverer": "Hatchett",
981
+ "year_of_discovery": "1801",
982
+ "specific_heat_capacity": 0.265,
983
+ "electron_configuration": "[Kr] 4d4 5s1",
984
+ "display_row": 5,
985
+ "display_column": 5
986
+ }, {
987
+ "atomic_number": 42,
988
+ "name": "Molybdenum",
989
+ "symbol": "Mo",
990
+ "atomic_weight": 95,
991
+ "period": 5,
992
+ "group": 6,
993
+ "phase": "solid",
994
+ "most_stable_crystal": "bcc",
995
+ "type": "Transition Metal",
996
+ "ionic_radius": 0.65,
997
+ "atomic_radius": 2,
998
+ "electronegativity": 2.16,
999
+ "first_ionization_potential": 7.0924,
1000
+ "density": 10.22,
1001
+ "melting_point": 2890.15,
1002
+ "boiling_point": 4912,
1003
+ "isotopes": 20,
1004
+ "discoverer": "Scheele",
1005
+ "year_of_discovery": "1778",
1006
+ "specific_heat_capacity": 0.251,
1007
+ "electron_configuration": "[Kr] 4d5 5s1",
1008
+ "display_row": 5,
1009
+ "display_column": 6
1010
+ }, {
1011
+ "atomic_number": 43,
1012
+ "name": "Technetium",
1013
+ "symbol": "Tc",
1014
+ "atomic_weight": 98,
1015
+ "period": 5,
1016
+ "group": 7,
1017
+ "phase": "artificial",
1018
+ "most_stable_crystal": "hex",
1019
+ "type": "Transition Metal",
1020
+ "ionic_radius": 0.56,
1021
+ "atomic_radius": 2,
1022
+ "electronegativity": 1.9,
1023
+ "first_ionization_potential": 7.28,
1024
+ "density": 11.5,
1025
+ "melting_point": 2473.15,
1026
+ "boiling_point": 5150,
1027
+ "isotopes": 23,
1028
+ "discoverer": "Perrier and Segr�",
1029
+ "year_of_discovery": "1937",
1030
+ "specific_heat_capacity": null,
1031
+ "electron_configuration": "[Kr] 4d5 5s2",
1032
+ "display_row": 5,
1033
+ "display_column": 7
1034
+ }, {
1035
+ "atomic_number": 44,
1036
+ "name": "Ruthenium",
1037
+ "symbol": "Ru",
1038
+ "atomic_weight": 101,
1039
+ "period": 5,
1040
+ "group": 8,
1041
+ "phase": "solid",
1042
+ "most_stable_crystal": "hex",
1043
+ "type": "Transition Metal",
1044
+ "ionic_radius": 0.68,
1045
+ "atomic_radius": 1.9,
1046
+ "electronegativity": 2.2,
1047
+ "first_ionization_potential": 7.3605,
1048
+ "density": 12.37,
1049
+ "melting_point": 2523.15,
1050
+ "boiling_point": 4423,
1051
+ "isotopes": 16,
1052
+ "discoverer": "Klaus",
1053
+ "year_of_discovery": "1844",
1054
+ "specific_heat_capacity": 0.238,
1055
+ "electron_configuration": "[Kr] 4d7 5s1",
1056
+ "display_row": 5,
1057
+ "display_column": 8
1058
+ }, {
1059
+ "atomic_number": 45,
1060
+ "name": "Rhodium",
1061
+ "symbol": "Rh",
1062
+ "atomic_weight": 102,
1063
+ "period": 5,
1064
+ "group": 9,
1065
+ "phase": "solid",
1066
+ "most_stable_crystal": "fcc",
1067
+ "type": "Transition Metal",
1068
+ "ionic_radius": 0.68,
1069
+ "atomic_radius": 1.8,
1070
+ "electronegativity": 2.28,
1071
+ "first_ionization_potential": 7.4589,
1072
+ "density": 12.41,
1073
+ "melting_point": 2239.15,
1074
+ "boiling_point": 3968,
1075
+ "isotopes": 20,
1076
+ "discoverer": "Wollaston",
1077
+ "year_of_discovery": "1803",
1078
+ "specific_heat_capacity": 0.243,
1079
+ "electron_configuration": "[Kr] 4d8 5s1",
1080
+ "display_row": 5,
1081
+ "display_column": 9
1082
+ }, {
1083
+ "atomic_number": 46,
1084
+ "name": "Palladium",
1085
+ "symbol": "Pd",
1086
+ "atomic_weight": 106,
1087
+ "period": 5,
1088
+ "group": 10,
1089
+ "phase": "solid",
1090
+ "most_stable_crystal": "fcc",
1091
+ "type": "Transition Metal",
1092
+ "ionic_radius": 0.86,
1093
+ "atomic_radius": 1.8,
1094
+ "electronegativity": 2.2,
1095
+ "first_ionization_potential": 8.3369,
1096
+ "density": 12.02,
1097
+ "melting_point": 1825.15,
1098
+ "boiling_point": 3236,
1099
+ "isotopes": 21,
1100
+ "discoverer": "Wollaston",
1101
+ "year_of_discovery": "1803",
1102
+ "specific_heat_capacity": 0.244,
1103
+ "electron_configuration": "[Kr] 4d10",
1104
+ "display_row": 5,
1105
+ "display_column": 10
1106
+ }, {
1107
+ "atomic_number": 47,
1108
+ "name": "Silver",
1109
+ "symbol": "Ag",
1110
+ "atomic_weight": 107,
1111
+ "period": 5,
1112
+ "group": 11,
1113
+ "phase": "solid",
1114
+ "most_stable_crystal": "fcc",
1115
+ "type": "Transition Metal",
1116
+ "ionic_radius": 1.3,
1117
+ "atomic_radius": 1.8,
1118
+ "electronegativity": 1.93,
1119
+ "first_ionization_potential": 7.5762,
1120
+ "density": 10.501,
1121
+ "melting_point": 1234.15,
1122
+ "boiling_point": 2435,
1123
+ "isotopes": 27,
1124
+ "discoverer": "Prehistoric",
1125
+ "year_of_discovery": "",
1126
+ "specific_heat_capacity": 0.235,
1127
+ "electron_configuration": "[Kr] 4d10 5s1",
1128
+ "display_row": 5,
1129
+ "display_column": 11
1130
+ }, {
1131
+ "atomic_number": 48,
1132
+ "name": "Cadmium",
1133
+ "symbol": "Cd",
1134
+ "atomic_weight": 112,
1135
+ "period": 5,
1136
+ "group": 12,
1137
+ "phase": "solid",
1138
+ "most_stable_crystal": "hex",
1139
+ "type": "Transition Metal",
1140
+ "ionic_radius": 0.97,
1141
+ "atomic_radius": 1.7,
1142
+ "electronegativity": 1.69,
1143
+ "first_ionization_potential": 8.9938,
1144
+ "density": 8.69,
1145
+ "melting_point": 594.33,
1146
+ "boiling_point": 1040,
1147
+ "isotopes": 22,
1148
+ "discoverer": "Stromeyer",
1149
+ "year_of_discovery": "1817",
1150
+ "specific_heat_capacity": 0.232,
1151
+ "electron_configuration": "[Kr] 4d10 5s2",
1152
+ "display_row": 5,
1153
+ "display_column": 12
1154
+ }, {
1155
+ "atomic_number": 49,
1156
+ "name": "Indium",
1157
+ "symbol": "In",
1158
+ "atomic_weight": 114,
1159
+ "period": 5,
1160
+ "group": 13,
1161
+ "phase": "solid",
1162
+ "most_stable_crystal": "tet",
1163
+ "type": "Metal",
1164
+ "ionic_radius": 0.8,
1165
+ "atomic_radius": 2,
1166
+ "electronegativity": 1.78,
1167
+ "first_ionization_potential": 5.7864,
1168
+ "density": 7.31,
1169
+ "melting_point": 429.91,
1170
+ "boiling_point": 2345,
1171
+ "isotopes": 34,
1172
+ "discoverer": "Reich and Richter",
1173
+ "year_of_discovery": "1863",
1174
+ "specific_heat_capacity": 0.233,
1175
+ "electron_configuration": "[Kr] 4d10 5s2 5p1",
1176
+ "display_row": 5,
1177
+ "display_column": 13
1178
+ }, {
1179
+ "atomic_number": 50,
1180
+ "name": "Tin",
1181
+ "symbol": "Sn",
1182
+ "atomic_weight": 118,
1183
+ "period": 5,
1184
+ "group": 14,
1185
+ "phase": "solid",
1186
+ "most_stable_crystal": "tet",
1187
+ "type": "Metal",
1188
+ "ionic_radius": 0.69,
1189
+ "atomic_radius": 1.7,
1190
+ "electronegativity": 1.96,
1191
+ "first_ionization_potential": 7.3439,
1192
+ "density": 7.287,
1193
+ "melting_point": 505.21,
1194
+ "boiling_point": 2875,
1195
+ "isotopes": 28,
1196
+ "discoverer": "Prehistoric",
1197
+ "year_of_discovery": "",
1198
+ "specific_heat_capacity": 0.228,
1199
+ "electron_configuration": "[Kr] 4d10 5s2 5p2",
1200
+ "display_row": 5,
1201
+ "display_column": 14
1202
+ }, {
1203
+ "atomic_number": 51,
1204
+ "name": "Antimony",
1205
+ "symbol": "Sb",
1206
+ "atomic_weight": 121,
1207
+ "period": 5,
1208
+ "group": 15,
1209
+ "phase": "solid",
1210
+ "most_stable_crystal": "rho",
1211
+ "type": "Metalloid",
1212
+ "ionic_radius": 0.76,
1213
+ "atomic_radius": 1.5,
1214
+ "electronegativity": 2.05,
1215
+ "first_ionization_potential": 8.6084,
1216
+ "density": 6.685,
1217
+ "melting_point": 904.05,
1218
+ "boiling_point": 1860,
1219
+ "isotopes": 29,
1220
+ "discoverer": "Early historic times",
1221
+ "year_of_discovery": "",
1222
+ "specific_heat_capacity": 0.207,
1223
+ "electron_configuration": "[Kr] 4d10 5s2 5p3",
1224
+ "display_row": 5,
1225
+ "display_column": 15
1226
+ }, {
1227
+ "atomic_number": 52,
1228
+ "name": "Tellurium",
1229
+ "symbol": "Te",
1230
+ "atomic_weight": 127,
1231
+ "period": 5,
1232
+ "group": 16,
1233
+ "phase": "solid",
1234
+ "most_stable_crystal": "hex",
1235
+ "type": "Metalloid",
1236
+ "ionic_radius": 0.97,
1237
+ "atomic_radius": 1.4,
1238
+ "electronegativity": 2.1,
1239
+ "first_ionization_potential": 9.0096,
1240
+ "density": 6.232,
1241
+ "melting_point": 722.8,
1242
+ "boiling_point": 1261,
1243
+ "isotopes": 29,
1244
+ "discoverer": "von Reichenstein",
1245
+ "year_of_discovery": "1782",
1246
+ "specific_heat_capacity": 0.202,
1247
+ "electron_configuration": "[Kr] 4d10 5s2 5p4",
1248
+ "display_row": 5,
1249
+ "display_column": 16
1250
+ }, {
1251
+ "atomic_number": 53,
1252
+ "name": "Iodine",
1253
+ "symbol": "I",
1254
+ "atomic_weight": 126,
1255
+ "period": 5,
1256
+ "group": 17,
1257
+ "phase": "solid",
1258
+ "most_stable_crystal": "orth",
1259
+ "type": "Halogen",
1260
+ "ionic_radius": 2.2,
1261
+ "atomic_radius": 1.3,
1262
+ "electronegativity": 2.66,
1263
+ "first_ionization_potential": 10.4513,
1264
+ "density": 4.93,
1265
+ "melting_point": 386.65,
1266
+ "boiling_point": 457.4,
1267
+ "isotopes": 24,
1268
+ "discoverer": "Courtois",
1269
+ "year_of_discovery": "1811",
1270
+ "specific_heat_capacity": 0.214,
1271
+ "electron_configuration": "[Kr] 4d10 5s2 5p5",
1272
+ "display_row": 5,
1273
+ "display_column": 17
1274
+ }, {
1275
+ "atomic_number": 54,
1276
+ "name": "Xenon",
1277
+ "symbol": "Xe",
1278
+ "atomic_weight": 131,
1279
+ "period": 5,
1280
+ "group": 18,
1281
+ "phase": "gas",
1282
+ "most_stable_crystal": "gas",
1283
+ "type": "Noble Gas",
1284
+ "ionic_radius": null,
1285
+ "atomic_radius": 1.2,
1286
+ "electronegativity": null,
1287
+ "first_ionization_potential": 12.1298,
1288
+ "density": 0.005887,
1289
+ "melting_point": 161.45,
1290
+ "boiling_point": 165.03,
1291
+ "isotopes": 31,
1292
+ "discoverer": "Ramsay and Travers",
1293
+ "year_of_discovery": "1898",
1294
+ "specific_heat_capacity": 0.158,
1295
+ "electron_configuration": "[Kr] 4d10 5s2 5p6",
1296
+ "display_row": 5,
1297
+ "display_column": 18
1298
+ }, {
1299
+ "atomic_number": 55,
1300
+ "name": "Cesium",
1301
+ "symbol": "Cs",
1302
+ "atomic_weight": 132,
1303
+ "period": 6,
1304
+ "group": 1,
1305
+ "phase": "solid",
1306
+ "most_stable_crystal": "",
1307
+ "type": "Alkali Metal",
1308
+ "ionic_radius": 1.7,
1309
+ "atomic_radius": 3.3,
1310
+ "electronegativity": 0.79,
1311
+ "first_ionization_potential": 3.8939,
1312
+ "density": 1.873,
1313
+ "melting_point": 301.7,
1314
+ "boiling_point": 944,
1315
+ "isotopes": 22,
1316
+ "discoverer": "Bunsen and Kirchoff",
1317
+ "year_of_discovery": "1860",
1318
+ "specific_heat_capacity": 0.242,
1319
+ "electron_configuration": "[Xe] 6s1",
1320
+ "display_row": 6,
1321
+ "display_column": 1
1322
+ }, {
1323
+ "atomic_number": 56,
1324
+ "name": "Barium",
1325
+ "symbol": "Ba",
1326
+ "atomic_weight": 137,
1327
+ "period": 6,
1328
+ "group": 2,
1329
+ "phase": "solid",
1330
+ "most_stable_crystal": "bcc",
1331
+ "type": "Alkaline Earth Metal",
1332
+ "ionic_radius": 1.4,
1333
+ "atomic_radius": 2.8,
1334
+ "electronegativity": 0.89,
1335
+ "first_ionization_potential": 5.2117,
1336
+ "density": 3.594,
1337
+ "melting_point": 1002.15,
1338
+ "boiling_point": 2170,
1339
+ "isotopes": 25,
1340
+ "discoverer": "Davy",
1341
+ "year_of_discovery": "1808",
1342
+ "specific_heat_capacity": 0.204,
1343
+ "electron_configuration": "[Xe] 6s2",
1344
+ "display_row": 6,
1345
+ "display_column": 2
1346
+ }, {
1347
+ "atomic_number": 57,
1348
+ "name": "Lanthanum",
1349
+ "symbol": "La",
1350
+ "atomic_weight": 138,
1351
+ "period": 6,
1352
+ "group": 3,
1353
+ "phase": "solid",
1354
+ "most_stable_crystal": "hex",
1355
+ "type": "Lanthanide",
1356
+ "ionic_radius": 1.1,
1357
+ "atomic_radius": 2.7,
1358
+ "electronegativity": 1.1,
1359
+ "first_ionization_potential": 5.5769,
1360
+ "density": 6.145,
1361
+ "melting_point": 1193.15,
1362
+ "boiling_point": 3737,
1363
+ "isotopes": 19,
1364
+ "discoverer": "Mosander",
1365
+ "year_of_discovery": "1839",
1366
+ "specific_heat_capacity": 0.195,
1367
+ "electron_configuration": "[Xe] 5d1 6s2",
1368
+ "display_row": 8,
1369
+ "display_column": 3
1370
+ }, {
1371
+ "atomic_number": 58,
1372
+ "name": "Cerium",
1373
+ "symbol": "Ce",
1374
+ "atomic_weight": 140,
1375
+ "period": 6,
1376
+ "group": 19,
1377
+ "phase": "solid",
1378
+ "most_stable_crystal": "fcc",
1379
+ "type": "Lanthanide",
1380
+ "ionic_radius": 1,
1381
+ "atomic_radius": 2.7,
1382
+ "electronegativity": 1.12,
1383
+ "first_ionization_potential": 5.5387,
1384
+ "density": 6.77,
1385
+ "melting_point": 1071.15,
1386
+ "boiling_point": 3716,
1387
+ "isotopes": 19,
1388
+ "discoverer": "Berzelius",
1389
+ "year_of_discovery": "1803",
1390
+ "specific_heat_capacity": 0.192,
1391
+ "electron_configuration": "[Xe] 4f1 5d1 6s2",
1392
+ "display_row": 8,
1393
+ "display_column": 4
1394
+ }, {
1395
+ "atomic_number": 59,
1396
+ "name": "Praseodymium",
1397
+ "symbol": "Pr",
1398
+ "atomic_weight": 140,
1399
+ "period": 6,
1400
+ "group": 20,
1401
+ "phase": "solid",
1402
+ "most_stable_crystal": "hex",
1403
+ "type": "Lanthanide",
1404
+ "ionic_radius": 1,
1405
+ "atomic_radius": 2.7,
1406
+ "electronegativity": 1.13,
1407
+ "first_ionization_potential": 5.473,
1408
+ "density": 6.773,
1409
+ "melting_point": 1204.15,
1410
+ "boiling_point": 3793,
1411
+ "isotopes": 15,
1412
+ "discoverer": "von Welsbach",
1413
+ "year_of_discovery": "1885",
1414
+ "specific_heat_capacity": 0.193,
1415
+ "electron_configuration": "[Xe] 4f3 6s2",
1416
+ "display_row": 8,
1417
+ "display_column": 5
1418
+ }, {
1419
+ "atomic_number": 60,
1420
+ "name": "Neodymium",
1421
+ "symbol": "Nd",
1422
+ "atomic_weight": 144,
1423
+ "period": 6,
1424
+ "group": 21,
1425
+ "phase": "solid",
1426
+ "most_stable_crystal": "hex",
1427
+ "type": "Lanthanide",
1428
+ "ionic_radius": 1,
1429
+ "atomic_radius": 2.6,
1430
+ "electronegativity": 1.14,
1431
+ "first_ionization_potential": 5.525,
1432
+ "density": 7.007,
1433
+ "melting_point": 1289.15,
1434
+ "boiling_point": 3347,
1435
+ "isotopes": 16,
1436
+ "discoverer": "von Welsbach",
1437
+ "year_of_discovery": "1885",
1438
+ "specific_heat_capacity": 0.19,
1439
+ "electron_configuration": "[Xe] 4f4 6s2",
1440
+ "display_row": 8,
1441
+ "display_column": 6
1442
+ }, {
1443
+ "atomic_number": 61,
1444
+ "name": "Promethium",
1445
+ "symbol": "Pm",
1446
+ "atomic_weight": 145,
1447
+ "period": 6,
1448
+ "group": 22,
1449
+ "phase": "artificial",
1450
+ "most_stable_crystal": "hex",
1451
+ "type": "Lanthanide",
1452
+ "ionic_radius": 0.98,
1453
+ "atomic_radius": 2.6,
1454
+ "electronegativity": 1.13,
1455
+ "first_ionization_potential": 5.582,
1456
+ "density": 7.26,
1457
+ "melting_point": 1204.15,
1458
+ "boiling_point": 3273,
1459
+ "isotopes": 14,
1460
+ "discoverer": "Marinsky et al.",
1461
+ "year_of_discovery": "1945",
1462
+ "specific_heat_capacity": null,
1463
+ "electron_configuration": "[Xe] 4f5 6s2",
1464
+ "display_row": 8,
1465
+ "display_column": 7
1466
+ }, {
1467
+ "atomic_number": 62,
1468
+ "name": "Samarium",
1469
+ "symbol": "Sm",
1470
+ "atomic_weight": 150,
1471
+ "period": 6,
1472
+ "group": 23,
1473
+ "phase": "solid",
1474
+ "most_stable_crystal": "hex",
1475
+ "type": "Lanthanide",
1476
+ "ionic_radius": 0.96,
1477
+ "atomic_radius": 2.6,
1478
+ "electronegativity": 1.17,
1479
+ "first_ionization_potential": 5.6437,
1480
+ "density": 7.52,
1481
+ "melting_point": 1345.15,
1482
+ "boiling_point": 2067,
1483
+ "isotopes": 17,
1484
+ "discoverer": "Boisbaudran",
1485
+ "year_of_discovery": "1879",
1486
+ "specific_heat_capacity": 0.197,
1487
+ "electron_configuration": "[Xe] 4f6 6s2",
1488
+ "display_row": 8,
1489
+ "display_column": 8
1490
+ }, {
1491
+ "atomic_number": 63,
1492
+ "name": "Europium",
1493
+ "symbol": "Eu",
1494
+ "atomic_weight": 151,
1495
+ "period": 6,
1496
+ "group": 24,
1497
+ "phase": "solid",
1498
+ "most_stable_crystal": "bcc",
1499
+ "type": "Lanthanide",
1500
+ "ionic_radius": 0.95,
1501
+ "atomic_radius": 2.6,
1502
+ "electronegativity": 1.2,
1503
+ "first_ionization_potential": 5.6704,
1504
+ "density": 5.243,
1505
+ "melting_point": 1095.15,
1506
+ "boiling_point": 1802,
1507
+ "isotopes": 21,
1508
+ "discoverer": "Demarcay",
1509
+ "year_of_discovery": "1901",
1510
+ "specific_heat_capacity": 0.182,
1511
+ "electron_configuration": "[Xe] 4f7 6s2",
1512
+ "display_row": 8,
1513
+ "display_column": 9
1514
+ }, {
1515
+ "atomic_number": 64,
1516
+ "name": "Gadolinium",
1517
+ "symbol": "Gd",
1518
+ "atomic_weight": 157,
1519
+ "period": 6,
1520
+ "group": 25,
1521
+ "phase": "solid",
1522
+ "most_stable_crystal": "hex",
1523
+ "type": "Lanthanide",
1524
+ "ionic_radius": 0.94,
1525
+ "atomic_radius": 2.5,
1526
+ "electronegativity": 1.2,
1527
+ "first_ionization_potential": 6.1501,
1528
+ "density": 7.895,
1529
+ "melting_point": 1585.15,
1530
+ "boiling_point": 3546,
1531
+ "isotopes": 17,
1532
+ "discoverer": "de Marignac",
1533
+ "year_of_discovery": "1880",
1534
+ "specific_heat_capacity": 0.236,
1535
+ "electron_configuration": "[Xe] 4f7 5d1 6s2",
1536
+ "display_row": 8,
1537
+ "display_column": 10
1538
+ }, {
1539
+ "atomic_number": 65,
1540
+ "name": "Terbium",
1541
+ "symbol": "Tb",
1542
+ "atomic_weight": 158,
1543
+ "period": 6,
1544
+ "group": 26,
1545
+ "phase": "solid",
1546
+ "most_stable_crystal": "hex",
1547
+ "type": "Lanthanide",
1548
+ "ionic_radius": 0.92,
1549
+ "atomic_radius": 2.5,
1550
+ "electronegativity": 1.2,
1551
+ "first_ionization_potential": 5.8638,
1552
+ "density": 8.229,
1553
+ "melting_point": 1630.15,
1554
+ "boiling_point": 3503,
1555
+ "isotopes": 24,
1556
+ "discoverer": "Mosander",
1557
+ "year_of_discovery": "1843",
1558
+ "specific_heat_capacity": 0.182,
1559
+ "electron_configuration": "[Xe] 4f9 6s2",
1560
+ "display_row": 8,
1561
+ "display_column": 11
1562
+ }, {
1563
+ "atomic_number": 66,
1564
+ "name": "Dysprosium",
1565
+ "symbol": "Dy",
1566
+ "atomic_weight": 162,
1567
+ "period": 6,
1568
+ "group": 27,
1569
+ "phase": "solid",
1570
+ "most_stable_crystal": "hex",
1571
+ "type": "Lanthanide",
1572
+ "ionic_radius": 0.91,
1573
+ "atomic_radius": 2.5,
1574
+ "electronegativity": 1.22,
1575
+ "first_ionization_potential": 5.9389,
1576
+ "density": 8.55,
1577
+ "melting_point": 1680.15,
1578
+ "boiling_point": 2840,
1579
+ "isotopes": 21,
1580
+ "discoverer": "de Boisbaudran",
1581
+ "year_of_discovery": "1886",
1582
+ "specific_heat_capacity": 0.17,
1583
+ "electron_configuration": "[Xe] 4f10 6s2",
1584
+ "display_row": 8,
1585
+ "display_column": 12
1586
+ }, {
1587
+ "atomic_number": 67,
1588
+ "name": "Holmium",
1589
+ "symbol": "Ho",
1590
+ "atomic_weight": 164,
1591
+ "period": 6,
1592
+ "group": 28,
1593
+ "phase": "solid",
1594
+ "most_stable_crystal": "hex",
1595
+ "type": "Lanthanide",
1596
+ "ionic_radius": 0.9,
1597
+ "atomic_radius": 2.5,
1598
+ "electronegativity": 1.23,
1599
+ "first_ionization_potential": 6.0215,
1600
+ "density": 8.795,
1601
+ "melting_point": 1743.15,
1602
+ "boiling_point": 2993,
1603
+ "isotopes": 29,
1604
+ "discoverer": "Delafontaine and Soret",
1605
+ "year_of_discovery": "1878",
1606
+ "specific_heat_capacity": 0.165,
1607
+ "electron_configuration": "[Xe] 4f11 6s2",
1608
+ "display_row": 8,
1609
+ "display_column": 13
1610
+ }, {
1611
+ "atomic_number": 68,
1612
+ "name": "Erbium",
1613
+ "symbol": "Er",
1614
+ "atomic_weight": 167,
1615
+ "period": 6,
1616
+ "group": 29,
1617
+ "phase": "solid",
1618
+ "most_stable_crystal": "hex",
1619
+ "type": "Lanthanide",
1620
+ "ionic_radius": 0.88,
1621
+ "atomic_radius": 2.5,
1622
+ "electronegativity": 1.24,
1623
+ "first_ionization_potential": 6.1077,
1624
+ "density": 9.066,
1625
+ "melting_point": 1795.15,
1626
+ "boiling_point": 3503,
1627
+ "isotopes": 16,
1628
+ "discoverer": "Mosander",
1629
+ "year_of_discovery": "1843",
1630
+ "specific_heat_capacity": 0.168,
1631
+ "electron_configuration": "[Xe] 4f12 6s2",
1632
+ "display_row": 8,
1633
+ "display_column": 14
1634
+ }, {
1635
+ "atomic_number": 69,
1636
+ "name": "Thulium",
1637
+ "symbol": "Tm",
1638
+ "atomic_weight": 168,
1639
+ "period": 6,
1640
+ "group": 30,
1641
+ "phase": "solid",
1642
+ "most_stable_crystal": "hex",
1643
+ "type": "Lanthanide",
1644
+ "ionic_radius": 0.87,
1645
+ "atomic_radius": 2.4,
1646
+ "electronegativity": 1.25,
1647
+ "first_ionization_potential": 6.1843,
1648
+ "density": 9.321,
1649
+ "melting_point": 1818.15,
1650
+ "boiling_point": 2223,
1651
+ "isotopes": 18,
1652
+ "discoverer": "Cleve",
1653
+ "year_of_discovery": "1879",
1654
+ "specific_heat_capacity": 0.16,
1655
+ "electron_configuration": "[Xe] 4f13 6s2",
1656
+ "display_row": 8,
1657
+ "display_column": 15
1658
+ }, {
1659
+ "atomic_number": 70,
1660
+ "name": "Ytterbium",
1661
+ "symbol": "Yb",
1662
+ "atomic_weight": 173,
1663
+ "period": 6,
1664
+ "group": 31,
1665
+ "phase": "solid",
1666
+ "most_stable_crystal": "fcc",
1667
+ "type": "Lanthanide",
1668
+ "ionic_radius": 0.86,
1669
+ "atomic_radius": 2.4,
1670
+ "electronegativity": 1.1,
1671
+ "first_ionization_potential": 6.2542,
1672
+ "density": 6.965,
1673
+ "melting_point": 1097.15,
1674
+ "boiling_point": 1469,
1675
+ "isotopes": 16,
1676
+ "discoverer": "Marignac",
1677
+ "year_of_discovery": "1878",
1678
+ "specific_heat_capacity": 0.155,
1679
+ "electron_configuration": "[Xe] 4f14 6s2",
1680
+ "display_row": 8,
1681
+ "display_column": 16
1682
+ }, {
1683
+ "atomic_number": 71,
1684
+ "name": "Lutetium",
1685
+ "symbol": "Lu",
1686
+ "atomic_weight": 174,
1687
+ "period": 6,
1688
+ "group": 32,
1689
+ "phase": "solid",
1690
+ "most_stable_crystal": "hex",
1691
+ "type": "Lanthanide",
1692
+ "ionic_radius": 0.85,
1693
+ "atomic_radius": 2.3,
1694
+ "electronegativity": 1.27,
1695
+ "first_ionization_potential": 5.4259,
1696
+ "density": 9.84,
1697
+ "melting_point": 1936.15,
1698
+ "boiling_point": 3675,
1699
+ "isotopes": 22,
1700
+ "discoverer": "Urbain/ von Welsbach",
1701
+ "year_of_discovery": "1907",
1702
+ "specific_heat_capacity": 0.154,
1703
+ "electron_configuration": "[Xe] 4f14 5d1 6s2",
1704
+ "display_row": 8,
1705
+ "display_column": 17
1706
+ }, {
1707
+ "atomic_number": 72,
1708
+ "name": "Hafnium",
1709
+ "symbol": "Hf",
1710
+ "atomic_weight": 178,
1711
+ "period": 6,
1712
+ "group": 4,
1713
+ "phase": "solid",
1714
+ "most_stable_crystal": "hex",
1715
+ "type": "Transition Metal",
1716
+ "ionic_radius": 0.71,
1717
+ "atomic_radius": 2.2,
1718
+ "electronegativity": 1.3,
1719
+ "first_ionization_potential": 6.8251,
1720
+ "density": 13.31,
1721
+ "melting_point": 2500.15,
1722
+ "boiling_point": 4876,
1723
+ "isotopes": 17,
1724
+ "discoverer": "Coster and von Hevesy",
1725
+ "year_of_discovery": "1923",
1726
+ "specific_heat_capacity": 0.144,
1727
+ "electron_configuration": "[Xe] 4f14 5d2 6s2",
1728
+ "display_row": 6,
1729
+ "display_column": 4
1730
+ }, {
1731
+ "atomic_number": 73,
1732
+ "name": "Tantalum",
1733
+ "symbol": "Ta",
1734
+ "atomic_weight": 180,
1735
+ "period": 6,
1736
+ "group": 5,
1737
+ "phase": "solid",
1738
+ "most_stable_crystal": "bcc",
1739
+ "type": "Transition Metal",
1740
+ "ionic_radius": 0.64,
1741
+ "atomic_radius": 2.1,
1742
+ "electronegativity": 1.5,
1743
+ "first_ionization_potential": 7.5496,
1744
+ "density": 16.654,
1745
+ "melting_point": 3269.15,
1746
+ "boiling_point": 5731,
1747
+ "isotopes": 19,
1748
+ "discoverer": "Ekeberg",
1749
+ "year_of_discovery": "1801",
1750
+ "specific_heat_capacity": 0.14,
1751
+ "electron_configuration": "[Xe] 4f14 5d3 6s2",
1752
+ "display_row": 6,
1753
+ "display_column": 5
1754
+ }, {
1755
+ "atomic_number": 74,
1756
+ "name": "Wolfram",
1757
+ "symbol": "W",
1758
+ "atomic_weight": 183,
1759
+ "period": 6,
1760
+ "group": 6,
1761
+ "phase": "solid",
1762
+ "most_stable_crystal": "bcc",
1763
+ "type": "Transition Metal",
1764
+ "ionic_radius": 0.62,
1765
+ "atomic_radius": 2,
1766
+ "electronegativity": 2.36,
1767
+ "first_ionization_potential": 7.864,
1768
+ "density": 19.25,
1769
+ "melting_point": 3680.15,
1770
+ "boiling_point": 5828,
1771
+ "isotopes": 22,
1772
+ "discoverer": "J. and F. d'Elhuyar",
1773
+ "year_of_discovery": "1783",
1774
+ "specific_heat_capacity": 0.132,
1775
+ "electron_configuration": "[Xe] 4f14 5d4 6s2",
1776
+ "display_row": 6,
1777
+ "display_column": 6
1778
+ }, {
1779
+ "atomic_number": 75,
1780
+ "name": "Rhenium",
1781
+ "symbol": "Re",
1782
+ "atomic_weight": 186,
1783
+ "period": 6,
1784
+ "group": 7,
1785
+ "phase": "solid",
1786
+ "most_stable_crystal": "hex",
1787
+ "type": "Transition Metal",
1788
+ "ionic_radius": 0.56,
1789
+ "atomic_radius": 2,
1790
+ "electronegativity": 1.9,
1791
+ "first_ionization_potential": 7.8335,
1792
+ "density": 21.02,
1793
+ "melting_point": 3453.15,
1794
+ "boiling_point": 5869,
1795
+ "isotopes": 21,
1796
+ "discoverer": "Noddack, Berg, and Tacke",
1797
+ "year_of_discovery": "1925",
1798
+ "specific_heat_capacity": 0.137,
1799
+ "electron_configuration": "[Xe] 4f14 5d5 6s2",
1800
+ "display_row": 6,
1801
+ "display_column": 7
1802
+ }, {
1803
+ "atomic_number": 76,
1804
+ "name": "Osmium",
1805
+ "symbol": "Os",
1806
+ "atomic_weight": 190,
1807
+ "period": 6,
1808
+ "group": 8,
1809
+ "phase": "solid",
1810
+ "most_stable_crystal": "hex",
1811
+ "type": "Transition Metal",
1812
+ "ionic_radius": 0.63,
1813
+ "atomic_radius": 1.9,
1814
+ "electronegativity": 2.2,
1815
+ "first_ionization_potential": 8.4382,
1816
+ "density": 22.61,
1817
+ "melting_point": 3300.15,
1818
+ "boiling_point": 5285,
1819
+ "isotopes": 19,
1820
+ "discoverer": "Tennant",
1821
+ "year_of_discovery": "1803",
1822
+ "specific_heat_capacity": 0.13,
1823
+ "electron_configuration": "[Xe] 4f14 5d6 6s2",
1824
+ "display_row": 6,
1825
+ "display_column": 8
1826
+ }, {
1827
+ "atomic_number": 77,
1828
+ "name": "Iridium",
1829
+ "symbol": "Ir",
1830
+ "atomic_weight": 192,
1831
+ "period": 6,
1832
+ "group": 9,
1833
+ "phase": "solid",
1834
+ "most_stable_crystal": "fcc",
1835
+ "type": "Transition Metal",
1836
+ "ionic_radius": 0.63,
1837
+ "atomic_radius": 1.9,
1838
+ "electronegativity": 2.2,
1839
+ "first_ionization_potential": 8.967,
1840
+ "density": 22.56,
1841
+ "melting_point": 2716.15,
1842
+ "boiling_point": 4701,
1843
+ "isotopes": 25,
1844
+ "discoverer": "Tennant",
1845
+ "year_of_discovery": "1804",
1846
+ "specific_heat_capacity": 0.131,
1847
+ "electron_configuration": "[Xe] 4f14 5d7 6s2",
1848
+ "display_row": 6,
1849
+ "display_column": 9
1850
+ }, {
1851
+ "atomic_number": 78,
1852
+ "name": "Platinum",
1853
+ "symbol": "Pt",
1854
+ "atomic_weight": 195,
1855
+ "period": 6,
1856
+ "group": 10,
1857
+ "phase": "solid",
1858
+ "most_stable_crystal": "fcc",
1859
+ "type": "Transition Metal",
1860
+ "ionic_radius": 0.63,
1861
+ "atomic_radius": 1.8,
1862
+ "electronegativity": 2.28,
1863
+ "first_ionization_potential": 8.9587,
1864
+ "density": 21.46,
1865
+ "melting_point": 2045.15,
1866
+ "boiling_point": 4098,
1867
+ "isotopes": 32,
1868
+ "discoverer": "Ulloa/Wood",
1869
+ "year_of_discovery": "1735",
1870
+ "specific_heat_capacity": 0.133,
1871
+ "electron_configuration": "[Xe] 4f14 5d9 6s1",
1872
+ "display_row": 6,
1873
+ "display_column": 10
1874
+ }, {
1875
+ "atomic_number": 79,
1876
+ "name": "Gold",
1877
+ "symbol": "Au",
1878
+ "atomic_weight": 196,
1879
+ "period": 6,
1880
+ "group": 11,
1881
+ "phase": "solid",
1882
+ "most_stable_crystal": "fcc",
1883
+ "type": "Transition Metal",
1884
+ "ionic_radius": 0.85,
1885
+ "atomic_radius": 1.8,
1886
+ "electronegativity": 2.54,
1887
+ "first_ionization_potential": 9.2255,
1888
+ "density": 19.282,
1889
+ "melting_point": 1337.73,
1890
+ "boiling_point": 3129,
1891
+ "isotopes": 21,
1892
+ "discoverer": "Prehistoric",
1893
+ "year_of_discovery": "",
1894
+ "specific_heat_capacity": 0.129,
1895
+ "electron_configuration": "[Xe] 4f14 5d10 6s1",
1896
+ "display_row": 6,
1897
+ "display_column": 11
1898
+ }, {
1899
+ "atomic_number": 80,
1900
+ "name": "Mercury",
1901
+ "symbol": "Hg",
1902
+ "atomic_weight": 200,
1903
+ "period": 6,
1904
+ "group": 12,
1905
+ "phase": "liq",
1906
+ "most_stable_crystal": "",
1907
+ "type": "Transition Metal",
1908
+ "ionic_radius": 1,
1909
+ "atomic_radius": 1.8,
1910
+ "electronegativity": 2,
1911
+ "first_ionization_potential": 10.4375,
1912
+ "density": 13.5336,
1913
+ "melting_point": 234.43,
1914
+ "boiling_point": 630,
1915
+ "isotopes": 26,
1916
+ "discoverer": "Prehistoric",
1917
+ "year_of_discovery": "",
1918
+ "specific_heat_capacity": 0.14,
1919
+ "electron_configuration": "[Xe] 4f14 5d10 6s2",
1920
+ "display_row": 6,
1921
+ "display_column": 12
1922
+ }, {
1923
+ "atomic_number": 81,
1924
+ "name": "Thallium",
1925
+ "symbol": "Tl",
1926
+ "atomic_weight": 204,
1927
+ "period": 6,
1928
+ "group": 13,
1929
+ "phase": "solid",
1930
+ "most_stable_crystal": "hex",
1931
+ "type": "Metal",
1932
+ "ionic_radius": 1.5,
1933
+ "atomic_radius": 2.1,
1934
+ "electronegativity": 2.04,
1935
+ "first_ionization_potential": 6.1082,
1936
+ "density": 11.85,
1937
+ "melting_point": 577.15,
1938
+ "boiling_point": 1746,
1939
+ "isotopes": 28,
1940
+ "discoverer": "Crookes",
1941
+ "year_of_discovery": "1861",
1942
+ "specific_heat_capacity": 0.129,
1943
+ "electron_configuration": "[Xe] 4f14 5d10 6s2 6p1",
1944
+ "display_row": 6,
1945
+ "display_column": 13
1946
+ }, {
1947
+ "atomic_number": 82,
1948
+ "name": "Lead",
1949
+ "symbol": "Pb",
1950
+ "atomic_weight": 207,
1951
+ "period": 6,
1952
+ "group": 14,
1953
+ "phase": "solid",
1954
+ "most_stable_crystal": "fcc",
1955
+ "type": "Metal",
1956
+ "ionic_radius": 1.2,
1957
+ "atomic_radius": 1.8,
1958
+ "electronegativity": 2.33,
1959
+ "first_ionization_potential": 7.4167,
1960
+ "density": 11.342,
1961
+ "melting_point": 600.75,
1962
+ "boiling_point": 2022,
1963
+ "isotopes": 29,
1964
+ "discoverer": "Prehistoric",
1965
+ "year_of_discovery": "",
1966
+ "specific_heat_capacity": 0.129,
1967
+ "electron_configuration": "[Xe] 4f14 5d10 6s2 6p2",
1968
+ "display_row": 6,
1969
+ "display_column": 14
1970
+ }, {
1971
+ "atomic_number": 83,
1972
+ "name": "Bismuth",
1973
+ "symbol": "Bi",
1974
+ "atomic_weight": 208,
1975
+ "period": 6,
1976
+ "group": 15,
1977
+ "phase": "solid",
1978
+ "most_stable_crystal": "rho",
1979
+ "type": "Metal",
1980
+ "ionic_radius": 1,
1981
+ "atomic_radius": 1.6,
1982
+ "electronegativity": 2.02,
1983
+ "first_ionization_potential": 7.2856,
1984
+ "density": 9.807,
1985
+ "melting_point": 544.67,
1986
+ "boiling_point": 1837,
1987
+ "isotopes": 19,
1988
+ "discoverer": "Geoffroy the Younger",
1989
+ "year_of_discovery": "1753",
1990
+ "specific_heat_capacity": 0.122,
1991
+ "electron_configuration": "[Xe] 4f14 5d10 6s2 6p3",
1992
+ "display_row": 6,
1993
+ "display_column": 15
1994
+ }, {
1995
+ "atomic_number": 84,
1996
+ "name": "Polonium",
1997
+ "symbol": "Po",
1998
+ "atomic_weight": 210,
1999
+ "period": 6,
2000
+ "group": 16,
2001
+ "phase": "solid",
2002
+ "most_stable_crystal": "cub",
2003
+ "type": "Metalloid",
2004
+ "ionic_radius": 2.3,
2005
+ "atomic_radius": 1.5,
2006
+ "electronegativity": 2,
2007
+ "first_ionization_potential": 8.417,
2008
+ "density": 9.32,
2009
+ "melting_point": 527.15,
2010
+ "boiling_point": 1235,
2011
+ "isotopes": 34,
2012
+ "discoverer": "Curie",
2013
+ "year_of_discovery": "1898",
2014
+ "specific_heat_capacity": null,
2015
+ "electron_configuration": "[Xe] 4f14 5d10 6s2 6p4",
2016
+ "display_row": 6,
2017
+ "display_column": 16
2018
+ }, {
2019
+ "atomic_number": 85,
2020
+ "name": "Astatine",
2021
+ "symbol": "At",
2022
+ "atomic_weight": 210,
2023
+ "period": 6,
2024
+ "group": 17,
2025
+ "phase": "solid",
2026
+ "most_stable_crystal": "",
2027
+ "type": "Noble Gas",
2028
+ "ionic_radius": null,
2029
+ "atomic_radius": 1.4,
2030
+ "electronegativity": 2.2,
2031
+ "first_ionization_potential": 9.3,
2032
+ "density": 7,
2033
+ "melting_point": 575.15,
2034
+ "boiling_point": 610,
2035
+ "isotopes": 21,
2036
+ "discoverer": "Corson et al.",
2037
+ "year_of_discovery": "1940",
2038
+ "specific_heat_capacity": null,
2039
+ "electron_configuration": "[Xe] 4f14 5d10 6s2 6p5",
2040
+ "display_row": 6,
2041
+ "display_column": 17
2042
+ }, {
2043
+ "atomic_number": 86,
2044
+ "name": "Radon",
2045
+ "symbol": "Rn",
2046
+ "atomic_weight": 222,
2047
+ "period": 6,
2048
+ "group": 18,
2049
+ "phase": "gas",
2050
+ "most_stable_crystal": "",
2051
+ "type": "Alkali Metal",
2052
+ "ionic_radius": null,
2053
+ "atomic_radius": 1.3,
2054
+ "electronegativity": null,
2055
+ "first_ionization_potential": 10.7485,
2056
+ "density": 0.00973,
2057
+ "melting_point": 202.15,
2058
+ "boiling_point": 211.3,
2059
+ "isotopes": 20,
2060
+ "discoverer": "Dorn",
2061
+ "year_of_discovery": "1900",
2062
+ "specific_heat_capacity": 0.094,
2063
+ "electron_configuration": "[Xe] 4f14 5d10 6s2 6p6",
2064
+ "display_row": 6,
2065
+ "display_column": 18
2066
+ }, {
2067
+ "atomic_number": 87,
2068
+ "name": "Francium",
2069
+ "symbol": "Fr",
2070
+ "atomic_weight": 223,
2071
+ "period": 7,
2072
+ "group": 1,
2073
+ "phase": "solid",
2074
+ "most_stable_crystal": "bcc",
2075
+ "type": "Alkaline Earth Metal",
2076
+ "ionic_radius": 1.8,
2077
+ "atomic_radius": null,
2078
+ "electronegativity": 0.7,
2079
+ "first_ionization_potential": 4.0727,
2080
+ "density": 1.87,
2081
+ "melting_point": 300.15,
2082
+ "boiling_point": 950,
2083
+ "isotopes": 21,
2084
+ "discoverer": "Perey",
2085
+ "year_of_discovery": "1939",
2086
+ "specific_heat_capacity": null,
2087
+ "electron_configuration": "[Rn] 7s1",
2088
+ "display_row": 7,
2089
+ "display_column": 1
2090
+ }, {
2091
+ "atomic_number": 88,
2092
+ "name": "Radium",
2093
+ "symbol": "Ra",
2094
+ "atomic_weight": 226,
2095
+ "period": 7,
2096
+ "group": 2,
2097
+ "phase": "solid",
2098
+ "most_stable_crystal": "bcc",
2099
+ "type": "Actinide",
2100
+ "ionic_radius": 1.4,
2101
+ "atomic_radius": null,
2102
+ "electronegativity": 0.9,
2103
+ "first_ionization_potential": 5.2784,
2104
+ "density": 5.5,
2105
+ "melting_point": 973.15,
2106
+ "boiling_point": 2010,
2107
+ "isotopes": 15,
2108
+ "discoverer": "Pierre and Marie Curie",
2109
+ "year_of_discovery": "1898",
2110
+ "specific_heat_capacity": null,
2111
+ "electron_configuration": "[Rn] 7s2",
2112
+ "display_row": 7,
2113
+ "display_column": 2
2114
+ }, {
2115
+ "atomic_number": 89,
2116
+ "name": "Actinium",
2117
+ "symbol": "Ac",
2118
+ "atomic_weight": 227,
2119
+ "period": 7,
2120
+ "group": 3,
2121
+ "phase": "solid",
2122
+ "most_stable_crystal": "fcc",
2123
+ "type": "Actinide",
2124
+ "ionic_radius": 1.1,
2125
+ "atomic_radius": null,
2126
+ "electronegativity": 1.1,
2127
+ "first_ionization_potential": 5.17,
2128
+ "density": 10.07,
2129
+ "melting_point": 1323.15,
2130
+ "boiling_point": 3471,
2131
+ "isotopes": 11,
2132
+ "discoverer": "Debierne/Giesel",
2133
+ "year_of_discovery": "1899",
2134
+ "specific_heat_capacity": 0.12,
2135
+ "electron_configuration": "[Rn] 6d1 7s2",
2136
+ "display_row": 9,
2137
+ "display_column": 3
2138
+ }, {
2139
+ "atomic_number": 90,
2140
+ "name": "Thorium",
2141
+ "symbol": "Th",
2142
+ "atomic_weight": 232,
2143
+ "period": 7,
2144
+ "group": 19,
2145
+ "phase": "solid",
2146
+ "most_stable_crystal": "fcc",
2147
+ "type": "Actinide",
2148
+ "ionic_radius": 0.97,
2149
+ "atomic_radius": null,
2150
+ "electronegativity": 1.3,
2151
+ "first_ionization_potential": 6.3067,
2152
+ "density": 11.72,
2153
+ "melting_point": 2028.15,
2154
+ "boiling_point": 5061,
2155
+ "isotopes": 12,
2156
+ "discoverer": "Berzelius",
2157
+ "year_of_discovery": "1828",
2158
+ "specific_heat_capacity": 0.113,
2159
+ "electron_configuration": "[Rn] 6d2 7s2",
2160
+ "display_row": 9,
2161
+ "display_column": 4
2162
+ }, {
2163
+ "atomic_number": 91,
2164
+ "name": "Protactinium",
2165
+ "symbol": "Pa",
2166
+ "atomic_weight": 231,
2167
+ "period": 7,
2168
+ "group": 20,
2169
+ "phase": "solid",
2170
+ "most_stable_crystal": "orth",
2171
+ "type": "Actinide",
2172
+ "ionic_radius": 0.78,
2173
+ "atomic_radius": null,
2174
+ "electronegativity": 1.5,
2175
+ "first_ionization_potential": 5.89,
2176
+ "density": 15.37,
2177
+ "melting_point": 1873.15,
2178
+ "boiling_point": 4300,
2179
+ "isotopes": 14,
2180
+ "discoverer": "Hahn and Meitner",
2181
+ "year_of_discovery": "1917",
2182
+ "specific_heat_capacity": null,
2183
+ "electron_configuration": "[Rn] 5f2 6d1 7s2",
2184
+ "display_row": 9,
2185
+ "display_column": 5
2186
+ }, {
2187
+ "atomic_number": 92,
2188
+ "name": "Uranium",
2189
+ "symbol": "U",
2190
+ "atomic_weight": 238,
2191
+ "period": 7,
2192
+ "group": 21,
2193
+ "phase": "solid",
2194
+ "most_stable_crystal": "orth",
2195
+ "type": "Actinide",
2196
+ "ionic_radius": 0.52,
2197
+ "atomic_radius": null,
2198
+ "electronegativity": 1.38,
2199
+ "first_ionization_potential": 6.1941,
2200
+ "density": 18.95,
2201
+ "melting_point": 1405.15,
2202
+ "boiling_point": 4404,
2203
+ "isotopes": 15,
2204
+ "discoverer": "Peligot",
2205
+ "year_of_discovery": "1841",
2206
+ "specific_heat_capacity": 0.116,
2207
+ "electron_configuration": "[Rn] 5f3 6d1 7s2",
2208
+ "display_row": 9,
2209
+ "display_column": 6
2210
+ }, {
2211
+ "atomic_number": 93,
2212
+ "name": "Neptunium",
2213
+ "symbol": "Np",
2214
+ "atomic_weight": 237,
2215
+ "period": 7,
2216
+ "group": 22,
2217
+ "phase": "artificial",
2218
+ "most_stable_crystal": "orth",
2219
+ "type": "Actinide",
2220
+ "ionic_radius": 0.75,
2221
+ "atomic_radius": null,
2222
+ "electronegativity": 1.36,
2223
+ "first_ionization_potential": 6.2657,
2224
+ "density": 20.45,
2225
+ "melting_point": 913.15,
2226
+ "boiling_point": 4273,
2227
+ "isotopes": 153,
2228
+ "discoverer": "McMillan and Abelson",
2229
+ "year_of_discovery": "1940",
2230
+ "specific_heat_capacity": null,
2231
+ "electron_configuration": "[Rn] 5f4 6d1 7s2",
2232
+ "display_row": 9,
2233
+ "display_column": 7
2234
+ }, {
2235
+ "atomic_number": 94,
2236
+ "name": "Plutonium",
2237
+ "symbol": "Pu",
2238
+ "atomic_weight": 244,
2239
+ "period": 7,
2240
+ "group": 23,
2241
+ "phase": "artificial",
2242
+ "most_stable_crystal": "mno",
2243
+ "type": "Actinide",
2244
+ "ionic_radius": 0.89,
2245
+ "atomic_radius": null,
2246
+ "electronegativity": 1.28,
2247
+ "first_ionization_potential": 6.0262,
2248
+ "density": 19.84,
2249
+ "melting_point": 913.15,
2250
+ "boiling_point": 3501,
2251
+ "isotopes": 163,
2252
+ "discoverer": "Seaborg et al.",
2253
+ "year_of_discovery": "1940",
2254
+ "specific_heat_capacity": null,
2255
+ "electron_configuration": "[Rn] 5f6 7s2",
2256
+ "display_row": 9,
2257
+ "display_column": 8
2258
+ }, {
2259
+ "atomic_number": 95,
2260
+ "name": "Americium",
2261
+ "symbol": "Am",
2262
+ "atomic_weight": 243,
2263
+ "period": 7,
2264
+ "group": 24,
2265
+ "phase": "artificial",
2266
+ "most_stable_crystal": "hex",
2267
+ "type": "Actinide",
2268
+ "ionic_radius": 0.98,
2269
+ "atomic_radius": null,
2270
+ "electronegativity": 1.3,
2271
+ "first_ionization_potential": 5.9738,
2272
+ "density": 13.69,
2273
+ "melting_point": 1267.15,
2274
+ "boiling_point": 2880,
2275
+ "isotopes": 133,
2276
+ "discoverer": "Seaborg et al.",
2277
+ "year_of_discovery": "1944",
2278
+ "specific_heat_capacity": null,
2279
+ "electron_configuration": "[Rn] 5f7 7s2",
2280
+ "display_row": 9,
2281
+ "display_column": 9
2282
+ }, {
2283
+ "atomic_number": 96,
2284
+ "name": "Curium",
2285
+ "symbol": "Cm",
2286
+ "atomic_weight": 247,
2287
+ "period": 7,
2288
+ "group": 25,
2289
+ "phase": "artificial",
2290
+ "most_stable_crystal": "hex",
2291
+ "type": "Actinide",
2292
+ "ionic_radius": 0.97,
2293
+ "atomic_radius": null,
2294
+ "electronegativity": 1.3,
2295
+ "first_ionization_potential": 5.9915,
2296
+ "density": 13.51,
2297
+ "melting_point": 1340.15,
2298
+ "boiling_point": 3383,
2299
+ "isotopes": 133,
2300
+ "discoverer": "Seaborg et al.",
2301
+ "year_of_discovery": "1944",
2302
+ "specific_heat_capacity": null,
2303
+ "electron_configuration": "",
2304
+ "display_row": 9,
2305
+ "display_column": 10
2306
+ }, {
2307
+ "atomic_number": 97,
2308
+ "name": "Berkelium",
2309
+ "symbol": "Bk",
2310
+ "atomic_weight": 247,
2311
+ "period": 7,
2312
+ "group": 26,
2313
+ "phase": "artificial",
2314
+ "most_stable_crystal": "hex",
2315
+ "type": "Actinide",
2316
+ "ionic_radius": 0.95,
2317
+ "atomic_radius": null,
2318
+ "electronegativity": 1.3,
2319
+ "first_ionization_potential": 6.1979,
2320
+ "density": 14.79,
2321
+ "melting_point": 1259.15,
2322
+ "boiling_point": 983,
2323
+ "isotopes": 83,
2324
+ "discoverer": "Seaborg et al.",
2325
+ "year_of_discovery": "1949",
2326
+ "specific_heat_capacity": null,
2327
+ "electron_configuration": "",
2328
+ "display_row": 9,
2329
+ "display_column": 11
2330
+ }, {
2331
+ "atomic_number": 98,
2332
+ "name": "Californium",
2333
+ "symbol": "Cf",
2334
+ "atomic_weight": 251,
2335
+ "period": 7,
2336
+ "group": 27,
2337
+ "phase": "artificial",
2338
+ "most_stable_crystal": "hex",
2339
+ "type": "Actinide",
2340
+ "ionic_radius": 0.93,
2341
+ "atomic_radius": null,
2342
+ "electronegativity": 1.3,
2343
+ "first_ionization_potential": 6.2817,
2344
+ "density": 15.1,
2345
+ "melting_point": 1925.15,
2346
+ "boiling_point": 1173,
2347
+ "isotopes": 123,
2348
+ "discoverer": "Seaborg et al.",
2349
+ "year_of_discovery": "1950",
2350
+ "specific_heat_capacity": null,
2351
+ "electron_configuration": "",
2352
+ "display_row": 9,
2353
+ "display_column": 12
2354
+ }, {
2355
+ "atomic_number": 99,
2356
+ "name": "Einsteinium",
2357
+ "symbol": "Es",
2358
+ "atomic_weight": 252,
2359
+ "period": 7,
2360
+ "group": 28,
2361
+ "phase": "artificial",
2362
+ "most_stable_crystal": "hex",
2363
+ "type": "Actinide",
2364
+ "ionic_radius": null,
2365
+ "atomic_radius": null,
2366
+ "electronegativity": 1.3,
2367
+ "first_ionization_potential": 6.42,
2368
+ "density": 13.5,
2369
+ "melting_point": 1133.15,
2370
+ "boiling_point": null,
2371
+ "isotopes": 123,
2372
+ "discoverer": "Ghiorso et al.",
2373
+ "year_of_discovery": "1952",
2374
+ "specific_heat_capacity": null,
2375
+ "electron_configuration": "",
2376
+ "display_row": 9,
2377
+ "display_column": 13
2378
+ }, {
2379
+ "atomic_number": 100,
2380
+ "name": "Fermium",
2381
+ "symbol": "Fm",
2382
+ "atomic_weight": 257,
2383
+ "period": 7,
2384
+ "group": 29,
2385
+ "phase": "artificial",
2386
+ "most_stable_crystal": "",
2387
+ "type": "Actinide",
2388
+ "ionic_radius": null,
2389
+ "atomic_radius": null,
2390
+ "electronegativity": 1.3,
2391
+ "first_ionization_potential": 6.5,
2392
+ "density": null,
2393
+ "melting_point": null,
2394
+ "boiling_point": null,
2395
+ "isotopes": 103,
2396
+ "discoverer": "Ghiorso et al.",
2397
+ "year_of_discovery": "1953",
2398
+ "specific_heat_capacity": null,
2399
+ "electron_configuration": "",
2400
+ "display_row": 9,
2401
+ "display_column": 14
2402
+ }, {
2403
+ "atomic_number": 101,
2404
+ "name": "Mendelevium",
2405
+ "symbol": "Md",
2406
+ "atomic_weight": 258,
2407
+ "period": 7,
2408
+ "group": 30,
2409
+ "phase": "artificial",
2410
+ "most_stable_crystal": "",
2411
+ "type": "Actinide",
2412
+ "ionic_radius": null,
2413
+ "atomic_radius": null,
2414
+ "electronegativity": 1.3,
2415
+ "first_ionization_potential": 6.58,
2416
+ "density": null,
2417
+ "melting_point": null,
2418
+ "boiling_point": null,
2419
+ "isotopes": 33,
2420
+ "discoverer": "Ghiorso et al.",
2421
+ "year_of_discovery": "1955",
2422
+ "specific_heat_capacity": null,
2423
+ "electron_configuration": "",
2424
+ "display_row": 9,
2425
+ "display_column": 15
2426
+ }, {
2427
+ "atomic_number": 102,
2428
+ "name": "Nobelium",
2429
+ "symbol": "No",
2430
+ "atomic_weight": 259,
2431
+ "period": 7,
2432
+ "group": 31,
2433
+ "phase": "artificial",
2434
+ "most_stable_crystal": "",
2435
+ "type": "Actinide",
2436
+ "ionic_radius": null,
2437
+ "atomic_radius": null,
2438
+ "electronegativity": 1.3,
2439
+ "first_ionization_potential": 6.65,
2440
+ "density": null,
2441
+ "melting_point": null,
2442
+ "boiling_point": null,
2443
+ "isotopes": 73,
2444
+ "discoverer": "Ghiorso et al.",
2445
+ "year_of_discovery": "1958",
2446
+ "specific_heat_capacity": null,
2447
+ "electron_configuration": "",
2448
+ "display_row": 9,
2449
+ "display_column": 16
2450
+ }, {
2451
+ "atomic_number": 103,
2452
+ "name": "Lawrencium",
2453
+ "symbol": "Lr",
2454
+ "atomic_weight": 262,
2455
+ "period": 7,
2456
+ "group": 32,
2457
+ "phase": "artificial",
2458
+ "most_stable_crystal": "",
2459
+ "type": "Actinide",
2460
+ "ionic_radius": null,
2461
+ "atomic_radius": null,
2462
+ "electronegativity": null,
2463
+ "first_ionization_potential": null,
2464
+ "density": null,
2465
+ "melting_point": null,
2466
+ "boiling_point": null,
2467
+ "isotopes": 203,
2468
+ "discoverer": "Ghiorso et al.",
2469
+ "year_of_discovery": "1961",
2470
+ "specific_heat_capacity": null,
2471
+ "electron_configuration": "",
2472
+ "display_row": 9,
2473
+ "display_column": 17
2474
+ }, {
2475
+ "atomic_number": 104,
2476
+ "name": "Rutherfordium",
2477
+ "symbol": "Rf",
2478
+ "atomic_weight": 261,
2479
+ "period": 7,
2480
+ "group": 4,
2481
+ "phase": "artificial",
2482
+ "most_stable_crystal": "",
2483
+ "type": "Transactinide",
2484
+ "ionic_radius": null,
2485
+ "atomic_radius": null,
2486
+ "electronegativity": null,
2487
+ "first_ionization_potential": null,
2488
+ "density": 18.1,
2489
+ "melting_point": null,
2490
+ "boiling_point": null,
2491
+ "isotopes": null,
2492
+ "discoverer": "Ghiorso et al.",
2493
+ "year_of_discovery": "1969",
2494
+ "specific_heat_capacity": null,
2495
+ "electron_configuration": "",
2496
+ "display_row": 7,
2497
+ "display_column": 4
2498
+ }, {
2499
+ "atomic_number": 105,
2500
+ "name": "Dubnium",
2501
+ "symbol": "Db",
2502
+ "atomic_weight": 262,
2503
+ "period": 7,
2504
+ "group": 5,
2505
+ "phase": "artificial",
2506
+ "most_stable_crystal": "",
2507
+ "type": "Transactinide",
2508
+ "ionic_radius": null,
2509
+ "atomic_radius": null,
2510
+ "electronegativity": null,
2511
+ "first_ionization_potential": null,
2512
+ "density": 39,
2513
+ "melting_point": null,
2514
+ "boiling_point": null,
2515
+ "isotopes": null,
2516
+ "discoverer": "Ghiorso et al.",
2517
+ "year_of_discovery": "1970",
2518
+ "specific_heat_capacity": null,
2519
+ "electron_configuration": "",
2520
+ "display_row": 7,
2521
+ "display_column": 5
2522
+ }, {
2523
+ "atomic_number": 106,
2524
+ "name": "Seaborgium",
2525
+ "symbol": "Sg",
2526
+ "atomic_weight": 266,
2527
+ "period": 7,
2528
+ "group": 6,
2529
+ "phase": "artificial",
2530
+ "most_stable_crystal": "",
2531
+ "type": "Transactinide",
2532
+ "ionic_radius": null,
2533
+ "atomic_radius": null,
2534
+ "electronegativity": null,
2535
+ "first_ionization_potential": null,
2536
+ "density": 35,
2537
+ "melting_point": null,
2538
+ "boiling_point": null,
2539
+ "isotopes": null,
2540
+ "discoverer": "Ghiorso et al.",
2541
+ "year_of_discovery": "1974",
2542
+ "specific_heat_capacity": null,
2543
+ "electron_configuration": "",
2544
+ "display_row": 7,
2545
+ "display_column": 6
2546
+ }, {
2547
+ "atomic_number": 107,
2548
+ "name": "Bohrium",
2549
+ "symbol": "Bh",
2550
+ "atomic_weight": 264,
2551
+ "period": 7,
2552
+ "group": 7,
2553
+ "phase": "artificial",
2554
+ "most_stable_crystal": "",
2555
+ "type": "Transactinide",
2556
+ "ionic_radius": null,
2557
+ "atomic_radius": null,
2558
+ "electronegativity": null,
2559
+ "first_ionization_potential": null,
2560
+ "density": 37,
2561
+ "melting_point": null,
2562
+ "boiling_point": null,
2563
+ "isotopes": null,
2564
+ "discoverer": "Armbruster and M�nzenberg",
2565
+ "year_of_discovery": "1981",
2566
+ "specific_heat_capacity": null,
2567
+ "electron_configuration": "",
2568
+ "display_row": 7,
2569
+ "display_column": 7
2570
+ }, {
2571
+ "atomic_number": 108,
2572
+ "name": "Hassium",
2573
+ "symbol": "Hs",
2574
+ "atomic_weight": 267,
2575
+ "period": 7,
2576
+ "group": 8,
2577
+ "phase": "artificial",
2578
+ "most_stable_crystal": "",
2579
+ "type": "Transactinide",
2580
+ "ionic_radius": null,
2581
+ "atomic_radius": null,
2582
+ "electronegativity": null,
2583
+ "first_ionization_potential": null,
2584
+ "density": 41,
2585
+ "melting_point": null,
2586
+ "boiling_point": null,
2587
+ "isotopes": null,
2588
+ "discoverer": "Armbruster and M�nzenberg",
2589
+ "year_of_discovery": "1983",
2590
+ "specific_heat_capacity": null,
2591
+ "electron_configuration": "",
2592
+ "display_row": 7,
2593
+ "display_column": 8
2594
+ }, {
2595
+ "atomic_number": 109,
2596
+ "name": "Meitnerium",
2597
+ "symbol": "Mt",
2598
+ "atomic_weight": 268,
2599
+ "period": 7,
2600
+ "group": 9,
2601
+ "phase": "artificial",
2602
+ "most_stable_crystal": "",
2603
+ "type": "Transactinide",
2604
+ "ionic_radius": null,
2605
+ "atomic_radius": null,
2606
+ "electronegativity": null,
2607
+ "first_ionization_potential": null,
2608
+ "density": 35,
2609
+ "melting_point": null,
2610
+ "boiling_point": null,
2611
+ "isotopes": null,
2612
+ "discoverer": "GSI, Darmstadt, West Germany",
2613
+ "year_of_discovery": "1982",
2614
+ "specific_heat_capacity": null,
2615
+ "electron_configuration": "",
2616
+ "display_row": 7,
2617
+ "display_column": 9
2618
+ }, {
2619
+ "atomic_number": 110,
2620
+ "name": "Darmstadtium",
2621
+ "symbol": "Ds",
2622
+ "atomic_weight": 271,
2623
+ "period": 7,
2624
+ "group": 10,
2625
+ "phase": "artificial",
2626
+ "most_stable_crystal": "",
2627
+ "type": "Transactinide",
2628
+ "ionic_radius": null,
2629
+ "atomic_radius": null,
2630
+ "electronegativity": null,
2631
+ "first_ionization_potential": null,
2632
+ "density": null,
2633
+ "melting_point": null,
2634
+ "boiling_point": null,
2635
+ "isotopes": null,
2636
+ "discoverer": "",
2637
+ "year_of_discovery": "",
2638
+ "specific_heat_capacity": null,
2639
+ "electron_configuration": "",
2640
+ "display_row": 7,
2641
+ "display_column": 10
2642
+ }, {
2643
+ "atomic_number": 111,
2644
+ "name": "Roentgenium",
2645
+ "symbol": "Rg",
2646
+ "atomic_weight": 272,
2647
+ "period": 7,
2648
+ "group": 11,
2649
+ "phase": "artificial",
2650
+ "most_stable_crystal": "",
2651
+ "type": "Transactinide",
2652
+ "ionic_radius": null,
2653
+ "atomic_radius": null,
2654
+ "electronegativity": null,
2655
+ "first_ionization_potential": null,
2656
+ "density": null,
2657
+ "melting_point": null,
2658
+ "boiling_point": null,
2659
+ "isotopes": null,
2660
+ "discoverer": "",
2661
+ "year_of_discovery": "",
2662
+ "specific_heat_capacity": null,
2663
+ "electron_configuration": "",
2664
+ "display_row": 7,
2665
+ "display_column": 11
2666
+ }, {
2667
+ "atomic_number": 112,
2668
+ "name": "Copernicium",
2669
+ "symbol": "Cn",
2670
+ "atomic_weight": 285,
2671
+ "period": 7,
2672
+ "group": 12,
2673
+ "phase": "artificial",
2674
+ "most_stable_crystal": "",
2675
+ "type": "Transactinide",
2676
+ "ionic_radius": null,
2677
+ "atomic_radius": null,
2678
+ "electronegativity": null,
2679
+ "first_ionization_potential": null,
2680
+ "density": null,
2681
+ "melting_point": null,
2682
+ "boiling_point": null,
2683
+ "isotopes": null,
2684
+ "discoverer": "",
2685
+ "year_of_discovery": "",
2686
+ "specific_heat_capacity": null,
2687
+ "electron_configuration": "",
2688
+ "display_row": 7,
2689
+ "display_column": 12
2690
+ }, {
2691
+ "atomic_number": 113,
2692
+ "name": "Nihonium",
2693
+ "symbol": "Nh",
2694
+ "atomic_weight": 284,
2695
+ "period": 7,
2696
+ "group": 13,
2697
+ "phase": "artificial",
2698
+ "most_stable_crystal": "",
2699
+ "type": "",
2700
+ "ionic_radius": null,
2701
+ "atomic_radius": null,
2702
+ "electronegativity": null,
2703
+ "first_ionization_potential": null,
2704
+ "density": null,
2705
+ "melting_point": null,
2706
+ "boiling_point": null,
2707
+ "isotopes": null,
2708
+ "discoverer": "",
2709
+ "year_of_discovery": "",
2710
+ "specific_heat_capacity": null,
2711
+ "electron_configuration": "",
2712
+ "display_row": 7,
2713
+ "display_column": 13
2714
+ }, {
2715
+ "atomic_number": 114,
2716
+ "name": "Flerovium",
2717
+ "symbol": "Fl",
2718
+ "atomic_weight": 289,
2719
+ "period": 7,
2720
+ "group": 14,
2721
+ "phase": "artificial",
2722
+ "most_stable_crystal": "",
2723
+ "type": "Transactinide",
2724
+ "ionic_radius": null,
2725
+ "atomic_radius": null,
2726
+ "electronegativity": null,
2727
+ "first_ionization_potential": null,
2728
+ "density": null,
2729
+ "melting_point": null,
2730
+ "boiling_point": null,
2731
+ "isotopes": null,
2732
+ "discoverer": "",
2733
+ "year_of_discovery": "",
2734
+ "specific_heat_capacity": null,
2735
+ "electron_configuration": "",
2736
+ "display_row": 7,
2737
+ "display_column": 14
2738
+ }, {
2739
+ "atomic_number": 115,
2740
+ "name": "Moscovium",
2741
+ "symbol": "Mv",
2742
+ "atomic_weight": 288,
2743
+ "period": 7,
2744
+ "group": 15,
2745
+ "phase": "artificial",
2746
+ "most_stable_crystal": "",
2747
+ "type": "",
2748
+ "ionic_radius": null,
2749
+ "atomic_radius": null,
2750
+ "electronegativity": null,
2751
+ "first_ionization_potential": null,
2752
+ "density": null,
2753
+ "melting_point": null,
2754
+ "boiling_point": null,
2755
+ "isotopes": null,
2756
+ "discoverer": "",
2757
+ "year_of_discovery": "",
2758
+ "specific_heat_capacity": null,
2759
+ "electron_configuration": "",
2760
+ "display_row": 7,
2761
+ "display_column": 15
2762
+ }, {
2763
+ "atomic_number": 116,
2764
+ "name": "Livermorium",
2765
+ "symbol": "Lv",
2766
+ "atomic_weight": 292,
2767
+ "period": 7,
2768
+ "group": 16,
2769
+ "phase": "artificial",
2770
+ "most_stable_crystal": "",
2771
+ "type": "Transactinide",
2772
+ "ionic_radius": null,
2773
+ "atomic_radius": null,
2774
+ "electronegativity": null,
2775
+ "first_ionization_potential": null,
2776
+ "density": null,
2777
+ "melting_point": null,
2778
+ "boiling_point": null,
2779
+ "isotopes": null,
2780
+ "discoverer": "",
2781
+ "year_of_discovery": "",
2782
+ "specific_heat_capacity": null,
2783
+ "electron_configuration": "",
2784
+ "display_row": 7,
2785
+ "display_column": 16
2786
+ }, {
2787
+ "atomic_number": 117,
2788
+ "name": "Tennessine",
2789
+ "symbol": "Ts",
2790
+ "atomic_weight": 295,
2791
+ "period": 7,
2792
+ "group": 17,
2793
+ "phase": "artificial",
2794
+ "most_stable_crystal": "",
2795
+ "type": "",
2796
+ "ionic_radius": null,
2797
+ "atomic_radius": null,
2798
+ "electronegativity": null,
2799
+ "first_ionization_potential": null,
2800
+ "density": null,
2801
+ "melting_point": null,
2802
+ "boiling_point": null,
2803
+ "isotopes": null,
2804
+ "discoverer": "",
2805
+ "year_of_discovery": "",
2806
+ "specific_heat_capacity": null,
2807
+ "electron_configuration": "",
2808
+ "display_row": 7,
2809
+ "display_column": 17
2810
+ }, {
2811
+ "atomic_number": 118,
2812
+ "name": "Oganesson",
2813
+ "symbol": "Og",
2814
+ "atomic_weight": 294,
2815
+ "period": 7,
2816
+ "group": 18,
2817
+ "phase": "artificial",
2818
+ "most_stable_crystal": "",
2819
+ "type": "Noble Gas",
2820
+ "ionic_radius": null,
2821
+ "atomic_radius": null,
2822
+ "electronegativity": null,
2823
+ "first_ionization_potential": null,
2824
+ "density": null,
2825
+ "melting_point": null,
2826
+ "boiling_point": null,
2827
+ "isotopes": null,
2828
+ "discoverer": "",
2829
+ "year_of_discovery": "",
2830
+ "specific_heat_capacity": null,
2831
+ "electron_configuration": "",
2832
+ "display_row": 7,
2833
+ "display_column": 18
2834
+ }]
2835
+ }