-
Notifications
You must be signed in to change notification settings - Fork 75
/
Copy pathdomainEnglishFormat.kif
11144 lines (11138 loc) · 764 KB
/
domainEnglishFormat.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
;; Access to and use of these products is governed by the GNU General Public
;; License <http://www.gnu.org/copyleft/gpl.html>.
;; By using these products, you agree to be bound by the terms
;; of the GPL.
;; 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 www.ontologyportal.org
(format EnglishLanguage abbreviation "%1 is %n an &%abbreviation of %2")
(format EnglishLanguage AbortedFn "the &%abortion of %1 by %2")
(format EnglishLanguage AbortedLaunchFn "the &%aborted launch of %2 by %1")
(format EnglishLanguage AbortedMissionFn "the mission of %2 &%aborted by %1")
(format EnglishLanguage absoluteHeight "%2 is %n the &%absolute height of %1")
(format EnglishLanguage AccountFn "the &%account of %1")
(format EnglishLanguage accountNumber "%2 is %n the &%account number of %1")
(format EnglishLanguage accountStatus "%2 is %n the &%account status of %1")
(format EnglishLanguage accruedInterest "%2 is %n the &%accrued interest of %1")
(format EnglishLanguage acquaintance "%2 is %n an &%acquaintance of %1")
(format EnglishLanguage AddressFn "the &%address of %1")
(format EnglishLanguage administrativeCenter "%2 is %n the &%administrative center of %1")
(format EnglishLanguage administrator "%2 is %n the &%administrator of %1")
(format EnglishLanguage administratorStatus "%2 is %n an &%administrator status of %1")
(format EnglishLanguage affiliatedOrganization "%2 is %n an &%affiliated organization of %1")
(format EnglishLanguage agentOperatesInArea "%2 is %n an &%agent operates in area of %1")
(format EnglishLanguage agreementAdoptionDate "%2 is %n an &%agreement adoption date of %1")
(format EnglishLanguage agreementEffectiveDate "%2 is %n an &%agreement effective date of %1")
(format EnglishLanguage agreementEffectiveDuring "%2 is %n an &%agreement effective during of %1")
(format EnglishLanguage AgreementOrganizationFn "the &%agreement organization of %1")
(format EnglishLanguage agreementPeriod "%2 is %n an &%agreement period of %1")
(format EnglishLanguage agreementRevisionDate "%1 %n{doesn't} &%agreement revision date %2 for %3")
(format EnglishLanguage agriculturalProductType "%2 is %n an &%agricultural product type of %1")
(format EnglishLanguage agriculturalProductTypeByRank "%1 %n{doesn't} &%agricultural product type by rank %2 for %3")
;;(format EnglishLanguage AgricultureFn "the &%agriculture of %1")
(format EnglishLanguage aimOfOrganization "%2 is %n an &%aim of organization of %1")
(format EnglishLanguage airTemperature "%2 is %n an &%air temperature of %1")
(format EnglishLanguage alias "%2 is %n an &%alias of %1")
(format EnglishLanguage allegiance "%2 is %n an &%allegiance of %1")
(format EnglishLanguage almaMater "%1's &%almaMater is %n %2")
(format EnglishLanguage amountDue "%1 %n{doesn't} &%amount due %2 for %3")
(format EnglishLanguage ancestorOrganization "%2 is %n an &%ancestor organization of %1")
(format EnglishLanguage angularMeasure "%2 is %n an &%angular measure of %1")
(format EnglishLanguage anniversary "%2 is %n an &%anniversary of %1")
(format EnglishLanguage annualElectricityConsumption "%2 is %n an &%annual electricity consumption of %1")
(format EnglishLanguage annualElectricityExport "%2 is %n an &%annual electricity export of %1")
(format EnglishLanguage annualElectricityImport "%2 is %n an &%annual electricity import of %1")
(format EnglishLanguage annualElectricityProduction "%2 is %n an &%annual electricity production of %1")
(format EnglishLanguage annualExpendituresOfArea "%2 is %n an &%annual expenditures of area of %1")
(format EnglishLanguage annualExpendituresOfAreaInPeriod "%1 %n{doesn't} &%annual expenditures of area in period %2 for %3")
(format EnglishLanguage annualExportTotal "%2 is %n an &%annual export total of %1")
(format EnglishLanguage annualImportTotal "%2 is %n an &%annual import total of %1")
(format EnglishLanguage annualRevenuesOfArea "%2 is %n an &%annual revenues of area of %1")
(format EnglishLanguage annualRevenuesOfAreaInPeriod "%1 %n{doesn't} &%annual revenues of area in period %2 for %3")
(format EnglishLanguage arableLandArea "%2 is %n an &%arable land area of %1")
(format EnglishLanguage associatedFunctionality "%2 is %n an &%associated functionality of %1")
(format EnglishLanguage associateInOrganization "%2 is %n an &%associate in organization of %1")
(format EnglishLanguage associateWithStatus "%1 %n{doesn't} &%associate with status %2 for %3")
(format EnglishLanguage AssociativeFunction "the &%associative function of %1 and %2")
(format EnglishLanguage atomicNumber "%2 is %n an &%atomic number of %1")
(format EnglishLanguage atTheMoney "%2 is %n an &%at the money of %1")
(format EnglishLanguage AttrFn "the &%attr of %1 and %2")
(format EnglishLanguage AvailableForMilitaryServiceMaleFn "the &%available for military service male of %1")
(format EnglishLanguage average "%2 is %n an &%average of %1")
(format EnglishLanguage averagePrecipitationForPeriod "%1 %n{doesn't} &%average precipitation for period %2 for %3")
(format EnglishLanguage averageRainfallForPeriod "%1 %n{doesn't} &%average rainfall for period %2 for %3")
(format EnglishLanguage averageTemperatureForPeriod "%1 %n{doesn't} &%average temperature for period %2 for %3")
(format EnglishLanguage axis "%2 is %n an &%axis of %1")
(format EnglishLanguage bandwidthOf "%2 is %n a &%bandwidth of of %1")
(format EnglishLanguage bankAccount "%2 is %n a &%bank account of %1")
(format EnglishLanguage barometricPressure "%2 is %n a &%barometric pressure of %1")
(format EnglishLanguage batchInterArrival "%2 is %n a &%batch inter arrival of %1")
(format EnglishLanguage batchLatency "%2 is %n a &%batch latency of %1")
(format EnglishLanguage benchmark "%2 is %n a &%benchmark of %1")
(format EnglishLanguage benchmarkPerformance "%1 %n{doesn't} &%benchmark performance %2 for %3")
(format EnglishLanguage betweenOnPath "%1 %n{doesn't} &%between on path %2 for %3")
(format EnglishLanguage BinaryFunction "the &%binary function of %1 and %2")
(format EnglishLanguage BinaryPredicate "%2 is %n a &%binary predicate of %1")
(format EnglishLanguage biochemicalAgentAntidote "%1 %n{doesn't} &%biochemical agent antidote %2 for %3")
(format EnglishLanguage biochemicalAgentDelivery "%2 is %n a &%biochemical agent delivery of %1")
(format EnglishLanguage biochemicalAgentSyndrome "%2 is %n a &%biochemical agent syndrome of %1")
(format EnglishLanguage bioindicatorForHabitat "%2 is %n a &%bioindicator for habitat of %1")
(format EnglishLanguage biologicalAgentCarrier "%2 is %n a &%biological agent carrier of %1")
(format EnglishLanguage birthdate "%2 is %n a &%birthdate of %1")
(format EnglishLanguage birthplace "%2 is %n a &%birthplace of %1")
(format EnglishLanguage BirthsPerThousandFn "the &%births per thousand of %1 and %2")
(format EnglishLanguage boilingPoint "%2 is %n a &%boiling point of %1")
(format EnglishLanguage BorderFn "the &%border of %1 and %2")
(format EnglishLanguage buyingPowerAmount "%1 %n{doesn't} &%buying power amount %2 for %3")
(format EnglishLanguage CabinetFn "the &%cabinet of %1")
(format EnglishLanguage caliber "%2 is %n a &%caliber of %1")
(format EnglishLanguage callDate "%2 is %n a &%call date of %1")
(format EnglishLanguage candidateForPosition "%1 %n{doesn't} &%candidate for position %2 for %3")
(format EnglishLanguage capableAtLocation "%1 %n{doesn't} &%capable at location %2 for %3 with %4")
(format EnglishLanguage capacity "%2 is %n a &%capacity of %1")
(format EnglishLanguage capitalCity "%2 is %n a &%capital city of %1")
(format EnglishLanguage capitalExpendituresOfArea "%2 is %n a &%capital expenditures of area of %1")
(format EnglishLanguage capitalExpendituresOfAreaInPeriod "%1 %n{doesn't} &%capital expenditures of area in period %2 for %3")
(format EnglishLanguage cardAccount "%2 is %n a &%card account of %1")
(format EnglishLanguage cardCode "%2 is %n a &%card code of %1")
(format EnglishLanguage cardinality "%2 is %n a &%cardinality of %1")
(format EnglishLanguage cargoType "%2 is %n a &%cargo type of %1")
(format EnglishLanguage CaseRole "%2 is %n a &%case role of %1")
(format EnglishLanguage catalyst "%2 is %n a &%catalyst of %1")
(format EnglishLanguage causesProposition "%2 is %n a &%causes proposition of %1")
(format EnglishLanguage causesSubclass "%2 is %n a &%causes subclass of %1")
(format EnglishLanguage CellPartFn "the &%cell part of %1 and %2")
(format EnglishLanguage CenterOfCircleFn "the &%center of circle of %1")
(format EnglishLanguage chamberOfLegislature "%2 is %n a &%chamber of legislature of %1")
(format EnglishLanguage chanceryAddressInArea "%1 %n{doesn't} &%chancery address in area %2 for %3")
(format EnglishLanguage chanceryFAXNumberInArea "%1 %n{doesn't} &%chanceryFAX number in area %2 for %3")
(format EnglishLanguage chanceryMailingAddressInArea "%1 %n{doesn't} &%chancery mailing address in area %2 for %3")
(format EnglishLanguage chanceryTelephoneNumberInArea "%1 %n{doesn't} &%chancery telephone number in area %2 for %3")
(format EnglishLanguage changesLocation "%2 is %n a &%changes location of %1")
(format EnglishLanguage checkAccount "%2 is %n a &%check account of %1")
(format EnglishLanguage chiefOfDiplomaticMission "%1 %n{doesn't} &%chief of diplomatic mission %2 for %3 with %4")
(format EnglishLanguage chiefOfState "%1 %n{doesn't} &%chief of state %2 for %3")
(format EnglishLanguage chiefOfStateType "%2 is %n a &%chief of state type of %1")
(format EnglishLanguage ChildrenBornPerWomanFn "the &%children born per woman of %1 and %2")
(format EnglishLanguage CitizenryFn "the &%citizenry of %1")
(format EnglishLanguage claimedTerritory "%2 is %n a &%claimed territory of %1")
(format EnglishLanguage climateTypeInArea "%2 is %n a &%climate type in area of %1")
(format EnglishLanguage closingPrice "%1 %n{doesn't} &%closing price %2 for %3")
(format EnglishLanguage cloudCoverFraction "%2 is %n a &%cloud cover fraction of %1")
(format EnglishLanguage cohabitant "%2 is %n a &%cohabitant of %1")
(format EnglishLanguage coldSeasonInArea "%2 is %n a &%cold season in area of %1")
(format EnglishLanguage commandLineArguments "%2 is %n a &%command line arguments of %1")
(format EnglishLanguage commandRankOfEchelon "%2 is %n a &%command rank of echelon of %1")
(format EnglishLanguage commemoratesDate "%2 is %n a &%commemorates date of %1")
(format EnglishLanguage communicationSatelliteForArea "%1 %n{doesn't} &%communication satellite for area %2 for %3")
(format EnglishLanguage CommutativeFunction "the &%commutative function of %1 and %2")
(format EnglishLanguage comparativeArea "%1 %n{doesn't} &%comparative area %2 for %3 with %4")
(format EnglishLanguage compensationPackage "%1 %n{doesn't} &%compensation package %2 for %3")
(format EnglishLanguage componentDataID "%1 %n{doesn't} &%component dataI d %2 for %3 with %4 and %5")
(format EnglishLanguage compoundInterest "%1 %n{doesn't} &%compound interest %2 for %3")
(format EnglishLanguage computerResponseTo "%2 is %n a &%computer response to of %1")
(format EnglishLanguage confersNorm "%1 %n{doesn't} &%confers norm %2 for %3")
(format EnglishLanguage confirmationNumber "%2 is %n a &%confirmation number of %1")
(format EnglishLanguage conjugate "%2 is %n a &%conjugate of %1")
(format EnglishLanguage connectedDownstream "%2 is %n a &%connected downstream of %1")
(format EnglishLanguage consistent "%2 is %n a &%consistent of %1")
(format EnglishLanguage ConstitutionFn "the &%constitution of %1")
(format EnglishLanguage conventionalLongName "%2 is %n a &%conventional long name of %1")
(format EnglishLanguage conventionalShortName "%2 is %n a &%conventional short name of %1")
(format EnglishLanguage coolSeasonInArea "%2 is %n a &%cool season in area of %1")
(format EnglishLanguage couponInterest "%2 is %n a &%coupon interest of %1")
(format EnglishLanguage courseWRTCompassNorth "%1 %n{doesn't} &%courseWRT compass north %2 for %3")
(format EnglishLanguage courseWRTMagneticNorth "%1 %n{doesn't} &%courseWRT magnetic north %2 for %3")
(format EnglishLanguage courseWRTTrueNorth "%1 %n{doesn't} &%courseWRT true north %2 for %3")
(format EnglishLanguage coworker "%2 is %n a &%coworker of %1")
(format EnglishLanguage creditLimit "%2 is %n a &%credit limit of %1")
(format EnglishLanguage creditRanking "%2 is %n a &%credit ranking of %1")
(format EnglishLanguage creditsPerPeriod "%1 %n{doesn't} &%credits per period %2 for %3")
(format EnglishLanguage criticalityLevel "%2 is %n a &%criticality level of %1")
(format EnglishLanguage currencyCode "%2 is %n a &%currency code of %1")
(format EnglishLanguage currencyExchangePerUSDollar "%2 is %n a &%currency exchange perUS dollar of %1")
(format EnglishLanguage currencyExchangeRate "%2 is %n a &%currency exchange rate of %1")
(format EnglishLanguage currencyExchangeRateInPeriod "%1 %n{doesn't} &%currency exchange rate in period %2 for %3")
(format EnglishLanguage CurrencyFn "the &%currency of %1")
(format EnglishLanguage currencyType "%2 is %n a &%currency type of %1")
(format EnglishLanguage currencyValue "%2 is %n a &%currency value of %1")
(format EnglishLanguage currentAccountBalance "%1 %n{doesn't} &%current account balance %2 for %3")
(format EnglishLanguage currentInterestRate "%1 %n{doesn't} &%current interest rate %2 for %3")
(format EnglishLanguage customer "%2 is %n a &%customer of %1")
(format EnglishLanguage customerRepresentative "%1 %n{doesn't} &%customer representative %2 for %3")
(format EnglishLanguage dailyLimit "%1 %n{doesn't} &%daily limit %2 for %3")
(format EnglishLanguage dataID "%2 is %n a &%dataI d of %1")
(format EnglishLanguage dataStreamSlack "%2 is %n a &%data stream slack of %1")
(format EnglishLanguage dateDissolved "%2 is %n a &%date dissolved of %1")
(format EnglishLanguage dateEstablished "%2 is %n a &%date established of %1")
(format EnglishLanguage dateOfStatement "%2 is %n a &%date of statement of %1")
(format EnglishLanguage dateOpenedForSignature "%2 is %n a &%date opened for signature of %1")
(format EnglishLanguage DatumFn "the &%datum of %1")
(format EnglishLanguage daylightHoursInterval "%1 %n{doesn't} &%daylight hours interval %2 for %3")
(format EnglishLanguage daylightHoursTotal "%1 %n{doesn't} &%daylight hours total %2 for %3")
(format EnglishLanguage dayPhone "%2 is %n a &%day phone of %1")
(format EnglishLanguage deathdate "%2 is %n a &%deathdate of %1")
(format EnglishLanguage deathplace "%2 is %n a &%deathplace of %1")
(format EnglishLanguage DeathsPerThousandFn "the &%deaths per thousand of %1 and %2")
(format EnglishLanguage DeathsPerThousandLiveBirthsFn "the &%deaths per thousand live births of %1 and %2")
(format EnglishLanguage deceptiveIdentifier "%2 is %n a &%deceptive identifier of %1")
(format EnglishLanguage defaultNetwork "%2 is %n a &%default network of %1")
(format EnglishLanguage dependencyDelay "%2 is %n a &%dependency delay of %1")
(format EnglishLanguage dependencyType "%2 is %n a &%dependency type of %1")
(format EnglishLanguage dependentAreaOfType "%1 %n{doesn't} &%dependent area of type %2 for %3")
(format EnglishLanguage deprivesNorm "%1 %n{doesn't} &%deprives norm %2 for %3")
(format EnglishLanguage DescendantsFn "the &%descendants of %1")
(format EnglishLanguage detainedAtTimeInPlace "%1 %n{doesn't} &%detained at time in place %2 for %3")
(format EnglishLanguage detainee "%2 is %n a &%detainee of %1")
(format EnglishLanguage deviceState "%2 is %n a &%device state of %1")
(format EnglishLanguage DiameterFn "the &%diameter of %1")
(format EnglishLanguage diplomaticOrganizationType "%1 %n{doesn't} &%diplomatic organization type %2 for %3")
(format EnglishLanguage diplomaticRelations "%2 is %n a &%diplomatic relations of %1")
(format EnglishLanguage diplomaticRepresentationType "%1 %n{doesn't} &%diplomatic representation type %2 for %3")
(format EnglishLanguage diplomaticRepresentativeInRole "%1 %n{doesn't} &%diplomatic representative in role %2 for %3 with %4")
(format EnglishLanguage DirectionalSubregionFn "the &%directional subregion of %1 and %2")
(format EnglishLanguage directoryOf "%2 is %n a &%directory of of %1")
(format EnglishLanguage disapproves "%2 is %n a &%disapproves of %1")
(format EnglishLanguage diseaseIncubation "%1 %n{doesn't} &%disease incubation %2 for %3")
(format EnglishLanguage diseaseMortality "%2 is %n a &%disease mortality of %1")
(format EnglishLanguage diseaseSymptom "%2 is %n a &%disease symptom of %1")
(format EnglishLanguage diseaseTreatment "%1 %n{doesn't} &%disease treatment %2 for %3")
(format EnglishLanguage disputedPossession "%1 %n{doesn't} &%disputed possession %2 for %3")
(format EnglishLanguage DocumentFn "the &%document of %1")
(format EnglishLanguage domesticPartner "%2 is %n a &%domestic partner of %1")
(format EnglishLanguage doubts "%2 is %n a &%doubts of %1")
(format EnglishLanguage downPayment "%2 is %n a &%down payment of %1")
(format EnglishLanguage drugShipmentDestination "%1 %n{doesn't} &%drug shipment destination %2 for %3")
(format EnglishLanguage drySeasonInArea "%2 is %n a &%dry season in area of %1")
(format EnglishLanguage economicAidDonated "%2 is %n an &%economic aid donated of %1")
(format EnglishLanguage economicAidDonatedInPeriod "%1 %n{doesn't} &%economic aid donated in period %2 for %3")
(format EnglishLanguage economicAidReceivedNet "%2 is %n an &%economic aid received net of %1")
(format EnglishLanguage economicAidReceivedNetInPeriod "%1 %n{doesn't} &%economic aid received net in period %2 for %3")
(format EnglishLanguage economyType "%2 is %n an &%economy type of %1")
(format EnglishLanguage effectiveDose "%2 is %n an &%effective dose of %1")
(format EnglishLanguage effectiveRange "%2 is %n an &%effective range of %1")
(format EnglishLanguage electionDatePlannedForPosition "%1 %n{doesn't} &%election date planned for position %2 for %3")
(format EnglishLanguage ElectionFn "the &%election of %1")
(format EnglishLanguage electionForOrganization "%2 is %n an &%election for organization of %1")
(format EnglishLanguage electionForPosition "%2 is %n an &%election for position of %1")
(format EnglishLanguage electionWinner "%1 %n{doesn't} &%election winner %2 for %3")
(format EnglishLanguage electricityConsumptionInPeriod "%1 %n{doesn't} &%electricity consumption in period %2 for %3")
(format EnglishLanguage electricityExportInPeriod "%1 %n{doesn't} &%electricity export in period %2 for %3")
(format EnglishLanguage electricityFractionFromSource "%1 %n{doesn't} &%electricity fraction from source %2 for %3")
(format EnglishLanguage electricityFractionFromSourceInPeriod "%1 %n{doesn't} &%electricity fraction from source in period %2 for %3 with %4")
(format EnglishLanguage electricityImportInPeriod "%1 %n{doesn't} &%electricity import in period %2 for %3")
(format EnglishLanguage electricityProductionInPeriod "%1 %n{doesn't} &%electricity production in period %2 for %3")
(format EnglishLanguage electronNumber "%2 is %n an &%electron number of %1")
(format EnglishLanguage elevation "%2 is %n an &%elevation of %1")
(format EnglishLanguage ElevationHighPointFn "the &%elevation high point of %1")
(format EnglishLanguage ElevationLowPointFn "the &%elevation low point of %1")
(format EnglishLanguage emailAddress "%2 is %n an &%email address of %1")
(format EnglishLanguage employeeContribution "%1 %n{doesn't} &%employee contribution %2 for %3")
(format EnglishLanguage environmentalProblemTypeInArea "%2 is %n an &%environmental problem type in area of %1")
(format EnglishLanguage equipmentCount "%1 %n{doesn't} &%equipment count %2 for %3")
(format EnglishLanguage equipmentType "%2 is %n an &%equipment type of %1")
(format EnglishLanguage eveningPhone "%2 is %n an &%evening phone of %1")
(format EnglishLanguage ExclusiveFishingZoneFn "the &%exclusive fishing zone of %1")
(format EnglishLanguage executiveBranch "%2 is %n an &%executive branch of %1")
(format EnglishLanguage ExecutiveBranchFn "the &%executive branch of %1")
(format EnglishLanguage experimentalControl "%2 is %n an &%experimental control of %1")
(format EnglishLanguage exportCommodityType "%2 is %n an &%export commodity type of %1")
(format EnglishLanguage exportCommodityTypeByRank "%1 %n{doesn't} &%export commodity type by rank %2 for %3")
(format EnglishLanguage exportPartner "%2 is %n an &%export partner of %1")
(format EnglishLanguage exportPartnerByFraction "%1 %n{doesn't} &%export partner by fraction %2 for %3")
(format EnglishLanguage exportPartnerByFractionInPeriod "%1 %n{doesn't} &%export partner by fraction in period %2 for %3 with %4")
(format EnglishLanguage exportPartnerByRank "%1 %n{doesn't} &%export partner by rank %2 for %3")
(format EnglishLanguage exportPartnerByRankInPeriod "%1 %n{doesn't} &%export partner by rank in period %2 for %3 with %4")
(format EnglishLanguage exportPartnerInPeriod "%1 %n{doesn't} &%export partner in period %2 for %3")
(format EnglishLanguage exportTotalInPeriod "%1 %n{doesn't} &%export total in period %2 for %3")
(format EnglishLanguage ExtendedFishingZoneFn "the &%extended fishing zone of %1")
(format EnglishLanguage externalDebt "%2 is %n an &%external debt of %1")
(format EnglishLanguage externalDebtInPeriod "%1 %n{doesn't} &%external debt in period %2 for %3")
(format EnglishLanguage faceValue "%2 is %n a &%face value of %1")
(format EnglishLanguage familyName "%1 is %n a &%family name of %2")
(format EnglishLanguage FemaleLifeExpectancyAtBirthFn "the &%female life expectancy at birth of %1 and %2")
(format EnglishLanguage financialAccount "%2 is %n a &%financial account of %1")
(format EnglishLanguage financialResponseTo "%2 is %n a &%financial response to of %1")
(format EnglishLanguage FirstFn "the &%first of %1")
(format EnglishLanguage FiscalYearFn "the &%fiscal year of %1")
(format EnglishLanguage fiscalYearPeriod "%2 is %n a &%fiscal year period of %1")
(format EnglishLanguage FiscalYearStartingFn "the &%fiscal year starting of %1 and %2")
(format EnglishLanguage fitForMilitaryService "%2 is %n a &%fit for military service of %1")
(format EnglishLanguage FitForMilitaryServiceMaleFn "the &%fit for military service male of %1")
(format EnglishLanguage fixedInterestRate "%2 is %n a &%fixed interest rate of %1")
(format EnglishLanguage flagDescription "%2 is %n a &%flag description of %1")
(format EnglishLanguage flagImage "%2 is %n a &%flag image of %1")
(format EnglishLanguage flagState "%2 is %n a &%flag state of %1")
(format EnglishLanguage fleetDeadWeightTonnage "%2 is %n a &%fleet dead weight tonnage of %1")
(format EnglishLanguage fleetGrossRegisteredTonnage "%2 is %n a &%fleet gross registered tonnage of %1")
(format EnglishLanguage floorLoan "%2 is %n a &%floor loan of %1")
(format EnglishLanguage flowCurrent "%2 is %n a &%flow current of %1")
(format EnglishLanguage FlowFn "the &%flow of %1")
(format EnglishLanguage FlowRegionFn "the &%flow region of %1")
(format EnglishLanguage flows "%2 is %n a &%flows of %1")
(format EnglishLanguage fOCShipsByOrigin "%1 %n{doesn't} &%fOC ships by origin %2 for %3")
(format EnglishLanguage friend "%2 is %n a &%friend of %1")
(format EnglishLanguage geneticSubstrateOfVirus "%2 is %n a &%genetic substrate of virus of %1")
(format EnglishLanguage GeographicCenterFn "the &%geographic center of %1")
(format EnglishLanguage geographicSubregion "%1 is %n a &%geographic subregion of %2")
(format EnglishLanguage geometricDistance "%1 %n{doesn't} &%geometric distance %2 for %3")
(format EnglishLanguage geometricPart "%2 is %n a &%geometric part of %1")
(format EnglishLanguage givenName "%1 is %n a &%given name of %2")
(format EnglishLanguage governmentType "%2 is %n a &%government type of %1")
(format EnglishLanguage grammaticalRelation "%2 is %n a &%grammatical relation of %1")
(format EnglishLanguage grandparent "%2 is %n a &%grandparent of %1")
(format EnglishLanguage granularity "%2 is %n a &%granularity of %1")
(format EnglishLanguage groundSubsurfaceType "%2 is %n a &%ground subsurface type of %1")
(format EnglishLanguage groundSurfaceType "%2 is %n a &%ground surface type of %1")
(format EnglishLanguage hasDependency "%2 is %n a &%has dependency of %1")
(format EnglishLanguage hasExpertise "%2 is %n a &%has expertise of %1")
(format EnglishLanguage hasMolecularStructuralAttribute "%2 is %n a &%has molecular structural attribute of %1")
(format EnglishLanguage hasOccupation "%2 is %n a &%has occupation of %1")
(format EnglishLanguage headingWRTCompassNorth "%2 is %n a &%headingWRT compass north of %1")
(format EnglishLanguage headingWRTMagneticNorth "%2 is %n a &%headingWRT magnetic north of %1")
(format EnglishLanguage headingWRTTrueNorth "%2 is %n a &%headingWRT true north of %1")
(format EnglishLanguage headOfGovernment "%1 %n{doesn't} &%head of government %2 for %3")
(format EnglishLanguage highAltitudeWindSpeed "%2 is %n a &%high altitude wind speed of %1")
(format EnglishLanguage highAltitudeWindVelocity "%2 is %n a &%high altitude wind velocity of %1")
(format EnglishLanguage highestDecileShareOfHouseholdIncome "%2 is %n a &%highest decile share of household income of %1")
(format EnglishLanguage highestDecileShareOfHouseholdIncomeInPeriod "%1 %n{doesn't} &%highest decile share of household income in period %2 for %3")
(format EnglishLanguage highestTemperatureForPeriod "%1 %n{doesn't} &%highest temperature for period %2 for %3")
(format EnglishLanguage highTide "%1 %n{doesn't} &%high tide %2 for %3")
(format EnglishLanguage holidayTimeInArea "%2 is %n a &%holiday time in area of %1")
(format EnglishLanguage homeAddress "%2 is %n a &%home address of %1")
(format EnglishLanguage hostileForces "%2 is %n a &%hostile forces of %1")
(format EnglishLanguage hostJitter "%2 is %n a &%host jitter of %1")
(format EnglishLanguage hostOf "%2 is %n a &%host of of %1")
(format EnglishLanguage hotSeasonInArea "%2 is %n a &%hot season in area of %1")
(format EnglishLanguage humanCapacity "%2 is %n a &%human capacity of %1")
(format EnglishLanguage identicalListItems "%2 is %n an &%identical list items of %1")
(format EnglishLanguage ideologicalAffiliationOfOrganization "%2 is %n an &%ideological affiliation of organization of %1")
(format EnglishLanguage illicitDrugConsumer "%2 is %n an &%illicit drug consumer of %1")
(format EnglishLanguage illicitDrugProducer "%2 is %n an &%illicit drug producer of %1")
(format EnglishLanguage illicitDrugShipmentDestination "%1 %n{doesn't} &%illicit drug shipment destination %2 for %3")
(format EnglishLanguage illicitDrugTransshipmentPoint "%1 %n{doesn't} &%illicit drug transshipment point %2 for %3")
(format EnglishLanguage imageResolution "%2 is %n an &%image resolution of %1")
(format EnglishLanguage ImmediateFamilyFn "the &%immediate family of %1")
(format EnglishLanguage importCommodityType "%2 is %n an &%import commodity type of %1")
(format EnglishLanguage importCommodityTypeByRank "%1 %n{doesn't} &%import commodity type by rank %2 for %3")
(format EnglishLanguage importPartner "%2 is %n an &%import partner of %1")
(format EnglishLanguage importPartnerByFraction "%1 %n{doesn't} &%import partner by fraction %2 for %3")
(format EnglishLanguage importPartnerByFractionInPeriod "%1 %n{doesn't} &%import partner by fraction in period %2 for %3 with %4")
(format EnglishLanguage importPartnerByRank "%1 %n{doesn't} &%import partner by rank %2 for %3")
(format EnglishLanguage importPartnerByRankInPeriod "%1 %n{doesn't} &%import partner by rank in period %2 for %3 with %4")
(format EnglishLanguage importPartnerInPeriod "%1 %n{doesn't} &%import partner in period %2 for %3")
(format EnglishLanguage importTotalInPeriod "%1 %n{doesn't} &%import total in period %2 for %3")
(format EnglishLanguage income "%1 %n{doesn't} &%income %2 for %3")
(format EnglishLanguage incomeDistributionByGiniIndex "%2 is %n an &%income distribution by gini index of %1")
(format EnglishLanguage incomeDistributionByGiniIndexInPeriod "%1 %n{doesn't} &%income distribution by gini index in period %2 for %3")
(format EnglishLanguage incomeEarned "%1 %n{doesn't} &%income earned %2 for %3")
(format EnglishLanguage independenceDate "%2 is %n an &%independence date of %1")
(format EnglishLanguage industrialProductionGrowthRate "%2 is %n an &%industrial production growth rate of %1")
(format EnglishLanguage industrialProductionGrowthRateInPeriod "%1 %n{doesn't} &%industrial production growth rate in period %2 for %3")
(format EnglishLanguage industryOfArea "%2 is %n an &%industry of area of %1")
(format EnglishLanguage industryProductType "%2 is %n an &%industry product type of %1")
(format EnglishLanguage industryRankByOutput "%1 %n{doesn't} &%industry rank by output %2 for %3")
(format EnglishLanguage industryServiceType "%2 is %n an &%industry service type of %1")
(format EnglishLanguage inflationRate "%2 is %n an &%inflation rate of %1")
(format EnglishLanguage inflationRateOfConsumerPrices "%2 is %n an &%inflation rate of consumer prices of %1")
(format EnglishLanguage inflationRateOfConsumerPricesInPeriod "%1 %n{doesn't} &%inflation rate of consumer prices in period %2 for %3")
(format EnglishLanguage InitialProfileFn "the &%initial profile of %1")
(format EnglishLanguage InnerBoundaryFn "the &%inner boundary of %1")
(format EnglishLanguage insured "%2 is %n an &%insured of %1")
(format EnglishLanguage intelligenceQuotient "%2 is %n an &%intelligence quotient of %1")
(format EnglishLanguage interestEarned "%1 %n{doesn't} &%interest earned %2 for %3")
(format EnglishLanguage interestRatePerPeriod "%1 %n{doesn't} &%interest rate per period %2 for %3")
(format EnglishLanguage internationalDispute "%2 is %n an &%international dispute of %1")
(format EnglishLanguage internetCountryCode "%2 is %n an &%internet country code of %1")
(format EnglishLanguage inTheMoney "%2 is %n an &%in the money of %1")
(format EnglishLanguage invadingVirus "%2 is %n an &%invading virus of %1")
(format EnglishLanguage inventory "%2 is %n an &%inventory of %1")
(format EnglishLanguage involvedInEvent "%2 is %n an &%involved in event of %1")
(format EnglishLanguage ipAddressOf "%2 is %n an &%ip address of of %1")
(format EnglishLanguage irrigatedLandArea "%2 is %n an &%irrigated land area of %1")
(format EnglishLanguage issuedBy "%2 is %n an &%issued by of %1")
(format EnglishLanguage judicialBranch "%2 is %n a &%judicial branch of %1")
(format EnglishLanguage JudiciaryFn "the &%judiciary of %1")
(format EnglishLanguage laborForceFractionByOccupation "%1 %n{doesn't} &%labor force fraction by occupation %2 for %3")
(format EnglishLanguage laborForceFractionByOccupationInPeriod "%1 %n{doesn't} &%labor force fraction by occupation in period %2 for %3 with %4")
(format EnglishLanguage laborForceTotal "%2 is %n a &%labor force total of %1")
(format EnglishLanguage laborForceTotalInPeriod "%1 %n{doesn't} &%labor force total in period %2 for %3")
(format EnglishLanguage ladenDraft "%2 is %n a &%laden draft of %1")
(format EnglishLanguage landAreaOnly "%2 is %n a &%land area only of %1")
(format EnglishLanguage landlord "%2 is %n a &%landlord of %1")
(format EnglishLanguage LastFn "the &%last of %1")
(format EnglishLanguage lastStatement "%2 is %n a &%last statement of %1")
(format EnglishLanguage lastStatementBalance "%2 is %n a &%last statement balance of %1")
(format EnglishLanguage leader "%2 is %n a &%leader of %1")
(format EnglishLanguage leaderPosition "%2 is %n a &%leader position of %1")
(format EnglishLanguage legalGuardian "%2 is %n a &%legal guardian of %1")
(format EnglishLanguage legalSystemType "%2 is %n a &%legal system type of %1")
(format EnglishLanguage legislativeBranch "%2 is %n a &%legislative branch of %1")
(format EnglishLanguage LegislatureFn "the &%legislature of %1")
(format EnglishLanguage lengthOfBroadGaugeRailway "%2 is %n a &%length of broad gauge railway of %1")
(format EnglishLanguage lengthOfCrudeOilPipeline "%2 is %n a &%length of crude oil pipeline of %1")
(format EnglishLanguage lengthOfDualGaugeRailway "%2 is %n a &%length of dual gauge railway of %1")
(format EnglishLanguage lengthOfElectrifiedRailway "%2 is %n a &%length of electrified railway of %1")
(format EnglishLanguage lengthOfExpresswaySystem "%2 is %n a &%length of expressway system of %1")
(format EnglishLanguage lengthOfMultipleTrackRailway "%2 is %n a &%length of multiple track railway of %1")
(format EnglishLanguage lengthOfNarrowGaugeRailway "%2 is %n a &%length of narrow gauge railway of %1")
(format EnglishLanguage lengthOfNaturalGasPipeline "%2 is %n a &%length of natural gas pipeline of %1")
(format EnglishLanguage lengthOfPavedHighway "%2 is %n a &%length of paved highway of %1")
(format EnglishLanguage lengthOfPetroleumProductPipeline "%2 is %n a &%length of petroleum product pipeline of %1")
(format EnglishLanguage lengthOfStandardGaugeRailway "%2 is %n a &%length of standard gauge railway of %1")
(format EnglishLanguage lengthOfUnclassifiedGaugeRailway "%2 is %n a &%length of unclassified gauge railway of %1")
(format EnglishLanguage lengthOfUnpavedHighway "%2 is %n a &%length of unpaved highway of %1")
(format EnglishLanguage lethalDose "%2 is %n a &%lethal dose of %1")
(format EnglishLanguage LifeExpectancyAtBirthFn "the &%life expectancy at birth of %1 and %2")
(format EnglishLanguage lifeStageAchieved "%2 is %n a &%life stage achieved of %1")
(format EnglishLanguage limitPrice "%2 is %n a &%limit price of %1")
(format EnglishLanguage lineMeasure "%2 is %n a &%line measure of %1")
(format EnglishLanguage loanFeeAmount "%2 is %n a &%loan fee amount of %1")
(format EnglishLanguage loanForPurchase "%2 is %n a &%loan for purchase of %1")
(format EnglishLanguage loanInterest "%2 is %n a &%loan interest of %1")
(format EnglishLanguage localLongName "%2 is %n a &%local long name of %1")
(format EnglishLanguage localShortName "%2 is %n a &%local short name of %1")
(format EnglishLanguage locatedAtTime "%1 %n{doesn't} &%located at time %2 for %3")
(format EnglishLanguage lowAltitudeWindSpeed "%2 is %n a &%low altitude wind speed of %1")
(format EnglishLanguage lowAltitudeWindVelocity "%2 is %n a &%low altitude wind velocity of %1")
(format EnglishLanguage lowestDecileShareOfHouseholdIncome "%2 is %n a &%lowest decile share of household income of %1")
(format EnglishLanguage lowestDecileShareOfHouseholdIncomeInPeriod "%1 %n{doesn't} &%lowest decile share of household income in period %2 for %3")
(format EnglishLanguage lowestTemperatureForPeriod "%1 %n{doesn't} &%lowest temperature for period %2 for %3")
(format EnglishLanguage lowTide "%1 %n{doesn't} &%low tide %2 for %3")
(format EnglishLanguage magneticVariation "%1 %n{doesn't} &%magnetic variation %2 for %3")
(format EnglishLanguage MaleLifeExpectancyAtBirthFn "the &%male life expectancy at birth of %1 and %2")
(format EnglishLanguage MaleToFemaleRatioFn "the &%male to female ratio of %1")
(format EnglishLanguage mapOfArea "%2 is %n a &%map of area of %1")
(format EnglishLanguage marginBalanceAmount "%1 %n{doesn't} &%margin balance amount %2 for %3")
(format EnglishLanguage marineInventory "%2 is %n a &%marine inventory of %1")
(format EnglishLanguage MaritimeClaimsTerritorialSeaFn "the &%maritime claims territorial sea of %1")
(format EnglishLanguage maritimeClaimType "%2 is %n a &%maritime claim type of %1")
(format EnglishLanguage MaritimeContiguousZoneFn "the &%maritime contiguous zone of %1")
(format EnglishLanguage MaritimeExclusiveEconomicZoneFn "the &%maritime exclusive economic zone of %1")
(format EnglishLanguage MaritimeShelfAreaFn "the &%maritime shelf area of %1")
(format EnglishLanguage marketValueAmount "%1 %n{doesn't} &%market value amount %2 for %3")
(format EnglishLanguage maturityDate "%2 is %n a &%maturity date of %1")
(format EnglishLanguage maximumPayloadCapacity "%2 is %n a &%maximum payload capacity of %1")
(format EnglishLanguage maximumPayloadHeightWidth "%1 %n{doesn't} &%maximum payload height width %2 for %3")
(format EnglishLanguage maximumReplications "%2 is %n a &%maximum replications of %1")
(format EnglishLanguage meanSeaLevel "%2 is %n a &%mean sea level of %1")
(format EnglishLanguage measurementReading "%2 is %n a &%measurement reading of %1")
(format EnglishLanguage medicalPatient "%2 is %n a &%medical patient of %1")
(format EnglishLanguage mediumAltitudeWindSpeed "%2 is %n a &%medium altitude wind speed of %1")
(format EnglishLanguage mediumAltitudeWindVelocity "%2 is %n a &%medium altitude wind velocity of %1")
(format EnglishLanguage meltingPoint "%2 is %n a &%melting point of %1")
(format EnglishLanguage memberCount "%2 is %n a &%member count of %1")
(format EnglishLanguage MemberFn "the &%member of %1")
(format EnglishLanguage MemberRoleFn "the &%member role of %1 and %2")
(format EnglishLanguage memberType "%2 is %n a &%member type of %1")
(format EnglishLanguage memberTypeCount "%1 %n{doesn't} &%member type count %2 for %3")
(format EnglishLanguage MerchantMarineFn "the &%merchant marine of %1")
(format EnglishLanguage middleName "%2 is %n a &%middle name of %1")
(format EnglishLanguage MigrantsPerThousandFn "the &%migrants per thousand of %1 and %2")
(format EnglishLanguage militaryAge "%2 is %n a &%military age of %1")
(format EnglishLanguage militaryExpendituresFractionOfGDP "%2 is %n a &%military expenditures fraction ofGD p of %1")
(format EnglishLanguage militaryExpendituresFractionOfGDPInPeriod "%1 %n{doesn't} &%military expenditures fraction ofGDP in period %2 for %3")
(format EnglishLanguage militaryExpendituresInUSDollars "%2 is %n a &%military expenditures inUS dollars of %1")
(format EnglishLanguage militaryExpendituresInUSDollarsInPeriod "%1 %n{doesn't} &%military expenditures inUS dollars in period %2 for %3")
(format EnglishLanguage militaryOfArea "%2 is %n a &%military of area of %1")
(format EnglishLanguage minimumBalance "%1 %n{doesn't} &%minimum balance %2 for %3")
(format EnglishLanguage minimumPayment "%1 %n{doesn't} &%minimum payment %2 for %3")
(format EnglishLanguage minimumReplications "%2 is %n a &%minimum replications of %1")
(format EnglishLanguage monetaryWage "%1 %n{doesn't} &%monetary wage %2 for %3 with %4")
(format EnglishLanguage monitorApplicationData "%2 is %n a &%monitor application data of %1")
(format EnglishLanguage monitorComponentData "%1 %n{doesn't} &%monitor component data %2 for %3")
(format EnglishLanguage multiplicativeFactor "%2 is %n a &%multiplicative factor of %1")
(format EnglishLanguage mutualAcquaintance "%2 is %n a &%mutual acquaintance of %1")
(format EnglishLanguage mutualStranger "%2 is %n a &%mutual stranger of %1")
(format EnglishLanguage nationalCelebration "%2 is %n a &%national celebration of %1")
(format EnglishLanguage nationalHoliday "%2 is %n a &%national holiday of %1")
(format EnglishLanguage naturalHazardTypeInArea "%2 is %n a &%natural hazard type in area of %1")
(format EnglishLanguage naturalResourceTypeInArea "%2 is %n a &%natural resource type in area of %1")
(format EnglishLanguage navigableForDraft "%2 is %n a &%navigable for draft of %1")
(format EnglishLanguage navigableForShippingTonnage "%2 is %n a &%navigable for shipping tonnage of %1")
(format EnglishLanguage neighbor "%2 is %n a &%neighbor of %1")
(format EnglishLanguage netAmount "%2 is %n a &%net amount of %1")
(format EnglishLanguage netWorth "%1 %n{doesn't} &%net worth %2 for %3")
(format EnglishLanguage numberOfCPUs "%2 is %n a &%number ofCP us of %1")
(format EnglishLanguage objectGeographicCoordinates "%1 %n{doesn't} &%object geographic coordinates %2 for %3")
(format EnglishLanguage observedAtTimeInPlace "%1 %n{doesn't} &%observed at time in place %2 for %3 with %4")
(format EnglishLanguage occupation "%2 is %n an &%occupation of %1")
(format EnglishLanguage OccupationFn "the &%occupation of %1")
(format EnglishLanguage older "%2 is %n an &%older of %1")
(format EnglishLanguage OneToOneFunction "the &%one to one function of %1")
(format EnglishLanguage OperatingFn "the &%operating of %1")
(format EnglishLanguage operator "%2 is %n an &%operator of %1")
(format EnglishLanguage oppositeDirection "%2 is %n an &%opposite direction of %1")
(format EnglishLanguage orbits "%2 is %n an &%orbits of %1")
(format EnglishLanguage orderFor "%1 %n{doesn't} &%order for %2 for %3")
(format EnglishLanguage organizationalObjective "%2 is %n an &%organizational objective of %1")
(format EnglishLanguage organizationProductType "%2 is %n an &%organization product type of %1")
(format EnglishLanguage organizationServiceType "%2 is %n an &%organization service type of %1")
(format EnglishLanguage originalBalance "%2 is %n an &%original balance of %1")
(format EnglishLanguage otherLandUseArea "%2 is %n an &%other land use area of %1")
(format EnglishLanguage OuterBoundaryFn "the &%outer boundary of %1")
(format EnglishLanguage outOfTheMoney "%2 is %n an &%out of the money of %1")
(format EnglishLanguage overcastDaysInPeriod "%2 is %n an &%overcast days in period of %1")
(format EnglishLanguage overdraft "%1 %n{doesn't} &%overdraft %2 for %3")
(format EnglishLanguage OverseasAreaFn "the &%overseas area of %1")
(format EnglishLanguage parallel "%2 is %n a &%parallel of %1")
(format EnglishLanguage parasite "%2 is %n a &%parasite of %1")
(format EnglishLanguage partyToAgreement "%2 is %n a &%party to agreement of %1")
(format EnglishLanguage passengerCapacityMaxNumber "%2 is %n a &%passenger capacity max number of %1")
(format EnglishLanguage pathInSystem "%2 is %n a &%path in system of %1")
(format EnglishLanguage patientMedical "%2 is %n a &%patient medical of %1")
(format EnglishLanguage paymentsPerPeriod "%1 %n{doesn't} &%payments per period %2 for %3")
(format EnglishLanguage perCapitaGDP "%2 is %n a &%per capitaGD p of %1")
(format EnglishLanguage perCapitaGDPInPeriod "%1 %n{doesn't} &%per capitaGDP in period %2 for %3")
(format EnglishLanguage PerFn "the &%per of %1 and %2")
(format EnglishLanguage performanceResult "%1 %n{doesn't} &%performance result %2 for %3")
(format EnglishLanguage PerimeterAreaFn "the &%perimeter area of %1")
(format EnglishLanguage periodicPayment "%1 %n{doesn't} &%periodic payment %2 for %3")
(format EnglishLanguage permanentCropLandArea "%2 is %n a &%permanent crop land area of %1")
(format EnglishLanguage personTransportCapability "%2 is %n a &%person transport capability of %1")
(format EnglishLanguage phoneNumber "%2 is %n a &%phone number of %1")
(format EnglishLanguage pin "%2 is %n a &%pin of %1")
(format EnglishLanguage playsRoleInEvent "%1 %n{doesn't} &%plays role in event %2 for %3")
(format EnglishLanguage playsRoleInEventOfType "%1 %n{doesn't} &%plays role in event of type %2 for %3 with %4 and %5")
(format EnglishLanguage pointOfIntersection "%1 %n{doesn't} &%point of intersection %2 for %3")
(format EnglishLanguage politicalPartyOfCountry "%2 is %n a &%political party of country of %1")
(format EnglishLanguage PopulationFn "the &%population of %1")
(format EnglishLanguage populationFractionBelowPovertyLine "%2 is %n a &%population fraction below poverty line of %1")
(format EnglishLanguage populationFractionBelowPovertyLineInPeriod "%1 %n{doesn't} &%population fraction below poverty line in period %2 for %3")
(format EnglishLanguage PopulationGrowthFn "the &%population growth of %1 and %2")
(format EnglishLanguage PortFacilityFn "the &%port facility of %1")
(format EnglishLanguage portNumber "%2 is %n a &%port number of %1")
(format EnglishLanguage potentialLoss "%1 %n{doesn't} &%potential loss %2 for %3")
(format EnglishLanguage potentialOfHydrogen "%2 is %n a &%potential of hydrogen of %1")
(format EnglishLanguage powerComponent "%2 is %n a &%power component of %1")
(format EnglishLanguage precipitationAmount "%2 is %n a &%precipitation amount of %1")
(format EnglishLanguage precipitationRate "%2 is %n a &%precipitation rate of %1")
(format EnglishLanguage precipitationState "%2 is %n a &%precipitation state of %1")
(format EnglishLanguage premise "%2 is %n a &%premise of %1")
(format EnglishLanguage premium "%2 is %n a &%premium of %1")
(format EnglishLanguage price "%1 %n{doesn't} &%price %2 for %3")
(format EnglishLanguage primaryGeopoliticalSubdivision "%2 is %n a &%primary geopolitical subdivision of %1")
(format EnglishLanguage primaryGeopoliticalSubdivisionType "%2 is %n a &%primary geopolitical subdivision type of %1")
(format EnglishLanguage primeInterestRate "%2 is %n a &%prime interest rate of %1")
(format EnglishLanguage principalAmount "%2 is %n a &%principal amount of %1")
(format EnglishLanguage priority "%2 is %n a &%priority of %1")
(format EnglishLanguage processAborted "%2 is %n a &%process aborted of %1")
(format EnglishLanguage processID "%2 is %n a &%processI d of %1")
(format EnglishLanguage programRunning "%2 is %n a &%program running of %1")
(format EnglishLanguage protonNumber "%2 is %n a &%proton number of %1")
(format EnglishLanguage purchasesPerPeriod "%1 %n{doesn't} &%purchases per period %2 for %3")
(format EnglishLanguage QuaternaryFunction "the &%quaternary function of %1, %2, %3 and %4")
(format EnglishLanguage QuaternaryPredicate "%1 %n{doesn't} &%quaternary predicate %2 for %3 with %4")
(format EnglishLanguage QuintaryPredicate "%1 %n{doesn't} &%quintary predicate %2 for %3 with %4 and %5")
(format EnglishLanguage RadiusFn "the &%radius of %1")
(format EnglishLanguage rainySeasonInArea "%2 is %n a &%rainy season in area of %1")
(format EnglishLanguage ReachingMilitaryAgeAnnuallyMaleFn "the &%reaching military age annually male of %1 and %2")
(format EnglishLanguage realGrowthRateOfGDP "%2 is %n a &%real growth rate ofGD p of %1")
(format EnglishLanguage realGrowthRateOfGDPInPeriod "%1 %n{doesn't} &%real growth rate ofGDP in period %2 for %3")
(format EnglishLanguage regionalIssue "%2 is %n a &%regional issue of %1")
(format EnglishLanguage RegionalLawFn "the &%regional law of %1")
(format EnglishLanguage registeredItem "%2 is %n a &%registered item of %1")
(format EnglishLanguage relatedEvent "%2 is %n a &%related event of %1")
(format EnglishLanguage relative "%2 is %n a &%relative of %1")
(format EnglishLanguage relativeBearing "%1 %n{doesn't} &%relative bearing %2 for %3")
(format EnglishLanguage relativeHumidity "%2 is %n a &%relative humidity of %1")
(format EnglishLanguage religiousAffiliationOfOrganization "%2 is %n a &%religious affiliation of organization of %1")
(format EnglishLanguage representativeAgentToAgent "%1 %n{doesn't} &%representative agent to agent %2 for %3")
(format EnglishLanguage ResidentFn "the &%resident of %1")
(format EnglishLanguage responseTime "%2 is %n a &%response time of %1")
(format EnglishLanguage resultType "%2 is %n a &%result type of %1")
(format EnglishLanguage riskTolerance "%2 is %n a &%risk tolerance of %1")
(format EnglishLanguage rMProgram-of "%2 is %n a &%rM program-of of %1")
(format EnglishLanguage roleAppointsRole "%1 %n{doesn't} &%role appoints role %2 for %3")
(format EnglishLanguage roleApprovesRole "%1 %n{doesn't} &%role approves role %2 for %3")
(format EnglishLanguage roleNominatesRole "%1 %n{doesn't} &%role nominates role %2 for %3")
(format EnglishLanguage routeBetween "%1 %n{doesn't} &%route between %2 for %3")
(format EnglishLanguage routeInSystem "%2 is %n a &%route in system of %1")
(format EnglishLanguage runsOn "%2 is %n a &%runs on of %1")
(format EnglishLanguage SeacoastFn "the &%seacoast of %1")
(format EnglishLanguage seaSurfaceTemperature "%2 is %n a &%sea surface temperature of %1")
(format EnglishLanguage seatsHeldInOrganization "%1 %n{doesn't} &%seats held in organization %2 for %3")
(format EnglishLanguage seatsInOrganizationCount "%2 is %n a &%seats in organization count of %1")
(format EnglishLanguage seatsWonInElection "%1 %n{doesn't} &%seats won in election %2 for %3")
(format EnglishLanguage secretesSubstance "%2 is %n a &%secretes substance of %1")
(format EnglishLanguage secretesToxin "%2 is %n a &%secretes toxin of %1")
(format EnglishLanguage sectorCompositionOfGDP "%1 %n{doesn't} &%sector composition ofGD p %2 for %3")
(format EnglishLanguage sectorCompositionOfGDPInPeriod "%1 %n{doesn't} &%sector composition ofGDP in period %2 for %3 with %4")
(format EnglishLanguage sectorValueOfGDP "%1 %n{doesn't} &%sector value ofGD p %2 for %3")
(format EnglishLanguage sectorValueOfGDPInPeriod "%1 %n{doesn't} &%sector value ofGDP in period %2 for %3 with %4")
(format EnglishLanguage securedBy "%2 is %n a &%secured by of %1")
(format EnglishLanguage SequenceFunction "the &%sequence function of %1")
(format EnglishLanguage serviceFee "%1 %n{doesn't} &%service fee %2 for %3")
(format EnglishLanguage settlingTime "%2 is %n a &%settling time of %1")
(format EnglishLanguage shareHolder "%2 is %n a &%share holder of %1")
(format EnglishLanguage ShipBerthingFn "the &%ship berthing of %1")
(format EnglishLanguage ShipCrewFn "the &%ship crew of %1")
(format EnglishLanguage ShipRegisterFn "the &%ship register of %1")
(format EnglishLanguage ShorelineFn "the &%shoreline of %1 and %2")
(format EnglishLanguage ShortageFn "the &%shortage of %1")
(format EnglishLanguage shortBalanceAmount "%1 %n{doesn't} &%short balance amount %2 for %3")
(format EnglishLanguage ShutdownFn "the &%shutdown of %1")
(format EnglishLanguage shutdownOf "%2 is %n a &%shutdown of of %1")
(format EnglishLanguage signedBy "%2 is %n a &%signed by of %1")
(format EnglishLanguage simpleDeadline "%2 is %n a &%simple deadline of %1")
(format EnglishLanguage simpleInterest "%1 %n{doesn't} &%simple interest %2 for %3")
(format EnglishLanguage sliceOfFigure "%2 is %n a &%slice of figure of %1")
(format EnglishLanguage slidingWindowSize "%2 is %n a &%sliding window size of %1")
(format EnglishLanguage slopeGradient "%2 is %n a &%slope gradient of %1")
(format EnglishLanguage slopeGradientTowardsOrientation "%1 %n{doesn't} &%slope gradient towards orientation %2 for %3")
(format EnglishLanguage softwarePath "%2 is %n a &%software path of %1")
(format EnglishLanguage speaksLanguage "%2 is %n a &%speaks language of %1")
(format EnglishLanguage splitFor "%1 %n{doesn't} &%split for %2 for %3")
(format EnglishLanguage SquareUnitFn "the &%square unit of %1")
(format EnglishLanguage StartFn "the &%start of %1")
(format EnglishLanguage StartupFn "the &%startup of %1")
(format EnglishLanguage startupOf "%2 is %n a &%startup of of %1")
(format EnglishLanguage statementAccount "%2 is %n a &%statement account of %1")
(format EnglishLanguage statementInterest "%2 is %n a &%statement interest of %1")
(format EnglishLanguage statementPeriod "%2 is %n a &%statement period of %1")
(format EnglishLanguage stockHolder "%2 is %n a &%stock holder of %1")
(format EnglishLanguage stockSymbol "%2 is %n a &%stock symbol of %1")
(format EnglishLanguage StopFn "the &%stop of %1")
(format EnglishLanguage stranger "%2 is %n a &%stranger of %1")
(format EnglishLanguage StreetAddressFn "the &%street address of %1, %2, %3 and %4")
(format EnglishLanguage strikePrice "%2 is %n a &%strike price of %1")
(format EnglishLanguage subEchelon "%2 is %n a &%sub echelon of %1")
(format EnglishLanguage subordinateInOrganization "%1 %n{doesn't} &%subordinate in organization %2 for %3")
(format EnglishLanguage subordinatePosition "%1 %n{doesn't} &%subordinate position %2 for %3")
(format EnglishLanguage subSystem "%2 is %n a &%sub system of %1")
(format EnglishLanguage successorOrganization "%2 is %n a &%successor organization of %1")
(format EnglishLanguage suffrageAgeMaximum "%2 is %n a &%suffrage age maximum of %1")
(format EnglishLanguage suffrageAgeMinimum "%2 is %n a &%suffrage age minimum of %1")
(format EnglishLanguage SupremeCourtFn "the &%supreme court of %1")
(format EnglishLanguage surfaceWindDirection "%2 is %n a &%surface wind direction of %1")
(format EnglishLanguage surfaceWindSpeed "%2 is %n a &%surface wind speed of %1")
(format EnglishLanguage surfaceWindVelocity "%1 %n{doesn't} &%surface wind velocity %2 for %3")
(format EnglishLanguage systemMeasured "%2 is %n a &%system measured of %1")
(format EnglishLanguage systemPart "%2 is %n a &%system part of %1")
(format EnglishLanguage targetInAttack "%2 is %n a &%target in attack of %1")
(format EnglishLanguage task "%2 is %n a &%task of %1")
(format EnglishLanguage tenant "%2 is %n a &%tenant of %1")
(format EnglishLanguage termLength "%1 %n{doesn't} &%term length %2 for %3")
(format EnglishLanguage TernaryFunction "the &%ternary function of %1, %2 and %3")
(format EnglishLanguage TernaryPredicate "%1 %n{doesn't} &%ternary predicate %2 for %3")
(format EnglishLanguage terrainInArea "%2 is %n a &%terrain in area of %1")
(format EnglishLanguage TerritorialSeaFn "the &%territorial sea of %1")
(format EnglishLanguage thresholdOf "%2 is %n a &%threshold of of %1")
(format EnglishLanguage totalArea "%2 is %n a &%total area of %1")
(format EnglishLanguage totalBalance "%2 is %n a &%total balance of %1")
(format EnglishLanguage totalBiomass "%2 is %n a &%total biomass of %1")
(format EnglishLanguage totalCoastline "%2 is %n a &%total coastline of %1")
(format EnglishLanguage totalFacilityTypeInArea "%1 %n{doesn't} &%total facility type in area %2 for %3")
(format EnglishLanguage totalGDP "%2 is %n a &%totalGD p of %1")
(format EnglishLanguage totalGDPInPeriod "%1 %n{doesn't} &%totalGDP in period %2 for %3")
(format EnglishLanguage totalLandBoundary "%2 is %n a &%total land boundary of %1")
(format EnglishLanguage totalLengthOfHighwaySystem "%2 is %n a &%total length of highway system of %1")
(format EnglishLanguage totalLengthOfRailwaySystem "%2 is %n a &%total length of railway system of %1")
(format EnglishLanguage totalLengthOfWaterways "%2 is %n a &%total length of waterways of %1")
(format EnglishLanguage totalPipelineInArea "%2 is %n a &%total pipeline in area of %1")
(format EnglishLanguage totalPrecipitationForPeriod "%1 %n{doesn't} &%total precipitation for period %2 for %3")
(format EnglishLanguage trackWidth "%2 is %n a &%track width of %1")
(format EnglishLanguage trafficableForTrafficType "%2 is %n a &%trafficable for traffic type of %1")
(format EnglishLanguage transactionAmount "%2 is %n a &%transaction amount of %1")
(format EnglishLanguage TransitFn "the &%transit of %1")
(format EnglishLanguage transitwayCapacityCount "%1 %n{doesn't} &%transitway capacity count %2 for %3")
(format EnglishLanguage transitwayCapacityRate "%1 %n{doesn't} &%transitway capacity rate %2 for %3")
(format EnglishLanguage TransportationFn "the &%transportation of %1")
(format EnglishLanguage TripFn "the &%trip of %1")
(format EnglishLanguage UnaryFunction "the &%unary function of %1")
(format EnglishLanguage underlier "%2 is %n an &%underlier of %1")
(format EnglishLanguage unemploymentRateOfArea "%1 %n{doesn't} &%unemployment rate of area %2 for %3")
(format EnglishLanguage unemploymentRateOfAreaInPeriod "%1 %n{doesn't} &%unemployment rate of area in period %2 for %3")
(format EnglishLanguage unitMeasuringPerformance "%2 is %n an &%unit measuring performance of %1")
(format EnglishLanguage unratifiedSignatoryToAgreement "%2 is %n an &%unratified signatory to agreement of %1")
(format EnglishLanguage vegetationTypePattern "%1 %n{doesn't} &%vegetation type pattern %2 for %3")
(format EnglishLanguage vesselDeadWeightTonnage "%2 is %n a &%vessel dead weight tonnage of %1")
(format EnglishLanguage vesselDisplacement "%2 is %n a &%vessel displacement of %1")
(format EnglishLanguage vesselGrossRegisteredTonnage "%2 is %n a &%vessel gross registered tonnage of %1")
(format EnglishLanguage ViralPartFn "the &%viral part of %1 and %2")
(format EnglishLanguage voteFractionReceived "%1 %n{doesn't} &%vote fraction received %2 for %3 with %4")
(format EnglishLanguage VotingFn "the &%voting of %1")
(format EnglishLanguage warmSeasonInArea "%2 is %n a &%warm season in area of %1")
(format EnglishLanguage waterAreaOnly "%2 is %n a &%water area only of %1")
(format EnglishLanguage waterDepth "%2 is %n a &%water depth of %1")
(format EnglishLanguage weaponCarryingCapability "%1 %n{doesn't} &%weapon carrying capability %2 for %3")
(format EnglishLanguage weight "%2 is %n a &%weight of %1")
(format EnglishLanguage windRelativePosition "%2 is %n a &%wind relative position of %1")
(format EnglishLanguage workAddress "%2 is %n a &%work address of %1")
(format EnglishLanguage yearOfFounding "%2 is %n a &%year of founding of %1")
(format EnglishLanguage yield "%2 is %n a &%yield of %1")
(format EnglishLanguage abbreviatedDisplayTitle "%1 is the &%short &%title of %2 in %3")
(format EnglishLanguage ABPFn "the &%average &%price of %1")
(format EnglishLanguage abstractCounterpart "the &%abstract &%counterpart of %2 is %1")
(format EnglishLanguage abstractionLevel "the &%abstraction &%level of %1 is %2")
(format EnglishLanguage accessibleFromMenu "%1 is &%accessible from %2")
(format EnglishLanguage accessibleFromMenuItem "%1 is &%accessible from %2")
(format EnglishLanguage accommodationProvider "%2 &%provides %1")
(format EnglishLanguage accountAt "%1 is &%held by %2")
(format EnglishLanguage accountAtSite "%1 is an &%account at %2")
(format EnglishLanguage accountHolder "%2 holds &%account %1")
(format EnglishLanguage AccountOfServiceFn "the &%account of %1")
(format EnglishLanguage acronym "%1 is an &%acronym for %2")
(format EnglishLanguage actionTendency "%1 &%tends to &%cause %2")
(format EnglishLanguage activePolicy "%1 is &%active &%during %2")
(format EnglishLanguage activityCapability "%1 &%can &%hold kinds of %2")
(format EnglishLanguage adjacentOrientation "%1 is &%adjacent to %2")
(format EnglishLanguage AfternoonFn "the &%afternoon of %1")
(format EnglishLanguage afterTaxIncome "the &%after &%tax &%income derived by %1 from %3 is %2")
(format EnglishLanguage agentName "the &%name of %2 is %1")
(format EnglishLanguage AgentOfOrganismFn "the &%biological &%agent of %1")
(format EnglishLanguage agreementClause "%4 has the responsibility to make %1 %2 in %3")
(format EnglishLanguage agreementExpirationDate "%1 has &%expiration %2")
(format EnglishLanguage agriculturalArtifactType "%1 &%produces %2")
(format EnglishLanguage agriculturalArtifactTypeByRank "the %3 &%most &%important &%artifact of %1 is %2")
(format EnglishLanguage AgricultureFn "the %process that produces %1")
(format EnglishLanguage albumArtist "%2 is a performer on %1")
(format EnglishLanguage AlbumCopiesFn "the &%set of copies on %2 of %1")
(format EnglishLanguage albumCoverImage "%2 is the &%image on %1")
(format EnglishLanguage albumLength "%1 is %2 &%long")
(format EnglishLanguage albumRelease "%1 was &%released on %2")
(format EnglishLanguage albumTrack "%1 is a &%track on %2")
(format EnglishLanguage albumType "%1 is a %2")
(format EnglishLanguage allRoomsPhysicalAmenity "&%all &%rooms in %1 have %2")
(format EnglishLanguage allRoomsPolicy "all rooms in %1 have policy %2")
(format EnglishLanguage allRoomsServiceAmenity "all rooms in %1 have service %2")
(format EnglishLanguage alternativeTitle "an &%alternate &%title of %2 in %3 is %1")
(format EnglishLanguage amountCharged "%2 is the &%amount &%charged in %1")
(format EnglishLanguage amountOfBid "%2 is the &%bid of %1")
(format EnglishLanguage ancestor "%2 is the &%ancestor of %1")
(format EnglishLanguage angleOfFigure "%1 is the &%angle found in %2")
(format EnglishLanguage anthem "%1 is the &%anthem of %2")
(format EnglishLanguage appraisedValue "%1 is &%appraised for %2")
(format EnglishLanguage approves "%1 &%approves %2")
(format EnglishLanguage approximateDiameter "the &%approximate &%diameter of %1 is %2")
(format EnglishLanguage askPrice "%3 &%asks for %2 for %1")
(format EnglishLanguage ASPFn "the &%average &%selling &%price of %1")
(format EnglishLanguage AssociateDegreeFn "the &%associates &%degree in %1 from %2")
(format EnglishLanguage attends "%2 &%attends %1")
(format EnglishLanguage attitudeForFormula "%2 has the attitude %1 to %3")
(format EnglishLanguage attitudeForObject "%2 has the attitude %1 to %3")
(format EnglishLanguage AuctionGMBFn "the &%total &%purchase &%price of %1")
(format EnglishLanguage aunt "%1 is the &%aunt of %2")
(format EnglishLanguage automatedNotification "%1 &%notifies %2")
(format EnglishLanguage availableBalance "the &%available &%balance of %1 on %2 is %3")
(format EnglishLanguage availableCash "the &%available &%cash of %1 on %2 is %3")
(format EnglishLanguage BachelorDegreeFn "the &%degree in %1 from %2")
(format EnglishLanguage baptismdate "%1 was &%baptised on %2")
(format EnglishLanguage baptismplace "%1 was &%baptised in %2")
(format EnglishLanguage basedIn "employee %1 in %2 is &%based in %3")
(format EnglishLanguage beforeTaxIncome "%1 pays %2 &%taxes for doing %3")
(format EnglishLanguage BeliefGroupMemberFn "a &%member of %1")
(format EnglishLanguage beliefGroupPercentInRegion "%2 percent of people in %3 &%believe in %1")
(format EnglishLanguage BidCountFn "number of &%bids in %1")
(format EnglishLanguage bidPrice "%3 &%bids %2 for %1")
(format EnglishLanguage birthday "%1's &%birthday is %2")
(format EnglishLanguage bondRating "the &%rating of %1 is %2")
(format EnglishLanguage borrower "%1 is the &%borrower of %2")
(format EnglishLanguage BoughtItemsFn "number of items &%purchased in %1")
(format EnglishLanguage brandIcon "%2 is the &%icon of %1")
(format EnglishLanguage brother "%1 is the &%brother of %2")
(format EnglishLanguage browserID "%1 is the &%ID of %2 when accessing %3")
(format EnglishLanguage burialplace "%1 is &%ubried at %2")
(format EnglishLanguage burnInPeriod "%1 takes %2 to &%burn in")
(format EnglishLanguage businessHours "the &%business hours of %2 are %1")
(format EnglishLanguage businessUnit "%1 is a &%business unit of %2")
(format EnglishLanguage buys "%1 &%buys %3 from %2")
(format EnglishLanguage canCarry "%1 can &%carry %2")
(format EnglishLanguage canonicalPlaceName "%3 is &%called %1 in %2")
(format EnglishLanguage capabilityDuring "%3 is &%capable of being a %2 in %1 during %4")
(format EnglishLanguage capacityByArrangement "%1 has &%capacity for %3 according to %2")
(format EnglishLanguage carries "%1 &%carries %2")
(format EnglishLanguage catalogItem "%1 is in %2")
(format EnglishLanguage categoryID "%1 is the &%ID for %2")
(format EnglishLanguage categoryOf "%2 &%includes the category %1")
(format EnglishLanguage checkInTime "%1 allows &%checkins after %2")
(format EnglishLanguage checkNumber "the &%number of %1 is %2")
(format EnglishLanguage checkOutTime "one must &%check &%out before %2 at %1")
(format EnglishLanguage classIntersection "the &%intersection of %1 and %2 is %3")
(format EnglishLanguage classmate "%1 and %2 are &%classmates")
(format EnglishLanguage ClassOnAcademicFieldFn "the &%class for learning %1")
(format EnglishLanguage ClassOnLanguageFn "the &%class for learning %1")
(format EnglishLanguage ClassOnSportFn "the &%class for learning %1")
(format EnglishLanguage ClickThroughRateFn "the &%rate of clicking through %2 in %1")
(format EnglishLanguage coaches "%1 &%coaches %2")
(format EnglishLanguage codeMapping "%2 in %1 &%denotes %3")
(format EnglishLanguage coding "%1 is &%encoded in %2")
(format EnglishLanguage colleague "%1 is a &%colleague of %2")
(format EnglishLanguage collectRate "%1 &%collects data every %2")
(format EnglishLanguage colocatedAgent "a %2 &%organization is located at %1")
(format EnglishLanguage color "%1 is the &%color %2")
(format EnglishLanguage comment "%3 &%states %2 about %1")
(format EnglishLanguage commentator "%1 &%comments about %2")
(format EnglishLanguage complexity "the &%complexity of %1 is %2")
(format EnglishLanguage composer "%1 &%composed %2")
(format EnglishLanguage computerRunning "%1 is &%running on %2")
(format EnglishLanguage confidenceInterval "%2 is the &%confidence in %1")
(format EnglishLanguage confirmedRegisteredUser "%1 is &%registered on %2")
(format EnglishLanguage conforms "%1 &%conforms to %2")
(format EnglishLanguage connectedInSocialNetwork "%1 is &%connected with %2")
(format EnglishLanguage constructionPeriod "%1 was &%built &%during %2")
(format EnglishLanguage contestEntry "%2 &%entered %1 in %3")
(format EnglishLanguage ContestFn "the %1 that &%occurred at %2")
(format EnglishLanguage contestObject "%3 &%entered %2 in %1")
(format EnglishLanguage contestOrganizer "%2 &%organizes %1")
(format EnglishLanguage contestParticipant "%2 &%participates in %1")
(format EnglishLanguage contestParticipantRepresentation "%2 &%represents %3 in %1")
(format EnglishLanguage contractedRentalPrice "%3 specifies the &%rental of %1 for %2")
(format EnglishLanguage contractor "%2 has a &%contract to &%build %1")
(format EnglishLanguage contraryAttributeWRT "%1 and %2 are &%mutually &%exclusive for %3")
(format EnglishLanguage controlGroup "%1 is the &%control &%group in %2")
(format EnglishLanguage conversionEvent "%2 is &%successful in %1")
(format EnglishLanguage ConversionRateFn "&%buy in %1")
(format EnglishLanguage corkageFee "%3 charges %1 in &%corkage for %2")
(format EnglishLanguage cousin "%1 and %2 are &%cousins")
(format EnglishLanguage CoveringFn "a &%covering for %1")
(format EnglishLanguage CPUUtilizationFn "the &%CPU &%utilization of %1")
(format EnglishLanguage creator "%1 &%created %2")
(format EnglishLanguage crossFunctionalTeamFocus "%2 &%works on %1")
(format EnglishLanguage customerValue "%1 is expected to &%spend %3 at %2")
(format EnglishLanguage dataProcessed "%2 is &%processed by %1")
(format EnglishLanguage dateUsed "%1 is &%used by %3 at %2")
(format EnglishLanguage daughter "%1 is the &%daughter of %2")
(format EnglishLanguage DeadFn "a &%dead %1")
(format EnglishLanguage defaultMaximumHeight "the &%maximum expected height of %1 is %2")
(format EnglishLanguage defaultMaximumLength "the &%maximum expected length of %1 is %2")
(format EnglishLanguage defaultMaximumMeasure "the &%maximum expected value of %1 is %2")
(format EnglishLanguage defaultMaximumSphereRadius "the &%maximum expected radium of %1 is %2")
(format EnglishLanguage defaultMaximumWidth "the &%maximum expected width of %1 is %2")
(format EnglishLanguage defaultMeasure "the expected &%value of %1 is %2")
(format EnglishLanguage defaultMinimumHeight "the &%minimum expected height of %1 is %2")
(format EnglishLanguage defaultMinimumLength "the &%minimum expected length of %1 is %2")
(format EnglishLanguage defaultMinimumMeasure "the &%minimum expected value of %1 is %2")
(format EnglishLanguage defaultMinimumSphereRadius "the &%minimum expected radius of %1 is %2")
(format EnglishLanguage defaultMinimumWidth "the &%minimum expected width of %1 is %2")
(format EnglishLanguage defendant "%2 is the &%defendant in %1")
(format EnglishLanguage DegreeFn "a &%degree from %2 in %1")
(format EnglishLanguage deliveryRegion "%2 is the &%delivery area of %1")
(format EnglishLanguage dependentGeopoliticalArea "%1 is a &%dependent of %2")
(format EnglishLanguage depth "the &%depth from %1 to %2 is %3")
(format EnglishLanguage describes "%1 &%describes %2")
(format EnglishLanguage designPattern "%1 has the &%pattern %2")
(format EnglishLanguage deviceTelecomNumber "%2 has &%number %1")
(format EnglishLanguage directed "%1 &%directed %2")
(format EnglishLanguage discography "%1 has &%discography %2")
(format EnglishLanguage discovers "%1 &%discovers %2")
(format EnglishLanguage diskTypeForDrive "%2 &%reads or &%writes %1")
(format EnglishLanguage dislikes "%1 &%dislikes %2")
(format EnglishLanguage displayedUpon "%1 is &%displayed on %2")
(format EnglishLanguage displayTitle "%1 is the &%title of %2 in %3")
(format EnglishLanguage distanceOnPath "the &%distance of %2 is %1")
(format EnglishLanguage DoctorateDegreeFn "a &%doctorate in %1 from %2")
(format EnglishLanguage dressCode "%2 requires customers to wear %1")
(format EnglishLanguage earthAltitude "%1 is %2 &%above the ground")
(format EnglishLanguage eCommerceSite "%2 &%facilitates %1")
(format EnglishLanguage emotionTendency "%1 &%tends to be %2")
(format EnglishLanguage engineDisplacement "the &%displacement of %1 is %2")
(format EnglishLanguage engineers "%1 &%engineers %2")
(format EnglishLanguage enjoys "%1 &%enjoys %2")
(format EnglishLanguage environmentAttributes "%2 is an &%attribute of %1")
(format EnglishLanguage ethnicityPercentInRegion "%2 &%percent of people in %3 are %1")
(format EnglishLanguage EveningFn "the &%evening of %1")
(format EnglishLanguage eventLocated "%1 is &%located at &%2")
(format EnglishLanguage eventPartlyLocated "%1 is &%partly &%located at %2")
(format EnglishLanguage exactCardinality "there can be %3 &%values to argument %2 of %1")
(format EnglishLanguage exclusiveEvent "%1 &%causes %2")
(format EnglishLanguage exhaustiveAttribute "%2 are all the &%attributes of %1")
(format EnglishLanguage expectedDegree "%1 expects to receive &%degree %2")
(format EnglishLanguage expectedYearOfGraduation "%1 expects to &%graduate in %2")
(format EnglishLanguage expects "%1 &%expects %2 will be true")
(format EnglishLanguage experimentalControlProcess "the &%control in experiment %1 is %2")
(format EnglishLanguage experimentalSubject "%2 is a &%subject in %1")
(format EnglishLanguage experimentalTreatmentCollection "%1 are the &%processes in %2")
(format EnglishLanguage experimentalVariableProcess "%2 is a &%process in %1")
(format EnglishLanguage experimenter "%2 is the &%experimenter in %1")
(format EnglishLanguage experimentID "the &%ID of %2 is %1")
(format EnglishLanguage experimentUpdate "%1 is an &%update of %2")
(format EnglishLanguage externalImage "%2 is a &%URL depicting %1")
(format EnglishLanguage facebookFriend "%1 is a &%facebook &%friend of %2")
(format EnglishLanguage facility "%1 &%provides %2")
(format EnglishLanguage FarmOfProductFn "a &%farm of %1 in %2")
(format EnglishLanguage fathersBrothersDaughter "%1 is the &%father's &%brother's &%daughter of %2")
(format EnglishLanguage fathersBrothersSon "%1 is the &%father's &%brother's &%son of %2")
(format EnglishLanguage fathersBrothersWife "%1 is the &%father's &%brother's &%wife of %2")
(format EnglishLanguage fathersSistersDaughter "%1 is the &%father's &%sister's &%daughter of %2")
(format EnglishLanguage fathersSistersHusband "%1 is the &%father's &%sister's &%husband of %2")
(format EnglishLanguage fathersSistersSon "%1 is the &%father's &%sister's &%son of %2")
(format EnglishLanguage faxNumber "the &%fax &%number of %2 is %1")
(format EnglishLanguage fears "%1 fears %2")
(format EnglishLanguage filename "the &%filename of %2 is %1")
(format EnglishLanguage finalExperimentReport "the &%final &%report for %2 is %1")
(format EnglishLanguage finalPrice "the &%final &%price of %1 is %2")
(format EnglishLanguage financialAsset "%1 has the &%asset %2")
(format EnglishLanguage firstTimeBuyers "%3 are &%first &%time &%buyers on %2 during %1")
(format EnglishLanguage firstTimeSellers "%3 are &%first &%time &%sellers on %2 during %1")
(format EnglishLanguage fleetSize "%1 has a &%fleet of %2 vehicles")
(format EnglishLanguage floorCode "%1 is the &%floor of %2")
(format EnglishLanguage follows "%1 &%follows %2")
(format EnglishLanguage FoodForFn "&%food &%for %1")
(format EnglishLanguage format "%3 is the &%format for %2 in %1")
(format EnglishLanguage formerName "%1 is a &%former &%name for %2")
(format EnglishLanguage formOfAdaptation "%1 has &%adaptation strategy %2")
(format EnglishLanguage foundingdate "%1 was &%founded on %2")
(format EnglishLanguage freeFunctionRoomAmenity "%2 is &%free for customers renting %1")
(format EnglishLanguage freePropertyAmenity "use of %2 is free for %1")
(format EnglishLanguage freeRoomAmenity "use of %2 is free for %1")
(format EnglishLanguage fulfillingEntity "%1 fulfills %2")
(format EnglishLanguage fullName "the &%full &%name of %2 is %1")
(format EnglishLanguage fullNameIndexOrder "the &%index &%order &%name of %2 is %1")
(format EnglishLanguage functionRoomAmenity "use of %2 is free for %1")
(format EnglishLanguage GeographicPartTypeFn "all the &%instances of %1 in %2")
(format EnglishLanguage GMBFn "the &%value of %1")
(format EnglishLanguage GMVFn "the &%value of %1")
(format EnglishLanguage GPIFn "the &%value of %1 during %2")
(format EnglishLanguage GPSFn "the &%value of %1")
(format EnglishLanguage grandfather "the &%grandfather of %1 is %2")
(format EnglishLanguage grandmother "the &%grandmother of %1 is %2")
(format EnglishLanguage graphMeasure "%2 is the &%unit in %1")
(format EnglishLanguage greaterThanByQuality "%1 has &%more %3 than %2")
(format EnglishLanguage grossMerchandiseBoughtInPeriod "the &%value of everything purchased by %1 for %2 during %4 is %3")
(format EnglishLanguage groupingTitle "%1 is the &%title in %3 for instances of %2")
(format EnglishLanguage groupMember "%1 is a &%member of %2")
(format EnglishLanguage guest "%1 is a &%guest at %2")
(format EnglishLanguage guiElementCovered "%1 &%covers %2")
(format EnglishLanguage guiElementCoveredBy "%1 is &%covered by %2")
(format EnglishLanguage guiElementPartiallyCovered "%1 &%partially &%covers %2")
(format EnglishLanguage guiElementPartiallyCoveredBy "%1 is &%partially &%covered by %2")
(format EnglishLanguage guiElementUncovered "%1 &%uncovers %2")
(format EnglishLanguage habitatOfOrganism "%1 &%inhabits %2")
(format EnglishLanguage half "%1 is &%half of %2")
(format EnglishLanguage hardwareType "%1 is the &%type of %2")
(format EnglishLanguage hasAccount "%1 has &%account %2")
(format EnglishLanguage hasAward "%1 received &%award %2")
(format EnglishLanguage hasGUEState "%1 has &%state %2")
(format EnglishLanguage hasUniform "%1 has &%uniform %2")
(format EnglishLanguage havePartTypes "%1 has &%parts of type %2")
(format EnglishLanguage headquartersOfOrganization "the &%headquarters of %1 is in %2")
(format EnglishLanguage heartBeatRate "%1 &%reports &%status every %2")
(format EnglishLanguage hinders "%1 &%hinders %2")
(format EnglishLanguage hindersSubclass "instances of %1 &%hinder &%instances of %2")
(format EnglishLanguage homePage "%1 is the &%home &%page of %2")
(format EnglishLanguage homePhoneNumber "%1 is the &%home &%phone of %2")
(format EnglishLanguage HonoraryAssociateDegreeFn "the &%honorary &%associates &%degree in %1 from %2")
(format EnglishLanguage HonoraryBachelorDegreeFn "the &%honorary &%bachelors &%degree in %1 from %2")
(format EnglishLanguage HonoraryDegreeFn "the &%honorary &%degree in %1 from %2")
(format EnglishLanguage HonoraryDoctorateDegreeFn "the &%honorary &%doctoral &%degree in %1 from %2")
(format EnglishLanguage HonoraryMasterDegreeFn "the &%honorary &%masters &%degree in %1 from %2")
(format EnglishLanguage hopes "%1 &%hopes %2 will become true")
(format EnglishLanguage hostedOn "%1 is &%hosted on %2")
(format EnglishLanguage hostStatus "the &%status of %1 is %2")
(format EnglishLanguage humanName "%2 is &%called %1")
(format EnglishLanguage husband "%1 is the &%husand of %2")
(format EnglishLanguage includedMeal "&%meals of type %2 are includes in %1")
(format EnglishLanguage inflationRateInCountry "the &%rate of &%inflation in %1 is %2")
(format EnglishLanguage ingredient "%1 is an &%ingredient in %2")
(format EnglishLanguage ingredientAmount "%3 of %1 is &%used in %2")
(format EnglishLanguage initiallyContainsPart "instance of %1 are always &%initially &%part of instances of %2")
(format EnglishLanguage initialPart "every %1 is &%initially &%part of a %2")
(format EnglishLanguage inString "%1 is &%part of %2")
(format EnglishLanguage JuiceOfFn "the &%juice of %1")
(format EnglishLanguage keyName "%1 is a &%key in %2")
(format EnglishLanguage lacks "%1 &%lacks %2")
(format EnglishLanguage languagePercentInRegion "%2 percent of people in %3 &%speak %1")
(format EnglishLanguage lastRenovation "the &%last &%renovation of %1 was in %2")
(format EnglishLanguage LatitudeFn "the &%region %1 of %2")
(format EnglishLanguage lender "%2 &%lends %1")
(format EnglishLanguage lengthLimit "%1 can &%carry objects up to %2 long")
(format EnglishLanguage LessonOnCookingFoodFn "&%class on making %1")
(format EnglishLanguage LessonOnInstrumentFn "&%class on playing %1")
(format EnglishLanguage lexicon "the %2 &%word for %1 is %3")
(format EnglishLanguage LiftFn "the &%financial &%improvement percentage of %1 over %2")
(format EnglishLanguage linearExtent "the &%linear &%extent of %1 is %2")
(format EnglishLanguage liquidity "the &%liqudity of %1 is %2")
(format EnglishLanguage listedOn "%1 is &%listed on %2")
(format EnglishLanguage listingBidder "%2 &%bids for %1")
(format EnglishLanguage listingBuyer "%2 &%buys %1")
(format EnglishLanguage listingSeller "%2 &%sells %1")
(format EnglishLanguage load "the &%load on %1 is %2")
(format EnglishLanguage LongitudeFn "the &%meridian at %2 %1")
(format EnglishLanguage loss "the &%financial &%loss in %1 is %2")
(format EnglishLanguage LyricalComponentFn "the &%lyrics of %1")
(format EnglishLanguage lyricist "%2 wrote %1")
(format EnglishLanguage MakingFn "the &%making of %1")
(format EnglishLanguage managedBy "%1 is &%managed by %2")
(format EnglishLanguage massLimit "%1 can &%carry up to %2")
(format EnglishLanguage MasterDegreeFn "a &%masters &%degree in %1 from %2")
(format EnglishLanguage maternalAunt "the &%maternal &%aunt of %1 is %2")
(format EnglishLanguage maternalUncle "the &%maternal &%uncle of %1 is %2")
(format EnglishLanguage maxCardinality "there can be at most %3 &%values to argument %2 of %1")
(format EnglishLanguage maxRoomCapacity "%1 can &%accommodate at most %2 people")
(format EnglishLanguage MealAttributeFn "the appropriate &%meal for %1 in %2")
(format EnglishLanguage mealPlanInclusion "%2 is the &%meal &%plan for %1")
(format EnglishLanguage meatOfAnimal "%1 is the &%meat of %2")
(format EnglishLanguage meceCollection "%1 and %2 are &%mutually &%exclusive")
(format EnglishLanguage memorySize "%1 &%requires %2")
(format EnglishLanguage mimeType "%1 is &%encoded as %2")
(format EnglishLanguage minCardinality "there are at least %3 &%values to argument %2 of %1")
(format EnglishLanguage misspelledTitle "%1 is a &%misspelled &%title for %2 in %3")
(format EnglishLanguage mobilePhoneNumber "the &%mobile &%number of %2 is %1")
(format EnglishLanguage monitorConnectivityData "%2 &%address holds at %1")
(format EnglishLanguage monthlyIncome "%1 has &%monthly &%income %2")
(format EnglishLanguage MorningFn "the &%morning of %1")
(format EnglishLanguage most "%1 is &%most of %2")
(format EnglishLanguage mothersBrothersDaughter "the &%mother's &%brother's &%daughter of %1 is %2")
(format EnglishLanguage mothersBrothersSon "the &%mother's &%brother's &%son of %1 is %2")
(format EnglishLanguage mothersBrothersWife "the &%mother's &%brother's &%wife of %1 is %2")
(format EnglishLanguage mothersSistersDaughter "the &%mother's &%sister's &%daughter of %1 is %2")
(format EnglishLanguage mothersSistersHusband "the &%mother's &%sister's &%husband of %1 is %2")
(format EnglishLanguage mothersSistersSon "the &%mother's &%sister's &%son of %1 is %2")
(format EnglishLanguage MusicalComponentFn "the &%music of %1")
(format EnglishLanguage MusicalInterpretationFn "the &%interpretation of %2 by %1 at %3")
(format EnglishLanguage musicChartBy "%1 is &%ranked by %2")
(format EnglishLanguage musicChartPeriod "%1 &%covers %2")
(format EnglishLanguage musicGenre "%2 is in the &%genre %1")
(format EnglishLanguage musician "%2 performed %1")
(format EnglishLanguage musicInterpretation "%1 is a &%recording of %2")
(format EnglishLanguage musicVideo "%2 is a &%video of %1")
(format EnglishLanguage nameAfterKeyName "%1 is &%after &%key %2 in %3")
(format EnglishLanguage nameBeforeKeyName "%1 is &%before &%key %2 in %3")
(format EnglishLanguage nameIndexOrder "%1 is the &%indexable &%name for %2")
(format EnglishLanguage NationalAnthemFn "the &%national &%anthem of %1")
(format EnglishLanguage nearOrientation "%1 is &%near %2")