hestia-earth-models 0.70.0__py3-none-any.whl → 0.70.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (168) hide show
  1. hestia_earth/models/aware/scarcityWeightedWaterUse.py +8 -16
  2. hestia_earth/models/config/Cycle.json +52 -64
  3. hestia_earth/models/config/ImpactAssessment.json +12 -4
  4. hestia_earth/models/config/Site.json +33 -22
  5. hestia_earth/models/cycle/transformation.py +1 -1
  6. hestia_earth/models/cycle/utils.py +0 -6
  7. hestia_earth/models/data/ecoinventV3/__init__.py +15 -13
  8. hestia_earth/models/ecoalimV9/__init__.py +13 -0
  9. hestia_earth/models/ecoalimV9/cycle.py +128 -0
  10. hestia_earth/models/ecoalimV9/impact_assessment.py +125 -0
  11. hestia_earth/models/ecoalimV9/utils.py +31 -0
  12. hestia_earth/models/ecoinventV3/__init__.py +6 -14
  13. hestia_earth/models/ecoinventV3/utils.py +1 -29
  14. hestia_earth/models/ecoinventV3AndEmberClimate/__init__.py +8 -2
  15. hestia_earth/models/emissionNotRelevant/__init__.py +33 -8
  16. hestia_earth/models/{cycle → hestia}/aboveGroundCropResidue.py +4 -3
  17. hestia_earth/models/{cycle → hestia}/aboveGroundCropResidueTotal.py +1 -1
  18. hestia_earth/models/{site → hestia}/brackishWater.py +1 -1
  19. hestia_earth/models/{site → hestia}/cationExchangeCapacityPerKgSoil.py +1 -1
  20. hestia_earth/models/{cycle → hestia}/coldCarcassWeightPerHead.py +1 -1
  21. hestia_earth/models/{cycle → hestia}/coldDressedCarcassWeightPerHead.py +1 -1
  22. hestia_earth/models/{cycle → hestia}/concentrateFeed.py +1 -1
  23. hestia_earth/models/{cycle → hestia}/cropResidueManagement.py +1 -1
  24. hestia_earth/models/{cycle → hestia}/croppingIntensity.py +1 -1
  25. hestia_earth/models/{cycle → hestia}/energyContentLowerHeatingValue.py +1 -1
  26. hestia_earth/models/{cycle → hestia}/excretaKgMass.py +7 -2
  27. hestia_earth/models/{cycle → hestia}/excretaKgN.py +1 -1
  28. hestia_earth/models/{cycle → hestia}/excretaKgVs.py +1 -1
  29. hestia_earth/models/{cycle → hestia}/feedConversionRatio/__init__.py +1 -1
  30. hestia_earth/models/{site → hestia}/flowingWater.py +1 -1
  31. hestia_earth/models/{site → hestia}/freshWater.py +1 -1
  32. hestia_earth/models/{cycle → hestia}/inorganicFertiliser.py +1 -1
  33. hestia_earth/models/{cycle → hestia}/irrigatedTypeUnspecified.py +14 -19
  34. hestia_earth/models/hestia/landCover.py +30 -22
  35. hestia_earth/models/{cycle → hestia}/liveAnimal.py +1 -1
  36. hestia_earth/models/{cycle → hestia}/longFallowRatio.py +1 -1
  37. hestia_earth/models/{cycle → hestia}/materialAndSubstrate.py +1 -1
  38. hestia_earth/models/{cycle → hestia}/milkYield.py +1 -1
  39. hestia_earth/models/{site → hestia}/netPrimaryProduction.py +1 -1
  40. hestia_earth/models/{site → hestia}/organicCarbonPerHa.py +1 -1
  41. hestia_earth/models/{cycle → hestia}/pastureGrass.py +1 -1
  42. hestia_earth/models/{cycle → hestia}/pastureSystem.py +1 -1
  43. hestia_earth/models/{site → hestia}/potentialEvapotranspirationAnnual.py +3 -3
  44. hestia_earth/models/{site → hestia}/potentialEvapotranspirationMonthly.py +3 -3
  45. hestia_earth/models/{site → hestia}/precipitationAnnual.py +3 -3
  46. hestia_earth/models/{site → hestia}/precipitationMonthly.py +3 -3
  47. hestia_earth/models/{site → hestia}/rainfallAnnual.py +3 -3
  48. hestia_earth/models/{site → hestia}/rainfallMonthly.py +3 -3
  49. hestia_earth/models/{cycle → hestia}/readyToCookWeightPerHead.py +1 -1
  50. hestia_earth/models/{cycle → hestia}/residueBurnt.py +1 -1
  51. hestia_earth/models/{cycle → hestia}/residueIncorporated.py +1 -1
  52. hestia_earth/models/{cycle → hestia}/residueLeftOnField.py +1 -1
  53. hestia_earth/models/hestia/residueRemoved.py +65 -13
  54. hestia_earth/models/{site → hestia}/salineWater.py +1 -1
  55. hestia_earth/models/{site → hestia}/soilMeasurement.py +1 -1
  56. hestia_earth/models/{cycle → hestia}/stockingDensityAnimalHousingAverage.py +1 -1
  57. hestia_earth/models/{site → hestia}/temperatureAnnual.py +3 -3
  58. hestia_earth/models/{site → hestia}/temperatureMonthly.py +3 -3
  59. hestia_earth/models/{site → hestia}/totalNitrogenPerKgSoil.py +1 -1
  60. hestia_earth/models/{cycle → hestia}/unknownPreSeasonWaterRegime.py +1 -1
  61. hestia_earth/models/hestia/utils.py +93 -0
  62. hestia_earth/models/{site → hestia}/waterDepth.py +1 -1
  63. hestia_earth/models/hestia/waterSalinity.py +78 -0
  64. hestia_earth/models/ipcc2019/aboveGroundBiomass.py +1 -1
  65. hestia_earth/models/ipcc2019/belowGroundBiomass.py +1 -1
  66. hestia_earth/models/ipcc2019/biomass_utils.py +2 -4
  67. hestia_earth/models/ipcc2019/ch4ToAirFloodedRice.py +163 -78
  68. hestia_earth/models/ipcc2019/co2ToAirCarbonStockChange_utils.py +31 -20
  69. hestia_earth/models/ipcc2019/co2ToAirUreaHydrolysis.py +16 -9
  70. hestia_earth/models/ipcc2019/nonCo2EmissionsToAirNaturalVegetationBurning.py +35 -47
  71. hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_1.py +86 -1
  72. hestia_earth/models/ipcc2019/organicCarbonPerHa_tier_2.py +127 -1
  73. hestia_earth/models/ipcc2019/organicCarbonPerHa_utils.py +7 -5
  74. hestia_earth/models/mocking/search-results.json +764 -772
  75. hestia_earth/models/pooreNemecek2018/utils.py +8 -2
  76. hestia_earth/models/schmidt2007/ch4ToAirWasteTreatment.py +1 -4
  77. hestia_earth/models/schmidt2007/h2SToAirWasteTreatment.py +1 -4
  78. hestia_earth/models/schmidt2007/n2OToAirWasteTreatmentDirect.py +1 -4
  79. hestia_earth/models/schmidt2007/nh3ToAirWasteTreatment.py +1 -4
  80. hestia_earth/models/utils/background_emissions.py +52 -0
  81. hestia_earth/models/utils/blank_node.py +9 -5
  82. hestia_earth/models/utils/impact_assessment.py +26 -17
  83. hestia_earth/models/utils/lookup.py +48 -39
  84. hestia_earth/models/utils/measurement.py +3 -3
  85. hestia_earth/models/version.py +1 -1
  86. {hestia_earth_models-0.70.0.dist-info → hestia_earth_models-0.70.1.dist-info}/METADATA +2 -2
  87. {hestia_earth_models-0.70.0.dist-info → hestia_earth_models-0.70.1.dist-info}/RECORD +163 -158
  88. tests/models/aware/test_scarcityWeightedWaterUse.py +1 -12
  89. tests/models/ecoalimV9/__init__.py +0 -0
  90. tests/models/ecoalimV9/test_cycle.py +21 -0
  91. tests/models/ecoalimV9/test_impact_assessment.py +24 -0
  92. tests/models/environmentalFootprintV3_1/test_scarcityWeightedWaterUse.py +4 -2
  93. tests/models/{cycle → hestia}/test_aboveGroundCropResidue.py +1 -1
  94. tests/models/{cycle → hestia}/test_aboveGroundCropResidueTotal.py +1 -1
  95. tests/models/{site → hestia}/test_brackishWater.py +1 -1
  96. tests/models/{site → hestia}/test_cationExchangeCapacityPerKgSoil.py +1 -1
  97. tests/models/{cycle → hestia}/test_coldCarcassWeightPerHead.py +1 -1
  98. tests/models/{cycle → hestia}/test_coldDressedCarcassWeightPerHead.py +1 -1
  99. tests/models/{cycle → hestia}/test_concentrateFeed.py +1 -1
  100. tests/models/{cycle → hestia}/test_cropResidueManagement.py +1 -1
  101. tests/models/{cycle → hestia}/test_croppingIntensity.py +1 -1
  102. tests/models/{cycle → hestia}/test_energyContentLowerHeatingValue.py +5 -3
  103. tests/models/{cycle → hestia}/test_excretaKgMass.py +1 -1
  104. tests/models/{cycle → hestia}/test_excretaKgN.py +1 -1
  105. tests/models/{cycle → hestia}/test_excretaKgVs.py +1 -1
  106. tests/models/{cycle → hestia}/test_feedConversionRatio.py +1 -1
  107. tests/models/{site → hestia}/test_flowingWater.py +1 -1
  108. tests/models/{site → hestia}/test_freshWater.py +1 -1
  109. tests/models/{cycle → hestia}/test_inorganicFertiliser.py +1 -1
  110. tests/models/{cycle → hestia}/test_irrigatedTypeUnspecified.py +2 -5
  111. tests/models/hestia/test_landCover.py +4 -34
  112. tests/models/{cycle → hestia}/test_liveAnimal.py +1 -1
  113. tests/models/{cycle → hestia}/test_longFallowRatio.py +1 -1
  114. tests/models/{site → hestia}/test_management.py +1 -1
  115. tests/models/{cycle → hestia}/test_materialsAndSubstrate.py +1 -1
  116. tests/models/{cycle → hestia}/test_milkYield.py +1 -1
  117. tests/models/{site → hestia}/test_netPrimaryProduction.py +1 -1
  118. tests/models/{site → hestia}/test_organicCarbonPerHa.py +1 -1
  119. tests/models/{site → hestia}/test_organicCarbonPerKgSoil.py +1 -1
  120. tests/models/{site → hestia}/test_organicCarbonPerM3Soil.py +1 -1
  121. tests/models/{site → hestia}/test_organicMatterPerKgSoil.py +1 -1
  122. tests/models/{site → hestia}/test_organicMatterPerM3Soil.py +1 -1
  123. tests/models/{cycle → hestia}/test_pastureGrass.py +1 -1
  124. tests/models/{cycle → hestia}/test_pastureSystem.py +1 -1
  125. tests/models/{site → hestia}/test_potentialEvapotranspirationAnnual.py +1 -1
  126. tests/models/{site → hestia}/test_potentialEvapotranspirationMonthly.py +1 -1
  127. tests/models/{site → hestia}/test_precipitationAnnual.py +1 -1
  128. tests/models/{site → hestia}/test_precipitationMonthly.py +1 -1
  129. tests/models/{site → hestia}/test_rainfallAnnual.py +1 -1
  130. tests/models/{site → hestia}/test_rainfallMonthly.py +1 -1
  131. tests/models/{cycle → hestia}/test_readyToCookWeightPerHead.py +1 -1
  132. tests/models/{cycle → hestia}/test_residueBurnt.py +1 -1
  133. tests/models/{cycle → hestia}/test_residueIncorporated.py +1 -1
  134. tests/models/{cycle → hestia}/test_residueLeftOnField.py +1 -1
  135. tests/models/hestia/test_residueRemoved.py +15 -3
  136. tests/models/{site → hestia}/test_salineWater.py +1 -1
  137. tests/models/{site → hestia}/test_soilMeasurement.py +2 -2
  138. tests/models/{cycle → hestia}/test_stockingDensityAnimalHousingAverage.py +1 -1
  139. tests/models/{site → hestia}/test_temperatureAnnual.py +1 -1
  140. tests/models/{site → hestia}/test_temperatureMonthly.py +1 -1
  141. tests/models/{site → hestia}/test_totalNitrogenPerKgSoil.py +1 -1
  142. tests/models/{cycle → hestia}/test_unknownPreSeasonWaterRegime.py +1 -1
  143. tests/models/{site → hestia}/test_waterDepth.py +1 -1
  144. tests/models/hestia/test_waterSalinity.py +26 -0
  145. tests/models/ipcc2019/test_ch4ToAirFloodedRice.py +10 -42
  146. tests/models/ipcc2019/test_co2ToAirSoilOrganicCarbonStockChange.py +2 -1
  147. tests/models/ipcc2019/test_nonCo2EmissionsToAirNaturalVegetationBurning.py +3 -2
  148. tests/models/test_ecoinventV3AndEmberClimate.py +2 -2
  149. tests/models/test_emissionNotRelevant.py +0 -8
  150. tests/models/utils/test_measurement.py +1 -1
  151. hestia_earth/models/cycle/residueRemoved.py +0 -54
  152. hestia_earth/models/hestia/nh3ToSurfaceWaterAquacultureSystems.py +0 -64
  153. hestia_earth/models/site/utils.py +0 -93
  154. tests/models/cycle/test_residueRemoved.py +0 -37
  155. tests/models/hestia/test_nh3ToSurfaceWaterAquacultureSystems.py +0 -51
  156. /hestia_earth/models/{cycle → hestia}/feedConversionRatio/feedConversionRatioCarbon.py +0 -0
  157. /hestia_earth/models/{cycle → hestia}/feedConversionRatio/feedConversionRatioDryMatter.py +0 -0
  158. /hestia_earth/models/{cycle → hestia}/feedConversionRatio/feedConversionRatioEnergy.py +0 -0
  159. /hestia_earth/models/{cycle → hestia}/feedConversionRatio/feedConversionRatioFedWeight.py +0 -0
  160. /hestia_earth/models/{cycle → hestia}/feedConversionRatio/feedConversionRatioNitrogen.py +0 -0
  161. /hestia_earth/models/{site → hestia}/management.py +0 -0
  162. /hestia_earth/models/{site → hestia}/organicCarbonPerKgSoil.py +0 -0
  163. /hestia_earth/models/{site → hestia}/organicCarbonPerM3Soil.py +0 -0
  164. /hestia_earth/models/{site → hestia}/organicMatterPerKgSoil.py +0 -0
  165. /hestia_earth/models/{site → hestia}/organicMatterPerM3Soil.py +0 -0
  166. {hestia_earth_models-0.70.0.dist-info → hestia_earth_models-0.70.1.dist-info}/LICENSE +0 -0
  167. {hestia_earth_models-0.70.0.dist-info → hestia_earth_models-0.70.1.dist-info}/WHEEL +0 -0
  168. {hestia_earth_models-0.70.0.dist-info → hestia_earth_models-0.70.1.dist-info}/top_level.txt +0 -0
@@ -1387,1451 +1387,1451 @@
1387
1387
  },
1388
1388
  {
1389
1389
  "@type": "Term",
1390
- "@id": "nh3ToAirFuelCombustion"
1390
+ "@id": "2BromopropaneToAirIndustrialProcesses"
1391
1391
  },
1392
1392
  {
1393
1393
  "@type": "Term",
1394
- "@id": "nToSurfaceWaterAquacultureSystems"
1394
+ "@id": "nButaneToAirIndustrialProcesses"
1395
1395
  },
1396
1396
  {
1397
1397
  "@type": "Term",
1398
- "@id": "co2ToAirAboveGroundBiomassStockChangeLandUseChange"
1398
+ "@id": "pXyleneToAirIndustrialProcesses"
1399
1399
  },
1400
1400
  {
1401
1401
  "@type": "Term",
1402
- "@id": "co2ToAirSoilFlux"
1402
+ "@id": "ch4ToAirCropResidueDecomposition"
1403
1403
  },
1404
1404
  {
1405
1405
  "@type": "Term",
1406
- "@id": "n2ToAirOrganicFertiliser"
1406
+ "@id": "ch4ToAirInputsProductionNonFossil"
1407
1407
  },
1408
1408
  {
1409
1409
  "@type": "Term",
1410
- "@id": "nh3ToGroundwaterExcreta"
1410
+ "@id": "co2ToAirBelowGroundBiomassStockChangeLandUseChange"
1411
1411
  },
1412
1412
  {
1413
1413
  "@type": "Term",
1414
- "@id": "ch4ToAirOrganicSoilCultivation"
1414
+ "@id": "n2OToAirNaturalVegetationBurningIndirect"
1415
1415
  },
1416
1416
  {
1417
1417
  "@type": "Term",
1418
- "@id": "ch4ToAirIndustrialProcessesNonFossil"
1418
+ "@id": "nh3ToSurfaceWaterInputsProduction"
1419
1419
  },
1420
1420
  {
1421
1421
  "@type": "Term",
1422
- "@id": "n2OToAirCropResidueBurningIndirect"
1422
+ "@id": "nToSurfaceWaterExcreta"
1423
1423
  },
1424
1424
  {
1425
1425
  "@type": "Term",
1426
- "@id": "n2ToAirExcreta"
1426
+ "@id": "nh3ToAirWasteTreatment"
1427
1427
  },
1428
1428
  {
1429
1429
  "@type": "Term",
1430
- "@id": "1Ethoxy112333HexafluoropropaneToAirInputsProduction"
1430
+ "@id": "ch4ToAirInputsProductionFossil"
1431
1431
  },
1432
1432
  {
1433
1433
  "@type": "Term",
1434
- "@id": "nh4ToGroundwaterOrganicFertiliser"
1434
+ "@id": "co2ToAirAboveGroundBiomassStockChangeManagementChange"
1435
1435
  },
1436
1436
  {
1437
1437
  "@type": "Term",
1438
- "@id": "noxToAirFuelCombustion"
1438
+ "@id": "n2OToAirNaturalVegetationBurningDirect"
1439
1439
  },
1440
1440
  {
1441
1441
  "@type": "Term",
1442
- "@id": "22Dichloro111TrifluoroethaneToAirIndustrialProcesses"
1442
+ "@id": "co2ToAirCropResidueDecomposition"
1443
1443
  },
1444
1444
  {
1445
1445
  "@type": "Term",
1446
- "@id": "pfc218ToAirIndustrialProcesses"
1446
+ "@id": "co2ToAirOrganicSoilCultivation"
1447
1447
  },
1448
1448
  {
1449
1449
  "@type": "Term",
1450
- "@id": "pfc1114ToAirInputsProduction"
1450
+ "@id": "h2SToAirInputsProduction"
1451
1451
  },
1452
1452
  {
1453
1453
  "@type": "Term",
1454
- "@id": "pfc9118ToAirIndustrialProcesses"
1454
+ "@id": "n2OToAirExcretaIndirect"
1455
1455
  },
1456
1456
  {
1457
1457
  "@type": "Term",
1458
- "@id": "1ChlorobutaneToAirIndustrialProcesses"
1458
+ "@id": "ch4ToAirEntericFermentation"
1459
1459
  },
1460
1460
  {
1461
1461
  "@type": "Term",
1462
- "@id": "2333Tetrafluoro2TrifluoromethylPropanenitrileToAirIndustrialProcesses"
1462
+ "@id": "333Trifluoropropan1OlToAirInputsProduction"
1463
1463
  },
1464
1464
  {
1465
1465
  "@type": "Term",
1466
- "@id": "pfc5114ToAirIndustrialProcesses"
1466
+ "@id": "po43ToGroundwaterInputsProduction"
1467
1467
  },
1468
1468
  {
1469
1469
  "@type": "Term",
1470
- "@id": "1PropylbromideToAirIndustrialProcesses"
1470
+ "@id": "pToSoilCropResidueBurning"
1471
1471
  },
1472
1472
  {
1473
1473
  "@type": "Term",
1474
- "@id": "2BromopropaneToAirInputsProduction"
1474
+ "@id": "pfc1216ToAirInputsProduction"
1475
1475
  },
1476
1476
  {
1477
1477
  "@type": "Term",
1478
- "@id": "trichloroetheneToAirIndustrialProcesses"
1478
+ "@id": "1BromoethaneToAirIndustrialProcesses"
1479
1479
  },
1480
1480
  {
1481
1481
  "@type": "Term",
1482
- "@id": "trichloroetheneToAirInputsProduction"
1482
+ "@id": "pfc6116ToAirIndustrialProcesses"
1483
1483
  },
1484
1484
  {
1485
1485
  "@type": "Term",
1486
- "@id": "124TrimethylbenzeneToAirIndustrialProcesses"
1486
+ "@id": "pfc7118ToAirIndustrialProcesses"
1487
1487
  },
1488
1488
  {
1489
1489
  "@type": "Term",
1490
- "@id": "dimethoxymethaneToAirIndustrialProcesses"
1490
+ "@id": "pfc3110ToAirInputsProduction"
1491
1491
  },
1492
1492
  {
1493
1493
  "@type": "Term",
1494
- "@id": "1Ethyl2MethylbenzeneToAirIndustrialProcesses"
1494
+ "@id": "sulphurTrifluoromethylPentafluorideToAirIndustrialProcesses"
1495
1495
  },
1496
1496
  {
1497
1497
  "@type": "Term",
1498
- "@id": "tetrachloroetheneToAirInputsProduction"
1498
+ "@id": "sulphurTrifluoromethylPentafluorideToAirInputsProduction"
1499
1499
  },
1500
1500
  {
1501
1501
  "@type": "Term",
1502
- "@id": "hcfc31ToAirIndustrialProcesses"
1502
+ "@id": "octamethylcyclotetrasiloxaneToAirInputsProduction"
1503
1503
  },
1504
1504
  {
1505
1505
  "@type": "Term",
1506
- "@id": "2Methyl1PropeneToAirIndustrialProcesses"
1506
+ "@id": "pfc5114ToAirInputsProduction"
1507
1507
  },
1508
1508
  {
1509
1509
  "@type": "Term",
1510
- "@id": "3Ethoxy111234455666Dodecafluoro2TrifluoromethylHexaneToAirIndustrialProcesses"
1510
+ "@id": "224466881010Decamethyl13579246810PentoxapentasilecaneToAirInputsProduction"
1511
1511
  },
1512
1512
  {
1513
1513
  "@type": "Term",
1514
- "@id": "2ButanolToAirIndustrialProcesses"
1514
+ "@id": "1ChlorobutaneToAirInputsProduction"
1515
1515
  },
1516
1516
  {
1517
1517
  "@type": "Term",
1518
- "@id": "hcfc31ToAirInputsProduction"
1518
+ "@id": "pfc116ToAirInputsProduction"
1519
1519
  },
1520
1520
  {
1521
1521
  "@type": "Term",
1522
- "@id": "tolueneToAirIndustrialProcesses"
1522
+ "@id": "pfpmieToAirInputsProduction"
1523
1523
  },
1524
1524
  {
1525
1525
  "@type": "Term",
1526
- "@id": "2Methyl2ButanolToAirInputsProduction"
1526
+ "@id": "3Ethoxy111234455666Dodecafluoro2TrifluoromethylHexaneToAirInputsProduction"
1527
1527
  },
1528
1528
  {
1529
1529
  "@type": "Term",
1530
- "@id": "pesticideToHarvestedCropInputsProduction"
1530
+ "@id": "nButaneToAirInputsProduction"
1531
1531
  },
1532
1532
  {
1533
1533
  "@type": "Term",
1534
- "@id": "diethylEtherToAirInputsProduction"
1534
+ "@id": "123TrimethylbenzeneToAirIndustrialProcesses"
1535
1535
  },
1536
1536
  {
1537
1537
  "@type": "Term",
1538
- "@id": "ethylAcetateToAirInputsProduction"
1538
+ "@id": "2MethylpentaneToAirIndustrialProcesses"
1539
1539
  },
1540
1540
  {
1541
1541
  "@type": "Term",
1542
- "@id": "pesticideToSoilAgriculturalInputsProduction"
1542
+ "@id": "isobutyraldehydeToAirIndustrialProcesses"
1543
1543
  },
1544
1544
  {
1545
1545
  "@type": "Term",
1546
- "@id": "formaldehydeToAirIndustrialProcesses"
1546
+ "@id": "hcfc121ToAirInputsProduction"
1547
1547
  },
1548
1548
  {
1549
1549
  "@type": "Term",
1550
- "@id": "pentaneToAirIndustrialProcesses"
1550
+ "@id": "2Methyl2PropanolToAirIndustrialProcesses"
1551
1551
  },
1552
1552
  {
1553
1553
  "@type": "Term",
1554
- "@id": "12DibromotetrafluoroethaneToAirIndustrialProcesses"
1554
+ "@id": "cis2PenteneToAirIndustrialProcesses"
1555
1555
  },
1556
1556
  {
1557
1557
  "@type": "Term",
1558
- "@id": "isopreneToAirInputsProduction"
1558
+ "@id": "1ButeneToAirIndustrialProcesses"
1559
1559
  },
1560
1560
  {
1561
1561
  "@type": "Term",
1562
- "@id": "ethylBenzeneToAirIndustrialProcesses"
1562
+ "@id": "decaneToAirIndustrialProcesses"
1563
1563
  },
1564
1564
  {
1565
1565
  "@type": "Term",
1566
- "@id": "EHfc1234ZeToAirInputsProduction"
1566
+ "@id": "pfc1216ToAirIndustrialProcesses"
1567
1567
  },
1568
1568
  {
1569
1569
  "@type": "Term",
1570
- "@id": "pToSoilCropResidueDecomposition"
1570
+ "@id": "pfc1114ToAirIndustrialProcesses"
1571
1571
  },
1572
1572
  {
1573
1573
  "@type": "Term",
1574
- "@id": "ZHfc1225YeToAirIndustrialProcesses"
1574
+ "@id": "pfc218ToAirInputsProduction"
1575
1575
  },
1576
1576
  {
1577
1577
  "@type": "Term",
1578
- "@id": "difluoroMethoxyMethaneToAirIndustrialProcesses"
1578
+ "@id": "heavyMetalsToWaterExcreta"
1579
1579
  },
1580
1580
  {
1581
1581
  "@type": "Term",
1582
- "@id": "noToAirWasteTreatment"
1582
+ "@id": "benzeneToAirIndustrialProcesses"
1583
1583
  },
1584
1584
  {
1585
1585
  "@type": "Term",
1586
- "@id": "noToAirSoilFlux"
1586
+ "@id": "3MethylpentaneToAirInputsProduction"
1587
1587
  },
1588
1588
  {
1589
1589
  "@type": "Term",
1590
- "@id": "noxToAirCropResidueDecomposition"
1590
+ "@id": "cumeneToAirInputsProduction"
1591
1591
  },
1592
1592
  {
1593
1593
  "@type": "Term",
1594
- "@id": "co2ToAirSoilOrganicCarbonStockChangeLandUseChange"
1594
+ "@id": "methylEthylKetoneToAirIndustrialProcesses"
1595
1595
  },
1596
1596
  {
1597
1597
  "@type": "Term",
1598
- "@id": "hfc227CaToAirIndustrialProcesses"
1598
+ "@id": "ethaneToAirInputsProduction"
1599
1599
  },
1600
1600
  {
1601
1601
  "@type": "Term",
1602
- "@id": "hfc245EbToAirInputsProduction"
1602
+ "@id": "nf3ToAirInputsProduction"
1603
1603
  },
1604
1604
  {
1605
1605
  "@type": "Term",
1606
- "@id": "hfc245EaToAirIndustrialProcesses"
1606
+ "@id": "35DiethyltolueneToAirIndustrialProcesses"
1607
1607
  },
1608
1608
  {
1609
1609
  "@type": "Term",
1610
- "@id": "hfe227EaToAirInputsProduction"
1610
+ "@id": "styreneToAirInputsProduction"
1611
1611
  },
1612
1612
  {
1613
1613
  "@type": "Term",
1614
- "@id": "hfc125ToAirInputsProduction"
1614
+ "@id": "nmvocToAirSilageFeeding"
1615
1615
  },
1616
1616
  {
1617
1617
  "@type": "Term",
1618
- "@id": "EHfc1225YeToAirIndustrialProcesses"
1618
+ "@id": "2ButeneTransToAirInputsProduction"
1619
1619
  },
1620
1620
  {
1621
1621
  "@type": "Term",
1622
- "@id": "perfluorodecalinCisToAirIndustrialProcesses"
1622
+ "@id": "pesticideToAirOtherHigherAltitudesInputsProduction"
1623
1623
  },
1624
1624
  {
1625
1625
  "@type": "Term",
1626
- "@id": "222TrifluoroethanolToAirInputsProduction"
1626
+ "@id": "pm10ToAirAnimalHousing"
1627
1627
  },
1628
1628
  {
1629
1629
  "@type": "Term",
1630
- "@id": "hfe356Mff2ToAirInputsProduction"
1630
+ "@id": "pesticideToSoilInputsProduction"
1631
1631
  },
1632
1632
  {
1633
1633
  "@type": "Term",
1634
- "@id": "33445566778899101010HepTadecafluorodec1EneToAirInputsProduction"
1634
+ "@id": "12DibromotetrafluoroethaneToAirInputsProduction"
1635
1635
  },
1636
1636
  {
1637
1637
  "@type": "Term",
1638
- "@id": "noxToAirOrganicSoilCultivation"
1638
+ "@id": "4EthyltolueneToAirIndustrialProcesses"
1639
1639
  },
1640
1640
  {
1641
1641
  "@type": "Term",
1642
- "@id": "po43ToSurfaceWaterInputsProduction"
1642
+ "@id": "hfe329Mcc2ToAirInputsProduction"
1643
1643
  },
1644
1644
  {
1645
1645
  "@type": "Term",
1646
- "@id": "no3ToAirIndustrialProcesses"
1646
+ "@id": "trans12DichloroethyleneToAirIndustrialProcesses"
1647
1647
  },
1648
1648
  {
1649
1649
  "@type": "Term",
1650
- "@id": "bromomethaneToAirIndustrialProcesses"
1650
+ "@id": "secButylacetateToAirIndustrialProcesses"
1651
1651
  },
1652
1652
  {
1653
1653
  "@type": "Term",
1654
- "@id": "noToAirAquacultureSystems"
1654
+ "@id": "pToSurfaceWaterAquacultureSystems"
1655
1655
  },
1656
1656
  {
1657
1657
  "@type": "Term",
1658
- "@id": "hfe216ToAirInputsProduction"
1658
+ "@id": "pErosionSoilFlux"
1659
1659
  },
1660
1660
  {
1661
1661
  "@type": "Term",
1662
- "@id": "iHfe7200ToAirIndustrialProcesses"
1662
+ "@id": "co2ToAirWasteTreatment"
1663
1663
  },
1664
1664
  {
1665
1665
  "@type": "Term",
1666
- "@id": "hfe245Fa2ToAirInputsProduction"
1666
+ "@id": "11Dichloro1FluoroethaneToAirIndustrialProcesses"
1667
1667
  },
1668
1668
  {
1669
1669
  "@type": "Term",
1670
- "@id": "2233444Heptafluoro1ButanolToAirIndustrialProcesses"
1670
+ "@id": "blackCarbonToAirIndustrialProcesses"
1671
1671
  },
1672
1672
  {
1673
1673
  "@type": "Term",
1674
- "@id": "EHfc1234ZeToAirIndustrialProcesses"
1674
+ "@id": "no3ToGroundwaterOrganicFertiliser"
1675
1675
  },
1676
1676
  {
1677
1677
  "@type": "Term",
1678
- "@id": "chloroformToAirInputsProduction"
1678
+ "@id": "444Trifluorobutan1OlToAirIndustrialProcesses"
1679
1679
  },
1680
1680
  {
1681
1681
  "@type": "Term",
1682
- "@id": "hfe338Mmz1ToAirIndustrialProcesses"
1682
+ "@id": "no3ToSurfaceWaterInputsProduction"
1683
1683
  },
1684
1684
  {
1685
1685
  "@type": "Term",
1686
- "@id": "33445566777Undecafluoroheptan1OlToAirIndustrialProcesses"
1686
+ "@id": "po43ToSoilInputsProduction"
1687
1687
  },
1688
1688
  {
1689
1689
  "@type": "Term",
1690
- "@id": "ZHfc1234ZeToAirIndustrialProcesses"
1690
+ "@id": "hg01ToAirIndustrialProcesses"
1691
1691
  },
1692
1692
  {
1693
1693
  "@type": "Term",
1694
- "@id": "pToSurfaceWaterSoilFlux"
1694
+ "@id": "hfc236CbToAirIndustrialProcesses"
1695
1695
  },
1696
1696
  {
1697
1697
  "@type": "Term",
1698
- "@id": "dibromodifluoromethaneToAirInputsProduction"
1698
+ "@id": "hfc134ToAirInputsProduction"
1699
1699
  },
1700
1700
  {
1701
1701
  "@type": "Term",
1702
- "@id": "bromomethaneToAirInputsProduction"
1702
+ "@id": "33445566777Undecafluoroheptan1OlToAirInputsProduction"
1703
1703
  },
1704
1704
  {
1705
1705
  "@type": "Term",
1706
- "@id": "pToGroundwaterSoilFlux"
1706
+ "@id": "444Trifluorobutan1OlToAirInputsProduction"
1707
1707
  },
1708
1708
  {
1709
1709
  "@type": "Term",
1710
- "@id": "phosphoricAcidToGroundwaterInputsProduction"
1710
+ "@id": "ZHfc1225YeToAirInputsProduction"
1711
1711
  },
1712
1712
  {
1713
1713
  "@type": "Term",
1714
- "@id": "ch4ToAirFuelCombustion"
1714
+ "@id": "pToSoilExcreta"
1715
1715
  },
1716
1716
  {
1717
1717
  "@type": "Term",
1718
- "@id": "ch4ToAirWasteTreatment"
1718
+ "@id": "halothaneToAirIndustrialProcesses"
1719
1719
  },
1720
1720
  {
1721
1721
  "@type": "Term",
1722
- "@id": "co2ToAirDeadOrganicMatterStockChangeLandUseChange"
1722
+ "@id": "phosphoricAcidToSoilInputsProduction"
1723
1723
  },
1724
1724
  {
1725
1725
  "@type": "Term",
1726
- "@id": "co2ToAirSoilOrganicCarbonStockChangeManagementChange"
1726
+ "@id": "bromodifluoromethaneToAirIndustrialProcesses"
1727
1727
  },
1728
1728
  {
1729
1729
  "@type": "Term",
1730
- "@id": "hfc161ToAirInputsProduction"
1730
+ "@id": "dibromodifluoromethaneToAirIndustrialProcesses"
1731
1731
  },
1732
1732
  {
1733
1733
  "@type": "Term",
1734
- "@id": "hcfc122ToAirInputsProduction"
1734
+ "@id": "1112TetrafluoroethaneToAirIndustrialProcesses"
1735
1735
  },
1736
1736
  {
1737
1737
  "@type": "Term",
1738
- "@id": "hfe236FaToAirInputsProduction"
1738
+ "@id": "hfc161ToAirIndustrialProcesses"
1739
1739
  },
1740
1740
  {
1741
1741
  "@type": "Term",
1742
- "@id": "hfe347Mcf2ToAirInputsProduction"
1742
+ "@id": "perfluorodecalinCisToAirInputsProduction"
1743
1743
  },
1744
1744
  {
1745
1745
  "@type": "Term",
1746
- "@id": "ZHfc1336ToAirInputsProduction"
1746
+ "@id": "111TrifluoroethaneToAirInputsProduction"
1747
1747
  },
1748
1748
  {
1749
1749
  "@type": "Term",
1750
- "@id": "11Oxybis2Difluoromethoxy1122TetrafluoroethaneToAirInputsProduction"
1750
+ "@id": "hfc143ToAirInputsProduction"
1751
1751
  },
1752
1752
  {
1753
1753
  "@type": "Term",
1754
- "@id": "333Trifluoropropan1OlToAirIndustrialProcesses"
1754
+ "@id": "dibromomethaneToAirInputsProduction"
1755
1755
  },
1756
1756
  {
1757
1757
  "@type": "Term",
1758
- "@id": "223444Hexafluoro1ButanolToAirIndustrialProcesses"
1758
+ "@id": "hfc1243ZfToAirIndustrialProcesses"
1759
1759
  },
1760
1760
  {
1761
1761
  "@type": "Term",
1762
- "@id": "hfc245CaToAirIndustrialProcesses"
1762
+ "@id": "22333Pentafluoropropan1OlToAirInputsProduction"
1763
1763
  },
1764
1764
  {
1765
1765
  "@type": "Term",
1766
- "@id": "3344556677888Tridecafluorooct1EneToAirIndustrialProcesses"
1766
+ "@id": "2FluoroethanolToAirIndustrialProcesses"
1767
1767
  },
1768
1768
  {
1769
1769
  "@type": "Term",
1770
- "@id": "223444Hexafluoro1ButanolToAirInputsProduction"
1770
+ "@id": "hfe347Mcc3ToAirInputsProduction"
1771
1771
  },
1772
1772
  {
1773
1773
  "@type": "Term",
1774
- "@id": "hfc152AToAirInputsProduction"
1774
+ "@id": "pToDrainageWaterIndustrialProcesses"
1775
1775
  },
1776
1776
  {
1777
1777
  "@type": "Term",
1778
- "@id": "so2ToAirIndustrialProcesses"
1778
+ "@id": "dichlorotetrafluoroethaneToAirInputsProduction"
1779
1779
  },
1780
1780
  {
1781
1781
  "@type": "Term",
1782
- "@id": "1Chloro11DifluoroethaneToAirInputsProduction"
1782
+ "@id": "no3ToGroundwaterInputsProduction"
1783
1783
  },
1784
1784
  {
1785
1785
  "@type": "Term",
1786
- "@id": "112TrichlorotrifluoroethaneToAirIndustrialProcesses"
1786
+ "@id": "noxToAirInputsProduction"
1787
1787
  },
1788
1788
  {
1789
1789
  "@type": "Term",
1790
- "@id": "22Dichloro111TrifluoroethaneToAirInputsProduction"
1790
+ "@id": "nh3ToAirOrganicFertiliser"
1791
1791
  },
1792
1792
  {
1793
1793
  "@type": "Term",
1794
- "@id": "noxToAirInorganicFertiliser"
1794
+ "@id": "n2ToAirCropResidueDecomposition"
1795
1795
  },
1796
1796
  {
1797
1797
  "@type": "Term",
1798
- "@id": "chloropentafluoroethaneToAirInputsProduction"
1798
+ "@id": "n2OToAirOrganicFertiliserDirect"
1799
1799
  },
1800
1800
  {
1801
1801
  "@type": "Term",
1802
- "@id": "po43ToSoilIndustrialProcesses"
1802
+ "@id": "hfc1234YfToAirIndustrialProcesses"
1803
1803
  },
1804
1804
  {
1805
1805
  "@type": "Term",
1806
- "@id": "n2OToAirCropResidueDecompositionDirect"
1806
+ "@id": "hcfc122AToAirIndustrialProcesses"
1807
1807
  },
1808
1808
  {
1809
1809
  "@type": "Term",
1810
- "@id": "nh3ToAirInputsProduction"
1810
+ "@id": "hfe143AToAirIndustrialProcesses"
1811
1811
  },
1812
1812
  {
1813
1813
  "@type": "Term",
1814
- "@id": "hcfc21ToAirIndustrialProcesses"
1814
+ "@id": "222TrifluoroethylFormateToAirIndustrialProcesses"
1815
1815
  },
1816
1816
  {
1817
1817
  "@type": "Term",
1818
- "@id": "hfe216ToAirIndustrialProcesses"
1818
+ "@id": "pToGroundwaterInputsProduction"
1819
1819
  },
1820
1820
  {
1821
1821
  "@type": "Term",
1822
- "@id": "hfc143ToAirIndustrialProcesses"
1822
+ "@id": "nh3ToGroundwaterInorganicFertiliser"
1823
1823
  },
1824
1824
  {
1825
1825
  "@type": "Term",
1826
- "@id": "hfe245Fa1ToAirInputsProduction"
1826
+ "@id": "noxToAirExcreta"
1827
1827
  },
1828
1828
  {
1829
1829
  "@type": "Term",
1830
- "@id": "hfe356Mmz1ToAirIndustrialProcesses"
1830
+ "@id": "po43ToSurfaceWaterAquacultureSystems"
1831
1831
  },
1832
1832
  {
1833
1833
  "@type": "Term",
1834
- "@id": "trichlorofluoromethaneToAirIndustrialProcesses"
1834
+ "@id": "blackCarbonToAirFuelCombustion"
1835
1835
  },
1836
1836
  {
1837
1837
  "@type": "Term",
1838
- "@id": "hfe236Ea2ToAirInputsProduction"
1838
+ "@id": "po43ToSurfaceWaterIndustrialProcesses"
1839
1839
  },
1840
1840
  {
1841
1841
  "@type": "Term",
1842
- "@id": "111TrifluoroethaneToAirIndustrialProcesses"
1842
+ "@id": "nh4ToGroundwaterSoilFlux"
1843
1843
  },
1844
1844
  {
1845
1845
  "@type": "Term",
1846
- "@id": "hfe254Cb2ToAirInputsProduction"
1846
+ "@id": "nh4ToSurfaceWaterInputsProduction"
1847
1847
  },
1848
1848
  {
1849
1849
  "@type": "Term",
1850
- "@id": "1122Tetrafluoro3MethoxyPropaneToAirIndustrialProcesses"
1850
+ "@id": "ch4ToAirFloodedRice"
1851
1851
  },
1852
1852
  {
1853
1853
  "@type": "Term",
1854
- "@id": "so3ToAirIndustrialProcesses"
1854
+ "@id": "perfluorocyclopenteneToAirIndustrialProcesses"
1855
1855
  },
1856
1856
  {
1857
1857
  "@type": "Term",
1858
- "@id": "hfe263M1ToAirIndustrialProcesses"
1858
+ "@id": "perfluorobuta13DieneToAirInputsProduction"
1859
1859
  },
1860
1860
  {
1861
1861
  "@type": "Term",
1862
- "@id": "2Chloro112Trifluoro1MethoxyethaneToAirInputsProduction"
1862
+ "@id": "hfe347Mcc3ToAirIndustrialProcesses"
1863
1863
  },
1864
1864
  {
1865
1865
  "@type": "Term",
1866
- "@id": "co2ToAirSoilInorganicCarbonStockChangeLandUseChange"
1866
+ "@id": "hfc134ToAirIndustrialProcesses"
1867
1867
  },
1868
1868
  {
1869
1869
  "@type": "Term",
1870
- "@id": "po43ToSurfaceWaterSoilFlux"
1870
+ "@id": "perfluorocyclopenteneToAirInputsProduction"
1871
1871
  },
1872
1872
  {
1873
1873
  "@type": "Term",
1874
- "@id": "n2OToAirExcretaDirect"
1874
+ "@id": "2233Tetrafluoro1PropanolToAirIndustrialProcesses"
1875
1875
  },
1876
1876
  {
1877
1877
  "@type": "Term",
1878
- "@id": "nh4ToGroundwaterInorganicFertiliser"
1878
+ "@id": "1112333HeptafluoropropaneToAirInputsProduction"
1879
1879
  },
1880
1880
  {
1881
1881
  "@type": "Term",
1882
- "@id": "coToAirNaturalVegetationBurning"
1882
+ "@id": "E1Chloro333Trifluoroprop1EneToAirInputsProduction"
1883
1883
  },
1884
1884
  {
1885
1885
  "@type": "Term",
1886
- "@id": "hfc245EbToAirIndustrialProcesses"
1886
+ "@id": "noxToAirOrganicSoilBurning"
1887
1887
  },
1888
1888
  {
1889
1889
  "@type": "Term",
1890
- "@id": "hfc1141ToAirIndustrialProcesses"
1890
+ "@id": "112TrichloroethaneToAirInputsProduction"
1891
1891
  },
1892
1892
  {
1893
1893
  "@type": "Term",
1894
- "@id": "halon2301ToAirInputsProduction"
1894
+ "@id": "co2ToAirFuelCombustion"
1895
1895
  },
1896
1896
  {
1897
1897
  "@type": "Term",
1898
- "@id": "perfluorobuta13DieneToAirIndustrialProcesses"
1898
+ "@id": "112TrichlorotrifluoroethaneToAirInputsProduction"
1899
1899
  },
1900
1900
  {
1901
1901
  "@type": "Term",
1902
- "@id": "iHfe7100ToAirIndustrialProcesses"
1902
+ "@id": "chloromethaneToAirIndustrialProcesses"
1903
1903
  },
1904
1904
  {
1905
1905
  "@type": "Term",
1906
- "@id": "E1Chloro333Trifluoroprop1EneToAirIndustrialProcesses"
1906
+ "@id": "n2OToAirInorganicFertiliserDirect"
1907
1907
  },
1908
1908
  {
1909
1909
  "@type": "Term",
1910
- "@id": "hg01ToAirInputsProduction"
1910
+ "@id": "nh3ToGroundwaterCropResidueDecomposition"
1911
1911
  },
1912
1912
  {
1913
1913
  "@type": "Term",
1914
- "@id": "fluoroxeneToAirInputsProduction"
1914
+ "@id": "nh3ToAirSoilFlux"
1915
1915
  },
1916
1916
  {
1917
1917
  "@type": "Term",
1918
- "@id": "333TrifluoroPropanalToAirInputsProduction"
1918
+ "@id": "hfc227CaToAirInputsProduction"
1919
1919
  },
1920
1920
  {
1921
1921
  "@type": "Term",
1922
- "@id": "111333Hexafluoro2PropanolToAirInputsProduction"
1922
+ "@id": "hfc365MfcToAirInputsProduction"
1923
1923
  },
1924
1924
  {
1925
1925
  "@type": "Term",
1926
- "@id": "n2OToAirFuelCombustionDirect"
1926
+ "@id": "hfc245CbToAirInputsProduction"
1927
1927
  },
1928
1928
  {
1929
1929
  "@type": "Term",
1930
- "@id": "n2OToAirInputsProduction"
1930
+ "@id": "hfc1345ZfcToAirInputsProduction"
1931
1931
  },
1932
1932
  {
1933
1933
  "@type": "Term",
1934
- "@id": "benzeneToAirInputsProduction"
1934
+ "@id": "hcfc122AToAirInputsProduction"
1935
1935
  },
1936
1936
  {
1937
1937
  "@type": "Term",
1938
- "@id": "ethanolToAirInputsProduction"
1938
+ "@id": "soxToAirInputsProduction"
1939
1939
  },
1940
1940
  {
1941
1941
  "@type": "Term",
1942
- "@id": "propyleneGlycolToAirIndustrialProcesses"
1942
+ "@id": "ch4ToAirReservoirs"
1943
1943
  },
1944
1944
  {
1945
1945
  "@type": "Term",
1946
- "@id": "benzaldehydeToAirInputsProduction"
1946
+ "@id": "n2ToAirInorganicFertiliser"
1947
1947
  },
1948
1948
  {
1949
1949
  "@type": "Term",
1950
- "@id": "33Dichloro11122PentafluoropropaneToAirIndustrialProcesses"
1950
+ "@id": "pesticideToSoilNonAgriculturalInputsProduction"
1951
1951
  },
1952
1952
  {
1953
1953
  "@type": "Term",
1954
- "@id": "pesticideToWaterPesticideApplication"
1954
+ "@id": "octaneToAirInputsProduction"
1955
1955
  },
1956
1956
  {
1957
1957
  "@type": "Term",
1958
- "@id": "pm25ToAirAnimalHousing"
1958
+ "@id": "decaneToAirInputsProduction"
1959
1959
  },
1960
1960
  {
1961
1961
  "@type": "Term",
1962
- "@id": "methylIsopropylKetoneToAirIndustrialProcesses"
1962
+ "@id": "pm0225ToAirIndustrialProcesses"
1963
1963
  },
1964
1964
  {
1965
1965
  "@type": "Term",
1966
- "@id": "nitriteToAirInputsProduction"
1966
+ "@id": "1PropylbromideToAirInputsProduction"
1967
1967
  },
1968
1968
  {
1969
1969
  "@type": "Term",
1970
- "@id": "nmvocToAirSilageStorage"
1970
+ "@id": "trans2PenteneToAirIndustrialProcesses"
1971
1971
  },
1972
1972
  {
1973
1973
  "@type": "Term",
1974
- "@id": "propanalToAirInputsProduction"
1974
+ "@id": "2ButeneCisToAirIndustrialProcesses"
1975
1975
  },
1976
1976
  {
1977
1977
  "@type": "Term",
1978
- "@id": "4EthyltolueneToAirInputsProduction"
1978
+ "@id": "224466Hexamethyl135246TrioxatrisilinaneToAirInputsProduction"
1979
1979
  },
1980
1980
  {
1981
1981
  "@type": "Term",
1982
- "@id": "isopentaneToAirIndustrialProcesses"
1982
+ "@id": "trans2HexeneToAirIndustrialProcesses"
1983
1983
  },
1984
1984
  {
1985
1985
  "@type": "Term",
1986
- "@id": "nButylAcetateToAirIndustrialProcesses"
1986
+ "@id": "pm25ToAirCropResidueBurning"
1987
1987
  },
1988
1988
  {
1989
1989
  "@type": "Term",
1990
- "@id": "dimethylCarbonateToAirInputsProduction"
1990
+ "@id": "22334455OctafluorocyclopentanolToAirIndustrialProcesses"
1991
1991
  },
1992
1992
  {
1993
1993
  "@type": "Term",
1994
- "@id": "pesticideToAirIndoorPesticideApplication"
1994
+ "@id": "tertButylAcetateToAirIndustrialProcesses"
1995
1995
  },
1996
1996
  {
1997
1997
  "@type": "Term",
1998
- "@id": "ethylBenzeneToAirInputsProduction"
1998
+ "@id": "tspToAirInputsProduction"
1999
1999
  },
2000
2000
  {
2001
2001
  "@type": "Term",
2002
- "@id": "methylIsopropylKetoneToAirInputsProduction"
2002
+ "@id": "pm10ToAirInputsProduction"
2003
2003
  },
2004
2004
  {
2005
2005
  "@type": "Term",
2006
- "@id": "1PropylbenzeneToAirInputsProduction"
2006
+ "@id": "pfc4112ToAirIndustrialProcesses"
2007
2007
  },
2008
2008
  {
2009
2009
  "@type": "Term",
2010
- "@id": "formicAcidToAirIndustrialProcesses"
2010
+ "@id": "nmvocToAirWasteTreatment"
2011
2011
  },
2012
2012
  {
2013
2013
  "@type": "Term",
2014
- "@id": "diethylEtherToAirIndustrialProcesses"
2014
+ "@id": "cyclohexaneToAirIndustrialProcesses"
2015
2015
  },
2016
2016
  {
2017
2017
  "@type": "Term",
2018
- "@id": "isobutyraldehydeToAirInputsProduction"
2018
+ "@id": "pentanalToAirIndustrialProcesses"
2019
2019
  },
2020
2020
  {
2021
2021
  "@type": "Term",
2022
- "@id": "nmvocToAirAnimalHousing"
2022
+ "@id": "tspToAirFuelCombustion"
2023
2023
  },
2024
2024
  {
2025
2025
  "@type": "Term",
2026
- "@id": "nPropylAcetateToAirIndustrialProcesses"
2026
+ "@id": "acetoneToAirIndustrialProcesses"
2027
2027
  },
2028
2028
  {
2029
2029
  "@type": "Term",
2030
- "@id": "heavyMetalsToWaterInorganicFertiliser"
2030
+ "@id": "pinacolinToAirInputsProduction"
2031
2031
  },
2032
2032
  {
2033
2033
  "@type": "Term",
2034
- "@id": "ethyleneToAirIndustrialProcesses"
2034
+ "@id": "heavyMetalsToWaterFuelCombustion"
2035
2035
  },
2036
2036
  {
2037
2037
  "@type": "Term",
2038
- "@id": "2Methyl1ButeneToAirIndustrialProcesses"
2038
+ "@id": "cyclohexanoneToAirInputsProduction"
2039
2039
  },
2040
2040
  {
2041
2041
  "@type": "Term",
2042
- "@id": "2Methyl1PropeneToAirInputsProduction"
2042
+ "@id": "heavyMetalsToWaterOrganicFertiliser"
2043
2043
  },
2044
2044
  {
2045
2045
  "@type": "Term",
2046
- "@id": "perfluoroethylFormateToAirIndustrialProcesses"
2046
+ "@id": "cis2HexeneToAirIndustrialProcesses"
2047
2047
  },
2048
2048
  {
2049
2049
  "@type": "Term",
2050
- "@id": "diisopropylEtherToAirIndustrialProcesses"
2050
+ "@id": "pesticideToFreshWaterInputsProduction"
2051
2051
  },
2052
2052
  {
2053
2053
  "@type": "Term",
2054
- "@id": "nmvocToAirExcreta"
2054
+ "@id": "pesticideToHarvestedCropPesticideApplication"
2055
2055
  },
2056
2056
  {
2057
2057
  "@type": "Term",
2058
- "@id": "pesticideToWaterInputsProduction"
2058
+ "@id": "2MethylpentaneToAirInputsProduction"
2059
2059
  },
2060
2060
  {
2061
2061
  "@type": "Term",
2062
- "@id": "undecaneToAirIndustrialProcesses"
2062
+ "@id": "nPropanolToAirIndustrialProcesses"
2063
2063
  },
2064
2064
  {
2065
2065
  "@type": "Term",
2066
- "@id": "2PentanoneToAirIndustrialProcesses"
2066
+ "@id": "1Ethyl35DimethylbenzeneToAirInputsProduction"
2067
2067
  },
2068
2068
  {
2069
2069
  "@type": "Term",
2070
- "@id": "4Hydroxy4Methylpentan2OneToAirIndustrialProcesses"
2070
+ "@id": "3MethylpentaneToAirIndustrialProcesses"
2071
2071
  },
2072
2072
  {
2073
2073
  "@type": "Term",
2074
- "@id": "benzaldehydeToAirIndustrialProcesses"
2074
+ "@id": "hexaneToAirInputsProduction"
2075
2075
  },
2076
2076
  {
2077
2077
  "@type": "Term",
2078
- "@id": "perfluoroethylFormateToAirInputsProduction"
2078
+ "@id": "3Methylbutan1OlToAirIndustrialProcesses"
2079
2079
  },
2080
2080
  {
2081
2081
  "@type": "Term",
2082
- "@id": "2BromopropaneToAirIndustrialProcesses"
2082
+ "@id": "methanolToAirInputsProduction"
2083
2083
  },
2084
2084
  {
2085
2085
  "@type": "Term",
2086
- "@id": "nButaneToAirIndustrialProcesses"
2086
+ "@id": "tspToAirIndustrialProcesses"
2087
2087
  },
2088
2088
  {
2089
2089
  "@type": "Term",
2090
- "@id": "pXyleneToAirIndustrialProcesses"
2090
+ "@id": "1BromoethaneToAirInputsProduction"
2091
2091
  },
2092
2092
  {
2093
2093
  "@type": "Term",
2094
- "@id": "ch4ToAirCropResidueDecomposition"
2094
+ "@id": "pfc6116ToAirInputsProduction"
2095
2095
  },
2096
2096
  {
2097
2097
  "@type": "Term",
2098
- "@id": "ch4ToAirInputsProductionNonFossil"
2098
+ "@id": "mXyleneToAirIndustrialProcesses"
2099
2099
  },
2100
2100
  {
2101
2101
  "@type": "Term",
2102
- "@id": "co2ToAirBelowGroundBiomassStockChangeLandUseChange"
2102
+ "@id": "methylEtherToAirIndustrialProcesses"
2103
2103
  },
2104
2104
  {
2105
2105
  "@type": "Term",
2106
- "@id": "n2OToAirNaturalVegetationBurningIndirect"
2106
+ "@id": "diethylKetoneToAirIndustrialProcesses"
2107
2107
  },
2108
2108
  {
2109
2109
  "@type": "Term",
2110
- "@id": "nh3ToSurfaceWaterInputsProduction"
2110
+ "@id": "3MethylhexaneToAirIndustrialProcesses"
2111
2111
  },
2112
2112
  {
2113
2113
  "@type": "Term",
2114
- "@id": "nToSurfaceWaterExcreta"
2114
+ "@id": "2NButoxy1EthanolToAirIndustrialProcesses"
2115
2115
  },
2116
2116
  {
2117
2117
  "@type": "Term",
2118
- "@id": "nh3ToAirWasteTreatment"
2118
+ "@id": "methylEthylKetoneToAirInputsProduction"
2119
2119
  },
2120
2120
  {
2121
2121
  "@type": "Term",
2122
- "@id": "ch4ToAirInputsProductionFossil"
2122
+ "@id": "hfe329Mcc2ToAirIndustrialProcesses"
2123
2123
  },
2124
2124
  {
2125
2125
  "@type": "Term",
2126
- "@id": "co2ToAirAboveGroundBiomassStockChangeManagementChange"
2126
+ "@id": "isobutanolToAirIndustrialProcesses"
2127
2127
  },
2128
2128
  {
2129
2129
  "@type": "Term",
2130
- "@id": "n2OToAirNaturalVegetationBurningDirect"
2130
+ "@id": "methylIsobutylKetoneToAirInputsProduction"
2131
2131
  },
2132
2132
  {
2133
2133
  "@type": "Term",
2134
- "@id": "co2ToAirCropResidueDecomposition"
2134
+ "@id": "undecaneToAirInputsProduction"
2135
2135
  },
2136
2136
  {
2137
2137
  "@type": "Term",
2138
- "@id": "co2ToAirOrganicSoilCultivation"
2138
+ "@id": "propyleneGlycolToAirInputsProduction"
2139
2139
  },
2140
2140
  {
2141
2141
  "@type": "Term",
2142
- "@id": "h2SToAirInputsProduction"
2142
+ "@id": "methylFormateToAirIndustrialProcesses"
2143
2143
  },
2144
2144
  {
2145
2145
  "@type": "Term",
2146
- "@id": "n2OToAirExcretaIndirect"
2146
+ "@id": "nh3ToAirFuelCombustion"
2147
2147
  },
2148
2148
  {
2149
2149
  "@type": "Term",
2150
- "@id": "ch4ToAirEntericFermentation"
2150
+ "@id": "nToSurfaceWaterAquacultureSystems"
2151
2151
  },
2152
2152
  {
2153
2153
  "@type": "Term",
2154
- "@id": "333Trifluoropropan1OlToAirInputsProduction"
2154
+ "@id": "co2ToAirAboveGroundBiomassStockChangeLandUseChange"
2155
2155
  },
2156
2156
  {
2157
2157
  "@type": "Term",
2158
- "@id": "po43ToGroundwaterInputsProduction"
2158
+ "@id": "co2ToAirSoilFlux"
2159
2159
  },
2160
2160
  {
2161
2161
  "@type": "Term",
2162
- "@id": "pToSoilCropResidueBurning"
2162
+ "@id": "n2ToAirOrganicFertiliser"
2163
2163
  },
2164
2164
  {
2165
2165
  "@type": "Term",
2166
- "@id": "pfc1216ToAirInputsProduction"
2166
+ "@id": "nh3ToGroundwaterExcreta"
2167
2167
  },
2168
2168
  {
2169
2169
  "@type": "Term",
2170
- "@id": "1BromoethaneToAirIndustrialProcesses"
2170
+ "@id": "ch4ToAirOrganicSoilCultivation"
2171
2171
  },
2172
2172
  {
2173
2173
  "@type": "Term",
2174
- "@id": "pfc6116ToAirIndustrialProcesses"
2174
+ "@id": "ch4ToAirIndustrialProcessesNonFossil"
2175
2175
  },
2176
2176
  {
2177
2177
  "@type": "Term",
2178
- "@id": "pfc7118ToAirIndustrialProcesses"
2178
+ "@id": "n2OToAirCropResidueBurningIndirect"
2179
2179
  },
2180
2180
  {
2181
2181
  "@type": "Term",
2182
- "@id": "pfc3110ToAirInputsProduction"
2182
+ "@id": "n2ToAirExcreta"
2183
2183
  },
2184
2184
  {
2185
2185
  "@type": "Term",
2186
- "@id": "sulphurTrifluoromethylPentafluorideToAirIndustrialProcesses"
2186
+ "@id": "1Ethoxy112333HexafluoropropaneToAirInputsProduction"
2187
2187
  },
2188
2188
  {
2189
2189
  "@type": "Term",
2190
- "@id": "sulphurTrifluoromethylPentafluorideToAirInputsProduction"
2190
+ "@id": "nh4ToGroundwaterOrganicFertiliser"
2191
2191
  },
2192
2192
  {
2193
2193
  "@type": "Term",
2194
- "@id": "octamethylcyclotetrasiloxaneToAirInputsProduction"
2194
+ "@id": "noxToAirFuelCombustion"
2195
2195
  },
2196
2196
  {
2197
2197
  "@type": "Term",
2198
- "@id": "pfc5114ToAirInputsProduction"
2198
+ "@id": "22Dichloro111TrifluoroethaneToAirIndustrialProcesses"
2199
2199
  },
2200
2200
  {
2201
2201
  "@type": "Term",
2202
- "@id": "224466881010Decamethyl13579246810PentoxapentasilecaneToAirInputsProduction"
2202
+ "@id": "pfc218ToAirIndustrialProcesses"
2203
2203
  },
2204
2204
  {
2205
2205
  "@type": "Term",
2206
- "@id": "1ChlorobutaneToAirInputsProduction"
2206
+ "@id": "pfc1114ToAirInputsProduction"
2207
2207
  },
2208
2208
  {
2209
2209
  "@type": "Term",
2210
- "@id": "pfc116ToAirInputsProduction"
2210
+ "@id": "pfc9118ToAirIndustrialProcesses"
2211
2211
  },
2212
2212
  {
2213
2213
  "@type": "Term",
2214
- "@id": "pfpmieToAirInputsProduction"
2214
+ "@id": "1ChlorobutaneToAirIndustrialProcesses"
2215
2215
  },
2216
2216
  {
2217
2217
  "@type": "Term",
2218
- "@id": "3Ethoxy111234455666Dodecafluoro2TrifluoromethylHexaneToAirInputsProduction"
2218
+ "@id": "2333Tetrafluoro2TrifluoromethylPropanenitrileToAirIndustrialProcesses"
2219
2219
  },
2220
2220
  {
2221
2221
  "@type": "Term",
2222
- "@id": "nButaneToAirInputsProduction"
2222
+ "@id": "pfc5114ToAirIndustrialProcesses"
2223
2223
  },
2224
2224
  {
2225
2225
  "@type": "Term",
2226
- "@id": "123TrimethylbenzeneToAirIndustrialProcesses"
2226
+ "@id": "1PropylbromideToAirIndustrialProcesses"
2227
2227
  },
2228
2228
  {
2229
2229
  "@type": "Term",
2230
- "@id": "2MethylpentaneToAirIndustrialProcesses"
2230
+ "@id": "2BromopropaneToAirInputsProduction"
2231
2231
  },
2232
2232
  {
2233
2233
  "@type": "Term",
2234
- "@id": "isobutyraldehydeToAirIndustrialProcesses"
2234
+ "@id": "trichloroetheneToAirIndustrialProcesses"
2235
2235
  },
2236
2236
  {
2237
2237
  "@type": "Term",
2238
- "@id": "hcfc121ToAirInputsProduction"
2238
+ "@id": "trichloroetheneToAirInputsProduction"
2239
2239
  },
2240
2240
  {
2241
2241
  "@type": "Term",
2242
- "@id": "2Methyl2PropanolToAirIndustrialProcesses"
2242
+ "@id": "124TrimethylbenzeneToAirIndustrialProcesses"
2243
2243
  },
2244
2244
  {
2245
2245
  "@type": "Term",
2246
- "@id": "cis2PenteneToAirIndustrialProcesses"
2246
+ "@id": "dimethoxymethaneToAirIndustrialProcesses"
2247
2247
  },
2248
2248
  {
2249
2249
  "@type": "Term",
2250
- "@id": "1ButeneToAirIndustrialProcesses"
2250
+ "@id": "1Ethyl2MethylbenzeneToAirIndustrialProcesses"
2251
2251
  },
2252
2252
  {
2253
2253
  "@type": "Term",
2254
- "@id": "decaneToAirIndustrialProcesses"
2254
+ "@id": "tetrachloroetheneToAirInputsProduction"
2255
2255
  },
2256
2256
  {
2257
2257
  "@type": "Term",
2258
- "@id": "pfc1216ToAirIndustrialProcesses"
2258
+ "@id": "hcfc31ToAirIndustrialProcesses"
2259
2259
  },
2260
2260
  {
2261
2261
  "@type": "Term",
2262
- "@id": "pfc1114ToAirIndustrialProcesses"
2262
+ "@id": "2Methyl1PropeneToAirIndustrialProcesses"
2263
2263
  },
2264
2264
  {
2265
2265
  "@type": "Term",
2266
- "@id": "pfc218ToAirInputsProduction"
2266
+ "@id": "3Ethoxy111234455666Dodecafluoro2TrifluoromethylHexaneToAirIndustrialProcesses"
2267
2267
  },
2268
2268
  {
2269
2269
  "@type": "Term",
2270
- "@id": "heavyMetalsToWaterExcreta"
2270
+ "@id": "2ButanolToAirIndustrialProcesses"
2271
2271
  },
2272
2272
  {
2273
2273
  "@type": "Term",
2274
- "@id": "benzeneToAirIndustrialProcesses"
2274
+ "@id": "hcfc31ToAirInputsProduction"
2275
2275
  },
2276
2276
  {
2277
2277
  "@type": "Term",
2278
- "@id": "3MethylpentaneToAirInputsProduction"
2278
+ "@id": "tolueneToAirIndustrialProcesses"
2279
2279
  },
2280
2280
  {
2281
2281
  "@type": "Term",
2282
- "@id": "cumeneToAirInputsProduction"
2282
+ "@id": "2Methyl2ButanolToAirInputsProduction"
2283
2283
  },
2284
2284
  {
2285
2285
  "@type": "Term",
2286
- "@id": "methylEthylKetoneToAirIndustrialProcesses"
2286
+ "@id": "pesticideToHarvestedCropInputsProduction"
2287
2287
  },
2288
2288
  {
2289
2289
  "@type": "Term",
2290
- "@id": "ethaneToAirInputsProduction"
2290
+ "@id": "diethylEtherToAirInputsProduction"
2291
2291
  },
2292
2292
  {
2293
2293
  "@type": "Term",
2294
- "@id": "nf3ToAirInputsProduction"
2294
+ "@id": "ethylAcetateToAirInputsProduction"
2295
2295
  },
2296
2296
  {
2297
2297
  "@type": "Term",
2298
- "@id": "35DiethyltolueneToAirIndustrialProcesses"
2298
+ "@id": "pesticideToSoilAgriculturalInputsProduction"
2299
2299
  },
2300
2300
  {
2301
2301
  "@type": "Term",
2302
- "@id": "styreneToAirInputsProduction"
2302
+ "@id": "formaldehydeToAirIndustrialProcesses"
2303
2303
  },
2304
2304
  {
2305
2305
  "@type": "Term",
2306
- "@id": "nmvocToAirSilageFeeding"
2306
+ "@id": "pentaneToAirIndustrialProcesses"
2307
2307
  },
2308
2308
  {
2309
2309
  "@type": "Term",
2310
- "@id": "2ButeneTransToAirInputsProduction"
2310
+ "@id": "12DibromotetrafluoroethaneToAirIndustrialProcesses"
2311
2311
  },
2312
2312
  {
2313
2313
  "@type": "Term",
2314
- "@id": "pesticideToAirOtherHigherAltitudesInputsProduction"
2314
+ "@id": "isopreneToAirInputsProduction"
2315
2315
  },
2316
2316
  {
2317
2317
  "@type": "Term",
2318
- "@id": "pm10ToAirAnimalHousing"
2318
+ "@id": "ethylBenzeneToAirIndustrialProcesses"
2319
2319
  },
2320
2320
  {
2321
2321
  "@type": "Term",
2322
- "@id": "pesticideToSoilInputsProduction"
2322
+ "@id": "EHfc1234ZeToAirInputsProduction"
2323
2323
  },
2324
2324
  {
2325
2325
  "@type": "Term",
2326
- "@id": "12DibromotetrafluoroethaneToAirInputsProduction"
2326
+ "@id": "pToSoilCropResidueDecomposition"
2327
2327
  },
2328
2328
  {
2329
2329
  "@type": "Term",
2330
- "@id": "4EthyltolueneToAirIndustrialProcesses"
2330
+ "@id": "ZHfc1225YeToAirIndustrialProcesses"
2331
2331
  },
2332
2332
  {
2333
2333
  "@type": "Term",
2334
- "@id": "hfe329Mcc2ToAirInputsProduction"
2334
+ "@id": "difluoroMethoxyMethaneToAirIndustrialProcesses"
2335
2335
  },
2336
2336
  {
2337
2337
  "@type": "Term",
2338
- "@id": "trans12DichloroethyleneToAirIndustrialProcesses"
2338
+ "@id": "noToAirWasteTreatment"
2339
2339
  },
2340
2340
  {
2341
2341
  "@type": "Term",
2342
- "@id": "secButylacetateToAirIndustrialProcesses"
2342
+ "@id": "noToAirSoilFlux"
2343
2343
  },
2344
2344
  {
2345
2345
  "@type": "Term",
2346
- "@id": "pToSurfaceWaterAquacultureSystems"
2346
+ "@id": "noxToAirCropResidueDecomposition"
2347
2347
  },
2348
2348
  {
2349
2349
  "@type": "Term",
2350
- "@id": "pErosionSoilFlux"
2350
+ "@id": "co2ToAirSoilOrganicCarbonStockChangeLandUseChange"
2351
2351
  },
2352
2352
  {
2353
2353
  "@type": "Term",
2354
- "@id": "co2ToAirWasteTreatment"
2354
+ "@id": "hfc227CaToAirIndustrialProcesses"
2355
2355
  },
2356
2356
  {
2357
2357
  "@type": "Term",
2358
- "@id": "11Dichloro1FluoroethaneToAirIndustrialProcesses"
2358
+ "@id": "hfc245EbToAirInputsProduction"
2359
2359
  },
2360
2360
  {
2361
2361
  "@type": "Term",
2362
- "@id": "blackCarbonToAirIndustrialProcesses"
2362
+ "@id": "hfc245EaToAirIndustrialProcesses"
2363
2363
  },
2364
2364
  {
2365
2365
  "@type": "Term",
2366
- "@id": "no3ToGroundwaterOrganicFertiliser"
2366
+ "@id": "hfe227EaToAirInputsProduction"
2367
2367
  },
2368
2368
  {
2369
2369
  "@type": "Term",
2370
- "@id": "444Trifluorobutan1OlToAirIndustrialProcesses"
2370
+ "@id": "hfc125ToAirInputsProduction"
2371
2371
  },
2372
2372
  {
2373
2373
  "@type": "Term",
2374
- "@id": "no3ToSurfaceWaterInputsProduction"
2374
+ "@id": "EHfc1225YeToAirIndustrialProcesses"
2375
2375
  },
2376
2376
  {
2377
2377
  "@type": "Term",
2378
- "@id": "po43ToSoilInputsProduction"
2378
+ "@id": "perfluorodecalinCisToAirIndustrialProcesses"
2379
2379
  },
2380
2380
  {
2381
2381
  "@type": "Term",
2382
- "@id": "hg01ToAirIndustrialProcesses"
2382
+ "@id": "222TrifluoroethanolToAirInputsProduction"
2383
2383
  },
2384
2384
  {
2385
2385
  "@type": "Term",
2386
- "@id": "hfc236CbToAirIndustrialProcesses"
2386
+ "@id": "hfe356Mff2ToAirInputsProduction"
2387
2387
  },
2388
2388
  {
2389
2389
  "@type": "Term",
2390
- "@id": "hfc134ToAirInputsProduction"
2390
+ "@id": "33445566778899101010HepTadecafluorodec1EneToAirInputsProduction"
2391
2391
  },
2392
2392
  {
2393
2393
  "@type": "Term",
2394
- "@id": "33445566777Undecafluoroheptan1OlToAirInputsProduction"
2394
+ "@id": "noxToAirOrganicSoilCultivation"
2395
2395
  },
2396
2396
  {
2397
2397
  "@type": "Term",
2398
- "@id": "444Trifluorobutan1OlToAirInputsProduction"
2398
+ "@id": "po43ToSurfaceWaterInputsProduction"
2399
2399
  },
2400
2400
  {
2401
2401
  "@type": "Term",
2402
- "@id": "ZHfc1225YeToAirInputsProduction"
2402
+ "@id": "no3ToAirIndustrialProcesses"
2403
2403
  },
2404
2404
  {
2405
2405
  "@type": "Term",
2406
- "@id": "pToSoilExcreta"
2406
+ "@id": "bromomethaneToAirIndustrialProcesses"
2407
2407
  },
2408
2408
  {
2409
2409
  "@type": "Term",
2410
- "@id": "halothaneToAirIndustrialProcesses"
2410
+ "@id": "noToAirAquacultureSystems"
2411
2411
  },
2412
2412
  {
2413
2413
  "@type": "Term",
2414
- "@id": "phosphoricAcidToSoilInputsProduction"
2414
+ "@id": "hfe216ToAirInputsProduction"
2415
2415
  },
2416
2416
  {
2417
2417
  "@type": "Term",
2418
- "@id": "bromodifluoromethaneToAirIndustrialProcesses"
2418
+ "@id": "iHfe7200ToAirIndustrialProcesses"
2419
2419
  },
2420
2420
  {
2421
2421
  "@type": "Term",
2422
- "@id": "dibromodifluoromethaneToAirIndustrialProcesses"
2422
+ "@id": "hfe245Fa2ToAirInputsProduction"
2423
2423
  },
2424
2424
  {
2425
2425
  "@type": "Term",
2426
- "@id": "1112TetrafluoroethaneToAirIndustrialProcesses"
2426
+ "@id": "2233444Heptafluoro1ButanolToAirIndustrialProcesses"
2427
2427
  },
2428
2428
  {
2429
2429
  "@type": "Term",
2430
- "@id": "hfc161ToAirIndustrialProcesses"
2430
+ "@id": "EHfc1234ZeToAirIndustrialProcesses"
2431
2431
  },
2432
2432
  {
2433
2433
  "@type": "Term",
2434
- "@id": "perfluorodecalinCisToAirInputsProduction"
2434
+ "@id": "chloroformToAirInputsProduction"
2435
2435
  },
2436
2436
  {
2437
2437
  "@type": "Term",
2438
- "@id": "111TrifluoroethaneToAirInputsProduction"
2438
+ "@id": "hfe338Mmz1ToAirIndustrialProcesses"
2439
2439
  },
2440
2440
  {
2441
2441
  "@type": "Term",
2442
- "@id": "hfc143ToAirInputsProduction"
2442
+ "@id": "33445566777Undecafluoroheptan1OlToAirIndustrialProcesses"
2443
2443
  },
2444
2444
  {
2445
2445
  "@type": "Term",
2446
- "@id": "dibromomethaneToAirInputsProduction"
2446
+ "@id": "ZHfc1234ZeToAirIndustrialProcesses"
2447
2447
  },
2448
2448
  {
2449
2449
  "@type": "Term",
2450
- "@id": "hfc1243ZfToAirIndustrialProcesses"
2450
+ "@id": "pToSurfaceWaterSoilFlux"
2451
2451
  },
2452
2452
  {
2453
2453
  "@type": "Term",
2454
- "@id": "22333Pentafluoropropan1OlToAirInputsProduction"
2454
+ "@id": "dibromodifluoromethaneToAirInputsProduction"
2455
2455
  },
2456
2456
  {
2457
2457
  "@type": "Term",
2458
- "@id": "2FluoroethanolToAirIndustrialProcesses"
2458
+ "@id": "bromomethaneToAirInputsProduction"
2459
2459
  },
2460
2460
  {
2461
2461
  "@type": "Term",
2462
- "@id": "hfe347Mcc3ToAirInputsProduction"
2462
+ "@id": "pToGroundwaterSoilFlux"
2463
2463
  },
2464
2464
  {
2465
2465
  "@type": "Term",
2466
- "@id": "pToDrainageWaterIndustrialProcesses"
2466
+ "@id": "phosphoricAcidToGroundwaterInputsProduction"
2467
2467
  },
2468
2468
  {
2469
2469
  "@type": "Term",
2470
- "@id": "dichlorotetrafluoroethaneToAirInputsProduction"
2470
+ "@id": "ch4ToAirFuelCombustion"
2471
2471
  },
2472
2472
  {
2473
2473
  "@type": "Term",
2474
- "@id": "no3ToGroundwaterInputsProduction"
2474
+ "@id": "ch4ToAirWasteTreatment"
2475
2475
  },
2476
2476
  {
2477
2477
  "@type": "Term",
2478
- "@id": "noxToAirInputsProduction"
2478
+ "@id": "co2ToAirDeadOrganicMatterStockChangeLandUseChange"
2479
2479
  },
2480
2480
  {
2481
2481
  "@type": "Term",
2482
- "@id": "nh3ToAirOrganicFertiliser"
2482
+ "@id": "co2ToAirSoilOrganicCarbonStockChangeManagementChange"
2483
2483
  },
2484
2484
  {
2485
2485
  "@type": "Term",
2486
- "@id": "n2ToAirCropResidueDecomposition"
2486
+ "@id": "hfc161ToAirInputsProduction"
2487
2487
  },
2488
2488
  {
2489
2489
  "@type": "Term",
2490
- "@id": "n2OToAirOrganicFertiliserDirect"
2490
+ "@id": "hcfc122ToAirInputsProduction"
2491
2491
  },
2492
2492
  {
2493
2493
  "@type": "Term",
2494
- "@id": "hfc1234YfToAirIndustrialProcesses"
2494
+ "@id": "hfe236FaToAirInputsProduction"
2495
2495
  },
2496
2496
  {
2497
2497
  "@type": "Term",
2498
- "@id": "hcfc122AToAirIndustrialProcesses"
2498
+ "@id": "hfe347Mcf2ToAirInputsProduction"
2499
2499
  },
2500
2500
  {
2501
2501
  "@type": "Term",
2502
- "@id": "hfe143AToAirIndustrialProcesses"
2502
+ "@id": "ZHfc1336ToAirInputsProduction"
2503
2503
  },
2504
2504
  {
2505
2505
  "@type": "Term",
2506
- "@id": "222TrifluoroethylFormateToAirIndustrialProcesses"
2506
+ "@id": "11Oxybis2Difluoromethoxy1122TetrafluoroethaneToAirInputsProduction"
2507
2507
  },
2508
2508
  {
2509
2509
  "@type": "Term",
2510
- "@id": "pToGroundwaterInputsProduction"
2510
+ "@id": "333Trifluoropropan1OlToAirIndustrialProcesses"
2511
2511
  },
2512
2512
  {
2513
2513
  "@type": "Term",
2514
- "@id": "nh3ToGroundwaterInorganicFertiliser"
2514
+ "@id": "223444Hexafluoro1ButanolToAirIndustrialProcesses"
2515
2515
  },
2516
2516
  {
2517
2517
  "@type": "Term",
2518
- "@id": "noxToAirExcreta"
2518
+ "@id": "hfc245CaToAirIndustrialProcesses"
2519
2519
  },
2520
2520
  {
2521
2521
  "@type": "Term",
2522
- "@id": "po43ToSurfaceWaterAquacultureSystems"
2522
+ "@id": "3344556677888Tridecafluorooct1EneToAirIndustrialProcesses"
2523
2523
  },
2524
2524
  {
2525
2525
  "@type": "Term",
2526
- "@id": "blackCarbonToAirFuelCombustion"
2526
+ "@id": "223444Hexafluoro1ButanolToAirInputsProduction"
2527
2527
  },
2528
2528
  {
2529
2529
  "@type": "Term",
2530
- "@id": "po43ToSurfaceWaterIndustrialProcesses"
2530
+ "@id": "hfc152AToAirInputsProduction"
2531
2531
  },
2532
2532
  {
2533
2533
  "@type": "Term",
2534
- "@id": "nh4ToGroundwaterSoilFlux"
2534
+ "@id": "so2ToAirIndustrialProcesses"
2535
2535
  },
2536
2536
  {
2537
2537
  "@type": "Term",
2538
- "@id": "nh4ToSurfaceWaterInputsProduction"
2538
+ "@id": "1Chloro11DifluoroethaneToAirInputsProduction"
2539
2539
  },
2540
2540
  {
2541
2541
  "@type": "Term",
2542
- "@id": "ch4ToAirFloodedRice"
2542
+ "@id": "112TrichlorotrifluoroethaneToAirIndustrialProcesses"
2543
2543
  },
2544
2544
  {
2545
2545
  "@type": "Term",
2546
- "@id": "perfluorocyclopenteneToAirIndustrialProcesses"
2546
+ "@id": "22Dichloro111TrifluoroethaneToAirInputsProduction"
2547
2547
  },
2548
2548
  {
2549
2549
  "@type": "Term",
2550
- "@id": "perfluorobuta13DieneToAirInputsProduction"
2550
+ "@id": "noxToAirInorganicFertiliser"
2551
2551
  },
2552
2552
  {
2553
2553
  "@type": "Term",
2554
- "@id": "hfe347Mcc3ToAirIndustrialProcesses"
2554
+ "@id": "chloropentafluoroethaneToAirInputsProduction"
2555
2555
  },
2556
2556
  {
2557
2557
  "@type": "Term",
2558
- "@id": "hfc134ToAirIndustrialProcesses"
2558
+ "@id": "po43ToSoilIndustrialProcesses"
2559
2559
  },
2560
2560
  {
2561
2561
  "@type": "Term",
2562
- "@id": "perfluorocyclopenteneToAirInputsProduction"
2562
+ "@id": "n2OToAirCropResidueDecompositionDirect"
2563
2563
  },
2564
2564
  {
2565
2565
  "@type": "Term",
2566
- "@id": "2233Tetrafluoro1PropanolToAirIndustrialProcesses"
2566
+ "@id": "nh3ToAirInputsProduction"
2567
2567
  },
2568
2568
  {
2569
2569
  "@type": "Term",
2570
- "@id": "1112333HeptafluoropropaneToAirInputsProduction"
2570
+ "@id": "hcfc21ToAirIndustrialProcesses"
2571
2571
  },
2572
2572
  {
2573
2573
  "@type": "Term",
2574
- "@id": "E1Chloro333Trifluoroprop1EneToAirInputsProduction"
2574
+ "@id": "hfe216ToAirIndustrialProcesses"
2575
2575
  },
2576
2576
  {
2577
2577
  "@type": "Term",
2578
- "@id": "noxToAirOrganicSoilBurning"
2578
+ "@id": "hfc143ToAirIndustrialProcesses"
2579
2579
  },
2580
2580
  {
2581
2581
  "@type": "Term",
2582
- "@id": "112TrichloroethaneToAirInputsProduction"
2582
+ "@id": "hfe245Fa1ToAirInputsProduction"
2583
2583
  },
2584
2584
  {
2585
2585
  "@type": "Term",
2586
- "@id": "co2ToAirFuelCombustion"
2586
+ "@id": "hfe356Mmz1ToAirIndustrialProcesses"
2587
2587
  },
2588
2588
  {
2589
2589
  "@type": "Term",
2590
- "@id": "112TrichlorotrifluoroethaneToAirInputsProduction"
2590
+ "@id": "trichlorofluoromethaneToAirIndustrialProcesses"
2591
2591
  },
2592
2592
  {
2593
2593
  "@type": "Term",
2594
- "@id": "chloromethaneToAirIndustrialProcesses"
2594
+ "@id": "hfe236Ea2ToAirInputsProduction"
2595
2595
  },
2596
2596
  {
2597
2597
  "@type": "Term",
2598
- "@id": "n2OToAirInorganicFertiliserDirect"
2598
+ "@id": "111TrifluoroethaneToAirIndustrialProcesses"
2599
2599
  },
2600
2600
  {
2601
2601
  "@type": "Term",
2602
- "@id": "nh3ToGroundwaterCropResidueDecomposition"
2602
+ "@id": "hfe254Cb2ToAirInputsProduction"
2603
2603
  },
2604
2604
  {
2605
2605
  "@type": "Term",
2606
- "@id": "nh3ToAirSoilFlux"
2606
+ "@id": "1122Tetrafluoro3MethoxyPropaneToAirIndustrialProcesses"
2607
2607
  },
2608
2608
  {
2609
2609
  "@type": "Term",
2610
- "@id": "hfc227CaToAirInputsProduction"
2610
+ "@id": "so3ToAirIndustrialProcesses"
2611
2611
  },
2612
2612
  {
2613
2613
  "@type": "Term",
2614
- "@id": "hfc365MfcToAirInputsProduction"
2614
+ "@id": "hfe263M1ToAirIndustrialProcesses"
2615
2615
  },
2616
2616
  {
2617
2617
  "@type": "Term",
2618
- "@id": "hfc245CbToAirInputsProduction"
2618
+ "@id": "2Chloro112Trifluoro1MethoxyethaneToAirInputsProduction"
2619
2619
  },
2620
2620
  {
2621
2621
  "@type": "Term",
2622
- "@id": "hfc1345ZfcToAirInputsProduction"
2622
+ "@id": "co2ToAirSoilInorganicCarbonStockChangeLandUseChange"
2623
2623
  },
2624
2624
  {
2625
2625
  "@type": "Term",
2626
- "@id": "hcfc122AToAirInputsProduction"
2626
+ "@id": "po43ToSurfaceWaterSoilFlux"
2627
2627
  },
2628
2628
  {
2629
2629
  "@type": "Term",
2630
- "@id": "soxToAirInputsProduction"
2630
+ "@id": "n2OToAirExcretaDirect"
2631
2631
  },
2632
2632
  {
2633
2633
  "@type": "Term",
2634
- "@id": "ch4ToAirReservoirs"
2634
+ "@id": "nh4ToGroundwaterInorganicFertiliser"
2635
2635
  },
2636
2636
  {
2637
2637
  "@type": "Term",
2638
- "@id": "n2ToAirInorganicFertiliser"
2638
+ "@id": "coToAirNaturalVegetationBurning"
2639
2639
  },
2640
2640
  {
2641
2641
  "@type": "Term",
2642
- "@id": "pesticideToSoilNonAgriculturalInputsProduction"
2642
+ "@id": "hfc245EbToAirIndustrialProcesses"
2643
2643
  },
2644
2644
  {
2645
2645
  "@type": "Term",
2646
- "@id": "octaneToAirInputsProduction"
2646
+ "@id": "hfc1141ToAirIndustrialProcesses"
2647
2647
  },
2648
2648
  {
2649
2649
  "@type": "Term",
2650
- "@id": "decaneToAirInputsProduction"
2650
+ "@id": "halon2301ToAirInputsProduction"
2651
2651
  },
2652
2652
  {
2653
2653
  "@type": "Term",
2654
- "@id": "pm0225ToAirIndustrialProcesses"
2654
+ "@id": "perfluorobuta13DieneToAirIndustrialProcesses"
2655
2655
  },
2656
2656
  {
2657
2657
  "@type": "Term",
2658
- "@id": "1PropylbromideToAirInputsProduction"
2658
+ "@id": "iHfe7100ToAirIndustrialProcesses"
2659
2659
  },
2660
2660
  {
2661
2661
  "@type": "Term",
2662
- "@id": "trans2PenteneToAirIndustrialProcesses"
2662
+ "@id": "E1Chloro333Trifluoroprop1EneToAirIndustrialProcesses"
2663
2663
  },
2664
2664
  {
2665
2665
  "@type": "Term",
2666
- "@id": "2ButeneCisToAirIndustrialProcesses"
2666
+ "@id": "hg01ToAirInputsProduction"
2667
2667
  },
2668
2668
  {
2669
2669
  "@type": "Term",
2670
- "@id": "224466Hexamethyl135246TrioxatrisilinaneToAirInputsProduction"
2670
+ "@id": "fluoroxeneToAirInputsProduction"
2671
2671
  },
2672
2672
  {
2673
2673
  "@type": "Term",
2674
- "@id": "trans2HexeneToAirIndustrialProcesses"
2674
+ "@id": "333TrifluoroPropanalToAirInputsProduction"
2675
2675
  },
2676
2676
  {
2677
2677
  "@type": "Term",
2678
- "@id": "pm25ToAirCropResidueBurning"
2678
+ "@id": "111333Hexafluoro2PropanolToAirInputsProduction"
2679
2679
  },
2680
2680
  {
2681
2681
  "@type": "Term",
2682
- "@id": "22334455OctafluorocyclopentanolToAirIndustrialProcesses"
2682
+ "@id": "n2OToAirFuelCombustionDirect"
2683
2683
  },
2684
2684
  {
2685
2685
  "@type": "Term",
2686
- "@id": "tertButylAcetateToAirIndustrialProcesses"
2686
+ "@id": "n2OToAirInputsProduction"
2687
2687
  },
2688
2688
  {
2689
2689
  "@type": "Term",
2690
- "@id": "tspToAirInputsProduction"
2690
+ "@id": "benzeneToAirInputsProduction"
2691
2691
  },
2692
2692
  {
2693
2693
  "@type": "Term",
2694
- "@id": "pm10ToAirInputsProduction"
2694
+ "@id": "ethanolToAirInputsProduction"
2695
2695
  },
2696
2696
  {
2697
2697
  "@type": "Term",
2698
- "@id": "pfc4112ToAirIndustrialProcesses"
2698
+ "@id": "propyleneGlycolToAirIndustrialProcesses"
2699
2699
  },
2700
2700
  {
2701
2701
  "@type": "Term",
2702
- "@id": "nmvocToAirWasteTreatment"
2702
+ "@id": "benzaldehydeToAirInputsProduction"
2703
2703
  },
2704
2704
  {
2705
2705
  "@type": "Term",
2706
- "@id": "cyclohexaneToAirIndustrialProcesses"
2706
+ "@id": "33Dichloro11122PentafluoropropaneToAirIndustrialProcesses"
2707
2707
  },
2708
2708
  {
2709
2709
  "@type": "Term",
2710
- "@id": "pentanalToAirIndustrialProcesses"
2710
+ "@id": "pesticideToWaterPesticideApplication"
2711
2711
  },
2712
2712
  {
2713
2713
  "@type": "Term",
2714
- "@id": "tspToAirFuelCombustion"
2714
+ "@id": "pm25ToAirAnimalHousing"
2715
2715
  },
2716
2716
  {
2717
2717
  "@type": "Term",
2718
- "@id": "acetoneToAirIndustrialProcesses"
2718
+ "@id": "methylIsopropylKetoneToAirIndustrialProcesses"
2719
2719
  },
2720
2720
  {
2721
2721
  "@type": "Term",
2722
- "@id": "pinacolinToAirInputsProduction"
2722
+ "@id": "nitriteToAirInputsProduction"
2723
2723
  },
2724
2724
  {
2725
2725
  "@type": "Term",
2726
- "@id": "heavyMetalsToWaterFuelCombustion"
2726
+ "@id": "nmvocToAirSilageStorage"
2727
2727
  },
2728
2728
  {
2729
2729
  "@type": "Term",
2730
- "@id": "cyclohexanoneToAirInputsProduction"
2730
+ "@id": "propanalToAirInputsProduction"
2731
2731
  },
2732
2732
  {
2733
2733
  "@type": "Term",
2734
- "@id": "heavyMetalsToWaterOrganicFertiliser"
2734
+ "@id": "4EthyltolueneToAirInputsProduction"
2735
2735
  },
2736
2736
  {
2737
2737
  "@type": "Term",
2738
- "@id": "cis2HexeneToAirIndustrialProcesses"
2738
+ "@id": "isopentaneToAirIndustrialProcesses"
2739
2739
  },
2740
2740
  {
2741
2741
  "@type": "Term",
2742
- "@id": "pesticideToFreshWaterInputsProduction"
2742
+ "@id": "nButylAcetateToAirIndustrialProcesses"
2743
2743
  },
2744
2744
  {
2745
2745
  "@type": "Term",
2746
- "@id": "pesticideToHarvestedCropPesticideApplication"
2746
+ "@id": "dimethylCarbonateToAirInputsProduction"
2747
2747
  },
2748
2748
  {
2749
2749
  "@type": "Term",
2750
- "@id": "2MethylpentaneToAirInputsProduction"
2750
+ "@id": "pesticideToAirIndoorPesticideApplication"
2751
2751
  },
2752
2752
  {
2753
2753
  "@type": "Term",
2754
- "@id": "nPropanolToAirIndustrialProcesses"
2754
+ "@id": "ethylBenzeneToAirInputsProduction"
2755
2755
  },
2756
2756
  {
2757
2757
  "@type": "Term",
2758
- "@id": "1Ethyl35DimethylbenzeneToAirInputsProduction"
2758
+ "@id": "methylIsopropylKetoneToAirInputsProduction"
2759
2759
  },
2760
2760
  {
2761
2761
  "@type": "Term",
2762
- "@id": "3MethylpentaneToAirIndustrialProcesses"
2762
+ "@id": "1PropylbenzeneToAirInputsProduction"
2763
2763
  },
2764
2764
  {
2765
2765
  "@type": "Term",
2766
- "@id": "hexaneToAirInputsProduction"
2766
+ "@id": "formicAcidToAirIndustrialProcesses"
2767
2767
  },
2768
2768
  {
2769
2769
  "@type": "Term",
2770
- "@id": "3Methylbutan1OlToAirIndustrialProcesses"
2770
+ "@id": "diethylEtherToAirIndustrialProcesses"
2771
2771
  },
2772
2772
  {
2773
2773
  "@type": "Term",
2774
- "@id": "methanolToAirInputsProduction"
2774
+ "@id": "isobutyraldehydeToAirInputsProduction"
2775
2775
  },
2776
2776
  {
2777
2777
  "@type": "Term",
2778
- "@id": "tspToAirIndustrialProcesses"
2778
+ "@id": "nmvocToAirAnimalHousing"
2779
2779
  },
2780
2780
  {
2781
2781
  "@type": "Term",
2782
- "@id": "1BromoethaneToAirInputsProduction"
2782
+ "@id": "nPropylAcetateToAirIndustrialProcesses"
2783
2783
  },
2784
2784
  {
2785
2785
  "@type": "Term",
2786
- "@id": "pfc6116ToAirInputsProduction"
2786
+ "@id": "heavyMetalsToWaterInorganicFertiliser"
2787
2787
  },
2788
2788
  {
2789
2789
  "@type": "Term",
2790
- "@id": "mXyleneToAirIndustrialProcesses"
2790
+ "@id": "ethyleneToAirIndustrialProcesses"
2791
2791
  },
2792
2792
  {
2793
2793
  "@type": "Term",
2794
- "@id": "methylEtherToAirIndustrialProcesses"
2794
+ "@id": "2Methyl1ButeneToAirIndustrialProcesses"
2795
2795
  },
2796
2796
  {
2797
2797
  "@type": "Term",
2798
- "@id": "diethylKetoneToAirIndustrialProcesses"
2798
+ "@id": "2Methyl1PropeneToAirInputsProduction"
2799
2799
  },
2800
2800
  {
2801
2801
  "@type": "Term",
2802
- "@id": "3MethylhexaneToAirIndustrialProcesses"
2802
+ "@id": "perfluoroethylFormateToAirIndustrialProcesses"
2803
2803
  },
2804
2804
  {
2805
2805
  "@type": "Term",
2806
- "@id": "2NButoxy1EthanolToAirIndustrialProcesses"
2806
+ "@id": "diisopropylEtherToAirIndustrialProcesses"
2807
2807
  },
2808
2808
  {
2809
2809
  "@type": "Term",
2810
- "@id": "methylEthylKetoneToAirInputsProduction"
2810
+ "@id": "nmvocToAirExcreta"
2811
2811
  },
2812
2812
  {
2813
2813
  "@type": "Term",
2814
- "@id": "hfe329Mcc2ToAirIndustrialProcesses"
2814
+ "@id": "pesticideToWaterInputsProduction"
2815
2815
  },
2816
2816
  {
2817
2817
  "@type": "Term",
2818
- "@id": "isobutanolToAirIndustrialProcesses"
2818
+ "@id": "undecaneToAirIndustrialProcesses"
2819
2819
  },
2820
2820
  {
2821
2821
  "@type": "Term",
2822
- "@id": "methylIsobutylKetoneToAirInputsProduction"
2822
+ "@id": "2PentanoneToAirIndustrialProcesses"
2823
2823
  },
2824
2824
  {
2825
2825
  "@type": "Term",
2826
- "@id": "undecaneToAirInputsProduction"
2826
+ "@id": "4Hydroxy4Methylpentan2OneToAirIndustrialProcesses"
2827
2827
  },
2828
2828
  {
2829
2829
  "@type": "Term",
2830
- "@id": "propyleneGlycolToAirInputsProduction"
2830
+ "@id": "benzaldehydeToAirIndustrialProcesses"
2831
2831
  },
2832
2832
  {
2833
2833
  "@type": "Term",
2834
- "@id": "methylFormateToAirIndustrialProcesses"
2834
+ "@id": "perfluoroethylFormateToAirInputsProduction"
2835
2835
  },
2836
2836
  {
2837
2837
  "@type": "Term",
@@ -3824,15 +3824,15 @@
3824
3824
  },
3825
3825
  {
3826
3826
  "@type": "Term",
3827
- "@id": "digestibleEnergyRuminants"
3827
+ "@id": "digestibleEnergyPigs"
3828
3828
  },
3829
3829
  {
3830
3830
  "@type": "Term",
3831
- "@id": "digestibleEnergyPigs"
3831
+ "@id": "digestibleEnergySalmonids"
3832
3832
  },
3833
3833
  {
3834
3834
  "@type": "Term",
3835
- "@id": "digestibleEnergySalmonids"
3835
+ "@id": "digestibleEnergyRuminants"
3836
3836
  },
3837
3837
  {
3838
3838
  "@type": "Term",
@@ -3913,11 +3913,11 @@
3913
3913
  "results": [
3914
3914
  {
3915
3915
  "@type": "Term",
3916
- "@id": "energyDigestibilityPoultry"
3916
+ "@id": "energyDigestibilityRabbits"
3917
3917
  },
3918
3918
  {
3919
3919
  "@type": "Term",
3920
- "@id": "energyDigestibilityRabbits"
3920
+ "@id": "energyDigestibilityPoultry"
3921
3921
  },
3922
3922
  {
3923
3923
  "@type": "Term",
@@ -3925,15 +3925,15 @@
3925
3925
  },
3926
3926
  {
3927
3927
  "@type": "Term",
3928
- "@id": "energyDigestibilityRuminants"
3928
+ "@id": "energyDigestibilityOtherAnimals"
3929
3929
  },
3930
3930
  {
3931
3931
  "@type": "Term",
3932
- "@id": "energyDigestibilitySalmonids"
3932
+ "@id": "energyDigestibilityRuminants"
3933
3933
  },
3934
3934
  {
3935
3935
  "@type": "Term",
3936
- "@id": "energyDigestibilityOtherAnimals"
3936
+ "@id": "energyDigestibilitySalmonids"
3937
3937
  },
3938
3938
  {
3939
3939
  "@type": "Term",
@@ -3950,11 +3950,11 @@
3950
3950
  "results": [
3951
3951
  {
3952
3952
  "@type": "Term",
3953
- "@id": "excretaDucksKgN"
3953
+ "@id": "excretaBuffaloKgN"
3954
3954
  },
3955
3955
  {
3956
3956
  "@type": "Term",
3957
- "@id": "excretaGoatsKgN"
3957
+ "@id": "excretaDeerKgN"
3958
3958
  },
3959
3959
  {
3960
3960
  "@type": "Term",
@@ -3962,27 +3962,27 @@
3962
3962
  },
3963
3963
  {
3964
3964
  "@type": "Term",
3965
- "@id": "excretaPoultryKgN"
3965
+ "@id": "excretaGoatsKgN"
3966
3966
  },
3967
3967
  {
3968
3968
  "@type": "Term",
3969
- "@id": "excretaBeefCattleExceptFeedlotFedKgN"
3969
+ "@id": "excretaPoultryKgN"
3970
3970
  },
3971
3971
  {
3972
3972
  "@type": "Term",
3973
- "@id": "excretaDeerKgN"
3973
+ "@id": "excretaBeefCattleExceptFeedlotFedKgN"
3974
3974
  },
3975
3975
  {
3976
3976
  "@type": "Term",
3977
- "@id": "excretaSolidAndLiquidFishCrustaceansKgN"
3977
+ "@id": "excretaDucksKgN"
3978
3978
  },
3979
3979
  {
3980
3980
  "@type": "Term",
3981
- "@id": "excretaBuffaloKgN"
3981
+ "@id": "excretaMixturesKgN"
3982
3982
  },
3983
3983
  {
3984
3984
  "@type": "Term",
3985
- "@id": "excretaTurkeysKgN"
3985
+ "@id": "excretaLiquidFishCrustaceansKgN"
3986
3986
  },
3987
3987
  {
3988
3988
  "@type": "Term",
@@ -3990,19 +3990,19 @@
3990
3990
  },
3991
3991
  {
3992
3992
  "@type": "Term",
3993
- "@id": "excretaLiquidFishCrustaceansKgN"
3993
+ "@id": "processedExcretaKgN"
3994
3994
  },
3995
3995
  {
3996
3996
  "@type": "Term",
3997
- "@id": "excretaMixturesKgN"
3997
+ "@id": "excretaTurkeysKgN"
3998
3998
  },
3999
3999
  {
4000
4000
  "@type": "Term",
4001
- "@id": "processedExcretaKgN"
4001
+ "@id": "excretaBeefCattleFeedlotFedKgN"
4002
4002
  },
4003
4003
  {
4004
4004
  "@type": "Term",
4005
- "@id": "excretaInsectsKgN"
4005
+ "@id": "excretaKgN"
4006
4006
  },
4007
4007
  {
4008
4008
  "@type": "Term",
@@ -4010,11 +4010,7 @@
4010
4010
  },
4011
4011
  {
4012
4012
  "@type": "Term",
4013
- "@id": "excretaKgN"
4014
- },
4015
- {
4016
- "@type": "Term",
4017
- "@id": "excretaBeefCattleFeedlotFedKgN"
4013
+ "@id": "excretaInsectsKgN"
4018
4014
  },
4019
4015
  {
4020
4016
  "@type": "Term",
@@ -4022,19 +4018,19 @@
4022
4018
  },
4023
4019
  {
4024
4020
  "@type": "Term",
4025
- "@id": "excretaPigsKgN"
4021
+ "@id": "excretaCamelsKgN"
4026
4022
  },
4027
4023
  {
4028
4024
  "@type": "Term",
4029
- "@id": "excretaDairyCattleKgN"
4025
+ "@id": "excretaHorsesMulesAndAssesKgN"
4030
4026
  },
4031
4027
  {
4032
4028
  "@type": "Term",
4033
- "@id": "excretaHorsesMulesAndAssesKgN"
4029
+ "@id": "excretaDairyCattleKgN"
4034
4030
  },
4035
4031
  {
4036
4032
  "@type": "Term",
4037
- "@id": "excretaCamelsKgN"
4033
+ "@id": "excretaPigsKgN"
4038
4034
  }
4039
4035
  ]
4040
4036
  },
@@ -4047,31 +4043,23 @@
4047
4043
  "results": [
4048
4044
  {
4049
4045
  "@type": "Term",
4050
- "@id": "excretaLiquidFishCrustaceansKgVs"
4051
- },
4052
- {
4053
- "@type": "Term",
4054
- "@id": "excretaGeeseKgVs"
4055
- },
4056
- {
4057
- "@type": "Term",
4058
- "@id": "excretaSolidAndLiquidFishCrustaceansKgVs"
4046
+ "@id": "excretaDairyCattleKgVs"
4059
4047
  },
4060
4048
  {
4061
4049
  "@type": "Term",
4062
- "@id": "excretaDairyCattleKgVs"
4050
+ "@id": "excretaLiquidFishCrustaceansKgVs"
4063
4051
  },
4064
4052
  {
4065
4053
  "@type": "Term",
4066
- "@id": "excretaCamelsKgVs"
4054
+ "@id": "excretaGeeseKgVs"
4067
4055
  },
4068
4056
  {
4069
4057
  "@type": "Term",
4070
- "@id": "excretaPigsKgVs"
4058
+ "@id": "excretaRabbitsKgVs"
4071
4059
  },
4072
4060
  {
4073
4061
  "@type": "Term",
4074
- "@id": "excretaDucksKgVs"
4062
+ "@id": "excretaSolidFishCrustaceansKgVs"
4075
4063
  },
4076
4064
  {
4077
4065
  "@type": "Term",
@@ -4079,11 +4067,11 @@
4079
4067
  },
4080
4068
  {
4081
4069
  "@type": "Term",
4082
- "@id": "excretaSolidFishCrustaceansKgVs"
4070
+ "@id": "excretaBuffaloKgVs"
4083
4071
  },
4084
4072
  {
4085
4073
  "@type": "Term",
4086
- "@id": "excretaRabbitsKgVs"
4074
+ "@id": "processedExcretaKgVs"
4087
4075
  },
4088
4076
  {
4089
4077
  "@type": "Term",
@@ -4095,19 +4083,23 @@
4095
4083
  },
4096
4084
  {
4097
4085
  "@type": "Term",
4098
- "@id": "processedExcretaKgVs"
4086
+ "@id": "excretaCamelsKgVs"
4099
4087
  },
4100
4088
  {
4101
4089
  "@type": "Term",
4102
- "@id": "excretaBuffaloKgVs"
4090
+ "@id": "excretaPigsKgVs"
4103
4091
  },
4104
4092
  {
4105
4093
  "@type": "Term",
4106
- "@id": "excretaKgVs"
4094
+ "@id": "excretaDucksKgVs"
4107
4095
  },
4108
4096
  {
4109
4097
  "@type": "Term",
4110
- "@id": "excretaGoatsKgVs"
4098
+ "@id": "excretaPoultryKgVs"
4099
+ },
4100
+ {
4101
+ "@type": "Term",
4102
+ "@id": "excretaSheepKgVs"
4111
4103
  },
4112
4104
  {
4113
4105
  "@type": "Term",
@@ -4115,11 +4107,11 @@
4115
4107
  },
4116
4108
  {
4117
4109
  "@type": "Term",
4118
- "@id": "excretaSheepKgVs"
4110
+ "@id": "excretaGoatsKgVs"
4119
4111
  },
4120
4112
  {
4121
4113
  "@type": "Term",
4122
- "@id": "excretaPoultryKgVs"
4114
+ "@id": "excretaBeefCattleExceptFeedlotFedKgVs"
4123
4115
  },
4124
4116
  {
4125
4117
  "@type": "Term",
@@ -4131,7 +4123,7 @@
4131
4123
  },
4132
4124
  {
4133
4125
  "@type": "Term",
4134
- "@id": "excretaBeefCattleExceptFeedlotFedKgVs"
4126
+ "@id": "excretaKgVs"
4135
4127
  }
4136
4128
  ]
4137
4129
  },
@@ -4188,7 +4180,7 @@
4188
4180
  "@type": "Term",
4189
4181
  "name": "Generic crop, seed",
4190
4182
  "@id": "genericCropSeed",
4191
- "_score": 24.323473
4183
+ "_score": 22.86008
4192
4184
  }
4193
4185
  ]
4194
4186
  },
@@ -4344,15 +4336,19 @@
4344
4336
  },
4345
4337
  {
4346
4338
  "@type": "Term",
4347
- "@id": "waterMunicipalTap"
4339
+ "@id": "waterSourceUnspecified"
4348
4340
  },
4349
4341
  {
4350
4342
  "@type": "Term",
4351
- "@id": "waterSourceUnspecified"
4343
+ "@id": "waterIrrigationCanal"
4352
4344
  },
4353
4345
  {
4354
4346
  "@type": "Term",
4355
- "@id": "waterIrrigationCanal"
4347
+ "@id": "waterMunicipalTap"
4348
+ },
4349
+ {
4350
+ "@type": "Term",
4351
+ "@id": "waterDeionised"
4356
4352
  },
4357
4353
  {
4358
4354
  "@type": "Term",
@@ -4377,10 +4373,6 @@
4377
4373
  {
4378
4374
  "@type": "Term",
4379
4375
  "@id": "waterPumpedGroundwater"
4380
- },
4381
- {
4382
- "@type": "Term",
4383
- "@id": "waterDeionised"
4384
4376
  }
4385
4377
  ]
4386
4378
  },
@@ -4470,169 +4462,169 @@
4470
4462
  "@type": "Term",
4471
4463
  "name": "Glass or high accessible cover",
4472
4464
  "@id": "glassOrHighAccessibleCover",
4473
- "_score": 63.5788
4465
+ "_score": 61.992565
4474
4466
  },
4475
4467
  {
4476
4468
  "@type": "Term",
4477
4469
  "name": "Sea or ocean",
4478
4470
  "@id": "seaOrOcean",
4479
- "_score": 54.0469
4471
+ "_score": 50.844322
4480
4472
  },
4481
4473
  {
4482
4474
  "@type": "Term",
4483
4475
  "name": "River or stream",
4484
4476
  "@id": "riverOrStream",
4485
- "_score": 50.357346
4477
+ "_score": 49.09897
4486
4478
  },
4487
4479
  {
4488
4480
  "@type": "Term",
4489
4481
  "name": "Agri-food processor",
4490
4482
  "@id": "agriFoodProcessor",
4491
- "_score": 41.963978
4483
+ "_score": 42.423687
4492
4484
  },
4493
4485
  {
4494
4486
  "@type": "Term",
4495
4487
  "name": "Other natural vegetation",
4496
4488
  "@id": "otherNaturalVegetation",
4497
- "_score": 41.43549
4489
+ "_score": 41.829998
4498
4490
  },
4499
4491
  {
4500
4492
  "@type": "Term",
4501
4493
  "name": "Food retailer",
4502
4494
  "@id": "foodRetailer",
4503
- "_score": 39.52106
4495
+ "_score": 40.190033
4504
4496
  },
4505
4497
  {
4506
4498
  "@type": "Term",
4507
4499
  "name": "Natural forest",
4508
4500
  "@id": "naturalForest",
4509
- "_score": 31.78875
4501
+ "_score": 31.848892
4510
4502
  },
4511
4503
  {
4512
4504
  "@type": "Term",
4513
4505
  "name": "Permanent pasture",
4514
4506
  "@id": "permanentPasture",
4515
- "_score": 28.670094
4507
+ "_score": 29.01052
4516
4508
  },
4517
4509
  {
4518
4510
  "@type": "Term",
4519
- "name": "Root or tuber crop plant",
4520
- "@id": "rootOrTuberCropPlant",
4521
- "_score": 27.690126
4511
+ "name": "Animal housing",
4512
+ "@id": "animalHousing",
4513
+ "_score": 27.632452
4522
4514
  },
4523
4515
  {
4524
4516
  "@type": "Term",
4525
- "name": "Animal housing",
4526
- "@id": "animalHousing",
4527
- "_score": 27.283264
4517
+ "name": "Root or tuber crop plant",
4518
+ "@id": "rootOrTuberCropPlant",
4519
+ "_score": 25.906284
4528
4520
  },
4529
4521
  {
4530
4522
  "@type": "Term",
4531
4523
  "name": "High intensity grazing pasture",
4532
4524
  "@id": "highIntensityGrazingPasture",
4533
- "_score": 24.81928
4525
+ "_score": 25.276682
4534
4526
  },
4535
4527
  {
4536
4528
  "@type": "Term",
4537
4529
  "name": "Permanent cropland",
4538
4530
  "@id": "permanentCropland",
4539
- "_score": 20.331741
4531
+ "_score": 20.428364
4540
4532
  },
4541
4533
  {
4542
4534
  "@type": "Term",
4543
4535
  "name": "Forest",
4544
4536
  "@id": "forest",
4545
- "_score": 19.93306
4537
+ "_score": 20.286407
4546
4538
  },
4547
4539
  {
4548
4540
  "@type": "Term",
4549
4541
  "name": "Primary forest",
4550
4542
  "@id": "primaryForest",
4551
- "_score": 19.07519
4543
+ "_score": 19.105389
4552
4544
  },
4553
4545
  {
4554
4546
  "@type": "Term",
4555
- "name": "Plantation forest",
4556
- "@id": "plantationForest",
4557
- "_score": 18.639359
4547
+ "name": "Other land",
4548
+ "@id": "otherLand",
4549
+ "_score": 18.90561
4558
4550
  },
4559
4551
  {
4560
4552
  "@type": "Term",
4561
- "name": "Other land",
4562
- "@id": "otherLand",
4563
- "_score": 18.607164
4553
+ "name": "Plantation forest",
4554
+ "@id": "plantationForest",
4555
+ "_score": 18.705597
4564
4556
  },
4565
4557
  {
4566
4558
  "@type": "Term",
4567
4559
  "name": "Secondary forest",
4568
4560
  "@id": "secondaryForest",
4569
- "_score": 18.576618
4561
+ "_score": 18.685017
4570
4562
  },
4571
4563
  {
4572
4564
  "@type": "Term",
4573
4565
  "name": "Lake",
4574
4566
  "@id": "lake",
4575
- "_score": 18.14476
4567
+ "_score": 18.158028
4576
4568
  },
4577
4569
  {
4578
4570
  "@type": "Term",
4579
4571
  "name": "Native pasture",
4580
4572
  "@id": "nativePasture",
4581
- "_score": 17.951862
4573
+ "_score": 18.01052
4582
4574
  },
4583
4575
  {
4584
4576
  "@type": "Term",
4585
4577
  "name": "Improved pasture",
4586
4578
  "@id": "improvedPasture",
4587
- "_score": 17.642036
4579
+ "_score": 17.70707
4588
4580
  },
4589
4581
  {
4590
4582
  "@type": "Term",
4591
4583
  "name": "Nominally managed pasture",
4592
4584
  "@id": "nominallyManagedPasture",
4593
- "_score": 16.913551
4585
+ "_score": 16.975101
4594
4586
  },
4595
4587
  {
4596
4588
  "@type": "Term",
4597
- "name": "Red sea plume alga",
4598
- "@id": "redSeaPlumeAlga",
4599
- "_score": 16.571695
4589
+ "name": "Sea kale plant",
4590
+ "@id": "seaKalePlant",
4591
+ "_score": 16.742722
4600
4592
  },
4601
4593
  {
4602
4594
  "@type": "Term",
4603
- "name": "Sea kale plant",
4604
- "@id": "seaKalePlant",
4605
- "_score": 16.508238
4595
+ "name": "Red sea plume alga",
4596
+ "@id": "redSeaPlumeAlga",
4597
+ "_score": 16.702991
4606
4598
  },
4607
4599
  {
4608
4600
  "@type": "Term",
4609
4601
  "name": "Severely degraded pasture",
4610
4602
  "@id": "severelyDegradedPasture",
4611
- "_score": 16.163452
4603
+ "_score": 16.247414
4612
4604
  },
4613
4605
  {
4614
4606
  "@type": "Term",
4615
4607
  "name": "Pond",
4616
4608
  "@id": "pond",
4617
- "_score": 14.225159
4609
+ "_score": 14.300516
4618
4610
  },
4619
4611
  {
4620
4612
  "@type": "Term",
4621
4613
  "name": "River tamarind tree",
4622
4614
  "@id": "riverTamarindTree",
4623
- "_score": 12.739014
4615
+ "_score": 12.797153
4624
4616
  },
4625
4617
  {
4626
4618
  "@type": "Term",
4627
4619
  "name": "Cropland",
4628
4620
  "@id": "cropland",
4629
- "_score": 9.8332
4621
+ "_score": 9.862261
4630
4622
  },
4631
4623
  {
4632
4624
  "@type": "Term",
4633
4625
  "name": "Annual cropland",
4634
4626
  "@id": "annualCropland",
4635
- "_score": 9.171451
4627
+ "_score": 9.22546
4636
4628
  }
4637
4629
  ]
4638
4630
  },
@@ -4657,16 +4649,80 @@
4657
4649
  "results": [
4658
4650
  {
4659
4651
  "@type": "Term",
4660
- "@id": "jobSTearsPlant"
4652
+ "@id": "dandelionPlant"
4661
4653
  },
4662
4654
  {
4663
4655
  "@type": "Term",
4664
- "@id": "molassesGrassPlant"
4656
+ "@id": "turnipPlant"
4657
+ },
4658
+ {
4659
+ "@type": "Term",
4660
+ "@id": "lupinPlant"
4661
+ },
4662
+ {
4663
+ "@type": "Term",
4664
+ "@id": "mungBeanPlant"
4665
+ },
4666
+ {
4667
+ "@type": "Term",
4668
+ "@id": "noriAlga"
4669
+ },
4670
+ {
4671
+ "@type": "Term",
4672
+ "@id": "chervilPlant"
4673
+ },
4674
+ {
4675
+ "@type": "Term",
4676
+ "@id": "chickpeaPlant"
4677
+ },
4678
+ {
4679
+ "@type": "Term",
4680
+ "@id": "asparagusPlant"
4681
+ },
4682
+ {
4683
+ "@type": "Term",
4684
+ "@id": "cassavaPlant"
4685
+ },
4686
+ {
4687
+ "@type": "Term",
4688
+ "@id": "commonThatchingGrassPlant"
4689
+ },
4690
+ {
4691
+ "@type": "Term",
4692
+ "@id": "durianTree"
4693
+ },
4694
+ {
4695
+ "@type": "Term",
4696
+ "@id": "creepingBluegrassPlant"
4697
+ },
4698
+ {
4699
+ "@type": "Term",
4700
+ "@id": "giantReedPlant"
4701
+ },
4702
+ {
4703
+ "@type": "Term",
4704
+ "@id": "congoGrassPlant"
4705
+ },
4706
+ {
4707
+ "@type": "Term",
4708
+ "@id": "echinochloaHaplocladaPlant"
4709
+ },
4710
+ {
4711
+ "@type": "Term",
4712
+ "@id": "columbusGrassPlant"
4713
+ },
4714
+ {
4715
+ "@type": "Term",
4716
+ "@id": "jobSTearsPlant"
4665
4717
  },
4666
4718
  {
4667
4719
  "@type": "Term",
4668
4720
  "@id": "alfalfaPlant"
4669
4721
  },
4722
+ {
4723
+ "@type": "Term",
4724
+ "@id": "molassesGrassPlant"
4725
+ },
4670
4726
  {
4671
4727
  "@type": "Term",
4672
4728
  "@id": "natalGrassPlant"
@@ -4701,15 +4757,15 @@
4701
4757
  },
4702
4758
  {
4703
4759
  "@type": "Term",
4704
- "@id": "congoJutePlant"
4760
+ "@id": "tamarindTree"
4705
4761
  },
4706
4762
  {
4707
4763
  "@type": "Term",
4708
- "@id": "tamarindTree"
4764
+ "@id": "runnerBeanPlant"
4709
4765
  },
4710
4766
  {
4711
4767
  "@type": "Term",
4712
- "@id": "runnerBeanPlant"
4768
+ "@id": "congoJutePlant"
4713
4769
  },
4714
4770
  {
4715
4771
  "@type": "Term",
@@ -4801,11 +4857,11 @@
4801
4857
  },
4802
4858
  {
4803
4859
  "@type": "Term",
4804
- "@id": "kelpAlga"
4860
+ "@id": "clementineTree"
4805
4861
  },
4806
4862
  {
4807
4863
  "@type": "Term",
4808
- "@id": "clementineTree"
4864
+ "@id": "kelpAlga"
4809
4865
  },
4810
4866
  {
4811
4867
  "@type": "Term",
@@ -4985,127 +5041,103 @@
4985
5041
  },
4986
5042
  {
4987
5043
  "@type": "Term",
4988
- "@id": "glassOrHighAccessibleCover"
4989
- },
4990
- {
4991
- "@type": "Term",
4992
- "@id": "whiteSeedMelonVine"
4993
- },
4994
- {
4995
- "@type": "Term",
4996
- "@id": "sassafrasTree"
4997
- },
4998
- {
4999
- "@type": "Term",
5000
- "@id": "pennisetumTrachyphyllumPlant"
5001
- },
5002
- {
5003
- "@type": "Term",
5004
- "@id": "buffaloGrassPlant"
5005
- },
5006
- {
5007
- "@type": "Term",
5008
- "@id": "honeyberryPlant"
5009
- },
5010
- {
5011
- "@type": "Term",
5012
- "@id": "shrubLand"
5044
+ "@id": "lanillaPlant"
5013
5045
  },
5014
5046
  {
5015
5047
  "@type": "Term",
5016
- "@id": "indigoPlant"
5048
+ "@id": "glassOrHighAccessibleCover"
5017
5049
  },
5018
5050
  {
5019
5051
  "@type": "Term",
5020
- "@id": "whiteMeadowfoamPlant"
5052
+ "@id": "whiteSeedMelonVine"
5021
5053
  },
5022
5054
  {
5023
5055
  "@type": "Term",
5024
- "@id": "genericForageTree"
5056
+ "@id": "sassafrasTree"
5025
5057
  },
5026
5058
  {
5027
5059
  "@type": "Term",
5028
- "@id": "ottochloaNodosaPlant"
5060
+ "@id": "pennisetumTrachyphyllumPlant"
5029
5061
  },
5030
5062
  {
5031
5063
  "@type": "Term",
5032
- "@id": "amaranthPlant"
5064
+ "@id": "buffaloGrassPlant"
5033
5065
  },
5034
5066
  {
5035
5067
  "@type": "Term",
5036
- "@id": "yellowLupinPlant"
5068
+ "@id": "honeyberryPlant"
5037
5069
  },
5038
5070
  {
5039
5071
  "@type": "Term",
5040
- "@id": "chrysanthemumPlant"
5072
+ "@id": "shrubLand"
5041
5073
  },
5042
5074
  {
5043
5075
  "@type": "Term",
5044
- "@id": "dandelionPlant"
5076
+ "@id": "indigoPlant"
5045
5077
  },
5046
5078
  {
5047
5079
  "@type": "Term",
5048
- "@id": "turnipPlant"
5080
+ "@id": "whiteMeadowfoamPlant"
5049
5081
  },
5050
5082
  {
5051
5083
  "@type": "Term",
5052
- "@id": "lupinPlant"
5084
+ "@id": "genericForageTree"
5053
5085
  },
5054
5086
  {
5055
5087
  "@type": "Term",
5056
- "@id": "mungBeanPlant"
5088
+ "@id": "ottochloaNodosaPlant"
5057
5089
  },
5058
5090
  {
5059
5091
  "@type": "Term",
5060
- "@id": "noriAlga"
5092
+ "@id": "amaranthPlant"
5061
5093
  },
5062
5094
  {
5063
5095
  "@type": "Term",
5064
- "@id": "chervilPlant"
5096
+ "@id": "yellowLupinPlant"
5065
5097
  },
5066
5098
  {
5067
5099
  "@type": "Term",
5068
- "@id": "chickpeaPlant"
5100
+ "@id": "chrysanthemumPlant"
5069
5101
  },
5070
5102
  {
5071
5103
  "@type": "Term",
5072
- "@id": "asparagusPlant"
5104
+ "@id": "gourdVine"
5073
5105
  },
5074
5106
  {
5075
5107
  "@type": "Term",
5076
- "@id": "cassavaPlant"
5108
+ "@id": "collardPlant"
5077
5109
  },
5078
5110
  {
5079
5111
  "@type": "Term",
5080
- "@id": "commonThatchingGrassPlant"
5112
+ "@id": "basilPlant"
5081
5113
  },
5082
5114
  {
5083
5115
  "@type": "Term",
5084
- "@id": "durianTree"
5116
+ "@id": "burnetPlant"
5085
5117
  },
5086
5118
  {
5087
5119
  "@type": "Term",
5088
- "@id": "creepingBluegrassPlant"
5120
+ "@id": "fruitCropPlant"
5089
5121
  },
5090
5122
  {
5091
5123
  "@type": "Term",
5092
- "@id": "giantReedPlant"
5124
+ "@id": "bigLeafBristleGrassPlant"
5093
5125
  },
5094
5126
  {
5095
5127
  "@type": "Term",
5096
- "@id": "congoGrassPlant"
5128
+ "@id": "tallowTree"
5097
5129
  },
5098
5130
  {
5099
5131
  "@type": "Term",
5100
- "@id": "echinochloaHaplocladaPlant"
5132
+ "@id": "sugarcanePlant"
5101
5133
  },
5102
5134
  {
5103
5135
  "@type": "Term",
5104
- "@id": "columbusGrassPlant"
5136
+ "@id": "donkeyGrassPlant"
5105
5137
  },
5106
5138
  {
5107
5139
  "@type": "Term",
5108
- "@id": "lanillaPlant"
5140
+ "@id": "tungTree"
5109
5141
  },
5110
5142
  {
5111
5143
  "@type": "Term",
@@ -5117,11 +5149,11 @@
5117
5149
  },
5118
5150
  {
5119
5151
  "@type": "Term",
5120
- "@id": "landGrassPlant"
5152
+ "@id": "sudanGrassPlant"
5121
5153
  },
5122
5154
  {
5123
5155
  "@type": "Term",
5124
- "@id": "sudanGrassPlant"
5156
+ "@id": "lebbekTree"
5125
5157
  },
5126
5158
  {
5127
5159
  "@type": "Term",
@@ -5131,6 +5163,10 @@
5131
5163
  "@type": "Term",
5132
5164
  "@id": "sweetCherryTree"
5133
5165
  },
5166
+ {
5167
+ "@type": "Term",
5168
+ "@id": "ryegrassPlant"
5169
+ },
5134
5170
  {
5135
5171
  "@type": "Term",
5136
5172
  "@id": "sweetPotatoVine"
@@ -5149,35 +5185,35 @@
5149
5185
  },
5150
5186
  {
5151
5187
  "@type": "Term",
5152
- "@id": "bungomaGrassPlant"
5188
+ "@id": "chlorisRoxburghianaPlant"
5153
5189
  },
5154
5190
  {
5155
5191
  "@type": "Term",
5156
- "@id": "chineseAlbiziaTree"
5192
+ "@id": "whiteLupinPlant"
5157
5193
  },
5158
5194
  {
5159
5195
  "@type": "Term",
5160
- "@id": "gooseberryPlant"
5196
+ "@id": "bungomaGrassPlant"
5161
5197
  },
5162
5198
  {
5163
5199
  "@type": "Term",
5164
- "@id": "fingerMilletPlant"
5200
+ "@id": "quinoaPlant"
5165
5201
  },
5166
5202
  {
5167
5203
  "@type": "Term",
5168
- "@id": "chlorisRoxburghianaPlant"
5204
+ "@id": "chineseAlbiziaTree"
5169
5205
  },
5170
5206
  {
5171
5207
  "@type": "Term",
5172
- "@id": "whiteLupinPlant"
5208
+ "@id": "strawberrySpinachPlant"
5173
5209
  },
5174
5210
  {
5175
5211
  "@type": "Term",
5176
- "@id": "quinoaPlant"
5212
+ "@id": "gooseberryPlant"
5177
5213
  },
5178
5214
  {
5179
5215
  "@type": "Term",
5180
- "@id": "strawberrySpinachPlant"
5216
+ "@id": "fingerMilletPlant"
5181
5217
  },
5182
5218
  {
5183
5219
  "@type": "Term",
@@ -5193,11 +5229,11 @@
5193
5229
  },
5194
5230
  {
5195
5231
  "@type": "Term",
5196
- "@id": "sweetCornPlant"
5232
+ "@id": "antelopeGrassPlant"
5197
5233
  },
5198
5234
  {
5199
5235
  "@type": "Term",
5200
- "@id": "antelopeGrassPlant"
5236
+ "@id": "sweetCornPlant"
5201
5237
  },
5202
5238
  {
5203
5239
  "@type": "Term",
@@ -5275,10 +5311,6 @@
5275
5311
  "@type": "Term",
5276
5312
  "@id": "yerbaMateTree"
5277
5313
  },
5278
- {
5279
- "@type": "Term",
5280
- "@id": "commonNeedleGrassPlant"
5281
- },
5282
5314
  {
5283
5315
  "@type": "Term",
5284
5316
  "@id": "nativePasture"
@@ -5291,10 +5323,6 @@
5291
5323
  "@type": "Term",
5292
5324
  "@id": "nominallyManagedPasture"
5293
5325
  },
5294
- {
5295
- "@type": "Term",
5296
- "@id": "gumArabicTree"
5297
- },
5298
5326
  {
5299
5327
  "@type": "Term",
5300
5328
  "@id": "agatiTree"
@@ -5311,10 +5339,6 @@
5311
5339
  "@type": "Term",
5312
5340
  "@id": "miscanthusGrassPlant"
5313
5341
  },
5314
- {
5315
- "@type": "Term",
5316
- "@id": "fibreCropPlant"
5317
- },
5318
5342
  {
5319
5343
  "@type": "Term",
5320
5344
  "@id": "shortFallow"
@@ -5565,55 +5589,23 @@
5565
5589
  },
5566
5590
  {
5567
5591
  "@type": "Term",
5568
- "@id": "gourdVine"
5569
- },
5570
- {
5571
- "@type": "Term",
5572
- "@id": "collardPlant"
5573
- },
5574
- {
5575
- "@type": "Term",
5576
- "@id": "basilPlant"
5577
- },
5578
- {
5579
- "@type": "Term",
5580
- "@id": "burnetPlant"
5581
- },
5582
- {
5583
- "@type": "Term",
5584
- "@id": "fruitCropPlant"
5585
- },
5586
- {
5587
- "@type": "Term",
5588
- "@id": "lebbekTree"
5589
- },
5590
- {
5591
- "@type": "Term",
5592
- "@id": "ryegrassPlant"
5593
- },
5594
- {
5595
- "@type": "Term",
5596
- "@id": "bigLeafBristleGrassPlant"
5597
- },
5598
- {
5599
- "@type": "Term",
5600
- "@id": "tallowTree"
5592
+ "@id": "landGrassPlant"
5601
5593
  },
5602
5594
  {
5603
5595
  "@type": "Term",
5604
- "@id": "sugarcanePlant"
5596
+ "@id": "commonNeedleGrassPlant"
5605
5597
  },
5606
5598
  {
5607
5599
  "@type": "Term",
5608
- "@id": "donkeyGrassPlant"
5600
+ "@id": "gumArabicTree"
5609
5601
  },
5610
5602
  {
5611
5603
  "@type": "Term",
5612
- "@id": "tungTree"
5604
+ "@id": "fibreCropPlant"
5613
5605
  },
5614
5606
  {
5615
5607
  "@type": "Term",
5616
- "@id": "lovagePlant"
5608
+ "@id": "stylosanthesCampoGrandePlant"
5617
5609
  },
5618
5610
  {
5619
5611
  "@type": "Term",
@@ -5635,6 +5627,10 @@
5635
5627
  "@type": "Term",
5636
5628
  "@id": "liquoricePlant"
5637
5629
  },
5630
+ {
5631
+ "@type": "Term",
5632
+ "@id": "lovagePlant"
5633
+ },
5638
5634
  {
5639
5635
  "@type": "Term",
5640
5636
  "@id": "papayaTree"
@@ -5769,15 +5765,11 @@
5769
5765
  },
5770
5766
  {
5771
5767
  "@type": "Term",
5772
- "@id": "sewanGrassPlant"
5773
- },
5774
- {
5775
- "@type": "Term",
5776
- "@id": "spearGrassPlant"
5768
+ "@id": "sesbanTree"
5777
5769
  },
5778
5770
  {
5779
5771
  "@type": "Term",
5780
- "@id": "horseradishPlant"
5772
+ "@id": "sisalPlant"
5781
5773
  },
5782
5774
  {
5783
5775
  "@type": "Term",
@@ -5785,19 +5777,19 @@
5785
5777
  },
5786
5778
  {
5787
5779
  "@type": "Term",
5788
- "@id": "tangerineTree"
5780
+ "@id": "spearGrassPlant"
5789
5781
  },
5790
5782
  {
5791
5783
  "@type": "Term",
5792
- "@id": "sesbanTree"
5784
+ "@id": "milanjeFingerGrassPlant"
5793
5785
  },
5794
5786
  {
5795
5787
  "@type": "Term",
5796
- "@id": "milanjeFingerGrassPlant"
5788
+ "@id": "sewanGrassPlant"
5797
5789
  },
5798
5790
  {
5799
5791
  "@type": "Term",
5800
- "@id": "sisalPlant"
5792
+ "@id": "tangerineTree"
5801
5793
  },
5802
5794
  {
5803
5795
  "@type": "Term",
@@ -5821,19 +5813,19 @@
5821
5813
  },
5822
5814
  {
5823
5815
  "@type": "Term",
5824
- "@id": "annualHonestyPlant"
5816
+ "@id": "hornedMelonVine"
5825
5817
  },
5826
5818
  {
5827
5819
  "@type": "Term",
5828
- "@id": "cranberryPlant"
5820
+ "@id": "beeBalmPlant"
5829
5821
  },
5830
5822
  {
5831
5823
  "@type": "Term",
5832
- "@id": "hornedMelonVine"
5824
+ "@id": "annualHonestyPlant"
5833
5825
  },
5834
5826
  {
5835
5827
  "@type": "Term",
5836
- "@id": "beeBalmPlant"
5828
+ "@id": "cranberryPlant"
5837
5829
  },
5838
5830
  {
5839
5831
  "@type": "Term",
@@ -5885,11 +5877,11 @@
5885
5877
  },
5886
5878
  {
5887
5879
  "@type": "Term",
5888
- "@id": "carambolaTree"
5880
+ "@id": "medlarTree"
5889
5881
  },
5890
5882
  {
5891
5883
  "@type": "Term",
5892
- "@id": "medlarTree"
5884
+ "@id": "carambolaTree"
5893
5885
  },
5894
5886
  {
5895
5887
  "@type": "Term",
@@ -5915,21 +5907,17 @@
5915
5907
  "@type": "Term",
5916
5908
  "@id": "auberginePlant"
5917
5909
  },
5918
- {
5919
- "@type": "Term",
5920
- "@id": "stylosanthesCampoGrandePlant"
5921
- },
5922
5910
  {
5923
5911
  "@type": "Term",
5924
5912
  "@id": "otherNaturalVegetation"
5925
5913
  },
5926
5914
  {
5927
5915
  "@type": "Term",
5928
- "@id": "rhodesGrassPlant"
5916
+ "@id": "guatemalaGrassPlant"
5929
5917
  },
5930
5918
  {
5931
5919
  "@type": "Term",
5932
- "@id": "guatemalaGrassPlant"
5920
+ "@id": "rhodesGrassPlant"
5933
5921
  },
5934
5922
  {
5935
5923
  "@type": "Term",
@@ -6041,111 +6029,203 @@
6041
6029
  },
6042
6030
  {
6043
6031
  "@type": "Term",
6044
- "@id": "peachPalmTree"
6032
+ "@id": "peachPalmTree"
6033
+ },
6034
+ {
6035
+ "@type": "Term",
6036
+ "@id": "horseradishPlant"
6037
+ },
6038
+ {
6039
+ "@type": "Term",
6040
+ "@id": "missionGrassPlant"
6041
+ },
6042
+ {
6043
+ "@type": "Term",
6044
+ "@id": "sainGrassPlant"
6045
+ },
6046
+ {
6047
+ "@type": "Term",
6048
+ "@id": "bermudaGrassPlant"
6049
+ },
6050
+ {
6051
+ "@type": "Term",
6052
+ "@id": "hookGrassPlant"
6053
+ },
6054
+ {
6055
+ "@type": "Term",
6056
+ "@id": "mountainRedtopPlant"
6057
+ },
6058
+ {
6059
+ "@type": "Term",
6060
+ "@id": "magentaSpreenPlant"
6061
+ },
6062
+ {
6063
+ "@type": "Term",
6064
+ "@id": "boragePlant"
6065
+ },
6066
+ {
6067
+ "@type": "Term",
6068
+ "@id": "forest"
6069
+ },
6070
+ {
6071
+ "@type": "Term",
6072
+ "@id": "genericGrassPlant"
6073
+ },
6074
+ {
6075
+ "@type": "Term",
6076
+ "@id": "slenderBluestemPlant"
6077
+ },
6078
+ {
6079
+ "@type": "Term",
6080
+ "@id": "slenderGramaPlant"
6081
+ },
6082
+ {
6083
+ "@type": "Term",
6084
+ "@id": "poroTree"
6085
+ },
6086
+ {
6087
+ "@type": "Term",
6088
+ "@id": "chrysopogonFallaxPlant"
6089
+ },
6090
+ {
6091
+ "@type": "Term",
6092
+ "@id": "setariaLachneaPlant"
6093
+ },
6094
+ {
6095
+ "@type": "Term",
6096
+ "@id": "pepinoDulcePlant"
6097
+ },
6098
+ {
6099
+ "@type": "Term",
6100
+ "@id": "kachiGrassPlant"
6101
+ },
6102
+ {
6103
+ "@type": "Term",
6104
+ "@id": "agriFoodProcessor"
6105
+ },
6106
+ {
6107
+ "@type": "Term",
6108
+ "@id": "pitseedGoosefootPlant"
6109
+ },
6110
+ {
6111
+ "@type": "Term",
6112
+ "@id": "caperPlant"
6113
+ },
6114
+ {
6115
+ "@type": "Term",
6116
+ "@id": "winterSquashVine"
6117
+ },
6118
+ {
6119
+ "@type": "Term",
6120
+ "@id": "springOnionPlant"
6121
+ },
6122
+ {
6123
+ "@type": "Term",
6124
+ "@id": "swedePlant"
6045
6125
  },
6046
6126
  {
6047
6127
  "@type": "Term",
6048
- "@id": "missionGrassPlant"
6128
+ "@id": "chineseWaterChestnutPlant"
6049
6129
  },
6050
6130
  {
6051
6131
  "@type": "Term",
6052
- "@id": "sainGrassPlant"
6132
+ "@id": "oliveTree"
6053
6133
  },
6054
6134
  {
6055
6135
  "@type": "Term",
6056
- "@id": "bermudaGrassPlant"
6136
+ "@id": "slenderChlorisPlant"
6057
6137
  },
6058
6138
  {
6059
6139
  "@type": "Term",
6060
- "@id": "hookGrassPlant"
6140
+ "@id": "arrowrootPlant"
6061
6141
  },
6062
6142
  {
6063
6143
  "@type": "Term",
6064
- "@id": "mountainRedtopPlant"
6144
+ "@id": "feijoaTree"
6065
6145
  },
6066
6146
  {
6067
6147
  "@type": "Term",
6068
- "@id": "magentaSpreenPlant"
6148
+ "@id": "daffodilPlant"
6069
6149
  },
6070
6150
  {
6071
6151
  "@type": "Term",
6072
- "@id": "boragePlant"
6152
+ "@id": "potatoPlant"
6073
6153
  },
6074
6154
  {
6075
6155
  "@type": "Term",
6076
- "@id": "forest"
6156
+ "@id": "longkongTree"
6077
6157
  },
6078
6158
  {
6079
6159
  "@type": "Term",
6080
- "@id": "genericGrassPlant"
6160
+ "@id": "pitayaCactus"
6081
6161
  },
6082
6162
  {
6083
6163
  "@type": "Term",
6084
- "@id": "slenderBluestemPlant"
6164
+ "@id": "poppyPlant"
6085
6165
  },
6086
6166
  {
6087
6167
  "@type": "Term",
6088
- "@id": "slenderGramaPlant"
6168
+ "@id": "rooibosPlant"
6089
6169
  },
6090
6170
  {
6091
6171
  "@type": "Term",
6092
- "@id": "poroTree"
6172
+ "@id": "ricePlantUpland"
6093
6173
  },
6094
6174
  {
6095
6175
  "@type": "Term",
6096
- "@id": "chrysopogonFallaxPlant"
6176
+ "@id": "treeNutTree"
6097
6177
  },
6098
6178
  {
6099
6179
  "@type": "Term",
6100
- "@id": "setariaLachneaPlant"
6180
+ "@id": "camelinaPlant"
6101
6181
  },
6102
6182
  {
6103
6183
  "@type": "Term",
6104
- "@id": "pepinoDulcePlant"
6184
+ "@id": "cinnamonTree"
6105
6185
  },
6106
6186
  {
6107
6187
  "@type": "Term",
6108
- "@id": "kachiGrassPlant"
6188
+ "@id": "almondTree"
6109
6189
  },
6110
6190
  {
6111
6191
  "@type": "Term",
6112
- "@id": "agriFoodProcessor"
6192
+ "@id": "choySumPlant"
6113
6193
  },
6114
6194
  {
6115
6195
  "@type": "Term",
6116
- "@id": "pitseedGoosefootPlant"
6196
+ "@id": "kalePlant"
6117
6197
  },
6118
6198
  {
6119
6199
  "@type": "Term",
6120
- "@id": "caperPlant"
6200
+ "@id": "spinachPlant"
6121
6201
  },
6122
6202
  {
6123
6203
  "@type": "Term",
6124
- "@id": "winterSquashVine"
6204
+ "@id": "ryePlant"
6125
6205
  },
6126
6206
  {
6127
6207
  "@type": "Term",
6128
- "@id": "springOnionPlant"
6208
+ "@id": "andropogonCanaliculatusPlant"
6129
6209
  },
6130
6210
  {
6131
6211
  "@type": "Term",
6132
- "@id": "swedePlant"
6212
+ "@id": "espartoGrassPlant"
6133
6213
  },
6134
6214
  {
6135
6215
  "@type": "Term",
6136
- "@id": "chineseWaterChestnutPlant"
6216
+ "@id": "vanillaVine"
6137
6217
  },
6138
6218
  {
6139
6219
  "@type": "Term",
6140
- "@id": "oliveTree"
6220
+ "@id": "thymePlant"
6141
6221
  },
6142
6222
  {
6143
6223
  "@type": "Term",
6144
- "@id": "slenderChlorisPlant"
6224
+ "@id": "grassAlfalfaSward"
6145
6225
  },
6146
6226
  {
6147
6227
  "@type": "Term",
6148
- "@id": "arrowrootPlant"
6228
+ "@id": "elephantGrassPlant"
6149
6229
  },
6150
6230
  {
6151
6231
  "@type": "Term",
@@ -6177,11 +6257,11 @@
6177
6257
  },
6178
6258
  {
6179
6259
  "@type": "Term",
6180
- "@id": "lespedezaPlant"
6260
+ "@id": "anthephoraNigritanaPlant"
6181
6261
  },
6182
6262
  {
6183
6263
  "@type": "Term",
6184
- "@id": "anthephoraNigritanaPlant"
6264
+ "@id": "lespedezaPlant"
6185
6265
  },
6186
6266
  {
6187
6267
  "@type": "Term",
@@ -6205,19 +6285,19 @@
6205
6285
  },
6206
6286
  {
6207
6287
  "@type": "Term",
6208
- "@id": "pepperVine"
6288
+ "@id": "cerealPlant"
6209
6289
  },
6210
6290
  {
6211
6291
  "@type": "Term",
6212
- "@id": "cerealPlant"
6292
+ "@id": "pepperVine"
6213
6293
  },
6214
6294
  {
6215
6295
  "@type": "Term",
6216
- "@id": "anisePlant"
6296
+ "@id": "ruePlant"
6217
6297
  },
6218
6298
  {
6219
6299
  "@type": "Term",
6220
- "@id": "ruePlant"
6300
+ "@id": "anisePlant"
6221
6301
  },
6222
6302
  {
6223
6303
  "@type": "Term",
@@ -6227,6 +6307,10 @@
6227
6307
  "@type": "Term",
6228
6308
  "@id": "cocoaTree"
6229
6309
  },
6310
+ {
6311
+ "@type": "Term",
6312
+ "@id": "peanutPlant"
6313
+ },
6230
6314
  {
6231
6315
  "@type": "Term",
6232
6316
  "@id": "physalisPlant"
@@ -6287,6 +6371,10 @@
6287
6371
  "@type": "Term",
6288
6372
  "@id": "genericLeguminousGrassPlant"
6289
6373
  },
6374
+ {
6375
+ "@type": "Term",
6376
+ "@id": "commonVetchPlant"
6377
+ },
6290
6378
  {
6291
6379
  "@type": "Term",
6292
6380
  "@id": "hyssopPlant"
@@ -6333,11 +6421,11 @@
6333
6421
  },
6334
6422
  {
6335
6423
  "@type": "Term",
6336
- "@id": "curryTree"
6424
+ "@id": "picklingCucumberVine"
6337
6425
  },
6338
6426
  {
6339
6427
  "@type": "Term",
6340
- "@id": "picklingCucumberVine"
6428
+ "@id": "curryTree"
6341
6429
  },
6342
6430
  {
6343
6431
  "@type": "Term",
@@ -6539,14 +6627,6 @@
6539
6627
  "@type": "Term",
6540
6628
  "@id": "brusselsSproutsPlant"
6541
6629
  },
6542
- {
6543
- "@type": "Term",
6544
- "@id": "peanutPlant"
6545
- },
6546
- {
6547
- "@type": "Term",
6548
- "@id": "commonVetchPlant"
6549
- },
6550
6630
  {
6551
6631
  "@type": "Term",
6552
6632
  "@id": "citrusTree"
@@ -6559,98 +6639,6 @@
6559
6639
  "@type": "Term",
6560
6640
  "@id": "dulseAlga"
6561
6641
  },
6562
- {
6563
- "@type": "Term",
6564
- "@id": "feijoaTree"
6565
- },
6566
- {
6567
- "@type": "Term",
6568
- "@id": "daffodilPlant"
6569
- },
6570
- {
6571
- "@type": "Term",
6572
- "@id": "potatoPlant"
6573
- },
6574
- {
6575
- "@type": "Term",
6576
- "@id": "longkongTree"
6577
- },
6578
- {
6579
- "@type": "Term",
6580
- "@id": "pitayaCactus"
6581
- },
6582
- {
6583
- "@type": "Term",
6584
- "@id": "poppyPlant"
6585
- },
6586
- {
6587
- "@type": "Term",
6588
- "@id": "rooibosPlant"
6589
- },
6590
- {
6591
- "@type": "Term",
6592
- "@id": "ricePlantUpland"
6593
- },
6594
- {
6595
- "@type": "Term",
6596
- "@id": "treeNutTree"
6597
- },
6598
- {
6599
- "@type": "Term",
6600
- "@id": "camelinaPlant"
6601
- },
6602
- {
6603
- "@type": "Term",
6604
- "@id": "cinnamonTree"
6605
- },
6606
- {
6607
- "@type": "Term",
6608
- "@id": "almondTree"
6609
- },
6610
- {
6611
- "@type": "Term",
6612
- "@id": "choySumPlant"
6613
- },
6614
- {
6615
- "@type": "Term",
6616
- "@id": "kalePlant"
6617
- },
6618
- {
6619
- "@type": "Term",
6620
- "@id": "spinachPlant"
6621
- },
6622
- {
6623
- "@type": "Term",
6624
- "@id": "ryePlant"
6625
- },
6626
- {
6627
- "@type": "Term",
6628
- "@id": "andropogonCanaliculatusPlant"
6629
- },
6630
- {
6631
- "@type": "Term",
6632
- "@id": "espartoGrassPlant"
6633
- },
6634
- {
6635
- "@type": "Term",
6636
- "@id": "vanillaVine"
6637
- },
6638
- {
6639
- "@type": "Term",
6640
- "@id": "thymePlant"
6641
- },
6642
- {
6643
- "@type": "Term",
6644
- "@id": "grassAlfalfaSward"
6645
- },
6646
- {
6647
- "@type": "Term",
6648
- "@id": "elephantGrassPlant"
6649
- },
6650
- {
6651
- "@type": "Term",
6652
- "@id": "redOrachePlant"
6653
- },
6654
6642
  {
6655
6643
  "@type": "Term",
6656
6644
  "@id": "lemonVerbenaPlant"
@@ -6661,11 +6649,11 @@
6661
6649
  },
6662
6650
  {
6663
6651
  "@type": "Term",
6664
- "@id": "azaroleTree"
6652
+ "@id": "sweetPepperPlant"
6665
6653
  },
6666
6654
  {
6667
6655
  "@type": "Term",
6668
- "@id": "sweetPepperPlant"
6656
+ "@id": "azaroleTree"
6669
6657
  },
6670
6658
  {
6671
6659
  "@type": "Term",
@@ -6737,44 +6725,24 @@
6737
6725
  },
6738
6726
  {
6739
6727
  "@type": "Term",
6740
- "@id": "gooseGrassPlant"
6741
- },
6742
- {
6743
- "@type": "Term",
6744
- "@id": "lindenTree"
6745
- },
6746
- {
6747
- "@type": "Term",
6748
- "@id": "avocadoTree"
6749
- },
6750
- {
6751
- "@type": "Term",
6752
- "@id": "bayTree"
6753
- },
6754
- {
6755
- "@type": "Term",
6756
- "@id": "hyacinthBeanVine"
6728
+ "@id": "trachypogonVestitusPlant"
6757
6729
  },
6758
6730
  {
6759
6731
  "@type": "Term",
6760
- "@id": "kiwifruitVine"
6732
+ "@id": "colouredHoodGrassPlant"
6761
6733
  },
6762
6734
  {
6763
6735
  "@type": "Term",
6764
- "@id": "trachypogonVestitusPlant"
6736
+ "@id": "spottedBrachiariaPlant"
6765
6737
  },
6766
6738
  {
6767
6739
  "@type": "Term",
6768
- "@id": "colouredHoodGrassPlant"
6740
+ "@id": "weepingLoveGrassPlant"
6769
6741
  },
6770
6742
  {
6771
6743
  "@type": "Term",
6772
6744
  "@id": "hairyHerringboneGrassPlant"
6773
6745
  },
6774
- {
6775
- "@type": "Term",
6776
- "@id": "spottedBrachiariaPlant"
6777
- },
6778
6746
  {
6779
6747
  "@type": "Term",
6780
6748
  "@id": "starGrassPlant"
@@ -6783,10 +6751,6 @@
6783
6751
  "@type": "Term",
6784
6752
  "@id": "trefoilPlant"
6785
6753
  },
6786
- {
6787
- "@type": "Term",
6788
- "@id": "weepingLoveGrassPlant"
6789
- },
6790
6754
  {
6791
6755
  "@type": "Term",
6792
6756
  "@id": "redOatGrassPlant"
@@ -6799,6 +6763,10 @@
6799
6763
  "@type": "Term",
6800
6764
  "@id": "jungleRicePlant"
6801
6765
  },
6766
+ {
6767
+ "@type": "Term",
6768
+ "@id": "gooseGrassPlant"
6769
+ },
6802
6770
  {
6803
6771
  "@type": "Term",
6804
6772
  "@id": "timothyGrassPlant"
@@ -6845,15 +6813,15 @@
6845
6813
  },
6846
6814
  {
6847
6815
  "@type": "Term",
6848
- "@id": "cottonPlant"
6816
+ "@id": "lavenderPlant"
6849
6817
  },
6850
6818
  {
6851
6819
  "@type": "Term",
6852
- "@id": "lavenderPlant"
6820
+ "@id": "tamarilloTree"
6853
6821
  },
6854
6822
  {
6855
6823
  "@type": "Term",
6856
- "@id": "tamarilloTree"
6824
+ "@id": "cottonPlant"
6857
6825
  },
6858
6826
  {
6859
6827
  "@type": "Term",
@@ -6897,11 +6865,11 @@
6897
6865
  },
6898
6866
  {
6899
6867
  "@type": "Term",
6900
- "@id": "mulberryTree"
6868
+ "@id": "litchiTree"
6901
6869
  },
6902
6870
  {
6903
6871
  "@type": "Term",
6904
- "@id": "litchiTree"
6872
+ "@id": "mulberryTree"
6905
6873
  },
6906
6874
  {
6907
6875
  "@type": "Term",
@@ -6959,6 +6927,10 @@
6959
6927
  "@type": "Term",
6960
6928
  "@id": "guriaGrassPlant"
6961
6929
  },
6930
+ {
6931
+ "@type": "Term",
6932
+ "@id": "lindenTree"
6933
+ },
6962
6934
  {
6963
6935
  "@type": "Term",
6964
6936
  "@id": "yellowYamVine"
@@ -7202,6 +7174,26 @@
7202
7174
  {
7203
7175
  "@type": "Term",
7204
7176
  "@id": "apricotTree"
7177
+ },
7178
+ {
7179
+ "@type": "Term",
7180
+ "@id": "bayTree"
7181
+ },
7182
+ {
7183
+ "@type": "Term",
7184
+ "@id": "avocadoTree"
7185
+ },
7186
+ {
7187
+ "@type": "Term",
7188
+ "@id": "hyacinthBeanVine"
7189
+ },
7190
+ {
7191
+ "@type": "Term",
7192
+ "@id": "kiwifruitVine"
7193
+ },
7194
+ {
7195
+ "@type": "Term",
7196
+ "@id": "redOrachePlant"
7205
7197
  }
7206
7198
  ]
7207
7199
  },
@@ -7628,11 +7620,11 @@
7628
7620
  },
7629
7621
  {
7630
7622
  "@type": "Term",
7631
- "@id": "woodFuel"
7623
+ "@id": "woodChipFuel"
7632
7624
  },
7633
7625
  {
7634
7626
  "@type": "Term",
7635
- "@id": "woodChipFuel"
7627
+ "@id": "woodFuel"
7636
7628
  }
7637
7629
  ]
7638
7630
  },