summaryrefslogtreecommitdiff
path: root/examples/SUMO/Government.gf
blob: 9e96971913d89bcd586c5f00513c689915dea20e (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
abstract Government = MidLevelOntology, Geography ** {

  fun ASEANRegionalForum : Ind OrganizationOfNations ;

  fun AbsoluteMonarchy : Ind FormOfGovernment ;

  -- AcceptsICJJurisdiction is the 
  -- Attribute of a legal system that accepts rulings of the 
  -- InternationalCourtOfJustice.
  fun AcceptsICJJurisdiction : Ind LegalSystemAttribute ;

  fun ActingConsulGeneral : Ind ForeignServicePosition ;

  fun AdministrationAndManagement : Ind AreaOfConcern ;

  fun AdvisoryCommittee : Ind MemberStatus ;

  fun AfricanCaribbeanAndPacificGroupOfStates : Ind OrganizationOfNations ;

  fun AfricanDevelopmentBank : Ind OrganizationOfNations ;

  fun AgencyForTheFrenchSpeakingCommunity : Ind OrganizationOfNations ;

  fun AgencyForTheProhibitionOfNuclearWeaponsInLatinAmericaAndTheCaribbean : Ind OrganizationOfNations ;

  fun AgriculturalDevelopment : Ind AreaOfConcern ;

  -- Ambassador is the Attribute of the most 
  -- highly_ranked foreign service representatives from the government of one 
  -- country to another.
  fun Ambassador : Ind ForeignServicePosition ;

  -- The AmericanInstituteInTaiwan 
  -- is a private, nonprofit corporation under United States government 
  -- oversight that conducts relations with Taiwan.
  fun AmericanInstituteInTaiwan : Ind Organization ;

  fun Anarchy : Ind FormOfGovernment ;

  fun AndeanCommunityOfNations : Ind OrganizationOfNations ;

  fun AntarcticTreatyCouncil : Ind OrganizationOfNations ;

  -- Antiterrorism and Effective 
  --  Death Penalty Act modifies the Immigration and Nationality Act
  --  was enacted in 1996 and specifies that: 
  --  (1) It is unlawful to provide funds or other material support to a 
  --  designated FTO. 
  --  (2) Representatives and certain members of a designated FTO can be denied 
  --  visas or excluded from the United States. 
  --  (3) US financial institutions must block funds of designated FTOs and their 
  --  agents and must report the blockage to the US Department of the Treasury.
  fun AntiterrorismAndEffectiveDeathPenaltyAct : Ind Proposition ;

  -- AppealsCourt is the class of 
  -- JudicialOrganizations that review cases from lower courts on appeal.
  fun AppealsCourt : Class ;
  fun AppealsCourt_Class : SubClass AppealsCourt JudicialOrganization ;

  fun ArabBankForEconomicDevelopmentInAfrica : Ind OrganizationOfNations ;

  fun ArabCooperationCouncil : Ind OrganizationOfNations ;

  fun ArabFundForEconomicAndSocialDevelopment : Ind OrganizationOfNations ;

  fun ArabLeague : Ind OrganizationOfNations ;

  fun ArabMaghrebUnion : Ind OrganizationOfNations ;

  fun ArabMonetaryFund : Ind OrganizationOfNations ;

  fun ArmsControl : Ind TransnationalIssue ;

  fun AsiaPacificEconomicCooperation : Ind OrganizationOfNations ;

  fun AsianDevelopmentBank : Ind OrganizationOfNations ;

  fun AssociateMember : Ind MemberStatus ;

  fun AssociatePartner : Ind MemberStatus ;

  fun AssociationOfSoutheastAsianNations : Ind OrganizationOfNations ;

  fun AustraliaGroup : Ind OrganizationOfNations ;

  fun AustraliaNewZealandUnitedStatesSecurityTreaty : Ind OrganizationOfNations ;

  -- AuthoritarianRegime is the 
  -- attribute of a government that rules autocratically, not allowing 
  -- opposition.
  fun AuthoritarianRegime : Ind FormOfGovernment ;

  fun AuthoritarianSocialist : Ind FormOfGovernment ;

  fun BankForInternationalSettlements : Ind OrganizationOfNations ;

  fun BeneluxEconomicUnion : Ind OrganizationOfNations ;

  -- BicameralLegislature is the 
  -- Attribute of governments whose legislative branches have two
  -- legislative chambers. For example, in the UnitedStates the legislative 
  -- branch comprises the Senate and the House of Representatives.
  fun BicameralLegislature : Ind FormOfGovernment ;

  fun BigSeven : Ind OrganizationOfNations ;

  fun BigSix : Ind OrganizationOfNations ;

  fun BlackSeaEconomicCooperationZone : Ind OrganizationOfNations ;

  fun BoardOfTrusteesMember : Ind MemberStatus ;

  fun BoundaryDetermination : Ind TransnationalIssue ;

  fun BritishCrownColony : Class ;
  fun BritishCrownColony_Class : SubClass BritishCrownColony OverseasArea ;

  fun CBWExportControls : Ind TransnationalIssue ;

  -- (CabinetFn ?AREA) denotes the 
  -- GovernmentCabinet associated with the government of the 
  -- GeopoliticalArea ?AREA.
  fun CabinetFn : El GeopoliticalArea -> Ind GovernmentOrganization ;

  fun CaribbeanCommunityAndCommonMarket : Ind OrganizationOfNations ;

  fun CaribbeanDevelopmentBank : Ind OrganizationOfNations ;

  fun CategoryIIIMember : Ind MemberStatus ;

  fun CategoryIIMember : Ind MemberStatus ;

  fun CategoryIMember : Ind MemberStatus ;

  fun CentralAfricanStatesDevelopmentBank : Ind OrganizationOfNations ;

  fun CentralAmericanBankForEconomicIntegration : Ind OrganizationOfNations ;

  fun CentralAmericanCommonMarket : Ind OrganizationOfNations ;

  fun CentralEuropeanInitiative : Ind OrganizationOfNations ;

  fun Chairman : Ind Position ;

  -- ChargeDAffaires is the Attribute of 
  -- foreign servicer officers representing their governments abroad as 
  -- Charges d'Affaires.
  fun ChargeDAffaires : Ind ForeignServicePosition ;

  fun Chiefdom : Ind FormOfGovernment ;

  fun ChildHealthServices : Ind AreaOfConcern ;

  -- CivilLaw is the attribute of legal systems 
  -- based ultimately on the code of civil law developed in Ancient Rome. 
  -- Civil law systems are characterized by their expression of laws in written 
  -- code and statute and by their effort to use general principles to define 
  -- and rationalize the laws.
  fun CivilLaw : Ind LegalSystemAttribute ;

  fun CivilPoliceTraining : Ind AreaOfConcern ;

  fun ColomboPlan : Ind OrganizationOfNations ;

  fun CommissionForSocialDevelopment : Ind InternationalOrganization ;

  fun CommissionOnCrimePreventionAndCriminalJustice : Ind InternationalOrganization ;

  fun CommissionOnHumanRights : Ind InternationalOrganization ;

  fun CommissionOnNarcoticsDrugs : Ind InternationalOrganization ;

  fun CommissionOnPopulationAndDevelopment : Ind InternationalOrganization ;

  fun CommissionOnScienceAndTechnologyForDevelopment : Ind InternationalOrganization ;

  fun CommissionOnSustainableDevelopment : Ind InternationalOrganization ;

  fun CommissionOnTheStatusOfWomen : Ind InternationalOrganization ;

  fun Commissioner : Ind MemberStatus ;

  fun Commonwealth : Ind FormOfGovernment ;

  fun CommonwealthOfIndependentStates : Ind OrganizationOfNations ;

  fun CommonwealthOfNations : Ind OrganizationOfNations ;

  fun CommunicationsCoordination : Ind AreaOfConcern ;

  fun CommunistState : Ind FormOfGovernment ;

  fun CompactOfFreeAssociationWithNewZealand : Ind FormOfGovernment ;

  fun CompactOfFreeAssociationWithUnitedStates : Ind FormOfGovernment ;

  fun CompensationAndReparation : Ind AreaOfConcern ;

  -- CompulsorySuffrageLaw is a law that 
  -- requires all eligible voters in a country to vote, under threat of some 
  -- penalty.
  fun CompulsorySuffrageLaw : Ind SuffrageLaw ;

  -- The class Constitution includes the bodies of
  -- abstract principles formulated to guide the laws, institutions and practices 
  -- of various Governments. Also see ConstitutionDocument.
  fun Constitution : Class ;
  fun Constitution_Class : SubClass Constitution Proposition ;

  -- ConstitutionDocument is the class 
  -- of information_containing objects in which the Constitution of a 
  -- government is encoded.
  fun ConstitutionDocument : Class ;
  fun ConstitutionDocument_Class : SubClass ConstitutionDocument ContentBearingObject ;

  -- (ConstitutionFn ?AREA) denotes a class 
  -- containing all Constitutions adopted by the government of the 
  -- GeopoliticalArea ?AREA. For example, (ConstitutionFn UnitedStates) 
  -- contains the ConstitutionOfTheUnitedStates.
  fun ConstitutionFn: El GeopoliticalArea -> Desc Constitution ;

  -- ConstitutionalCourt is the class of 
  -- JudicialOrganizations that rule on constitutional matters, in countries 
  -- that have a Constitution.
  fun ConstitutionalCourt : Class ;
  fun ConstitutionalCourt_Class : SubClass ConstitutionalCourt JudicialOrganization ;

  fun ConstitutionalDemocracy : Ind FormOfGovernment ;

  fun ConstitutionalDemocraticRepublic : Ind FormOfGovernment ;

  -- ConstitutionalGovernment is 
  -- the attribute of a government whose authority and rule are guided by 
  -- principles expressed in a written Constitution.
  fun ConstitutionalGovernment : Ind FormOfGovernment ;

  fun ConstitutionalMonarchy : Ind FormOfGovernment ;

  fun ConstitutionalParliamentaryDemocracy : Ind FormOfGovernment ;

  fun ConstitutionalRepublic : Ind FormOfGovernment ;

  -- Consul is the Attribute of foreign service 
  -- officers representing their governments abroad as Consuls.
  fun Consul : Ind ForeignServicePosition ;

  -- ConsulGeneral is the Attribute of 
  -- foreign service officers representing their governments abroad as 
  -- Consuls General.
  fun ConsulGeneral : Ind ForeignServicePosition ;

  -- Consulate is a class of government 
  -- organizations that represent one nation within the territory of a second 
  -- nation. Consulates offer services for citizens of their own country 
  -- abroad, as well as for citizens of the host country who have dealings 
  -- with the country represented by the consulate general. See also 
  -- ConsulateGeneral.
  fun Consulate : Class ;
  fun Consulate_Class : SubClass Consulate DiplomaticOrganization ;

  -- ConsulateGeneral is a class of 
  -- government organizations that represent one nation within the territory of 
  -- a second nation. Consulates General offer a wider variety of services 
  -- than do Consulates.
  fun ConsulateGeneral : Class ;
  fun ConsulateGeneral_Class : SubClass ConsulateGeneral DiplomaticOrganization ;

  fun ControlBiologicalAndChemicalWeapons : Ind TransnationalIssue ;

  fun ControlNuclearWeapons : Ind TransnationalIssue ;

  fun ControlWeaponsOfMassDestruction : Ind TransnationalIssue ;

  fun ConventionalArmsControl : Ind TransnationalIssue ;

  fun CooperatingState : Ind MemberStatus ;

  fun CooperationInCivilAviation : Ind AreaOfConcern ;

  fun CoordinateCreditPolicy : Ind TransnationalIssue ;

  -- The 
  -- CoordinatingCommitteeOnExportControls was abolished as of March 31, 
  -- 1994, and its members formed the WassenaarArrangement on July 12, 1996, 
  -- with expanded membership and a post_Cold War aim of voluntary export 
  -- controls on conventional arms and dual_use goods and technologies.
  fun CoordinatingCommitteeOnExportControls : Ind OrganizationOfNations ;

  fun Coprincipality : Ind FormOfGovernment ;

  fun CorrespondentMember : Ind MemberStatus ;

  fun CouncilForMutualEconomicAssistance : Ind OrganizationOfNations ;

  -- The 
  -- CouncilOfArabEconomicUnity was established in 1957 but did not become 
  -- effective until May 30, 1964.
  fun CouncilOfArabEconomicUnity : Ind OrganizationOfNations ;

  fun CouncilOfEurope : Ind OrganizationOfNations ;

  fun CouncilOfTheBalticSeaStates : Ind OrganizationOfNations ;

  fun CouncilOfTheEntente : Ind OrganizationOfNations ;

  fun CrimePrevention : Ind AreaOfConcern ;

  fun CulturalCooperation : Ind TransnationalIssue ;

  -- Democracy is the attribute of a government 
  -- whose authority and rule are based in the will of the people governed. 
  -- The will of the people is usually expressed through Elections, direct or 
  -- indirect.
  fun Democracy : Ind FormOfGovernment ;

  -- The US Government
  -- organization founded in 2002 to consolidate and organize
  -- national_level preparations to thwart security threats, primarily
  -- terrorist attacks, against the United States of America.
  fun DepartmentOfHomelandSecurity : Ind GovernmentOrganization ;

  -- DependencyOrSpecialSovereigntyArea is a subclass of 
  -- GeopoliticalArea, representing the classification 'Dependency or Special 
  -- Sovereignty Area' used by the CIA World Fact Book. Cf. 
  -- IndependentState.
  fun DependencyOrSpecialSovereigntyArea : Class ;
  fun DependencyOrSpecialSovereigntyArea_Class : SubClass DependencyOrSpecialSovereigntyArea GeopoliticalArea ;

  fun DialoguePartner : Ind MemberStatus ;

  fun Dictatorship : Ind FormOfGovernment ;

  -- DiplomaticAgent is a generic Attribute 
  -- of persons charged to represent one national government to another nation 
  -- or international organization. This includes any Ambassador or head of 
  -- a diplomatic mission. Individuals with this attribute may also hold a 
  -- career diplomatic position (see ForeignServicePosition).
  fun DiplomaticAgent : Ind ForeignServicePosition ;

  -- DiplomaticOrganization is the 
  -- general class of government organizations that represent one nation in 
  -- official government business with other nations.
  fun DiplomaticOrganization : Class ;
  fun DiplomaticOrganization_Class : SubClass DiplomaticOrganization GovernmentOrganization ;

  fun EastAfricanDevelopmentBank : Ind OrganizationOfNations ;

  fun EcclesiasticalGovernment : Ind FormOfGovernment ;

  fun EconomicAndSocialCommissionForAsiaAndThePacific : Ind InternationalOrganization ;

  fun EconomicAndSocialCommissionForWesternAsia : Ind InternationalOrganization ;

  -- The EconomicAndSocialCouncil is 
  -- the coordinating organization for the social and economic work of the 
  -- UnitedNations. It comprises five regional commissions and nine 
  -- functional commissions.
  fun EconomicAndSocialCouncil : Ind OrganizationOfNations ;

  fun EconomicCommissionForAfrica : Ind InternationalOrganization ;

  fun EconomicCommissionForEurope : Ind InternationalOrganization ;

  fun EconomicCommissionForLatinAmericaAndTheCaribbean : Ind InternationalOrganization ;

  fun EconomicCommunityOfTheGreatLakesCountries : Ind OrganizationOfNations ;

  fun EconomicCommunityOfWestAfricanStates : Ind OrganizationOfNations ;

  fun EconomicCooperation : Ind TransnationalIssue ;

  fun EconomicCooperationOrganization : Ind OrganizationOfNations ;

  fun EconomicDevelopment : Ind AreaOfConcern ;

  fun EconomicIntegration : Ind TransnationalIssue ;

  fun EconomicPolicyCoordination : Ind TransnationalIssue ;

  fun EducationalCooperation : Ind (both TransnationalIssue AreaOfConcern) ;

  fun EfficientCustomsAdministration : Ind (both TransnationalIssue AreaOfConcern ) ;

  -- (ElectionFn ?ORG) denotes the class of 
  -- Elections conducted by the GeopoliticalArea or Organization ?ORG, 
  -- in which offices or issues pertaining to ?ORG are voted upon.
  fun ElectionFn: El Agent -> Desc Election ;

  fun EliminateChemicalWeapons : Ind TransnationalIssue ;

  -- Embassy is the class of top_ranked 
  -- GovernmentOrganizations that represent one nation within the boundaries 
  -- of another. Not all nations have embassy_level representation from other 
  -- nations.
  fun Embassy : Class ;
  fun Embassy_Class : SubClass Embassy DiplomaticOrganization ;

  fun EmergingDemocracy : Ind FormOfGovernment ;

  fun EmigrationAndImmigrationIssues : Ind (both TransnationalIssue AreaOfConcern) ;

  fun EnergyAndTheEnvironment : Ind TransnationalIssue ;

  fun EnergyCooperation : Ind (both TransnationalIssue AreaOfConcern) ; 

  -- EnglishCommonLaw is the attribute of 
  -- legal systems based on the common law developed in England and influential 
  -- in its English_speaking colonies. Common law is characterized by laws and 
  -- rulings based on precedent and custom, rather than on written statute.
  fun EnglishCommonLaw : Ind LegalSystemAttribute ;

  fun EnvironmentalCooperation : Ind TransnationalIssue ;

  fun EuroAtlanticPartnershipCouncil : Ind OrganizationOfNations ;

  fun EuropeanBankForReconstructionAndDevelopment : Ind OrganizationOfNations ;

  -- The EuropeanCommunity was merged into 
  -- the EuropeanUnion on February 7, 1992.
  fun EuropeanCommunity : Ind OrganizationOfNations ;

  fun EuropeanFreeTradeAssociation : Ind OrganizationOfNations ;

  fun EuropeanInvestmentBank : Ind OrganizationOfNations ;

  fun EuropeanMonetaryUnion : Ind OrganizationOfNations ;

  fun EuropeanOrganizationForNuclearResearch : Ind OrganizationOfNations ;

  fun EuropeanSpaceAgency : Ind OrganizationOfNations ;

  fun EuropeanUnion : Ind OrganizationOfNations ;

  fun ExclusiveMaleSuffrage : Ind RestrictedSuffrage ;

  fun ExecutiveBoardMember : Ind MemberStatus ;

  -- (ExecutiveBranchFn ?ORG) denotes the 
  -- executive branch of ?ORG, with all its officials and agencies, considered 
  -- as a whole.
  fun ExecutiveBranchFn : El Agent -> Ind Organization ;

  fun ExecutiveCommitteeMember : Ind MemberStatus ;

  fun Factionalism : Ind FormOfGovernment ;

  fun FederalDemocraticRepublic : Ind FormOfGovernment ;

  -- FederalGovernment is the attribute of 
  -- a government that is formed by agreement between a collection of political 
  -- units that agree to give up some of their power to the central government, 
  -- while reserving some powers to themselves. The government of the 
  -- UnitedStates is a federal government, in which power is shared between 
  -- the states and the central goverment, as set out in the U.S. 
  -- Constitution.
  fun FederalGovernment : Ind FormOfGovernment ;

  fun FederalParliamentaryDemocracy : Ind FormOfGovernment ;

  fun FederalRepublic : Ind FormOfGovernment ;

  fun Federation : Ind FormOfGovernment ;

  fun FinancialCooperation : Ind TransnationalIssue ;

  -- FixedHoliday is the class of Holidays 
  -- whose observance is fixed to recurrences of the calendar day that the 
  -- holiday commemorates. See commemoratesDate.
  fun FixedHoliday : Class ;
  fun FixedHoliday_Class : SubClass FixedHoliday Holiday ;

  fun FoodAid : Ind TransnationalIssue ;

  fun FoodAndAgricultureOrganization : Ind OrganizationOfNations ;

  -- ForeignServicePosition is the 
  -- subclass of Positions that belong to foreign service personnel working 
  -- for a national government or international organization.
  fun ForeignServicePosition : Class ;
  fun ForeignServicePosition_Class : SubClass ForeignServicePosition Position ;

  -- A Foreign Terrorist Organization
  --  is an Organization designated by the USStateDeparment as one which
  --  conducts acts of terrorism. This designation makes it subject to the
  --  AntiterrorismAndEffectiveDeathPenaltyAct.
  fun ForeignTerroristOrganization : Class ;
  fun ForeignTerroristOrganization_Class : SubClass ForeignTerroristOrganization TerroristOrganization ;

  fun FrancZone : Ind OrganizationOfNations ;

  fun FullMember : Ind MemberStatus ;

  fun GenderEquality : Ind AreaOfConcern ;

  -- GovernmentCabinet is the class of 
  -- GovernmentOrganizations whose purpose is to advise a President, 
  -- Governor, or other political leader(s) on policy matters.
  fun GovernmentCabinet : Class ;
  fun GovernmentCabinet_Class : SubClass GovernmentCabinet GovernmentOrganization ;

  fun GovernmentDeputy : Ind Position ;

  -- The GroupOf10 (also known as the Paris Club) 
  -- is a group of (now) 11 major creditor nations that manage the repayment of 
  -- loans by debtor countries. The Group of 10 works closely with the 
  -- InternationalMonetaryFund.
  fun GroupOf10 : Ind OrganizationOfNations ;

  fun GroupOf11 : Ind OrganizationOfNations ;

  -- The GroupOf15 was a result of the NonalignedMovement.
  fun GroupOf15 : Ind OrganizationOfNations ;

  -- The GroupOf24 promotes the interests of 
  -- developing countries in Africa, Asia, and Latin America within the 
  -- InternationalMonetaryFund.
  fun GroupOf24 : Ind OrganizationOfNations ;

  fun GroupOf3 : Ind OrganizationOfNations ;

  fun GroupOf5 : Ind OrganizationOfNations ;

  fun GroupOf6 : Ind OrganizationOfNations ;

  -- The memberships of the BigSeven and the 
  -- GroupOf7 include the same Nations.
  fun GroupOf7 : Ind OrganizationOfNations ;

  fun GroupOf77 : Ind OrganizationOfNations ;

  -- The GroupOf8 members were participants in the 
  -- Conference on International Economic Cooperation (CIEC) between 
  -- 1975_1977.
  fun GroupOf8 : Ind OrganizationOfNations ;

  fun GroupOf9 : Ind OrganizationOfNations ;

  fun GuestStatus : Ind MemberStatus ;

  fun GulfCooperationCouncil : Ind OrganizationOfNations ;

  fun HereditaryMonarchy : Ind FormOfGovernment ;

  -- Holiday is the class of time periods that are 
  -- observed as holidays in a country, culture, or religion. Holidays may 
  -- recur annually on the same date, or they may be moveable, for example, 
  -- UnitedStatesThanksgivingDay falls on the last Thursday of each 
  -- November.
  fun Holiday : Class ;
  fun Holiday_Class : SubClass Holiday TimeInterval ;

  fun HumanRightsIssues : Ind TransnationalIssue ;

  fun HumanitarianAid : Ind TransnationalIssue ;

  fun HumanitarianAssistance : Ind TransnationalIssue ;

  fun ImmigrationAndNationalityAct_Section219_US : Ind Proposition ;

  fun ImmigrationAndNationalityAct_US : Ind Proposition ;

  fun ImproveHumanSettlementConditions : Ind AreaOfConcern ;

  -- IndependentState is a subclass of 
  -- GeopoliticalArea, representing the classification 'Independent State' 
  -- used by the CIA World Fact Book. Cf. 
  -- DependencyOrSpecialSovereigntyArea.
  fun IndependentState : Class ;
  fun IndependentState_Class : SubClass IndependentState (both GeopoliticalArea Nation) ;

  fun IndianOceanCommission : Ind OrganizationOfNations ;

  fun IndustryStandards : Ind AreaOfConcern ;

  fun InformationCooperation : Ind AreaOfConcern ;

  fun InformationStandards : Ind AreaOfConcern ;

  fun InfrastructureCooperation : Ind AreaOfConcern ;

  fun IntellectualPropertyProtection : Ind AreaOfConcern ;

  fun InterAmericanDevelopmentBank : Ind OrganizationOfNations ;

  -- The 
  -- InterGovernmentalAuthorityOnDevelopment is the revitalized successor 
  -- organization of the Inter_Governmental Authority on Development, which had 
  -- been established 15_16 January 1986.
  fun InterGovernmentalAuthorityOnDevelopment : Ind OrganizationOfNations ;

  fun InternationalAtomicEnergyAgency : Ind OrganizationOfNations ;

  fun InternationalBankForReconstructionAndDevelopment : Ind OrganizationOfNations ;

  fun InternationalCenterForSecretariatOfInvestmentDisputes : Ind InternationalOrganization ;

  fun InternationalChamberOfCommerce : Ind OrganizationOfNations ;

  fun InternationalCivilAviationOrganization : Ind OrganizationOfNations ;

  fun InternationalCommitteeOfTheRedCross : Ind InternationalOrganization ;

  fun InternationalConfederationOfFreeTradeUnions : Ind OrganizationOfNations ;

  -- The InternationalCourtOfJustice superseded the Permanent Court of International Justice.
  fun InternationalCourtOfJustice : Ind (both InternationalOrganization JudicialOrganization) ;

  -- Interpol is the 
  -- successor organization to the International Criminal Police Organization, 
  -- which had been established in 1923.
  fun InternationalCriminalPoliceOrganization : Ind OrganizationOfNations ;

  fun InternationalCriminalTribunalForRwanda : Ind InternationalOrganization ;

  fun InternationalCriminalTribunalForTheFormerYugoslavia : Ind InternationalOrganization ;

  fun InternationalDevelopmentAssociation : Ind OrganizationOfNations ;

  -- The InternationalEnergyAgency 
  -- was established by the OrganizationForEconomicAndCulturalDevelopment.
  fun InternationalEnergyAgency : Ind OrganizationOfNations ;

  fun InternationalFederationOfRedCrossAndRedCrescentSocieties : Ind OrganizationOfNations ;

  -- The InternationalFinanceCorporation is affiliated with the InternationalBankForReconstructionAndDevelopment.
  fun InternationalFinanceCorporation : Ind OrganizationOfNations ;

  fun InternationalFundForAgriculturalDevelopment : Ind OrganizationOfNations ;

  fun InternationalHydrographicOrganization : Ind OrganizationOfNations ;

  fun InternationalJustice : Ind (both AreaOfConcern TransnationalIssue) ;

  -- The InternationalLaborOrganization became affiliated with 
  -- the UnitedNations in 1946.
  fun InternationalLaborOrganization : Ind OrganizationOfNations ;

  fun InternationalMaritimeAffairs : Ind AreaOfConcern ;

  -- The InternationalMaritimeOrganization was established in 1948 but became 
  -- effective ten years later.
  fun InternationalMaritimeOrganization : Ind OrganizationOfNations ;

  fun InternationalMonetaryFund : Ind OrganizationOfNations ;

  fun InternationalOlympicCommittee : Ind OrganizationOfNations ;

  fun InternationalOrNonregionalMember : Ind MemberStatus ;

  -- InternationalOrganization is 
  -- the class of Organizations whose activities have international scope and 
  -- which typically have members who are, or are from, different Nations.
  fun InternationalOrganization : Class ;
  fun InternationalOrganization_Class : SubClass InternationalOrganization Organization ;

  fun InternationalOrganizationForMigration : Ind OrganizationOfNations ;

  fun InternationalOrganizationForStandardization : Ind OrganizationOfNations ;

  fun InternationalPeaceAndSecurity : Ind TransnationalIssue ;

  fun InternationalRedCrossAndRedCrescentMovement : Ind InternationalOrganization ;

  fun InternationalResearchAndTrainingInstituteForTheAdvancementOfWomen : Ind OrganizationOfNations ;

  -- The InternationalTelecommunicationUnion became affiliated with the 
  -- UnitedNations on November 15, 1947.
  fun InternationalTelecommunicationUnion : Ind OrganizationOfNations ;

  fun InternationalTradeSupport : Ind TransnationalIssue ;

  fun IslamicDevelopmentBank : Ind OrganizationOfNations ;

  fun IslamicGovernment : Ind FormOfGovernment ;

  -- IslamicLaw is the Attribute of 
  -- legal systems that are based on religious principles of Islam.
  fun IslamicLaw : Ind LegalSystemAttribute ;

  -- IslamicLawCourt is the subclass of 
  -- JudicialOrganizations that are conducted according to principles of 
  -- Islamic Law.
  fun IslamicLawCourt : Class ;
  fun IslamicLawCourt_Class : SubClass IslamicLawCourt JudicialOrganization ;

  -- JudgeAtLaw is the Position of a person who 
  -- is a public official with the authority to decide legal matters in a 
  -- governmental JudicialOrganization.
  fun JudgeAtLaw : Ind Position ;

  -- JudicialReviewOfExecutiveActs is an attribute of legal systems 
  -- in which the judiciary has authority to review acts of the executive 
  -- branch.
  fun JudicialReviewOfExecutiveActs : Ind LegalSystemAttribute ;

  -- JudicialReviewOfLegislativeActs is an attribute of legal systems 
  -- in which the judiciary has authority to review acts of the legislature.
  fun JudicialReviewOfLegislativeActs : Ind LegalSystemAttribute ;

  -- (JudiciaryFn ?AREA) denotes the judicial 
  -- branch of the GeopoliticalArea ?AREA, that is, the 
  -- JudicialOrganization(s) associated with the government of ?AREA, 
  -- considered as a whole.
  fun JudiciaryFn : El GeopoliticalArea -> Ind GovernmentOrganization ;

  fun JusticeIssues : Ind AreaOfConcern ;

  fun King : Ind Position ;

  fun LaborIssues : Ind AreaOfConcern ;

  fun LatinAmericanEconomicSystem : Ind OrganizationOfNations ;

  fun LatinAmericanIntegrationAssociation : Ind OrganizationOfNations ;

  fun Leader : Ind Position ;

  -- LegalSystemAttribute is the class 
  -- of Attributes that are used to characterize legal systems, as, e.g., 
  -- according to their sources, areas of concern, or principles of 
  -- organization.
  fun LegalSystemAttribute : Class ;
  fun LegalSystemAttribute_Class : SubClass LegalSystemAttribute RelationalAttribute ;

  -- LegislativeChamber is the class of 
  -- LegislativeOrganizations which are a coherent body that considers and 
  -- votes upon legislation in common session. For example, the United States 
  -- Senate.
  fun LegislativeChamber : Class ;
  fun LegislativeChamber_Class : SubClass LegislativeChamber LegislativeOrganization ;

  -- (LegislatureFn ?AREA) denotes the 
  -- legislative branch of the GeopoliticalArea ?AREA.
  fun LegislatureFn : El GeopoliticalArea -> Ind LegislativeOrganization ;

  -- (MemberFn ?ORG) denotes the Position of 
  -- a member in the Organization ?ORG.
  fun MemberFn : El Organization -> Ind Position ;

  -- (MemberRoleFn ?ORG ?POSITION) denotes the 
  -- role of having the Position ?POSITION the Organization ?ORG.
  fun MemberRoleFn : El Organization -> El Position -> Ind Position ;

  -- MemberStatus is the class of 
  -- RelationalAttributes that represent the different kinds of status 
  -- that may be held in various organizations. Included in this class are 
  -- membership types for InternationalOrganizations covered by the CIA World 
  -- Fact Book.
  fun MemberStatus : Class ;
  fun MemberStatus_Class : SubClass MemberStatus RelationalAttribute ;

  fun MembershipApplicant : Ind MemberStatus ;

  fun MembershipPending : Ind MemberStatus ;

  fun MilitaryCommander : Ind Position ;

  fun MilitaryCooperation : Ind TransnationalIssue ;

  fun MilitaryDictatorship : Ind FormOfGovernment ;

  fun Monarch : Ind Position ;

  -- Monarchy is the attribute of a government 
  -- that is ruled by a monarch, which is usually a hereditary role.
  fun Monarchy : Ind FormOfGovernment ;

  fun MonetaryAndEconomicCommunityOfCentralAfrica : Ind OrganizationOfNations ;

  fun MonetaryStability : Ind AreaOfConcern ;

  fun MonetaryUnion : Ind TransnationalIssue ;

  -- MoveableHoliday is the class of 
  -- Holidays whose observance is not fixed to recurrences of any particular 
  -- calendar day. For example, UnitedStatesMemorialDay is observed on the 
  -- last Monday of May.
  fun MoveableHoliday : Class ;
  fun MoveableHoliday_Class : SubClass MoveableHoliday Holiday ;

  fun MulitlateralInvestmentGeographicAgency : Ind InternationalOrganization ;

  fun MultipartyDemocracy : Ind FormOfGovernment ;

  fun MutualDefensePact : Ind TransnationalIssue ;

  -- NapoleonicCode is the specialization of 
  -- CivilLaw developed in France under Napoleon Bonaparte. It is still the 
  -- basis of French law as well as of legal systems developed under French 
  -- influence.
  fun NapoleonicCode : Ind LegalSystemAttribute ;

  fun NationalCommitteeChairman : Ind Position ;

  -- NationalGovernment is the class of 
  -- national_level governments of Nations.
  fun NationalGovernment : Class ;
  fun NationalGovernment_Class : SubClass NationalGovernment Government ;

  -- The NonalignedMovement was 
  -- established to promote political and military cooperation outside of the 
  -- traditional East and West power groups.
  fun NonalignedMovement : Ind OrganizationOfNations ;

  fun NonpermanentStatus : Ind MemberStatus ;

  fun NonregionalMember : Ind MemberStatus ;

  fun NonstateParticipant : Ind MemberStatus ;

  fun NordicCouncil : Ind OrganizationOfNations ;

  fun NordicInvestmentBank : Ind OrganizationOfNations ;

  fun NorthAtlanticTreatyOrganization : Ind OrganizationOfNations ;

  fun NuclearDisarmament : Ind TransnationalIssue ;

  fun NuclearEnergyAgency : Ind OrganizationOfNations ;

  fun NuclearExportControls : Ind TransnationalIssue ;

  fun NuclearNonproliferation : Ind TransnationalIssue ;

  fun NuclearSuppliersGroup : Ind OrganizationOfNations ;

  fun ObservationAndMonitoring : Ind AreaOfConcern ;

  fun ObserverStatus : Ind MemberStatus ;

  fun OrganizationForEconomicCooperationAndDevelopment : Ind OrganizationOfNations ;

  -- The OrganizationForSecurityAndCooperationInEurope, established January 1, 
  -- 1995, grew out of the Conference on Security and Cooperation in Europe, 
  -- which began meeting in 1975.
  fun OrganizationForSecurityAndCooperationInEurope : Ind OrganizationOfNations ;

  fun OrganizationForTheProhibitionOfChemicalWeapons : Ind OrganizationOfNations ;

  -- The OrganizationOfAfricanUnity was renamed to African Union 
  -- (Union_Africaine) in July, 2002.
  fun OrganizationOfAfricanUnity : Ind OrganizationOfNations ;

  -- The OrganizationOfAmericanStates adopted its present charter on April 30, 1948.
  fun OrganizationOfAmericanStates : Ind OrganizationOfNations ;

  fun OrganizationOfArabPetroleumExportingCountries : Ind OrganizationOfNations ;

  fun OrganizationOfEasternCaribbeanStates : Ind OrganizationOfNations ;

  -- This is the class of Organizations whose members are Nations.
  fun OrganizationOfNations : Class ;
  fun OrganizationOfNations_Class : SubClass OrganizationOfNations InternationalOrganization ;

  fun OrganizationOfPetroleumExportingCountries : Ind OrganizationOfNations ;

  fun OrganizationOfTheIslamicConference : Ind OrganizationOfNations ;

  fun OrganizeOlympicGames : Ind TransnationalIssue ;

  -- OverseasArea is the class of 
  -- GeopoliticalAreas that are related to a Nation as overseas 
  -- territories, possessions, protectorates, or departments.
  fun OverseasArea : Class ;
  fun OverseasArea_Class : SubClass OverseasArea (both DependencyOrSpecialSovereigntyArea GeopoliticalArea) ;

  -- (OverseasAreaFn ?AREA) denotes the class 
  -- of OverseasAreas that belong to the GeopoliticalArea ?AREA.
  fun OverseasAreaFn: El GeopoliticalArea -> Desc OverseasArea ;

  fun PacificCommunity : Ind OrganizationOfNations ;

  fun PacificIslandForum : Ind OrganizationOfNations ;

  -- Parliament is the subclass of 
  -- LegislativeOrganizations similar to that of the United Kingdom.
  fun Parliament : Class ;
  fun Parliament_Class : SubClass Parliament LegislativeOrganization ;

  fun ParliamentaryDemocracy : Ind FormOfGovernment ;

  fun ParliamentaryDemocraticRepublic : Ind FormOfGovernment ;

  -- ParliamentaryGovernment is the 
  -- attribute of a government whose chief LegislativeOrganization is a 
  -- Parliament. A parliamentary government is compatible with various 
  -- other government types, including Monarchy.
  fun ParliamentaryGovernment : Ind FormOfGovernment ;

  fun ParliamentaryRepublic : Ind FormOfGovernment ;

  fun ParliamentaryTerritory : Class ;
  fun ParliamentaryTerritory_Class : SubClass ParliamentaryTerritory GeopoliticalArea ;

  fun PartIMember : Ind MemberStatus ;

  fun PartIIMember : Ind MemberStatus ;

  fun PartnersForCooperation : Ind MemberStatus ;

  fun PartnershipForPeace : Ind OrganizationOfNations ;

  fun PeacefulUseOfAtomicPower : Ind TransnationalIssue ;

  fun PeacekeepingOperation : Ind (both TransnationalIssue AreaOfConcern) ;

  fun PermanentChargeDAffaires : Ind ForeignServicePosition ;

  fun PermanentCourtOfArbitration : Ind OrganizationOfNations ;

  fun PermanentRepresentative : Ind Position ;

  fun PermanentStatus : Ind MemberStatus ;

  -- PoliticalCoalition is the class of 
  -- political organizations that are constituted by political parties joined 
  -- together for some common interest(s).
  fun PoliticalCoalition : Class ;
  fun PoliticalCoalition_Class : SubClass PoliticalCoalition (both PoliticalOrganization PoliticalParty) ;

  fun PoliticalCooperation : Ind AreaOfConcern ;

  fun PoliticalDevelopment : Ind AreaOfConcern ;

  fun PoliticalIntegration : Ind AreaOfConcern ;

  -- PoliticalPressureGroup is the 
  -- class of Organizations that exert political pressure and have leaders 
  -- who are involved in politics but not standing for election. For example, 
  -- corporate lobbying groups, Mothers Against Drunk Driving (MADD), or the 
  -- American Civil Liberties Union (ACLU).
  fun PoliticalPressureGroup : Class ;
  fun PoliticalPressureGroup_Class : SubClass PoliticalPressureGroup PoliticalOrganization ;

  fun PopulationPolicySupport : Ind AreaOfConcern ;

  fun President : Ind Position ;

  fun PresidentialGovernment : Ind FormOfGovernment ;

  fun PrimeMinister : Ind Position ;

  fun PrincipalOfficer : Ind ForeignServicePosition ;

  fun PromotePrivateEnterprise : Ind AreaOfConcern ;

  fun PromoteRegionalStability : Ind TransnationalIssue ;

  fun PromoteSustainableDevelopment : Ind AreaOfConcern ;

  fun PromoteTradeUnionism : Ind AreaOfConcern ;

  fun PromotionOfFreeTrade : Ind TransnationalIssue ;

  fun PromotionOfPrivateEnterprise : Ind AreaOfConcern ;

  fun PromotionOfTourism : Ind AreaOfConcern ;

  fun PromotionOfTradeAndInvestment : Ind TransnationalIssue ;

  fun PublicHealthConcern : Ind AreaOfConcern ;

  fun Queen : Ind Position ;

  fun ReducePoverty : Ind AreaOfConcern ;

  fun ReducingCrime : Ind AreaOfConcern ;

  fun RefugeeAssistance : Ind (both TransnationalIssue AreaOfConcern) ;

  -- RegionalLaw is the class of regional 
  -- laws, considered as a body, established by particular Governments 
  -- to regulate activities under their jurisdictions. For example, 
  -- (RegionalLawFn UnitedStates) represents the content of the laws, 
  -- statutes, and rulings of the United States.
  fun RegionalLaw : Class ;
  fun RegionalLaw_Class : SubClass RegionalLaw Proposition ;

  -- (RegionalLawFn ?AREA) denotes the laws 
  -- pertaining in the GeopoliticalArea ?AREA that are established and 
  -- enforced by the Government of ?AREA. For example, (RegionalLawFn 
  -- UnitedStates) denotes the laws of the government of the UnitedStates 
  -- and its constituent units.
  fun RegionalLawFn : El GeopoliticalArea -> Ind RegionalLaw ;

  fun RegionalMember : Ind MemberStatus ;

  fun RegionalSecurity : Ind AreaOfConcern ;

  fun ReproductiveHealthAndFamilyPlannning : Ind AreaOfConcern ;

  -- Republic is the attribute of a government 
  -- whose power and authority are vested in its members, who elect 
  -- representatives to exercise that power.
  fun Republic : Ind FormOfGovernment ;

  -- RestrictedSuffrage is a subclass of 
  -- SuffrageLaw covering laws that restrict suffrage by further 
  -- conditions beyond the basics of citizenship and age.
  fun RestrictedSuffrage : Class ;
  fun RestrictedSuffrage_Class : SubClass RestrictedSuffrage SuffrageLaw ;

  -- The RioGroup was the result of fusing the 
  -- Contadora Group and the Lima (or Support) Group.
  fun RioGroup : Ind OrganizationOfNations ;

  -- RomanCanonLaw is the attribute of legal 
  -- systems based on the Ecclesiastical law developed by the Roman Catholic 
  -- Church.
  fun RomanCanonLaw : Ind LegalSystemAttribute ;

  fun ScientificCooperation : Ind AreaOfConcern ;

  fun SelfGoverningTerritory : Class ;
  fun SelfGoverningTerritory_Class : SubClass SelfGoverningTerritory GeopoliticalArea ;

  fun SignatoryMember : Ind MemberStatus ;

  fun SocialCooperation : Ind TransnationalIssue ;

  fun SocialDevelopment : Ind AreaOfConcern ;

  fun SocioeconomicResearch : Ind AreaOfConcern ;

  fun SouthAsianAssociationForRegionalCooperation : Ind OrganizationOfNations ;

  fun SouthPacificRegionalTradeAndEconomicCooperationAgreement : Ind OrganizationOfNations ;

  fun SouthernAfricanCustomsUnion : Ind OrganizationOfNations ;

  fun SouthernAfricanDevelopmentCommunity : Ind OrganizationOfNations ;

  fun SouthernConeCommonMarket : Ind OrganizationOfNations ;

  fun SpaceResearchAndTechnology : Ind AreaOfConcern ;

  fun Spokesperson : Ind Position ;

  fun StatisticalCommission : Ind InternationalOrganization ;

  fun SubbureauMember : Ind MemberStatus ;

  fun SubscriberMember : Ind MemberStatus ;

  -- SuffrageLaw is a class that includes the 
  -- various types of suffrage rules of different Nations. Instances of 
  -- SuffrageLaw represent the propositional content of various suffrage 
  -- laws.
  fun SuffrageLaw : Class ;
  fun SuffrageLaw_Class : SubClass SuffrageLaw Proposition ;

  fun SupportLawEnforcement : Ind AreaOfConcern ;

  -- SupremeCourt is the subclass of 
  -- JudicialOrganizations that are the ultimate judicial authority for the 
  -- matters on which they rule. For example, the UnitedStatesSupremeCourt, 
  -- or the InternationalCourtOfJustice (World Court).
  fun SupremeCourt : Class ;
  fun SupremeCourt_Class : SubClass SupremeCourt JudicialOrganization ;

  -- (SupremeCourtFn ?AREA) denotes the class 
  -- of the highest court(s) in the judicial system of GeopoliticalArea 
  -- ?AREA. For example, the UnitedStatesSupremeCourt belongs to the class
  -- (SupremeCourtFn UnitedStates).
  fun SupremeCourtFn: El GeopoliticalArea -> Desc SupremeCourt ;

  -- SupremeCourtJudge is the Position 
  -- of a person who is a JudgeAtLaw on some SupremeCourt.
  fun SupremeCourtJudge : Ind Position ;

  fun SuspendedMember : Ind MemberStatus ;

  fun TechnologyCooperation : Ind AreaOfConcern ;

  -- TheocraticGovernment is the 
  -- attribute of a government that bases its authority on Religion.
  fun TheocraticGovernment : Ind FormOfGovernment ;

  fun TheocraticRepublic : Ind FormOfGovernment ;

  fun TransitionalAdministration : Ind (both AreaOfConcern TransnationalIssue) ;

  -- TransitionalGovernment is the 
  -- attribute of a government that is changing from one form of government 
  -- to another. This may be accompanied by social unrest or instability.
  fun TransitionalGovernment : Ind FormOfGovernment ;

  -- TransnationalIssue is a class of 
  -- Attributes that characterize the concerns of Nations, international 
  -- Non_Governmental Institutions (NGOs), and other transnational agents.
  fun TransnationalIssue : Class ;
  fun TransnationalIssue_Class : SubClass TransnationalIssue AreaOfConcern ;

  fun TransportationCoordination : Ind AreaOfConcern ;

  -- The US government organization charged with protecting the
  -- integrity of US national borders, primarily by detecting and
  -- preventing attempts at illegal immigration.
  fun USCustomsAndBorderProtection : Ind (both GovernmentOrganization PoliceOrganization) ;

  -- The branch of the US Government that
  --  handles relations with foreign governments and entities. It is the chief
  --  diplomatic instrument of US foreign policy. It controls US embassies and 
  --  consuls.
  fun USStateDepartment : Ind Government ;

  fun UnicameralLegislature : Ind FormOfGovernment ;

  fun UnincorporatedUnitedStatesTerritory : Class ;
  fun UnincorporatedUnitedStatesTerritory_Class : SubClass UnincorporatedUnitedStatesTerritory OverseasArea ;

  -- UnitaryRule is a FormOfGovernment in which 
  -- the central government controls affairs at all levels, including the local 
  -- level.
  fun UnitaryRule : Ind FormOfGovernment ;

  -- The UnitedNations has six principal 
  -- subOrganizations: the Secretariat, the General Assembly, the Security 
  -- Council, the Economic and Social Council, the Trusteeship Council 
  -- (currently inactive), and the International Court of Justice. The United 
  -- Nations has numerous subordinate agencies and bodies within those six 
  -- major subdivisions.
  fun UnitedNations : Ind OrganizationOfNations ;

  fun UnitedNationsCenterForHumanSettlements : Ind OrganizationOfNations ;

  fun UnitedNationsChildrensFund : Ind OrganizationOfNations ;

  fun UnitedNationsCivilianPoliceMissionInHaiti : Ind OrganizationOfNations ;

  -- The UnitedNationsCompensationCommission was created to process claims and 
  -- pay compensation for losses and damage suffered as a direct result of 
  -- the unlawful invasion and occupation of Kuwait by Iraq.
  fun UnitedNationsCompensationCommission : Ind InternationalOrganization ;

  fun UnitedNationsConferenceOnTradeAndDevelopment : Ind OrganizationOfNations ;

  fun UnitedNationsDevelopmentProgram : Ind OrganizationOfNations ;

  -- The UnitedNationsDisengagementObserverForce was formed by the UN Security 
  -- Council in order to observe the 1973 Arab_Israeli cease_fire.
  fun UnitedNationsDisengagementObserverForce : Ind OrganizationOfNations ;

  fun UnitedNationsEducationalScientificAndCulturalOrganization : Ind OrganizationOfNations ;

  fun UnitedNationsEnvironmentProgram : Ind OrganizationOfNations ;

  -- The UnitedNationsGeneralAssembly is the primary deliberative body of the UnitedNations.
  fun UnitedNationsGeneralAssembly : Ind OrganizationOfNations ;

  fun UnitedNationsHighCommissionerForHumanRights : Ind InternationalOrganization ;

  fun UnitedNationsHighCommissionerForRefugees : Ind OrganizationOfNations ;

  fun UnitedNationsIndustrialDevelopmentOrganization : Ind OrganizationOfNations ;

  fun UnitedNationsInstituteForDisarmamentResearch : Ind InternationalOrganization ;

  fun UnitedNationsInstituteForTrainingAndResearch : Ind OrganizationOfNations ;

  fun UnitedNationsInterimAdministrationMissionInKosovo : Ind InternationalOrganization ;

  fun UnitedNationsInterimAdminstrationMissionInKosovo : Ind OrganizationOfNations ;

  fun UnitedNationsInterimForceInLebanon : Ind OrganizationOfNations ;

  -- The UnitedNationsInterregionalCrimeAndJusticeResearchInstitute was 
  -- reconstituted (from UNSDRI) into its present form in 1989 to address 
  -- broader demands introduced by the participation of more developing 
  -- countries in the UnitedNations.
  fun UnitedNationsInterregionalCrimeAndJusticeResearchInstitute : Ind InternationalOrganization ;

  fun UnitedNationsIraqKuwaitBoundaryDemarcationCommission : Ind InternationalOrganization ;

  fun UnitedNationsIraqKuwaitObservationMission : Ind OrganizationOfNations ;

  fun UnitedNationsMilitaryObserverGroupInIndiaAndPakistan : Ind OrganizationOfNations ;

  fun UnitedNationsMissionForTheReferendumInWesternSahara : Ind OrganizationOfNations ;

  fun UnitedNationsMissionInBosniaAndHerzegovina : Ind OrganizationOfNations ;

  fun UnitedNationsMissionInEthiopiaAndEritrea : Ind OrganizationOfNations ;

  fun UnitedNationsMissionInSierraLeone : Ind OrganizationOfNations ;

  fun UnitedNationsMissionOfObserversInPrevlaka : Ind OrganizationOfNations ;

  fun UnitedNationsMissionOfObserversInTajikistan : Ind OrganizationOfNations ;

  fun UnitedNationsMonitoringAndVerificationCommission : Ind OrganizationOfNations ;

  fun UnitedNationsObserverMissionInGeorgia : Ind OrganizationOfNations ;

  fun UnitedNationsOfficeOfProjectServices : Ind InternationalOrganization ;

  fun UnitedNationsOrganizationMissionInTheDemocraticRepublicOfTheCongo : Ind OrganizationOfNations ;

  fun UnitedNationsPeaceKeepingForceInCyprus : Ind OrganizationOfNations ;

  fun UnitedNationsPopulationFund : Ind OrganizationOfNations ;

  fun UnitedNationsPreventiveDeploymentForce : Ind OrganizationOfNations ;

  fun UnitedNationsReliefAndWorksAgencyForPalestineRefugeesInTheNearEast : Ind OrganizationOfNations ;

  -- The UnitedNationsResearchInstituteForSocialDevelopment conducts research 
  -- into problems of social and economic development. The Chair of its Board 
  -- of Directors is appointed by the UN Secretary General. (No country 
  -- members.)
  fun UnitedNationsResearchInstituteForSocialDevelopment : Ind InternationalOrganization ;

  -- The UnitedNationsSecretariat is 
  -- the primary administrative body of the UnitedNations. It is headed by 
  -- the United Nations' Secretary General, and constituted by him and his 
  -- staff. The UN General Assembly appoints the Secretary General for a 
  -- five_year term.
  fun UnitedNationsSecretariat : Ind InternationalOrganization ;

  fun UnitedNationsSecurityCouncil : Ind OrganizationOfNations ;

  fun UnitedNationsSystemStaffCollege : Ind OrganizationOfNations ;

  fun UnitedNationsTransitionalAdministrationInEastTimor : Ind OrganizationOfNations ;

  fun UnitedNationsTruceSupervisionOrganization : Ind OrganizationOfNations ;

  -- The UnitedNationsTrusteeshipCouncil is one of the six major organs of the 
  -- UnitedNations, but it is currently inactive (though not dissolved) 
  -- following the transition of the last UN trust territory to an independent 
  -- government.
  fun UnitedNationsTrusteeshipCouncil : Ind OrganizationOfNations ;

  -- The Rector and 24 members of the 
  -- UnitedNationsUniversity Council are appointed by the UN Secretary 
  -- General and the Director General of UNESCO.
  fun UnitedNationsUniversity : Ind InternationalOrganization ;

  -- Provides services to farmers in the UnitedStates.
  fun UnitedStatesDepartmentOfAgriculture : Ind GovernmentOrganization ;

  -- Entrusted with the national security of the UnitedStates.
  fun UnitedStatesDepartmentOfDefense : Ind GovernmentOrganization ;

  -- One of the two legislatures that make up the UnitedStatesCongress.
  fun UnitedStatesHouseOfRepresentatives : Ind LegislativeOrganization ;

  -- The GovernmentOrganization of the 
  -- UnitedStates that is entrusted with delivering the mail.
  fun UnitedStatesPostalService : Ind GovernmentOrganization ;

  -- One of the two legislatures that make up the UnitedStatesCongress.
  fun UnitedStatesSenate : Ind LegislativeOrganization ;

  -- The UniversalPostalUnion became 
  -- affiliated with the UnitedNations on November 15, 1947.
  fun UniversalPostalUnion : Ind OrganizationOfNations ;

  -- UniversalSuffrageLaw is a law that 
  -- enfranchises all citizens of a country who have achieved the applicable 
  -- age of maturity (suffrageAgeMinumum).
  fun UniversalSuffrageLaw : Ind SuffrageLaw ;

  fun ViceChairman : Ind Position ;

  fun VicePresident : Ind Position ;

  fun VoterAgeRequirement : Class ;
  fun VoterAgeRequirement_Class : SubClass VoterAgeRequirement SuffrageLaw ;

  fun VoterCitizenshipRequirement : Ind SuffrageLaw ;

  -- (VotingFn ?ELECTION) denotes the class of 
  -- voting events that occur as part of the Election ?ELECTION.
  fun VotingFn: El Election -> Desc Voting ;

  fun WarCrimesProsecution : Ind (both AreaOfConcern TransnationalIssue) ;

  fun WarsawPact : Ind OrganizationOfNations ;

  fun WassenaarArrangement : Ind OrganizationOfNations ;

  fun WeaponsInspection : Ind (both AreaOfConcern TransnationalIssue) ;

  fun WestAfricanDevelopmentBank : Ind OrganizationOfNations ;

  fun WestAfricanEconomicAndMonetaryUnion : Ind OrganizationOfNations ;

  fun WesternEuropeanUnion : Ind OrganizationOfNations ;

  fun WorldBankGroup : Ind OrganizationOfNations ;

  -- The WorldConfederationOfLabor 
  -- was previously named the International Federation of Christian Trade 
  -- Unions. It was renamed on October 4, 1968.
  fun WorldConfederationOfLabor : Ind OrganizationOfNations ;

  fun WorldCustomsOrganization : Ind OrganizationOfNations ;

  fun WorldFederationOfTradeUnions : Ind OrganizationOfNations ;

  fun WorldFoodProgram : Ind OrganizationOfNations ;

  fun WorldHealthOrganization : Ind OrganizationOfNations ;

  fun WorldIntellectualPropertyOrganization : Ind OrganizationOfNations ;

  fun WorldLaborIssues : Ind (both AreaOfConcern TransnationalIssue) ;

  fun WorldMeteorologicalOrganization : Ind OrganizationOfNations ;

  fun WorldTourismOrganization : Ind OrganizationOfNations ;

  -- The WorldTradeOrganization 
  -- succeeded the General Agreement on Tariff and Trade (GATT).
  fun WorldTradeOrganization : Ind OrganizationOfNations ;

  -- The ZanggerCommittee was established during the 1970s.
  fun ZanggerCommittee : Ind OrganizationOfNations ;

  -- (abbreviation ?STRING ?THING) means that 
  -- ?STRING is an abbreviation used to refer to ?THING. Abbreviations include 
  -- acronyms and other abbreviated forms.
  fun abbreviation : El SymbolicString -> El Entity -> Formula ;

  -- (administrativeCenter ?CENTER 
  -- ?REGION) means that ?CENTER is the City (or other area) from which 
  -- the larger GeopoliticalArea ?REGION is administered.
  fun administrativeCenter : El GeopoliticalArea -> El GeopoliticalArea -> Formula ;

  -- (agentOperatesInArea ?AGENT ?AREA) 
  -- means that the individual or Organization ?AGENT operates in the 
  -- GeographicArea ?AREA.
  fun agentOperatesInArea : El Agent -> El GeographicArea -> Formula ;

  -- (agreementAdoptionDate ?AGR ?TIME) 
  -- means that the agreement ?AGR was adopted on the date indicated by ?TIME. 
  -- For example, (agreementAdoptionDate ConstitutionOfTheUnitedStates 
  -- (DayFn 17 (MonthFn September (YearFn 1787)))).
  fun agreementAdoptionDate: El Proposition -> Desc TimePosition -> Formula ;

  -- (agreementEffectiveDate ?AGR ?TIME) means that the agreement ?AGR
  -- becomes effective on the date indicated by ?TIME. 
  -- For example, (agreementEffectiveDate ConstitutionOfTheUnitedStates (DayFn 4 (MonthFn March (YearFn 1789)))).
  fun agreementEffectiveDate: El Proposition -> Desc TimePosition -> Formula ;

  -- (agreementEffectiveDuring ?AGR ?DATE) means that the agreement ?AGR is effective during the time 
  -- indicated by ?DATE. The agreement may be effective for longer than ?DATE, 
  -- but it is in effect at least throughout the time indicated by ?DATE.
  fun agreementEffectiveDuring: El Proposition -> Desc TimePosition -> Formula ;

  -- (agreementRevisionDate ?AGR ?DATE ?CHANGE) means that the agreement 
  -- ?AGR was revised at the time indicated by ?DATE, with respect to the 
  -- part ?CHANGE. Revisions cover additions and removals.
  fun agreementRevisionDate: El Proposition -> Desc TimePosition -> El Proposition -> Formula ;

  -- (aimOfOrganization ?GROUP ?DESCRIPTION) means that the Organization 
  -- ?GROUP has the purpose ?DESCRIPTION, formulated as a quoted text.
  fun aimOfOrganization : El Organization -> El SymbolicString -> Formula ;

  -- (associateInOrganization ?AGENT ?GROUP) means that ?AGENT is associated in some way
  -- with the Group ?GROUP. This includes participation as a guest or observer,
  -- as well as being a full member. See member for a more specific relation.
  fun associateInOrganization : El Agent -> El Group -> Formula ;

  -- (associateWithStatus ?AGT ?STATUS ?GROUP) means that the Agent 
  -- ?AGT has the RelationalAttribute ?STATUS in the Group ?GROUP. 
  -- For example, (associateWithStatus UnitedStates PermanentMember UnitedNationsSecurityCouncil)
  -- means that the &UnitedStates has the status of a permanent member in the U.N. Security Council.
  fun associateWithStatus : El Agent -> El RelationalAttribute -> El Group -> Formula ;

  -- (candidateForPosition ?ELECTION ?POSITION ?CONTENDER) means that in the Election ?ELECTION for 
  -- ?POSITION, the Agent ?CONTENDER was one of the candidates.
  fun candidateForPosition : El Election -> El SocialRole -> El Agent -> Formula ;

  -- (capitalCity ?CITY ?REGION) means that the 
  -- City ?CITY is the capital of the GeopoliticalArea ?REGION.
  fun capitalCity : El City -> El GeopoliticalArea -> Formula ;

  -- (cardinality ?SET ?NUMBER) means that there 
  -- are ?NUMBER of elements in the SetOrClass ?SET.
  fun cardinality : El SetOrClass -> El NonnegativeInteger -> Formula ;

  -- (chamberOfLegislature ?CHAMBER ?LEGISLATURE) means that ?CHAMBER is a legislative body
  -- within the ?LEGISLATURE.
  fun chamberOfLegislature : El Organization -> El Organization -> Formula ;

  -- (chanceryAddressInArea ?AREA1 ?ADDRESS ?AREA2) means that the address of the main foreign service 
  -- organization of the GeopoliticalArea ?AREA1 for ?AREA2 is the SymbolicString ?ADDRESS.
  fun chanceryAddressInArea : El GeopoliticalArea -> El SymbolicString -> El GeopoliticalArea -> Formula ;

  -- (chanceryFAXNumberInArea ?AREA1 ?FAX ?AREA2) means that the FAX number of the main diplomatic office of 
  -- the GeopoliticalArea ?AREA1 located in ?AREA2 is ?FAX.
  fun chanceryFAXNumberInArea : El GeopoliticalArea -> El SymbolicString -> El GeopoliticalArea -> Formula ;

  -- (chanceryMailingAddressInArea ?AREA1 ?ADDRESS ?AREA2) means that the mailing address of
  -- the main foreign service organization of the GeopoliticalArea ?AREA1 located in ?AREA2 is
  -- the SymbolicString ?ADDRESS.
  fun chanceryMailingAddressInArea : El GeopoliticalArea -> El SymbolicString -> El GeopoliticalArea -> Formula ;

  -- (chanceryTelephoneNumberInArea ?AREA1 ?TELEPHONE ?AREA2) means that the 
  -- telephone number of the main diplomatic office of the GeopoliticalArea 
  -- ?AREA1 located in ?AREA2 is ?TELEPHONE.
  fun chanceryTelephoneNumberInArea : El GeopoliticalArea -> El SymbolicString -> El GeopoliticalArea -> Formula ;

  -- (chiefOfDiplomaticMission ?AGENT1 ?PERSON ?RANK ?AGENT2) means that 
  -- the chief diplomatic representative sent by the Agent ?AGENT1 to the 
  -- Agent ?AGENT2 is ?PERSON, whose official position is ?RANK.
  fun chiefOfDiplomaticMission : El Agent -> El Human -> El Position -> El Agent -> Formula ;

  -- (chiefOfState ?POLITY ?ROLE ?PERSON) means 
  -- that ?PERSON is the titular leader of the government of the 
  -- GeopoliticalArea ?POLITY and represents it at official functions. The 
  -- office held by this chief of state is ?ROLE (e.g., President, Queen, 
  -- Chairman). Note: this term is defined as in the CIA World Fact Book.
  fun chiefOfState : El GeopoliticalArea -> El Position -> El Human -> Formula ;

  -- (chiefOfStateType ?NATION ?ROLE) means 
  -- that the chiefOfState of the GeopoliticalArea ?NATION holds the 
  -- Position ?ROLE in its government.
  fun chiefOfStateType : El GeopoliticalArea -> El Position -> Formula ;

  -- (commemoratesDate ?HOLIDAY ?DATE) means 
  -- that instances of the Holiday ?HOLIDAY are observed to commemorate 
  -- something that happened during the TimeInterval specified by ?DATE. 
  -- For example, (commemoratesDate BastilleDay (DayFn 14 (MonthFn July (YearFn 1789)))).
  fun commemoratesDate: El Holiday -> Desc TimeInterval -> Formula ;

  -- (conventionalLongName ?NAME ?THING) 
  -- means that the string ?NAME is the long form of the name conventionally 
  -- used for ?THING.
  fun conventionalLongName : El SymbolicString -> El Entity -> Formula ;

  -- (conventionalShortName ?NAME ?THING) means that the string ?NAME is
  -- the short form of the name conventionally used for ?THING. 
  -- For a more specialized subset of short names, see abbreviation.
  fun conventionalShortName : El SymbolicString -> El Entity -> Formula ;

  -- (dateDissolved ?THING ?TIME) means that the Physical ?THING was dissolved,
  -- disbanded, or superseded on the date indicated by ?TIME. 
  -- For example, (dateDissolved UnitedNationsPreventiveDeploymentForce (DayFn 25 (MonthFn March (YearFn 1999)))).
  fun dateDissolved: El Physical -> Desc TimePosition -> Formula ;

  -- (dateEstablished ?THING ?TIME) means 
  -- that the Physical ?THING was founded on the date indicated by ?TIME. 
  -- For example, (dateEstablished UnitedNations (DayFn 26 (MonthFn June (YearFn 1945)))).
  fun dateEstablished: El Physical -> Desc TimePosition -> Formula ;

  -- (dependentAreaOfType ?AREA ?COUNTRY ?TYPE) means that 
  -- the GeopoliticalArea ?AREA is a dependency of the independent Nation ?COUNTRY, 
  -- administered as a unit of ?TYPE. 
  -- For example, (dependentAreaOfType SaintHelena UnitedKingdom OverseasArea).
  fun dependentAreaOfType: El GeopoliticalArea -> El GeopoliticalArea -> Desc GeopoliticalArea -> Formula ;

  -- (diplomaticOrganizationType ?AGENT1 ?ORG ?AGENT2) means that the 
  -- Agent ?AGENT1 has a diplomatic organization of the type ?ORG 
  -- in Agent ?AGENT2. For example, 
  -- (diplomaticOrganizationType UnitedStates Embassy France), or 
  -- (diplomaticOrganizationType UnitedStates ConsulateGeneral 
  -- ShanghaiChina).
  fun diplomaticOrganizationType: El Agent -> Desc Organization -> El Agent -> Formula ;

  -- (diplomaticRelations ?COUNTRY1 ?COUNTRY2) means that there are official 
  -- diplomatic relations between the two Nations ?COUNTRY1 and ?COUNTRY2.
  fun diplomaticRelations : El GeopoliticalArea -> El GeopoliticalArea -> Formula ;

  -- (diplomaticRepresentationType ?AGENT1 ?RANK ?AGENT2) means that the 
  -- Agent ?AGENT1 sends a representative with the Position ?RANK 
  -- to the Agent ?AGENT2.
  fun diplomaticRepresentationType : El Agent -> El Position -> El Agent -> Formula ;

  -- (diplomaticRepresentativeInRole ?AGENT1 ?PERSON ?RANK ?AGENT2) means 
  -- that the Agent ?AGENT1 sends the individual ?PERSON with the 
  -- Position ?RANK as its representative to the Agent ?AGENT2. 
  -- Note: it is possible for ?PERSON to be diplomatically accredited to more 
  -- than one area. For example, currently the United States Ambassador to 
  -- Papua New Guinea is also accredited to Vanuatu, and there is no embassy 
  -- in Vanuatu.
  fun diplomaticRepresentativeInRole : El Agent -> El Human -> El Position -> El Agent -> Formula ;

  -- (electionDatePlannedForPosition ?AGENT ?TIME ?POSITION) means that the 
  -- Agent ?AGENT (a Nation, Government, or Organization) plans to hold 
  -- an Election on the date indicated by ?TIME for position(s) ?POSITION.
  fun electionDatePlannedForPosition: El Agent -> Desc TimePosition -> El SocialRole -> Formula ;

  -- (electionForOrganization ?ELECTION ?GROUP) means that in the 
  -- Election ?ELECTION, candidates run for election to the organization ?GROUP.
  fun electionForOrganization : El Election -> El Organization -> Formula ;

  -- (electionForPosition ?ELECTION ?POSITION) means that in the Election ?ELECTION, 
  -- candidates run for election to the role(s) ?POSITION.
  fun electionForPosition : El Election -> El SocialRole -> Formula ;

  -- (electionWinner ?ELECTION ?POSITION ?CONTENDER) means that in the Election ?ELECTION, 
  -- ?POSITION was won by the Agent ?CONTENDER. Contenders may be either persons or political parties.
  fun electionWinner : El Election -> El SocialRole -> El Agent -> Formula ;

  -- (executiveBranch ?BRANCH ?ORG) means 
  -- that the Organization ?BRANCH is the executive branch of the 
  -- GeopoliticalArea or Organization ?ORG, that is, its executive offices 
  -- and bodies, considered as a whole.
  fun executiveBranch : El Organization -> El Agent -> Formula ;

  -- (flagDescription ?AREA ?DESCRIPTION) 
  -- means that the SymbolicString ?DESCRIPTION is a verbal description of 
  -- the flag of the GeopoliticalArea ?AREA.
  fun flagDescription : El GeopoliticalArea -> El SymbolicString -> Formula ;

  -- (flagImage ?AREA ?POINTER) means that an image 
  -- of the flag of the GeopoliticalArea ?AREA is found at the location given 
  -- in the SymbolicString ?POINTER.
  fun flagImage : El GeopoliticalArea -> El SymbolicString -> Formula ;

  -- (governmentType ?BODY ?FORM) means that 
  -- the GeopoliticalArea or Organization ?BODY has a government with 
  -- characteristic(s) of the type ?FORM.
  fun governmentType : El Agent -> El FormOfGovernment -> Formula ;

  -- (headOfGovernment ?POLITY ?ROLE ?PERSON) means that ?PERSON is
  -- the top administrative leader of the Government of the GeopoliticalArea ?POLITY, with 
  -- authority for managing its day_to_day functions. The office held by this person 
  -- is the Position ?ROLE (e.g., President, Prime Minister, Governor). 
  -- Note: this term is defined as in the CIA World Fact Book.
  fun headOfGovernment : El GeopoliticalArea -> El Position -> El Human -> Formula ;

  -- (holidayTimeInArea ?AREA ?TIME) means that ?TIME is a particular time period during which Holiday 
  -- is observed, thus during which normal government, business, and other services may not operate.
  fun holidayTimeInArea : El GeopoliticalArea -> El TimePosition -> Formula ;

  -- (independenceDate ?AREA ?DATE) means 
  -- that the GeopoliticalArea ?AREA achieved its sovereignty on the date ?DATE.
  -- For example, (independenceDate Afghanistan (DayFn 19 (MonthFn August (YearFn 1919)))).
  fun independenceDate: El GeopoliticalArea -> Desc TimeInterval -> Formula ;

  -- (judicialBranch ?BRANCH ?ORG) means that 
  -- the Organization ?BRANCH is the judicial branch of the 
  -- GeopoliticalArea or Organization ?ORG, that is, all of its courts and 
  -- judicial offices, considered as a whole.
  fun judicialBranch : El Organization -> El Agent -> Formula ;

  -- (leaderPosition ?ORG ?ROLE)
  -- means that in the organization ?ORG, the leader is the person 
  -- who holds the Position ?ROLE in the organization.
  fun leaderPosition : El Agent -> El Position -> Formula ;

  -- (legalSystemType ?AREA ?TYPE) means 
  -- that the GeopoliticalArea ?AREA has a legal system characterized by 
  -- the LegalSystemAttribute ?TYPE. For example, (legalSystemType 
  -- UnitedStates EnglishCommonLaw). A legal system may have multiple characteristics.
  fun legalSystemType : El GeopoliticalArea -> El LegalSystemAttribute -> Formula ;

  -- (legislativeBranch ?BRANCH ?ORG) means 
  -- that the Organization ?BRANCH is the legislative branch of the 
  -- GeopoliticalArea or Organization ?ORG.
  fun legislativeBranch : El Organization -> El Agent -> Formula ;

  -- (nationalCelebration ?AREA ?HOLIDAY) 
  -- means that the primary day of national celebration in the 
  -- GeopoliticalArea ?AREA is ?HOLIDAY. 
  -- For example, (nationalCelebration Afghanistan AfghanIndependenceDay).
  fun nationalCelebration: El GeopoliticalArea -> Desc Holiday -> Formula ;

  -- (nationalHoliday ?AREA ?HOLIDAY) means 
  -- that ?HOLIDAY is a national holiday observed in ?AREA. The 
  -- GeopoliticalArea ?AREA observes a holiday on days specified as a 
  -- ?HOLIDAY, during which national government offices and other facilities 
  -- typically are closed. There may be multiple nationalHolidays. 
  -- For example, (nationalHoliday UnitedStates UnitedStatesMemorialDay).
  fun nationalHoliday: El GeopoliticalArea -> Desc Holiday -> Formula ;

  -- (organizationalObjective ?AGENT ?FOCUS) means that the Agent ?AGENT has
  -- significant aims and concerns characterized by the AreaOfConcern ?FOCUS.
  fun organizationalObjective : El Agent -> El AreaOfConcern -> Formula ;

  -- (politicalPartyOfCountry ?PARTY ?AREA) means that the PoliticalParty ?PARTY participates
  -- in politics in the GeopoliticalArea ?AREA.
  fun politicalPartyOfCountry : El PoliticalParty -> El GeopoliticalArea -> Formula ;

  -- (primaryGeopoliticalSubdivision ?AREA ?COUNTRY) means that the 
  -- GeopoliticalArea ?AREA is one of the first_order administrative 
  -- divisions of the Nation ?COUNTRY. For example, in the United States, 
  -- any of the fifty states. This does not include subordinate regions that 
  -- have a lesser status, such as British Crown colonies, U.S. territories, 
  -- or protectorates. See geopoliticalSubdivision.
  fun primaryGeopoliticalSubdivision : El GeopoliticalArea -> El GeopoliticalArea -> Formula ;

  -- (primaryGeopoliticalSubdivisionType ?COUNTRY ?TYPE) means that the 
  -- first_order administrative divisons of ?COUNTRY are of the type ?TYPE.
  fun primaryGeopoliticalSubdivisionType: El GeopoliticalArea -> Desc GeopoliticalArea -> Formula ;

  -- (representativeAgentToAgent ?SENDER ?REP ?RECEIVER) means that 
  -- the Agent ?SENDER has the Agent ?REP as its representative 
  -- to the Agent ?RECEIVER. ?REP works for ?SENDER and is not assumed 
  -- to be an impartial mediator.
  fun representativeAgentToAgent : El Agent -> El Agent -> El Agent -> Formula ;

  -- (roleAppointsRole ?ORG ?APPOINTER ?APPOINTED) means that in the Organization or
  -- GeopoliticalArea ?ORG, the agent holding the SocialRole ?APPOINTER has the authority to 
  -- appoint a person to fill the role ?APPOINTED.
  fun roleAppointsRole : El Agent -> El SocialRole -> El SocialRole -> Formula ;

  -- (roleApprovesRole ?ORG ?APPROVER ?APPOINTED) means that in the Organization or GeopoliticalArea ?ORG, 
  -- the agent holding the SocialRole ?APPROVER has the authority to approve (or disapprove) of an appointee for
  -- the role ?APPOINTED.
  fun roleApprovesRole : El Agent -> El SocialRole -> El SocialRole -> Formula ;

  -- (roleNominatesRole ?ORG ?NOMINATOR ?NOMINATED) means that in the Organization or GeopoliticalArea ?ORG, 
  -- the agent holding the SocialRole ?NOMINATOR has the authority to nominate one or more persons to
  -- fill the role ?NOMINATED.
  fun roleNominatesRole : El Agent -> El SocialRole -> El SocialRole -> Formula ;

  -- (seatsHeldInOrganization ?GROUP ?PARTY ?NUMBER) means that in the Organization ?GROUP, 
  -- the PoliticalParty or other Agent ?AGENT, holds or controls this ?NUMBER of seats.
  fun seatsHeldInOrganization : El Organization -> El Agent -> El NonnegativeInteger -> Formula ;

  -- (seatsInOrganizationCount ?ORG ?NUMBER) means that there is a total ?NUMBER of seats in 
  -- the Organization ?ORG.
  fun seatsInOrganizationCount : El Organization -> El Integer -> Formula ;

  -- (seatsWonInElection ?ELECTION ?AGENT ?NUMBER) means that in the Election ?ELECTION, 
  -- the PoliticalParty ?AGENT won this ?NUMBER of seats.
  fun seatsWonInElection : El Election -> El Agent -> El Integer -> Formula ;

  -- (successorOrganization ?OLD ?NEW) 
  -- means that the Organization ?OLD was transformed or merged into, or 
  -- otherwise succeeded by, the Organization ?NEW.
  fun successorOrganization : El Organization -> El Organization -> Formula ;

  -- (suffrageAgeMaximum ?POLITY ?AGE) 
  -- means that in the Organization or GeopoliticalArea ?POLITY, a person 
  -- must be ?AGE or younger in order to vote in the elections of ?POLITY.
  fun suffrageAgeMaximum : El Agent -> El TimeDuration -> Formula ;

  -- (suffrageAgeMinimum ?POLITY ?AGE) 
  -- means that in the Organization or GeopoliticalArea ?POLITY, a person 
  -- must be ?AGE or older in order to vote in the elections of ?POLITY.
  fun suffrageAgeMinimum : El Agent -> El TimeDuration -> Formula ;

  -- (termLength ?ORG ?ROLE ?LENGTH) means 
  -- that in the Organization or GeopoliticalArea ?ORG, the term of office 
  -- for the position ?ROLE is the TimeDuration ?LENGTH.
  fun termLength : El Agent -> El SocialRole -> El TimeDuration -> Formula ;

  -- (voteFractionReceived ?ELECTION ?POSITION ?CONTENDER ?FRACTION) means 
  -- that in the Election ?ELECTION for ?POSITION, the Agent ?CONTENDER 
  -- received ?FRACTION of the votes cast. Contenders may be either persons or political parties.
  fun voteFractionReceived : El Election -> El SocialRole -> El Agent -> El RealNumber -> Formula ;

}