Print ADC
In this exercise, we read the ADC value and use it to find the resistance of the thermistor. Then, we calculate the temperature in Celsius. We’ll then print the ADC value, the resistance, and the temperature to the system console.
Note
The original ESP32 ADC readings are not perfectly accurate, so using the raw ADC reading directly can introduce a significant error in the calculated resistance and temperature. In our testing, this code reported around 31°C, while the same thermistor measured around 26°C using the Arduino ESP32 implementation with ADC calibration. The LUT should give you a result closer to the Arduino reading.
Recent work in
esp-haladds support for calibrated ADC readings, which should help improve the accuracy of this calculation. At the time of writing, this calibration support is available in the development version ofesp-halbut is not yet part of the released version we are using. We will update this chapter once the calibration support is included in a stable release.
Generate project using esp-generate
We will enable async (Embassy) support for this project. To create the project, use the esp-generate command. Run the following:
esp-generate --chip esp32 thermistor
This will open a screen asking you to select options.
- Select the option “Enable unstable HAL features”
- Then, select the option “Adds embassy framework support”.
Just save it by pressing “s” in the keyboard.
Update Cargo.toml
libm: libm is a mathematical library designed for no_std environments. We need the log function from this library.
libm = "0.2.11"
nb crate:
nb = "1.1.0"
Helper Function for Converting Between Celsius and Kelvin
We will create simple constant functions to convert from Celsius to Kelvin and vice versa.
#![allow(unused)]
fn main() {
const fn kelvin_to_celsius(kelvin: f64) -> f64 {
kelvin - 273.15
}
const fn celsius_to_kelvin(celsius: f64) -> f64 {
celsius + 273.15
}
}
Constants
Since the ESP32 has a 12-bit ADC, the maximum value is 4095.
#![allow(unused)]
fn main() {
const ADC_MAX: f64 = 4095.0; // 4095 for 12-bit ADC
}
The typical B value for the NTC 103 thermistor is 3950. This value is usually mentioned in the product details when you purchase it. If it’s not listed, you can try using 3950 for the NTC 103. If it doesn’t work, you may need to calibrate and determine the correct value.
#![allow(unused)]
fn main() {
const B_VALUE: f64 = 3950.0;
}
The reference temperature and the corresponding resistance value at that temperature are usually provided by the manufacturers. This is typically 25°C and 10kΩ. This means the thermistor resistance is approximately 10kΩ at 25°C.
For the B equation, we need the reference temperature in Kelvin. So, we will convert it and create a constant REF_TEMP_K.
#![allow(unused)]
fn main() {
const REF_TEMP: f64 = 25.0; // Reference temperature 25°C
const REF_RES: f64 = 10_000.0; // Thermistor resistance at the Reference Temperature(25°C)
const REF_TEMP_K: f64 = celsius_to_kelvin(REF_TEMP);
}
We need to define R1 resistance value for calculating the thermistor resistance (R2). We should use a resistor value that matches the reference resistance. So, we’ve used a 10kΩ resistor in series with the thermistor to form the voltage divider. I’m just copying the REF_RES value to R1_RES. You can directly hardcode the 10_000 if you’d prefer; it doesn’t make much difference.
#![allow(unused)]
fn main() {
const R1_RES: f64 = REF_RES; // 10_000.0 ohms
}
Calcualte Resistance from ADC value
We explained this formula and its derivation in the previous chapter. Now, we will use the function that applies the formula to convert the ADC value to the thermistor resistance.
#![allow(unused)]
fn main() {
fn adc_to_resistance(adc_value: f64) -> f64 {
let x: f64 = adc_value / (ADC_MAX - adc_value);
R1_RES * x
}
}
Calculating Temperature from Resistance
Once we have the thermistor’s resistance, we can apply the B equation using the B value to calculate the temperature. This will give the temperature in Kelvin.
#![allow(unused)]
fn main() {
// B Equation to convert resistance to temperature
fn calculate_temperature(current_res: f64, b_val: f64) -> f64 {
let ln_value = libm::log(current_res / REF_RES); // Use libm for `no_std`
let inv_t = (1.0 / REF_TEMP_K) + ((1.0 / b_val) * ln_value);
1.0 / inv_t
}
}
ADC Config
In the main function, we will initialize the ADC and configure GPIO13 as an ADC pin.
#![allow(unused)]
fn main() {
let adc_pin = peripherals.GPIO13;
let mut adc2_config = AdcConfig::new();
let mut pin = adc2_config.enable_pin(adc_pin, Attenuation::_11dB);
let mut adc2 = Adc::new(peripherals.ADC2, adc2_config);
}
The main loop
In the main loop, we’ll first read the ADC value and print it. Then, we’ll use the ADC lookup table to fix the non-linearity issue we discussed in the previous chapter and print the corrected value.
We’ll use the corrected ADC value to calculate the thermistor’s resistance, and then use that to calculate the temperature. Since the result will be in Kelvin, we’ll convert it to Celsius and print it.
#![allow(unused)]
fn main() {
loop {
let adc_value: u16 = nb::block!(adc2.read_oneshot(&mut pin)).unwrap();
esp_println::println!("ADC: {}", adc_value);
let adc_value: f64 = ADC_LUT[adc_value as usize];
esp_println::println!("Corrected ADC: {}", adc_value);
let current_res = adc_to_resistance(adc_value);
esp_println::println!("R2: {}", current_res);
let temperature_kelvin = calculate_temperature(current_res, B_VALUE);
let temperature_celsius = kelvin_to_celsius(temperature_kelvin);
esp_println::println!("Temperature:{:.2} °C", temperature_celsius);
Timer::after(Duration::from_secs(1)).await;
}
}
Don’t forget to include the ADC_LUT constant from the ADC Non-Linearity section.
Clone the existing project
You can also clone (or refer) project I created and navigate to the room-temperature folder.
git clone https://github.com/ImplFerris/esp32-projects
cd esp32-projects/room-temperature
The Full code
#![no_std]
#![no_main]
#![deny(
clippy::mem_forget,
reason = "mem::forget is generally not safe to do with esp_hal types, especially those \
holding buffers for the duration of a data transfer."
)]
use defmt::info;
use embassy_executor::Spawner;
use embassy_time::{Duration, Timer};
use esp_hal::clock::CpuClock;
use esp_hal::timer::timg::TimerGroup;
use esp_println as _;
// ADC
use esp_hal::analog::adc::{Adc, AdcConfig, Attenuation};
#[panic_handler]
fn panic(_: &core::panic::PanicInfo) -> ! {
loop {}
}
// This creates a default app-descriptor required by the esp-idf bootloader.
// For more information see: <https://docs.espressif.com/projects/esp-idf/en/stable/esp32/api-reference/system/app_image_format.html#application-description>
esp_bootloader_esp_idf::esp_app_desc!();
const fn kelvin_to_celsius(kelvin: f64) -> f64 {
kelvin - 273.15
}
const fn celsius_to_kelvin(celsius: f64) -> f64 {
celsius + 273.15
}
const ADC_MAX: f64 = 4095.0; // 4095 for 12-bit ADC
const B_VALUE: f64 = 3950.0;
const REF_TEMP: f64 = 25.0; // Reference temperature 25°C
const REF_RES: f64 = 10_000.0; // Thermistor resistance at the Reference Temperature(25°C)
const REF_TEMP_K: f64 = celsius_to_kelvin(REF_TEMP);
const R1_RES: f64 = REF_RES; // 10_000.0 ohms
fn adc_to_resistance(adc_value: f64) -> f64 {
let x: f64 = adc_value / (ADC_MAX - adc_value);
R1_RES * x
}
// B Equation to convert resistance to temperature
fn calculate_temperature(current_res: f64, b_val: f64) -> f64 {
let ln_value = libm::log(current_res / REF_RES); // Use libm for `no_std`
let inv_t = (1.0 / REF_TEMP_K) + ((1.0 / b_val) * ln_value);
1.0 / inv_t
}
#[esp_rtos::main]
async fn main(spawner: Spawner) -> ! {
// generator version: 1.0.0
let config = esp_hal::Config::default().with_cpu_clock(CpuClock::max());
let peripherals = esp_hal::init(config);
let timg0 = TimerGroup::new(peripherals.TIMG0);
esp_rtos::start(timg0.timer0);
info!("Embassy initialized!");
let _ = spawner;
let adc_pin = peripherals.GPIO13;
let mut adc2_config = AdcConfig::new();
let mut pin = adc2_config.enable_pin(adc_pin, Attenuation::_11dB);
let mut adc2 = Adc::new(peripherals.ADC2, adc2_config);
loop {
let adc_value: u16 = nb::block!(adc2.read_oneshot(&mut pin)).unwrap();
esp_println::println!("ADC: {}", adc_value);
let adc_value: f64 = ADC_LUT[adc_value as usize];
esp_println::println!("Corrected ADC: {}", adc_value);
let current_res = adc_to_resistance(adc_value);
esp_println::println!("R2: {}", current_res);
let temperature_kelvin = calculate_temperature(current_res, B_VALUE);
let temperature_celsius = kelvin_to_celsius(temperature_kelvin);
esp_println::println!("Temperature:{:.2} °C", temperature_celsius);
Timer::after(Duration::from_secs(1)).await;
}
}
// Lookup table (LUT) to be used for correcting ADC non-linearity issue
// https://github.com/e-tinkers/esp32-adc-calibrate
// https://www.e-tinkers.com/2019/10/using-a-thermistor-with-arduino-and-unexpected-esp32-adc-non-linearity/
const ADC_LUT: &[f64; 4096] = &[
0.0, 21.8000, 32.0000, 33.8000, 35.0000, 36.4000, 37.8000, 39.0000, 40.8000, 42.0000, 43.6000,
44.8000, 46.2000, 47.8000, 49.0000, 50.0000, 51.2000, 52.6000, 53.8000, 54.8000, 56.0000,
57.0000, 58.4000, 59.8000, 60.8000, 62.0000, 63.0000, 64.2000, 65.4000, 66.6000, 67.8000,
68.8000, 69.8000, 70.8000, 72.0000, 73.0000, 74.0000, 75.2000, 76.4000, 77.6000, 78.8000,
79.8000, 80.8000, 81.8000, 82.8000, 84.0000, 85.0000, 86.0000, 87.0000, 88.0000, 89.0000,
90.0000, 91.0000, 92.2000, 93.2000, 94.4000, 95.4000, 96.6000, 97.8000, 98.8000, 99.8000,
101.0000, 102.0000, 103.2000, 104.4000, 105.6000, 106.8000, 107.8000, 109.0000, 110.0000,
111.0000, 112.4000, 113.8000, 115.4000, 117.0000, 118.6000, 120.0000, 121.6000, 123.0000,
124.8000, 126.0000, 127.8000, 128.8000, 129.8000, 130.8000, 131.8000, 132.6000, 133.6000,
134.4000, 135.2000, 136.2000, 137.0000, 138.0000, 139.0000, 140.0000, 141.0000, 141.8000,
142.8000, 143.8000, 144.8000, 146.0000, 147.2000, 148.8000, 149.8000, 151.0000, 152.2000,
153.6000, 154.8000, 156.0000, 157.2000, 158.6000, 159.8000, 160.8000, 161.8000, 162.8000,
163.8000, 164.8000, 165.8000, 166.8000, 167.8000, 168.8000, 169.8000, 170.8000, 171.8000,
172.8000, 173.8000, 174.8000, 175.8000, 176.8000, 177.8000, 179.0000, 180.0000, 181.4000,
182.6000, 183.8000, 184.8000, 186.0000, 187.0000, 188.2000, 189.6000, 190.8000, 191.8000,
193.0000, 194.0000, 195.4000, 196.8000, 197.8000, 199.0000, 200.0000, 201.2000, 202.6000,
203.8000, 205.0000, 206.0000, 207.2000, 208.4000, 209.6000, 210.6000, 211.8000, 212.8000,
213.8000, 214.8000, 215.8000, 216.8000, 217.8000, 218.8000, 220.0000, 221.0000, 222.0000,
223.0000, 224.0000, 225.0000, 226.0000, 227.0000, 228.0000, 229.0000, 230.2000, 231.2000,
232.2000, 233.4000, 234.4000, 235.4000, 236.4000, 237.6000, 238.6000, 239.6000, 240.8000,
242.0000, 243.4000, 244.8000, 246.0000, 247.4000, 248.8000, 250.0000, 251.6000, 252.8000,
254.0000, 255.6000, 256.8000, 257.8000, 258.8000, 259.6000, 260.6000, 261.4000, 262.4000,
263.4000, 264.2000, 265.2000, 266.0000, 267.0000, 268.0000, 269.0000, 270.0000, 271.0000,
272.0000, 273.0000, 274.6000, 275.8000, 277.0000, 278.4000, 279.8000, 281.0000, 282.2000,
283.8000, 284.8000, 286.0000, 287.6000, 288.8000, 289.8000, 290.8000, 291.8000, 292.8000,
293.8000, 294.8000, 295.8000, 296.8000, 297.8000, 298.8000, 299.8000, 300.8000, 301.8000,
302.8000, 303.8000, 304.8000, 305.8000, 307.0000, 308.0000, 309.0000, 310.0000, 311.0000,
312.2000, 313.4000, 314.6000, 315.8000, 316.8000, 317.8000, 318.8000, 320.0000, 321.0000,
322.4000, 323.8000, 325.0000, 326.2000, 327.6000, 328.8000, 330.0000, 331.4000, 332.8000,
334.0000, 335.0000, 336.4000, 337.6000, 338.8000, 339.8000, 340.8000, 342.0000, 343.0000,
344.0000, 345.2000, 346.4000, 347.6000, 348.8000, 349.8000, 350.8000, 352.0000, 353.0000,
354.0000, 355.0000, 356.0000, 357.0000, 358.2000, 359.4000, 360.4000, 361.6000, 362.6000,
363.8000, 364.8000, 365.8000, 366.8000, 367.8000, 368.8000, 370.0000, 371.0000, 372.0000,
373.0000, 374.0000, 375.0000, 376.2000, 377.4000, 378.4000, 379.6000, 380.6000, 381.8000,
382.8000, 383.8000, 384.8000, 386.0000, 387.2000, 388.6000, 389.8000, 390.8000, 392.0000,
393.2000, 394.6000, 395.8000, 396.8000, 398.0000, 399.2000, 400.6000, 401.8000, 403.0000,
404.8000, 406.0000, 407.2000, 408.8000, 410.0000, 411.2000, 412.8000, 414.0000, 415.4000,
416.8000, 417.8000, 418.6000, 419.6000, 420.6000, 421.4000, 422.4000, 423.4000, 424.2000,
425.2000, 426.2000, 427.0000, 428.0000, 429.0000, 430.0000, 431.0000, 432.0000, 433.6000,
435.0000, 436.6000, 438.0000, 439.4000, 441.0000, 442.4000, 443.8000, 445.4000, 446.8000,
448.2000, 449.0000, 449.8000, 450.8000, 451.4000, 452.0000, 453.0000, 453.8000, 454.8000,
455.2000, 456.0000, 457.0000, 457.8000, 458.6000, 459.2000, 460.0000, 460.8000, 461.8000,
462.4000, 463.0000, 464.0000, 465.0000, 466.0000, 467.2000, 468.6000, 469.8000, 470.8000,
471.8000, 473.0000, 474.0000, 475.2000, 476.4000, 477.8000, 478.8000, 479.8000, 481.0000,
482.8000, 484.0000, 485.4000, 486.8000, 488.0000, 489.8000, 491.0000, 492.4000, 493.8000,
495.2000, 496.6000, 497.4000, 498.2000, 499.0000, 500.0000, 501.0000, 502.0000, 502.8000,
503.8000, 504.8000, 505.8000, 506.6000, 507.4000, 508.2000, 509.0000, 510.0000, 511.0000,
512.0000, 513.0000, 514.2000, 515.6000, 516.8000, 518.0000, 519.0000, 520.4000, 521.8000,
522.8000, 524.0000, 525.2000, 526.6000, 527.8000, 529.0000, 530.0000, 531.2000, 532.6000,
533.8000, 535.0000, 536.0000, 537.2000, 538.6000, 539.8000, 541.0000, 542.0000, 543.2000,
544.6000, 545.6000, 546.8000, 547.8000, 548.8000, 549.8000, 550.8000, 551.8000, 552.8000,
553.8000, 555.0000, 556.0000, 557.0000, 558.0000, 559.0000, 560.0000, 561.4000, 562.8000,
563.8000, 565.0000, 566.4000, 567.8000, 568.8000, 570.0000, 571.4000, 572.8000, 573.8000,
575.0000, 576.2000, 577.2000, 578.4000, 579.4000, 580.4000, 581.4000, 582.4000, 583.4000,
584.6000, 585.6000, 586.6000, 587.6000, 588.6000, 589.6000, 590.6000, 591.8000, 592.8000,
593.8000, 595.0000, 596.0000, 597.0000, 598.2000, 599.6000, 600.8000, 601.8000, 603.0000,
604.0000, 605.0000, 606.2000, 607.6000, 608.6000, 609.0000, 610.0000, 610.8000, 611.6000,
612.2000, 613.0000, 613.8000, 614.8000, 615.2000, 616.0000, 616.8000, 617.8000, 618.4000,
619.0000, 620.0000, 620.8000, 621.4000, 622.0000, 623.0000, 623.8000, 624.8000, 625.8000,
626.8000, 627.8000, 629.0000, 630.0000, 631.0000, 632.0000, 633.0000, 634.2000, 635.4000,
636.6000, 637.6000, 638.8000, 639.8000, 641.0000, 642.0000, 643.6000, 644.8000, 646.0000,
647.4000, 648.8000, 650.0000, 651.4000, 652.8000, 654.0000, 655.2000, 656.6000, 657.8000,
658.8000, 659.8000, 660.8000, 661.8000, 663.0000, 664.0000, 665.0000, 666.0000, 667.2000,
668.2000, 669.4000, 670.6000, 671.6000, 672.8000, 674.0000, 675.6000, 676.8000, 678.0000,
679.8000, 681.0000, 682.2000, 683.8000, 685.0000, 686.4000, 687.8000, 689.0000, 690.0000,
691.0000, 692.0000, 693.0000, 694.0000, 695.0000, 696.2000, 697.2000, 698.2000, 699.4000,
700.4000, 701.6000, 702.6000, 703.8000, 704.6000, 705.4000, 706.2000, 707.0000, 708.0000,
708.8000, 709.8000, 710.8000, 711.6000, 712.4000, 713.0000, 714.0000, 715.0000, 715.8000,
716.8000, 717.8000, 718.6000, 719.2000, 720.0000, 721.8000, 723.0000, 724.4000, 725.8000,
727.0000, 728.8000, 730.0000, 731.4000, 732.8000, 734.0000, 735.6000, 736.8000, 737.8000,
738.8000, 739.8000, 740.8000, 742.0000, 743.0000, 744.0000, 745.0000, 746.0000, 747.0000,
748.0000, 749.0000, 750.0000, 751.0000, 752.2000, 753.6000, 754.8000, 756.0000, 757.4000,
758.8000, 760.0000, 761.2000, 762.6000, 763.8000, 765.0000, 766.4000, 767.8000, 768.8000,
770.0000, 771.0000, 772.0000, 773.0000, 774.2000, 775.4000, 776.6000, 777.8000, 778.8000,
779.8000, 780.8000, 782.0000, 783.0000, 784.0000, 785.2000, 786.6000, 787.8000, 789.0000,
790.0000, 791.4000, 792.8000, 793.8000, 795.0000, 796.0000, 797.4000, 798.8000, 799.8000,
801.0000, 802.0000, 803.0000, 804.4000, 805.6000, 806.8000, 807.8000, 808.8000, 810.0000,
811.0000, 812.0000, 813.2000, 814.4000, 815.8000, 816.8000, 817.8000, 818.8000, 819.8000,
820.8000, 821.8000, 822.8000, 823.8000, 824.8000, 825.8000, 826.8000, 827.8000, 828.8000,
829.8000, 830.8000, 831.8000, 833.0000, 834.0000, 835.0000, 836.2000, 837.4000, 838.6000,
839.8000, 840.8000, 841.8000, 843.0000, 844.0000, 845.0000, 846.2000, 847.4000, 848.8000,
849.8000, 851.0000, 852.8000, 853.8000, 855.0000, 856.8000, 857.8000, 859.0000, 860.8000,
861.8000, 863.0000, 864.6000, 865.4000, 866.4000, 867.2000, 868.2000, 869.0000, 870.0000,
871.0000, 872.0000, 873.0000, 874.0000, 875.0000, 876.0000, 876.8000, 877.8000, 878.8000,
879.8000, 880.8000, 881.8000, 883.0000, 884.0000, 885.0000, 886.0000, 887.0000, 888.2000,
889.2000, 890.4000, 891.6000, 892.6000, 893.8000, 894.8000, 895.8000, 897.0000, 898.2000,
899.8000, 901.0000, 902.0000, 903.6000, 904.8000, 906.0000, 907.6000, 908.8000, 910.0000,
911.4000, 912.8000, 913.4000, 914.2000, 915.0000, 916.0000, 916.8000, 917.8000, 918.8000,
919.6000, 920.2000, 921.0000, 922.0000, 923.0000, 923.8000, 924.8000, 925.6000, 926.4000,
927.2000, 928.0000, 929.4000, 930.8000, 932.0000, 933.2000, 934.8000, 935.8000, 937.0000,
938.4000, 939.8000, 941.0000, 942.2000, 943.8000, 944.8000, 946.0000, 947.4000, 948.8000,
950.0000, 951.0000, 952.6000, 953.8000, 955.0000, 956.2000, 957.8000, 958.8000, 960.0000,
961.0000, 962.2000, 963.4000, 964.6000, 965.8000, 966.8000, 967.8000, 969.0000, 970.0000,
971.0000, 972.0000, 973.2000, 974.4000, 975.6000, 976.6000, 977.4000, 978.2000, 979.2000,
980.0000, 981.0000, 982.0000, 983.0000, 983.8000, 984.8000, 985.8000, 986.8000, 987.6000,
988.4000, 989.2000, 990.0000, 991.0000, 992.0000, 993.0000, 994.0000, 995.4000, 996.6000,
997.8000, 998.8000, 1000.0000, 1001.0000, 1002.0000, 1003.2000, 1004.4000, 1005.8000,
1006.8000, 1007.8000, 1008.8000, 1009.0000, 1009.8000, 1010.2000, 1010.8000, 1011.4000,
1012.0000, 1012.6000, 1013.0000, 1013.8000, 1014.0000, 1014.8000, 1015.4000, 1016.0000,
1016.6000, 1017.0000, 1017.8000, 1018.0000, 1018.8000, 1019.2000, 1019.8000, 1020.6000,
1021.0000, 1021.8000, 1022.0000, 1022.8000, 1023.2000, 1023.8000, 1024.8000, 1026.0000,
1027.6000, 1028.8000, 1030.2000, 1031.8000, 1033.0000, 1034.4000, 1035.8000, 1037.0000,
1038.8000, 1040.0000, 1041.0000, 1042.0000, 1043.0000, 1044.0000, 1045.0000, 1046.0000,
1047.0000, 1048.0000, 1049.0000, 1050.0000, 1051.0000, 1052.0000, 1053.0000, 1054.0000,
1055.0000, 1056.0000, 1057.0000, 1058.2000, 1059.6000, 1060.8000, 1061.8000, 1063.0000,
1064.0000, 1065.2000, 1066.6000, 1067.8000, 1068.8000, 1070.0000, 1071.0000, 1072.2000,
1073.0000, 1074.0000, 1075.0000, 1076.0000, 1077.0000, 1078.0000, 1078.8000, 1079.8000,
1080.8000, 1081.8000, 1082.8000, 1083.8000, 1084.6000, 1085.6000, 1086.4000, 1087.2000,
1088.2000, 1089.6000, 1090.8000, 1092.0000, 1093.0000, 1094.4000, 1095.8000, 1096.8000,
1098.0000, 1099.2000, 1100.8000, 1101.8000, 1103.0000, 1104.0000, 1105.2000, 1106.4000,
1107.6000, 1108.8000, 1109.8000, 1110.8000, 1112.0000, 1113.0000, 1114.0000, 1115.2000,
1116.4000, 1117.6000, 1118.8000, 1119.8000, 1120.8000, 1121.8000, 1123.0000, 1124.0000,
1125.0000, 1126.0000, 1127.0000, 1128.2000, 1129.4000, 1130.6000, 1131.6000, 1132.8000,
1133.8000, 1134.8000, 1135.8000, 1136.8000, 1137.8000, 1138.8000, 1139.6000, 1140.4000,
1141.2000, 1142.0000, 1143.0000, 1144.0000, 1144.8000, 1145.8000, 1146.8000, 1147.6000,
1148.4000, 1149.2000, 1150.0000, 1151.0000, 1152.0000, 1153.0000, 1154.0000, 1155.0000,
1156.0000, 1157.2000, 1158.4000, 1159.6000, 1160.8000, 1161.8000, 1162.8000, 1163.8000,
1164.8000, 1166.0000, 1167.0000, 1168.0000, 1169.6000, 1170.8000, 1172.0000, 1173.8000,
1175.0000, 1176.2000, 1177.8000, 1179.0000, 1180.4000, 1181.8000, 1183.0000, 1184.4000,
1185.0000, 1186.0000, 1186.8000, 1187.6000, 1188.2000, 1189.0000, 1189.8000, 1190.8000,
1191.6000, 1192.0000, 1193.0000, 1193.8000, 1194.8000, 1195.4000, 1196.0000, 1197.0000,
1197.8000, 1198.6000, 1199.2000, 1200.0000, 1201.2000, 1202.6000, 1203.8000, 1205.0000,
1206.2000, 1207.6000, 1208.8000, 1210.0000, 1211.0000, 1212.6000, 1213.8000, 1215.0000,
1216.0000, 1217.2000, 1218.2000, 1219.4000, 1220.6000, 1221.6000, 1222.8000, 1223.8000,
1224.8000, 1225.8000, 1226.8000, 1227.8000, 1229.0000, 1230.0000, 1231.0000, 1232.0000,
1233.0000, 1234.2000, 1235.4000, 1236.6000, 1237.8000, 1238.8000, 1239.8000, 1241.0000,
1242.0000, 1243.0000, 1244.0000, 1245.2000, 1246.4000, 1247.6000, 1248.8000, 1249.8000,
1250.6000, 1251.6000, 1252.6000, 1253.6000, 1254.4000, 1255.4000, 1256.4000, 1257.4000,
1258.2000, 1259.2000, 1260.2000, 1261.2000, 1262.0000, 1263.0000, 1264.0000, 1265.6000,
1266.8000, 1268.0000, 1269.4000, 1270.8000, 1272.0000, 1273.4000, 1274.8000, 1276.0000,
1277.2000, 1278.8000, 1280.0000, 1281.0000, 1282.0000, 1283.0000, 1284.0000, 1285.0000,
1285.8000, 1286.8000, 1287.8000, 1288.8000, 1289.8000, 1290.8000, 1291.8000, 1292.8000,
1293.8000, 1294.8000, 1295.8000, 1296.8000, 1298.0000, 1299.2000, 1300.6000, 1301.8000,
1302.8000, 1304.0000, 1305.2000, 1306.4000, 1307.8000, 1308.8000, 1310.0000, 1311.0000,
1312.4000, 1313.6000, 1314.8000, 1315.8000, 1316.8000, 1317.8000, 1319.0000, 1320.0000,
1321.0000, 1322.0000, 1323.2000, 1324.2000, 1325.4000, 1326.6000, 1327.8000, 1328.8000,
1329.8000, 1330.8000, 1332.0000, 1333.0000, 1334.0000, 1335.0000, 1336.2000, 1337.4000,
1338.6000, 1339.6000, 1340.8000, 1341.8000, 1342.8000, 1343.8000, 1345.0000, 1346.2000,
1347.6000, 1348.8000, 1349.8000, 1351.0000, 1352.0000, 1353.4000, 1354.8000, 1355.8000,
1357.0000, 1358.0000, 1359.4000, 1360.8000, 1361.8000, 1362.8000, 1363.8000, 1364.8000,
1365.8000, 1366.8000, 1367.8000, 1368.8000, 1369.8000, 1370.8000, 1371.8000, 1372.8000,
1373.8000, 1374.8000, 1375.8000, 1376.8000, 1377.8000, 1379.0000, 1380.2000, 1381.6000,
1382.8000, 1383.8000, 1385.0000, 1386.2000, 1387.6000, 1388.8000, 1389.8000, 1391.0000,
1392.0000, 1393.2000, 1394.4000, 1395.6000, 1396.6000, 1397.8000, 1398.8000, 1399.8000,
1400.8000, 1401.8000, 1403.0000, 1404.0000, 1405.0000, 1406.0000, 1407.0000, 1408.2000,
1409.2000, 1410.4000, 1411.4000, 1412.6000, 1413.6000, 1414.8000, 1415.8000, 1416.8000,
1417.8000, 1418.8000, 1419.8000, 1420.8000, 1422.0000, 1423.0000, 1424.0000, 1425.0000,
1426.0000, 1427.0000, 1428.0000, 1428.8000, 1429.8000, 1430.8000, 1431.8000, 1432.8000,
1433.8000, 1434.8000, 1435.8000, 1436.8000, 1437.8000, 1438.8000, 1439.8000, 1440.8000,
1441.8000, 1443.0000, 1444.2000, 1445.6000, 1446.8000, 1448.0000, 1449.0000, 1450.6000,
1451.8000, 1453.0000, 1454.0000, 1455.4000, 1456.8000, 1457.8000, 1459.0000, 1460.0000,
1461.4000, 1462.6000, 1463.8000, 1465.0000, 1466.0000, 1467.2000, 1468.6000, 1469.8000,
1470.8000, 1472.0000, 1473.0000, 1474.0000, 1475.2000, 1476.4000, 1477.6000, 1478.8000,
1479.8000, 1480.8000, 1481.8000, 1483.0000, 1484.0000, 1485.0000, 1486.2000, 1487.4000,
1488.6000, 1489.6000, 1490.8000, 1491.8000, 1492.8000, 1493.8000, 1494.8000, 1496.0000,
1497.0000, 1498.0000, 1499.0000, 1500.0000, 1501.2000, 1502.4000, 1503.6000, 1504.6000,
1505.8000, 1506.8000, 1508.0000, 1509.0000, 1510.0000, 1511.2000, 1512.4000, 1513.8000,
1514.8000, 1515.8000, 1517.0000, 1518.0000, 1519.0000, 1520.2000, 1521.0000, 1522.0000,
1523.0000, 1523.8000, 1524.8000, 1525.6000, 1526.4000, 1527.2000, 1528.0000, 1529.0000,
1529.8000, 1530.8000, 1531.8000, 1532.6000, 1533.4000, 1534.2000, 1535.0000, 1536.0000,
1537.0000, 1538.2000, 1539.4000, 1540.8000, 1541.8000, 1543.0000, 1544.0000, 1545.2000,
1546.6000, 1547.8000, 1548.8000, 1550.0000, 1551.0000, 1552.2000, 1553.6000, 1554.8000,
1556.0000, 1557.0000, 1558.4000, 1559.8000, 1560.8000, 1562.0000, 1563.0000, 1564.4000,
1565.8000, 1566.8000, 1568.0000, 1569.0000, 1570.0000, 1571.0000, 1571.8000, 1572.8000,
1573.8000, 1574.8000, 1575.8000, 1576.8000, 1577.8000, 1578.8000, 1579.6000, 1580.6000,
1581.6000, 1582.4000, 1583.4000, 1584.4000, 1585.8000, 1587.0000, 1588.8000, 1590.0000,
1591.2000, 1592.8000, 1594.0000, 1595.6000, 1597.0000, 1598.2000, 1599.8000, 1600.8000,
1601.8000, 1602.6000, 1603.2000, 1604.0000, 1605.0000, 1605.8000, 1606.8000, 1607.8000,
1608.6000, 1609.2000, 1610.0000, 1611.0000, 1612.0000, 1612.8000, 1613.8000, 1614.6000,
1615.2000, 1616.0000, 1617.4000, 1618.6000, 1619.8000, 1620.8000, 1622.0000, 1623.0000,
1624.4000, 1625.8000, 1626.8000, 1627.8000, 1629.0000, 1630.0000, 1631.4000, 1632.6000,
1633.8000, 1634.8000, 1635.8000, 1637.0000, 1638.0000, 1639.0000, 1640.4000, 1641.6000,
1642.8000, 1643.8000, 1644.8000, 1646.0000, 1647.0000, 1648.0000, 1649.2000, 1650.2000,
1651.4000, 1652.6000, 1653.8000, 1654.8000, 1655.8000, 1656.8000, 1658.0000, 1659.0000,
1660.0000, 1661.0000, 1662.0000, 1663.2000, 1664.6000, 1665.8000, 1667.0000, 1668.2000,
1669.8000, 1671.0000, 1672.0000, 1673.6000, 1674.8000, 1676.0000, 1677.4000, 1678.8000,
1680.0000, 1681.0000, 1682.0000, 1682.8000, 1683.8000, 1684.8000, 1685.8000, 1686.8000,
1687.8000, 1688.8000, 1689.6000, 1690.6000, 1691.4000, 1692.4000, 1693.2000, 1694.0000,
1695.0000, 1696.0000, 1697.8000, 1699.2000, 1700.8000, 1702.6000, 1704.0000, 1705.8000,
1707.2000, 1708.8000, 1710.6000, 1712.0000, 1712.8000, 1713.6000, 1714.0000, 1715.0000,
1715.8000, 1716.2000, 1717.0000, 1717.8000, 1718.4000, 1719.0000, 1719.8000, 1720.6000,
1721.0000, 1722.0000, 1722.8000, 1723.2000, 1724.0000, 1724.8000, 1725.4000, 1726.0000,
1726.8000, 1727.6000, 1728.2000, 1729.2000, 1730.2000, 1731.2000, 1732.2000, 1733.2000,
1734.2000, 1735.2000, 1736.2000, 1737.4000, 1738.4000, 1739.4000, 1740.4000, 1741.4000,
1742.4000, 1743.4000, 1744.4000, 1745.4000, 1746.4000, 1747.4000, 1748.4000, 1749.4000,
1750.4000, 1751.4000, 1752.4000, 1753.4000, 1754.4000, 1755.4000, 1756.4000, 1757.4000,
1758.4000, 1759.4000, 1760.6000, 1761.8000, 1763.0000, 1764.0000, 1765.4000, 1766.8000,
1767.8000, 1769.0000, 1770.4000, 1771.8000, 1772.8000, 1774.0000, 1775.2000, 1776.6000,
1777.8000, 1778.8000, 1780.0000, 1781.0000, 1782.0000, 1783.2000, 1784.4000, 1785.8000,
1786.8000, 1787.8000, 1789.0000, 1790.0000, 1791.0000, 1792.2000, 1793.6000, 1794.8000,
1795.8000, 1797.0000, 1798.0000, 1799.2000, 1800.4000, 1801.8000, 1802.8000, 1803.8000,
1805.0000, 1806.0000, 1807.2000, 1808.6000, 1809.8000, 1810.8000, 1811.8000, 1812.8000,
1813.8000, 1815.0000, 1816.0000, 1817.0000, 1818.0000, 1819.0000, 1820.2000, 1821.2000,
1822.4000, 1823.6000, 1824.8000, 1825.8000, 1826.8000, 1828.0000, 1829.0000, 1830.4000,
1831.8000, 1832.8000, 1833.8000, 1835.0000, 1836.0000, 1837.4000, 1838.6000, 1839.8000,
1840.8000, 1842.0000, 1843.2000, 1844.6000, 1845.8000, 1847.0000, 1848.0000, 1849.4000,
1850.8000, 1851.8000, 1853.0000, 1854.0000, 1855.4000, 1856.6000, 1857.6000, 1858.6000,
1859.6000, 1860.4000, 1861.4000, 1862.4000, 1863.4000, 1864.2000, 1865.2000, 1866.2000,
1867.2000, 1868.0000, 1869.0000, 1870.0000, 1871.0000, 1872.0000, 1873.2000, 1874.6000,
1875.8000, 1876.8000, 1878.0000, 1879.0000, 1880.2000, 1881.6000, 1882.8000, 1883.8000,
1885.0000, 1886.0000, 1887.2000, 1888.6000, 1889.6000, 1890.6000, 1891.8000, 1892.8000,
1893.8000, 1894.8000, 1895.8000, 1896.8000, 1897.8000, 1898.8000, 1900.0000, 1901.0000,
1902.0000, 1903.0000, 1904.0000, 1905.0000, 1906.0000, 1907.0000, 1908.0000, 1909.0000,
1910.0000, 1911.2000, 1912.2000, 1913.2000, 1914.2000, 1915.4000, 1916.4000, 1917.4000,
1918.4000, 1919.6000, 1920.8000, 1921.8000, 1923.0000, 1924.0000, 1925.6000, 1926.8000,
1928.0000, 1929.0000, 1930.4000, 1931.8000, 1932.8000, 1934.0000, 1935.2000, 1936.4000,
1937.6000, 1938.6000, 1939.6000, 1940.6000, 1941.6000, 1942.8000, 1943.8000, 1944.8000,
1945.8000, 1946.8000, 1947.8000, 1948.8000, 1949.8000, 1950.8000, 1951.8000, 1952.8000,
1953.8000, 1955.0000, 1956.0000, 1957.0000, 1958.0000, 1959.2000, 1960.4000, 1961.4000,
1962.6000, 1963.8000, 1964.8000, 1965.8000, 1966.8000, 1968.0000, 1969.0000, 1970.0000,
1971.0000, 1972.0000, 1973.0000, 1974.2000, 1975.2000, 1976.4000, 1977.4000, 1978.6000,
1979.8000, 1980.8000, 1981.8000, 1982.8000, 1983.8000, 1985.0000, 1986.2000, 1987.8000,
1989.0000, 1990.0000, 1991.8000, 1992.8000, 1994.0000, 1995.6000, 1996.8000, 1998.0000,
1999.4000, 2000.8000, 2001.8000, 2002.8000, 2004.0000, 2005.0000, 2006.0000, 2007.2000,
2008.4000, 2009.6000, 2010.8000, 2011.8000, 2012.8000, 2013.8000, 2015.0000, 2016.0000,
2017.0000, 2018.0000, 2019.2000, 2020.2000, 2021.4000, 2022.4000, 2023.6000, 2024.8000,
2025.8000, 2026.8000, 2027.8000, 2028.8000, 2029.8000, 2031.0000, 2032.0000, 2032.8000,
2033.0000, 2033.6000, 2034.0000, 2034.6000, 2035.0000, 2035.4000, 2036.0000, 2036.4000,
2036.8000, 2037.2000, 2037.8000, 2038.2000, 2038.8000, 2039.2000, 2039.8000, 2040.0000,
2040.8000, 2041.0000, 2041.8000, 2042.0000, 2042.8000, 2043.0000, 2043.6000, 2044.0000,
2044.6000, 2045.0000, 2045.6000, 2046.0000, 2046.4000, 2046.8000, 2047.4000, 2047.8000,
2048.6001, 2049.8000, 2050.8000, 2052.0000, 2053.2000, 2054.6001, 2055.8000, 2056.8000,
2058.0000, 2059.0000, 2060.3999, 2061.8000, 2062.8000, 2064.0000, 2065.0000, 2066.0000,
2066.8000, 2067.8000, 2068.8000, 2069.8000, 2070.8000, 2071.8000, 2072.8000, 2073.8000,
2074.8000, 2075.6001, 2076.6001, 2077.6001, 2078.3999, 2079.3999, 2080.2000, 2081.2000,
2082.2000, 2083.0000, 2084.0000, 2085.0000, 2086.0000, 2087.0000, 2088.0000, 2089.0000,
2090.0000, 2091.0000, 2092.0000, 2092.8000, 2093.8000, 2094.8000, 2095.8000, 2097.0000,
2098.0000, 2099.6001, 2100.8000, 2102.0000, 2103.3999, 2104.8000, 2106.0000, 2107.3999,
2108.8000, 2110.0000, 2111.2000, 2112.8000, 2113.8000, 2115.0000, 2116.6001, 2117.8000,
2119.0000, 2120.2000, 2121.8000, 2123.0000, 2124.0000, 2125.6001, 2126.8000, 2128.0000,
2129.0000, 2130.0000, 2130.8000, 2131.8000, 2132.8000, 2133.8000, 2134.8000, 2135.6001,
2136.3999, 2137.2000, 2138.0000, 2139.0000, 2140.0000, 2141.0000, 2142.0000, 2142.8000,
2143.8000, 2144.8000, 2146.0000, 2147.8000, 2149.0000, 2150.0000, 2151.8000, 2153.0000,
2154.2000, 2155.8000, 2157.0000, 2158.2000, 2159.8000, 2160.8000, 2161.8000, 2163.0000,
2164.0000, 2165.0000, 2166.0000, 2167.0000, 2168.0000, 2169.2000, 2170.2000, 2171.3999,
2172.6001, 2173.6001, 2174.8000, 2175.8000, 2176.8000, 2177.8000, 2178.8000, 2180.0000,
2181.0000, 2182.0000, 2183.0000, 2184.0000, 2185.2000, 2186.3999, 2187.3999, 2188.6001,
2189.8000, 2190.8000, 2191.8000, 2193.0000, 2194.0000, 2195.6001, 2196.8000, 2198.0000,
2199.3999, 2200.8000, 2202.0000, 2203.2000, 2204.8000, 2205.8000, 2207.0000, 2208.3999,
2209.6001, 2210.8000, 2211.8000, 2212.8000, 2213.8000, 2215.0000, 2216.0000, 2217.0000,
2218.2000, 2219.3999, 2220.6001, 2221.8000, 2222.8000, 2223.8000, 2224.8000, 2225.6001,
2226.3999, 2227.0000, 2228.0000, 2228.8000, 2229.8000, 2230.6001, 2231.3999, 2232.0000,
2233.0000, 2233.8000, 2234.8000, 2235.6001, 2236.2000, 2237.0000, 2238.0000, 2238.8000,
2239.8000, 2240.8000, 2241.8000, 2242.8000, 2243.8000, 2244.8000, 2245.8000, 2246.8000,
2247.8000, 2248.8000, 2249.8000, 2250.8000, 2251.8000, 2252.8000, 2253.8000, 2254.8000,
2255.8000, 2256.8000, 2257.8000, 2258.8000, 2260.0000, 2261.0000, 2262.2000, 2263.3999,
2264.8000, 2265.8000, 2266.8000, 2268.0000, 2269.0000, 2270.2000, 2271.3999, 2272.6001,
2273.6001, 2274.3999, 2275.3999, 2276.2000, 2277.2000, 2278.0000, 2279.0000, 2280.0000,
2281.0000, 2282.0000, 2283.0000, 2284.0000, 2285.0000, 2286.0000, 2286.8000, 2287.8000,
2289.0000, 2290.0000, 2291.0000, 2292.2000, 2293.6001, 2294.8000, 2295.8000, 2296.8000,
2298.0000, 2299.0000, 2300.2000, 2301.6001, 2302.8000, 2303.8000, 2304.8000, 2306.0000,
2307.0000, 2308.2000, 2309.6001, 2310.8000, 2311.8000, 2312.8000, 2314.0000, 2315.0000,
2316.2000, 2317.6001, 2318.8000, 2319.8000, 2321.0000, 2322.0000, 2323.3999, 2324.8000,
2325.8000, 2327.0000, 2328.2000, 2329.6001, 2330.8000, 2332.0000, 2333.0000, 2334.3999,
2335.8000, 2336.8000, 2338.0000, 2339.0000, 2340.2000, 2341.6001, 2342.8000, 2343.8000,
2345.0000, 2346.0000, 2347.0000, 2348.3999, 2349.6001, 2350.8000, 2351.8000, 2353.0000,
2354.0000, 2355.0000, 2356.2000, 2357.3999, 2358.6001, 2359.8000, 2360.8000, 2361.8000,
2363.0000, 2364.0000, 2365.0000, 2366.2000, 2367.3999, 2368.3999, 2369.3999, 2370.2000,
2371.0000, 2372.0000, 2373.0000, 2374.0000, 2375.0000, 2375.8000, 2376.8000, 2377.8000,
2378.8000, 2379.8000, 2380.6001, 2381.3999, 2382.3999, 2383.2000, 2384.2000, 2385.8000,
2387.0000, 2388.2000, 2389.8000, 2391.0000, 2392.2000, 2393.8000, 2395.0000, 2396.2000,
2397.8000, 2399.0000, 2400.2000, 2401.2000, 2402.2000, 2403.2000, 2404.2000, 2405.2000,
2406.2000, 2407.2000, 2408.2000, 2409.2000, 2410.2000, 2411.2000, 2412.2000, 2413.2000,
2414.2000, 2415.2000, 2416.2000, 2417.3999, 2418.8000, 2419.8000, 2420.8000, 2422.0000,
2423.0000, 2424.2000, 2425.6001, 2426.8000, 2427.8000, 2429.0000, 2430.0000, 2431.2000,
2432.3999, 2433.8000, 2435.0000, 2436.2000, 2437.8000, 2438.8000, 2440.0000, 2441.3999,
2442.8000, 2444.0000, 2445.2000, 2446.8000, 2447.8000, 2449.0000, 2450.0000, 2451.0000,
2452.0000, 2453.0000, 2454.2000, 2455.3999, 2456.3999, 2457.6001, 2458.8000, 2459.8000,
2460.8000, 2461.8000, 2462.8000, 2463.8000, 2465.0000, 2466.0000, 2467.0000, 2468.2000,
2469.3999, 2470.6001, 2471.8000, 2472.8000, 2473.8000, 2475.0000, 2476.0000, 2477.0000,
2478.0000, 2479.2000, 2480.3999, 2481.3999, 2482.2000, 2483.2000, 2484.2000, 2485.2000,
2486.0000, 2487.0000, 2488.0000, 2489.0000, 2490.0000, 2491.0000, 2492.0000, 2493.0000,
2494.0000, 2495.0000, 2496.0000, 2497.0000, 2498.3999, 2499.8000, 2501.0000, 2502.0000,
2503.6001, 2504.8000, 2506.0000, 2507.3999, 2508.8000, 2510.0000, 2511.0000, 2512.3999,
2513.6001, 2514.8000, 2515.8000, 2516.8000, 2517.8000, 2519.0000, 2520.0000, 2521.0000,
2522.0000, 2523.2000, 2524.3999, 2525.6001, 2526.8000, 2527.8000, 2528.8000, 2529.8000,
2531.0000, 2532.0000, 2533.0000, 2534.2000, 2535.3999, 2536.6001, 2537.8000, 2538.8000,
2539.8000, 2541.0000, 2542.0000, 2543.0000, 2544.2000, 2545.0000, 2546.0000, 2547.0000,
2548.0000, 2549.0000, 2549.8000, 2550.8000, 2551.8000, 2552.8000, 2553.8000, 2554.6001,
2555.3999, 2556.3999, 2557.2000, 2558.0000, 2559.0000, 2560.0000, 2561.3999, 2562.8000,
2564.0000, 2565.3999, 2566.8000, 2568.0000, 2569.6001, 2570.8000, 2572.0000, 2573.6001,
2574.8000, 2576.0000, 2577.0000, 2578.0000, 2579.0000, 2580.0000, 2581.0000, 2582.0000,
2583.0000, 2584.0000, 2585.0000, 2586.0000, 2587.0000, 2587.8000, 2588.8000, 2589.8000,
2590.8000, 2591.8000, 2592.8000, 2594.0000, 2595.0000, 2596.2000, 2597.3999, 2598.8000,
2599.8000, 2600.8000, 2602.0000, 2603.0000, 2604.2000, 2605.3999, 2606.6001, 2607.8000,
2609.0000, 2610.0000, 2611.8000, 2612.8000, 2614.0000, 2615.6001, 2616.8000, 2618.0000,
2619.6001, 2620.8000, 2622.0000, 2623.6001, 2624.8000, 2625.8000, 2626.8000, 2627.8000,
2628.8000, 2629.8000, 2630.8000, 2631.8000, 2632.8000, 2633.8000, 2634.6001, 2635.6001,
2636.6001, 2637.6001, 2638.6001, 2639.6001, 2640.8000, 2641.8000, 2643.0000, 2644.0000,
2645.6001, 2646.8000, 2648.0000, 2649.0000, 2650.2000, 2651.8000, 2652.8000, 2654.0000,
2655.0000, 2656.3999, 2657.3999, 2658.3999, 2659.3999, 2660.3999, 2661.3999, 2662.2000,
2663.2000, 2664.2000, 2665.2000, 2666.2000, 2667.2000, 2668.2000, 2669.2000, 2670.0000,
2671.0000, 2672.0000, 2673.3999, 2674.8000, 2675.8000, 2677.0000, 2678.0000, 2679.2000,
2680.6001, 2681.8000, 2682.8000, 2684.0000, 2685.0000, 2686.3999, 2687.8000, 2688.8000,
2689.8000, 2690.8000, 2692.0000, 2693.0000, 2694.0000, 2695.0000, 2696.2000, 2697.3999,
2698.6001, 2699.8000, 2700.8000, 2701.8000, 2702.8000, 2704.0000, 2705.0000, 2706.0000,
2707.0000, 2708.0000, 2709.0000, 2710.0000, 2711.0000, 2712.0000, 2713.0000, 2714.0000,
2715.0000, 2716.0000, 2717.0000, 2718.2000, 2719.2000, 2720.2000, 2721.3999, 2722.8000,
2723.8000, 2724.8000, 2726.0000, 2727.0000, 2728.0000, 2729.2000, 2730.3999, 2731.6001,
2732.8000, 2733.8000, 2734.8000, 2736.0000, 2737.0000, 2738.0000, 2739.0000, 2740.0000,
2741.0000, 2742.0000, 2743.2000, 2744.2000, 2745.3999, 2746.3999, 2747.3999, 2748.6001,
2749.6001, 2750.8000, 2751.8000, 2752.8000, 2754.0000, 2755.0000, 2756.6001, 2757.8000,
2759.0000, 2760.0000, 2761.6001, 2762.8000, 2764.0000, 2765.2000, 2766.6001, 2767.8000,
2768.8000, 2769.8000, 2770.8000, 2771.8000, 2772.8000, 2774.0000, 2775.0000, 2776.0000,
2777.0000, 2778.0000, 2779.0000, 2780.0000, 2781.0000, 2782.0000, 2783.0000, 2784.0000,
2785.0000, 2786.6001, 2787.8000, 2789.0000, 2790.2000, 2791.6001, 2792.8000, 2794.0000,
2795.2000, 2796.8000, 2797.8000, 2799.0000, 2800.6001, 2802.0000, 2803.8000, 2805.0000,
2806.8000, 2808.2000, 2810.0000, 2811.6001, 2813.0000, 2814.8000, 2816.0000, 2816.8000,
2817.6001, 2818.0000, 2818.8000, 2819.2000, 2820.0000, 2820.8000, 2821.0000, 2821.8000,
2822.6001, 2823.0000, 2823.8000, 2824.2000, 2825.0000, 2825.8000, 2826.0000, 2826.8000,
2827.6001, 2828.0000, 2828.8000, 2829.2000, 2830.0000, 2830.8000, 2831.0000, 2831.8000,
2832.8000, 2833.8000, 2834.8000, 2835.8000, 2836.8000, 2837.8000, 2838.8000, 2839.8000,
2840.8000, 2841.8000, 2842.8000, 2843.8000, 2844.8000, 2845.8000, 2846.8000, 2847.8000,
2849.0000, 2850.2000, 2851.6001, 2852.8000, 2854.0000, 2855.3999, 2856.8000, 2858.0000,
2859.0000, 2860.6001, 2861.8000, 2863.0000, 2864.2000, 2865.3999, 2866.6001, 2867.8000,
2868.8000, 2869.8000, 2871.0000, 2872.0000, 2873.0000, 2874.2000, 2875.3999, 2876.6001,
2877.8000, 2878.8000, 2879.8000, 2881.0000, 2882.0000, 2883.2000, 2884.6001, 2885.8000,
2886.8000, 2888.0000, 2889.0000, 2890.2000, 2891.6001, 2892.8000, 2893.8000, 2895.0000,
2896.0000, 2897.0000, 2898.0000, 2898.8000, 2899.8000, 2900.8000, 2901.8000, 2902.6001,
2903.3999, 2904.2000, 2905.0000, 2906.0000, 2907.0000, 2908.0000, 2908.8000, 2909.8000,
2910.8000, 2911.8000, 2912.8000, 2913.8000, 2915.0000, 2916.3999, 2917.8000, 2919.0000,
2920.0000, 2921.3999, 2922.8000, 2924.0000, 2925.0000, 2926.6001, 2927.8000, 2928.8000,
2929.8000, 2930.8000, 2931.8000, 2932.8000, 2933.8000, 2934.8000, 2935.8000, 2936.8000,
2937.8000, 2938.8000, 2939.8000, 2940.8000, 2941.6001, 2942.6001, 2943.6001, 2944.6001,
2945.8000, 2946.8000, 2948.0000, 2949.0000, 2950.2000, 2951.3999, 2952.8000, 2953.8000,
2954.8000, 2956.0000, 2957.0000, 2958.2000, 2959.6001, 2960.8000, 2961.8000, 2962.8000,
2963.8000, 2965.0000, 2966.0000, 2967.0000, 2968.0000, 2969.0000, 2970.2000, 2971.3999,
2972.6001, 2973.8000, 2974.8000, 2975.8000, 2976.8000, 2977.8000, 2978.8000, 2980.0000,
2981.0000, 2982.0000, 2983.0000, 2984.0000, 2985.0000, 2986.0000, 2987.2000, 2988.2000,
2989.3999, 2990.3999, 2991.6001, 2992.8000, 2993.8000, 2994.8000, 2995.8000, 2996.8000,
2998.0000, 2999.0000, 3000.0000, 3001.0000, 3002.2000, 3003.3999, 3004.6001, 3005.6001,
3006.8000, 3007.8000, 3008.8000, 3010.0000, 3011.0000, 3012.2000, 3013.3999, 3014.6001,
3015.8000, 3016.8000, 3018.0000, 3019.0000, 3020.2000, 3021.3999, 3022.8000, 3023.8000,
3024.8000, 3026.0000, 3027.0000, 3028.0000, 3029.0000, 3030.2000, 3031.3999, 3032.6001,
3033.8000, 3034.8000, 3035.8000, 3037.0000, 3038.0000, 3039.0000, 3040.0000, 3041.0000,
3042.0000, 3043.0000, 3044.0000, 3045.0000, 3046.0000, 3047.0000, 3048.0000, 3049.0000,
3050.0000, 3051.0000, 3051.8000, 3052.8000, 3053.8000, 3054.8000, 3055.8000, 3056.6001,
3057.0000, 3057.8000, 3058.0000, 3058.8000, 3059.3999, 3060.0000, 3060.6001, 3061.0000,
3061.8000, 3062.0000, 3062.8000, 3063.3999, 3064.0000, 3064.6001, 3065.0000, 3065.8000,
3066.0000, 3066.8000, 3067.3999, 3068.0000, 3068.6001, 3069.0000, 3069.8000, 3070.0000,
3070.8000, 3071.3999, 3072.0000, 3072.8000, 3074.0000, 3075.0000, 3076.0000, 3077.0000,
3078.2000, 3079.3999, 3080.6001, 3081.8000, 3082.8000, 3083.8000, 3084.8000, 3086.0000,
3087.0000, 3088.0000, 3089.0000, 3090.0000, 3091.2000, 3092.2000, 3093.3999, 3094.3999,
3095.6001, 3096.6001, 3097.8000, 3098.8000, 3099.8000, 3100.8000, 3101.8000, 3102.8000,
3103.8000, 3105.0000, 3106.0000, 3107.0000, 3108.0000, 3109.0000, 3110.0000, 3111.0000,
3112.2000, 3113.2000, 3114.3999, 3115.6001, 3116.6001, 3117.8000, 3118.8000, 3119.8000,
3120.8000, 3121.8000, 3123.0000, 3124.0000, 3125.0000, 3126.0000, 3127.2000, 3128.3999,
3129.6001, 3130.8000, 3131.8000, 3132.8000, 3133.8000, 3135.0000, 3136.0000, 3137.0000,
3138.0000, 3138.8000, 3139.8000, 3140.8000, 3141.8000, 3142.8000, 3143.6001, 3144.6001,
3145.3999, 3146.3999, 3147.2000, 3148.0000, 3149.0000, 3150.0000, 3151.0000, 3152.0000,
3153.0000, 3154.0000, 3155.3999, 3156.6001, 3157.8000, 3158.8000, 3160.0000, 3161.0000,
3162.0000, 3163.3999, 3164.6001, 3165.8000, 3166.8000, 3168.0000, 3169.0000, 3170.0000,
3171.0000, 3171.8000, 3172.8000, 3173.8000, 3174.8000, 3175.8000, 3176.8000, 3177.8000,
3178.8000, 3179.8000, 3180.8000, 3181.8000, 3182.8000, 3183.8000, 3184.8000, 3185.8000,
3187.0000, 3188.0000, 3189.2000, 3190.6001, 3191.8000, 3192.8000, 3194.0000, 3195.0000,
3196.3999, 3197.8000, 3198.8000, 3200.0000, 3200.8000, 3201.8000, 3202.8000, 3203.8000,
3204.6001, 3205.3999, 3206.2000, 3207.0000, 3208.0000, 3209.0000, 3209.8000, 3210.8000,
3211.8000, 3212.6001, 3213.3999, 3214.2000, 3215.0000, 3216.0000, 3217.0000, 3218.0000,
3218.8000, 3219.8000, 3220.8000, 3221.8000, 3222.6001, 3223.3999, 3224.2000, 3225.0000,
3226.0000, 3227.0000, 3228.0000, 3229.0000, 3229.8000, 3230.8000, 3231.8000, 3232.8000,
3234.0000, 3235.2000, 3236.8000, 3238.0000, 3239.2000, 3240.8000, 3241.8000, 3243.0000,
3244.6001, 3245.8000, 3247.0000, 3248.3999, 3249.8000, 3251.0000, 3252.3999, 3253.8000,
3255.0000, 3256.2000, 3257.8000, 3259.0000, 3260.2000, 3261.8000, 3263.0000, 3264.0000,
3265.0000, 3265.8000, 3266.8000, 3267.6001, 3268.2000, 3269.0000, 3270.0000, 3270.8000,
3271.6001, 3272.3999, 3273.0000, 3274.0000, 3274.8000, 3275.8000, 3276.3999, 3277.0000,
3278.0000, 3278.8000, 3279.8000, 3280.6001, 3281.3999, 3282.2000, 3283.0000, 3284.0000,
3285.0000, 3286.0000, 3286.8000, 3287.8000, 3288.8000, 3289.6001, 3290.3999, 3291.2000,
3292.0000, 3293.0000, 3294.0000, 3295.0000, 3295.8000, 3296.8000, 3298.0000, 3299.0000,
3300.0000, 3301.2000, 3302.3999, 3303.6001, 3304.8000, 3305.8000, 3306.8000, 3308.0000,
3309.0000, 3310.0000, 3311.2000, 3312.3999, 3313.0000, 3314.0000, 3315.0000, 3315.8000,
3316.8000, 3317.6001, 3318.3999, 3319.0000, 3320.0000, 3321.0000, 3321.8000, 3322.8000,
3323.6001, 3324.2000, 3325.0000, 3326.0000, 3327.0000, 3327.8000, 3328.8000, 3329.3999,
3330.0000, 3330.8000, 3331.8000, 3332.3999, 3333.0000, 3334.0000, 3334.8000, 3335.6001,
3336.2000, 3337.0000, 3337.8000, 3338.8000, 3339.3999, 3340.0000, 3341.0000, 3341.8000,
3342.6001, 3343.0000, 3344.0000, 3344.8000, 3345.8000, 3346.8000, 3347.6001, 3348.2000,
3349.0000, 3350.0000, 3351.0000, 3351.8000, 3352.8000, 3353.6001, 3354.3999, 3355.2000,
3356.0000, 3357.0000, 3357.8000, 3358.8000, 3359.8000, 3360.6001, 3361.8000, 3362.8000,
3363.8000, 3364.8000, 3365.8000, 3366.8000, 3367.8000, 3369.0000, 3370.0000, 3371.0000,
3372.0000, 3373.0000, 3374.0000, 3375.2000, 3376.2000, 3377.3999, 3378.3999, 3379.3999,
3380.3999, 3381.6001, 3382.6001, 3383.6001, 3384.8000, 3385.8000, 3386.8000, 3387.8000,
3388.8000, 3389.8000, 3390.8000, 3391.8000, 3392.8000, 3394.0000, 3395.0000, 3396.0000,
3397.0000, 3398.2000, 3399.2000, 3400.3999, 3401.6001, 3402.8000, 3403.8000, 3404.8000,
3405.8000, 3407.0000, 3408.0000, 3408.8000, 3409.8000, 3410.2000, 3411.0000, 3411.8000,
3412.8000, 3413.2000, 3414.0000, 3414.8000, 3415.8000, 3416.2000, 3417.0000, 3417.8000,
3418.8000, 3419.2000, 3420.0000, 3420.8000, 3421.8000, 3422.3999, 3423.0000, 3423.8000,
3424.8000, 3425.8000, 3426.8000, 3427.8000, 3428.8000, 3429.8000, 3430.6001, 3431.6001,
3432.6001, 3433.3999, 3434.3999, 3435.3999, 3436.2000, 3437.2000, 3438.2000, 3439.0000,
3440.0000, 3441.2000, 3442.3999, 3443.8000, 3444.8000, 3445.8000, 3447.0000, 3448.0000,
3449.0000, 3450.0000, 3451.3999, 3452.6001, 3453.8000, 3454.8000, 3455.8000, 3456.8000,
3457.3999, 3458.0000, 3459.0000, 3459.8000, 3460.6001, 3461.0000, 3462.0000, 3462.8000,
3463.6001, 3464.0000, 3465.0000, 3465.8000, 3466.6001, 3467.0000, 3468.0000, 3468.8000,
3469.6001, 3470.0000, 3471.0000, 3471.8000, 3472.8000, 3473.6001, 3474.3999, 3475.2000,
3476.0000, 3477.0000, 3478.0000, 3478.8000, 3479.8000, 3480.8000, 3481.8000, 3482.6001,
3483.3999, 3484.2000, 3485.0000, 3486.0000, 3487.0000, 3487.8000, 3488.8000, 3489.8000,
3490.8000, 3491.8000, 3492.6001, 3493.6001, 3494.3999, 3495.3999, 3496.2000, 3497.0000,
3498.0000, 3499.0000, 3500.0000, 3501.0000, 3502.0000, 3502.8000, 3503.8000, 3504.8000,
3505.6001, 3506.2000, 3507.0000, 3507.8000, 3508.8000, 3509.6001, 3510.2000, 3511.0000,
3512.0000, 3512.8000, 3513.6001, 3514.2000, 3515.0000, 3516.0000, 3516.8000, 3517.6001,
3518.2000, 3519.0000, 3520.0000, 3520.8000, 3521.6001, 3522.0000, 3523.0000, 3523.8000,
3524.6001, 3525.0000, 3526.0000, 3526.8000, 3527.6001, 3528.0000, 3529.0000, 3529.8000,
3530.6001, 3531.0000, 3532.0000, 3532.8000, 3533.6001, 3534.0000, 3535.0000, 3535.8000,
3536.8000, 3537.8000, 3538.8000, 3539.8000, 3540.8000, 3541.8000, 3543.0000, 3544.0000,
3545.0000, 3546.0000, 3547.0000, 3548.0000, 3549.0000, 3550.2000, 3551.3999, 3552.3999,
3553.0000, 3554.0000, 3554.8000, 3555.8000, 3556.3999, 3557.0000, 3558.0000, 3558.8000,
3559.8000, 3560.6001, 3561.2000, 3562.0000, 3562.8000, 3563.8000, 3564.6001, 3565.2000,
3566.0000, 3567.0000, 3567.8000, 3568.6001, 3569.0000, 3570.0000, 3570.8000, 3571.3999,
3572.0000, 3572.8000, 3573.6001, 3574.0000, 3575.0000, 3575.8000, 3576.3999, 3577.0000,
3577.8000, 3578.6001, 3579.0000, 3580.0000, 3580.8000, 3581.3999, 3582.0000, 3582.8000,
3583.6001, 3584.0000, 3585.0000, 3585.8000, 3586.8000, 3587.6001, 3588.2000, 3589.0000,
3590.0000, 3590.8000, 3591.6001, 3592.2000, 3593.0000, 3594.0000, 3594.8000, 3595.8000,
3596.3999, 3597.0000, 3598.0000, 3598.8000, 3599.8000, 3600.6001, 3601.2000, 3602.0000,
3603.0000, 3603.8000, 3604.8000, 3605.3999, 3606.0000, 3607.0000, 3607.8000, 3608.8000,
3609.6001, 3610.2000, 3611.0000, 3612.0000, 3612.8000, 3613.8000, 3614.3999, 3615.2000,
3616.0000, 3617.0000, 3617.8000, 3618.8000, 3619.3999, 3620.0000, 3621.0000, 3621.8000,
3622.8000, 3623.6001, 3624.3999, 3625.0000, 3626.0000, 3626.8000, 3627.8000, 3628.6001,
3629.2000, 3630.0000, 3631.0000, 3631.8000, 3632.8000, 3633.3999, 3634.0000, 3635.0000,
3635.8000, 3636.8000, 3637.3999, 3638.0000, 3639.0000, 3639.8000, 3640.8000, 3641.2000,
3642.0000, 3643.0000, 3643.8000, 3644.6001, 3645.2000, 3646.0000, 3646.8000, 3647.8000,
3648.3999, 3649.0000, 3649.8000, 3650.6001, 3651.0000, 3651.8000, 3652.8000, 3653.2000,
3654.0000, 3654.8000, 3655.2000, 3656.0000, 3656.8000, 3657.3999, 3658.0000, 3658.8000,
3659.3999, 3660.0000, 3660.8000, 3661.6001, 3662.0000, 3662.8000, 3663.8000, 3664.2000,
3665.0000, 3665.8000, 3666.6001, 3667.2000, 3668.0000, 3668.8000, 3669.6001, 3670.2000,
3671.0000, 3671.8000, 3672.6001, 3673.2000, 3674.0000, 3674.8000, 3675.6001, 3676.2000,
3677.0000, 3677.8000, 3678.6001, 3679.2000, 3680.0000, 3680.8000, 3681.6001, 3682.0000,
3683.0000, 3683.8000, 3684.3999, 3685.0000, 3685.8000, 3686.8000, 3687.2000, 3688.0000,
3688.8000, 3689.6001, 3690.0000, 3691.0000, 3691.8000, 3692.3999, 3693.0000, 3693.8000,
3694.8000, 3695.2000, 3696.0000, 3697.0000, 3697.8000, 3698.8000, 3699.8000, 3700.6001,
3701.2000, 3702.0000, 3703.0000, 3704.0000, 3704.8000, 3705.8000, 3706.8000, 3707.6001,
3708.3999, 3709.2000, 3710.0000, 3711.0000, 3712.0000, 3712.8000, 3713.3999, 3714.0000,
3714.8000, 3715.8000, 3716.2000, 3717.0000, 3717.8000, 3718.6001, 3719.0000, 3720.0000,
3720.8000, 3721.3999, 3722.0000, 3722.8000, 3723.8000, 3724.2000, 3725.0000, 3725.8000,
3726.6001, 3727.0000, 3728.0000, 3728.8000, 3729.0000, 3729.8000, 3730.6001, 3731.0000,
3731.8000, 3732.3999, 3733.0000, 3733.8000, 3734.2000, 3735.0000, 3735.8000, 3736.2000,
3737.0000, 3737.6001, 3738.0000, 3738.8000, 3739.6001, 3740.0000, 3740.8000, 3741.3999,
3742.0000, 3742.8000, 3743.2000, 3744.0000, 3744.6001, 3745.0000, 3745.8000, 3746.0000,
3746.8000, 3747.2000, 3747.8000, 3748.3999, 3749.0000, 3749.8000, 3750.0000, 3750.8000,
3751.0000, 3751.8000, 3752.2000, 3753.0000, 3753.6001, 3754.0000, 3754.8000, 3755.0000,
3755.8000, 3756.2000, 3756.8000, 3757.3999, 3758.0000, 3758.6001, 3759.0000, 3759.8000,
3760.0000, 3760.8000, 3761.8000, 3762.2000, 3763.0000, 3763.8000, 3764.6001, 3765.0000,
3766.0000, 3766.8000, 3767.3999, 3768.0000, 3768.8000, 3769.6001, 3770.0000, 3771.0000,
3771.8000, 3772.3999, 3773.0000, 3773.8000, 3774.8000, 3775.2000, 3776.0000, 3776.8000,
3777.2000, 3778.0000, 3778.8000, 3779.0000, 3779.8000, 3780.6001, 3781.0000, 3781.8000,
3782.3999, 3783.0000, 3783.8000, 3784.2000, 3785.0000, 3785.6001, 3786.0000, 3786.8000,
3787.3999, 3788.0000, 3788.8000, 3789.2000, 3790.0000, 3790.8000, 3791.0000, 3791.8000,
3792.6001, 3793.0000, 3793.8000, 3794.3999, 3795.0000, 3795.8000, 3796.2000, 3797.0000,
3797.8000, 3798.0000, 3798.8000, 3799.6001, 3800.0000, 3800.8000, 3801.3999, 3802.0000,
3802.8000, 3803.2000, 3804.0000, 3804.8000, 3805.0000, 3805.8000, 3806.6001, 3807.0000,
3807.8000, 3808.3999, 3809.0000, 3810.0000, 3810.8000, 3811.8000, 3812.6001, 3813.2000,
3814.0000, 3814.8000, 3815.8000, 3816.6001, 3817.2000, 3818.0000, 3819.0000, 3819.8000,
3820.6001, 3821.2000, 3822.0000, 3823.0000, 3823.8000, 3824.6001, 3825.0000, 3825.8000,
3826.2000, 3827.0000, 3827.6001, 3828.0000, 3828.8000, 3829.3999, 3830.0000, 3830.8000,
3831.0000, 3831.8000, 3832.6001, 3833.0000, 3833.8000, 3834.2000, 3835.0000, 3835.6001,
3836.0000, 3836.8000, 3837.3999, 3838.0000, 3838.8000, 3839.0000, 3839.8000, 3840.6001,
3841.0000, 3841.8000, 3842.6001, 3843.0000, 3843.8000, 3844.6001, 3845.0000, 3845.8000,
3846.6001, 3847.0000, 3847.8000, 3848.6001, 3849.0000, 3849.8000, 3850.6001, 3851.0000,
3851.8000, 3852.3999, 3853.0000, 3853.8000, 3854.3999, 3855.0000, 3855.8000, 3856.3999,
3857.0000, 3857.8000, 3858.6001, 3859.0000, 3859.8000, 3860.6001, 3861.0000, 3861.8000,
3862.8000, 3863.0000, 3864.0000, 3864.8000, 3865.2000, 3866.0000, 3866.8000, 3867.2000,
3868.0000, 3868.8000, 3869.2000, 3870.0000, 3870.8000, 3871.3999, 3872.0000, 3872.8000,
3873.2000, 3873.8000, 3874.6001, 3875.0000, 3875.8000, 3876.2000, 3877.0000, 3877.6001,
3878.0000, 3878.8000, 3879.3999, 3880.0000, 3880.8000, 3881.0000, 3881.8000, 3882.3999,
3883.0000, 3883.8000, 3884.0000, 3884.8000, 3885.3999, 3886.0000, 3886.8000, 3887.2000,
3887.8000, 3888.6001, 3889.0000, 3889.8000, 3890.0000, 3890.8000, 3891.3999, 3892.0000,
3892.6001, 3893.0000, 3893.8000, 3894.0000, 3894.8000, 3895.3999, 3896.0000, 3896.8000,
3897.0000, 3897.8000, 3898.2000, 3898.8000, 3899.6001, 3900.0000, 3900.8000, 3901.0000,
3901.8000, 3902.2000, 3903.0000, 3903.6001, 3904.0000, 3904.8000, 3905.3999, 3906.0000,
3906.8000, 3907.6001, 3908.0000, 3908.8000, 3909.8000, 3910.2000, 3911.0000, 3911.8000,
3912.3999, 3913.0000, 3913.8000, 3914.3999, 3915.0000, 3915.8000, 3916.6001, 3917.0000,
3917.8000, 3918.8000, 3919.2000, 3920.0000, 3920.8000, 3921.2000, 3921.8000, 3922.6001,
3923.0000, 3923.8000, 3924.3999, 3925.0000, 3925.8000, 3926.2000, 3927.0000, 3927.8000,
3928.2000, 3928.8000, 3929.6001, 3930.0000, 3930.8000, 3931.3999, 3932.0000, 3932.8000,
3933.3999, 3934.0000, 3934.8000, 3935.2000, 3935.8000, 3936.6001, 3937.0000, 3937.6001,
3938.0000, 3938.6001, 3939.0000, 3939.8000, 3940.0000, 3940.8000, 3941.0000, 3941.8000,
3942.0000, 3942.8000, 3943.0000, 3943.8000, 3944.2000, 3944.8000, 3945.2000, 3945.8000,
3946.2000, 3946.8000, 3947.3999, 3947.8000, 3948.3999, 3949.0000, 3949.6001, 3950.0000,
3950.6001, 3951.0000, 3951.6001, 3952.0000, 3952.8000, 3953.6001, 3954.2000, 3955.0000,
3955.8000, 3956.8000, 3957.3999, 3958.0000, 3959.0000, 3959.8000, 3960.6001, 3961.2000,
3962.0000, 3962.8000, 3963.8000, 3964.3999, 3965.0000, 3966.0000, 3966.8000, 3967.6001,
3968.0000, 3968.8000, 3969.2000, 3969.8000, 3970.2000, 3970.8000, 3971.2000, 3971.8000,
3972.3999, 3973.0000, 3973.3999, 3974.0000, 3974.6001, 3975.0000, 3975.6001, 3976.0000,
3976.6001, 3977.0000, 3977.8000, 3978.0000, 3978.8000, 3979.0000, 3979.8000, 3980.0000,
3980.8000, 3981.0000, 3981.8000, 3982.2000, 3982.8000, 3983.2000, 3983.8000, 3984.3999,
3985.0000, 3985.6001, 3986.0000, 3986.8000, 3987.0000, 3987.8000, 3988.0000, 3988.8000,
3989.2000, 3989.8000, 3990.3999, 3991.0000, 3991.6001, 3992.0000, 3992.8000, 3993.0000,
3993.8000, 3994.2000, 3994.8000, 3995.3999, 3996.0000, 3996.6001, 3997.0000, 3997.8000,
3998.0000, 3998.8000, 3999.2000, 3999.8000, 4000.3999, 4001.0000, 4001.8000, 4002.8000,
4003.2000, 4004.0000, 4004.8000, 4005.6001, 4006.2000, 4007.0000, 4007.8000, 4008.6001,
4009.0000, 4010.0000, 4010.8000, 4011.3999, 4012.0000, 4012.8000, 4013.8000, 4014.2000,
4015.0000, 4015.8000, 4016.3999, 4017.0000, 4017.6001, 4018.0000, 4018.6001, 4019.0000,
4019.8000, 4020.0000, 4020.8000, 4021.0000, 4021.8000, 4022.0000, 4022.8000, 4023.2000,
4023.8000, 4024.2000, 4024.8000, 4025.3999, 4026.0000, 4026.3999, 4027.0000, 4027.6001,
4028.0000, 4028.6001, 4029.0000, 4029.8000, 4030.0000, 4030.8000, 4031.0000, 4031.8000,
4032.0000, 4032.8000, 4033.2000, 4033.8000, 4034.2000, 4034.8000, 4035.2000, 4035.8000,
4036.3999, 4036.8000, 4037.3999, 4038.0000, 4038.3999, 4039.0000, 4039.6001, 4040.0000,
4040.6001, 4041.0000, 4041.6001, 4042.0000, 4042.8000, 4043.0000, 4043.8000, 4044.0000,
4044.8000, 4045.0000, 4045.8000, 4046.0000, 4046.8000, 4047.2000, 4047.8000, 4048.2000,
4049.0000, 4049.8000, 4050.3999, 4051.0000, 4051.8000, 4052.8000, 4053.2000, 4054.0000,
4054.8000, 4055.3999, 4056.0000, 4056.8000, 4057.6001, 4058.0000, 4058.8000, 4059.8000,
4060.2000, 4061.0000, 4061.8000, 4062.3999, 4063.0000, 4063.8000, 4066.8000, 4072.0000,
4077.60,
];