imap-processing 0.18.0__py3-none-any.whl → 0.19.0__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.

Potentially problematic release.


This version of imap-processing might be problematic. Click here for more details.

Files changed (104) hide show
  1. imap_processing/_version.py +2 -2
  2. imap_processing/ancillary/ancillary_dataset_combiner.py +161 -1
  3. imap_processing/cdf/config/imap_codice_l1a_variable_attrs.yaml +301 -274
  4. imap_processing/cdf/config/imap_codice_l1b_variable_attrs.yaml +28 -28
  5. imap_processing/cdf/config/imap_codice_l2_variable_attrs.yaml +1044 -203
  6. imap_processing/cdf/config/imap_constant_attrs.yaml +4 -2
  7. imap_processing/cdf/config/imap_glows_l1b_variable_attrs.yaml +12 -0
  8. imap_processing/cdf/config/imap_hi_global_cdf_attrs.yaml +5 -0
  9. imap_processing/cdf/config/imap_hit_global_cdf_attrs.yaml +10 -4
  10. imap_processing/cdf/config/imap_idex_l2a_variable_attrs.yaml +33 -4
  11. imap_processing/cdf/config/imap_idex_l2b_variable_attrs.yaml +8 -91
  12. imap_processing/cdf/config/imap_idex_l2c_variable_attrs.yaml +106 -16
  13. imap_processing/cdf/config/imap_lo_l1a_variable_attrs.yaml +4 -15
  14. imap_processing/cdf/config/imap_lo_l1c_variable_attrs.yaml +189 -98
  15. imap_processing/cdf/config/imap_mag_global_cdf_attrs.yaml +85 -2
  16. imap_processing/cdf/config/imap_mag_l1c_variable_attrs.yaml +24 -1
  17. imap_processing/cdf/config/imap_ultra_l1b_variable_attrs.yaml +12 -4
  18. imap_processing/cdf/config/imap_ultra_l1c_variable_attrs.yaml +50 -7
  19. imap_processing/cli.py +95 -41
  20. imap_processing/codice/codice_l1a.py +131 -31
  21. imap_processing/codice/codice_l2.py +118 -10
  22. imap_processing/codice/constants.py +740 -595
  23. imap_processing/decom.py +1 -4
  24. imap_processing/ena_maps/ena_maps.py +32 -25
  25. imap_processing/ena_maps/utils/naming.py +8 -2
  26. imap_processing/glows/ancillary/imap_glows_exclusions-by-instr-team_20250923_v002.dat +10 -0
  27. imap_processing/glows/ancillary/imap_glows_map-of-excluded-regions_20250923_v002.dat +393 -0
  28. imap_processing/glows/ancillary/imap_glows_map-of-uv-sources_20250923_v002.dat +593 -0
  29. imap_processing/glows/ancillary/imap_glows_pipeline_settings_20250923_v002.json +54 -0
  30. imap_processing/glows/ancillary/imap_glows_suspected-transients_20250923_v002.dat +10 -0
  31. imap_processing/glows/l1b/glows_l1b.py +99 -9
  32. imap_processing/glows/l1b/glows_l1b_data.py +350 -38
  33. imap_processing/glows/l2/glows_l2.py +11 -0
  34. imap_processing/hi/hi_l1a.py +124 -3
  35. imap_processing/hi/hi_l1b.py +154 -71
  36. imap_processing/hi/hi_l2.py +84 -51
  37. imap_processing/hi/utils.py +153 -8
  38. imap_processing/hit/l0/constants.py +3 -0
  39. imap_processing/hit/l0/decom_hit.py +3 -6
  40. imap_processing/hit/l1a/hit_l1a.py +311 -21
  41. imap_processing/hit/l1b/hit_l1b.py +54 -126
  42. imap_processing/hit/l2/hit_l2.py +6 -6
  43. imap_processing/ialirt/calculate_ingest.py +219 -0
  44. imap_processing/ialirt/constants.py +12 -2
  45. imap_processing/ialirt/generate_coverage.py +15 -2
  46. imap_processing/ialirt/l0/ialirt_spice.py +5 -2
  47. imap_processing/ialirt/l0/parse_mag.py +293 -42
  48. imap_processing/ialirt/l0/process_hit.py +5 -3
  49. imap_processing/ialirt/l0/process_swapi.py +41 -25
  50. imap_processing/ialirt/process_ephemeris.py +70 -14
  51. imap_processing/idex/idex_l0.py +2 -2
  52. imap_processing/idex/idex_l1a.py +2 -3
  53. imap_processing/idex/idex_l1b.py +2 -3
  54. imap_processing/idex/idex_l2a.py +130 -4
  55. imap_processing/idex/idex_l2b.py +158 -143
  56. imap_processing/idex/idex_utils.py +1 -3
  57. imap_processing/lo/l0/lo_science.py +25 -24
  58. imap_processing/lo/l1b/lo_l1b.py +3 -3
  59. imap_processing/lo/l1c/lo_l1c.py +116 -50
  60. imap_processing/lo/l2/lo_l2.py +29 -29
  61. imap_processing/lo/lo_ancillary.py +55 -0
  62. imap_processing/mag/l1a/mag_l1a.py +1 -0
  63. imap_processing/mag/l1a/mag_l1a_data.py +26 -0
  64. imap_processing/mag/l1b/mag_l1b.py +3 -2
  65. imap_processing/mag/l1c/interpolation_methods.py +14 -15
  66. imap_processing/mag/l1c/mag_l1c.py +23 -6
  67. imap_processing/mag/l1d/mag_l1d.py +57 -14
  68. imap_processing/mag/l1d/mag_l1d_data.py +167 -30
  69. imap_processing/mag/l2/mag_l2_data.py +10 -2
  70. imap_processing/quality_flags.py +9 -1
  71. imap_processing/spice/geometry.py +76 -33
  72. imap_processing/spice/pointing_frame.py +0 -6
  73. imap_processing/spice/repoint.py +29 -2
  74. imap_processing/spice/spin.py +28 -8
  75. imap_processing/spice/time.py +12 -22
  76. imap_processing/swapi/l1/swapi_l1.py +10 -4
  77. imap_processing/swapi/l2/swapi_l2.py +15 -17
  78. imap_processing/swe/l1b/swe_l1b.py +1 -2
  79. imap_processing/ultra/constants.py +1 -24
  80. imap_processing/ultra/l0/ultra_utils.py +9 -11
  81. imap_processing/ultra/l1a/ultra_l1a.py +1 -2
  82. imap_processing/ultra/l1b/cullingmask.py +6 -3
  83. imap_processing/ultra/l1b/de.py +81 -23
  84. imap_processing/ultra/l1b/extendedspin.py +13 -10
  85. imap_processing/ultra/l1b/lookup_utils.py +281 -28
  86. imap_processing/ultra/l1b/quality_flag_filters.py +10 -1
  87. imap_processing/ultra/l1b/ultra_l1b_culling.py +161 -3
  88. imap_processing/ultra/l1b/ultra_l1b_extended.py +253 -47
  89. imap_processing/ultra/l1c/helio_pset.py +97 -24
  90. imap_processing/ultra/l1c/l1c_lookup_utils.py +256 -0
  91. imap_processing/ultra/l1c/spacecraft_pset.py +83 -16
  92. imap_processing/ultra/l1c/ultra_l1c.py +6 -2
  93. imap_processing/ultra/l1c/ultra_l1c_culling.py +85 -0
  94. imap_processing/ultra/l1c/ultra_l1c_pset_bins.py +385 -277
  95. imap_processing/ultra/l2/ultra_l2.py +0 -1
  96. imap_processing/ultra/utils/ultra_l1_utils.py +28 -3
  97. imap_processing/utils.py +3 -4
  98. {imap_processing-0.18.0.dist-info → imap_processing-0.19.0.dist-info}/METADATA +2 -2
  99. {imap_processing-0.18.0.dist-info → imap_processing-0.19.0.dist-info}/RECORD +102 -95
  100. imap_processing/idex/idex_l2c.py +0 -84
  101. imap_processing/spice/kernels.py +0 -187
  102. {imap_processing-0.18.0.dist-info → imap_processing-0.19.0.dist-info}/LICENSE +0 -0
  103. {imap_processing-0.18.0.dist-info → imap_processing-0.19.0.dist-info}/WHEEL +0 -0
  104. {imap_processing-0.18.0.dist-info → imap_processing-0.19.0.dist-info}/entry_points.txt +0 -0
@@ -129,31 +129,35 @@ HI_IALIRT_VARIABLE_NAMES = ["h"]
129
129
 
130
130
  # CDF variable names used for direct event data products
131
131
  HI_DE_CDF_FIELDS = [
132
- "NumEvents",
133
- "DataQuality",
134
- "SSDEnergy",
135
- "TOF",
136
- "SSD_ID",
137
- "ERGE",
138
- "MultiFlag",
139
- "Type",
140
- "SpinAngle",
141
- "SpinNumber",
132
+ "num_events",
133
+ "data_quality",
134
+ "ssd_energy",
135
+ "tof",
136
+ "ssd_id",
137
+ "gain",
138
+ "multi_flag",
139
+ "type",
140
+ "spin_sector",
141
+ "spin_number",
142
+ ]
143
+ HI_DIRECT_EVENTS_VARIABLE_NAMES = [
144
+ f"p{n}_{field}" for n in range(6) for field in HI_DE_CDF_FIELDS
142
145
  ]
143
- HI_DE_VARIABLE_NAMES = [f"P{n}_{field}" for n in range(6) for field in HI_DE_CDF_FIELDS]
144
146
  LO_DE_CDF_FIELDS = [
145
- "NumEvents",
146
- "DataQuality",
147
- "APDGain",
148
- "APD_ID",
149
- "APDEnergy",
150
- "TOF",
151
- "MultiFlag",
152
- "PHAType",
153
- "SpinAngle",
154
- "EnergyStep",
147
+ "num_events",
148
+ "data_quality",
149
+ "gain",
150
+ "apd_id",
151
+ "apd_energy",
152
+ "tof",
153
+ "multi_flag",
154
+ "type",
155
+ "spin_sector",
156
+ "energy_step",
157
+ ]
158
+ LO_DIRECT_EVENTS_VARIABLE_NAMES = [
159
+ f"p{n}_{field}" for n in range(8) for field in LO_DE_CDF_FIELDS
155
160
  ]
156
- LO_DE_VARIABLE_NAMES = [f"P{n}_{field}" for n in range(8) for field in LO_DE_CDF_FIELDS]
157
161
 
158
162
  # Final I-ALiRT data product fields
159
163
  CODICE_LO_IAL_DATA_FIELDS = [
@@ -171,34 +175,34 @@ CODICE_HI_IAL_DATA_FIELDS = ["h"]
171
175
  # TODO: Try to convince Joey to move to lower case variable names with
172
176
  # underscores?
173
177
  LO_COUNTERS_AGGREGATED_ACTIVE_VARIABLES = {
174
- "TCR": True,
175
- "DCR": True,
176
- "TOFPlusAPD": False,
177
- "TOFOnly": False,
178
- "PositionPlusAPD": False,
179
- "PositionOnly": False,
180
- "STAorSTBPlusAPD": False,
181
- "STAorSTBOnly": False,
182
- "Reserved1": False,
183
- "Reserved2": False,
184
- "SPOnly": False,
185
- "APDOnly": False,
186
- "LowTOFCutoff": False,
187
- "STA": True,
188
- "STB": True,
189
- "SP": True,
190
- "TotalPositionCount": True,
191
- "InvalidPositionCount": False,
192
- "ASIC1FlagInvalid": False,
193
- "ASIC2FlagInvalid": False,
194
- "ASIC1ChannelInvalid": False,
195
- "ASIC2ChannelInvalid": False,
196
- "TEC4TimeoutTOFNoPos": False,
197
- "TEC4TimeoutPosNoTOF": False,
198
- "TEC4TimeoutNoPosTOF": False,
199
- "TEC5TimeoutTOFNoPos": False,
200
- "TEC5TimeoutPosNoTOF": False,
201
- "TEC5TimeoutNoPosTOF": False,
178
+ "tcr": True,
179
+ "dcr": True,
180
+ "tof_plus_apd": False,
181
+ "tof_only": False,
182
+ "position_plus_apd": False,
183
+ "position_only": False,
184
+ "sta_or_stb_plus_apd": False,
185
+ "sta_or_stb_only": False,
186
+ "reserved1": False,
187
+ "reserved2": False,
188
+ "sp_only": False,
189
+ "apd_only": False,
190
+ "low_tof_cutoff": False,
191
+ "sta": True,
192
+ "stb": True,
193
+ "sp": True,
194
+ "total_position_count": True,
195
+ "invalid_position_count": False,
196
+ "asic1_flag_invalid": False,
197
+ "asic2_flag_invalid": False,
198
+ "asic1_channel_invalid": False,
199
+ "asic2_channel_invalid": False,
200
+ "tec4_timeout_tof_no_pos": False,
201
+ "tec4_timeout_pos_no_tof": False,
202
+ "tec4_timeout_no_pos_tof": False,
203
+ "tec5_timeout_tof_no_pos": False,
204
+ "tec5_timeout_pos_no_tof": False,
205
+ "tec5_timeout_no_pos_tof": False,
202
206
  }
203
207
  LO_COUNTERS_AGGREGATED_VARIABLE_NAMES = [
204
208
  name
@@ -206,22 +210,22 @@ LO_COUNTERS_AGGREGATED_VARIABLE_NAMES = [
206
210
  if is_active
207
211
  ]
208
212
  HI_COUNTERS_AGGREGATED_ACTIVE_VARIABLES = {
209
- "DCR": True,
210
- "STO": True,
211
- "SPO": True,
212
- "Reserved1": False,
213
- "MST": True,
214
- "Reserved2": False,
215
- "Reserved3": False,
216
- "Reserved4": False,
217
- "Reserved5": False,
218
- "LowTOFCutoff": False,
219
- "Reserved6": False,
220
- "Reserved7": False,
221
- "ASIC1FlagInvalid": True,
222
- "ASIC2FlagInvalid": True,
223
- "ASIC1ChannelInvalid": False,
224
- "ASIC2ChannelInvalid": False,
213
+ "dcr": True,
214
+ "sto": True,
215
+ "spo": True,
216
+ "reserved1": False,
217
+ "mst": True,
218
+ "reserved2": False,
219
+ "reserved3": False,
220
+ "reserved4": False,
221
+ "reserved5": False,
222
+ "low_tof_cutoff": False,
223
+ "reserved6": False,
224
+ "reserved7": False,
225
+ "asic1_flag_invalid": True,
226
+ "asic2_flag_invalid": True,
227
+ "asic1_channel_invalid": False,
228
+ "asic_2_channel_invalid": False,
225
229
  }
226
230
  HI_COUNTERS_AGGREGATED_VARIABLE_NAMES = [
227
231
  name
@@ -229,6 +233,14 @@ HI_COUNTERS_AGGREGATED_VARIABLE_NAMES = [
229
233
  if is_active
230
234
  ]
231
235
 
236
+ # List of data products that require application of despinning algorithm
237
+ REQUIRES_DESPINNING = [
238
+ "imap_codice_l1a_lo-sw-angular",
239
+ "imap_codice_l1a_lo-nsw-angular",
240
+ "imap_codice_l1a_lo-sw-priority",
241
+ "imap_codice_l1a_lo-nsw-priority",
242
+ ]
243
+
232
244
  # Energy tables for CoDICE-Hi data products. These values represent the edges
233
245
  # of the bins, and are used in the CoDICE L1a pipeline to compute the centers
234
246
  # and deltas of the bins, which then get stored in the CDF files for future use.
@@ -720,42 +732,42 @@ DE_DATA_PRODUCT_CONFIGURATIONS: dict[Any, dict[str, Any]] = {
720
732
  CODICEAPID.COD_HI_PHA: {
721
733
  "num_priorities": 6,
722
734
  "bit_structure": {
723
- "SSDEnergy": {
735
+ "ssd_energy": {
724
736
  "bit_length": 11,
725
737
  "dtype": np.uint16,
726
738
  "fillval": np.iinfo(np.uint16).max,
727
739
  },
728
- "TOF": {
740
+ "tof": {
729
741
  "bit_length": 10,
730
742
  "dtype": np.uint16,
731
743
  "fillval": np.iinfo(np.uint16).max,
732
744
  },
733
- "SSD_ID": {
745
+ "ssd_id": {
734
746
  "bit_length": 4,
735
747
  "dtype": np.uint8,
736
748
  "fillval": np.iinfo(np.uint8).max,
737
749
  },
738
- "ERGE": {
750
+ "gain": {
739
751
  "bit_length": 2,
740
752
  "dtype": np.uint8,
741
753
  "fillval": np.iinfo(np.uint8).max,
742
754
  },
743
- "MultiFlag": {
755
+ "multi_flag": {
744
756
  "bit_length": 1,
745
757
  "dtype": np.uint8,
746
758
  "fillval": np.iinfo(np.uint8).max,
747
759
  },
748
- "Type": {
760
+ "type": {
749
761
  "bit_length": 2,
750
762
  "dtype": np.uint8,
751
763
  "fillval": np.iinfo(np.uint8).max,
752
764
  },
753
- "SpinAngle": {
765
+ "spin_sector": {
754
766
  "bit_length": 5,
755
767
  "dtype": np.uint8,
756
768
  "fillval": np.iinfo(np.uint8).max,
757
769
  },
758
- "SpinNumber": {
770
+ "spin_number": {
759
771
  "bit_length": 4,
760
772
  "dtype": np.uint8,
761
773
  "fillval": np.iinfo(np.uint8).max,
@@ -776,47 +788,47 @@ DE_DATA_PRODUCT_CONFIGURATIONS: dict[Any, dict[str, Any]] = {
776
788
  CODICEAPID.COD_LO_PHA: {
777
789
  "num_priorities": 8,
778
790
  "bit_structure": {
779
- "APDGain": {
791
+ "gain": {
780
792
  "bit_length": 1,
781
793
  "dtype": np.uint8,
782
794
  "fillval": np.iinfo(np.uint8).max,
783
795
  },
784
- "APD_ID": {
796
+ "apd_id": {
785
797
  "bit_length": 5,
786
798
  "dtype": np.uint8,
787
799
  "fillval": np.iinfo(np.uint8).max,
788
800
  },
789
- "Position": {
801
+ "position": {
790
802
  "bit_length": 5,
791
803
  "dtype": np.uint8,
792
804
  "fillval": np.iinfo(np.uint8).max,
793
805
  },
794
- "APDEnergy": {
806
+ "apd_energy": {
795
807
  "bit_length": 9,
796
808
  "dtype": np.uint16,
797
809
  "fillval": np.iinfo(np.uint16).max,
798
810
  },
799
- "TOF": {
811
+ "tof": {
800
812
  "bit_length": 10,
801
813
  "dtype": np.uint16,
802
814
  "fillval": np.iinfo(np.uint16).max,
803
815
  },
804
- "MultiFlag": {
816
+ "multi_flag": {
805
817
  "bit_length": 1,
806
818
  "dtype": np.uint8,
807
819
  "fillval": np.iinfo(np.uint8).max,
808
820
  },
809
- "PHAType": {
821
+ "type": {
810
822
  "bit_length": 2,
811
823
  "dtype": np.uint8,
812
824
  "fillval": np.iinfo(np.uint8).max,
813
825
  },
814
- "SpinAngle": {
826
+ "spin_sector": {
815
827
  "bit_length": 5,
816
828
  "dtype": np.uint8,
817
829
  "fillval": np.iinfo(np.uint8).max,
818
830
  },
819
- "EnergyStep": {
831
+ "energy_step": {
820
832
  "bit_length": 7,
821
833
  "dtype": np.uint8,
822
834
  "fillval": np.iinfo(np.uint8).max,
@@ -1508,529 +1520,662 @@ LOSSY_B_TABLE = {
1508
1520
  255: 2151415807,
1509
1521
  }
1510
1522
 
1523
+ # Lookup table for CoDICE-Lo despinning pixel orientations
1524
+ # See section 9.3.4 of the algorithm document for further information
1525
+ PIXEL_ORIENTATIONS = {
1526
+ 0: "A",
1527
+ 1: "B",
1528
+ 2: "A",
1529
+ 3: "B",
1530
+ 4: "A",
1531
+ 5: "A",
1532
+ 6: "B",
1533
+ 7: "B",
1534
+ 8: "A",
1535
+ 9: "A",
1536
+ 10: "B",
1537
+ 11: "B",
1538
+ 12: "A",
1539
+ 13: "A",
1540
+ 14: "A",
1541
+ 15: "B",
1542
+ 16: "B",
1543
+ 17: "B",
1544
+ 18: "A",
1545
+ 19: "A",
1546
+ 20: "A",
1547
+ 21: "B",
1548
+ 22: "B",
1549
+ 23: "B",
1550
+ 24: "A",
1551
+ 25: "A",
1552
+ 26: "A",
1553
+ 27: "A",
1554
+ 28: "B",
1555
+ 29: "B",
1556
+ 30: "B",
1557
+ 31: "B",
1558
+ 32: "A",
1559
+ 33: "A",
1560
+ 34: "A",
1561
+ 35: "A",
1562
+ 36: "B",
1563
+ 37: "B",
1564
+ 38: "B",
1565
+ 39: "B",
1566
+ 40: "A",
1567
+ 41: "A",
1568
+ 42: "A",
1569
+ 43: "A",
1570
+ 44: "A",
1571
+ 45: "B",
1572
+ 46: "B",
1573
+ 47: "B",
1574
+ 48: "B",
1575
+ 49: "B",
1576
+ 50: "A",
1577
+ 51: "A",
1578
+ 52: "A",
1579
+ 53: "A",
1580
+ 54: "A",
1581
+ 55: "B",
1582
+ 56: "B",
1583
+ 57: "B",
1584
+ 58: "B",
1585
+ 59: "B",
1586
+ 60: "A",
1587
+ 61: "A",
1588
+ 62: "A",
1589
+ 63: "A",
1590
+ 64: "A",
1591
+ 65: "B",
1592
+ 66: "B",
1593
+ 67: "B",
1594
+ 68: "B",
1595
+ 69: "B",
1596
+ 70: "A",
1597
+ 71: "A",
1598
+ 72: "A",
1599
+ 73: "A",
1600
+ 74: "A",
1601
+ 75: "B",
1602
+ 76: "B",
1603
+ 77: "B",
1604
+ 78: "B",
1605
+ 79: "B",
1606
+ 80: "A",
1607
+ 81: "A",
1608
+ 82: "A",
1609
+ 83: "A",
1610
+ 84: "A",
1611
+ 85: "A",
1612
+ 86: "B",
1613
+ 87: "B",
1614
+ 88: "B",
1615
+ 89: "B",
1616
+ 90: "B",
1617
+ 91: "B",
1618
+ 92: "A",
1619
+ 93: "A",
1620
+ 94: "A",
1621
+ 95: "A",
1622
+ 96: "A",
1623
+ 97: "A",
1624
+ 98: "B",
1625
+ 99: "B",
1626
+ 100: "B",
1627
+ 101: "B",
1628
+ 102: "B",
1629
+ 103: "B",
1630
+ 104: "A",
1631
+ 105: "A",
1632
+ 106: "A",
1633
+ 107: "A",
1634
+ 108: "A",
1635
+ 109: "A",
1636
+ 110: "B",
1637
+ 111: "B",
1638
+ 112: "B",
1639
+ 113: "B",
1640
+ 114: "B",
1641
+ 115: "B",
1642
+ 116: "A",
1643
+ 117: "A",
1644
+ 118: "A",
1645
+ 119: "A",
1646
+ 120: "A",
1647
+ 121: "A",
1648
+ 122: "B",
1649
+ 123: "B",
1650
+ 124: "B",
1651
+ 125: "B",
1652
+ 126: "B",
1653
+ 127: "B",
1654
+ }
1655
+
1511
1656
  # Derived acquisition times that get stored in CDF data variables in L1a
1512
1657
  # processing. These are taken from the "Acq Time" column in the "Lo Stepping"
1513
1658
  # tab of the "*-SCI-LUT-*.xml" spreadsheet that largely defines CoDICE
1514
1659
  # processing.
1515
1660
  ACQUISITION_TIMES = {
1516
1661
  0: [
1517
- 578.7083,
1518
- 578.7083,
1519
- 578.7083,
1520
- 578.7083,
1521
- 289.35416,
1522
- 289.35416,
1523
- 289.35416,
1524
- 289.35416,
1525
- 289.35416,
1526
- 289.35416,
1527
- 289.35416,
1528
- 289.35416,
1529
- 192.90277,
1530
- 192.90277,
1531
- 192.90277,
1532
- 192.90277,
1533
- 192.90277,
1534
- 192.90277,
1535
- 192.90277,
1536
- 192.90277,
1537
- 192.90277,
1538
- 192.90277,
1539
- 192.90277,
1540
- 192.90277,
1541
- 144.67708,
1542
- 144.67708,
1543
- 144.67708,
1544
- 144.67708,
1545
- 144.67708,
1546
- 144.67708,
1547
- 144.67708,
1548
- 144.67708,
1549
- 144.67708,
1550
- 144.67708,
1551
- 144.67708,
1552
- 144.67708,
1553
- 144.67708,
1554
- 144.67708,
1555
- 144.67708,
1556
- 144.67708,
1557
- 115.74167,
1558
- 115.74167,
1559
- 115.74167,
1560
- 115.74167,
1561
- 115.74167,
1562
- 115.74167,
1563
- 115.74167,
1564
- 115.74167,
1565
- 115.74167,
1566
- 115.74167,
1567
- 115.74167,
1568
- 115.74167,
1569
- 115.74167,
1570
- 115.74167,
1571
- 115.74167,
1572
- 115.74167,
1573
- 115.74167,
1574
- 115.74167,
1575
- 115.74167,
1576
- 115.74167,
1577
- 115.74167,
1578
- 115.74167,
1579
- 115.74167,
1580
- 115.74167,
1581
- 115.74167,
1582
- 115.74167,
1583
- 115.74167,
1584
- 115.74167,
1585
- 115.74167,
1586
- 115.74167,
1587
- 115.74167,
1588
- 115.74167,
1589
- 115.74167,
1590
- 115.74167,
1591
- 115.74167,
1592
- 115.74167,
1593
- 115.74167,
1594
- 115.74167,
1595
- 115.74167,
1596
- 115.74167,
1597
- 95.69444,
1598
- 95.69444,
1599
- 95.69444,
1600
- 95.69444,
1601
- 95.69444,
1602
- 95.69444,
1603
- 95.69444,
1604
- 95.69444,
1605
- 95.69444,
1606
- 95.69444,
1607
- 95.69444,
1608
- 95.69444,
1609
- 95.69444,
1610
- 95.69444,
1611
- 95.69444,
1612
- 95.69444,
1613
- 95.69444,
1614
- 95.69444,
1615
- 95.69444,
1616
- 95.69444,
1617
- 95.69444,
1618
- 95.69444,
1619
- 95.69444,
1620
- 95.69444,
1621
- 95.69444,
1622
- 95.69444,
1623
- 95.69444,
1624
- 95.69444,
1625
- 95.69444,
1626
- 95.69444,
1627
- 95.69444,
1628
- 95.69444,
1629
- 95.69444,
1630
- 95.69444,
1631
- 95.69444,
1632
- 95.69444,
1633
- 95.69444,
1634
- 95.69444,
1635
- 95.69444,
1636
- 95.69444,
1637
- 95.69444,
1638
- 95.69444,
1639
- 95.69444,
1640
- 95.69444,
1641
- 95.69444,
1642
- 95.69444,
1643
- 95.69444,
1644
- 95.69444,
1662
+ 578.70833333,
1663
+ 578.70833333,
1664
+ 578.70833333,
1665
+ 578.70833333,
1666
+ 289.35416667,
1667
+ 289.35416667,
1668
+ 289.35416667,
1669
+ 289.35416667,
1670
+ 289.35416667,
1671
+ 289.35416667,
1672
+ 289.35416667,
1673
+ 289.35416667,
1674
+ 192.90277778,
1675
+ 192.90277778,
1676
+ 192.90277778,
1677
+ 192.90277778,
1678
+ 192.90277778,
1679
+ 192.90277778,
1680
+ 192.90277778,
1681
+ 192.90277778,
1682
+ 192.90277778,
1683
+ 192.90277778,
1684
+ 192.90277778,
1685
+ 192.90277778,
1686
+ 144.67708333,
1687
+ 144.67708333,
1688
+ 144.67708333,
1689
+ 144.67708333,
1690
+ 144.67708333,
1691
+ 144.67708333,
1692
+ 144.67708333,
1693
+ 144.67708333,
1694
+ 144.67708333,
1695
+ 144.67708333,
1696
+ 144.67708333,
1697
+ 144.67708333,
1698
+ 144.67708333,
1699
+ 144.67708333,
1700
+ 144.67708333,
1701
+ 144.67708333,
1702
+ 115.74166667,
1703
+ 115.74166667,
1704
+ 115.74166667,
1705
+ 115.74166667,
1706
+ 115.74166667,
1707
+ 115.74166667,
1708
+ 115.74166667,
1709
+ 115.74166667,
1710
+ 115.74166667,
1711
+ 115.74166667,
1712
+ 115.74166667,
1713
+ 115.74166667,
1714
+ 115.74166667,
1715
+ 115.74166667,
1716
+ 115.74166667,
1717
+ 115.74166667,
1718
+ 115.74166667,
1719
+ 115.74166667,
1720
+ 115.74166667,
1721
+ 115.74166667,
1722
+ 115.74166667,
1723
+ 115.74166667,
1724
+ 115.74166667,
1725
+ 115.74166667,
1726
+ 115.74166667,
1727
+ 115.74166667,
1728
+ 115.74166667,
1729
+ 115.74166667,
1730
+ 115.74166667,
1731
+ 115.74166667,
1732
+ 115.74166667,
1733
+ 115.74166667,
1734
+ 115.74166667,
1735
+ 115.74166667,
1736
+ 115.74166667,
1737
+ 115.74166667,
1738
+ 115.74166667,
1739
+ 115.74166667,
1740
+ 115.74166667,
1741
+ 115.74166667,
1742
+ 96.45138889,
1743
+ 96.45138889,
1744
+ 96.45138889,
1745
+ 96.45138889,
1746
+ 96.45138889,
1747
+ 96.45138889,
1748
+ 96.45138889,
1749
+ 96.45138889,
1750
+ 96.45138889,
1751
+ 96.45138889,
1752
+ 96.45138889,
1753
+ 96.45138889,
1754
+ 96.45138889,
1755
+ 96.45138889,
1756
+ 96.45138889,
1757
+ 96.45138889,
1758
+ 96.45138889,
1759
+ 96.45138889,
1760
+ 96.45138889,
1761
+ 96.45138889,
1762
+ 96.45138889,
1763
+ 96.45138889,
1764
+ 96.45138889,
1765
+ 96.45138889,
1766
+ 96.45138889,
1767
+ 96.45138889,
1768
+ 96.45138889,
1769
+ 96.45138889,
1770
+ 96.45138889,
1771
+ 96.45138889,
1772
+ 96.45138889,
1773
+ 96.45138889,
1774
+ 96.45138889,
1775
+ 96.45138889,
1776
+ 96.45138889,
1777
+ 96.45138889,
1778
+ 96.45138889,
1779
+ 96.45138889,
1780
+ 96.45138889,
1781
+ 96.45138889,
1782
+ 96.45138889,
1783
+ 96.45138889,
1784
+ 96.45138889,
1785
+ 96.45138889,
1786
+ 96.45138889,
1787
+ 96.45138889,
1788
+ 96.45138889,
1789
+ 96.45138889,
1645
1790
  ],
1646
1791
  1: [
1647
- 578.7083,
1648
- 578.7083,
1649
- 578.7083,
1650
- 578.7083,
1651
- 289.35416,
1652
- 289.35416,
1653
- 289.35416,
1654
- 289.35416,
1655
- 289.35416,
1656
- 289.35416,
1657
- 289.35416,
1658
- 289.35416,
1659
- 192.90277,
1660
- 192.90277,
1661
- 192.90277,
1662
- 192.90277,
1663
- 192.90277,
1664
- 192.90277,
1665
- 192.90277,
1666
- 192.90277,
1667
- 192.90277,
1668
- 192.90277,
1669
- 192.90277,
1670
- 192.90277,
1671
- 144.67708,
1672
- 144.67708,
1673
- 144.67708,
1674
- 144.67708,
1675
- 144.67708,
1676
- 144.67708,
1677
- 144.67708,
1678
- 144.67708,
1679
- 144.67708,
1680
- 144.67708,
1681
- 144.67708,
1682
- 144.67708,
1683
- 144.67708,
1684
- 144.67708,
1685
- 144.67708,
1686
- 144.67708,
1687
- 115.74167,
1688
- 115.74167,
1689
- 115.74167,
1690
- 115.74167,
1691
- 115.74167,
1692
- 115.74167,
1693
- 115.74167,
1694
- 115.74167,
1695
- 115.74167,
1696
- 115.74167,
1697
- 115.74167,
1698
- 115.74167,
1699
- 115.74167,
1700
- 115.74167,
1701
- 115.74167,
1702
- 115.74167,
1703
- 115.74167,
1704
- 115.74167,
1705
- 115.74167,
1706
- 115.74167,
1707
- 115.74167,
1708
- 115.74167,
1709
- 115.74167,
1710
- 115.74167,
1711
- 115.74167,
1712
- 115.74167,
1713
- 115.74167,
1714
- 115.74167,
1715
- 115.74167,
1716
- 115.74167,
1717
- 115.74167,
1718
- 115.74167,
1719
- 115.74167,
1720
- 115.74167,
1721
- 115.74167,
1722
- 115.74167,
1723
- 115.74167,
1724
- 115.74167,
1725
- 115.74167,
1726
- 115.74167,
1727
- 95.69444,
1728
- 95.69444,
1729
- 95.69444,
1730
- 95.69444,
1731
- 95.69444,
1732
- 95.69444,
1733
- 95.69444,
1734
- 95.69444,
1735
- 95.69444,
1736
- 95.69444,
1737
- 95.69444,
1738
- 95.69444,
1739
- 95.69444,
1740
- 95.69444,
1741
- 95.69444,
1742
- 95.69444,
1743
- 95.69444,
1744
- 95.69444,
1745
- 95.69444,
1746
- 95.69444,
1747
- 95.69444,
1748
- 95.69444,
1749
- 95.69444,
1750
- 95.69444,
1751
- 95.69444,
1752
- 95.69444,
1753
- 95.69444,
1754
- 95.69444,
1755
- 95.69444,
1756
- 95.69444,
1757
- 95.69444,
1758
- 95.69444,
1759
- 95.69444,
1760
- 95.69444,
1761
- 95.69444,
1762
- 95.69444,
1763
- 95.69444,
1764
- 95.69444,
1765
- 95.69444,
1766
- 95.69444,
1767
- 95.69444,
1768
- 95.69444,
1769
- 95.69444,
1770
- 95.69444,
1771
- 95.69444,
1772
- 95.69444,
1773
- 95.69444,
1774
- 95.69444,
1792
+ 578.70833333,
1793
+ 578.70833333,
1794
+ 578.70833333,
1795
+ 578.70833333,
1796
+ 289.35416667,
1797
+ 289.35416667,
1798
+ 289.35416667,
1799
+ 289.35416667,
1800
+ 289.35416667,
1801
+ 289.35416667,
1802
+ 289.35416667,
1803
+ 289.35416667,
1804
+ 192.90277778,
1805
+ 192.90277778,
1806
+ 192.90277778,
1807
+ 192.90277778,
1808
+ 192.90277778,
1809
+ 192.90277778,
1810
+ 192.90277778,
1811
+ 192.90277778,
1812
+ 192.90277778,
1813
+ 192.90277778,
1814
+ 192.90277778,
1815
+ 192.90277778,
1816
+ 144.67708333,
1817
+ 144.67708333,
1818
+ 144.67708333,
1819
+ 144.67708333,
1820
+ 144.67708333,
1821
+ 144.67708333,
1822
+ 144.67708333,
1823
+ 144.67708333,
1824
+ 144.67708333,
1825
+ 144.67708333,
1826
+ 144.67708333,
1827
+ 144.67708333,
1828
+ 144.67708333,
1829
+ 144.67708333,
1830
+ 144.67708333,
1831
+ 144.67708333,
1832
+ 115.74166667,
1833
+ 115.74166667,
1834
+ 115.74166667,
1835
+ 115.74166667,
1836
+ 115.74166667,
1837
+ 115.74166667,
1838
+ 115.74166667,
1839
+ 115.74166667,
1840
+ 115.74166667,
1841
+ 115.74166667,
1842
+ 115.74166667,
1843
+ 115.74166667,
1844
+ 115.74166667,
1845
+ 115.74166667,
1846
+ 115.74166667,
1847
+ 115.74166667,
1848
+ 115.74166667,
1849
+ 115.74166667,
1850
+ 115.74166667,
1851
+ 115.74166667,
1852
+ 115.74166667,
1853
+ 115.74166667,
1854
+ 115.74166667,
1855
+ 115.74166667,
1856
+ 115.74166667,
1857
+ 115.74166667,
1858
+ 115.74166667,
1859
+ 115.74166667,
1860
+ 115.74166667,
1861
+ 115.74166667,
1862
+ 115.74166667,
1863
+ 115.74166667,
1864
+ 115.74166667,
1865
+ 115.74166667,
1866
+ 115.74166667,
1867
+ 115.74166667,
1868
+ 115.74166667,
1869
+ 115.74166667,
1870
+ 115.74166667,
1871
+ 115.74166667,
1872
+ 96.45138889,
1873
+ 96.45138889,
1874
+ 96.45138889,
1875
+ 96.45138889,
1876
+ 96.45138889,
1877
+ 96.45138889,
1878
+ 96.45138889,
1879
+ 96.45138889,
1880
+ 96.45138889,
1881
+ 96.45138889,
1882
+ 96.45138889,
1883
+ 96.45138889,
1884
+ 96.45138889,
1885
+ 96.45138889,
1886
+ 96.45138889,
1887
+ 96.45138889,
1888
+ 96.45138889,
1889
+ 96.45138889,
1890
+ 96.45138889,
1891
+ 96.45138889,
1892
+ 96.45138889,
1893
+ 96.45138889,
1894
+ 96.45138889,
1895
+ 96.45138889,
1896
+ 96.45138889,
1897
+ 96.45138889,
1898
+ 96.45138889,
1899
+ 96.45138889,
1900
+ 96.45138889,
1901
+ 96.45138889,
1902
+ 96.45138889,
1903
+ 96.45138889,
1904
+ 96.45138889,
1905
+ 96.45138889,
1906
+ 96.45138889,
1907
+ 96.45138889,
1908
+ 96.45138889,
1909
+ 96.45138889,
1910
+ 96.45138889,
1911
+ 96.45138889,
1912
+ 96.45138889,
1913
+ 96.45138889,
1914
+ 96.45138889,
1915
+ 96.45138889,
1916
+ 96.45138889,
1917
+ 96.45138889,
1918
+ 96.45138889,
1919
+ 96.45138889,
1775
1920
  ],
1776
1921
  2: [
1777
- 578.7083,
1778
- 578.7083,
1779
- 578.7083,
1780
- 578.7083,
1781
- 289.35416,
1782
- 289.35416,
1783
- 289.35416,
1784
- 289.35416,
1785
- 289.35416,
1786
- 289.35416,
1787
- 289.35416,
1788
- 289.35416,
1789
- 192.90277,
1790
- 192.90277,
1791
- 192.90277,
1792
- 192.90277,
1793
- 192.90277,
1794
- 192.90277,
1795
- 192.90277,
1796
- 192.90277,
1797
- 192.90277,
1798
- 192.90277,
1799
- 192.90277,
1800
- 192.90277,
1801
- 144.67708,
1802
- 144.67708,
1803
- 144.67708,
1804
- 144.67708,
1805
- 144.67708,
1806
- 144.67708,
1807
- 144.67708,
1808
- 144.67708,
1809
- 144.67708,
1810
- 144.67708,
1811
- 144.67708,
1812
- 144.67708,
1813
- 144.67708,
1814
- 144.67708,
1815
- 144.67708,
1816
- 144.67708,
1817
- 115.74167,
1818
- 115.74167,
1819
- 115.74167,
1820
- 115.74167,
1821
- 115.74167,
1822
- 115.74167,
1823
- 115.74167,
1824
- 115.74167,
1825
- 115.74167,
1826
- 115.74167,
1827
- 115.74167,
1828
- 115.74167,
1829
- 115.74167,
1830
- 115.74167,
1831
- 115.74167,
1832
- 115.74167,
1833
- 115.74167,
1834
- 115.74167,
1835
- 115.74167,
1836
- 115.74167,
1837
- 115.74167,
1838
- 115.74167,
1839
- 115.74167,
1840
- 115.74167,
1841
- 115.74167,
1842
- 115.74167,
1843
- 115.74167,
1844
- 115.74167,
1845
- 115.74167,
1846
- 115.74167,
1847
- 115.74167,
1848
- 115.74167,
1849
- 115.74167,
1850
- 115.74167,
1851
- 115.74167,
1852
- 115.74167,
1853
- 115.74167,
1854
- 115.74167,
1855
- 115.74167,
1856
- 115.74167,
1857
- 95.69444,
1858
- 95.69444,
1859
- 95.69444,
1860
- 95.69444,
1861
- 95.69444,
1862
- 95.69444,
1863
- 95.69444,
1864
- 95.69444,
1865
- 95.69444,
1866
- 95.69444,
1867
- 95.69444,
1868
- 95.69444,
1869
- 95.69444,
1870
- 95.69444,
1871
- 95.69444,
1872
- 95.69444,
1873
- 95.69444,
1874
- 95.69444,
1875
- 95.69444,
1876
- 95.69444,
1877
- 95.69444,
1878
- 95.69444,
1879
- 95.69444,
1880
- 95.69444,
1881
- 95.69444,
1882
- 95.69444,
1883
- 95.69444,
1884
- 95.69444,
1885
- 95.69444,
1886
- 95.69444,
1887
- 95.69444,
1888
- 95.69444,
1889
- 95.69444,
1890
- 95.69444,
1891
- 95.69444,
1892
- 95.69444,
1893
- 95.69444,
1894
- 95.69444,
1895
- 95.69444,
1896
- 95.69444,
1897
- 95.69444,
1898
- 95.69444,
1899
- 95.69444,
1900
- 95.69444,
1901
- 95.69444,
1902
- 95.69444,
1903
- 95.69444,
1904
- 95.69444,
1922
+ 578.70833333,
1923
+ 578.70833333,
1924
+ 578.70833333,
1925
+ 578.70833333,
1926
+ 289.35416667,
1927
+ 289.35416667,
1928
+ 289.35416667,
1929
+ 289.35416667,
1930
+ 289.35416667,
1931
+ 289.35416667,
1932
+ 289.35416667,
1933
+ 289.35416667,
1934
+ 192.90277778,
1935
+ 192.90277778,
1936
+ 192.90277778,
1937
+ 192.90277778,
1938
+ 192.90277778,
1939
+ 192.90277778,
1940
+ 192.90277778,
1941
+ 192.90277778,
1942
+ 192.90277778,
1943
+ 192.90277778,
1944
+ 192.90277778,
1945
+ 192.90277778,
1946
+ 144.67708333,
1947
+ 144.67708333,
1948
+ 144.67708333,
1949
+ 144.67708333,
1950
+ 144.67708333,
1951
+ 144.67708333,
1952
+ 144.67708333,
1953
+ 144.67708333,
1954
+ 144.67708333,
1955
+ 144.67708333,
1956
+ 144.67708333,
1957
+ 144.67708333,
1958
+ 144.67708333,
1959
+ 144.67708333,
1960
+ 144.67708333,
1961
+ 144.67708333,
1962
+ 115.74166667,
1963
+ 115.74166667,
1964
+ 115.74166667,
1965
+ 115.74166667,
1966
+ 115.74166667,
1967
+ 115.74166667,
1968
+ 115.74166667,
1969
+ 115.74166667,
1970
+ 115.74166667,
1971
+ 115.74166667,
1972
+ 115.74166667,
1973
+ 115.74166667,
1974
+ 115.74166667,
1975
+ 115.74166667,
1976
+ 115.74166667,
1977
+ 115.74166667,
1978
+ 115.74166667,
1979
+ 115.74166667,
1980
+ 115.74166667,
1981
+ 115.74166667,
1982
+ 115.74166667,
1983
+ 115.74166667,
1984
+ 115.74166667,
1985
+ 115.74166667,
1986
+ 115.74166667,
1987
+ 115.74166667,
1988
+ 115.74166667,
1989
+ 115.74166667,
1990
+ 115.74166667,
1991
+ 115.74166667,
1992
+ 115.74166667,
1993
+ 115.74166667,
1994
+ 115.74166667,
1995
+ 115.74166667,
1996
+ 115.74166667,
1997
+ 115.74166667,
1998
+ 115.74166667,
1999
+ 115.74166667,
2000
+ 115.74166667,
2001
+ 115.74166667,
2002
+ 96.45138889,
2003
+ 96.45138889,
2004
+ 96.45138889,
2005
+ 96.45138889,
2006
+ 96.45138889,
2007
+ 96.45138889,
2008
+ 96.45138889,
2009
+ 96.45138889,
2010
+ 96.45138889,
2011
+ 96.45138889,
2012
+ 96.45138889,
2013
+ 96.45138889,
2014
+ 96.45138889,
2015
+ 96.45138889,
2016
+ 96.45138889,
2017
+ 96.45138889,
2018
+ 96.45138889,
2019
+ 96.45138889,
2020
+ 96.45138889,
2021
+ 96.45138889,
2022
+ 96.45138889,
2023
+ 96.45138889,
2024
+ 96.45138889,
2025
+ 96.45138889,
2026
+ 96.45138889,
2027
+ 96.45138889,
2028
+ 96.45138889,
2029
+ 96.45138889,
2030
+ 96.45138889,
2031
+ 96.45138889,
2032
+ 96.45138889,
2033
+ 96.45138889,
2034
+ 96.45138889,
2035
+ 96.45138889,
2036
+ 96.45138889,
2037
+ 96.45138889,
2038
+ 96.45138889,
2039
+ 96.45138889,
2040
+ 96.45138889,
2041
+ 96.45138889,
2042
+ 96.45138889,
2043
+ 96.45138889,
2044
+ 96.45138889,
2045
+ 96.45138889,
2046
+ 96.45138889,
2047
+ 96.45138889,
2048
+ 96.45138889,
2049
+ 96.45138889,
1905
2050
  ],
1906
2051
  3: [
1907
- 578.7083,
1908
- 578.7083,
1909
- 578.7083,
1910
- 578.7083,
1911
- 289.35416,
1912
- 289.35416,
1913
- 289.35416,
1914
- 289.35416,
1915
- 289.35416,
1916
- 289.35416,
1917
- 289.35416,
1918
- 289.35416,
1919
- 192.90277,
1920
- 192.90277,
1921
- 192.90277,
1922
- 192.90277,
1923
- 192.90277,
1924
- 192.90277,
1925
- 192.90277,
1926
- 192.90277,
1927
- 192.90277,
1928
- 192.90277,
1929
- 192.90277,
1930
- 192.90277,
1931
- 144.67708,
1932
- 144.67708,
1933
- 144.67708,
1934
- 144.67708,
1935
- 144.67708,
1936
- 144.67708,
1937
- 144.67708,
1938
- 144.67708,
1939
- 144.67708,
1940
- 144.67708,
1941
- 144.67708,
1942
- 144.67708,
1943
- 144.67708,
1944
- 144.67708,
1945
- 144.67708,
1946
- 144.67708,
1947
- 115.74167,
1948
- 115.74167,
1949
- 115.74167,
1950
- 115.74167,
1951
- 115.74167,
1952
- 115.74167,
1953
- 115.74167,
1954
- 115.74167,
1955
- 115.74167,
1956
- 115.74167,
1957
- 115.74167,
1958
- 115.74167,
1959
- 115.74167,
1960
- 115.74167,
1961
- 115.74167,
1962
- 115.74167,
1963
- 115.74167,
1964
- 115.74167,
1965
- 115.74167,
1966
- 115.74167,
1967
- 115.74167,
1968
- 115.74167,
1969
- 115.74167,
1970
- 115.74167,
1971
- 115.74167,
1972
- 115.74167,
1973
- 115.74167,
1974
- 115.74167,
1975
- 115.74167,
1976
- 115.74167,
1977
- 115.74167,
1978
- 115.74167,
1979
- 115.74167,
1980
- 115.74167,
1981
- 115.74167,
1982
- 115.74167,
1983
- 115.74167,
1984
- 115.74167,
1985
- 115.74167,
1986
- 115.74167,
1987
- 95.69444,
1988
- 95.69444,
1989
- 95.69444,
1990
- 95.69444,
1991
- 95.69444,
1992
- 95.69444,
1993
- 95.69444,
1994
- 95.69444,
1995
- 95.69444,
1996
- 95.69444,
1997
- 95.69444,
1998
- 95.69444,
1999
- 95.69444,
2000
- 95.69444,
2001
- 95.69444,
2002
- 95.69444,
2003
- 95.69444,
2004
- 95.69444,
2005
- 95.69444,
2006
- 95.69444,
2007
- 95.69444,
2008
- 95.69444,
2009
- 95.69444,
2010
- 95.69444,
2011
- 95.69444,
2012
- 95.69444,
2013
- 95.69444,
2014
- 95.69444,
2015
- 95.69444,
2016
- 95.69444,
2017
- 95.69444,
2018
- 95.69444,
2019
- 95.69444,
2020
- 95.69444,
2021
- 95.69444,
2022
- 95.69444,
2023
- 95.69444,
2024
- 95.69444,
2025
- 95.69444,
2026
- 95.69444,
2027
- 95.69444,
2028
- 95.69444,
2029
- 95.69444,
2030
- 95.69444,
2031
- 95.69444,
2032
- 95.69444,
2033
- 95.69444,
2034
- 95.69444,
2052
+ 578.70833333,
2053
+ 578.70833333,
2054
+ 578.70833333,
2055
+ 578.70833333,
2056
+ 289.35416667,
2057
+ 289.35416667,
2058
+ 289.35416667,
2059
+ 289.35416667,
2060
+ 289.35416667,
2061
+ 289.35416667,
2062
+ 289.35416667,
2063
+ 289.35416667,
2064
+ 192.90277778,
2065
+ 192.90277778,
2066
+ 192.90277778,
2067
+ 192.90277778,
2068
+ 192.90277778,
2069
+ 192.90277778,
2070
+ 192.90277778,
2071
+ 192.90277778,
2072
+ 192.90277778,
2073
+ 192.90277778,
2074
+ 192.90277778,
2075
+ 192.90277778,
2076
+ 144.67708333,
2077
+ 144.67708333,
2078
+ 144.67708333,
2079
+ 144.67708333,
2080
+ 144.67708333,
2081
+ 144.67708333,
2082
+ 144.67708333,
2083
+ 144.67708333,
2084
+ 144.67708333,
2085
+ 144.67708333,
2086
+ 144.67708333,
2087
+ 144.67708333,
2088
+ 144.67708333,
2089
+ 144.67708333,
2090
+ 144.67708333,
2091
+ 144.67708333,
2092
+ 115.74166667,
2093
+ 115.74166667,
2094
+ 115.74166667,
2095
+ 115.74166667,
2096
+ 115.74166667,
2097
+ 115.74166667,
2098
+ 115.74166667,
2099
+ 115.74166667,
2100
+ 115.74166667,
2101
+ 115.74166667,
2102
+ 115.74166667,
2103
+ 115.74166667,
2104
+ 115.74166667,
2105
+ 115.74166667,
2106
+ 115.74166667,
2107
+ 115.74166667,
2108
+ 115.74166667,
2109
+ 115.74166667,
2110
+ 115.74166667,
2111
+ 115.74166667,
2112
+ 115.74166667,
2113
+ 115.74166667,
2114
+ 115.74166667,
2115
+ 115.74166667,
2116
+ 115.74166667,
2117
+ 115.74166667,
2118
+ 115.74166667,
2119
+ 115.74166667,
2120
+ 115.74166667,
2121
+ 115.74166667,
2122
+ 115.74166667,
2123
+ 115.74166667,
2124
+ 115.74166667,
2125
+ 115.74166667,
2126
+ 115.74166667,
2127
+ 115.74166667,
2128
+ 115.74166667,
2129
+ 115.74166667,
2130
+ 115.74166667,
2131
+ 115.74166667,
2132
+ 96.45138889,
2133
+ 96.45138889,
2134
+ 96.45138889,
2135
+ 96.45138889,
2136
+ 96.45138889,
2137
+ 96.45138889,
2138
+ 96.45138889,
2139
+ 96.45138889,
2140
+ 96.45138889,
2141
+ 96.45138889,
2142
+ 96.45138889,
2143
+ 96.45138889,
2144
+ 96.45138889,
2145
+ 96.45138889,
2146
+ 96.45138889,
2147
+ 96.45138889,
2148
+ 96.45138889,
2149
+ 96.45138889,
2150
+ 96.45138889,
2151
+ 96.45138889,
2152
+ 96.45138889,
2153
+ 96.45138889,
2154
+ 96.45138889,
2155
+ 96.45138889,
2156
+ 96.45138889,
2157
+ 96.45138889,
2158
+ 96.45138889,
2159
+ 96.45138889,
2160
+ 96.45138889,
2161
+ 96.45138889,
2162
+ 96.45138889,
2163
+ 96.45138889,
2164
+ 96.45138889,
2165
+ 96.45138889,
2166
+ 96.45138889,
2167
+ 96.45138889,
2168
+ 96.45138889,
2169
+ 96.45138889,
2170
+ 96.45138889,
2171
+ 96.45138889,
2172
+ 96.45138889,
2173
+ 96.45138889,
2174
+ 96.45138889,
2175
+ 96.45138889,
2176
+ 96.45138889,
2177
+ 96.45138889,
2178
+ 96.45138889,
2179
+ 96.45138889,
2035
2180
  ],
2036
2181
  }