-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathen_source.json
More file actions
2292 lines (2292 loc) · 52.7 KB
/
Copy pathen_source.json
File metadata and controls
2292 lines (2292 loc) · 52.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"1": {
"ions": "H⁺ (Hydrogen ion), H⁻ (Hydride)",
"history": {
"discoveryYear": "1766",
"discoveredBy": "Henry Cavendish",
"namedBy": "Antoine Lavoisier"
},
"stse": [
"Energy transition (Fuel Cells)",
"Hydrogen as energy carrier",
"Heavy Water (D₂O) in CANDU reactors"
],
"uses": [
"Ammonia Production",
"Hydrogenation"
],
"hazards": [
"Highly flammable",
"Explosion risk"
]
},
"2": {
"ions": "No common ions",
"history": {
"discoveryYear": "1868 (spectral); 1895 (isolated)",
"discoveredBy": "William Ramsay, Per Teodor Cleve",
"namedBy": "Lockyer & Frankland"
},
"stse": [
"Cryogenics (MRI supermagnets)",
"Non-renewable resource conservation"
],
"uses": [
"MRI cooling",
"Lifting gas (balloons)",
"Shielding gas (welding)"
],
"hazards": [
"Asphyxiant in confined spaces"
]
},
"3": {
"ions": "Li⁺ (Lithium)",
"history": {
"discoveryYear": "1817",
"discoveredBy": "Johan August Arfwedson",
"namedBy": "Jöns Jakob Berzelius"
},
"stse": [
"Battery technology (EV revolution)",
"Mental health (Mood stabilizers)"
],
"uses": [
"Li-ion batteries",
"Ceramics",
"Lubricants"
],
"hazards": [
"Reacts vigorously with water",
"Corrosive"
]
},
"4": {
"ions": "Be²⁺ (Beryllium)",
"history": {
"discoveryYear": "1798",
"discoveredBy": "Louis-Nicolas Vauquelin",
"namedBy": "Friedrich Wöhler"
},
"stse": [
"Aerospace engineering (James Webb Telescope mirrors)",
"Nuclear physics (Neutron reflector)"
],
"uses": [
"X-ray windows",
"Non-sparking tools (alloys)"
],
"hazards": [
"Highly toxic (Berylliosis)",
"Carcinogenic"
]
},
"5": {
"ions": "No common ions",
"history": {
"discoveryYear": "1808",
"discoveredBy": "Gay-Lussac & Thénard (and Davy)",
"namedBy": "Derived from \"Borax\""
},
"stse": [
"Agriculture (Essential plant nutrient)",
"Nuclear safety (Control rods)"
],
"uses": [
"Pyrex glass (Borosilicate)",
"Fiberglass",
"Detergents"
],
"hazards": [
"Low toxicity as element",
"some compounds toxic"
]
},
"6": {
"ions": "No common ions",
"history": {
"discoveryYear": "Prehistoric",
"discoveredBy": "Ancient Civilizations",
"namedBy": "Antoine Lavoisier"
},
"stse": [
"Climate Change (Carbon Cycle)",
"Organic Chemistry (Basis of Life)",
"Radiocarbon dating"
],
"uses": [
"Steel manufacturing",
"Filters",
"Gemstones",
"Fuels"
],
"hazards": [
"CO/CO₂ from combustion",
"dust inhalation"
]
},
"7": {
"ions": "N³⁻ (Nitride)",
"history": {
"discoveryYear": "1772",
"discoveredBy": "Daniel Rutherford",
"namedBy": "Jean-Antoine Chaptal"
},
"stse": [
"Agriculture (Haber-Bosch Process/Fertilizers)",
"Cryogenics (Liquid N₂)"
],
"uses": [
"Fertilizers",
"Explosives",
"Food packaging (inert atmosphere)"
],
"hazards": [
"Asphyxiant (displaces oxygen)"
]
},
"8": {
"ions": "O²⁻ (Oxide)",
"history": {
"discoveryYear": "1774",
"discoveredBy": "Joseph Priestley / Carl Wilhelm Scheele",
"namedBy": "Antoine Lavoisier"
},
"stse": [
"Biological respiration",
"Combustion engines",
"Ozone layer protection"
],
"uses": [
"Steel making",
"Medical life support",
"Water treatment"
],
"hazards": [
"Oxidizer (accelerates fire)"
]
},
"9": {
"ions": "F⁻ (Fluoride)",
"history": {
"discoveryYear": "1886",
"discoveredBy": "Henri Moissan",
"namedBy": "Humphry Davy (suggested)"
},
"stse": [
"Dental health (Water fluoridation)",
"Nuclear fuel (UF₆ enrichment)"
],
"uses": [
"Teflon (PTFE)",
"Toothpaste",
"Refrigerants"
],
"hazards": [
"Highly toxic",
"Corrosive",
"Reacts with almost everything"
]
},
"10": {
"ions": "No common ions",
"history": {
"discoveryYear": "1898",
"discoveredBy": "William Ramsay & Morris Travers",
"namedBy": "Ramsay (from Greek neos)"
},
"stse": [
"Lighting technology",
"Lasers"
],
"uses": [
"Neon signs",
"High-voltage indicators",
"Cryogenics"
],
"hazards": [
"Asphyxiant"
]
},
"11": {
"ions": "Na⁺ (Sodium)",
"history": {
"discoveryYear": "1807",
"discoveredBy": "Humphry Davy",
"namedBy": "Humphry Davy"
},
"stse": [
"Human biology (Nerve impulses)",
"Nuclear reactors (Coolant in fast breeders)"
],
"uses": [
"Table salt (NaCl)",
"Street lights",
"Soap making"
],
"hazards": [
"Reacts violently with water"
]
},
"12": {
"ions": "Mg²⁺ (Magnesium)",
"history": {
"discoveryYear": "1755 (Identified); 1808 (Isolated)",
"discoveredBy": "Joseph Black (Id.); Humphry Davy (Iso.)",
"namedBy": "Derived from Magnesia district"
},
"stse": [
"Biological photosynthesis (Chlorophyll center)",
"Lightweight alloys"
],
"uses": [
"Aerospace alloys",
"Flares/Fireworks",
"Antacids"
],
"hazards": [
"Flammable (metal fire difficult to extinguish)"
]
},
"13": {
"ions": "Al³⁺ (Aluminum)",
"history": {
"discoveryYear": "1825",
"discoveredBy": "Hans Christian Ørsted",
"namedBy": "Humphry Davy"
},
"stse": [
"Recycling (Infinite recyclability)",
"Transportation efficiency (Lightweighting)"
],
"uses": [
"Aircraft structures",
"Cans/Foil",
"Power lines"
],
"hazards": [
"Dust is flammable/explosive"
]
},
"14": {
"ions": "No common ions",
"history": {
"discoveryYear": "1824",
"discoveredBy": "Jöns Jakob Berzelius",
"namedBy": "Thomas Thomson"
},
"stse": [
"The Digital Age (Semiconductors/Microchips)",
"Solar energy (Photovoltaics)"
],
"uses": [
"Electronics",
"Glass/Concrete (as Silicates)",
"Silicones"
],
"hazards": [
"Silicosis (chronic dust inhalation)"
]
},
"15": {
"ions": "P³⁻ (Phosphide)",
"history": {
"discoveryYear": "1669",
"discoveredBy": "Hennig Brand",
"namedBy": "Derived from Greek Light-bearing"
},
"stse": [
"Agriculture (Essential fertilizer)",
"Biology (DNA backbone/ATP)",
"Eutrophication"
],
"uses": [
"Fertilizers",
"Matchboxes (Red P)",
"Steel production"
],
"hazards": [
"P allotrope is highly toxic and pyrophoric (ignites in air)"
]
},
"16": {
"ions": "S²⁻ (Sulfide)",
"history": {
"discoveryYear": "Prehistoric",
"discoveredBy": "Ancient Civilizations",
"namedBy": "Antoine Lavoisier (established as element)"
},
"stse": [
"Industrial Chemistry (Sulfuric acid production)",
"Environmental Science (Acid Rain/SO₂)"
],
"uses": [
"Fertilizers",
"Gunpowder",
"Vulcanization of rubber"
],
"hazards": [
"SO₂ gas is toxic and corrosive"
]
},
"17": {
"ions": "Cl⁻ (Chloride)",
"history": {
"discoveryYear": "1774",
"discoveredBy": "Carl Wilhelm Scheele",
"namedBy": "Humphry Davy (from Greek chloros)"
},
"stse": [
"Public Health (Water chlorination/Disinfection)",
"Chemical Warfare (WWI Choking gas)"
],
"uses": [
"PVC (Plastics)",
"Bleach",
"Water purification"
],
"hazards": [
"Highly toxic gas",
"Pulmonary irritant"
]
},
"18": {
"ions": "No common ions",
"history": {
"discoveryYear": "1894",
"discoveredBy": "Lord Rayleigh & William Ramsay",
"namedBy": "From Greek argos (lazy/inactive)"
},
"stse": [
"Preservation (Museum documents stored in Ar)",
"Atmospheric science"
],
"uses": [
"Welding (Shielding gas)",
"Incandescent light bulbs",
"Double-pane windows"
],
"hazards": [
"Asphyxiant in confined spaces"
]
},
"19": {
"ions": "K⁺ (Potassium)",
"history": {
"discoveryYear": "1807",
"discoveredBy": "Humphry Davy",
"namedBy": "Humphry Davy (from 'Potash')"
},
"stse": [
"Agriculture (NPK Fertilizers)",
"Geology (K-Ar dating)",
"Biology (Nerve transmission)"
],
"uses": [
"Fertilizers",
"Soaps",
"Gunpowder (KNO₃)"
],
"hazards": [
"Reacts violently with water"
]
},
"20": {
"ions": "Ca²⁺ (Calcium)",
"history": {
"discoveryYear": "1808",
"discoveredBy": "Humphry Davy",
"namedBy": "From Latin calx (lime)"
},
"stse": [
"Construction (Concrete/Cement chemistry)",
"Human Anatomy (Bones/Teeth structure)"
],
"uses": [
"Cement",
"Steelmaking (Desulfurization)",
"Dietary supplements"
],
"hazards": [
"Reacts with water (slowly compared to Na/K)"
]
},
"21": {
"ions": "Sc³⁺ (Scandium)",
"history": {
"discoveryYear": "1879",
"discoveredBy": "Lars Fredrik Nilson",
"namedBy": "From Latin Scandia (Scandinavia)"
},
"stse": [
"Prediction validation (Mendeleev predicted it as 'Eka-boron')"
],
"uses": [
"Aerospace alloys (Aluminum-Scandium for MiG fighters)",
"Stadium lighting"
],
"hazards": [
"Elemental dust is flammable"
]
},
"22": {
"ions": "Ti³⁺ (Titanium(III)), Ti⁴⁺ (Titanium(IV))",
"history": {
"discoveryYear": "1791",
"discoveredBy": "William Gregor",
"namedBy": "Martin Heinrich Klaproth (Titans of mythology)"
},
"stse": [
"Medical Engineering (Biocompatible implants)",
"Aerospace (High strength-to-weight ratio)"
],
"uses": [
"Joint replacements",
"Aircraft engines",
"Pigment (TiO₂)"
],
"hazards": [
"Nontoxic (biologically inert)"
]
},
"23": {
"ions": "V²⁺ (Vanadium(II)), V³⁺ (Vanadium(III))",
"history": {
"discoveryYear": "1801",
"discoveredBy": "Andrés Manuel del Río",
"namedBy": "Nils Gabriel Sefström (Vanadis, Norse goddess)"
},
"stse": [
"Materials Science (High-speed steel tools)"
],
"uses": [
"Ferrovanadium alloys (Tools, Axles)",
"Sulfuric acid catalyst (V₂O₅)"
],
"hazards": [
"Compounds (especially V₂O₅) are toxic"
]
},
"24": {
"ions": "Cr²⁺ (Chromium(II)), Cr³⁺ (Chromium(III))",
"history": {
"discoveryYear": "1797",
"discoveredBy": "Louis-Nicolas Vauquelin",
"namedBy": "From Greek chroma (color)"
},
"stse": [
"Corrosion protection (Stainless steel passivation)",
"Environmental Toxicology (Hexavalent chromium)"
],
"uses": [
"Stainless steel (minimum 10.5%)",
"Chrome plating",
"Pigments"
],
"hazards": [
"Cr(VI) is carcinogenic and highly toxic",
"Cr(III) essentiality debated in modern literature"
]
},
"25": {
"ions": "Mn²⁺ (Manganese(II)), Mn³⁺ (Manganese(III))",
"history": {
"discoveryYear": "1774",
"discoveredBy": "Johan Gottlieb Gahn",
"namedBy": "Derived from Magnesia"
},
"stse": [
"Metallurgy (Essential for steel strength)",
"Batteries (Alkaline cells)"
],
"uses": [
"Steel alloys",
"Aluminum beverage cans",
"Dry cell batteries (MnO₂)"
],
"hazards": [
"Manganism (neurotoxicity) from chronic dust inhalation"
]
},
"26": {
"ions": "Fe²⁺ (Iron(II)), Fe³⁺ (Iron(III))",
"history": {
"discoveryYear": "Prehistoric (~4000 BCE)",
"discoveredBy": "Ancient Civilizations (Iron Age)",
"namedBy": "From Anglo-Saxon iren (Symbol Fe from Latin ferrum)"
},
"stse": [
"Civilization development (Steel infrastructure)",
"Biology (Hemoglobin/Oxygen transport)"
],
"uses": [
"Construction (Steel)",
"Vehicles",
"Machinery"
],
"hazards": [
"Low toxicity",
"acute overdose toxic"
]
},
"27": {
"ions": "Co²⁺ (Cobalt(II)), Co³⁺ (Cobalt(III))",
"history": {
"discoveryYear": "1735",
"discoveredBy": "Georg Brandt",
"namedBy": "From German Kobold (goblin/spirit)"
},
"stse": [
"Renewable Energy (EV Batteries)",
"Medical (Radiation therapy Co-60)",
"Biology (Vitamin B12)"
],
"uses": [
"Lithium-ion battery cathodes",
"Superalloys (Turbines)",
"Blue pigments"
],
"hazards": [
"Toxic",
"Skin sensitizer"
]
},
"28": {
"ions": "Ni²⁺ (Nickel(II)), Ni³⁺ (Nickel(III))",
"history": {
"discoveryYear": "1751",
"discoveredBy": "Axel Fredrik Cronstedt",
"namedBy": "From Kupfernickel (Devil's copper)"
},
"stse": [
"Currency (Coins)",
"Alloys (Stainless steel)",
"Catalysis (Hydrogenation)"
],
"uses": [
"Stainless steel",
"Batteries",
"Plating",
"Coins"
],
"hazards": [
"Common allergen (contact dermatitis)"
]
},
"29": {
"ions": "Cu⁺ (Copper(I)), Cu²⁺ (Copper(II))",
"history": {
"discoveryYear": "Prehistoric (~9000 BCE)",
"discoveredBy": "Middle Eastern Civilizations",
"namedBy": "From Latin Cyprium (Metal of Cyprus)"
},
"stse": [
"Electrification (Global grid)",
"Antimicrobial properties (Hospital surfaces)"
],
"uses": [
"Wiring",
"Plumbing",
"Alloys (Bronze/Brass)"
],
"hazards": [
"Toxic to invertebrates/aquatic life",
"essential for humans"
]
},
"30": {
"ions": "Zn²⁺ (Zinc)",
"history": {
"discoveryYear": "~1000 CE (India); 1746 (Europe isolation)",
"discoveredBy": "Indian metallurgists; Andreas Sigismund Marggraf",
"namedBy": "Paracelsus (from German Zinke)"
},
"stse": [
"Corrosion protection (Sacrificial anode)",
"Biochemistry (Enzyme cofactor)"
],
"uses": [
"Galvanizing steel",
"Die-casting",
"Brass alloy"
],
"hazards": [
"Metal fume fever (from welding)"
]
},
"31": {
"ions": "Ga³⁺ (Gallium)",
"history": {
"discoveryYear": "1875",
"discoveredBy": "Paul-Émile Lecoq de Boisbaudran",
"namedBy": "Lecoq de Boisbaudran (Gallia/France)"
},
"stse": [
"Semiconductor physics (LEDs/Lasers)",
"Mendeleev's 'Eka-aluminum'"
],
"uses": [
"Blue/Violet LEDs (GaN)",
"Integrated circuits",
"High-temp thermometers"
],
"hazards": [
"Corrosive to aluminum (liquid metal embrittlement)"
]
},
"32": {
"ions": "No common ions",
"history": {
"discoveryYear": "1886",
"discoveredBy": "Clemens Winkler",
"namedBy": "Winkler (Germania/Germany)"
},
"stse": [
"Electronics history (First transistors were Ge)",
"Fiber optics"
],
"uses": [
"Fiber optics",
"Infrared optics",
"Polymerization catalysts"
],
"hazards": [
"Some organic compounds toxic"
]
},
"33": {
"ions": "No common ions",
"history": {
"discoveryYear": "~1250 (Isolated)",
"discoveredBy": "Albertus Magnus (attributed)",
"namedBy": "From Persian zarnikh (yellow orpiment)"
},
"stse": [
"Toxicology (Historical poison)",
"Semiconductor doping (n-type)"
],
"uses": [
"Semiconductors (GaAs)",
"Wood preservatives (historical)",
"Alloys"
],
"hazards": [
"Highly toxic",
"Carcinogenic"
]
},
"34": {
"ions": "No common ions",
"history": {
"discoveryYear": "1817",
"discoveredBy": "Jöns Jakob Berzelius",
"namedBy": "From Greek selene (Moon)"
},
"stse": [
"Xerox process (Photoconductivity)",
"Biological trace element"
],
"uses": [
"Photocopying",
"Glass decolorizing",
"Solar cells"
],
"hazards": [
"Toxic in large amounts",
"essential in trace amounts"
]
},
"35": {
"ions": "Br⁻ (Bromide)",
"history": {
"discoveryYear": "1826",
"discoveredBy": "Antoine Jérôme Balard",
"namedBy": "From Greek bromos (stench)"
},
"stse": [
"Flame retardants",
"Ozone depletion"
],
"uses": [
"Flame retardants",
"Drilling fluids",
"Photographic film (AgBr)"
],
"hazards": [
"Corrosive liquid",
"vapor is highly toxic"
]
},
"36": {
"ions": "No common ions",
"history": {
"discoveryYear": "1898",
"discoveredBy": "William Ramsay & Morris Travers",
"namedBy": "From Greek kryptos (hidden)"
},
"stse": [
"Measurement standards (Meter was defined by Kr-86 light 1960-1983)"
],
"uses": [
"High-speed photography flashes",
"Fluorescent bulbs",
"Double-pane windows"
],
"hazards": [
"Asphyxiant",
"Radioactive ⁸⁵Kr is a fission product"
]
},
"37": {
"ions": "Rb⁺ (Rubidium)",
"history": {
"discoveryYear": "1861",
"discoveredBy": "Robert Bunsen & Gustav Kirchhoff",
"namedBy": "From Latin rubidius (deep red, from spectrum)"
},
"stse": [
"Geochronology (Dating of rocks/minerals)",
"Atomic clocks"
],
"uses": [
"Vacuum tube getters",
"Photocells",
"Atomic clocks"
],
"hazards": [
"Reacts violently with water (ignites spontaneously)"
]
},
"38": {
"ions": "Sr²⁺ (Strontium)",
"history": {
"discoveryYear": "1790 (identified); 1808 (isolated)",
"discoveredBy": "Adair Crawford (Id.); Humphry Davy (Iso.)",
"namedBy": "From Strontian, Scotland"
},
"stse": [
"Nuclear fallout tracking (Sr-90 mimics Calcium in bones)",
"Fireworks"
],
"uses": [
"Red fireworks/flares",
"Glow-in-the-dark paints (SrAl₂O₄)"
],
"hazards": [
"Sr-90 is a dangerous radiotoxin",
"elemental Sr reacts with water"
]
},
"39": {
"ions": "Y³⁺ (Yttrium)",
"history": {
"discoveryYear": "1794",
"discoveredBy": "Johan Gadolin",
"namedBy": "From Ytterby, Sweden"
},
"stse": [
"Superconductors (YBCO)",
"LEDs"
],
"uses": [
"Red phosphors (CRTs/LEDs)",
"Laser crystals (Nd:YAG)",
"Superconductors"
],
"hazards": [
"Compounds can be toxic",
"dust is flammable"
]
},
"40": {
"ions": "No common ions",
"history": {
"discoveryYear": "1789",
"discoveredBy": "Martin Heinrich Klaproth",
"namedBy": "From Persian zargun (gold-colored)"
},
"stse": [
"Nuclear energy (Fuel rod cladding due to low neutron absorption)",
"Gemstones"
],
"uses": [
"Nuclear fuel cladding",
"Chemical piping",
"Fake diamonds (CZ)"
],
"hazards": [
"Powder is highly flammable/explosive",
"biologically inert"
]
},
"41": {
"ions": "No common ions",
"history": {
"discoveryYear": "1801",
"discoveredBy": "Charles Hatchett",
"namedBy": "Niobe (daughter of Tantalus)"
},
"stse": [
"MRI Technology (Superconducting magnets)",
"Steel production"
],
"uses": [
"Superconducting magnets (MRI)",
"Pipelines",
"Hypoallergenic jewelry"
],
"hazards": [
"Dust causes eye/skin irritation"
]
},
"42": {
"ions": "No common ions",
"history": {
"discoveryYear": "1778",
"discoveredBy": "Carl Wilhelm Scheele",
"namedBy": "From Greek molybdos (lead-like)"
},
"stse": [
"Enzymatic function (Essential for nitrogen fixation in plants)"
],
"uses": [
"High-strength steel alloys",
"Lubricants (MoS₂)",
"Nuclear imaging (Mo-99 precursor)"
],
"hazards": [
"Toxic in high doses",
"essential trace element"
]
},
"43": {
"ions": "No common ions",
"history": {
"discoveryYear": "1937",
"discoveredBy": "Carlo Perrier & Emilio Segrè",
"namedBy": "From Greek technetos (artificial)"
},
"stse": [
"Nuclear Medicine (Tc-99m is the world's most used medical radiotracer)"
],
"uses": [
"Medical imaging (Bone scans, heart scans)",
"Research"
],
"hazards": [
"Radioactive (radiotoxicity depends on isotope)"
]
},
"44": {
"ions": "No common ions",
"history": {
"discoveryYear": "1844",
"discoveredBy": "Karl Ernst Claus",
"namedBy": "From Ruthenia (Latin for Russia)"
},
"stse": [
"Green Chemistry (Catalysts)",
"Electronics (Chip resistors)"
],
"uses": [
"Electrical contacts",
"Hard disk drives",
"Solar energy"
],
"hazards": [
"RuO₄ is highly toxic and volatile"
]
},
"45": {
"ions": "No common ions",
"history": {
"discoveryYear": "1803",
"discoveredBy": "William Hyde Wollaston",
"namedBy": "From Greek rhodon (rose, due to salt color)"
},
"stse": [
"Automotive Industry (Catalytic converters for NOx reduction)"
],
"uses": [
"Catalytic converters (80% of use)",
"Jewelry plating (gold finish)"
],
"hazards": [
"Compounds are toxic/carcinogenic",
"metal is inert"
]
},
"46": {
"ions": "No common ions",
"history": {
"discoveryYear": "1803",
"discoveredBy": "William Hyde Wollaston",
"namedBy": "From asteroid Pallas"
},
"stse": [
"Hydrogen Economy (Can absorb 900x volume of H₂)",
"Catalytic converters"
],
"uses": [
"Catalytic converters",
"Dentistry",
"Fuel cells",
"Hydrogen purification"
],
"hazards": [
"Low toxicity",
"but can cause allergic reactions"
]
},
"47": {
"ions": "Ag⁺ (Silver)",
"history": {
"discoveryYear": "Prehistoric (~3000 BCE)",
"discoveredBy": "Ancient Civilizations",
"namedBy": "Anglo-Saxon seolfor (Symbol Ag from Latin argentum)"
},
"stse": [
"Medicine (Antibacterial properties)",
"Photography (Traditional film chemistry)"
],
"uses": [
"Jewelry",
"Electronics (Best conductor)",
"Mirrors",
"Solar panels"
],
"hazards": [
"Argyria (skin turns blue from chronic exposure)",
"toxic to aquatic life"
]
},
"48": {
"ions": "Cd²⁺ (Cadmium)",
"history": {
"discoveryYear": "1817",
"discoveredBy": "Friedrich Stromeyer",
"namedBy": "From Latin cadmia (calamine)"
},
"stse": [
"Environmental Pollution (Ni-Cd battery disposal)",
"Pigments"
],
"uses": [
"Ni-Cd Batteries (being phased out)",
"Solar cells (CdTe)",
"Pigments"
],
"hazards": [
"Highly toxic",
"Carcinogen",
"Accumulates in kidneys"
]
},
"49": {
"ions": "In³⁺ (Indium)",
"history": {
"discoveryYear": "1863",
"discoveredBy": "Ferdinand Reich & H.T. Richter",
"namedBy": "From Indigo spectrum line"
},
"stse": [
"Touchscreen Technology (Indium Tin Oxide films)"
],
"uses": [
"LCD/OLED screens (ITO)",
"Solders",
"Semiconductors"
],
"hazards": [