-
Notifications
You must be signed in to change notification settings - Fork 71
/
WMD.kif
2061 lines (1741 loc) · 88.6 KB
/
WMD.kif
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
;; copyright 2002 (c) Teknowledge, 2004-2007 Articulate Software
;;
;; Those who are interested in making use of this ontology are urged
;; to contact Adam Pease (apease [at] articulatesoftware.com).
;; This software is released under the GNU Public License
;; <http://www.gnu.org/copyleft/gpl.html>. Users of this code also consent, by
;; use of this material, to credit Teknowledge and Articulate Software
;; in any writings, briefings,
;; publications, presentations, or other representations of any code or other
;; product which incorporates, builds on, or uses this material.
;; We ask that people using or referencing this work cite our primary paper:
;; Niles, I., and Pease, A. 2001. Towards a Standard Upper Ontology. In
;; Proceedings of the 2nd International Conference on Formal Ontology in
;; Information Systems (FOIS-2001), Chris Welty and Barry Smith, eds,
;; Ogunquit, Maine, October 17-19, 2001. See also http://www.ontologyportal.org
;;
;; This file is an ontology of weapons of mass destruction, including chemical
;; and biological weapons, as well as radiological weapons. The sources used to
;; develop this formal content are listed below.
;;
;; Miller, Judith, Engelberg, Stephen, and Broad, William (2002), "Germs:
;; Biological Weapons and America's Secret War", Touchstone/Simon and Schuster.
;;
;; Norris, John and Fowler, Will (1997), "NBC: Nuclear, Biological & Chemical
;; Warfare on the Modern Battlefield", Brassey's Inc.
;;
;; Marris, Timothy C., Maynard, Robert L., and Sidell, Frederick R. (1996),
;; "Chemical Warfare Agents: Toxicology and Treatment", John Wiley & Sons.
;;
;; Centers for Disease Control web site. http://www.cdc.gov/.
;;
;; Federation of American Scientists Chemical and Biological Arms Control
;; Program web site. http://www.fas.org/bwc/index.html.
;;
;; Center for Nonproliferation Studies (CNS) web site. http://cns.miis.edu/index.htm.
(subclass BiochemicalAttack Attack)
(documentation BiochemicalAttack EnglishLanguage "&%Attacks in which a &%BiochemicalWeapon
is used against an &%Organism.")
(=>
(and
(instance ?WEAPON WeaponOfMassDestruction)
(instrument ?ATTACK ?WEAPON)
(instance ?ATTACK BiochemicalAttack))
(instance ?WEAPON BiochemicalWeapon))
(=>
(and
(instance ?WEAPON BiochemicalWeapon)
(possesses ?AGENT ?WEAPON))
(capability BiochemicalAttack agent ?AGENT))
(=>
(and
(instance ?ATTACK ViolentContest)
(instrument ?ATTACK ?WEAPON)
(instance ?WEAPON BiochemicalWeapon))
(instance ?ATTACK BiochemicalAttack))
(=>
(and
(instance ?ATTACK BiochemicalAttack)
(patient ?ATTACK ?OBJ))
(instance ?OBJ Organism))
(=>
(instance ?ATTACK BiochemicalAttack)
(hasPurpose ?ATTACK
(exists (?DAMAGE ?ORGANISM)
(and
(instance ?DAMAGE Damaging)
(patient ?DAMAGE ?ORGANISM)
(causes ?ATTACK ?DAMAGE)
(instance ?ORGANISM Organism)))))
(subclass BiochemicalAgent BiologicallyActiveSubstance)
(documentation BiochemicalAgent EnglishLanguage "A &%BiologicalAgent or a &%ChemicalAgent.")
(partition BiochemicalAgent BiologicalAgent ChemicalAgent)
(documentation AgentOfOrganismFn EnglishLanguage "A &%Function that returns the &%BiologicalAgent
composed of the given &%Organism in a &%Solution of &%Mixture.")
(instance AgentOfOrganismFn UnaryFunction)
(domainSubclass AgentOfOrganismFn 1 Organism)
(rangeSubclass AgentOfOrganismFn BiologicalAgent)
(=>
(instance ?X
(AgentOfOrganismFn ?Y))
(exists (?Z)
(and
(instance ?Z ?Y)
(part ?Z ?X))))
(subclass AerosolizedAgent BiochemicalAgent)
(documentation AerosolizedAgent EnglishLanguage "A &%BiochemicalAgent that has been divided into
particles so minute that they can be easily dispersed in the air and inhaled by
&%Humans or &%Animals. &%AerosolizedAgents tend to be more lethal and to affect
a larger area.")
(subclass BiochemicalWeapon WeaponOfMassDestruction)
(documentation BiochemicalWeapon EnglishLanguage "A &%WeaponOfMassDestruction that is
either a &%BiologicalWeapon or a &%ChemicalWeapon, i.e. not a
&%RadioactiveWeapon.")
(disjoint BiochemicalWeapon RadioactiveWeapon)
(partition BiochemicalWeapon BiologicalWeapon ChemicalWeapon)
(=>
(instance ?WEAPON BiochemicalWeapon)
(exists (?AGENT)
(and
(instance ?AGENT BiochemicalAgent)
(part ?AGENT ?WEAPON))))
(subclass RadioactiveWeapon WeaponOfMassDestruction)
(disjoint RadioactiveWeapon BiochemicalWeapon)
(documentation RadioactiveWeapon EnglishLanguage "A &%WeaponOfMassDestruction which
achieves its effect through radioactivity, either by an explosion resulting
from nuclear fission or by a conventional explosive device that scatters
radioactive debris.")
(documentation RadiologicalWeapon EnglishLanguage "&%Weapons which are designed to spread
radioactive particles over a large area by means of a conventional
explosive device rather than a nuclear reaction. These weapons are often
referred to as 'dirty bombs'.")
(subclass RadiologicalWeapon RadioactiveWeapon)
(subclass NuclearWeapon ExplosiveDevice)
(subclass NuclearWeapon Weapon)
(documentation NuclearWeapon EnglishLanguage "An &%ExplosiveDevice and &%RadioactiveWeapon
which achieves its effect by means of a critical mass of a radioactive substance.")
(subclass NuclearWeapon RadioactiveWeapon)
(=>
(instance ?W NuclearWeapon)
(capability RadiatingNuclear instrument ?W))
(subclass BiologicalWeapon BiochemicalWeapon)
(documentation BiologicalWeapon EnglishLanguage "&%Weapons which contain a sample of
&%ToxicOrganism or a &%BiologicallyActiveSubstance that is produced by a
&%ToxicOrganism (or a synthetic analogue of the latter).")
(=>
(instance ?WEAPON BiologicalWeapon)
(exists (?AGENT)
(and
(instance ?AGENT BiologicalAgent)
(part ?AGENT ?WEAPON))))
(subclass BiologicalAgent BiochemicalAgent)
(documentation BiologicalAgent EnglishLanguage "A naturally occurring &%Substance, or a
synthetic analogue of such a substance or an &%Organism that is capable
of inflicting severe harm on other &%Organisms. All &%BiologicalWeapons
contain a &%BiologicalAgent.")
(partition BiologicalAgent Toxin ToxicOrganism)
(subclass Toxin BiologicalAgent)
(subclass Toxin BiologicallyActiveSubstance)
(documentation Toxin EnglishLanguage "&%BiologicalAgents that are a toxic
&%BiologicallyActiveSubstance produced by an &%Organism or
that are the synthetic analogue of a toxic &%BiologicallyActiveSubstance
produced by an &%Organism.")
(=>
(instance ?SUBSTANCE Toxin)
(exists (?ORGANISM ?PROCESS)
(and
(instance ?ORGANISM ToxicOrganism)
(instance ?PROCESS BiologicalProcess)
(instrument ?PROCESS ?ORGANISM)
(or
(result ?PROCESS ?SUBSTANCE)
(exists (?RESULT)
(and
(result ?PROCESS ?RESULT)
(copy ?SUBSTANCE ?RESULT)))))))
(=>
(and
(instance ?DAMAGE Damaging)
(instrument ?DAMAGE ?SUBSTANCE)
(instance ?SUBSTANCE BiologicallyActiveSubstance))
(instance ?SUBSTANCE Toxin))
(subclass ToxicOrganism Organism)
(documentation ToxicOrganism EnglishLanguage "The &%Class of &%Organisms which are
poisonous to other &%Organisms.")
(=>
(instance ?ORGANISM ToxicOrganism)
(exists (?SUBSTANCE)
(and
(instance ?SUBSTANCE Toxin)
(part ?SUBSTANCE ?ORGANISM))))
(subclass BacterialAgent ToxicOrganism)
(subclass BacterialAgent Bacterium)
(biochemicalAgentDelivery BacterialAgent Breathing)
(biochemicalAgentDelivery BacterialAgent Touching)
(documentation BacterialAgent EnglishLanguage "&%BiologicalAgents that are instances
of &%Bacterium.")
(=>
(instance ?BACTERIUM Bacterium)
(exists (?NUMBER)
(and
(width ?BACTERIUM (MeasureFn ?NUMBER Meter))
(greaterThanOrEqualTo ?NUMBER 0.000001)
(lessThanOrEqualTo ?NUMBER 0.000002))))
(subclass FungalAgent ToxicOrganism)
(subclass FungalAgent Fungus)
(documentation FungalAgent EnglishLanguage "Any &%BiologicalAgent that is also a &%Fungus.")
(subclass Mycotoxin Toxin)
(subclass Mycotoxin BodySubstance)
(documentation Mycotoxin EnglishLanguage "A &%Toxin that is produced by a &%FungalAgent.")
(=>
(instance ?SUBSTANCE Mycotoxin)
(exists (?FUNGUS ?PROCESS)
(and
(instance ?FUNGUS FungalAgent)
(instance ?PROCESS BiologicalProcess)
(instrument ?PROCESS ?FUNGUS)
(result ?PROCESS ?SUBSTANCE))))
(subclass ViralAgent ToxicOrganism)
(subclass ViralAgent Virus)
(documentation ViralAgent EnglishLanguage "&%BiologicalAgents that are also a &%Virus.")
(subclass GeneticallyEngineeredOrganism Organism)
(documentation GeneticallyEngineeredOrganism EnglishLanguage "The class of &%Organisms that
are not found originally in nature, but are produced in a laboratory by
manipulating the genes of naturally occurring organisms.")
(=>
(instance ?ORGANISM GeneticallyEngineeredOrganism)
(exists (?PROCESS)
(and
(instance ?PROCESS IntentionalProcess)
(result ?PROCESS ?ORGANISM))))
(subclass RickettsialAgent BacterialAgent)
(biologicalAgentCarrier RickettsialAgent Mammal)
(biologicalAgentCarrier RickettsialAgent Arthropod)
(documentation RickettsialAgent EnglishLanguage "&%BiologicalAgents that are rickettsial
organisms, i.e. gram-negative bacteria that infect mammals and arthropods.")
(subclass RickettsiaRickettsii RickettsialAgent)
(biologicalAgentCarrier RickettsiaRickettsii Arthropod)
(biochemicalAgentSyndrome RickettsiaRickettsii RockyMountainSpottedFever)
(documentation RickettsiaRickettsii EnglishLanguage "The &%Bacterium that causes
&%RockyMountainSpottedFever.")
(instance RockyMountainSpottedFever BacterialDisease)
(instance RockyMountainSpottedFever LifeThreateningDisease)
(diseaseMortality RockyMountainSpottedFever 0.04)
(diseaseMedicine RockyMountainSpottedFever OralAntibiotic Ingesting)
(documentation RockyMountainSpottedFever EnglishLanguage "A very serious disease that is
caused &%RickettsiaRickettsii, which is carried by ticks. The most
distinctive symptom of the disease is a rash of black dots.")
(subclass RickettsiaProwazekii RickettsialAgent)
(biologicalAgentCarrier RickettsiaProwazekii Arthropod)
(biochemicalAgentSyndrome RickettsiaProwazekii LouseBorneTyphus)
(documentation RickettsiaProwazekii EnglishLanguage "The &%Bacterium that causes &%LouseBorneTyphus.")
(instance LouseBorneTyphus BacterialDisease)
(diseaseIncubation LouseBorneTyphus (MeasureFn 1 WeekDuration) (MeasureFn 2 WeekDuration))
(diseaseMedicine LouseBorneTyphus OralAntibiotic Ingesting)
(documentation LouseBorneTyphus EnglishLanguage "The only rickettsial disease which is capable of causing
widespread human epidemics. The initial symptoms of the disease are flu-like, but on the
fifth or sixth day of infection a macular eruption appears on the upper trunk of the body
and then spreads to the rest of the body.")
(subclass BacillusAnthracis BacterialAgent)
(biochemicalAgentSyndrome BacillusAnthracis Anthrax)
(biochemicalAgentDelivery BacillusAnthracis Breathing)
(biochemicalAgentDelivery BacillusAnthracis Ingesting)
(biochemicalAgentDelivery BacillusAnthracis Injecting)
(biochemicalAgentDelivery BacillusAnthracis Touching)
(biologicalAgentCarrier BacillusAnthracis HoofedMammal)
(documentation BacillusAnthracis EnglishLanguage "The &%Bacterium which causes the disease
&%Anthrax. Humans may become infected with Anthrax via contamination of a
wound or by inhaling the &%Bacterium. When it is inhaled, the disease is
often fatal if not treated early (see &%InhalationalAnthrax).")
(subclass AerosolizedBacillusAnthracis AerosolizedAgent)
(biochemicalAgentDelivery AerosolizedBacillusAnthracis Breathing)
(biochemicalAgentSyndrome AerosolizedBacillusAnthracis InhalationalAnthrax)
(documentation AerosolizedBacillusAnthracis EnglishLanguage "Also known as weaponized anthrax. These
are spores of &%BacillusAnthracis that have been separated to the point that they can
be dispersed in the air and easily inhaled by crowds.")
(=>
(instance ?X AerosolizedBacillusAnthracis)
(exists (?Y)
(and
(instance ?Y BacillusAnthracis)
(part ?Y ?X))))
(subclass Vollum1B AerosolizedBacillusAnthracis)
(documentation Vollum1B EnglishLanguage "A highly lethal, weaponized form of &%BacillusAnthracis
developed by the United States government.")
(subclass Batrachotoxin Toxin)
(subclass Batrachotoxin BodySubstance)
(lethalDose Batrachotoxin (PerFn (MeasureFn 2.0 (MicroFn Gram)) (MeasureFn 1.0 (KiloFn Gram))))
(documentation Batrachotoxin EnglishLanguage "A &%Toxin produced by some species of Frogs.")
(=>
(secretesToxin ?FROG Batrachotoxin)
(subclass ?FROG Amphibian))
(subclass ClostridiumBotulinum BacterialAgent)
(secretesToxin ClostridiumBotulinum BotulinumToxin)
(documentation ClostridiumBotulinum EnglishLanguage "The &%Bacterium that produces
&%BotulinumToxin.")
(subclass BotulinumToxin Toxin)
(subclass BotulinumToxin BodySubstance)
(subclass BotulinumToxin LifeThreateningAgent)
(lethalDose BotulinumToxin (PerFn (MeasureFn 0.001 (MicroFn Gram)) (MeasureFn 1.0 (KiloFn Gram))))
(biochemicalAgentDelivery BotulinumToxin Ingesting)
(biochemicalAgentSyndrome BotulinumToxin Botulism)
(documentation BotulinumToxin EnglishLanguage "A &%Toxin produced by the bacterium
&%ClostridiumBotulinum. It paralyzes muscles if ingested, and one
billionth of a pound is sufficient to cause death.")
(instance Botulism BacterialDisease)
(instance Botulism LifeThreateningDisease)
(instance Botulism VaccinatableDisease)
(diseaseSymptom Botulism Paralysis)
(diseaseIncubation Botulism (MeasureFn 2 HourDuration) (MeasureFn 8 DayDuration))
(documentation Botulism EnglishLanguage "A paralytic disease caused by &%BotulinumToxin,
a &%Toxin produced by the bacterium &%ClostridiumBotulinum.")
(subclass ClostridiumPerfringens BacterialAgent)
(secretesToxin ClostridiumPerfringens EpsilonToxin)
(biochemicalAgentDelivery ClostridiumPerfringens Ingesting)
(documentation ClostridiumPerfringens EnglishLanguage "&%Bacterium often found in the
intestines of &%Animals. Ingesting this &%Bacterium can result in
Perfringens food poisoning, which can attack internal organs and lead
to gangrene.")
(subclass EpsilonToxin Toxin)
(subclass EpsilonToxin BodySubstance)
(biochemicalAgentDelivery EpsilonToxin Ingesting)
(documentation EpsilonToxin EnglishLanguage "A &%Toxin produced by the bacterium
&%ClostridiumPerfringens that causes a mild form of food poisoning
that lasts one to two days.")
(subclass BurkholderiaMallei BacterialAgent)
(biologicalAgentCarrier BurkholderiaMallei Mammal)
(biochemicalAgentDelivery BurkholderiaMallei Injecting)
(biochemicalAgentSyndrome BurkholderiaMallei Glanders)
(diseaseMedicine BurkholderiaMallei Ciprofloxacin Ingesting)
(documentation BurkholderiaMallei EnglishLanguage "The &%Bacterium that causes the disease &%Glanders.
It is transmitted to humans by direct contact with infected animals. The bacteria enter
the body through the skin and the mucosal surfaces of the eyes and nose.")
(instance Glanders BacterialDisease)
(diseaseSymptom Glanders Fever)
(documentation Glanders EnglishLanguage "A disease caused by &%BurkholderiaMallei. Primary symptoms
of &%Glanders include fever, muscle aches, chest pain, muscle tightness, and headache.
Additional symptoms include tearing of the eyes, light sensitivity, and diarrhea.
There is no vaccine for this disease.")
(subclass BurkholderiaPseudomallei BacterialAgent)
(biologicalAgentCarrier BurkholderiaPseudomallei Mammal)
(biochemicalAgentDelivery BurkholderiaPseudomallei Injecting)
(biochemicalAgentDelivery BurkholderiaPseudomallei Breathing)
(biochemicalAgentDelivery BurkholderiaPseudomallei Ingesting)
(biochemicalAgentSyndrome BurkholderiaPseudomallei Melioidosis)
(documentation BurkholderiaPseudomallei EnglishLanguage "Formerly known as Pseudomonas Pseudomallei, this
is the &%Bacterium that causes &%Melioidosis.")
(instance Melioidosis BacterialDisease)
(documentation Melioidosis EnglishLanguage "Also known as Whitmore's disease, it is similar to &%Glanders.
Unlike &%Glanders, however, the disease is found predominantly in Southeast Asia. The
disease may be a localized infection or it may involve the bloodstream, the lungs or other
organs of the body.")
(subclass BrucellaBacterium BacterialAgent)
(biochemicalAgentSyndrome BrucellaBacterium Brucellosis)
(documentation BrucellaBacterium EnglishLanguage "The &%Bacterium which is responsible for the
disease &%Brucellosis. This class covers Brucella Abortus (which infects humans
and cattle), Brucella Melitensis (which infects sheep, goats, and humans), and
Brucella Suis (which infects pigs).")
(instance Brucellosis BacterialDisease)
(diseaseSymptom Brucellosis Fever)
(documentation Brucellosis EnglishLanguage "Infectious disease caused by &%BrucellaBacterium. It is
also known as undulant fever and malta fever, depending on the strain of
&%BrucellaBacterium that is reponsible for the infection.")
(subclass YersiniaPestis BacterialAgent)
(=>
(equal ?C
(AgentOfOrganismFn YersiniaPestis))
(subclass ?C LifeThreateningAgent))
(biochemicalAgentSyndrome YersiniaPestis Plague)
(biologicalAgentCarrier YersiniaPestis Rodent)
(biologicalAgentCarrier YersiniaPestis Insect)
(documentation YersiniaPestis EnglishLanguage "The &%Bacterium that causes &%Plague.")
(instance Plague BacterialDisease)
(instance Plague VaccinatableDisease)
(diseaseSymptom Plague Fever)
(documentation Plague EnglishLanguage "The disease caused by the &%Bacterium &%YersiniaPestis.
&%Plague has two forms depending on the location of the infection within the
body, &%BubonicPlague and &%PneumonicPlague.")
(subAttribute BubonicPlague Plague)
(diseaseIncubation BubonicPlague (MeasureFn 2 DayDuration) (MeasureFn 6 DayDuration))
(documentation BubonicPlague EnglishLanguage "A variant of the &%Plague which results in large
swellings, called buboes.")
(subAttribute PneumonicPlague Plague)
(diseaseIncubation PneumonicPlague (MeasureFn 3 DayDuration) (MeasureFn 4 DayDuration))
(documentation PneumonicPlague EnglishLanguage "Also known as pulmonary plague, a variant
of the &%Plague which attacks the lungs and is spread between humans by oral
bodily fluids.")
(subclass RicinToxin Toxin)
(subclass RicinToxin Protein)
(lethalDose RicinToxin (PerFn (MeasureFn 3.0 (MicroFn Gram)) (MeasureFn 1.0 (KiloFn Gram))))
(documentation RicinToxin EnglishLanguage "An extremely toxic protein found in the castor
bean plant (ricinus communis). It is 200 times more toxic than cyanide,
and it has no known antidote, and it causes vomiting, high fever, weakness,
and death.")
(subclass AbrinToxin Toxin)
(subclass AbrinToxin Protein)
(lethalDose AbrinToxin (PerFn (MeasureFn 0.04 (MicroFn Gram)) (MeasureFn 1.0 (KiloFn Gram))))
(documentation AbrinToxin EnglishLanguage "An extremely toxic protein found in the seeds of the rosary pea.
Its mechanism, symptoms, and treatment are very similar to those of &%RicinToxin. However,
&%AbrinToxin is roughly 75 times more toxic than &%RicinToxin.")
(subclass ChemicalAgent BiochemicalAgent)
(subclass ChemicalAgent CompoundSubstance)
(subclass ChemicalAgent BiologicallyActiveSubstance)
(disjoint ChemicalAgent OrganicObject)
(documentation ChemicalAgent EnglishLanguage "Synthetic compounds that are not an analogue
of anything occurring naturally and that can result in serious burns,
paralysis, and death to &%Organisms.")
(subclass ChemicalAgent (ComplementFn OrganicObject))
(subclass ChemicalWeapon BiochemicalWeapon)
(documentation ChemicalWeapon EnglishLanguage "&%Weapons that damage or destroy &%Organisms by means
of a &%ChemicalAgent.")
(=>
(instance ?WEAPON ChemicalWeapon)
(exists (?AGENT)
(and
(instance ?AGENT ChemicalAgent)
(part ?AGENT ?WEAPON))))
(=>
(instance ?AGENT ChemicalAgent)
(not
(exists (?ORGANISM ?PROCESS ?SUBSTANCE)
(and
(instance ?ORGANISM Organism)
(instance ?PROCESS BiologicalProcess)
(instrument ?PROCESS ?ORGANISM)
(result ?PROCESS ?SUBSTANCE)
(copy ?SUBSTANCE ?AGENT)))))
(subclass BlisterAgent ChemicalAgent)
(biochemicalAgentDelivery BlisterAgent Touching)
(biochemicalAgentDelivery BlisterAgent Breathing)
(biochemicalAgentDelivery BlisterAgent Ingesting)
(documentation BlisterAgent EnglishLanguage "&%ChemicalAgents that affect eyes, lungs, and skin.
&%BlisterAgents are so named because they cause blistering of the skin. They may
also cause blindness and respiratory damage.")
(=>
(instance ?AGENT BlisterAgent)
(hasPurpose ?AGENT
(exists (?DAMAGE ?TISSUE)
(and
(instance ?DAMAGE Damaging)
(instance ?TISSUE Tissue)
(patient ?DAMAGE ?TISSUE)))))
(subclass MustardGas BlisterAgent)
(documentation MustardGas EnglishLanguage "A &%BlisterAgent that was commonly used in World War I
to incapacitate troops. It is chemically stable, persistent, and is capable of
attacking the eyes, the skin, and the respiratory tract. There is no accepted
treatment or preventive measure for &%MustardGas.")
(subclass SulphurMustardGas MustardGas)
(documentation SulphurMustardGas EnglishLanguage "A kind of mustard gas. Also known as Yperite
and HD. This is regarded b some as the most effective &%BlisterAgent because it
is persistent.")
(subclass NitrogenMustardGas MustardGas)
(documentation NitrogenMustardGas EnglishLanguage "A kind of mustard gas. Also known as HN.")
(subclass Lewisite BlisterAgent)
(biochemicalAgentAntidote Lewisite Dimercaprol Covering)
(documentation Lewisite EnglishLanguage "Besides being a &%BlisterAgent, &%Lewisite causes
systemic poisoning. Its symptoms include pulmonary edema, diarrhea, reduced
body temperature and blood pressure. When large quantities of &%Lewisite are
inhaled, it can cause death in as little as 10 minutes.")
(subclass Dimercaprol BiologicallyActiveSubstance)
(documentation Dimercaprol EnglishLanguage "A chelating agent often used to treat &%Lewisite,
as well as &%Lead &%Poisoning.")
(subclass PhosgeneOxime BlisterAgent)
(documentation PhosgeneOxime EnglishLanguage "One of the most painful and destructive chemical
compounds in existence. Recovery from this &%ChemicalAgent requires one to
three months.")
(subclass BloodAgent ChemicalAgent)
(biochemicalAgentDelivery BloodAgent Breathing)
(documentation BloodAgent EnglishLanguage "A &%CompoundSubstance that prevents the normal use
of oxygen by bodily tissues. &%BloodAgents are highly volatile and disperse
easily in the open air.")
(subclass HydrogenCyanide BloodAgent)
(documentation HydrogenCyanide EnglishLanguage "A &%ChemicalAgent that was widely used by the
Nazis in extermination camps. A low dose can cause headache, disorientation,
and vomiting, while a high dose can rapidly result in respiratory and/or cardiac
arrest.")
(subclass CyanogenChloride BloodAgent)
(documentation CyanogenChloride EnglishLanguage "Used in mining and metalurgy, it is very
similar to &%HydrogenCyanide. However, it is less volatile than &%HydrogenCyanide,
and its effects on the eyes, respiratory tract, and lungs is similar to &%Phosgene
and &%ChorineGas.")
(subclass Arsine BloodAgent)
(documentation Arsine EnglishLanguage "A very toxic form of arsenic that is 2 and a half times
denser than air. Victims who die after exposure to &%Arsine generally die from
renal failure.")
(subclass IncapacitatingAgent ChemicalAgent)
(documentation IncapacitatingAgent EnglishLanguage "&%ChemicalAgents that are designed to cause
temporary disability in victims.")
(subclass CSGas IncapacitatingAgent)
(subclass BZGas IncapacitatingAgent)
(documentation BZGas EnglishLanguage "Stockpiled for a time by both NATO and the Warsaw Pact
countries, &%BZGas is a psychoactive agent that is heaver than air and reputedly
ten times more powerful than LSD. Effects of the gas are not well understood,
but they include vomiting, lethargy, loss of motor co-ordination, and cognitive
incapacity.")
(subclass NerveAgent ChemicalAgent)
(biochemicalAgentDelivery NerveAgent Breathing)
(biochemicalAgentSyndrome NerveAgent Paralysis)
(biochemicalAgentAntidote NerveAgent Atropine Injecting)
(documentation NerveAgent EnglishLanguage "These &%ChemicalAgents are easily absorbed into
the mucous membranes of humans and inactivate the essential enzyme
acetylcholinesterase, bringing about paralysis of the respiratory and central
nervous systems.")
(subclass GSeriesNerveAgent NerveAgent)
(disjoint GSeriesNerveAgent VSeriesNerveAgent)
(documentation GSeriesNerveAgent EnglishLanguage "Earliest sort of &%NerveAgent (developed
in the 1930's). This &%subclass of &%NerveAgents tends to be less
persistent, more volatile, and less toxic than &%VSeriesNerveAgents,
which were developed later. &%GSeriesNerveAgents include &%Tabun,
&%Sarin, and &%Soman.")
(subclass Tabun GSeriesNerveAgent)
(documentation Tabun EnglishLanguage "Also known as GA, one of the G-series nerve agents. It
is about half as toxic as &%Sarin, but it is more irritating to the eyes than
&%Sarin.")
(subclass Soman GSeriesNerveAgent)
(biochemicalAgentAntidote Soman PyridostigmineBromide Putting)
(lethalDose Soman (PerFn (MeasureFn 64.0 (MicroFn Gram)) (MeasureFn 1.0 (KiloFn Gram))))
(documentation Soman EnglishLanguage "Also known as GD, one of the G-series nerve agents.")
(subclass Sarin GSeriesNerveAgent)
(lethalDose Sarin (PerFn (MeasureFn 100.0 (MicroFn Gram)) (MeasureFn 1.0 (KiloFn Gram))))
(documentation Sarin EnglishLanguage "Also known as GB, one of the G-series nerve agents.")
(subclass GF GSeriesNerveAgent)
(documentation GF EnglishLanguage "One of the G-series nerve agents.")
(subclass VSeriesNerveAgent NerveAgent)
(documentation VSeriesNerveAgent EnglishLanguage "More advanced sort of &%NerveAgent
(developed in the 1950's). This &%subclass of &%NerveAgents tends to be
more persistent and toxic than &%GSeriesNerveAgents, which were developed
earlier. &%VSeriesNerveAgents include VE, VG, VM, VS, and VX.")
(subclass VX VSeriesNerveAgent)
(lethalDose VX (PerFn (MeasureFn 15.0 (MicroFn Gram)) (MeasureFn 1.0 (KiloFn Gram))))
(documentation VX EnglishLanguage "One of the V-series nerve agents.")
(subclass ChokingAgent ChemicalAgent)
(biochemicalAgentDelivery ChokingAgent Breathing)
(documentation ChokingAgent EnglishLanguage "&%ChemicalAgents designed to cause the lungs to fill
with fluid, which can result in the victim choking to death. &%ChokingAgents are
heavy gases that are less effective than other &%ChemicalAgents because they can be
easily dissipated by a slight wind.")
(subclass Diphosgene ChokingAgent)
(documentation Diphosgene EnglishLanguage "A poisonous gas that irritates the lungs and that is
similar to &%Phosgene.")
(subclass Chloropicrin ChokingAgent)
(biochemicalAgentSyndrome Chloropicrin Gastroenteritis)
(documentation Chloropicrin EnglishLanguage "Poisonous gas which has effects similar to
tear gas. If ingested, the gas causes gastroenteritis.")
(subclass Phosgene ChokingAgent)
(documentation Phosgene EnglishLanguage "A colorless, extremely toxic gas. It is regarded as the
most dangerous of the &%ChemicalAgents. Deaths resulting from exposure to this
&%ChemicalAgent generally occur in 24 to 48 hours.")
(subclass ChlorineGas ChokingAgent)
(documentation ChlorineGas EnglishLanguage "A poisonous gas.")
(subclass WMDWeaponsProductionFacility StationaryArtifact)
(documentation WMDWeaponsProductionFacility EnglishLanguage "Facilities where instances of
&%WeaponOfMassDestruction are built.")
(=>
(instance ?FACILITY WMDWeaponsProductionFacility)
(exists (?DEVELOP)
(and
(instance ?DEVELOP DevelopingWeaponOfMassDestruction)
(eventLocated ?DEVELOP ?FACILITY))))
(subclass WMDWeaponsResearchFacility StationaryArtifact)
(documentation WMDWeaponsResearchFacility EnglishLanguage "Facilities where research on
instances of &%WeaponOfMassDestruction is performed.")
(=>
(instance ?FACILITY WMDWeaponsResearchFacility)
(exists (?RESEARCH)
(and
(instance ?RESEARCH ResearchingWeaponOfMassDestruction)
(eventLocated ?RESEARCH ?FACILITY))))
(partition RadioactiveWeapon NuclearWeapon RadiologicalWeapon)
(subclass NuclearWeaponProductionFacility WMDWeaponsProductionFacility)
(documentation NuclearWeaponProductionFacility EnglishLanguage "Facilities where &%NuclearWeapons
are built.")
(=>
(and
(instance ?FACILITY NuclearWeaponProductionFacility)
(instance ?DEVELOP DevelopingWeaponOfMassDestruction)
(eventLocated ?DEVELOP ?FACILITY)
(result ?DEVELOP ?WEAPON))
(instance ?WEAPON NuclearWeapon))
(documentation NuclearWeaponResearchFacility EnglishLanguage "Research facilities that perform
research on technology related to &%NuclearWeapons.")
(subclass NuclearWeaponResearchFacility WMDWeaponsResearchFacility)
(=>
(and
(instance ?FACILITY NuclearWeaponResearchFacility)
(instance ?RESEARCH ResearchingWeaponOfMassDestruction)
(eventLocated ?RESEARCH ?FACILITY))
(refers ?RESEARCH NuclearWeapon))
(partition WeaponOfMassDestruction RadioactiveWeapon BiochemicalWeapon)
(subclass DeployingWeaponOfMassDestruction IntentionalProcess)
(subclass DeployingWeaponOfMassDestruction Putting)
(documentation DeployingWeaponOfMassDestruction EnglishLanguage "Positioning a chemical, biological
or radioactive weapon for the purpose of bringing about harm of some kind.")
(=>
(and
(instance ?DEPLOY DeployingWeaponOfMassDestruction)
(patient ?DEPLOY ?WEAPON))
(instance ?WEAPON WeaponOfMassDestruction))
(subclass DevelopingWeaponOfMassDestruction Making)
(documentation DevelopingWeaponOfMassDestruction EnglishLanguage "&%Making instances of
&%WeaponOfMassDestruction.")
(=>
(and
(instance ?DEVELOP DevelopingWeaponOfMassDestruction)
(result ?DEVELOP ?WEAPON))
(instance ?WEAPON WeaponOfMassDestruction))
(subclass StockpilingWeaponOfMassDestruction Manufacture)
(subclass StockpilingWeaponOfMassDestruction DevelopingWeaponOfMassDestruction)
(documentation StockpilingWeaponOfMassDestruction EnglishLanguage "Manufacturing a significant quantity
of instances of a &%WeaponOfMassDestruction, i.e. the weapons are not produced at the
scale of a single laboratory or a pilot program. These weapons may or may not be deployed
(see &%DeployingWeaponOfMassDestruction).")
(subclass DeliveringWeaponOfMassDestruction Making)
(documentation DeliveringWeaponOfMassDestruction EnglishLanguage "Integrating a &%WeaponOfMassDestruction
with a conventional weapon, so that the former can be delivered to its target.")
(=>
(instance ?DELIVER DeliveringWeaponOfMassDestruction)
(exists (?PUTTING ?WEAPON1 ?WEAPON2)
(and
(instance ?PUTTING Putting)
(subProcess ?PUTTING ?DELIVER)
(instance ?WEAPON1 WeaponOfMassDestruction)
(instance ?WEAPON2 Weapon)
(not
(instance ?WEAPON2 WeaponOfMassDestruction))
(patient ?PUTTING ?WEAPON1)
(destination ?PUTTING ?WEAPON2))))
(subclass ResearchingWeaponOfMassDestruction Investigating)
(documentation ResearchingWeaponOfMassDestruction EnglishLanguage "Conducting research on the development
of Weapons of Mass Destruction.")
(=>
(instance ?RESEARCH ResearchingWeaponOfMassDestruction)
(exists (?WEAPON)
(and
(instance ?WEAPON WeaponOfMassDestruction)
(refers ?RESEARCH ?WEAPON))))
(subclass DismantlingWeaponOfMassDestruction IntentionalProcess)
(documentation DismantlingWeaponOfMassDestruction EnglishLanguage "Dismantling a Weapon of Mass
Destruction, i.e. destroying the weapon or removing it from active deployment.")
(=>
(and
(instance ?DISMANTLE DismantlingWeaponOfMassDestruction)
(patient ?DISMANTLE ?WEAPON))
(instance ?WEAPON WeaponOfMassDestruction))
(=>
(instance ?DISMANTLE DismantlingWeaponOfMassDestruction)
(exists (?PROCESS)
(and
(subProcess ?PROCESS ?DISMANTLE)
(or
(instance ?PROCESS Destruction)
(instance ?PROCESS Removing)))))
(=>
(and
(instance ?DISMANTLE DismantlingWeaponOfMassDestruction)
(patient ?DISMANTLE ?WEAPON))
(exists (?DEVELOP)
(and
(instance ?DEVELOP DevelopingWeaponOfMassDestruction)
(result ?DEVELOP ?WEAPON)
(earlier (WhenFn ?DEVELOP) (WhenFn ?DISMANTLE)))))
(instance biochemicalAgentSyndrome BinaryPredicate)
(domainSubclass biochemicalAgentSyndrome 1 BiochemicalAgent)
(domain biochemicalAgentSyndrome 2 DiseaseOrSyndrome)
(documentation biochemicalAgentSyndrome EnglishLanguage "Relates a &%subclass of &%BiochemicalAgent
to a &%DiseaseOrSyndrome that is caused by or often associated with the
&%BiochemicalAgent.")
(increasesLikelihood
(and
(biochemicalAgentSyndrome ?AGENT ?SYMPTOM)
(biochemicalAgentDelivery ?AGENT ?PROCESSTYPE)
(instance ?PROCESS ?PROCESSTYPE)
(experiencer ?PROCESS ?ORGANISM))
(attribute ?ORGANISM ?SYMPTOM))
(=>
(and
(biochemicalAgentSyndrome ?AGENT ?SYNDROME)
(diseaseSymptom ?SYNDROME ?SYMPTOM))
(biochemicalAgentSyndrome ?AGENT ?SYMPTOM))
(instance biochemicalAgentDelivery BinaryPredicate)
(domainSubclass biochemicalAgentDelivery 1 BiochemicalAgent)
(domainSubclass biochemicalAgentDelivery 2 Process)
(documentation biochemicalAgentDelivery EnglishLanguage "(&%biochemicalAgentDelivery ?AGENT ?PROCESS)
means that the &%Process ?PROCESS is capable of infecting an organism with the
&%BiochemicalAgent ?AGENT when the organism is the &%experiencer and the ?AGENT the
&%patient of an instance of ?PROCESS.")
(=>
(and
(biochemicalAgentDelivery ?AGENT ?PROCESS)
(subclass ?SUB ?PROCESS))
(biochemicalAgentDelivery ?AGENT ?SUB))
(instance effectiveDose BinaryPredicate)
(domainSubclass effectiveDose 1 BiochemicalAgent)
(domain effectiveDose 2 FunctionQuantity)
(documentation effectiveDose EnglishLanguage "(&%effectiveDose ?AGENT ?QUANTITY) means that
?QUANTITY is the effective dose, or ED50, for the &%BiochemicalAgent ?AGENT.
This is the dose that would incapacitate 50% of the exposed human population.
Note that ?QUANTITY is generally expressed in micrograms per kilogram (mcg/kg).")
(=>
(effectiveDose ?AGENT
(PerFn
(MeasureFn ?NUMBER1 ?UNIT1)
(MeasureFn ?NUMBER2 ?UNIT2)))
(and
(instance ?UNIT1 UnitOfMass)
(instance ?UNIT2 UnitOfMass)))
(instance McgPerKg CompositeUnitOfMeasure)
(instance McgPerKg FunctionQuantity)
(documentation McgPerKg EnglishLanguage "&%McgPerKg refers to a microgram of
&%BiologicallyActiveSubstance per &%Kilogram of the body &%weight of the
&%Organism taking the &%Substance.")
(documentation McgPerKg ChineseLanguage "&%McgPerKg 指吸取生物活性物质
(&%BiologicallyActiveSubstance)的生物(&%Organism)体重(&%weight)每公斤
(&%Kilogram)所用该物质(&%Substance)以微克(microgram)计算的重量(&%weight)。")
(termFormat EnglishLanguage McgPerKg "micrograms per kilogram")
(termFormat ChineseLanguage McgPerKg "每公斤微克")
(=>
(and
(equal
(MeasureFn ?Y McgPerKg)
(PerFn ?M1 ?M2))
(equal ?M1
(MeasureFn ?NUM1 (MicroFn Gram)))
(equal ?M2
(MeasureFn ?NUM2 (KiloFn Gram))))
(exists (?I ?B ?A)
(and
(instance ?I Ingesting)
(instance ?B BiologicallyActiveSubstance)
(instance ?A Organism)
(patient ?I ?B)
(agent ?I ?A)
(weight ?B ?M1)
(weight ?A ?M2))))
(instance lethalDose BinaryPredicate)
(domainSubclass lethalDose 1 BiochemicalAgent)
(domain lethalDose 2 FunctionQuantity)
(relatedInternalConcept lethalDose effectiveDose)
(documentation lethalDose EnglishLanguage "(&%lethalDose ?AGENT ?QUANTITY) means that ?QUANTITY
is the lethal dose, or LD50, for the &%BiochemicalAgent ?AGENT. This is the dose
that would result in death for 50% of the exposed human population. Note that
?QUANTITY is generally expressed in micrograms per kilogram (mcg/kg).")
(=>
(and
(instance ?U McgPerKg)
(effectiveDose ?AGENT
(MeasureFn ?NUMBER1 ?U))
(lethalDose ?AGENT
(MeasureFn ?NUMBER2 ?U)))
(greaterThan ?NUMBER2 ?NUMBER1))
(=>
(lethalDose ?AGENT
(PerFn
(MeasureFn ?NUMBER1 ?UNIT1)
(MeasureFn ?NUMBER2 ?UNIT2)))
(and
(instance ?UNIT1 UnitOfMass)
(instance ?UNIT2 UnitOfMass)))
(instance diseaseSymptom BinaryPredicate)
(domain diseaseSymptom 1 DiseaseOrSyndrome)
(domain diseaseSymptom 2 DiseaseOrSyndrome)
(documentation diseaseSymptom EnglishLanguage "(&%diseaseSymptom ?DISEASE ?SYMPTOM) means that
&%DiseaseOrSyndrome ?DISEASE is often associated with the &%DiseaseOrSyndrome
?SYMPTOM, i.e. an &%Organism which suffers from ?DISEASE is more likely to
suffer from ?SYMPTOM than one which does not.")
(=>
(diseaseSymptom ?DISEASE ?SYMPTOM)
(exists (?ORGANISM)
(increasesLikelihood
(attribute ?ORGANISM ?DISEASE)
(attribute ?ORGANISM ?SYMPTOM))))
(instance diseaseMortality BinaryPredicate)
(domain diseaseMortality 1 DiseaseOrSyndrome)
(domain diseaseMortality 2 RealNumber)
(documentation diseaseMortality EnglishLanguage "(&%diseaseMortality ?DISEASE ?NUMBER) means
that &%DiseaseOrSyndrome ?DISEASE has a Mortality rate of ?NUMBER.")
(=>
(diseaseMortality ?DISEASE ?RATE)
(conditionalProbability
(exists (?ORGANISM)
(and
(instance ?ORGANISM Organism)
(attribute ?ORGANISM ?DISEASE)))
(exists (?DEATH)
(and
(instance ?DEATH Death)
(experiencer ?DEATH ?ORGANISM))) ?RATE))
(=>
(diseaseMortality ?DISEASE ?RATE)
(and
(greaterThan ?RATE 0.0)
(lessThan ?RATE 1.0)))
(=>
(diseaseMortality ?DISEASE ?RATE)
(instance ?DISEASE LifeThreateningDisease))
(instance biochemicalAgentAntidote TernaryPredicate)
(domain biochemicalAgentAntidote 1 BiochemicalAgent)
(domainSubclass biochemicalAgentAntidote 2 BiologicallyActiveSubstance)
(domainSubclass biochemicalAgentAntidote 3 Process)
(documentation biochemicalAgentAntidote EnglishLanguage "(&%biochemicalAgentAntidote ?AGENT ?SUBSTANCE ?PROCESS)
means that the &%BiologicallyActiveSubstance ?SUBSTANCE has been shown to be effective in
treating someone who has been exposed to the &%BiochemicalAgent ?AGENT when the ?SUBSTANCE is
administered via the &%Process ?PROCESS.")
(decreasesLikelihood
(and
(biochemicalAgentSyndrome ?AGENT ?SYMPTOM)
(biochemicalAgentAntidote ?AGENT ?SUBSTANCE ?PROCESS)
(instance ?SAMPLE ?SUBSTANCE)
(instance ?THERAPY ?PROCESS)
(experiencer ?THERAPY ?ORGANISM)
(patient ?THERAPY ?SAMPLE))
(attribute ?ORGANISM ?SYMPTOM))
(instance diseaseMedicine TernaryPredicate)
(domain diseaseMedicine 1 DiseaseOrSyndrome)
(domainSubclass diseaseMedicine 2 BiologicallyActiveSubstance)
(domainSubclass diseaseMedicine 3 Process)
(documentation diseaseMedicine EnglishLanguage "(&%diseaseMedicine ?DISEASE ?SUBSTANCE ?PROCESS)
means that the &%BiologicallyActiveSubstance ?SUBSTANCE is effective in the treatment
of the &%DiseaseOrSyndrome ?DISEASE when administered via the &%Process ?PROCESS, i.e.
it has been demonstrated (in a significant sample of patients) to cure the ?DISEASE or
at least reduce the severity of symptoms associated with the ?DISEASE.")
(=>
(diseaseMedicine ?DISEASE ?SUBSTANCE ?PROCESS)
(exists (?ORGANISM ?TIME ?SAMPLE ?PROC)
(and
(holdsDuring ?TIME (attribute ?ORGANISM ?DISEASE))
(increasesLikelihood
(and
(instance ?PROC ?PROCESS)
(temporalPart (WhenFn ?PROC) ?TIME)
(experiencer ?PROC ?ORGANISM)
(patient ?PROC ?SAMPLE)
(instance ?SAMPLE ?SUBSTANCE))
(holdsDuring (ImmediateFutureFn ?TIME)
(not
(attribute ?ORGANISM ?DISEASE)))))))
(=>
(and
(diseaseMedicine ?DISEASE ?SUBSTANCE ?PROCESS)
(subclass ?SUB ?PROCESS))
(diseaseMedicine ?DISEASE ?SUBSTANCE ?SUB))
(=>
(and
(diseaseMedicine ?DISEASE ?SUBSTANCE ?PROCESS)
(subclass ?SUB ?SUBSTANCE))
(diseaseMedicine ?DISEASE ?SUB ?PROCESS))
(instance biologicalAgentCarrier BinaryPredicate)
(domainSubclass biologicalAgentCarrier 1 BiologicalAgent)
(domainSubclass biologicalAgentCarrier 2 Organism)
(documentation biologicalAgentCarrier EnglishLanguage "(&%biologicalAgentCarrier ?AGENT ?ORGANISM)
means that the &%subclass of &%Organism ?ORGANISM is a carrier of the &%subclass of
&%BiologicalAgent ?AGENT.")
(=>
(and
(biologicalAgentCarrier ?AGENT ?ORGANISM)
(subclass ?SUB ?ORGANISM))
(biologicalAgentCarrier ?AGENT ?SUB))
(instance secretesToxin BinaryPredicate)
(domainSubclass secretesToxin 1 Organism)
(domainSubclass secretesToxin 2 Toxin)
(documentation secretesToxin EnglishLanguage "(&%secretesToxin ?ORGANISM ?TOXIN) means that the
&%subclass of &%Organism ?ORGANISM produces the &%subclass of &%Toxin ?TOXIN.")
(=>
(secretesToxin ?ORGANISM ?TOXIN)
(forall (?INSTANCE1)
(=>
(instance ?INSTANCE1 ?ORGANISM)
(exists (?PROCESS ?INSTANCE2)
(and
(instance ?PROCESS BiologicalProcess)
(experiencer ?PROCESS ?INSTANCE1)
(result ?PROCESS ?INSTANCE2)
(instance ?INSTANCE2 ?TOXIN))))))
(subclass SalmonellaTyphimurium BacterialAgent)