diff --git a/notebooks/02_user_guide/dataset_preparation.ipynb b/notebooks/02_user_guide/dataset_preparation.ipynb index 91e0c12b..20208aee 100644 --- a/notebooks/02_user_guide/dataset_preparation.ipynb +++ b/notebooks/02_user_guide/dataset_preparation.ipynb @@ -1241,6 +1241,34 @@ "\n", "show_df(df.head())" ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "The `get_path` method returns the path to the downloaded dataset. A usage example is shown below." + ] + }, + { + "cell_type": "code", + "execution_count": null, + "metadata": {}, + "outputs": [], + "source": [ + "from soccertrack.datasets import get_path\n", + "\n", + "# show the available datasets\n", + "get_path()\n", + "\n", + "# show the path to the dataset\n", + "wide_view_path = get_path('wide-view')\n", + "print(wide_view_path)\n", + "\n", + "# get a csv-mp4 pair from the wide-view dataset\n", + "wide_view_csv = get_path('wide-view/F_20200220_1_0000_0030.csv')\n", + "wide_view_mp4 = get_path('wide-view/F_20200220_1_0000_0030.mp4')\n", + "print(wide_view_csv, wide_view_mp4)" + ] } ], "metadata": { diff --git a/soccertrack/datasets/__init__.py b/soccertrack/datasets/__init__.py index ad121bd5..8c1d2ad5 100644 --- a/soccertrack/datasets/__init__.py +++ b/soccertrack/datasets/__init__.py @@ -1,40 +1,60 @@ import os from soccertrack.logging import logger - +from typing import Optional +from pathlib import Path from .downloader import KaggleDownloader __all__ = ["available", "get_path", "KaggleDownloader"] -_module_path = os.path.dirname(__file__) -_available_dir = [p for p in next(os.walk(_module_path))[1] if not p.startswith("__")] -_available_csv = {"soccertrack sample": "soccertrack_sample.csv"} -_available_mp4 = { - "soccertrack sample": "https://drive.google.com/file/d/1Vxc1NXwLiD3T6cqmlbjgjr-9umDty5Va/view?usp=sharing" +_module_path = Path(__file__).parent +_available_dir = { + 'GNSS': _module_path / 'GNSS', + 'top-view': _module_path / 'top-view', + 'wide-view': _module_path / 'wide-view', +} + +for d, path in _available_dir.items(): + if not path.exists(): + _available_dir.pop(d) + +_available_files = { + 'drone_keypoints': _module_path / 'drone_keypoints.json', + 'fisheye_keypoints': _module_path / 'fisheye_keypoints.json', + 'gnss_keypoints': _module_path / 'gnss_keypoints.json' } -available = _available_dir + list(_available_csv.keys()) +for d, path in _available_files.items(): + if not path.exists: + _available_files.pop(d), print(f"Dataset {d} not available") -def get_path(dataset: str, type: str = "csv") -> str: +available = list(_available_dir.keys()) + list(_available_files.keys()) + +def get_path(dataset:Optional[str]=None) -> str: """Get the path to the data file. Args: - dataset (str): Name of the dataset. See `soccertrack.datasets.available` for all options. - dataset_type (str): Type of the dataset. Either 'csv' or 'mp4'. + dataset (str): Name of the dataset. If None, print the available datasets. Returns: str: Path to the data file. """ - if type == "csv": - if dataset in _available_csv: - fpath = os.path.abspath(os.path.join(_module_path, _available_csv[dataset])) - return fpath - if type == "mp4": - if dataset in _available_mp4: - fpath = _available_mp4[dataset] - logger.info(f"Download the dataset from {fpath}") - return fpath - + + if dataset is None: + print("Available keys:") + for d in available: + print(f" - {d}") + return + + if dataset in _available_dir: + return _available_dir[dataset] + + if dataset.split('/')[0] in _available_dir: + ret_path = _available_dir[dataset.split('/')[0]] / dataset.split('/')[1] + assert ret_path.exists(), f"File {ret_path} not available" + return ret_path + msg = f"The dataset '{dataset}' is not available. " msg += f"Available datasets are {', '.join(available)}" raise ValueError(msg) + diff --git a/soccertrack/datasets/soccertrack_sample.csv b/soccertrack/datasets/soccertrack_sample.csv deleted file mode 100644 index 2559084a..00000000 --- a/soccertrack/datasets/soccertrack_sample.csv +++ /dev/null @@ -1,903 +0,0 @@ -,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,3,3,3,3 -,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,11,11,11,11,1,1,1,1,2,2,2,2,3,3,3,3,4,4,4,4,5,5,5,5,6,6,6,6,7,7,7,7,8,8,8,8,9,9,9,9,10,10,10,10,11,11,11,11,0,0,0,0 -,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height,bb_left,bb_top,bb_width,bb_height -frame,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, -1,3393.41,731.46,41.89000000000030,100.55000000000000,3533.53,541.03,22.790000000000000,49.610000000000000,3602.99,694.11,40.86000000000010,96.59000000000010,4048.3,693.47,43.08999999999970,96.58999999999990,3761.64,612.48,33.440000000000100,63.15000000000000,3894.79,585.87,25.09999999999990,59.85000000000000,3994.02,539.9,30.94999999999980,42.31000000000010,4271.02,612.81,44.92999999999940,72.7600000000001,3779.95,502.35,19.19000000000010,37.77000000000000,3524.35,501.94,17.559999999999900,34.04000000000000,3530.27,698.37,46.809999999999900,103.28000000000000,3789.38,715.3,50.73999999999980,95.44000000000000,3907.32,674.5,46.33999999999970,81.09000000000000,4010.17,599.67,48.13999999999990,74.89000000000000,3637.94,624.71,50.07000000000020,73.18000000000000,3107.13,626.52,62.409999999999900,93.62,3375.29,540.68,27.94999999999980,48.59000000000000,3408.2,511.14,20.43000000000030,36.54000000000000,3736.8,562.93,22.73000000000000,49.07000000000010,2792.28,525.12,26.759999999999800,42.24000000000000,3886.33,731.54,17.65000000000010,16.780000000000100,,,,,,,, -2,3394.13,731.46,41.88999999999990,100.55000000000000,3533.26,540.94,22.790000000000000,49.6099999999999,3603.01,694.0,41.27000000000000,94.98000000000000,4043.76,692.77,43.08999999999970,96.59000000000010,3762.06,612.54,33.42999999999980,63.16000000000010,3894.78,585.87,25.09999999999990,59.85000000000000,3994.43,540.02,30.96000000000000,42.31000000000010,4269.87,612.78,44.93000000000030,72.76000000000000,3780.3,502.42,19.1899999999996,37.77000000000000,3524.3,501.93,17.559999999999900,34.04000000000000,3530.82,699.34,46.809999999999900,103.28000000000000,3788.74,715.48,50.74000000000020,95.43999999999990,3905.81,674.07,46.34000000000020,81.07999999999990,4009.68,599.69,47.82000000000020,74.86999999999990,3636.34,624.37,50.06999999999970,73.18000000000000,3105.57,626.52,62.409999999999900,93.62,3374.69,540.66,27.94999999999980,48.59000000000000,3408.67,511.17,20.42999999999980,36.54000000000000,3736.88,562.84,22.73999999999980,49.069999999999900,2791.35,525.09,26.76000000000020,42.24000000000000,3879.5,735.42,17.65000000000010,16.780000000000100,3895.53,549.74,21.5,45.5,,,, -3,3394.86,731.46,41.88999999999990,100.55000000000000,3532.99,540.85,22.79000000000040,49.60000000000000,3603.03,693.9,41.6899999999996,93.36,4039.22,692.07,43.09000000000020,96.58999999999990,3762.47,612.61,33.43000000000030,63.16000000000000,3894.77,585.87,25.09999999999990,59.85000000000000,3994.84,540.13,30.96000000000000,42.31000000000010,4268.72,612.75,44.92999999999940,72.76000000000000,3780.65,502.49,19.19000000000010,37.77000000000000,3524.25,501.92,17.559999999999900,34.04000000000000,3531.36,700.31,46.809999999999900,103.28000000000000,3788.1,715.66,50.75,95.43000000000010,3904.3,673.63,46.33999999999970,81.09000000000000,4009.2,599.71,47.5,74.84999999999990,3634.74,624.02,50.07000000000020,73.19000000000010,3104.0,626.52,62.42000000000010,93.62,3374.09,540.64,27.94999999999980,48.58000000000000,3409.14,511.21,20.44000000000010,36.53000000000000,3736.97,562.75,22.73000000000000,49.07000000000010,2790.41,525.05,26.76000000000020,42.24000000000000,3872.68,739.31,17.640000000000300,16.780000000000100,3895.96,549.72,21.5,45.51000000000000,,,, -4,3395.58,731.46,41.88999999999990,100.55000000000000,3532.72,540.76,22.800000000000200,49.60000000000000,3603.05,693.79,42.09999999999990,91.76,4034.68,691.37,43.09000000000020,96.59000000000010,3762.88,612.68,33.440000000000100,63.15000000000010,3894.75,585.87,25.09999999999990,59.85000000000000,3995.25,540.25,30.96000000000000,42.309999999999900,4267.57,612.72,44.94000000000050,72.76000000000000,3781.0,502.56,19.19000000000010,37.77000000000000,3524.2,501.91,17.5600000000004,34.04000000000000,3531.9,701.28,46.809999999999900,103.28000000000000,3787.47,715.84,50.74000000000020,95.43000000000000,3902.8,673.2,46.32999999999990,81.08999999999990,4008.71,599.73,47.17999999999980,74.82999999999990,3633.14,623.68,50.07000000000020,73.18000000000010,3102.44,626.52,62.409999999999900,93.62,3373.49,540.61,27.95000000000030,48.59000000000000,3409.62,511.24,20.43000000000030,36.53000000000000,3737.05,562.66,22.73000000000000,49.07000000000010,2789.48,525.02,26.759999999999800,42.24000000000000,3865.85,743.19,17.639999999999900,16.780000000000000,3896.39,549.71,21.5,45.51000000000000,,,, -5,3396.31,731.46,41.88999999999990,100.55000000000000,3532.46,540.67,22.790000000000000,49.60000000000000,3603.07,693.68,42.50999999999980,90.15000000000010,4030.14,690.67,43.09000000000020,96.59000000000010,3763.29,612.74,33.440000000000100,63.16000000000000,3894.74,585.87,25.100000000000400,59.85000000000000,3995.66,540.36,30.96000000000000,42.309999999999900,4266.42,612.69,44.9399999999996,72.76000000000000,3781.35,502.63,19.19000000000010,37.77000000000000,3524.16,501.9,17.550000000000200,34.04000000000010,3532.45,702.25,46.8100000000004,103.28000000000000,3786.83,716.01,50.74000000000020,95.44000000000000,3901.29,672.77,46.32999999999990,81.08000000000000,4008.23,599.75,46.84999999999990,74.81000000000000,3631.53,623.34,50.07999999999990,73.18000000000000,3100.88,626.52,62.409999999999900,93.62,3372.89,540.59,27.94000000000010,48.58999999999990,3410.09,511.27,20.44000000000010,36.53000000000000,3737.13,562.57,22.73999999999980,49.069999999999900,2788.55,524.98,26.759999999999800,42.24000000000000,3859.02,747.08,17.639999999999900,16.780000000000000,3896.81,549.7,21.5,45.5,,,, -6,3397.03,731.46,41.88999999999990,100.55000000000000,3532.19,540.57,22.790000000000000,49.6099999999999,3603.09,693.58,42.92000000000010,88.53000000000000,4025.6,689.97,43.09999999999990,96.58999999999990,3763.71,612.81,33.42999999999980,63.16000000000010,3894.73,585.87,25.09999999999990,59.85000000000000,3996.07,540.48,30.96000000000000,42.309999999999900,4265.27,612.66,44.9399999999996,72.76000000000000,3781.7,502.7,19.19000000000010,37.77000000000000,3524.11,501.89,17.549999999999700,34.040000000000000,3532.99,703.22,46.8100000000004,103.28000000000000,3786.19,716.19,50.75,95.43999999999990,3899.78,672.33,46.32999999999990,81.08999999999990,4007.75,599.77,46.52000000000000,74.79000000000000,3629.93,622.99,50.08000000000040,73.18999999999990,3099.31,626.52,62.42000000000010,93.62,3372.28,540.57,27.94999999999980,48.58999999999990,3410.57,511.3,20.42999999999980,36.53000000000000,3737.21,562.48,22.73999999999980,49.069999999999900,2787.61,524.95,26.759999999999800,42.24000000000000,3852.19,750.96,17.65000000000010,16.790000000000000,3897.24,549.68,21.5,45.510000000000100,4369.34,558.67,19.26000000000020,42.80000000000010 -7,3397.75,731.46,41.88999999999990,100.55000000000000,3531.92,540.48,22.790000000000000,49.610000000000000,3603.11,693.47,43.32999999999990,86.92000000000000,4021.06,689.27,43.09999999999990,96.59000000000010,3764.12,612.88,33.43000000000030,63.15000000000000,3894.72,585.87,25.100000000000400,59.85000000000000,3996.49,540.59,30.95000000000030,42.309999999999900,4264.12,612.64,44.94000000000050,72.75,3782.05,502.77,19.1899999999996,37.77000000000000,3524.06,501.88,17.559999999999900,34.040000000000000,3533.54,704.19,46.809999999999900,103.28000000000000,3785.56,716.37,50.74000000000020,95.43000000000000,3898.27,671.9,46.34000000000020,81.09000000000000,4007.26,599.79,46.20999999999960,74.77000000000000,3628.33,622.65,50.07999999999990,73.18000000000010,3097.75,626.52,62.409999999999900,93.62,3371.68,540.55,27.95000000000030,48.59000000000000,3411.04,511.33,20.44000000000010,36.53000000000000,3737.3,562.39,22.73000000000000,49.07000000000010,2786.68,524.91,26.76000000000020,42.24000000000000,3845.36,754.85,17.65000000000010,16.780000000000000,3897.67,549.67,21.5,45.5,4369.34,558.64,19.26000000000020,42.80000000000010 -8,3398.48,731.46,41.88999999999990,100.55000000000000,3531.65,540.39,22.790000000000000,49.610000000000000,3603.13,693.36,43.73999999999980,85.31999999999990,4016.52,688.57,43.09999999999990,96.59999999999990,3764.53,612.94,33.4399999999996,63.16000000000000,3894.71,585.87,25.090000000000100,59.85000000000000,3996.9,540.7,30.96000000000000,42.319999999999900,4262.97,612.61,44.9399999999996,72.75,3782.4,502.83,19.19000000000010,37.77000000000000,3524.01,501.87,17.559999999999900,34.040000000000000,3534.08,705.16,46.809999999999900,103.27000000000000,3784.92,716.55,50.73999999999980,95.43000000000010,3896.76,671.47,46.33999999999970,81.07999999999990,4006.78,599.81,45.87999999999970,74.75,3626.73,622.31,50.07999999999990,73.18000000000010,3096.19,626.52,62.409999999999900,93.62,3371.08,540.53,27.95000000000030,48.59000000000000,3411.52,511.36,20.42999999999980,36.53000000000000,3737.38,562.3,22.73000000000000,49.07000000000010,2785.75,524.88,26.76000000000020,42.24000000000000,3839.67,756.26,17.65000000000010,16.780000000000000,3898.09,549.65,21.5,45.51000000000000,4369.34,558.62,19.26000000000020,42.79000000000000 -9,3399.2,731.46,41.89000000000030,100.55000000000000,3531.38,540.3,22.799999999999700,49.610000000000000,3603.15,693.26,44.159999999999900,83.70000000000010,4011.98,687.88,43.09999999999990,96.59000000000010,3764.94,613.01,33.440000000000100,63.16000000000000,3894.69,585.87,25.09999999999990,59.85000000000000,3997.31,540.82,30.96000000000000,42.309999999999900,4261.82,612.58,44.94000000000050,72.75,3782.75,502.9,19.19000000000010,37.77000000000000,3523.96,501.86,17.559999999999900,34.040000000000000,3534.63,706.13,46.79999999999970,103.27000000000000,3784.28,716.72,50.75,95.43999999999990,3895.25,671.03,46.34000000000020,81.09000000000000,4006.3,599.83,45.54999999999970,74.7299999999999,3625.13,621.96,50.07999999999990,73.18999999999990,3094.63,626.52,62.409999999999900,93.62,3370.48,540.51,27.94999999999980,48.59000000000000,3411.99,511.39,20.44000000000010,36.53000000000000,3737.46,562.21,22.73999999999980,49.069999999999900,2784.82,524.84,26.759999999999800,42.24000000000000,3833.99,757.67,17.65000000000010,16.780000000000100,3898.52,549.64,21.5,45.51000000000000,4369.34,558.59,19.25,42.79000000000000 -10,3399.93,731.46,41.89000000000030,100.55000000000000,3531.12,540.21,22.790000000000000,49.59999999999990,3603.17,693.15,44.56999999999970,82.09000000000000,4007.44,687.18,43.09999999999990,96.59000000000010,3765.36,613.08,33.42999999999980,63.15000000000000,3894.68,585.87,25.100000000000400,59.85000000000000,3997.72,540.93,30.96000000000000,42.31000000000010,4260.68,612.55,44.92999999999940,72.75,3783.1,502.97,19.19000000000010,37.77000000000000,3523.91,501.85,17.559999999999900,34.040000000000000,3535.17,707.1,46.809999999999900,103.27000000000000,3783.65,716.9,50.73999999999980,95.44000000000000,3893.75,670.6,46.32999999999990,81.09000000000000,4005.81,599.85,45.23000000000000,74.70999999999990,3623.53,621.62,50.07999999999990,73.18999999999990,3093.06,626.52,62.42000000000010,93.62,3369.88,540.49,27.94999999999980,48.59000000000000,3412.47,511.42,20.43000000000030,36.53000000000000,3737.55,562.12,22.73000000000000,49.07000000000010,2783.88,524.81,26.759999999999800,42.24000000000000,3828.3,759.08,17.649999999999600,16.780000000000000,3898.95,549.63,21.5,45.5,4369.33,558.56,19.26000000000020,42.80000000000010 -11,3400.65,731.46,41.88999999999990,100.55000000000000,3530.85,540.12,22.790000000000000,49.60000000000000,3603.19,693.04,44.98000000000000,80.48000000000000,4002.9,686.48,43.09999999999990,96.59000000000010,3765.77,613.14,33.42999999999980,63.16000000000000,3894.67,585.87,25.09999999999990,59.85000000000000,3998.13,541.05,30.96000000000000,42.31000000000010,4259.53,612.52,44.93000000000030,72.75,3783.45,503.04,19.19000000000010,37.769999999999900,3523.86,501.84,17.559999999999900,34.04000000000000,3535.71,708.07,46.809999999999900,103.27000000000000,3783.01,717.08,50.73999999999980,95.43000000000000,3892.24,670.17,46.33000000000040,81.08000000000000,4005.33,599.87,44.90000000000010,74.68999999999990,3621.93,621.28,50.08000000000040,73.18000000000010,3091.5,626.52,62.409999999999900,93.62,3369.28,540.47,27.94999999999980,48.57999999999990,3412.94,511.45,20.44000000000010,36.53000000000000,3737.63,562.04,22.73000000000000,49.06000000000010,2782.95,524.77,26.76000000000020,42.24000000000000,3822.62,760.49,17.65000000000010,16.780000000000000,3899.38,549.61,21.5,45.51000000000000,4369.33,558.53,19.26000000000020,42.80000000000010 -12,3406.09,731.03,41.88999999999990,100.56000000000000,3530.58,540.02,22.790000000000000,49.610000000000000,3603.21,692.94,45.38999999999990,78.8599999999999,4002.34,685.89,43.08999999999970,96.59000000000010,3766.18,613.21,33.440000000000100,63.16000000000000,3894.66,585.87,25.100000000000400,59.85000000000000,3998.54,541.16,30.96000000000000,42.31000000000010,4258.38,612.49,44.9399999999996,72.75,3783.8,503.11,19.1899999999996,37.77000000000000,3523.81,501.83,17.559999999999900,34.04000000000000,3536.26,709.03,46.809999999999900,103.28000000000000,3782.37,717.26,50.75,95.43000000000010,3890.73,669.73,46.32999999999990,81.09000000000000,4004.84,599.88,44.58999999999970,74.68000000000000,3620.33,620.94,50.07999999999990,73.18000000000000,3089.94,626.52,62.409999999999900,93.62,3368.68,540.45,27.95000000000030,48.57999999999990,3413.42,511.48,20.42999999999980,36.54000000000000,3737.71,561.95,22.73999999999980,49.059999999999900,2782.81,524.77,26.76000000000020,42.24000000000000,3816.93,761.9,17.65000000000010,16.780000000000000,3899.8,549.6,21.5,45.5,4369.33,558.5,19.26000000000020,42.80000000000000 -13,3411.54,730.61,41.88999999999990,100.55000000000000,3530.31,539.93,22.800000000000200,49.610000000000000,3603.23,692.83,45.80000000000020,77.26000000000000,4001.77,685.31,43.09999999999990,96.59000000000010,3766.59,613.28,33.440000000000100,63.15000000000000,3894.64,585.87,25.09999999999990,59.85000000000000,3998.96,541.28,30.94999999999980,42.31000000000010,4257.23,612.46,44.94000000000050,72.76000000000000,3784.15,503.18,19.19000000000010,37.77000000000000,3523.77,501.82,17.550000000000200,34.04000000000000,3536.8,710.0,46.809999999999900,103.28000000000000,3781.74,717.43,50.74000000000020,95.44000000000000,3889.22,669.3,46.34000000000020,81.09000000000000,4004.36,599.9,44.25999999999980,74.66000000000000,3618.73,620.59,50.07000000000020,73.18999999999990,3088.37,626.52,62.42000000000010,93.62,3368.08,540.42,27.95000000000030,48.59000000000000,3413.89,511.52,20.43000000000030,36.53000000000000,3737.8,561.86,22.73000000000000,49.059999999999900,2782.67,524.77,26.759999999999800,42.24000000000000,3811.25,763.31,17.65000000000010,16.780000000000100,3900.23,549.58,21.5,45.51000000000000,4369.33,558.47,19.26000000000020,42.80000000000000 -14,3416.98,730.18,41.88999999999990,100.55000000000000,3530.05,539.84,22.790000000000000,49.610000000000000,3603.26,692.72,46.19999999999980,75.65000000000000,4001.21,684.72,43.09000000000020,96.58999999999990,3767.0,613.34,33.440000000000100,63.16000000000000,3894.63,585.87,25.09999999999990,59.85000000000000,3999.37,541.39,30.96000000000000,42.31000000000010,4256.08,612.43,44.94000000000050,72.7600000000001,3784.5,503.25,19.19000000000010,37.77000000000000,3523.72,501.81,17.5600000000004,34.04000000000000,3537.35,710.97,46.809999999999900,103.28000000000000,3781.1,717.61,50.74000000000020,95.43000000000000,3887.71,668.86,46.34000000000020,81.09000000000000,4003.88,599.92,43.92999999999980,74.64000000000000,3617.13,620.25,50.06999999999970,73.18000000000000,3086.81,626.52,62.409999999999900,93.62,3367.48,540.4,27.94999999999980,48.59000000000000,3414.37,511.55,20.43000000000030,36.53000000000000,3737.88,561.77,22.73000000000000,49.06000000000010,2782.53,524.77,26.759999999999800,42.24000000000000,3805.56,764.72,17.65000000000010,16.780000000000000,3900.66,549.57,21.5,45.51000000000000,4369.32,558.45,19.26000000000020,42.79000000000000 -15,3422.42,729.75,41.88999999999990,100.56000000000000,3529.78,539.75,22.790000000000000,49.610000000000000,3603.28,692.62,46.61999999999990,74.03000000000000,4000.64,684.14,43.09000000000020,96.59000000000010,3767.42,613.41,33.42999999999980,63.16000000000010,3894.62,585.87,25.09999999999990,59.85000000000000,3999.78,541.51,30.95999999999960,42.31000000000010,4254.93,612.4,44.9399999999996,72.76000000000000,3784.85,503.32,19.19000000000010,37.77000000000000,3523.67,501.8,17.559999999999900,34.05000000000000,3537.89,711.94,46.809999999999900,103.28000000000000,3780.46,717.79,50.75,95.43000000000010,3886.2,668.43,46.34000000000020,81.09000000000000,4003.39,599.94,43.61000000000010,74.61999999999990,3615.53,619.91,50.06999999999970,73.18000000000010,3085.25,626.52,62.409999999999900,93.62,3366.88,540.38,27.94000000000010,48.59000000000000,3414.84,511.58,20.42999999999980,36.53000000000000,3737.96,561.68,22.73000000000000,49.06000000000010,2782.39,524.77,26.76000000000020,42.24000000000000,3800.99,767.14,17.65000000000010,16.780000000000000,3901.09,549.56,21.48999999999980,45.5,4369.32,558.42,19.26000000000020,42.79000000000010 -16,3427.87,729.33,41.89000000000030,100.55000000000000,3529.51,539.66,22.790000000000000,49.60000000000000,3603.3,692.51,47.02999999999980,72.42000000000000,4000.07,683.55,43.09999999999990,96.59000000000010,3767.83,613.48,33.43000000000030,63.15000000000000,3894.61,585.87,25.09999999999990,59.85000000000000,4000.19,541.62,30.96000000000000,42.309999999999900,4253.78,612.37,44.94000000000050,72.76000000000000,3785.19,503.39,19.19999999999980,37.77000000000000,3523.62,501.8,17.559999999999900,34.04000000000000,3541.33,713.19,46.809999999999900,103.28000000000000,3779.83,717.97,50.74000000000020,95.43000000000000,3884.69,668.0,46.34000000000020,81.08000000000000,4002.91,599.96,43.2800000000002,74.59999999999990,3613.93,619.56,50.07000000000020,73.19000000000010,3083.69,626.52,62.409999999999900,93.62,3366.27,540.36,27.94999999999980,48.59000000000000,3415.32,511.61,20.42999999999980,36.53000000000000,3738.04,561.59,22.74000000000020,49.059999999999900,2782.24,524.77,26.76000000000020,42.24000000000000,3796.43,769.55,17.640000000000300,16.780000000000100,3901.51,549.54,21.5,45.51000000000000,4369.32,558.39,19.26000000000020,42.80000000000010 -17,3433.31,728.9,41.88999999999990,100.55000000000000,3529.24,539.57,22.800000000000200,49.59999999999990,3607.96,691.87,46.73999999999980,73.57000000000010,3999.51,682.97,43.08999999999970,96.58999999999990,3768.24,613.54,33.440000000000100,63.16000000000010,3894.6,585.87,25.090000000000100,59.85000000000000,4000.6,541.73,30.96000000000000,42.309999999999900,4252.63,612.34,44.9399999999996,72.76000000000000,3785.54,503.46,19.19999999999980,37.76000000000010,3523.57,501.79,17.559999999999900,34.04000000000000,3544.77,714.43,46.809999999999900,103.28000000000000,3779.19,718.14,50.73999999999980,95.44000000000000,3883.19,667.56,46.32999999999990,81.09000000000000,4002.43,599.98,42.96000000000000,74.57999999999990,3612.33,619.22,50.07000000000020,73.18000000000000,3082.12,626.52,62.42000000000010,93.62,3365.67,540.34,27.94999999999980,48.58999999999990,3415.79,511.64,20.42999999999980,36.53000000000000,3738.13,561.5,22.73000000000000,49.059999999999900,2782.1,524.77,26.76000000000020,42.24000000000000,3791.86,771.97,17.65000000000010,16.780000000000000,3901.94,549.53,21.5,45.51000000000000,4369.32,558.36,19.26000000000020,42.80000000000000 -18,3438.75,728.47,41.88999999999990,100.56000000000000,3528.98,539.47,22.790000000000000,49.610000000000000,3612.62,691.23,46.440000000000100,74.72000000000000,3998.94,682.38,43.09000000000020,96.59000000000010,3768.65,613.61,33.440000000000100,63.16000000000000,3894.58,585.87,25.09999999999990,59.85000000000000,4001.01,541.85,30.95999999999960,42.309999999999900,4251.49,612.31,44.93000000000030,72.7600000000001,3785.89,503.52,19.20000000000030,37.77000000000000,3523.52,501.78,17.559999999999900,34.04000000000010,3548.21,715.68,46.809999999999900,103.28000000000000,3778.55,718.32,50.73999999999980,95.43000000000000,3881.68,667.13,46.33000000000040,81.09000000000000,4001.94,600.0,42.63999999999990,74.56000000000000,3610.73,618.88,50.07000000000020,73.18000000000000,3080.56,626.52,62.409999999999900,93.62,3365.07,540.32,27.94999999999980,48.58999999999990,3416.27,511.67,20.42999999999980,36.53000000000000,3738.21,561.41,22.73000000000000,49.06000000000010,2781.96,524.77,26.759999999999800,42.24000000000000,3787.29,774.38,17.65000000000010,16.780000000000000,3902.37,549.52,21.5,45.5,4369.32,558.33,19.25,42.80000000000000 -19,3444.2,728.05,41.89000000000030,100.55000000000000,3528.71,539.38,22.790000000000000,49.610000000000000,3617.28,690.58,46.14999999999960,75.87,3998.37,681.8,43.09999999999990,96.59000000000010,3769.07,613.68,33.42999999999980,63.15000000000010,3894.57,585.87,25.09999999999990,59.85000000000000,4001.43,541.96,30.95000000000030,42.309999999999900,4250.34,612.28,44.93000000000030,72.76000000000000,3786.24,503.59,19.20000000000030,37.77000000000000,3523.47,501.77,17.5600000000004,34.040000000000000,3551.65,716.92,46.809999999999900,103.28000000000000,3777.92,718.5,50.73999999999980,95.43000000000000,3880.17,666.7,46.32999999999990,81.07999999999990,4001.46,600.02,42.309999999999900,74.54000000000000,3609.13,618.54,50.06999999999970,73.18000000000010,3079.0,626.52,62.409999999999900,93.62,3364.47,540.3,27.95000000000030,48.59000000000000,3416.74,511.7,20.43000000000030,36.53000000000000,3738.29,561.32,22.74000000000020,49.059999999999900,2781.82,524.77,26.759999999999800,42.24000000000000,3782.72,776.8,17.65000000000010,16.780000000000100,3902.79,549.5,21.5,45.51000000000000,4369.31,558.3,19.25999999999930,42.80000000000010 -20,3449.64,727.62,41.89000000000030,100.56000000000000,3528.44,539.29,22.790000000000000,49.610000000000000,3621.94,689.94,45.86000000000010,77.02000000000000,3997.81,681.21,43.09000000000020,96.58999999999990,3769.48,613.74,33.42999999999980,63.16000000000000,3894.56,585.87,25.09999999999990,59.85000000000000,4001.84,542.08,30.96000000000000,42.309999999999900,4249.19,612.26,44.94000000000050,72.75,3786.59,503.66,19.19999999999980,37.769999999999900,3523.43,501.76,17.550000000000200,34.040000000000000,3555.09,718.17,46.809999999999900,103.28000000000000,3777.28,718.68,50.73999999999980,95.43000000000010,3878.66,666.26,46.34000000000020,81.09000000000000,4000.98,600.04,41.98000000000000,74.52000000000000,3607.53,618.19,50.06999999999970,73.18999999999990,3077.43,626.52,62.42000000000010,93.62,3363.87,540.28,27.95000000000030,48.58000000000000,3417.21,511.73,20.44000000000010,36.53000000000000,3738.38,561.23,22.73000000000000,49.059999999999900,2781.68,524.77,26.76000000000020,42.24000000000000,3778.16,779.21,17.640000000000300,16.780000000000000,3903.22,549.49,21.5,45.5,4369.31,558.28,19.25999999999930,42.79000000000010 -21,3455.08,727.2,41.88999999999990,100.55000000000000,3528.17,539.2,22.799999999999700,49.6099999999999,3626.6,689.3,45.57000000000020,78.17000000000010,3997.24,680.63,43.09000000000020,96.59000000000010,3769.89,613.81,33.440000000000100,63.16000000000010,3894.55,585.87,25.09999999999990,59.85000000000000,4002.25,542.19,30.96000000000000,42.309999999999900,4248.04,612.23,44.9399999999996,72.75,3786.94,503.73,19.19999999999980,37.77000000000000,3524.0,501.79,17.559999999999900,34.04000000000000,3558.53,719.41,46.809999999999900,103.28000000000000,3776.64,718.85,50.74000000000020,95.43999999999990,3877.15,665.83,46.33999999999970,81.08999999999990,4000.49,600.06,41.67000000000010,74.5,3605.93,617.85,50.07000000000020,73.18000000000000,3075.87,626.52,62.41000000000030,93.62,3363.27,540.26,27.94999999999980,48.58000000000000,3417.69,511.76,20.42999999999980,36.53000000000000,3738.46,561.14,22.73000000000000,49.06000000000010,2781.54,524.77,26.76000000000020,42.24000000000000,3778.82,779.27,17.649999999999600,16.780000000000000,3903.65,549.47,21.5,45.51000000000000,4369.31,558.25,19.25999999999930,42.79000000000000 -22,3460.53,726.77,41.88999999999990,100.55000000000000,3527.91,539.11,22.790000000000000,49.610000000000000,3631.27,688.65,45.27000000000000,79.33000000000000,3996.67,680.04,43.09999999999990,96.59000000000010,3769.02,614.08,33.440000000000100,63.16000000000000,3894.53,585.87,25.09999999999990,59.85000000000000,4002.66,542.31,30.96000000000000,42.31000000000010,4246.89,612.2,44.9399999999996,72.75,3787.29,503.8,19.19999999999980,37.77000000000000,3524.57,501.83,17.559999999999900,34.04000000000000,3561.97,720.66,46.8100000000004,103.28000000000000,3776.0,719.03,50.75,95.43000000000010,3875.64,665.4,46.34000000000020,81.08000000000000,4000.01,600.08,41.33999999999970,74.4799999999999,3604.33,617.51,50.07000000000020,73.18000000000010,3074.31,626.52,62.409999999999900,93.62,3362.67,540.23,27.94999999999980,48.59000000000000,3418.16,511.79,20.44000000000010,36.54000000000000,3738.54,561.05,22.73000000000000,49.06000000000010,2781.4,524.77,26.759999999999800,42.24000000000000,3779.49,779.33,17.65000000000010,16.790000000000000,3904.08,549.46,21.5,45.51000000000000,4369.31,558.22,19.25999999999930,42.80000000000000 -23,3465.97,726.34,41.89000000000030,100.56000000000000,3527.64,539.02,22.790000000000000,49.60000000000000,3635.93,688.01,44.970000000000300,80.48000000000000,3996.11,679.46,43.08999999999970,96.58999999999990,3768.15,614.36,33.440000000000100,63.15000000000000,3894.52,585.87,25.09999999999990,59.85000000000000,4003.07,542.42,30.96000000000000,42.31000000000010,4245.74,612.17,44.94000000000050,72.75,3787.64,503.87,19.20000000000030,37.77000000000000,3525.15,501.86,17.549999999999700,34.040000000000000,3565.41,721.9,46.809999999999900,103.28000000000000,3775.37,719.21,50.74000000000020,95.43000000000000,3874.13,664.96,46.33999999999970,81.08999999999990,3999.52,600.1,41.02000000000000,74.45999999999990,3602.73,617.16,50.07000000000020,73.19000000000010,3072.75,626.52,62.409999999999900,93.62,3362.07,540.21,27.94999999999980,48.58999999999990,3418.64,511.82,20.43000000000030,36.54000000000000,3738.62,560.96,22.74000000000020,49.059999999999900,2781.26,524.77,26.759999999999800,42.24000000000000,3780.16,779.4,17.640000000000300,16.780000000000000,3904.5,549.45,21.5,45.5,4369.3,558.19,19.26000000000020,42.80000000000000 -24,3471.42,725.92,41.88999999999990,100.55000000000000,3527.37,538.93,22.790000000000000,49.60000000000000,3640.59,687.37,44.67999999999980,81.62,3996.31,679.7,43.09999999999990,96.58999999999990,3767.29,614.63,33.42999999999980,63.15000000000000,3894.51,585.87,25.09999999999990,59.85000000000000,4003.48,542.53,30.96000000000000,42.31000000000010,4244.59,612.14,44.9399999999996,72.75,3787.99,503.94,19.20000000000030,37.77000000000000,3525.72,501.9,17.5600000000004,34.04000000000010,3568.85,723.15,46.809999999999900,103.28000000000000,3774.73,719.39,50.73999999999980,95.43000000000010,3872.63,664.53,46.32999999999990,81.09000000000000,3999.04,600.12,40.690000000000100,74.43999999999990,3601.13,616.82,50.06999999999970,73.18000000000000,3071.18,626.52,62.42000000000010,93.62,3361.47,540.19,27.94000000000010,48.58999999999990,3419.11,511.86,20.44000000000010,36.53000000000000,3738.71,560.87,22.73000000000000,49.059999999999900,2781.12,524.77,26.76000000000020,42.24000000000000,3780.82,779.46,17.649999999999600,16.780000000000000,3904.93,549.43,21.5,45.510000000000100,4369.3,558.16,19.26000000000020,42.80000000000010 -25,3476.86,725.49,41.88999999999990,100.55000000000000,3527.1,538.83,22.800000000000200,49.610000000000000,3645.25,686.72,44.38999999999990,82.78000000000000,3996.52,679.95,43.09000000000020,96.58999999999990,3766.42,614.9,33.42999999999980,63.16000000000000,3894.5,585.87,25.09999999999990,59.85000000000000,4003.9,542.65,30.94999999999980,42.31000000000010,4243.44,612.11,44.94000000000050,72.76000000000000,3788.34,504.01,19.19999999999980,37.77000000000000,3526.29,501.93,17.559999999999900,34.04000000000000,3572.29,724.39,46.809999999999900,103.28000000000000,3774.09,719.56,50.75,95.44000000000000,3871.12,664.1,46.32999999999990,81.07999999999990,3998.56,600.14,40.36000000000010,74.42000000000000,3599.53,616.48,50.06999999999970,73.18000000000000,3069.62,626.52,62.41000000000030,93.62,3360.87,540.17,27.94000000000010,48.59000000000000,3419.59,511.89,20.42999999999980,36.53000000000000,3738.79,560.78,22.73000000000000,49.06000000000010,2780.98,524.77,26.759999999999800,42.24000000000000,3781.49,779.52,17.65000000000010,16.780000000000000,3905.36,549.42,21.5,45.5,4369.3,558.13,19.26000000000020,42.80000000000000 -26,3482.3,725.06,41.88999999999990,100.56000000000000,3526.84,538.74,22.790000000000000,49.610000000000000,3649.91,686.08,44.10000000000040,83.93000000000000,3996.73,680.2,43.09000000000020,96.58999999999990,3765.55,615.17,33.42999999999980,63.16000000000010,3894.49,585.87,25.090000000000100,59.85000000000000,4004.31,542.76,30.96000000000000,42.31000000000010,4242.3,612.08,44.92999999999940,72.76000000000000,3788.69,504.08,19.19999999999980,37.77000000000000,3526.86,501.97,17.559999999999900,34.040000000000000,3580.74,725.57,46.8100000000004,103.28000000000000,3773.46,719.74,50.73999999999980,95.43000000000000,3869.61,663.66,46.32999999999990,81.09000000000000,3998.07,600.16,40.04999999999970,74.40000000000000,3597.93,616.13,50.07000000000020,73.19000000000010,3068.06,626.52,62.409999999999900,93.62,3360.26,540.15,27.94999999999980,48.59000000000000,3420.06,511.92,20.44000000000010,36.53000000000000,3738.87,560.69,22.74000000000020,49.059999999999900,2780.84,524.77,26.759999999999800,42.24000000000000,3782.16,779.58,17.640000000000300,16.780000000000000,3905.78,549.4,21.5,45.51000000000000,4369.3,558.11,19.26000000000020,42.79000000000000 -27,3487.75,724.64,41.88999999999990,100.55000000000000,3526.57,538.65,22.790000000000000,49.610000000000000,3654.57,685.44,43.809999999999900,85.07999999999990,3996.93,680.45,43.10000000000040,96.58999999999990,3764.68,615.45,33.440000000000100,63.15000000000000,3894.47,585.87,25.100000000000400,59.85000000000000,4004.72,542.88,30.96000000000000,42.31000000000010,4241.15,612.05,44.93000000000030,72.76000000000000,3789.04,504.15,19.19999999999980,37.76000000000000,3527.44,502.0,17.559999999999900,34.040000000000000,3589.19,726.75,46.809999999999900,103.28000000000000,3772.82,719.92,50.73999999999980,95.43000000000010,3868.1,663.23,46.34000000000020,81.09000000000000,3997.59,600.18,39.7199999999998,74.38,3596.33,615.79,50.07000000000020,73.19000000000010,3066.49,626.52,62.42000000000010,93.62,3359.66,540.13,27.95000000000030,48.59000000000000,3420.54,511.95,20.42999999999980,36.53000000000000,3738.96,560.6,22.73000000000000,49.059999999999900,2780.69,524.77,26.759999999999800,42.24000000000000,3782.82,779.64,17.649999999999600,16.780000000000000,3906.21,549.39,21.5,45.51000000000000,4369.3,558.08,19.25,42.79000000000000 -28,3493.19,724.21,41.88999999999990,100.55000000000000,3526.3,538.56,22.790000000000000,49.610000000000000,3659.24,684.79,43.5,86.23000000000000,3997.14,680.7,43.09000000000020,96.58999999999990,3763.81,615.72,33.440000000000100,63.15000000000000,3894.46,585.87,25.09999999999990,59.85000000000000,4005.13,542.99,30.96000000000000,42.309999999999900,4240.0,612.02,44.93000000000030,72.76000000000000,3789.39,504.21,19.20000000000030,37.77000000000000,3528.01,502.04,17.559999999999900,34.04000000000000,3597.63,727.93,46.809999999999900,103.28000000000000,3772.18,720.1,50.75,95.43000000000000,3866.59,662.79,46.33999999999970,81.09000000000000,3997.11,600.2,39.38999999999990,74.3599999999999,3594.73,615.45,50.07000000000020,73.18000000000000,3064.93,626.52,62.41000000000030,93.62,3359.06,540.11,27.95000000000030,48.59000000000000,3421.01,511.98,20.4399999999996,36.53000000000000,3739.04,560.51,22.73000000000000,49.06000000000010,2780.55,524.77,26.759999999999800,42.24000000000000,3783.49,779.7,17.65000000000010,16.780000000000000,3906.64,549.38,21.5,45.5,4369.29,558.05,19.26000000000020,42.80000000000010 -29,3498.63,723.78,41.88999999999990,100.56000000000000,3526.03,538.47,22.790000000000000,49.60000000000000,3663.9,684.15,43.21000000000000,87.38,3997.34,680.94,43.09999999999990,96.58999999999990,3762.94,615.99,33.440000000000100,63.16000000000000,3894.45,585.87,25.100000000000400,59.85000000000000,4005.54,543.11,30.96000000000000,42.309999999999900,4238.85,611.99,44.9399999999996,72.76000000000000,3789.74,504.28,19.20000000000030,37.77000000000000,3528.58,502.07,17.559999999999900,34.04000000000000,3606.08,729.11,46.809999999999900,103.27000000000000,3771.55,720.27,50.73999999999980,95.44000000000000,3865.08,662.36,46.34000000000020,81.09000000000000,3996.62,600.09,41.15000000000010,74.46999999999990,3593.13,615.11,50.06999999999970,73.18000000000000,3063.37,626.52,62.41000000000030,93.62,3358.46,540.09,27.94999999999980,48.57999999999990,3421.49,512.01,20.43000000000030,36.53000000000000,3739.12,560.42,22.74000000000020,49.06000000000010,2780.41,524.77,26.76000000000020,42.24000000000000,3784.16,779.76,17.65000000000010,16.790000000000000,3907.07,549.36,21.5,45.51000000000000,4369.29,558.02,19.26000000000020,42.80000000000010 -30,3504.08,723.36,41.88999999999990,100.55000000000000,3525.76,538.38,22.799999999999700,49.60000000000000,3668.56,683.51,42.92000000000010,88.53000000000000,3997.55,681.19,43.09999999999990,96.58999999999990,3762.08,616.26,33.43000000000030,63.16000000000000,3894.44,585.87,25.09999999999990,59.85000000000000,4005.95,543.22,30.96000000000000,42.309999999999900,4237.7,611.96,44.94000000000050,72.76000000000000,3790.09,504.35,19.19999999999980,37.77000000000000,3529.16,502.11,17.550000000000200,34.040000000000000,3614.53,730.28,46.809999999999900,103.28000000000000,3770.91,720.45,50.74000000000020,95.43000000000000,3863.58,661.93,46.32999999999990,81.08000000000000,3996.14,599.99,42.89000000000030,74.56999999999990,3591.53,614.76,50.06999999999970,73.19000000000010,3061.81,626.52,62.409999999999900,93.62,3357.86,540.07,27.94999999999980,48.57999999999990,3421.96,512.04,20.42999999999980,36.530000000000100,3739.2,560.33,22.74000000000020,49.059999999999900,2780.27,524.77,26.76000000000020,42.24000000000000,3784.82,779.83,17.649999999999600,16.780000000000000,3907.67,549.38,21.5,45.51000000000000,4369.29,557.99,19.26000000000020,42.80000000000000 -31,3509.52,722.93,41.88999999999990,100.56000000000000,3525.5,538.28,22.790000000000000,49.610000000000000,3673.22,682.86,42.63000000000010,89.68999999999990,3997.76,681.44,43.08999999999970,96.58999999999990,3761.21,616.53,33.42999999999980,63.16000000000010,3894.42,585.87,25.09999999999990,59.85000000000000,4006.37,543.34,30.95000000000030,42.309999999999900,4236.55,611.93,44.9399999999996,72.7600000000001,3790.44,504.42,19.19999999999980,37.77000000000000,3529.73,502.14,17.559999999999900,34.040000000000000,3622.97,731.46,46.8100000000004,103.28000000000000,3770.27,720.63,50.75,95.43000000000000,3862.07,661.49,46.32999999999990,81.09000000000000,3995.65,599.88,44.65000000000010,74.68000000000000,3589.92,614.42,50.07999999999990,73.18000000000010,3060.24,626.52,62.42000000000010,93.62,3357.26,540.04,27.94999999999980,48.59000000000000,3422.44,512.07,20.42999999999980,36.53000000000000,3739.29,560.24,22.73000000000000,49.059999999999900,2780.13,524.77,26.759999999999800,42.24000000000000,3785.49,779.89,17.65000000000010,16.780000000000000,3908.28,549.4,21.5,45.5,4369.29,557.96,19.26000000000020,42.80000000000000 -32,3514.96,722.5,41.88999999999990,100.56000000000000,3525.23,538.19,22.790000000000000,49.6099999999999,3679.47,682.36,42.33000000000040,90.84000000000010,3997.96,681.69,43.09999999999990,96.58999999999990,3760.34,616.81,33.42999999999980,63.15000000000010,3894.41,585.87,25.100000000000400,59.85000000000000,4006.78,543.45,30.95999999999960,42.309999999999900,4235.4,611.91,44.94000000000050,72.75,3790.79,504.49,19.19999999999980,37.77000000000000,3530.3,502.18,17.559999999999900,34.04000000000000,3631.42,732.64,46.809999999999900,103.28000000000000,3769.64,720.81,50.74000000000020,95.43000000000010,3860.56,661.06,46.32999999999990,81.09000000000000,3995.17,599.77,46.40000000000010,74.79000000000000,3588.32,614.08,50.07999999999990,73.18000000000000,3058.68,626.52,62.41000000000030,93.62,3356.66,540.02,27.95000000000030,48.59000000000000,3422.91,512.1,20.43000000000030,36.53000000000000,3739.37,560.15,22.73000000000000,49.06000000000010,2779.99,524.77,26.76000000000020,42.24000000000000,3786.16,779.95,17.65000000000010,16.780000000000000,3908.88,549.41,21.5,45.51000000000000,4369.29,557.94,19.25,42.79000000000000 -33,3520.41,722.08,41.89000000000030,100.55000000000000,3524.96,538.1,22.790000000000000,49.610000000000000,3685.72,681.86,42.04000000000040,91.99,3998.17,681.93,43.09000000000020,96.60000000000000,3759.47,617.08,33.440000000000100,63.15000000000000,3894.4,585.87,25.09999999999990,59.85000000000000,4007.19,543.56,30.96000000000000,42.31000000000010,4234.25,611.88,44.9399999999996,72.75,3791.14,504.56,19.20000000000030,37.77000000000000,3530.88,502.21,17.549999999999700,34.04000000000000,3639.87,733.82,46.809999999999900,103.28000000000000,3769.0,720.98,50.73999999999980,95.43999999999990,3859.05,660.63,46.33999999999970,81.08000000000000,3994.69,599.67,48.13999999999990,74.89000000000000,3586.72,613.73,50.08000000000040,73.18999999999990,3057.12,626.52,62.41000000000030,93.62,3356.06,540.0,27.95000000000030,48.59000000000000,3423.39,512.13,20.43000000000030,36.54000000000000,3739.45,560.06,22.74000000000020,49.06000000000010,2779.85,524.77,26.76000000000020,42.24000000000000,3786.82,780.01,17.649999999999600,16.780000000000000,3909.49,549.43,21.5,45.5,4369.28,557.91,19.26000000000020,42.79000000000010 -34,3525.85,721.65,41.88999999999990,100.56000000000000,3524.69,538.01,22.799999999999700,49.610000000000000,3691.97,681.37,41.75,93.13,3998.38,682.18,43.08999999999970,96.59000000000010,3758.6,617.35,33.440000000000100,63.16000000000000,3894.39,585.87,25.09999999999990,59.85000000000000,4007.6,543.68,30.96000000000000,42.31000000000010,4233.1,611.85,44.9399999999996,72.75,3791.49,504.63,19.20000000000030,37.77000000000000,3531.45,502.25,17.5600000000004,34.040000000000000,3648.32,735.0,46.809999999999900,103.28000000000000,3768.36,721.16,50.73999999999980,95.43000000000010,3857.54,660.19,46.34000000000020,81.08999999999990,3995.97,599.56,48.14000000000030,74.8900000000001,3585.12,613.39,50.07999999999990,73.18000000000010,3055.55,626.52,62.41999999999960,93.62,3355.46,539.98,27.94000000000010,48.59000000000000,3423.86,512.17,20.42999999999980,36.530000000000100,3739.54,559.97,22.73000000000000,49.069999999999900,2779.71,524.77,26.759999999999800,42.24000000000000,3787.49,780.07,17.65000000000010,16.780000000000000,3910.09,549.44,21.5,45.51000000000000,4369.28,557.88,19.26000000000020,42.80000000000000 -35,3531.29,721.23,41.88999999999990,100.55000000000000,3524.43,537.92,22.790000000000000,49.60000000000000,3698.22,680.87,41.46000000000000,94.29000000000000,3998.58,682.43,43.09999999999990,96.59000000000010,3757.73,617.62,33.440000000000100,63.16000000000000,3894.38,585.87,25.08999999999970,59.85000000000000,4008.01,543.79,30.95999999999960,42.31000000000010,4231.96,611.82,44.93000000000030,72.75,3791.84,504.7,19.19999999999980,37.77000000000000,3532.02,502.28,17.559999999999900,34.04000000000010,3656.76,736.17,46.809999999999900,103.28000000000000,3767.73,721.34,50.73999999999980,95.43000000000000,3856.03,659.76,46.33999999999970,81.09000000000000,3997.24,599.44,48.15000000000010,74.90000000000000,3583.52,613.05,50.07999999999990,73.18000000000010,3053.99,626.52,62.41000000000030,93.62,3354.85,539.96,27.95000000000030,48.58999999999990,3424.34,512.2,20.42999999999980,36.53000000000000,3739.62,559.88,22.73000000000000,49.07000000000010,2779.57,524.77,26.759999999999800,42.24000000000000,3788.16,780.13,17.65000000000010,16.780000000000000,3910.7,549.46,21.5,45.51000000000000,4369.28,557.85,19.26000000000020,42.80000000000000 -36,3536.74,720.8,41.89000000000030,100.55000000000000,3524.16,537.83,22.790000000000000,49.59999999999990,3704.47,680.37,41.16000000000030,95.43999999999990,3998.79,682.68,43.09000000000020,96.59000000000010,3756.86,617.9,33.440000000000100,63.15000000000000,3894.36,585.87,25.09999999999990,59.85000000000000,4008.42,543.91,30.96000000000000,42.31000000000010,4230.81,611.79,44.92999999999940,72.75,3792.19,504.77,19.19999999999980,37.77000000000000,3532.6,502.32,17.550000000000200,34.04000000000000,3665.21,737.35,46.809999999999900,103.28000000000000,3767.09,721.51,50.73999999999980,95.44000000000000,3854.52,659.33,46.34000000000020,81.07999999999990,3998.52,599.33,48.15000000000010,74.90000000000000,3581.92,612.71,50.07999999999990,73.18000000000000,3052.43,626.52,62.41000000000030,93.62,3354.25,539.94,27.94999999999980,48.58999999999990,3424.81,512.23,20.42999999999980,36.53000000000000,3739.7,559.79,22.74000000000020,49.07000000000010,2779.43,524.77,26.76000000000020,42.24000000000000,3788.83,780.19,17.639999999999900,16.790000000000000,3911.31,549.47,21.49000000000020,45.51000000000000,4369.28,557.82,19.26000000000020,42.80000000000000 -37,3542.18,720.37,41.89000000000030,100.56000000000000,3523.89,537.73,22.790000000000000,49.610000000000000,3710.72,679.87,40.870000000000300,96.59000000000010,3998.99,682.93,43.10000000000040,96.59000000000010,3756.0,618.17,33.42999999999980,63.15000000000010,3894.35,585.87,25.09999999999990,59.85000000000000,4008.84,544.02,30.94999999999980,42.31000000000010,4229.66,611.76,44.94000000000050,72.75,3792.54,504.84,19.19999999999980,37.76000000000010,3533.17,502.35,17.559999999999900,34.040000000000000,3673.66,738.53,46.809999999999900,103.28000000000000,3766.45,721.69,50.74000000000020,95.43999999999990,3853.02,658.89,46.32999999999990,81.09000000000000,3999.8,599.22,48.14999999999960,74.89000000000000,3580.32,612.36,50.07999999999990,73.18999999999990,3050.87,626.52,62.41000000000030,93.62,3353.65,539.92,27.94999999999980,48.58000000000000,3425.28,512.26,20.4399999999996,36.53000000000000,3739.79,559.7,22.73000000000000,49.069999999999900,2779.29,524.77,26.76000000000020,42.24000000000000,3789.49,780.26,17.65000000000010,16.780000000000000,3911.91,549.49,21.5,45.51000000000000,4369.27,557.79,19.25999999999930,42.80000000000010 -38,3547.62,719.95,41.89000000000030,100.55000000000000,3523.62,537.64,22.800000000000200,49.610000000000000,3714.21,683.19,44.02999999999980,93.71999999999990,3999.2,683.17,43.10000000000040,96.59000000000010,3755.13,618.44,33.42999999999980,63.16000000000000,3894.34,585.87,25.09999999999990,59.85000000000000,4009.25,544.14,30.96000000000000,42.31000000000010,4228.51,611.73,44.9399999999996,72.76000000000000,3792.89,504.9,19.20000000000030,37.77000000000000,3533.74,502.39,17.5600000000004,34.040000000000000,3682.1,739.71,46.809999999999900,103.28000000000000,3765.81,721.87,50.75,95.43000000000000,3851.51,658.46,46.32999999999990,81.08999999999990,4001.08,599.11,48.15000000000010,74.89000000000000,3578.72,612.02,50.08000000000040,73.18000000000010,3049.3,626.52,62.41999999999960,93.62,3353.05,539.9,27.94999999999980,48.58000000000000,3425.76,512.29,20.42999999999980,36.530000000000100,3739.87,559.61,22.73000000000000,49.069999999999900,2779.14,524.77,26.76000000000020,42.24000000000000,3788.9,780.19,17.65000000000010,16.790000000000000,3912.52,549.51,21.5,45.5,4369.27,557.77,19.25999999999930,42.79000000000000 -39,3553.07,719.52,41.88999999999990,100.55000000000000,3523.36,537.55,22.790000000000000,49.610000000000000,3717.7,686.51,47.18000000000030,90.85000000000000,3999.41,683.42,43.09000000000020,96.59000000000010,3754.26,618.71,33.42999999999980,63.16000000000000,3894.33,585.87,25.090000000000100,59.85000000000000,4009.66,544.25,30.96000000000000,42.309999999999900,4227.36,611.7,44.94000000000050,72.76000000000000,3793.24,504.97,19.20000000000030,37.77000000000000,3534.31,502.42,17.559999999999900,34.04000000000000,3690.55,740.89,46.809999999999900,103.28000000000000,3765.18,722.05,50.74000000000020,95.43000000000010,3850.0,658.03,46.32999999999990,81.08000000000000,4002.36,598.99,48.15000000000010,74.90000000000000,3577.12,611.68,50.07000000000020,73.18000000000010,3047.74,626.52,62.41000000000030,93.62,3352.45,539.87,27.95000000000030,48.59000000000000,3426.23,512.32,20.44000000000010,36.53000000000000,3739.95,559.52,22.73000000000000,49.07000000000010,2779.0,524.77,26.76000000000020,42.24000000000000,3788.31,780.13,17.65000000000010,16.790000000000000,3913.12,549.52,21.5,45.51000000000000,4369.27,557.74,19.25999999999930,42.79000000000000 -40,3558.51,719.09,41.88999999999990,100.56000000000000,3523.09,537.46,22.790000000000000,49.610000000000000,3721.19,689.83,50.34000000000020,87.9799999999999,3999.61,683.67,43.09999999999990,96.59000000000010,3753.39,618.98,33.440000000000100,63.16000000000000,3894.31,585.87,25.09999999999990,59.85000000000000,4010.07,544.36,30.96000000000000,42.309999999999900,4226.21,611.67,44.9399999999996,72.76000000000000,3793.59,505.04,19.19999999999980,37.769999999999900,3534.89,502.46,17.559999999999900,34.04000000000000,3699.0,742.07,46.809999999999900,103.27000000000000,3764.54,722.22,50.74000000000020,95.43999999999990,3848.49,657.59,46.34000000000020,81.08999999999990,4003.64,598.88,48.15000000000010,74.90000000000000,3575.52,611.33,50.07000000000020,73.18999999999990,3046.18,626.52,62.41000000000030,93.62,3351.85,539.85,27.95000000000030,48.59000000000000,3426.71,512.35,20.42999999999980,36.53000000000000,3740.03,559.43,22.73999999999980,49.07000000000010,2778.86,524.77,26.759999999999800,42.24000000000000,3787.72,780.07,17.65000000000010,16.780000000000000,3913.73,549.54,21.5,45.5,4369.27,557.71,19.25999999999930,42.80000000000000 -41,3563.95,718.67,41.89000000000030,100.55000000000000,3522.82,537.37,22.790000000000000,49.610000000000000,3724.68,693.15,53.5,85.11000000000000,3999.82,683.92,43.08999999999970,96.59000000000010,3752.52,619.26,33.440000000000100,63.15000000000000,3894.3,585.87,25.09999999999990,59.85000000000000,4010.48,544.48,30.96000000000000,42.309999999999900,4225.06,611.64,44.9399999999996,72.76000000000000,3793.94,505.11,19.19999999999980,37.77000000000000,3535.46,502.49,17.559999999999900,34.040000000000000,3707.44,743.24,46.809999999999900,103.28000000000000,3764.07,722.1,50.73999999999980,95.43000000000000,3846.98,657.16,46.34000000000020,81.09000000000000,4004.92,598.77,48.13999999999990,74.90000000000000,3574.21,611.66,50.07999999999990,73.18000000000010,3044.61,626.52,62.42000000000010,93.62,3351.25,539.83,27.94999999999980,48.58999999999990,3427.18,512.38,20.44000000000010,36.53000000000000,3740.12,559.34,22.73000000000000,49.069999999999900,2778.72,524.77,26.76000000000020,42.24000000000000,3787.13,780.01,17.65000000000010,16.780000000000000,3914.33,549.55,21.5,45.51000000000000,4369.27,557.68,19.25,42.80000000000010 -42,3569.4,718.24,41.88999999999990,100.56000000000000,3522.55,537.28,22.799999999999700,49.60000000000000,3728.17,696.47,56.65000000000010,82.24000000000000,4000.03,684.17,43.08999999999970,96.59000000000010,3751.65,619.53,33.440000000000100,63.15000000000000,3894.29,585.87,25.09999999999990,59.85000000000000,4010.89,544.59,30.96000000000000,42.309999999999900,4223.91,611.61,44.94000000000050,72.76000000000000,3794.29,505.18,19.19999999999980,37.77000000000000,3536.03,502.53,17.559999999999900,34.04000000000010,3715.89,744.42,46.809999999999900,103.28000000000000,3763.6,721.97,50.74000000000020,95.43000000000000,3847.44,656.72,46.32999999999990,81.08999999999990,4006.2,598.66,48.14000000000030,74.89000000000000,3572.91,611.99,50.07000000000020,73.18000000000000,3043.05,626.52,62.409999999999900,93.62,3350.65,539.81,27.94999999999980,48.59000000000000,3427.66,512.41,20.43000000000030,36.530000000000100,3740.2,559.25,22.73000000000000,49.07000000000010,2778.58,524.77,26.76000000000020,42.24000000000000,3786.54,779.95,17.639999999999900,16.780000000000000,3914.94,549.57,21.5,45.51000000000000,4369.26,557.65,19.26000000000020,42.80000000000010 -43,3574.84,717.81,41.88999999999990,100.56000000000000,3522.29,537.19,22.790000000000000,49.59999999999990,3731.66,699.8,59.809999999999900,79.36000000000000,4000.23,684.41,43.09999999999990,96.59000000000010,3750.79,619.8,33.42999999999980,63.16000000000010,3894.28,585.87,25.09999999999990,59.85000000000000,4011.31,544.71,30.95000000000030,42.309999999999900,4222.77,611.58,44.92999999999940,72.76000000000000,3794.64,505.25,19.19000000000010,37.77000000000000,3536.61,502.56,17.559999999999900,34.04000000000000,3724.34,745.6,46.809999999999900,103.28000000000000,3763.13,721.84,50.73999999999980,95.43000000000000,3847.89,656.29,46.34000000000020,81.09000000000000,4007.47,598.55,48.15000000000010,74.8900000000001,3571.6,612.32,50.07000000000020,73.18000000000000,3041.49,626.52,62.41000000000030,93.62,3350.05,539.79,27.94999999999980,48.59000000000000,3428.13,512.44,20.44000000000010,36.54000000000000,3740.28,559.16,22.73999999999980,49.07000000000010,2778.44,524.77,26.759999999999800,42.24000000000000,3789.96,777.41,17.65000000000010,16.780000000000100,3915.55,549.59,21.48999999999980,45.5,4369.26,557.62,19.26000000000020,42.80000000000000 -44,3580.28,717.39,41.88999999999990,100.55000000000000,3522.02,537.09,22.790000000000000,49.610000000000000,3735.15,703.12,62.96000000000000,76.49000000000000,4000.44,684.66,43.09000000000020,96.59000000000010,3749.92,620.07,33.42999999999980,63.16000000000000,3894.27,585.87,25.090000000000100,59.85000000000000,4011.72,544.82,30.96000000000000,42.309999999999900,4221.62,611.55,44.93000000000030,72.76000000000000,3794.99,505.32,19.19000000000010,37.77000000000000,3537.18,502.6,17.559999999999900,34.040000000000000,3732.79,746.78,46.80000000000020,103.28000000000000,3762.66,721.71,50.74000000000020,95.43000000000000,3848.35,655.86,46.32999999999990,81.08000000000000,4008.75,598.43,48.15000000000010,74.90000000000010,3570.29,612.64,50.07999999999990,73.19000000000010,3039.93,626.52,62.41000000000030,93.62,3349.45,539.77,27.94000000000010,48.59000000000000,3428.61,512.47,20.42999999999980,36.54000000000000,3740.37,559.07,22.73000000000000,49.069999999999900,2778.3,524.77,26.759999999999800,42.24000000000000,3793.38,774.86,17.65000000000010,16.780000000000000,3916.15,549.6,21.5,45.51000000000000,4369.26,557.6,19.26000000000020,42.79000000000000 -45,3585.73,716.96,41.88999999999990,100.56000000000000,3521.75,537.0,22.790000000000000,49.610000000000000,3738.64,706.44,66.12000000000040,73.61999999999990,4000.64,684.91,43.09999999999990,96.59000000000010,3749.05,620.35,33.42999999999980,63.15000000000000,3894.25,585.87,25.09999999999990,59.85000000000000,4012.13,544.94,30.96000000000000,42.309999999999900,4220.47,611.53,44.9399999999996,72.75,3795.34,505.39,19.19000000000010,37.77000000000000,3537.75,502.63,17.559999999999900,34.040000000000000,3743.21,747.23,46.809999999999900,103.27000000000000,3762.19,721.58,50.73999999999980,95.43000000000000,3848.8,655.42,46.33999999999970,81.09000000000000,4010.03,598.32,48.14999999999960,74.90000000000000,3568.99,612.97,50.07000000000020,73.18000000000000,3038.36,626.52,62.42000000000010,93.62,3348.84,539.75,27.94999999999980,48.59000000000000,3429.08,512.51,20.44000000000010,36.53000000000000,3740.45,558.98,22.73000000000000,49.069999999999900,2778.16,524.77,26.76000000000020,42.24000000000000,3796.8,772.31,17.649999999999600,16.790000000000100,3916.76,549.62,21.5,45.5,4369.26,557.57,19.26000000000020,42.79000000000000 -46,3591.17,716.54,41.88999999999990,100.55000000000000,3521.48,536.91,22.800000000000200,49.610000000000000,3742.13,709.76,69.27999999999980,70.75,4000.85,685.16,43.09000000000020,96.59000000000010,3748.18,620.62,33.440000000000100,63.15000000000000,3894.24,585.87,25.100000000000400,59.85000000000000,4012.54,545.05,30.96000000000000,42.31000000000010,4219.32,611.5,44.94000000000050,72.75,3795.69,505.46,19.19000000000010,37.77000000000000,3538.33,502.67,17.550000000000200,34.04000000000000,3753.64,747.67,46.809999999999900,103.28000000000000,3761.72,721.45,50.74000000000020,95.43000000000000,3849.26,654.99,46.33999999999970,81.09000000000000,4011.31,598.21,48.15000000000010,74.89000000000000,3567.68,613.3,50.07000000000020,73.18000000000010,3036.8,626.52,62.409999999999900,93.62,3348.24,539.73,27.95000000000030,48.57999999999990,3429.56,512.54,20.42999999999980,36.530000000000100,3740.53,558.89,22.73999999999980,49.07000000000010,2778.02,524.77,26.76000000000020,42.24000000000000,3799.39,770.82,17.640000000000300,16.780000000000000,3917.36,549.63,21.5,45.51000000000000,4369.25,557.54,19.26000000000020,42.80000000000010 -47,3596.61,716.11,41.88999999999990,100.55000000000000,3521.22,536.82,22.79000000000040,49.6099999999999,3745.62,713.08,72.43000000000030,67.88,4001.06,685.4,43.09000000000020,96.60000000000000,3747.31,620.89,33.440000000000100,63.16000000000000,3894.23,585.87,25.09999999999990,59.85000000000000,4012.95,545.16,30.96000000000000,42.32000000000010,4218.17,611.47,44.9399999999996,72.75,3796.04,505.53,19.19000000000010,37.76000000000000,3538.9,502.7,17.559999999999900,34.04000000000000,3764.07,748.12,46.809999999999900,103.28000000000000,3761.25,721.32,50.73999999999980,95.43000000000000,3849.72,654.56,46.33000000000040,81.08000000000000,4012.59,598.1,48.14999999999960,74.89000000000000,3566.37,613.63,50.07999999999990,73.18000000000000,3035.24,626.52,62.41000000000030,93.62,3347.64,539.71,27.95000000000030,48.57999999999990,3430.03,512.57,20.42999999999980,36.53000000000000,3740.61,558.8,22.73999999999980,49.07000000000010,2777.88,524.77,26.759999999999800,42.24000000000000,3801.97,769.33,17.640000000000300,16.780000000000000,3917.97,549.65,21.5,45.51000000000000,4369.25,557.51,19.26000000000020,42.80000000000000 -48,3602.06,715.68,41.88999999999990,100.56000000000000,3520.95,536.73,22.790000000000000,49.60000000000000,3749.11,716.4,75.58999999999970,65.01000000000000,4000.88,685.65,43.08999999999970,96.59000000000010,3746.31,620.93,33.42999999999980,63.15000000000010,3894.22,585.87,25.090000000000100,59.85000000000000,4013.36,545.28,30.96000000000000,42.31000000000010,4217.02,611.44,44.9399999999996,72.75,3796.39,505.59,19.19000000000010,37.77000000000000,3539.47,502.74,17.5600000000004,34.040000000000000,3774.49,748.57,46.8100000000004,103.28000000000000,3760.77,721.19,50.75,95.43000000000000,3850.17,654.12,46.34000000000020,81.09000000000000,4013.87,597.99,48.14000000000030,74.89000000000000,3565.07,613.95,50.06999999999970,73.18999999999990,3033.67,626.52,62.42000000000010,93.62,3347.04,539.68,27.94999999999980,48.59000000000000,3430.51,512.6,20.42999999999980,36.53000000000000,3740.7,558.71,22.73000000000000,49.069999999999900,2777.74,524.77,26.76000000000020,42.24000000000000,3804.55,767.83,17.639999999999900,16.780000000000000,3918.57,549.67,21.5,45.5,4369.25,557.48,19.26000000000020,42.80000000000000 -49,3607.5,715.26,41.88999999999990,100.55000000000000,3520.68,536.64,22.790000000000000,49.60000000000000,3754.52,716.36,74.19999999999980,66.66000000000000,4000.7,685.9,43.09000000000020,96.59000000000010,3745.31,620.96,33.42999999999980,63.16000000000000,3894.2,585.87,25.100000000000400,59.85000000000000,4013.61,545.44,30.96000000000000,42.39000000000000,4215.87,611.41,44.94000000000050,72.75,3796.74,505.66,19.19000000000010,37.769999999999900,3540.05,502.77,17.549999999999700,34.040000000000000,3784.92,749.02,46.809999999999900,103.28000000000000,3760.3,721.06,50.75,95.43000000000010,3850.63,653.69,46.32999999999990,81.08999999999990,4015.15,597.87,48.13999999999990,74.90000000000000,3563.76,614.28,50.06999999999970,73.18000000000010,3032.11,626.52,62.409999999999900,93.62,3346.44,539.66,27.94999999999980,48.59000000000000,3430.98,512.63,20.42999999999980,36.53000000000000,3740.78,558.62,22.73000000000000,49.07000000000010,2777.59,524.77,26.759999999999800,42.24000000000000,3807.13,766.34,17.639999999999900,16.780000000000000,3919.18,549.68,21.5,45.510000000000100,4369.25,557.45,19.26000000000020,42.80000000000000 -50,3612.95,714.83,41.88000000000010,100.55000000000000,3520.41,536.54,22.790000000000000,49.610000000000000,3759.93,716.32,72.80000000000020,68.31000000000000,4000.51,686.15,43.09999999999990,96.59000000000010,3744.3,621.0,33.4399999999996,63.15000000000000,3894.19,585.87,25.09999999999990,59.85000000000000,4013.85,545.61,30.97000000000030,42.44999999999990,4214.72,611.38,44.9399999999996,72.75,3797.09,505.73,19.19000000000010,37.77000000000000,3540.62,502.81,17.559999999999900,34.04000000000000,3795.35,749.47,46.809999999999900,103.28000000000000,3759.83,720.93,50.75,95.43000000000010,3851.08,653.26,46.34000000000020,81.08000000000000,4016.43,597.76,48.14000000000030,74.90000000000000,3562.45,614.61,50.08000000000040,73.18000000000000,3030.55,626.52,62.409999999999900,93.62,3345.84,539.64,27.94999999999980,48.59000000000000,3431.46,512.66,20.42999999999980,36.530000000000100,3740.86,558.53,22.73999999999980,49.07000000000010,2777.45,524.77,26.76000000000020,42.24000000000000,3809.71,764.84,17.639999999999900,16.790000000000000,3919.78,549.7,21.5,45.5,4369.25,557.43,19.25,42.79000000000010 -51,3618.39,714.4,41.89000000000030,100.56000000000000,3520.14,536.45,22.800000000000200,49.6099999999999,3765.34,716.28,71.40999999999990,69.96000000000000,4000.33,686.4,43.09999999999990,96.59000000000010,3743.3,621.04,33.42999999999980,63.15000000000010,3894.18,585.87,25.100000000000400,59.85000000000000,4014.09,545.77,30.98000000000000,42.53000000000000,4213.58,611.35,44.93000000000030,72.76000000000000,3797.44,505.8,19.19000000000010,37.77000000000000,3541.19,502.84,17.559999999999900,34.04000000000000,3805.78,749.92,46.809999999999900,103.28000000000000,3759.36,720.8,50.73999999999980,95.43000000000010,3851.54,652.82,46.32999999999990,81.08999999999990,4017.7,597.65,48.15000000000010,74.89000000000000,3561.15,614.94,50.06999999999970,73.18000000000000,3028.99,626.52,62.41000000000030,93.62,3345.24,539.62,27.95000000000030,48.59000000000000,3431.93,512.69,20.43000000000030,36.53000000000000,3740.95,558.44,22.73000000000000,49.069999999999900,2777.31,524.77,26.76000000000020,42.24000000000000,3811.97,764.48,17.640000000000300,16.780000000000000,3920.39,549.71,21.5,45.51000000000000,4369.24,557.4,19.26000000000020,42.79000000000010 -52,3623.83,713.98,41.88999999999990,100.55000000000000,3519.88,536.36,22.790000000000000,49.610000000000000,3770.74,716.23,70.0300000000002,71.62,4000.15,686.64,43.09999999999990,96.59000000000010,3742.3,621.07,33.42999999999980,63.16000000000000,3894.17,585.87,25.09999999999990,59.85000000000000,4014.33,545.93,30.98000000000000,42.610000000000000,4212.43,611.32,44.92999999999940,72.76000000000000,3797.79,505.87,19.19000000000010,37.77000000000000,3541.77,502.88,17.550000000000200,34.040000000000000,3816.2,750.37,46.8100000000004,103.27000000000000,3758.89,720.67,50.74000000000020,95.43000000000010,3851.99,652.39,46.34000000000020,81.09000000000000,4018.98,597.54,48.15000000000010,74.89000000000000,3559.84,615.26,50.06999999999970,73.19000000000010,3027.42,626.52,62.42000000000010,93.62,3344.64,539.6,27.95000000000030,48.59000000000000,3432.41,512.72,20.43000000000030,36.53000000000000,3741.03,558.35,22.73000000000000,49.069999999999900,2777.17,524.77,26.759999999999800,42.24000000000000,3814.22,764.11,17.65000000000010,16.780000000000000,3921.0,549.73,21.48999999999980,45.51000000000000,4369.24,557.37,19.26000000000020,42.80000000000000 -53,3629.28,713.55,41.88999999999990,100.56000000000000,3519.61,536.27,22.790000000000000,49.610000000000000,3776.15,716.19,68.63000000000010,73.27000000000000,3999.97,686.89,43.10000000000040,96.59000000000010,3741.29,621.11,33.440000000000100,63.15000000000000,3894.16,585.87,25.090000000000100,59.85000000000000,4014.58,546.1,30.98000000000000,42.67000000000000,4211.28,611.29,44.93000000000030,72.76000000000000,3798.14,505.94,19.19000000000010,37.77000000000000,3542.34,502.91,17.559999999999900,34.04000000000000,3826.63,750.81,46.809999999999900,103.28000000000000,3758.42,720.54,50.73999999999980,95.43000000000010,3852.45,651.96,46.33000000000040,81.07999999999990,4020.26,597.42,48.14999999999960,74.90000000000010,3558.53,615.59,50.07999999999990,73.18000000000000,3025.86,626.52,62.409999999999900,93.62,3344.04,539.58,27.94999999999980,48.58999999999990,3432.88,512.75,20.42999999999980,36.53000000000000,3741.11,558.26,22.73999999999980,49.07000000000010,2777.03,524.77,26.759999999999800,42.24000000000000,3816.48,763.75,17.65000000000010,16.780000000000000,3921.6,549.75,21.5,45.5,4369.24,557.34,19.26000000000020,42.80000000000000 -54,3633.88,713.08,41.88999999999990,100.56000000000000,3519.34,536.18,22.790000000000000,49.60000000000000,3781.56,716.15,67.24000000000020,74.91000000000000,3999.79,687.14,43.09999999999990,96.59000000000010,3740.29,621.14,33.42999999999980,63.16000000000000,3894.14,585.87,25.09999999999990,59.85000000000000,4014.82,546.26,30.98999999999980,42.75,4210.13,611.26,44.9399999999996,72.76000000000000,3798.49,506.01,19.19000000000010,37.77000000000000,3542.91,502.95,17.559999999999900,34.04000000000000,3837.06,751.26,46.809999999999900,103.28000000000000,3757.95,720.41,50.74000000000020,95.44000000000000,3852.9,651.52,46.33999999999970,81.09000000000000,4021.54,597.31,48.15000000000010,74.90000000000010,3557.23,615.92,50.07000000000020,73.18000000000010,3024.3,626.52,62.409999999999900,93.62,3343.44,539.56,27.94000000000010,48.59000000000000,3433.35,512.78,20.44000000000010,36.54000000000010,3741.2,558.17,22.73000000000000,49.07000000000010,2776.89,524.77,26.76000000000020,42.24000000000000,3818.74,763.38,17.65000000000010,16.780000000000000,3922.21,549.76,21.5,45.51000000000000,4369.24,557.31,19.26000000000020,42.80000000000010 -55,3638.48,712.61,41.88999999999990,100.56000000000000,3519.07,536.09,22.799999999999700,49.60000000000000,3786.97,716.11,65.85000000000040,76.56000000000000,3999.61,687.39,43.08999999999970,96.59000000000010,3739.29,621.18,33.42999999999980,63.16000000000010,3894.13,585.87,25.09999999999990,59.85000000000000,4015.06,546.42,31.0,42.83000000000000,4207.91,611.76,44.94000000000050,72.76000000000000,3798.84,506.08,19.19000000000010,37.77000000000000,3543.48,502.98,17.559999999999900,34.040000000000000,3847.49,751.71,46.80000000000020,103.28000000000000,3760.05,720.96,50.75,95.43000000000000,3853.36,651.09,46.32999999999990,81.08999999999990,4022.82,597.2,48.14999999999960,74.90000000000000,3555.92,616.24,50.06999999999970,73.18999999999990,3022.73,626.52,62.42000000000010,93.62,3342.83,539.54,27.95000000000030,48.58000000000000,3433.83,512.82,20.43000000000030,36.53000000000000,3741.28,558.08,22.73000000000000,49.069999999999900,2776.75,524.77,26.76000000000020,42.24000000000000,3819.91,765.98,17.65000000000010,16.780000000000000,3922.81,549.78,21.5,45.5,4369.24,557.28,19.25,42.80000000000010 -56,3643.08,712.14,41.88999999999990,100.56000000000000,3518.81,535.99,22.790000000000000,49.610000000000000,3792.38,716.07,64.44999999999980,78.20999999999990,3999.43,687.64,43.09000000000020,96.59000000000010,3738.28,621.22,33.4399999999996,63.15000000000000,3894.12,585.87,25.09999999999990,59.85000000000000,4015.3,546.59,31.009999999999800,42.89000000000000,4205.7,612.26,44.93000000000030,72.76000000000000,3799.19,506.15,19.19000000000010,37.77000000000000,3544.06,503.02,17.559999999999900,34.040000000000000,3857.91,752.16,46.809999999999900,103.28000000000000,3762.16,721.51,50.74000000000020,95.43000000000010,3853.81,650.65,46.34000000000020,81.09000000000000,4024.1,597.09,48.13999999999990,74.89000000000000,3554.61,616.57,50.07999999999990,73.18999999999990,3021.17,626.52,62.409999999999900,93.62,3342.23,539.52,27.94999999999980,48.58000000000000,3434.3,512.85,20.4399999999996,36.53000000000000,3741.36,557.99,22.73000000000000,49.069999999999900,2776.61,524.77,26.759999999999800,42.24000000000000,3821.08,768.58,17.65000000000010,16.780000000000000,3923.42,549.79,21.5,45.51000000000000,4369.23,557.26,19.26000000000020,42.79000000000000 -57,3647.68,711.68,41.89000000000030,100.55000000000000,3518.54,535.9,22.790000000000000,49.610000000000000,3797.78,716.03,63.06999999999970,79.86000000000000,3999.25,687.88,43.09000000000020,96.59000000000010,3737.28,621.25,33.4399999999996,63.16000000000000,3894.11,585.87,25.08999999999970,59.85000000000000,4015.54,546.75,31.020000000000000,42.97000000000000,4203.48,612.76,44.94000000000050,72.76000000000000,3799.54,506.21,19.19000000000010,37.77000000000000,3544.63,503.05,17.559999999999900,34.04000000000000,3868.34,752.61,46.809999999999900,103.28000000000000,3764.26,722.06,50.75,95.43000000000010,3854.27,650.22,46.32999999999990,81.08999999999990,4024.9,597.0,47.88000000000010,74.48000000000000,3553.31,616.9,50.07000000000020,73.18000000000010,3019.61,626.52,62.409999999999900,93.62,3341.63,539.49,27.94999999999980,48.59000000000000,3434.78,512.88,20.42999999999980,36.53000000000000,3741.44,557.9,22.73999999999980,49.07000000000010,2776.47,524.77,26.76000000000020,42.24000000000000,3822.25,771.18,17.65000000000010,16.780000000000100,3924.02,549.81,21.5,45.510000000000100,4369.23,557.23,19.26000000000020,42.79000000000000 -58,3652.28,711.21,41.88999999999990,100.55000000000000,3518.27,535.81,22.790000000000000,49.610000000000000,3803.19,715.98,61.67999999999980,81.52000000000000,3999.07,688.13,43.08999999999970,96.59000000000010,3736.28,621.29,33.42999999999980,63.15000000000010,3894.09,585.87,25.09999999999990,59.85000000000000,4015.79,546.91,31.01000000000020,43.05000000000010,4201.26,613.26,44.9399999999996,72.76000000000000,3799.89,506.28,19.19000000000010,37.77000000000000,3545.2,503.09,17.5600000000004,34.04000000000000,3876.9,759.37,47.42000000000010,103.48000000000000,3766.37,722.61,50.74000000000020,95.43000000000000,3854.72,649.79,46.34000000000020,81.08000000000000,4025.7,596.9,47.620000000000300,74.07000000000010,3552.0,617.23,50.07000000000020,73.18000000000000,3018.05,626.52,62.409999999999900,93.62,3341.03,539.47,27.94999999999980,48.58999999999990,3435.25,512.91,20.44000000000010,36.530000000000100,3741.53,557.81,22.73000000000000,49.07000000000010,2776.33,524.77,26.76000000000020,42.24000000000000,3823.42,773.78,17.65000000000010,16.780000000000000,3924.63,549.82,21.5,45.51000000000000,4369.23,557.2,19.26000000000020,42.80000000000000 -59,3656.88,710.74,41.88999999999990,100.55000000000000,3518.0,535.72,22.800000000000200,49.610000000000000,3808.6,715.94,60.2800000000002,83.17000000000000,3998.89,688.38,43.09000000000020,96.59000000000010,3735.27,621.32,33.440000000000100,63.16000000000000,3894.08,585.87,25.09999999999990,59.85000000000000,4016.03,547.08,31.020000000000000,43.120000000000000,4199.05,613.76,44.92999999999940,72.76000000000000,3800.24,506.35,19.19000000000010,37.77000000000000,3545.78,503.12,17.549999999999700,34.040000000000000,3886.04,759.91,48.04000000000000,103.67000000000000,3768.47,723.16,50.75,95.43000000000010,3855.18,649.35,46.34000000000020,81.09000000000000,4026.51,596.81,47.34999999999990,73.66000000000010,3550.69,617.55,50.07999999999990,73.19000000000010,3016.48,626.52,62.42000000000010,93.62,3340.43,539.45,27.95000000000030,48.58999999999990,3435.73,512.94,20.42999999999980,36.53000000000000,3741.61,557.72,22.73000000000000,49.069999999999900,2776.19,524.77,26.759999999999800,42.24000000000000,3824.89,778.48,17.65000000000010,16.780000000000000,3925.23,549.84,21.5,45.51000000000000,4369.23,557.17,19.26000000000020,42.80000000000010 -60,3661.48,710.27,41.88999999999990,100.55000000000000,3517.74,535.63,22.79000000000040,49.610000000000000,3814.01,715.9,58.88999999999990,84.81000000000010,3998.71,688.63,43.09000000000020,96.59000000000010,3734.27,621.36,33.440000000000100,63.16000000000000,3894.07,585.87,25.09999999999990,59.85000000000000,4016.27,547.24,31.0300000000002,43.18999999999990,4199.21,614.26,44.9399999999996,72.76000000000000,3800.59,506.42,19.19000000000010,37.77000000000000,3546.35,503.16,17.559999999999900,34.04000000000000,3895.18,760.44,48.65000000000010,103.87000000000000,3770.58,723.71,50.74000000000020,95.43000000000000,3855.64,648.92,46.32999999999990,81.09000000000000,4027.31,596.72,47.09000000000020,73.25,3549.39,617.88,50.07000000000020,73.18000000000000,3017.0,627.08,62.25,93.59999999999990,3339.83,539.43,27.95000000000030,48.59000000000000,3436.2,512.97,20.44000000000010,36.53000000000000,3741.69,557.63,22.73999999999980,49.07000000000010,2776.04,524.77,26.76000000000020,42.24000000000000,3826.35,783.18,17.65000000000010,16.780000000000100,3925.84,549.86,21.5,45.5,4369.22,557.14,19.25999999999930,42.80000000000010 -61,3666.08,709.8,41.88999999999990,100.56000000000000,3517.47,535.54,22.79000000000040,49.60000000000000,3816.09,717.43,58.52999999999980,85.18000000000010,3998.53,688.87,43.08999999999970,96.60000000000000,3733.27,621.4,33.42999999999980,63.15000000000000,3894.06,585.87,25.09999999999990,59.85000000000000,4016.51,547.4,31.040000000000000,43.27000000000000,4199.37,614.76,44.94000000000050,72.76000000000000,3800.94,506.49,19.19000000000010,37.77000000000000,3546.92,503.19,17.559999999999900,34.04000000000000,3904.33,760.98,49.25,104.06000000000000,3772.68,724.26,50.75,95.43000000000010,3856.09,648.49,46.33999999999970,81.08000000000000,4028.11,596.63,46.82999999999990,72.83000000000000,3548.08,618.21,50.07000000000020,73.18000000000000,3017.51,627.65,62.08999999999970,93.57000000000000,3339.23,539.41,27.94999999999980,48.59000000000000,3436.68,513.0,20.43000000000030,36.53000000000000,3741.78,557.54,22.73000000000000,49.07000000000010,2775.9,524.77,26.759999999999800,42.24000000000000,3827.82,787.88,17.649999999999600,16.780000000000000,3926.45,549.87,21.5,45.51000000000000,4369.22,557.11,19.25999999999930,42.80000000000000 -62,3670.68,709.33,41.89000000000030,100.56000000000000,3516.7,535.72,22.790000000000000,49.610000000000000,3818.18,718.95,58.16000000000030,85.56000000000000,3998.35,689.12,43.09000000000020,96.59000000000010,3732.26,621.43,33.4399999999996,63.16000000000010,3894.05,585.87,25.08999999999970,59.85000000000000,4016.76,547.57,31.040000000000000,43.33999999999990,4199.53,615.26,44.94000000000050,72.76000000000000,3801.29,506.56,19.19000000000010,37.77000000000000,3547.5,503.23,17.550000000000200,34.040000000000000,3913.47,761.51,49.86000000000010,104.26,3774.79,724.8,50.74000000000020,95.44000000000000,3856.55,648.05,46.32999999999990,81.09000000000000,4028.91,596.54,46.57000000000020,72.42000000000010,3546.77,618.54,50.07999999999990,73.18000000000010,3018.03,628.21,61.91999999999960,93.55000000000000,3338.63,539.39,27.94999999999980,48.59000000000000,3436.78,513.0,20.42999999999980,36.53000000000000,3741.86,557.45,22.73000000000000,49.069999999999900,2775.76,524.77,26.759999999999800,42.24000000000000,3829.29,792.58,17.639999999999900,16.780000000000000,3927.05,549.89,21.5,45.5,4369.22,557.09,19.25999999999930,42.79000000000000 -63,3675.29,708.86,41.88999999999990,100.56000000000000,3515.92,535.91,22.799999999999700,49.610000000000000,3820.27,720.48,57.7800000000002,85.93000000000000,3998.16,689.37,43.10000000000040,96.59000000000010,3731.26,621.47,33.4399999999996,63.15000000000000,3894.03,585.87,25.09999999999990,59.85000000000000,4017.0,547.73,31.050000000000200,43.41000000000000,4199.69,615.76,44.94000000000050,72.76000000000000,3801.64,506.63,19.19000000000010,37.77000000000000,3548.07,503.26,17.559999999999900,34.040000000000000,3922.61,762.05,50.48000000000000,104.45000000000000,3776.89,725.35,50.75,95.43999999999990,3857.0,647.62,46.34000000000020,81.09000000000000,4029.72,596.45,46.30000000000020,72.0,3545.47,618.86,50.07000000000020,73.18999999999990,3018.55,628.77,61.75,93.53000000000000,3338.03,539.37,27.94999999999980,48.59000000000000,3436.88,513.0,20.42999999999980,36.53000000000000,3741.94,557.36,22.73000000000000,49.069999999999900,2775.62,524.77,26.76000000000020,42.24000000000000,3832.53,793.41,17.649999999999600,16.780000000000100,3927.66,549.9,21.5,45.51000000000000,4369.22,557.06,19.25999999999930,42.79000000000010 -64,3679.89,708.4,41.89000000000030,100.55000000000000,3515.15,536.1,22.790000000000000,49.60000000000000,3822.36,722.01,57.409999999999900,86.30000000000000,3997.98,689.62,43.09999999999990,96.59000000000010,3730.26,621.5,33.42999999999980,63.16000000000000,3894.02,585.87,25.09999999999990,59.85000000000000,4017.24,547.89,31.050000000000200,43.49000000000000,4199.86,616.26,44.93000000000030,72.76000000000000,3801.99,506.7,19.19000000000010,37.77000000000000,3548.64,503.3,17.559999999999900,34.04000000000000,3931.75,762.58,51.09000000000020,104.65000000000000,3779.0,725.9,50.73999999999980,95.44000000000000,3857.46,647.19,46.32999999999990,81.07999999999990,4030.52,596.35,46.04000000000000,71.60000000000000,3544.16,619.19,50.07000000000020,73.18000000000000,3019.06,629.34,61.59000000000020,93.5,3337.43,539.35,27.94000000000010,48.57999999999990,3436.97,513.0,20.44000000000010,36.53000000000000,3742.02,557.27,22.74000000000020,49.07000000000010,2775.48,524.77,26.759999999999800,42.24000000000000,3835.77,794.24,17.65000000000010,16.780000000000000,3928.26,549.92,21.5,45.51000000000000,4369.22,557.03,19.25,42.80000000000010 -65,3684.49,707.93,41.89000000000030,100.55000000000000,3514.38,536.28,22.790000000000000,49.610000000000000,3824.45,723.53,57.04000000000000,86.68000000000010,3997.8,689.87,43.09999999999990,96.59000000000010,3729.25,621.54,33.440000000000100,63.16000000000010,3894.01,585.87,25.09999999999990,59.85000000000000,4017.48,548.06,31.059999999999900,43.56000000000010,4200.02,616.76,44.9399999999996,72.76000000000000,3802.34,506.77,19.19000000000010,37.77000000000000,3549.22,503.33,17.550000000000200,34.04000000000000,3940.89,763.12,51.70000000000030,104.85000000000000,3781.1,726.45,50.75,95.43999999999990,3857.91,646.75,46.34000000000020,81.09000000000000,4031.32,596.26,45.77999999999980,71.19000000000010,3542.85,619.52,50.07999999999990,73.18000000000010,3019.58,629.9,61.43000000000030,93.48000000000000,3336.82,539.32,27.94999999999980,48.58999999999990,3437.07,513.0,20.44000000000010,36.53000000000000,3742.11,557.18,22.73000000000000,49.07000000000010,2775.34,524.77,26.759999999999800,42.24000000000000,3839.01,795.08,17.649999999999600,16.780000000000000,3928.87,549.94,21.5,45.5,4369.21,557.0,19.26000000000020,42.80000000000000 -66,3689.09,707.46,41.88999999999990,100.55000000000000,3513.61,536.47,22.790000000000000,49.610000000000000,3826.53,725.06,56.67999999999980,87.05000000000010,3997.62,690.11,43.09999999999990,96.59000000000010,3728.25,621.58,33.440000000000100,63.15000000000000,3894.0,585.87,25.090000000000100,59.85000000000000,4017.73,548.22,31.059999999999900,43.63,4200.18,617.26,44.9399999999996,72.76000000000000,3802.69,506.84,19.19000000000010,37.77000000000000,3549.79,503.37,17.559999999999900,34.040000000000000,3950.03,763.65,52.309999999999900,105.05000000000000,3783.21,727.0,50.73999999999980,95.43000000000000,3858.37,646.32,46.32999999999990,81.08999999999990,4032.12,596.17,45.51000000000020,70.7700000000001,3541.55,619.85,50.06999999999970,73.18000000000000,3020.09,630.46,61.27000000000000,93.45999999999990,3336.22,539.3,27.95000000000030,48.59000000000000,3437.17,513.0,20.44000000000010,36.53000000000000,3742.19,557.09,22.73000000000000,49.069999999999900,2775.2,524.77,26.76000000000020,42.24000000000000,3842.25,795.91,17.65000000000010,16.780000000000100,3929.47,549.95,21.5,45.51000000000000,4369.21,556.97,19.26000000000020,42.80000000000000 -67,3693.69,706.99,41.88999999999990,100.55000000000000,3512.83,536.66,22.790000000000000,49.60000000000000,3828.62,726.59,56.30000000000020,87.42000000000000,3997.44,690.36,43.09999999999990,96.59000000000010,3727.25,621.61,33.42999999999980,63.16000000000000,3893.98,585.87,25.09999999999990,59.85000000000000,4017.97,548.38,31.070000000000200,43.71000000000000,4200.34,617.76,44.9399999999996,72.76000000000000,3803.04,506.9,19.19000000000010,37.77000000000000,3550.21,503.37,17.550000000000200,34.040000000000000,3959.17,764.19,52.92999999999980,105.2400000000000,3785.31,727.55,50.75,95.43000000000010,3858.82,645.89,46.33999999999970,81.08000000000000,4032.93,596.08,45.24000000000020,70.36000000000000,3540.24,620.17,50.07000000000020,73.19000000000010,3020.61,631.02,61.09999999999990,93.44000000000000,3335.62,539.28,27.95000000000030,48.59000000000000,3437.27,513.0,20.42999999999980,36.53000000000000,3742.27,557.0,22.74000000000020,49.07000000000010,2775.06,524.77,26.76000000000020,42.24000000000000,3845.49,796.74,17.65000000000010,16.780000000000000,3930.08,549.97,21.5,45.5,4369.21,556.94,19.26000000000020,42.80000000000000 -68,3698.29,706.52,41.88999999999990,100.56000000000000,3512.06,536.84,22.790000000000000,49.610000000000000,3830.71,728.11,55.92999999999980,87.80000000000000,3997.26,690.61,43.08999999999970,96.59000000000010,3726.24,621.65,33.440000000000100,63.16000000000000,3893.97,585.87,25.100000000000400,59.85000000000000,4018.21,548.55,31.079999999999900,43.780000000000100,4200.5,618.26,44.9399999999996,72.76000000000000,3803.39,506.97,19.19000000000010,37.77000000000000,3550.62,503.37,17.559999999999900,34.040000000000000,3968.32,764.72,53.52999999999980,105.44000000000000,3787.42,728.1,50.73999999999980,95.43000000000000,3859.28,645.45,46.32999999999990,81.08999999999990,4033.73,595.99,44.98000000000000,69.93999999999990,3538.93,620.5,50.08000000000040,73.18000000000000,3021.12,631.59,60.940000000000100,93.41000000000000,3335.02,539.26,27.94999999999980,48.59000000000000,3437.37,513.0,20.43000000000030,36.53000000000000,3742.36,556.91,22.73000000000000,49.07000000000010,2774.92,524.77,26.759999999999800,42.24000000000000,3848.15,799.27,17.65000000000010,16.780000000000000,3930.69,549.98,21.48999999999980,45.51000000000000,4369.21,556.92,19.26000000000020,42.79000000000010 -69,3700.19,705.78,41.88999999999990,100.55000000000000,3511.29,537.03,22.790000000000000,49.610000000000000,3832.8,729.64,55.559999999999900,88.17000000000000,3997.08,690.86,43.09000000000020,96.59000000000010,3725.24,621.69,33.440000000000100,63.15000000000000,3893.96,585.87,25.09999999999990,59.85000000000000,4018.45,548.71,31.080000000000400,43.84999999999990,4200.67,618.76,44.93000000000030,72.76000000000000,3803.74,507.04,19.19000000000010,37.769999999999900,3551.04,503.37,17.559999999999900,34.040000000000000,3977.46,765.26,54.13999999999990,105.63,3789.52,728.65,50.75,95.43000000000010,3859.32,648.94,46.32999999999990,81.08999999999990,4034.53,595.9,44.7199999999998,69.53000000000000,3537.63,620.83,50.06999999999970,73.18000000000000,3021.64,632.15,60.77000000000000,93.39,3334.42,539.24,27.94999999999980,48.59000000000000,3437.47,513.0,20.43000000000030,36.53000000000000,3742.44,556.82,22.73000000000000,49.069999999999900,2774.78,524.77,26.759999999999800,42.24000000000000,3850.82,801.8,17.649999999999600,16.790000000000100,3931.29,550.0,21.5,45.51000000000000,4369.2,556.89,19.26000000000020,42.79000000000000 -70,3702.09,705.04,41.88999999999990,100.55000000000000,3510.51,537.22,22.799999999999700,49.610000000000000,3834.88,731.17,55.19999999999980,88.54000000000010,3996.9,691.11,43.08999999999970,96.59000000000010,3724.24,621.72,33.43000000000030,63.16000000000000,3893.95,585.87,25.100000000000400,59.85000000000000,4018.7,548.87,31.080000000000400,43.93000000000000,4200.83,619.26,44.94000000000050,72.76000000000000,3804.09,507.11,19.19000000000010,37.77000000000000,3551.46,503.37,17.559999999999900,34.040000000000000,3986.6,765.79,54.75,105.83000000000000,3791.63,729.2,50.73999999999980,95.43000000000000,3859.35,652.44,46.34000000000020,81.07999999999990,4035.33,595.8,44.46000000000000,69.13,3536.32,621.16,50.06999999999970,73.18000000000010,3022.16,632.71,60.60000000000040,93.37,3333.82,539.22,27.94999999999980,48.58999999999990,3437.57,513.0,20.42999999999980,36.53000000000000,3742.52,556.73,22.74000000000020,49.069999999999900,2774.64,524.77,26.76000000000020,42.24000000000000,3853.48,804.34,17.65000000000010,16.780000000000000,3931.9,550.02,21.5,45.5,4369.2,556.86,19.26000000000020,42.80000000000000 -71,3703.99,704.29,41.89000000000030,100.56000000000000,3509.74,537.41,22.79000000000040,49.60000000000000,3836.97,732.69,54.82000000000020,88.92000000000000,3996.72,691.35,43.09000000000020,96.59000000000010,3723.23,621.76,33.440000000000100,63.15000000000000,3893.94,585.87,25.090000000000100,59.85000000000000,4018.94,549.04,31.090000000000100,44.0,4200.99,619.76,44.94000000000050,72.76000000000000,3804.44,507.18,19.19000000000010,37.77000000000000,3551.88,503.37,17.559999999999900,34.040000000000000,3995.74,766.33,55.370000000000300,106.02000000000000,3794.08,729.75,50.75,95.43000000000000,3859.39,655.93,46.32999999999990,81.08000000000000,4036.14,595.71,44.190000000000100,68.70999999999990,3535.01,621.48,50.07999999999990,73.18999999999990,3022.67,633.28,60.44999999999980,93.34000000000010,3333.22,539.2,27.95000000000030,48.58999999999990,3437.67,513.0,20.42999999999980,36.53000000000000,3742.61,556.64,22.73000000000000,49.07000000000010,2774.49,524.77,26.76000000000020,42.24000000000000,3856.15,806.87,17.639999999999900,16.780000000000000,3932.5,550.03,21.5,45.51000000000000,4369.2,556.83,19.26000000000020,42.80000000000000 -72,3705.89,703.55,41.89000000000030,100.56000000000000,3508.97,537.59,22.79000000000040,49.610000000000000,3839.06,734.22,54.45000000000030,89.28000000000000,3996.54,691.6,43.09000000000020,96.59000000000010,3722.23,621.79,33.440000000000100,63.16000000000010,3893.92,585.87,25.09999999999990,59.85000000000000,4019.18,549.2,31.100000000000400,44.07999999999990,4201.15,620.26,44.94000000000050,72.76000000000000,3804.79,507.25,19.19000000000010,37.77000000000000,3552.3,503.37,17.549999999999700,34.040000000000000,4004.88,766.86,55.98000000000000,106.22000000000000,3796.54,730.3,50.74000000000020,95.43000000000010,3859.42,659.42,46.34000000000020,81.09000000000000,4036.94,595.62,43.92999999999980,68.30000000000000,3533.71,621.81,50.07000000000020,73.18000000000010,3023.19,633.84,60.27999999999980,93.31999999999990,3332.62,539.18,27.95000000000030,48.58000000000000,3437.77,513.0,20.42999999999980,36.53000000000000,3742.69,556.55,22.73000000000000,49.07000000000010,2774.35,524.77,26.76000000000020,42.24000000000000,3858.81,809.4,17.65000000000010,16.780000000000000,3933.11,550.05,21.5,45.5,4369.2,556.8,19.26000000000020,42.80000000000010 -73,3707.79,702.81,41.88999999999990,100.55000000000000,3508.2,537.78,22.790000000000000,49.610000000000000,3841.15,735.75,54.07999999999990,89.65000000000000,3996.36,691.85,43.08999999999970,96.59000000000010,3721.57,622.01,33.440000000000100,63.16000000000000,3893.91,585.87,25.100000000000400,59.85000000000000,4019.42,549.36,31.110000000000100,44.15000000000000,4201.31,620.76,44.9399999999996,72.76000000000000,3805.14,507.32,19.19000000000010,37.77000000000000,3552.71,503.37,17.559999999999900,34.040000000000000,4014.02,767.4,56.59000000000020,106.41000000000000,3798.99,730.85,50.74000000000020,95.43000000000000,3859.46,662.91,46.32999999999990,81.09000000000000,4037.74,595.53,43.67000000000010,67.88,3532.4,622.14,50.06999999999970,73.18000000000010,3023.7,634.4,60.120000000000300,93.29000000000010,3332.02,539.16,27.94000000000010,48.58000000000000,3437.87,513.0,20.43000000000030,36.53000000000000,3742.77,556.46,22.73000000000000,49.069999999999900,2774.21,524.77,26.759999999999800,42.24000000000000,3861.48,811.93,17.639999999999900,16.790000000000100,3933.71,550.06,21.5,45.510000000000100,4369.2,556.77,19.25,42.80000000000010 -74,3709.69,702.07,41.88999999999990,100.55000000000000,3507.42,537.97,22.799999999999700,49.60000000000000,3843.24,737.28,53.71000000000000,90.02000000000000,3996.18,692.1,43.09000000000020,96.59000000000010,3720.91,622.23,33.440000000000100,63.15000000000000,3893.9,585.87,25.09999999999990,59.85000000000000,4019.67,549.53,31.110000000000100,44.22000000000000,4201.48,621.26,44.93000000000030,72.75,3805.49,507.39,19.19000000000010,37.77000000000000,3553.13,503.37,17.559999999999900,34.040000000000000,4023.16,767.93,57.20000000000030,106.62,3801.45,731.39,50.74000000000020,95.44000000000000,3859.49,666.4,46.34000000000020,81.09000000000000,4038.54,595.44,43.409999999999900,67.46999999999990,3531.09,622.46,50.07999999999990,73.18999999999990,3024.22,634.96,59.95000000000030,93.27000000000000,3331.42,539.13,27.94000000000010,48.59000000000000,3437.97,513.0,20.43000000000030,36.53000000000000,3742.85,556.38,22.74000000000020,49.06000000000010,2774.07,524.77,26.759999999999800,42.24000000000000,3864.14,814.47,17.65000000000010,16.780000000000000,3934.32,550.08,21.5,45.51000000000000,4369.19,556.75,19.26000000000020,42.79000000000000 -75,3711.59,701.33,41.88999999999990,100.55000000000000,3506.65,538.15,22.790000000000000,49.610000000000000,3845.32,738.8,53.33999999999970,90.40000000000010,3996.0,692.34,43.09000000000020,96.60000000000000,3720.26,622.44,33.42999999999980,63.16000000000000,3893.89,585.87,25.090000000000100,59.85000000000000,4019.91,549.69,31.110000000000100,44.30000000000000,4201.64,621.76,44.9399999999996,72.75,3805.84,507.46,19.19000000000010,37.77000000000000,3553.55,503.37,17.559999999999900,34.040000000000000,4032.3,768.47,57.81999999999970,106.81000000000000,3807.86,733.6,50.75,95.06000000000000,3859.53,669.89,46.32999999999990,81.09000000000000,4039.35,595.34,43.13999999999990,67.06999999999990,3529.79,622.79,50.07000000000020,73.19000000000010,3024.73,635.53,59.79000000000000,93.24,3330.81,539.11,27.95000000000030,48.59000000000000,3438.06,513.0,20.44000000000010,36.53000000000000,3742.94,556.29,22.73000000000000,49.06000000000010,2773.93,524.77,26.76000000000020,42.24000000000000,3866.8,817.0,17.649999999999600,16.780000000000000,3934.92,550.1,21.5,45.5,4369.19,556.72,19.26000000000020,42.79000000000000 -76,3713.49,700.58,41.89000000000030,100.56000000000000,3505.88,538.34,22.790000000000000,49.610000000000000,3847.41,740.33,52.970000000000300,90.77000000000000,3995.81,692.59,43.09999999999990,96.58999999999990,3719.6,622.66,33.43000000000030,63.16000000000010,3893.87,585.87,25.09999999999990,59.85000000000000,4020.15,549.85,31.11999999999990,44.370000000000000,4201.8,622.26,44.9399999999996,72.75,3806.19,507.53,19.19000000000010,37.77000000000000,3553.97,503.37,17.5600000000004,34.040000000000000,4041.45,769.0,58.42000000000010,107.01,3814.28,735.8,50.75,94.69000000000000,3857.99,670.52,46.34000000000020,81.09000000000000,4040.15,595.25,42.86999999999990,66.65000000000000,3529.31,624.32,50.07000000000020,73.18000000000000,3025.25,636.09,59.63000000000010,93.21999999999990,3330.21,539.09,27.94999999999980,48.58999999999990,3438.16,513.0,20.44000000000010,36.53000000000000,3743.02,556.2,22.73000000000000,49.059999999999900,2773.79,524.77,26.76000000000020,42.24000000000000,3869.47,819.53,17.65000000000010,16.780000000000000,3935.53,550.11,21.5,45.51000000000000,4369.19,556.69,19.26000000000020,42.80000000000000 -77,3715.39,699.84,41.89000000000030,100.56000000000000,3505.11,538.53,22.790000000000000,49.60000000000000,3849.5,741.86,52.59999999999990,91.14,3995.63,692.84,43.09999999999990,96.58999999999990,3718.94,622.88,33.440000000000100,63.15000000000000,3893.86,585.87,25.09999999999990,59.85000000000000,4020.39,550.02,31.13000000000010,44.440000000000100,4201.96,622.76,44.9399999999996,72.75,3806.54,507.59,19.19000000000010,37.77000000000000,3554.39,503.37,17.550000000000200,34.040000000000000,4050.59,769.54,59.02999999999980,107.20000000000000,3820.7,738.01,50.75,94.31000000000010,3856.46,671.15,46.34000000000020,81.09000000000000,4040.95,595.16,42.61000000000010,66.24000000000000,3528.82,625.84,50.07999999999990,73.18999999999990,3025.77,636.65,59.46000000000000,93.20000000000010,3329.61,539.07,27.94999999999980,48.58999999999990,3438.26,513.0,20.4399999999996,36.53000000000000,3743.1,556.11,22.74000000000020,49.059999999999900,2773.65,524.77,26.759999999999800,42.24000000000000,3872.16,819.52,17.65000000000010,16.780000000000000,3936.14,550.13,21.5,45.5,4369.19,556.66,19.26000000000020,42.80000000000010 -78,3717.29,699.1,41.88999999999990,100.55000000000000,3504.33,538.71,22.800000000000200,49.610000000000000,3850.27,746.29,54.51000000000020,88.96000000000000,3995.45,693.09,43.10000000000040,96.58999999999990,3718.28,623.09,33.4399999999996,63.16000000000000,3893.85,585.87,25.09999999999990,59.85000000000000,4020.63,550.18,31.13999999999990,44.520000000000100,4202.12,623.26,44.94000000000050,72.75,3806.89,507.66,19.19000000000010,37.769999999999900,3554.8,503.37,17.559999999999900,34.040000000000000,4059.73,770.07,59.63999999999990,107.40000000000000,3827.12,740.21,50.75,93.94999999999990,3854.93,671.78,46.33000000000040,81.09000000000000,4041.75,595.07,42.34999999999990,65.81999999999990,3528.34,627.37,50.07999999999990,73.18000000000000,3026.28,637.22,59.29999999999970,93.17000000000000,3329.01,539.05,27.94999999999980,48.59000000000000,3438.36,513.0,20.42999999999980,36.53000000000000,3743.19,556.02,22.73000000000000,49.06000000000010,2773.51,524.77,26.759999999999800,42.24000000000000,3874.86,819.5,17.65000000000010,16.780000000000000,3936.74,550.14,21.5,45.51000000000000,4369.18,556.63,19.25999999999930,42.80000000000000 -79,3719.19,698.36,41.88999999999990,100.55000000000000,3503.56,538.9,22.790000000000000,49.610000000000000,3851.03,750.72,56.4399999999996,86.79000000000000,3995.27,693.34,43.09999999999990,96.58999999999990,3717.63,623.31,33.42999999999980,63.15000000000010,3893.84,585.87,25.09999999999990,59.85000000000000,4020.88,550.34,31.13999999999990,44.58999999999990,4202.29,623.76,44.93000000000030,72.75,3807.23,507.73,19.19999999999980,37.77000000000000,3555.22,503.37,17.5600000000004,34.040000000000000,4065.3,769.59,60.25,107.59000000000000,3833.54,742.42,50.74000000000020,93.57000000000000,3853.39,672.41,46.34000000000020,81.08000000000000,4042.56,594.98,42.07999999999990,65.41000000000000,3527.86,628.89,50.06999999999970,73.19000000000010,3026.8,637.78,59.12999999999970,93.15000000000000,3328.41,539.03,27.95000000000030,48.59000000000000,3438.46,513.0,20.42999999999980,36.53000000000000,3742.55,555.91,22.73000000000000,49.06000000000010,2773.37,524.77,26.76000000000020,42.24000000000000,3877.55,819.48,17.649999999999600,16.790000000000000,3937.35,550.16,21.5,45.51000000000000,4369.18,556.6,19.25999999999930,42.80000000000000 -80,3721.09,697.61,41.88999999999990,100.56000000000000,3502.79,539.09,22.790000000000000,49.60000000000000,3851.8,755.15,58.34999999999990,84.61000000000000,3995.09,693.58,43.09999999999990,96.58999999999990,3716.97,623.53,33.43000000000030,63.15000000000000,3893.82,585.87,25.09999999999990,59.85000000000000,4021.12,550.51,31.140000000000300,44.66000000000000,4202.45,624.26,44.94000000000050,72.75,3807.58,507.8,19.20000000000030,37.77000000000000,3555.64,503.37,17.559999999999900,34.040000000000000,4070.86,769.1,60.86999999999940,107.79000000000000,3839.96,744.62,50.73999999999980,93.20000000000010,3851.86,673.04,46.32999999999990,81.08000000000000,4043.36,594.89,41.81999999999970,65.0,3527.38,630.42,50.06999999999970,73.18000000000010,3027.31,638.34,58.970000000000300,93.13,3327.81,539.01,27.95000000000030,48.59000000000000,3438.56,513.0,20.42999999999980,36.53000000000000,3741.91,555.8,22.73000000000000,49.07000000000010,2773.23,524.77,26.759999999999800,42.24000000000000,3880.25,819.47,17.65000000000010,16.780000000000000,3937.95,550.17,21.5,45.51000000000000,4369.18,556.58,19.25999999999930,42.79000000000000 -81,3722.99,696.87,41.89000000000030,100.56000000000000,3502.01,539.27,22.799999999999700,49.610000000000000,3852.57,759.58,60.25999999999980,82.43999999999990,3994.91,693.83,43.09000000000020,96.58999999999990,3716.31,623.74,33.440000000000100,63.16000000000000,3893.81,585.87,25.09999999999990,59.85000000000000,4021.36,550.67,31.15000000000010,44.74000000000000,4202.61,624.76,44.94000000000050,72.75,3807.93,507.87,19.20000000000030,37.77000000000000,3556.06,503.37,17.559999999999900,34.040000000000000,4076.43,768.62,61.48000000000000,107.98000000000000,3846.38,746.83,50.73999999999980,92.81999999999990,3850.32,673.66,46.33999999999970,81.09000000000000,4044.16,594.79,41.559999999999900,64.59000000000000,3526.9,631.94,50.06999999999970,73.18999999999990,3027.83,638.91,58.80000000000020,93.10000000000000,3327.21,538.99,27.94999999999980,48.58000000000000,3438.66,513.0,20.43000000000030,36.53000000000000,3741.27,555.69,22.73000000000000,49.069999999999900,2773.09,524.77,26.759999999999800,42.24000000000000,3882.94,819.45,17.65000000000010,16.780000000000000,3938.56,550.19,21.5,45.51000000000000,4369.18,556.55,19.25999999999930,42.79000000000010 -82,3724.89,696.13,41.89000000000030,100.55000000000000,3501.24,539.46,22.79000000000040,49.610000000000000,3853.34,764.01,62.17000000000010,80.26000000000000,3994.73,694.08,43.09000000000020,96.58999999999990,3715.65,623.96,33.440000000000100,63.15000000000000,3893.8,585.87,25.09999999999990,59.85000000000000,4021.6,550.83,31.16000000000030,44.809999999999900,4202.77,625.26,44.9399999999996,72.75,3808.28,507.94,19.19999999999980,37.77000000000000,3556.48,503.37,17.550000000000200,34.040000000000000,4082.0,768.13,62.09000000000020,108.18000000000000,3847.27,748.93,50.74000000000020,92.45000000000010,3848.79,674.29,46.32999999999990,81.09000000000000,4044.97,594.7,41.29000000000040,64.18000000000000,3526.42,633.47,50.06999999999970,73.18000000000000,3028.35,639.47,58.63999999999990,93.07999999999990,3326.61,538.97,27.94999999999980,48.57999999999990,3438.76,513.0,20.42999999999980,36.53000000000000,3740.63,555.59,22.73000000000000,49.059999999999900,2772.94,524.77,26.759999999999800,42.24000000000000,3885.64,819.44,17.65000000000010,16.780000000000000,3939.16,550.21,21.5,45.5,4369.18,556.52,19.25,42.80000000000010 -83,3726.79,695.39,41.88999999999990,100.55000000000000,3500.47,539.5,22.79000000000040,49.610000000000000,3854.1,768.45,64.09999999999990,78.06999999999990,3994.55,694.33,43.08999999999970,96.58999999999990,3714.99,624.17,33.440000000000100,63.16000000000010,3893.79,585.87,25.09999999999990,59.85000000000000,4021.85,551.0,31.16000000000030,44.88,4202.93,625.76,44.9399999999996,72.75,3808.63,508.01,19.19999999999980,37.77000000000000,3556.89,503.37,17.559999999999900,34.040000000000000,4087.57,767.64,62.70000000000030,108.38,3848.15,751.02,50.75,92.09000000000010,3847.25,674.92,46.34000000000020,81.09000000000000,4045.77,594.61,41.0300000000002,63.76000000000000,3525.93,634.99,50.08000000000040,73.18999999999990,3028.86,640.03,58.48000000000000,93.06000000000010,3326.01,538.94,27.9399999999996,48.58999999999990,3438.86,513.0,20.42999999999980,36.53000000000000,3739.99,555.48,22.73000000000000,49.059999999999900,2772.8,524.77,26.759999999999800,42.24000000000000,3888.33,819.42,17.65000000000010,16.780000000000100,3939.77,550.22,21.5,45.51000000000000,4369.17,556.49,19.26000000000020,42.80000000000000 -84,3728.69,694.65,41.88999999999990,100.55000000000000,3499.7,539.54,22.790000000000000,49.610000000000000,3854.87,772.88,66.01000000000020,75.90000000000000,3995.62,695.38,43.09999999999990,96.59000000000010,3714.34,624.39,33.42999999999980,63.16000000000000,3893.78,585.87,25.08999999999970,59.85000000000000,4022.09,551.16,31.17000000000010,44.96000000000000,4203.1,626.26,44.92999999999940,72.75,3808.98,508.08,19.19999999999980,37.77000000000000,3557.31,503.37,17.559999999999900,34.040000000000000,4093.13,767.16,63.31999999999970,108.57000000000000,3849.04,753.12,50.74000000000020,91.71000000000000,3845.72,675.55,46.33000000000040,81.09000000000000,4046.57,594.52,40.77000000000000,63.35000000000000,3525.45,636.52,50.08000000000040,73.18000000000010,3029.38,640.59,58.309999999999900,93.04000000000000,3325.4,538.92,27.94999999999980,48.59000000000000,3438.96,513.0,20.42999999999980,36.53000000000000,3739.35,555.37,22.73000000000000,49.07000000000010,2772.66,524.77,26.76000000000020,42.24000000000000,3891.03,819.4,17.639999999999900,16.780000000000000,3940.38,550.24,21.48999999999980,45.5,4369.17,556.46,19.26000000000020,42.80000000000000 -85,3728.17,694.9,41.88999999999990,100.56000000000000,3498.92,539.58,22.799999999999700,49.610000000000000,3855.64,777.31,67.92000000000010,73.72000000000000,3996.7,696.43,43.09000000000020,96.59000000000010,3713.68,624.61,33.43000000000030,63.15000000000000,3893.76,585.87,25.09999999999990,59.85000000000000,4022.33,551.32,31.18000000000030,45.04000000000000,4203.26,626.76,44.9399999999996,72.75,3809.33,508.15,19.20000000000030,37.77000000000000,3557.73,503.37,17.559999999999900,34.040000000000000,4098.7,766.67,63.93000000000030,108.7700000000000,3849.93,755.22,50.74000000000020,91.33999999999990,3844.18,676.18,46.34000000000020,81.08000000000000,4047.37,594.43,40.51000000000020,62.940000000000100,3524.97,638.04,50.07000000000020,73.19000000000010,3029.89,641.16,58.15000000000010,93.01,3324.8,538.9,27.94999999999980,48.59000000000000,3439.06,513.0,20.42999999999980,36.53000000000000,3738.71,555.26,22.73000000000000,49.07000000000010,2772.52,524.77,26.76000000000020,42.24000000000000,3895.36,821.97,17.65000000000010,16.780000000000000,3940.98,550.25,21.5,45.51000000000000,4369.17,556.43,19.26000000000020,42.80000000000010 -86,3727.66,695.16,41.89000000000030,100.55000000000000,3498.15,539.63,22.790000000000000,49.60000000000000,3856.41,781.74,69.84000000000020,71.55000000000000,3997.77,697.48,43.09999999999990,96.59000000000010,3713.02,624.82,33.440000000000100,63.16000000000000,3893.75,585.87,25.09999999999990,59.85000000000000,4022.57,551.49,31.17999999999980,45.10000000000000,4203.42,627.26,44.9399999999996,72.75,3809.68,508.22,19.20000000000030,37.77000000000000,3558.15,503.37,17.559999999999900,34.040000000000000,4104.27,766.19,64.54000000000000,108.96000000000000,3850.81,757.32,50.75,90.95999999999990,3842.65,676.81,46.32999999999990,81.08000000000000,4048.18,594.34,40.23000000000000,62.52000000000000,3524.49,639.57,50.07000000000020,73.18000000000000,3030.41,641.72,57.98000000000000,92.99,3324.2,538.88,27.95000000000030,48.59000000000000,3439.15,513.0,20.44000000000010,36.53000000000000,3738.07,555.15,22.73000000000000,49.07000000000010,2772.38,524.77,26.759999999999800,42.24000000000000,3899.7,824.54,17.640000000000300,16.780000000000100,3941.59,550.27,21.5,45.51000000000000,4369.17,556.41,19.26000000000020,42.79000000000010 -87,3727.14,695.42,41.89000000000030,100.55000000000000,3497.38,539.67,22.790000000000000,49.60000000000000,3857.17,786.17,71.75999999999980,69.37,3998.85,698.53,43.09000000000020,96.59000000000010,3712.36,625.04,33.440000000000100,63.16000000000010,3893.74,585.87,25.100000000000400,59.85000000000000,4022.82,551.65,31.17999999999980,45.180000000000100,4203.95,627.34,44.94000000000050,72.76000000000000,3810.03,508.28,19.19999999999980,37.77000000000000,3558.57,503.37,17.549999999999700,34.040000000000000,4109.84,765.7,65.13999999999940,109.16000000000000,3851.7,759.42,50.74000000000020,90.59000000000010,3841.11,677.43,46.33999999999970,81.09000000000000,4048.98,594.24,39.9699999999998,62.120000000000000,3524.01,641.09,50.06999999999970,73.18999999999990,3030.92,642.28,57.81999999999970,92.97000000000000,3323.6,538.86,27.95000000000030,48.59000000000000,3438.99,512.99,20.44000000000010,36.53000000000000,3737.43,555.05,22.73000000000000,49.06000000000010,2772.24,524.77,26.76000000000020,42.24000000000000,3904.03,827.11,17.649999999999600,16.780000000000000,3942.19,550.29,21.5,45.5,4369.17,556.38,19.25,42.79000000000000 -88,3726.63,695.67,41.88999999999990,100.56000000000000,3496.61,539.71,22.790000000000000,49.610000000000000,3857.94,790.6,73.67000000000010,67.18999999999990,3999.92,699.58,43.09999999999990,96.58999999999990,3711.7,625.26,33.440000000000100,63.15000000000000,3893.73,585.87,25.09999999999990,59.85000000000000,4023.06,551.81,31.19000000000010,45.260000000000100,4204.49,627.43,44.93000000000030,72.7600000000001,3810.38,508.35,19.19999999999980,37.77000000000000,3558.98,503.37,17.559999999999900,34.040000000000000,4115.4,765.21,65.76000000000020,109.36,3852.59,761.52,50.73999999999980,90.22000000000000,3839.58,678.06,46.32999999999990,81.09000000000000,4049.78,594.15,39.70999999999960,61.700000000000000,3523.53,642.62,50.06999999999970,73.18000000000000,3031.44,642.85,57.659999999999900,92.93999999999990,3323.0,538.84,27.94999999999980,48.58999999999990,3438.83,512.98,20.43000000000030,36.54000000000000,3736.79,554.94,22.73000000000000,49.069999999999900,2772.1,524.77,26.76000000000020,42.24000000000000,3908.36,829.68,17.65000000000010,16.790000000000100,3942.8,550.3,21.5,45.51000000000000,4369.16,556.35,19.26000000000020,42.80000000000000 -89,3726.11,695.93,41.88999999999990,100.55000000000000,3495.83,539.75,22.800000000000200,49.610000000000000,3858.71,795.04,75.57999999999990,65.01000000000000,4001.0,700.63,43.09000000000020,96.59000000000010,3711.05,625.47,33.42999999999980,63.16000000000000,3893.71,585.87,25.09999999999990,59.85000000000000,4023.3,551.98,31.19999999999980,45.319999999999900,4205.02,627.52,44.9399999999996,72.75,3810.73,508.42,19.19999999999980,37.77000000000000,3559.4,503.37,17.559999999999900,34.040000000000000,4120.97,764.73,66.36999999999990,109.55000000000000,3853.47,763.62,50.75,89.84000000000000,3838.04,678.69,46.34000000000020,81.08999999999990,4050.58,594.06,39.45000000000030,61.29000000000010,3523.04,644.14,50.07999999999990,73.19000000000010,3031.96,643.41,57.48999999999980,92.92000000000010,3322.4,538.82,27.94999999999980,48.58999999999990,3438.67,512.98,20.42999999999980,36.53000000000000,3736.15,554.83,22.73000000000000,49.069999999999900,2771.96,524.77,26.759999999999800,42.24000000000000,3912.7,832.25,17.640000000000300,16.790000000000000,3943.4,550.32,21.5,45.5,4369.16,556.32,19.26000000000020,42.80000000000000 -90,3725.6,696.19,41.88999999999990,100.55000000000000,3495.06,539.79,22.790000000000000,49.610000000000000,3862.25,797.15,75.57999999999990,65.01000000000000,4002.07,701.68,43.09999999999990,96.60000000000000,3710.39,625.69,33.43000000000030,63.16000000000000,3893.7,585.87,25.100000000000400,59.85000000000000,4023.54,552.14,31.21000000000000,45.40000000000000,4205.55,627.6,44.9399999999996,72.76000000000000,3811.08,508.49,19.20000000000030,37.77000000000000,3559.82,503.37,17.559999999999900,34.040000000000000,4126.54,764.24,66.98000000000050,109.75,3854.36,765.71,50.73999999999980,89.48000000000000,3836.51,679.32,46.33999999999970,81.08999999999990,4051.39,593.97,39.18000000000030,60.870000000000000,3522.56,645.67,50.07999999999990,73.18000000000010,3032.47,643.97,57.33000000000040,92.90000000000000,3321.8,538.8,27.94999999999980,48.58000000000000,3438.51,512.97,20.42999999999980,36.53000000000000,3735.51,554.72,22.729999999999600,49.069999999999900,2771.82,524.77,26.759999999999800,42.24000000000000,3917.03,834.82,17.649999999999600,16.790000000000000,3944.01,550.33,21.5,45.51000000000000,4369.16,556.29,19.26000000000020,42.80000000000010 -91,3725.08,696.44,41.88999999999990,100.56000000000000,3494.29,539.83,22.790000000000000,49.610000000000000,3865.79,799.27,75.57999999999990,65.01000000000000,4003.15,702.74,43.08999999999970,96.59000000000010,3709.73,625.91,33.440000000000100,63.15000000000000,3893.69,585.87,25.09999999999990,59.85000000000000,4023.79,552.3,31.19999999999980,45.48000000000000,4206.09,627.69,44.93000000000030,72.75,3811.43,508.56,19.20000000000030,37.77000000000000,3560.35,503.37,17.559999999999900,34.040000000000000,4132.11,763.76,67.59000000000020,109.94000000000000,3855.25,767.81,50.73999999999980,89.10000000000000,3834.98,679.95,46.32999999999990,81.07999999999990,4052.19,593.88,38.92000000000010,60.46000000000000,3522.08,647.19,50.07000000000020,73.18999999999990,3032.99,644.53,57.16000000000030,92.88,3321.2,538.78,27.95000000000030,48.58000000000000,3438.35,512.96,20.43000000000030,36.53000000000000,3734.87,554.62,22.73000000000000,49.059999999999900,2771.68,524.77,26.76000000000020,42.24000000000000,3921.37,837.39,17.640000000000300,16.790000000000000,3944.61,550.35,21.5,45.51000000000000,4369.16,556.26,19.26000000000020,42.80000000000000 -92,3724.57,696.7,41.88999999999990,100.55000000000000,3493.52,539.87,22.790000000000000,49.610000000000000,3869.33,801.38,75.57999999999990,65.02000000000000,4004.22,703.79,43.10000000000040,96.59000000000010,3709.07,626.12,33.440000000000100,63.16000000000000,3893.68,585.87,25.100000000000400,59.85000000000000,4024.03,552.47,31.20999999999960,45.54000000000000,4206.62,627.77,44.94000000000050,72.76000000000000,3811.78,508.63,19.19999999999980,37.77000000000000,3560.88,503.37,17.559999999999900,34.040000000000000,4137.88,766.11,67.59000000000020,109.94000000000000,3856.13,769.91,50.73999999999980,88.73000000000000,3833.44,680.58,46.34000000000020,81.07999999999990,4052.99,593.79,38.66000000000030,60.05000000000010,3521.6,648.72,50.07000000000020,73.18000000000000,3033.5,645.1,57.0,92.85000000000000,3320.6,538.75,27.95000000000030,48.59000000000000,3438.19,512.95,20.42999999999980,36.53000000000000,3734.23,554.51,22.73000000000000,49.07000000000010,2771.54,524.77,26.76000000000020,42.24000000000000,3924.39,840.11,17.65000000000010,16.780000000000000,3945.22,550.37,21.5,45.5,4369.15,556.24,19.26000000000020,42.79000000000000 -93,3724.05,696.96,41.88999999999990,100.55000000000000,3492.74,539.92,22.79000000000040,49.60000000000000,3872.86,803.5,75.58999999999970,65.01000000000000,4005.3,704.84,43.08999999999970,96.58999999999990,3708.42,626.34,33.42999999999980,63.16000000000000,3893.67,585.87,25.090000000000100,59.85000000000000,4024.27,552.63,31.2199999999998,45.620000000000000,4207.15,627.86,44.94000000000050,72.76000000000000,3812.13,508.7,19.19999999999980,37.77000000000000,3561.41,503.37,17.559999999999900,34.040000000000000,4143.66,768.46,67.59000000000020,109.94000000000000,3857.02,772.01,50.74000000000020,88.35000000000000,3831.91,681.2,46.32999999999990,81.08999999999990,4053.79,593.69,38.40000000000010,59.64000000000000,3521.12,650.24,50.07000000000020,73.18999999999990,3034.02,645.66,56.82999999999990,92.83000000000000,3320.0,538.73,27.94000000000010,48.59000000000000,3438.02,512.94,20.44000000000010,36.54000000000000,3733.59,554.4,22.73000000000000,49.07000000000010,2771.39,524.77,26.76000000000020,42.24000000000000,3927.42,842.82,17.65000000000010,16.780000000000000,3945.83,550.38,21.5,45.51000000000000,4369.15,556.21,19.26000000000020,42.79000000000000 -94,3723.54,697.21,41.88999999999990,100.56000000000000,3491.97,539.96,22.79000000000040,49.59999999999990,3876.4,805.61,75.58999999999970,65.02000000000000,4006.37,705.89,43.09999999999990,96.59000000000010,3707.76,626.56,33.42999999999980,63.15000000000010,3893.65,585.87,25.09999999999990,59.85000000000000,4024.51,552.79,31.229999999999600,45.700000000000000,4207.69,627.95,44.93000000000030,72.75,3812.48,508.77,19.19999999999980,37.77000000000000,3561.94,503.37,17.559999999999900,34.040000000000000,4149.43,770.81,67.59000000000020,109.94000000000000,3857.9,774.11,50.75,87.98000000000000,3831.11,682.44,46.33999999999970,81.07999999999990,4054.6,593.6,38.13000000000010,59.23000000000000,3520.64,651.77,50.07000000000020,73.18000000000010,3034.53,646.22,56.67999999999980,92.81000000000000,3319.39,538.71,27.95000000000030,48.58999999999990,3437.86,512.94,20.44000000000010,36.53000000000000,3732.95,554.29,22.73000000000000,49.07000000000010,2771.25,524.77,26.76000000000020,42.24000000000000,3930.45,845.53,17.65000000000010,16.780000000000000,3946.43,550.4,21.5,45.5,4369.15,556.18,19.26000000000020,42.80000000000010 -95,3723.02,697.47,41.88999999999990,100.55000000000000,3491.2,540.0,22.790000000000000,49.60000000000000,3877.75,806.95,75.59000000000020,65.01000000000000,4007.45,706.94,43.09000000000020,96.58999999999990,3707.1,626.77,33.43000000000030,63.16000000000000,3893.64,585.87,25.09999999999990,59.85000000000000,4024.76,552.96,31.229999999999600,45.76000000000000,4208.22,628.03,44.9399999999996,72.76000000000000,3812.83,508.84,19.20000000000030,37.77000000000000,3562.47,503.37,17.5600000000004,34.040000000000000,4155.2,773.16,67.60000000000040,109.94000000000000,3858.79,776.21,50.74000000000020,87.61000000000000,3830.31,683.67,46.34000000000020,81.09000000000000,4055.4,593.51,37.86999999999990,58.81000000000010,3520.15,653.29,50.07999999999990,73.19000000000010,3035.05,646.79,56.50999999999980,92.78000000000010,3318.79,538.69,27.94999999999980,48.58999999999990,3437.7,512.93,20.43000000000030,36.530000000000100,3732.31,554.19,22.73000000000000,49.059999999999900,2771.11,524.77,26.759999999999800,42.24000000000000,3933.48,848.24,17.65000000000010,16.780000000000000,3947.04,550.41,21.5,45.51000000000000,4369.15,556.15,19.26000000000020,42.80000000000010 -96,3722.51,697.73,41.88999999999990,100.55000000000000,3490.42,540.04,22.799999999999700,49.610000000000000,3879.1,808.28,75.59000000000020,65.01000000000000,4008.52,707.99,43.09999999999990,96.59000000000010,3707.52,626.99,33.42999999999980,63.15000000000000,3893.63,585.87,25.09999999999990,59.85000000000000,4025.0,553.12,31.23999999999980,45.84000000000000,4208.75,628.12,44.9399999999996,72.75,3813.18,508.91,19.20000000000030,37.769999999999900,3563.0,503.37,17.559999999999900,34.040000000000000,4160.98,775.51,67.59000000000020,109.95000000000000,3859.68,778.3,50.74000000000020,87.24000000000000,3829.52,684.91,46.32999999999990,81.08000000000000,4056.2,593.42,37.60000000000040,58.40000000000010,3519.67,654.82,50.07999999999990,73.18000000000000,3035.57,647.35,56.33999999999970,92.76,3318.19,538.67,27.94999999999980,48.59000000000000,3437.54,512.92,20.42999999999980,36.530000000000100,3731.67,554.08,22.73000000000000,49.069999999999900,2770.97,524.77,26.76000000000020,42.24000000000000,3936.51,850.95,17.649999999999600,16.780000000000000,3947.64,550.43,21.5,45.510000000000100,4369.15,556.12,19.25,42.80000000000000 -97,3721.99,697.98,41.89000000000030,100.56000000000000,3489.65,540.08,22.790000000000000,49.610000000000000,3880.45,809.61,75.59000000000020,65.02000000000000,4009.6,709.04,43.09000000000020,96.59000000000010,3707.94,627.21,33.42999999999980,63.15000000000000,3893.62,585.87,25.09999999999990,59.85000000000000,4025.24,553.28,31.24000000000020,45.92000000000010,4209.28,628.2,44.94000000000050,72.76000000000000,3813.53,508.97,19.19999999999980,37.77000000000000,3563.53,503.37,17.559999999999900,34.040000000000000,4166.75,777.86,67.60000000000040,109.95000000000000,3860.56,780.4,50.75,86.87,3828.72,686.14,46.34000000000020,81.09000000000000,4057.0,593.33,37.34000000000020,57.99000000000000,3519.19,656.34,50.07000000000020,73.18999999999990,3036.08,647.91,56.18000000000030,92.74,3317.59,538.65,27.94999999999980,48.59000000000000,3437.38,512.91,20.42999999999980,36.530000000000100,3731.03,553.97,22.73000000000000,49.069999999999900,2770.83,524.77,26.76000000000020,42.24000000000000,3939.54,853.66,17.65000000000010,16.790000000000100,3948.25,550.45,21.5,45.5,4369.14,556.09,19.25999999999930,42.80000000000000 -98,3721.48,698.24,41.88999999999990,100.55000000000000,3488.88,540.12,22.790000000000000,49.610000000000000,3881.8,810.95,75.58999999999970,65.01000000000000,4010.67,710.09,43.09999999999990,96.58999999999990,3708.36,627.42,33.42999999999980,63.16000000000010,3893.6,585.87,25.09999999999990,59.85000000000000,4025.48,553.45,31.25,45.99000000000000,4209.82,628.29,44.94000000000050,72.76000000000000,3813.88,509.04,19.19999999999980,37.769999999999900,3564.06,503.37,17.559999999999900,34.040000000000000,4172.53,780.21,67.59000000000020,109.95000000000000,3861.45,782.5,50.74000000000020,86.49000000000000,3827.92,687.37,46.34000000000020,81.09000000000000,4057.81,593.24,37.07000000000020,57.569999999999900,3518.71,657.87,50.07000000000020,73.18000000000000,3036.6,648.48,56.01000000000020,92.71000000000000,3316.99,538.63,27.95000000000030,48.59000000000000,3437.22,512.9,20.43000000000030,36.54000000000010,3730.39,553.86,22.73000000000000,49.069999999999900,2770.69,524.77,26.759999999999800,42.24000000000000,3942.57,856.38,17.649999999999600,16.780000000000000,3948.85,550.46,21.5,45.51000000000000,4369.14,556.07,19.25999999999930,42.79000000000000 -99,3720.98,698.46,41.88999999999990,100.55000000000000,3488.11,540.16,22.790000000000000,49.610000000000000,3883.15,812.28,75.58999999999970,65.01000000000000,4011.75,711.14,43.09000000000020,96.60000000000000,3708.78,627.64,33.42999999999980,63.15000000000000,3893.59,585.87,25.09999999999990,59.85000000000000,4025.73,553.61,31.25,46.059999999999900,4210.35,628.38,44.9399999999996,72.75,3814.23,509.11,19.19999999999980,37.77000000000000,3564.59,503.37,17.559999999999900,34.040000000000000,4178.3,782.57,67.59000000000020,109.94000000000000,3862.34,784.6,50.73999999999980,86.12,3827.13,688.61,46.32999999999990,81.08000000000000,4058.61,593.14,36.809999999999900,57.17000000000000,3518.23,659.4,50.07000000000020,73.18000000000010,3037.11,649.04,55.85999999999970,92.69000000000000,3316.39,538.61,27.95000000000030,48.58000000000000,3437.06,512.9,20.42999999999980,36.53000000000000,3729.75,553.76,22.73000000000000,49.06000000000010,2770.55,524.77,26.759999999999800,42.24000000000000,3945.6,859.09,17.65000000000010,16.780000000000000,3949.46,550.48,21.5,45.5,4369.14,556.04,19.25999999999930,42.79000000000010 -100,3720.49,698.68,41.89000000000030,100.56000000000000,3487.33,540.2,22.800000000000200,49.6099999999999,3884.5,813.61,75.59000000000020,65.02000000000000,4012.82,712.2,43.09999999999990,96.58999999999990,3709.19,627.85,33.440000000000100,63.16000000000000,3893.58,585.87,25.09999999999990,59.85000000000000,4025.97,553.77,31.26000000000020,46.14000000000000,4210.88,628.46,44.9399999999996,72.76000000000000,3814.58,509.18,19.20000000000030,37.77000000000000,3565.12,503.37,17.559999999999900,34.040000000000000,4184.08,784.92,67.59000000000020,109.94000000000000,3863.22,786.7,50.75,85.75,3826.33,689.84,46.34000000000020,81.08999999999990,4059.41,593.05,36.55000000000020,56.75,3517.75,660.92,50.07000000000020,73.18000000000010,3037.63,649.6,55.690000000000100,92.67000000000000,3315.79,538.58,27.94999999999980,48.58999999999990,3436.89,512.89,20.44000000000010,36.53000000000000,3729.11,553.65,22.73000000000000,49.06000000000010,2770.41,524.77,26.76000000000020,42.24000000000000,3948.63,861.8,17.65000000000010,16.780000000000100,3950.07,550.49,21.48999999999980,45.51000000000000,4369.14,556.01,19.25999999999930,42.80000000000000 -101,3719.99,698.9,41.89000000000030,100.56000000000000,3486.56,540.25,22.790000000000000,49.60000000000000,3885.85,814.95,75.59000000000020,65.01000000000000,4013.9,713.25,43.08999999999970,96.59000000000010,3709.61,628.07,33.440000000000100,63.16000000000000,3893.57,585.87,25.09999999999990,59.85000000000000,4026.21,553.94,31.270000000000000,46.20999999999990,4211.42,628.55,44.93000000000030,72.75,3814.93,509.25,19.20000000000030,37.77000000000000,3565.65,503.37,17.559999999999900,34.040000000000000,4189.85,787.27,67.58999999999920,109.94000000000000,3864.11,788.8,50.73999999999980,85.37,3825.53,691.08,46.33999999999970,81.07999999999990,4060.21,592.96,36.29000000000000,56.33999999999990,3517.26,662.45,50.07999999999990,73.18000000000000,3038.14,650.16,55.5300000000002,92.65000000000000,3315.19,538.56,27.94999999999980,48.59000000000000,3436.73,512.88,20.44000000000010,36.53000000000000,3729.25,553.6,22.73000000000000,49.059999999999900,2770.43,524.87,26.76000000000020,42.24000000000000,3951.66,864.51,17.65000000000010,16.780000000000000,3950.67,550.51,21.5,45.51000000000000,4369.13,555.98,19.26000000000020,42.80000000000000 -102,3719.5,699.12,41.88999999999990,100.56000000000000,3485.79,540.29,22.790000000000000,49.60000000000000,3887.2,816.28,75.59000000000020,65.01000000000000,4014.97,714.3,43.10000000000040,96.59000000000010,3710.03,628.29,33.4399999999996,63.15000000000010,3893.56,585.87,25.090000000000100,59.85000000000000,4026.45,554.1,31.2800000000002,46.28000000000000,4211.95,628.63,44.94000000000050,72.76000000000000,3815.28,509.32,19.19999999999980,37.77000000000000,3566.18,503.37,17.559999999999900,34.040000000000000,4195.62,789.62,67.60000000000040,109.94000000000000,3865.0,790.89,50.73999999999980,85.01000000000000,3824.74,692.31,46.33000000000040,81.09000000000000,4060.76,593.11,36.30999999999950,56.46000000000000,3516.78,663.97,50.07999999999990,73.18000000000000,3038.66,650.73,55.36000000000010,92.62,3314.59,538.54,27.94999999999980,48.59000000000000,3436.57,512.87,20.42999999999980,36.53000000000000,3729.38,553.54,22.73999999999980,49.07000000000010,2770.45,524.96,26.76000000000020,42.24000000000000,3949.69,866.65,17.65000000000010,16.780000000000000,3951.28,550.53,21.5,45.5,4369.13,555.95,19.26000000000020,42.80000000000000 -103,3719.01,699.34,41.88999999999990,100.56000000000000,3485.02,540.33,22.790000000000000,49.610000000000000,3888.55,817.61,75.58999999999970,65.02000000000000,4016.05,715.35,43.08999999999970,96.59000000000010,3710.45,628.5,33.440000000000100,63.16000000000000,3893.54,585.87,25.09999999999990,59.85000000000000,4026.69,554.26,31.279999999999700,46.360000000000000,4212.48,628.72,44.94000000000050,72.76000000000000,3815.1,509.37,19.20000000000030,37.77000000000000,3566.71,503.37,17.559999999999900,34.040000000000000,4197.85,790.21,67.58999999999920,109.95000000000000,3864.64,790.95,50.75,85.43999999999990,3823.94,693.54,46.34000000000020,81.09000000000000,4061.31,593.25,36.33000000000040,56.60000000000000,3516.3,665.5,50.06999999999970,73.18000000000000,3039.18,651.29,55.190000000000100,92.59000000000010,3313.99,538.52,27.94000000000010,48.59000000000000,3436.41,512.86,20.43000000000030,36.54000000000000,3729.52,553.49,22.74000000000020,49.069999999999900,2770.47,525.06,26.76000000000020,42.24000000000000,3947.73,868.79,17.65000000000010,16.780000000000100,3951.88,550.54,21.5,45.51000000000000,4369.13,555.92,19.26000000000020,42.80000000000010 -104,3718.51,699.56,41.88999999999990,100.56000000000000,3484.24,540.37,22.800000000000200,49.610000000000000,3889.9,818.95,75.58999999999970,65.01000000000000,4017.12,716.4,43.09999999999990,96.59000000000010,3710.87,628.72,33.440000000000100,63.16000000000000,3893.53,585.87,25.09999999999990,59.85000000000000,4026.94,554.43,31.279999999999700,46.430000000000100,4213.02,628.81,44.92999999999940,72.75,3814.93,509.41,19.19000000000010,37.769999999999900,3567.24,503.37,17.5600000000004,34.040000000000000,4200.07,790.81,67.59000000000020,109.94000000000000,3864.29,791.01,50.75,85.86000000000000,3823.14,694.78,46.34000000000020,81.08000000000000,4061.85,593.4,36.36000000000010,56.72000000000000,3515.82,667.02,50.06999999999970,73.18000000000010,3039.69,651.85,55.02999999999980,92.56999999999990,3313.38,538.5,27.94999999999980,48.59000000000000,3436.25,512.86,20.42999999999980,36.53000000000000,3729.66,553.44,22.73000000000000,49.069999999999900,2770.49,525.15,26.76000000000020,42.24000000000000,3945.77,870.93,17.65000000000010,16.780000000000100,3952.49,550.56,21.5,45.5,4369.13,555.9,19.26000000000020,42.79000000000010 -105,3718.02,699.79,41.88999999999990,100.55000000000000,3483.47,540.41,22.79000000000040,49.610000000000000,3891.25,820.28,75.59000000000020,65.01000000000000,4018.2,717.45,43.09000000000020,96.58999999999990,3711.29,628.94,33.42999999999980,63.15000000000000,3893.52,585.87,25.09999999999990,59.85000000000000,4027.18,554.59,31.290000000000000,46.5,4213.55,628.89,44.9399999999996,72.76000000000000,3814.75,509.46,19.19000000000010,37.77000000000000,3567.78,503.37,17.549999999999700,34.040000000000000,4202.29,791.4,67.59000000000020,109.94000000000000,3863.94,791.07,50.73999999999980,86.29000000000000,3822.35,696.01,46.32999999999990,81.09000000000000,4062.4,593.55,36.37999999999970,56.85000000000000,3515.34,668.55,50.06999999999970,73.18000000000010,3040.21,652.42,54.86999999999990,92.54000000000010,3312.78,538.48,27.94999999999980,48.59000000000000,3436.09,512.85,20.42999999999980,36.53000000000000,3729.8,553.39,22.73000000000000,49.06000000000010,2770.51,525.25,26.759999999999800,42.24000000000000,3943.81,873.07,17.639999999999900,16.780000000000000,3953.09,550.57,21.5,45.51000000000000,4369.13,555.87,19.25,42.79000000000000 -106,3717.52,700.01,41.88999999999990,100.55000000000000,3482.7,540.45,22.790000000000000,49.6099999999999,3892.6,821.61,75.59000000000020,65.02000000000000,4019.27,718.5,43.09999999999990,96.59000000000010,3711.71,629.15,33.42999999999980,63.16000000000000,3893.51,585.87,25.09999999999990,59.85000000000000,4027.42,554.75,31.299999999999700,46.58000000000000,4214.08,628.98,44.94000000000050,72.75,3814.57,509.51,19.19999999999980,37.77000000000000,3568.31,503.37,17.550000000000200,34.040000000000000,4204.51,791.99,67.59999999999950,109.95000000000000,3863.59,791.12,50.73999999999980,86.73000000000000,3821.55,697.25,46.33999999999970,81.08000000000000,4062.95,593.7,36.40000000000060,56.96999999999990,3515.68,669.59,50.08000000000040,73.18000000000000,3040.72,652.98,54.71000000000000,92.52000000000000,3312.18,538.46,27.95000000000030,48.58999999999990,3435.93,512.84,20.43000000000030,36.53000000000000,3729.94,553.34,22.73000000000000,49.059999999999900,2770.53,525.34,26.759999999999800,42.24000000000000,3941.84,875.2,17.649999999999600,16.780000000000000,3953.7,550.59,21.5,45.51000000000000,4369.12,555.84,19.26000000000020,42.80000000000000 -107,3717.03,700.23,41.88999999999990,100.55000000000000,3481.92,540.49,22.799999999999700,49.610000000000000,3893.95,822.95,75.59000000000020,65.01000000000000,4020.35,719.55,43.09000000000020,96.59000000000010,3712.13,629.37,33.42999999999980,63.16000000000000,3893.49,585.87,25.100000000000400,59.85000000000000,4027.66,554.92,31.309999999999900,46.65000000000010,4214.62,629.06,44.93000000000030,72.7600000000001,3814.39,509.55,19.20000000000030,37.77000000000000,3568.84,503.37,17.549999999999700,34.040000000000000,4206.74,792.59,67.59000000000020,109.94000000000000,3863.24,791.18,50.74000000000020,87.16000000000010,3820.75,698.48,46.34000000000020,81.09000000000000,4063.49,593.84,36.43000000000030,57.110000000000000,3516.03,670.63,50.06999999999970,73.18000000000000,3041.24,653.54,54.54000000000040,92.5,3311.58,538.44,27.95000000000030,48.57999999999990,3435.76,512.83,20.4399999999996,36.53000000000000,3730.07,553.28,22.73999999999980,49.07000000000010,2770.55,525.43,26.759999999999800,42.24000000000000,3939.88,877.34,17.65000000000010,16.780000000000000,3954.3,550.6,21.5,45.51000000000000,4369.12,555.81,19.26000000000020,42.80000000000010 -108,3716.54,700.45,41.88000000000010,100.55000000000000,3481.15,540.54,22.790000000000000,49.60000000000000,3895.3,824.28,75.58999999999970,65.01000000000000,4021.42,720.6,43.09999999999990,96.59000000000010,3712.55,629.59,33.42999999999980,63.15000000000000,3893.48,585.87,25.09999999999990,59.85000000000000,4027.91,555.08,31.300000000000200,46.71999999999990,4215.15,629.15,44.94000000000050,72.76000000000000,3814.22,509.6,19.19000000000010,37.77000000000000,3569.37,503.37,17.550000000000200,34.040000000000000,4208.96,793.18,67.59000000000020,109.95000000000000,3862.89,791.24,50.74000000000020,87.58000000000000,3819.96,699.71,46.32999999999990,81.08999999999990,4064.04,593.99,36.44999999999980,57.23000000000000,3516.37,671.67,50.07999999999990,73.18000000000010,3041.76,654.11,54.36999999999990,92.47000000000000,3310.98,538.42,27.94999999999980,48.58000000000000,3435.6,512.82,20.44000000000010,36.53000000000000,3730.21,553.23,22.73999999999980,49.069999999999900,2770.57,525.53,26.759999999999800,42.24000000000000,3932.55,879.46,17.730000000000000,16.890000000000000,3954.91,550.62,21.5,45.51000000000000,4369.12,555.78,19.26000000000020,42.80000000000010 -109,3716.04,700.67,41.88999999999990,100.55000000000000,3480.38,540.58,22.790000000000000,49.59999999999990,3896.65,825.61,75.58999999999970,65.02000000000000,4022.5,721.65,43.09000000000020,96.60000000000000,3712.96,629.8,33.440000000000100,63.16000000000010,3893.47,585.87,25.100000000000400,59.85000000000000,4028.15,555.24,31.309999999999900,46.80000000000000,4215.68,629.24,44.9399999999996,72.75,3814.04,509.65,19.19000000000010,37.77000000000000,3569.9,503.37,17.549999999999700,34.040000000000000,4211.18,793.78,67.59000000000020,109.94000000000000,3862.54,791.3,50.74000000000020,88.01000000000000,3819.16,700.95,46.34000000000020,81.07999999999990,4064.58,594.14,36.48000000000050,57.360000000000000,3516.72,672.71,50.07000000000020,73.18000000000000,3042.27,654.67,54.21000000000000,92.45000000000010,3310.38,538.39,27.94999999999980,48.59000000000000,3435.44,512.82,20.42999999999980,36.53000000000000,3730.35,553.18,22.73000000000000,49.07000000000010,2770.58,525.62,26.76000000000020,42.24000000000000,3925.21,881.58,17.820000000000200,17.0,3955.52,550.64,21.5,45.5,4369.12,555.75,19.26000000000020,42.80000000000000 -110,3715.55,700.89,41.88999999999990,100.55000000000000,3479.61,540.62,22.790000000000000,49.610000000000000,3898.0,826.95,75.59000000000020,65.01000000000000,4023.57,722.71,43.09999999999990,96.58999999999990,3713.38,630.02,33.440000000000100,63.16000000000000,3893.46,585.87,25.09999999999990,59.85000000000000,4028.39,555.41,31.320000000000200,46.870000000000000,4216.22,629.32,44.92999999999940,72.76000000000000,3813.86,509.69,19.19000000000010,37.77000000000000,3570.43,503.37,17.550000000000200,34.040000000000000,4213.4,794.37,67.60000000000040,109.94000000000000,3862.19,791.35,50.73999999999980,88.44999999999990,3818.36,702.18,46.33999999999970,81.09000000000000,4065.13,594.29,36.5,57.48000000000000,3517.06,673.75,50.07999999999990,73.18000000000000,3042.79,655.23,54.04000000000000,92.43000000000000,3309.78,538.37,27.94999999999980,48.59000000000000,3435.28,512.81,20.42999999999980,36.530000000000100,3730.49,553.13,22.73000000000000,49.06000000000010,2770.6,525.72,26.76000000000020,42.24000000000000,3917.88,883.69,17.90000000000010,17.11999999999990,3956.12,550.65,21.5,45.51000000000000,4369.12,555.73,19.25,42.79000000000000 -111,3715.05,701.11,41.88999999999990,100.56000000000000,3478.83,540.66,22.800000000000200,49.610000000000000,3899.35,828.28,75.59000000000020,65.01000000000000,4024.65,723.76,43.08999999999970,96.59000000000010,3713.8,630.24,33.4399999999996,63.15000000000000,3893.45,585.87,25.090000000000100,59.85000000000000,4028.63,555.57,31.329999999999900,46.94999999999990,4216.75,629.41,44.9399999999996,72.75,3813.68,509.74,19.20000000000030,37.77000000000000,3570.96,503.37,17.550000000000200,34.040000000000000,4215.63,794.96,67.59000000000020,109.95000000000000,3861.83,791.41,50.75,88.88,3817.57,703.41,46.32999999999990,81.09000000000000,4065.68,594.43,36.50999999999980,57.620000000000000,3517.41,674.79,50.07000000000020,73.19000000000010,3043.3,655.79,53.88999999999990,92.41000000000010,3309.18,538.35,27.95000000000030,48.59000000000000,3435.12,512.8,20.43000000000030,36.530000000000100,3730.63,553.07,22.73000000000000,49.069999999999900,2770.62,525.81,26.76000000000020,42.24000000000000,3910.54,885.81,17.990000000000200,17.230000000000000,3956.73,550.67,21.5,45.5,4369.11,555.7,19.26000000000020,42.79000000000000 -112,3713.61,702.29,41.88999999999990,100.55000000000000,3478.06,540.7,22.790000000000000,49.6099999999999,3900.7,829.61,75.59000000000020,65.02000000000000,4025.72,724.81,43.10000000000040,96.59000000000010,3714.22,630.45,33.440000000000100,63.16000000000000,3893.43,585.87,25.100000000000400,59.85000000000000,4028.88,555.73,31.329999999999900,47.02000000000000,4217.28,629.49,44.94000000000050,72.76000000000000,3813.5,509.79,19.19999999999980,37.769999999999900,3571.49,503.37,17.550000000000200,34.040000000000000,4217.85,795.56,67.58999999999920,109.94000000000000,3861.48,791.47,50.73999999999980,89.30000000000000,3816.77,704.65,46.34000000000020,81.09000000000000,4066.22,594.58,36.54000000000040,57.74000000000000,3517.75,675.83,50.07999999999990,73.18999999999990,3042.71,656.29,53.7199999999998,92.39,3308.58,538.33,27.94000000000010,48.58999999999990,3434.96,512.79,20.42999999999980,36.530000000000100,3730.76,553.02,22.73999999999980,49.07000000000010,2770.64,525.91,26.76000000000020,42.24000000000000,3906.65,887.81,18.06999999999970,17.350000000000000,3957.33,550.68,21.5,45.510000000000100,4369.11,555.67,19.26000000000020,42.80000000000010 -113,3712.17,703.46,41.88999999999990,100.56000000000000,3477.29,540.74,22.790000000000000,49.610000000000000,3902.05,830.95,75.58999999999970,65.01000000000000,4026.8,725.86,43.08999999999970,96.59000000000010,3714.64,630.67,33.440000000000100,63.15000000000010,3893.42,585.87,25.09999999999990,59.85000000000000,4029.12,555.9,31.340000000000100,47.09000000000000,4217.82,629.58,44.93000000000030,72.76000000000000,3813.33,509.83,19.19000000000010,37.77000000000000,3572.02,503.37,17.559999999999900,34.040000000000000,4220.07,796.15,67.59000000000020,109.95000000000000,3861.13,791.53,50.73999999999980,89.73000000000000,3815.98,705.88,46.32999999999990,81.09000000000000,4066.77,594.73,36.559999999999900,57.870000000000000,3518.1,676.87,50.07000000000020,73.18999999999990,3042.12,656.79,53.559999999999900,92.36,3307.25,538.31,27.94999999999980,48.59000000000000,3434.8,512.78,20.42999999999980,36.53000000000000,3730.9,552.97,22.73999999999980,49.069999999999900,2770.66,526.0,26.76000000000020,42.24000000000000,3902.75,889.82,18.15000000000010,17.459999999999900,3957.94,550.7,21.5,45.51000000000000,4369.11,555.64,19.26000000000020,42.80000000000010 -114,3710.73,704.64,41.88999999999990,100.55000000000000,3476.52,540.78,22.790000000000000,49.610000000000000,3901.55,830.28,74.86999999999990,66.37,4027.87,726.91,43.09999999999990,96.59000000000010,3715.06,630.89,33.42999999999980,63.15000000000000,3893.41,585.87,25.100000000000400,59.85000000000000,4029.36,556.06,31.33999999999970,47.17000000000010,4218.35,629.67,44.9399999999996,72.75,3813.15,509.88,19.19000000000010,37.77000000000000,3572.55,503.37,17.559999999999900,34.040000000000000,4222.29,796.75,67.60000000000040,109.94000000000000,3860.78,791.58,50.73999999999980,90.17000000000000,3815.18,707.12,46.33000000000040,81.08000000000000,4067.31,594.88,36.58999999999970,57.99000000000000,3518.44,677.92,50.07999999999990,73.18000000000010,3041.54,657.29,53.38999999999990,92.34000000000010,3305.93,538.29,27.95000000000030,48.59000000000000,3434.64,512.78,20.43000000000030,36.53000000000000,3731.04,552.92,22.73000000000000,49.06000000000010,2770.68,526.09,26.76000000000020,42.24000000000000,3898.86,891.83,18.23000000000000,17.569999999999900,3958.54,550.72,21.5,45.5,4369.11,555.61,19.26000000000020,42.80000000000000 -115,3709.29,705.82,41.88999999999990,100.55000000000000,3475.74,540.83,22.800000000000200,49.59999999999990,3901.05,829.61,74.13999999999990,67.73000000000000,4028.95,727.96,43.09000000000020,96.58999999999990,3715.48,631.1,33.42999999999980,63.16000000000000,3893.4,585.87,25.08999999999970,59.85000000000000,4029.6,556.22,31.34999999999990,47.24000000000000,4218.88,629.75,44.9399999999996,72.76000000000000,3812.97,509.93,19.20000000000030,37.77000000000000,3573.08,503.37,17.559999999999900,34.040000000000000,4224.52,797.34,67.58999999999920,109.94000000000000,3860.43,791.64,50.74000000000020,90.60000000000000,3814.38,708.35,46.33999999999970,81.09000000000000,4067.86,595.02,36.61000000000010,58.13,3518.79,678.96,50.07000000000020,73.18000000000000,3040.95,657.79,53.220000000000300,92.31000000000010,3304.61,538.27,27.94999999999980,48.59000000000000,3434.47,512.77,20.44000000000010,36.53000000000000,3731.18,552.87,22.73000000000000,49.059999999999900,2770.7,526.19,26.76000000000020,42.239999999999900,3894.96,893.83,18.320000000000200,17.68999999999990,3959.15,550.73,21.5,45.51000000000000,4369.1,555.58,19.25999999999930,42.80000000000000 -116,3707.84,706.99,41.88999999999990,100.56000000000000,3474.97,540.87,22.79000000000040,49.60000000000000,3900.55,828.93,73.41999999999960,69.09000000000000,4030.02,729.01,43.09999999999990,96.59000000000010,3715.9,631.32,33.42999999999980,63.15000000000000,3893.38,585.87,25.09999999999990,59.85000000000000,4029.85,556.39,31.34999999999990,47.31000000000010,4219.42,629.84,44.93000000000030,72.75,3812.79,509.98,19.19999999999980,37.77000000000000,3572.98,503.39,17.550000000000200,34.040000000000000,4226.74,797.93,67.59000000000020,109.95000000000000,3860.08,791.7,50.74000000000020,91.02000000000000,3813.59,709.58,46.32999999999990,81.08999999999990,4068.41,595.17,36.63000000000010,58.25,3519.13,680.0,50.07999999999990,73.18000000000000,3040.36,658.29,53.059999999999900,92.29000000000010,3303.28,538.25,27.94999999999980,48.58000000000000,3434.31,512.76,20.44000000000010,36.53000000000000,3731.32,552.81,22.73000000000000,49.07000000000010,2770.72,526.28,26.76000000000020,42.24000000000000,3891.07,895.84,18.39999999999960,17.790000000000000,3959.76,550.75,21.48999999999980,45.5,4369.1,555.56,19.25999999999930,42.79000000000010 -117,3706.4,708.17,41.88999999999990,100.55000000000000,3474.2,540.91,22.790000000000000,49.610000000000000,3900.05,828.26,72.69999999999980,70.45000000000010,4031.1,730.06,43.09000000000020,96.59000000000010,3716.32,631.54,33.42999999999980,63.15000000000010,3893.37,585.87,25.09999999999990,59.85000000000000,4029.74,556.47,31.350000000000400,47.319999999999900,4219.95,629.92,44.94000000000050,72.76000000000000,3812.62,510.02,19.19000000000010,37.77000000000000,3572.87,503.41,17.559999999999900,34.04000000000000,4228.96,798.53,67.59000000000020,109.94000000000000,3859.73,791.76,50.73999999999980,91.45000000000010,3812.79,710.82,46.32999999999990,81.08999999999990,4068.95,595.32,36.659999999999900,58.370000000000000,3519.48,681.04,50.07000000000020,73.18000000000010,3039.77,658.79,52.90000000000010,92.27000000000000,3301.96,538.23,27.94999999999980,48.57999999999990,3434.15,512.75,20.42999999999980,36.53000000000000,3731.46,552.76,22.73000000000000,49.07000000000010,2770.74,526.38,26.76000000000020,42.24000000000000,3887.17,897.84,18.48999999999980,17.910000000000000,3960.36,550.76,21.5,45.51000000000000,4369.1,555.53,19.25999999999930,42.79000000000010 -118,3704.96,709.34,41.88999999999990,100.56000000000000,3473.43,540.95,22.790000000000000,49.6099999999999,3899.56,827.59,71.97000000000030,71.81000000000000,4032.17,731.11,43.09999999999990,96.60000000000000,3716.73,631.75,33.440000000000100,63.16000000000000,3893.36,585.87,25.09999999999990,59.85000000000000,4029.63,556.56,31.35999999999970,47.31000000000010,4220.48,630.01,44.94000000000050,72.76000000000000,3812.44,510.07,19.19000000000010,37.77000000000000,3572.77,503.44,17.559999999999900,34.04000000000000,4226.72,798.95,67.59000000000020,109.94000000000000,3859.37,791.81,50.75,91.8900000000001,3811.24,711.13,46.33000000000040,81.08000000000000,4069.5,595.47,36.68000000000030,58.5,3519.83,682.08,50.07000000000020,73.18000000000000,3039.18,659.29,52.73000000000000,92.24,3300.64,538.2,27.95000000000030,48.58999999999990,3433.99,512.74,20.43000000000030,36.53000000000000,3731.59,552.71,22.73999999999980,49.069999999999900,2770.76,526.47,26.759999999999800,42.24000000000000,3883.28,899.85,18.56999999999970,18.020000000000000,3960.97,550.78,21.5,45.51000000000000,4369.1,555.5,19.25999999999930,42.80000000000000 -119,3703.52,710.52,41.88999999999990,100.55000000000000,3472.65,540.99,22.790000000000000,49.610000000000000,3899.06,826.92,71.25,73.17000000000010,4033.25,732.17,43.09000000000020,96.59000000000010,3717.15,631.97,33.440000000000100,63.15000000000000,3893.35,585.87,25.09999999999990,59.85000000000000,4029.53,556.65,31.34999999999990,47.31000000000010,4221.01,630.1,44.9399999999996,72.75,3812.26,510.12,19.19999999999980,37.77000000000000,3572.67,503.46,17.549999999999700,34.04000000000000,4224.48,799.37,67.59000000000020,109.95000000000000,3859.02,791.87,50.75,92.32000000000000,3809.68,711.43,46.34000000000020,81.09000000000000,4070.05,595.61,36.69999999999980,58.63,3520.17,683.12,50.06999999999970,73.18000000000000,3038.59,659.79,52.56999999999970,92.22000000000000,3299.32,538.18,27.94000000000010,48.59000000000000,3433.83,512.73,20.43000000000030,36.54000000000000,3731.73,552.66,22.73999999999980,49.06000000000010,2770.78,526.57,26.759999999999800,42.239999999999900,3879.38,901.85,18.65000000000010,18.140000000000000,3961.57,550.8,21.5,45.5,4369.1,555.47,19.25,42.80000000000000 -120,3702.08,711.7,41.88999999999990,100.55000000000000,3471.88,541.03,22.790000000000000,49.610000000000000,3898.56,826.25,70.5300000000002,74.53000000000000,4033.74,733.04,44.17000000000010,96.95000000000010,3717.57,632.18,33.440000000000100,63.16000000000010,3893.34,585.87,25.08999999999970,59.85000000000000,4029.42,556.73,31.360000000000100,47.319999999999900,4221.55,630.18,44.92999999999940,72.7600000000001,3812.08,510.16,19.20000000000030,37.769999999999900,3572.56,503.48,17.559999999999900,34.040000000000000,4222.24,799.79,67.59000000000020,109.95000000000000,3858.67,791.93,50.73999999999980,92.74,3808.13,711.74,46.32999999999990,81.09000000000000,4070.59,595.76,36.72999999999960,58.76000000000000,3520.52,684.16,50.07000000000020,73.19000000000010,3038.0,660.28,52.409999999999900,92.20000000000010,3297.99,538.16,27.95000000000030,48.59000000000000,3433.67,512.73,20.42999999999980,36.53000000000000,3731.87,552.6,22.73000000000000,49.069999999999900,2770.8,526.66,26.759999999999800,42.24000000000000,3875.49,903.86,18.73000000000000,18.25,3962.18,550.81,21.5,45.510000000000100,4369.09,555.44,19.26000000000020,42.80000000000000 -121,3700.63,712.87,41.88999999999990,100.56000000000000,3471.11,541.07,22.790000000000000,49.6099999999999,3898.06,825.58,69.81000000000000,75.88,4034.23,733.92,45.23999999999980,97.30000000000010,3718.21,632.23,33.570000000000200,63.24000000000000,3893.32,585.87,25.09999999999990,59.85000000000000,4029.32,556.82,31.34999999999990,47.309999999999900,4222.08,630.27,44.94000000000050,72.75,3812.18,510.24,19.19000000000010,37.77000000000000,3572.46,503.51,17.559999999999900,34.040000000000000,4220.0,800.22,67.60000000000040,109.94000000000000,3858.32,791.99,50.73999999999980,93.17000000000000,3806.57,712.05,46.33999999999970,81.09000000000000,4071.14,595.91,36.750000000000500,58.88,3520.86,685.2,50.06999999999970,73.18999999999990,3037.41,660.78,52.24000000000020,92.18000000000010,3296.67,538.14,27.94999999999980,48.59000000000000,3433.51,512.72,20.42999999999980,36.53000000000000,3732.01,552.55,22.729999999999600,49.07000000000010,2770.82,526.75,26.759999999999800,42.24000000000000,3871.59,905.87,18.81999999999970,18.360000000000000,3962.37,550.94,21.5,45.5,4369.09,555.41,19.26000000000020,42.80000000000010 -122,3699.19,714.05,41.88999999999990,100.55000000000000,3470.33,541.12,22.800000000000200,49.60000000000000,3897.56,824.91,69.09000000000020,77.24000000000000,4034.72,734.79,46.32000000000020,97.67000000000010,3718.85,632.28,33.690000000000100,63.32000000000010,3893.31,585.87,25.09999999999990,59.85000000000000,4029.21,556.91,31.360000000000100,47.31000000000010,4222.61,630.35,44.94000000000050,72.76000000000000,3812.27,510.31,19.19000000000010,37.77000000000000,3572.36,503.53,17.549999999999700,34.04000000000010,4217.76,800.64,67.59999999999950,109.94000000000000,3857.97,792.04,50.74000000000020,93.61,3805.02,712.36,46.34000000000020,81.09000000000000,4071.68,596.06,36.7800000000002,59.010000000000100,3521.21,686.24,50.07000000000020,73.18999999999990,3036.82,661.28,52.07999999999990,92.15000000000000,3295.35,538.12,27.95000000000030,48.59000000000000,3433.34,512.71,20.44000000000010,36.53000000000000,3732.15,552.5,22.73000000000000,49.07000000000010,2770.84,526.85,26.759999999999800,42.24000000000000,3867.69,907.87,18.90999999999990,18.48000000000000,3962.56,551.06,21.5,45.510000000000100,4369.09,555.39,19.26000000000020,42.79000000000000 -123,3697.75,715.22,41.88999999999990,100.56000000000000,3469.56,541.16,22.790000000000000,49.60000000000000,3897.06,824.24,68.36999999999990,78.60000000000000,4035.22,735.67,47.39000000000030,98.0200000000001,3719.49,632.33,33.820000000000200,63.40000000000000,3893.3,585.87,25.09999999999990,59.85000000000000,4029.11,556.99,31.34999999999990,47.319999999999900,4223.15,630.44,44.93000000000030,72.76000000000000,3812.36,510.39,19.19999999999980,37.77000000000000,3572.25,503.55,17.559999999999900,34.04000000000000,4215.52,801.06,67.59999999999950,109.94000000000000,3857.62,792.1,50.74000000000020,94.04000000000000,3803.47,712.67,46.33000000000040,81.08000000000000,4072.23,596.2,36.79999999999970,59.14000000000000,3521.55,687.28,50.06999999999970,73.19000000000010,3036.23,661.78,51.92000000000010,92.13,3294.02,538.1,27.94999999999980,48.59000000000000,3433.18,512.7,20.44000000000010,36.53000000000000,3732.28,552.45,22.73999999999980,49.059999999999900,2770.86,526.94,26.759999999999800,42.239999999999900,3863.8,909.88,18.98999999999980,18.58000000000000,3962.75,551.19,21.5,45.51000000000000,4369.09,555.36,19.26000000000020,42.79000000000000 -124,3696.31,716.4,41.88999999999990,100.55000000000000,3468.79,541.2,22.790000000000000,49.59999999999990,3896.56,823.57,67.65000000000010,79.95999999999990,4035.71,736.54,48.46000000000000,98.39,3720.13,632.38,33.94999999999980,63.48000000000000,3893.29,585.87,25.090000000000100,59.85000000000000,4029.0,557.08,31.34999999999990,47.309999999999900,4223.68,630.53,44.9399999999996,72.75,3812.46,510.47,19.19000000000010,37.77000000000000,3572.15,503.57,17.559999999999900,34.04000000000000,4213.28,801.48,67.60000000000040,109.95000000000000,3857.27,792.16,50.74000000000020,94.46000000000000,3801.91,712.98,46.34000000000020,81.07999999999990,4072.78,596.35,36.82000000000020,59.27000000000000,3521.9,688.33,50.06999999999970,73.18000000000000,3035.64,662.28,51.76000000000020,92.11,3294.49,538.18,27.95000000000030,48.58000000000000,3433.02,512.69,20.42999999999980,36.54000000000000,3732.42,552.4,22.73999999999980,49.06000000000010,2770.88,527.04,26.759999999999800,42.24000000000000,3859.9,911.88,19.079999999999900,18.700000000000000,3962.94,551.32,21.5,45.5,4369.08,555.33,19.26000000000020,42.80000000000000 -125,3694.87,717.58,41.89000000000030,100.55000000000000,3468.02,541.24,22.790000000000000,49.610000000000000,3896.06,822.9,66.92999999999980,81.32000000000010,4036.2,737.42,49.54000000000000,98.74,3720.77,632.43,34.07999999999990,63.56000000000010,3893.27,585.87,25.09999999999990,59.85000000000000,4028.89,557.17,31.360000000000100,47.31000000000010,4224.21,630.61,44.9399999999996,72.76000000000000,3812.55,510.54,19.1899999999996,37.769999999999900,3572.05,503.6,17.559999999999900,34.040000000000000,4211.04,801.9,67.60000000000040,109.95000000000000,3856.83,792.22,50.74000000000020,94.89,3800.36,713.28,46.33999999999970,81.09000000000000,4073.32,596.5,36.84999999999990,59.39000000000000,3522.24,689.37,50.07000000000020,73.18000000000000,3035.05,662.78,51.58999999999970,92.08000000000000,3294.96,538.25,27.94999999999980,48.59000000000000,3432.86,512.69,20.42999999999980,36.53000000000000,3732.56,552.34,22.73000000000000,49.069999999999900,2770.9,527.13,26.759999999999800,42.24000000000000,3856.01,913.89,19.14999999999960,18.81000000000010,3963.13,551.44,21.5,45.51000000000000,4369.08,555.3,19.26000000000020,42.80000000000010 -126,3693.43,718.75,41.89000000000030,100.56000000000000,3467.24,541.28,22.800000000000200,49.610000000000000,3895.57,822.23,66.19999999999980,82.67000000000000,4036.69,738.29,50.61999999999990,99.10000000000000,3721.41,632.48,34.21000000000000,63.64000000000000,3893.26,585.87,25.09999999999990,59.85000000000000,4028.79,557.25,31.34999999999990,47.32000000000010,4224.75,630.7,44.93000000000030,72.75,3812.64,510.62,19.20000000000030,37.77000000000000,3571.94,503.62,17.559999999999900,34.040000000000000,4208.81,802.33,67.58999999999920,109.94000000000000,3856.4,792.27,50.73999999999980,95.33000000000000,3798.81,713.59,46.32999999999990,81.08999999999990,4073.87,596.65,36.86999999999990,59.52000000000000,3522.59,690.41,50.06999999999970,73.18000000000010,3034.47,663.28,51.42000000000010,92.06000000000010,3295.43,538.33,27.95000000000030,48.58999999999990,3432.7,512.68,20.43000000000030,36.530000000000100,3732.7,552.29,22.73000000000000,49.07000000000010,2770.92,527.23,26.759999999999800,42.24000000000000,3852.11,915.89,19.23999999999980,18.930000000000100,3963.32,551.57,21.48999999999980,45.51000000000000,4369.08,555.27,19.26000000000020,42.80000000000010 -127,3691.98,719.93,41.88999999999990,100.55000000000000,3466.47,541.32,22.79000000000040,49.6099999999999,3895.07,821.56,65.48000000000000,84.03000000000010,4037.18,739.17,51.690000000000100,99.46000000000000,3722.05,632.53,34.33999999999970,63.72000000000000,3893.25,585.87,25.09999999999990,59.85000000000000,4028.68,557.34,31.360000000000100,47.309999999999900,4225.28,630.78,44.94000000000050,72.76000000000000,3812.73,510.69,19.19999999999980,37.77000000000000,3571.84,503.64,17.559999999999900,34.040000000000000,4206.57,802.75,67.59000000000020,109.94000000000000,3855.96,792.33,50.73999999999980,95.76,3797.25,713.9,46.34000000000020,81.09000000000000,4074.41,596.79,36.90000000000060,59.65000000000010,3522.93,691.45,50.07000000000020,73.18000000000000,3033.88,663.78,51.25999999999980,92.03000000000000,3295.9,538.41,27.94999999999980,48.59000000000000,3432.54,512.67,20.42999999999980,36.530000000000100,3732.84,552.24,22.73000000000000,49.069999999999900,2770.94,527.32,26.759999999999800,42.239999999999900,3848.22,917.9,19.320000000000200,19.04000000000010,3963.51,551.7,21.48999999999980,45.5,4369.08,555.24,19.26000000000020,42.80000000000000 -128,3690.54,721.1,41.88999999999990,100.56000000000000,3465.7,541.36,22.790000000000000,49.610000000000000,3894.57,820.89,64.75999999999980,85.39000000000000,4037.68,740.04,52.76000000000020,99.82000000000000,3722.69,632.57,34.4699999999998,63.809999999999900,3893.24,585.87,25.100000000000400,59.85000000000000,4028.58,557.43,31.34999999999990,47.31000000000010,4225.81,630.87,44.9399999999996,72.76000000000000,3812.83,510.77,19.19000000000010,37.77000000000000,3571.74,503.66,17.5600000000004,34.04000000000000,4204.33,803.17,67.59000000000020,109.94000000000000,3855.53,792.39,50.73999999999980,96.18000000000010,3795.7,714.21,46.33000000000040,81.08999999999990,4074.96,596.94,36.92000000000010,59.78000000000000,3521.88,692.04,50.00999999999980,73.63,3033.29,664.28,51.09000000000020,92.01,3296.37,538.49,27.95000000000030,48.59000000000000,3432.38,512.66,20.42999999999980,36.530000000000100,3732.98,552.19,22.73000000000000,49.059999999999900,2770.96,527.41,26.759999999999800,42.24000000000000,3844.32,919.91,19.40999999999990,19.150000000000000,3963.7,551.82,21.49000000000020,45.51000000000000,4369.08,555.22,19.25,42.79000000000000 -129,3689.1,722.28,41.88999999999990,100.55000000000000,3464.93,541.41,22.790000000000000,49.60000000000000,3894.07,820.22,64.04000000000000,86.75,4038.17,740.92,53.82999999999990,100.18000000000000,3723.33,632.62,34.590000000000100,63.89000000000000,3893.23,585.87,25.090000000000100,59.85000000000000,4028.47,557.51,31.360000000000100,47.32000000000010,4226.35,630.96,44.92999999999940,72.75,3812.92,510.84,19.19000000000010,37.77000000000000,3571.64,503.69,17.550000000000200,34.04000000000000,4202.09,803.59,67.59000000000020,109.95000000000000,3855.09,792.45,50.73999999999980,96.6099999999999,3794.14,714.52,46.34000000000020,81.08000000000000,4075.51,597.09,36.9399999999996,59.90000000000000,3520.83,692.63,49.95000000000030,74.09000000000000,3032.7,664.77,50.93000000000030,91.99,3296.84,538.57,27.94999999999980,48.58999999999990,3432.21,512.65,20.44000000000010,36.54000000000010,3733.11,552.13,22.73999999999980,49.07000000000010,2770.98,527.51,26.759999999999800,42.24000000000000,3839.95,922.31,19.49000000000020,19.27000000000010,3963.88,551.95,21.5,45.51000000000000,4369.07,555.19,19.26000000000020,42.79000000000000 -130,3687.66,723.46,41.89000000000030,100.55000000000000,3464.15,541.45,22.799999999999700,49.59999999999990,3893.57,819.54,63.31999999999970,88.12,4038.66,741.8,54.91000000000030,100.53000000000000,3723.97,632.67,34.720000000000300,63.97000000000000,3893.21,585.87,25.09999999999990,59.85000000000000,4028.37,557.6,31.34999999999990,47.309999999999900,4226.88,631.04,44.9399999999996,72.76000000000000,3813.01,510.92,19.19999999999980,37.77000000000000,3571.53,503.71,17.559999999999900,34.04000000000000,4199.85,804.01,67.58999999999920,109.95000000000000,3854.66,792.5,50.74000000000020,97.05000000000000,3792.59,714.83,46.33999999999970,81.07999999999990,4076.05,597.24,36.96000000000000,60.03000000000000,3519.78,693.22,49.87999999999970,74.54000000000000,3032.11,665.27,50.77000000000000,91.97000000000000,3297.31,538.65,27.95000000000030,48.58000000000000,3432.05,512.65,20.4399999999996,36.53000000000000,3733.25,552.08,22.73000000000000,49.069999999999900,2771.0,527.6,26.76000000000020,42.24000000000000,3835.57,924.72,19.579999999999900,19.370000000000000,3964.07,552.08,21.5,45.5,4369.07,555.16,19.26000000000020,42.80000000000010 -131,3686.22,724.63,41.89000000000030,100.56000000000000,3463.38,541.49,22.790000000000000,49.60000000000000,3893.07,818.87,62.59999999999990,89.47000000000000,4039.15,742.67,55.98999999999980,100.90000000000000,3724.61,632.72,34.84999999999990,64.05000000000000,3893.2,585.87,25.100000000000400,59.85000000000000,4028.26,557.69,31.35999999999970,47.309999999999900,4227.41,631.13,44.94000000000050,72.75,3812.22,510.9,19.20000000000030,37.77000000000000,3571.43,503.73,17.559999999999900,34.040000000000000,4197.61,804.44,67.59000000000020,109.94000000000000,3854.22,792.56,50.74000000000020,97.48000000000000,3791.04,715.13,46.32999999999990,81.09000000000000,4076.6,597.38,36.98000000000000,60.16000000000000,3518.73,693.82,49.82000000000020,74.9799999999999,3031.52,665.77,50.59999999999990,91.94000000000000,3297.78,538.72,27.94999999999980,48.58999999999990,3431.89,512.64,20.43000000000030,36.53000000000000,3733.39,552.03,22.73000000000000,49.07000000000010,2771.02,527.7,26.76000000000020,42.24000000000000,3831.2,927.12,19.66000000000030,19.49000000000000,3964.26,552.2,21.5,45.51000000000000,4369.07,555.13,19.26000000000020,42.80000000000000 -132,3684.77,725.81,41.88999999999990,100.55000000000000,3462.61,541.53,22.790000000000000,49.610000000000000,3892.57,818.2,61.87999999999970,90.82999999999990,4039.65,743.55,57.04999999999970,101.25,3725.25,632.77,34.98000000000000,64.13,3893.19,585.87,25.09999999999990,59.85000000000000,4028.16,557.77,31.350000000000400,47.32000000000010,4227.95,631.21,44.93000000000030,72.76000000000000,3811.43,510.88,19.20000000000030,37.77000000000000,3571.33,503.75,17.550000000000200,34.040000000000000,4195.37,804.86,67.59000000000020,109.94000000000000,3853.78,792.62,50.75,97.90000000000000,3789.48,715.44,46.34000000000020,81.08999999999990,4077.14,597.53,37.00999999999980,60.28000000000000,3517.68,694.41,49.75,75.43000000000010,3030.93,666.27,50.440000000000100,91.92000000000010,3298.25,538.8,27.94000000000010,48.59000000000000,3431.73,512.63,20.42999999999980,36.53000000000000,3733.53,551.98,22.73000000000000,49.059999999999900,2771.04,527.79,26.76000000000020,42.24000000000000,3826.82,929.53,19.75,19.600000000000000,3964.45,552.33,21.5,45.51000000000000,4369.07,555.1,19.26000000000020,42.80000000000000 -133,3683.33,726.98,41.88999999999990,100.56000000000000,3462.23,541.58,22.790000000000000,49.59999999999990,3892.07,817.53,61.159999999999900,92.19000000000000,4040.14,744.42,58.13000000000060,101.61,3725.89,632.82,35.11000000000010,64.20999999999990,3893.18,585.87,25.090000000000100,59.85000000000000,4028.05,557.86,31.34999999999990,47.309999999999900,4228.48,631.3,44.94000000000050,72.76000000000000,3810.64,510.85,19.19000000000010,37.77000000000000,3571.22,503.78,17.5600000000004,34.04000000000010,4193.13,805.28,67.59000000000020,109.95000000000000,3853.35,792.68,50.74000000000020,98.33000000000000,3787.93,715.75,46.34000000000020,81.09000000000000,4077.69,597.68,37.0300000000002,60.41000000000010,3516.63,695.0,49.690000000000100,75.88,3030.34,666.77,50.27999999999980,91.90000000000000,3298.71,538.88,27.94999999999980,48.59000000000000,3431.57,512.62,20.42999999999980,36.53000000000000,3733.67,551.93,22.73000000000000,49.06000000000010,2771.06,527.89,26.76000000000020,42.24000000000000,3822.45,931.93,19.820000000000200,19.720000000000000,3964.64,552.46,21.5,45.5,4369.06,555.07,19.25999999999930,42.80000000000000 -134,3681.89,728.16,41.89000000000030,100.56000000000000,3461.85,541.62,22.790000000000000,49.610000000000000,3891.58,816.86,60.43000000000030,93.55000000000000,4040.63,745.3,59.21000000000000,101.97000000000000,3726.52,632.87,35.25,64.29000000000000,3893.16,585.87,25.100000000000400,59.85000000000000,4027.94,557.95,31.360000000000100,47.309999999999900,4229.01,631.39,44.9399999999996,72.75,3809.85,510.83,19.19000000000010,37.77000000000000,3571.12,503.8,17.559999999999900,34.04000000000000,4190.89,805.7,67.58999999999920,109.95000000000000,3852.91,792.73,50.75,98.77000000000000,3786.38,716.06,46.32999999999990,81.08000000000000,4078.24,597.82,37.05000000000020,60.54000000000000,3515.58,695.59,49.61999999999990,76.32999999999990,3029.75,667.27,50.11000000000010,91.87,3299.18,538.96,27.95000000000030,48.58999999999990,3431.41,512.61,20.43000000000030,36.54000000000000,3733.8,551.87,22.73999999999980,49.07000000000010,2771.08,527.98,26.76000000000020,42.24000000000000,3818.07,934.34,19.90999999999990,19.829999999999900,3964.83,552.58,21.5,45.51000000000000,4369.06,555.05,19.25999999999930,42.79000000000010 -135,3680.45,729.34,41.89000000000030,100.55000000000000,3461.46,541.67,22.800000000000200,49.610000000000000,3891.08,816.19,59.71000000000000,94.91000000000000,4041.12,746.17,60.27999999999980,102.33000000000000,3727.16,632.91,35.38000000000010,64.38,3893.15,585.87,25.09999999999990,59.85000000000000,4027.84,558.03,31.34999999999990,47.32000000000010,4229.55,631.47,44.92999999999940,72.76000000000000,3809.06,510.81,19.19000000000010,37.77000000000000,3571.02,503.82,17.550000000000200,34.04000000000000,4188.65,806.13,67.59000000000020,109.94000000000000,3852.48,792.79,50.73999999999980,99.20000000000010,3784.82,716.37,46.33999999999970,81.08000000000000,4078.78,597.97,37.07999999999950,60.67000000000000,3514.52,696.18,49.57000000000020,76.78000000000010,3029.16,667.77,49.95000000000030,91.85000000000000,3298.24,539.04,27.95000000000030,48.59000000000000,3431.25,512.61,20.42999999999980,36.53000000000000,3733.94,551.82,22.73999999999980,49.069999999999900,2771.1,528.07,26.76000000000020,42.239999999999900,3813.7,936.74,19.99000000000020,19.93999999999990,3965.02,552.71,21.5,45.51000000000000,4369.06,555.02,19.25999999999930,42.79000000000000 -136,3677.97,728.99,41.89000000000030,100.56000000000000,3461.08,541.72,22.800000000000200,49.60000000000000,3890.58,815.52,58.99000000000020,96.26,4041.61,747.05,61.36000000000010,102.69000000000000,3727.8,632.96,35.5,64.45999999999990,3893.14,585.87,25.09999999999990,59.85000000000000,4027.73,558.12,31.360000000000100,47.309999999999900,4230.08,631.56,44.94000000000050,72.75,3808.27,510.79,19.19000000000010,37.769999999999900,3570.91,503.85,17.559999999999900,34.040000000000000,4186.41,806.55,67.59000000000020,109.94000000000000,3852.04,792.85,50.75,99.62,3783.27,716.67,46.32999999999990,81.09000000000000,4079.33,598.12,37.10000000000040,60.79000000000000,3513.47,696.77,49.5,77.23000000000000,3028.57,668.27,49.79000000000000,91.82000000000000,3297.3,539.12,27.94999999999980,48.59000000000000,3431.08,512.6,20.44000000000010,36.53000000000000,3734.08,551.77,22.73000000000000,49.07000000000010,2771.12,528.17,26.76000000000020,42.24000000000000,3809.32,939.15,20.079999999999900,20.050000000000100,3965.21,552.84,21.5,45.5,4369.06,554.99,19.25999999999930,42.80000000000000 -137,3675.5,728.65,41.88999999999990,100.55000000000000,3460.7,541.76,22.790000000000000,49.610000000000000,3890.08,814.85,58.27000000000000,97.62,4042.11,747.92,62.41999999999960,103.05000000000000,3728.44,633.01,35.63000000000010,64.54000000000000,3893.13,585.87,25.09999999999990,59.85000000000000,4027.63,558.21,31.34999999999990,47.309999999999900,4230.61,631.64,44.94000000000050,72.76000000000000,3807.48,510.77,19.19000000000010,37.77000000000000,3570.81,503.87,17.559999999999900,34.040000000000000,4184.17,806.97,67.59000000000020,109.94000000000000,3851.61,792.9,50.73999999999980,100.06000000000000,3781.72,716.98,46.33000000000040,81.09000000000000,4079.88,598.27,37.11999999999990,60.92000000000010,3512.42,697.36,49.440000000000100,77.68999999999990,3027.98,668.77,49.61999999999990,91.80000000000010,3296.36,539.2,27.94999999999980,48.58999999999990,3430.92,512.59,20.44000000000010,36.53000000000000,3734.22,551.72,22.73000000000000,49.059999999999900,2771.13,528.26,26.759999999999800,42.24000000000000,3804.95,941.55,20.16000000000030,20.17000000000010,3965.4,552.96,21.5,45.51000000000000,4369.06,554.96,19.25,42.80000000000000 -138,3673.02,728.31,41.88999999999990,100.55000000000000,3460.32,541.81,22.790000000000000,49.610000000000000,3889.58,814.18,57.54000000000000,98.98000000000000,4042.6,748.8,63.500000000000500,103.40000000000000,3729.08,633.06,35.76000000000020,64.62,3893.12,585.87,25.090000000000100,59.85000000000000,4027.52,558.29,31.360000000000100,47.32000000000010,4231.14,631.73,44.9399999999996,72.76000000000000,3806.69,510.74,19.19000000000010,37.77000000000000,3570.71,503.89,17.559999999999900,34.040000000000000,4181.93,807.39,67.59000000000020,109.95000000000000,3851.17,792.96,50.75,100.49,3780.16,717.29,46.34000000000020,81.09000000000000,4080.42,598.41,37.14999999999960,61.05000000000010,3511.37,697.96,49.36999999999990,78.13,3027.4,669.26,49.44999999999980,91.78000000000000,3295.42,539.29,27.94000000000010,48.58000000000000,3430.76,512.58,20.42999999999980,36.53000000000000,3734.36,551.67,22.73000000000000,49.06000000000010,2771.15,528.36,26.759999999999800,42.24000000000000,3800.57,943.96,20.25,20.280000000000000,3965.59,553.09,21.5,45.5,4369.05,554.93,19.26000000000020,42.80000000000010 -139,3670.54,727.96,41.88999999999990,100.56000000000000,3459.94,541.86,22.790000000000000,49.610000000000000,3889.08,813.51,56.82000000000020,100.34000000000000,4045.34,748.64,63.09000000000020,103.27000000000000,3729.72,633.11,35.89000000000030,64.69999999999990,3893.29,585.81,25.09999999999990,59.85000000000000,4027.42,558.38,31.34999999999990,47.31000000000010,4231.68,631.82,44.9399999999996,72.75,3805.9,510.72,19.19000000000010,37.77000000000000,3570.61,503.91,17.549999999999700,34.04000000000000,4179.69,807.81,67.59000000000020,109.95000000000000,3850.74,793.02,50.74000000000020,100.92000000000000,3778.61,717.6,46.32999999999990,81.09000000000000,4080.97,598.56,37.17000000000050,61.180000000000100,3510.32,698.55,49.309999999999900,78.58000000000000,3026.81,669.76,49.29000000000000,91.76,3294.47,539.37,27.95000000000030,48.59000000000000,3430.6,512.57,20.43000000000030,36.53000000000000,3734.49,551.61,22.74000000000020,49.069999999999900,2771.17,528.45,26.759999999999800,42.24000000000000,3796.2,946.36,20.330000000000400,20.400000000000000,3965.78,553.21,21.5,45.51000000000000,4369.05,554.9,19.26000000000020,42.80000000000010 -140,3668.07,727.62,41.88999999999990,100.55000000000000,3459.56,541.91,22.790000000000000,49.60000000000000,3888.58,812.84,56.09999999999990,101.69000000000000,4048.08,748.48,62.69000000000050,103.13,3730.36,633.16,36.02000000000000,64.78000000000010,3893.47,585.75,25.100000000000400,59.85000000000000,4027.31,558.47,31.34999999999990,47.309999999999900,4232.21,631.9,44.9399999999996,72.76000000000000,3805.11,510.7,19.19000000000010,37.77000000000000,3570.5,503.94,17.559999999999900,34.04000000000000,4177.45,808.24,67.59000000000020,109.94000000000000,3850.3,793.08,50.75,101.34000000000000,3777.05,717.91,46.33999999999970,81.08000000000000,4081.51,598.71,37.19999999999980,61.30000000000000,3509.27,699.14,49.25,79.03000000000000,3026.22,670.26,49.120000000000300,91.73000000000000,3293.53,539.45,27.94999999999980,48.58999999999990,3430.44,512.57,20.42999999999980,36.53000000000000,3734.63,551.56,22.73999999999980,49.07000000000010,2771.19,528.55,26.759999999999800,42.24000000000000,3791.82,948.77,20.41999999999960,20.5,3965.97,553.34,21.5,45.51000000000000,4369.05,554.88,19.26000000000020,42.79000000000000 -141,3665.59,727.28,41.88999999999990,100.55000000000000,3459.18,541.95,22.790000000000000,49.6099999999999,3888.08,812.17,55.38000000000010,103.05000000000000,4050.82,748.32,62.2800000000002,103.0,3731.0,633.21,36.15000000000010,64.86000000000000,3893.65,585.69,25.09999999999990,59.84999999999990,4027.2,558.55,31.360000000000100,47.32000000000010,4232.74,631.99,44.94000000000050,72.75,3804.32,510.68,19.19000000000010,37.77000000000000,3570.4,503.96,17.559999999999900,34.04000000000000,4175.21,808.66,67.59000000000020,109.94000000000000,3849.87,793.13,50.74000000000020,101.78000000000000,3775.5,718.22,46.34000000000020,81.07999999999990,4082.06,598.86,37.2199999999998,61.43000000000000,3508.22,699.73,49.18000000000030,79.48000000000000,3025.63,670.96,48.96000000000000,91.70999999999990,3292.59,539.53,27.94999999999980,48.59000000000000,3430.28,512.56,20.42999999999980,36.530000000000100,3734.77,551.51,22.73000000000000,49.06000000000010,2771.21,528.64,26.759999999999800,42.24000000000000,3787.45,951.17,20.5,20.620000000000000,3966.16,553.47,21.5,45.5,4369.05,554.85,19.26000000000020,42.79000000000000 -142,3663.11,726.93,41.88999999999990,100.56000000000000,3458.8,542.0,22.790000000000000,49.610000000000000,3887.59,811.5,54.64999999999960,104.41000000000000,4053.56,748.16,61.870000000000300,102.86,3731.64,633.25,36.27000000000000,64.95000000000010,3893.83,585.63,25.09999999999990,59.85000000000000,4027.1,558.64,31.34999999999990,47.31000000000010,4233.28,632.07,44.93000000000030,72.76000000000000,3803.53,510.66,19.1899999999996,37.769999999999900,3570.3,503.98,17.549999999999700,34.040000000000000,4172.97,809.08,67.59999999999950,109.94000000000000,3849.43,793.19,50.75,102.21000000000000,3773.95,718.52,46.33000000000040,81.09000000000000,4082.61,599.0,37.24000000000020,61.559999999999900,3507.17,700.32,49.11999999999990,79.93000000000000,3025.04,671.65,48.80000000000020,91.69000000000000,3291.65,539.61,27.94999999999980,48.59000000000000,3430.12,512.55,20.43000000000030,36.530000000000100,3734.91,551.46,22.73000000000000,49.059999999999900,2771.23,528.73,26.759999999999800,42.24000000000000,3783.08,953.58,20.579999999999900,20.729999999999900,3966.35,553.59,21.5,45.51000000000000,4369.05,554.82,19.25,42.80000000000000 -143,3660.64,726.59,41.89000000000030,100.55000000000000,3458.41,542.05,22.800000000000200,49.60000000000000,3887.09,810.82,53.92999999999980,105.78000000000000,4056.3,748.01,61.46000000000000,102.72000000000000,3733.16,633.3,36.40000000000010,65.03000000000010,3894.01,585.57,25.09999999999990,59.84999999999990,4026.99,558.73,31.360000000000100,47.309999999999900,4233.81,632.16,44.9399999999996,72.76000000000000,3802.74,510.64,19.19000000000010,37.76000000000000,3570.19,504.0,17.559999999999900,34.040000000000000,4170.72,809.78,67.59000000000020,109.95000000000000,3849.0,793.25,50.73999999999980,102.64,3771.98,718.14,46.30000000000020,82.68000000000010,4083.15,599.15,37.27000000000000,61.690000000000100,3506.12,700.91,49.05000000000020,80.38,3024.45,672.35,48.63000000000010,91.66000000000000,3290.71,539.7,27.94999999999980,48.57999999999990,3429.95,512.54,20.44000000000010,36.530000000000100,3735.05,551.4,22.73000000000000,49.07000000000010,2771.25,528.83,26.76000000000020,42.24000000000000,3778.7,955.98,20.66000000000030,20.850000000000000,3966.54,553.72,21.5,45.51000000000000,4369.04,554.79,19.26000000000020,42.80000000000010 -144,3658.16,726.25,41.89000000000030,100.55000000000000,3458.03,542.09,22.799999999999700,49.610000000000000,3886.59,810.15,53.21000000000000,107.14,4059.04,747.85,61.0600000000004,102.58000000000000,3734.68,633.35,36.5300000000002,65.11000000000000,3894.19,585.51,25.090000000000100,59.85000000000000,4026.89,558.81,31.34999999999990,47.32000000000010,4234.34,632.25,44.9399999999996,72.75,3801.95,510.61,19.19000000000010,37.77000000000000,3570.09,504.03,17.559999999999900,34.04000000000010,4168.46,810.48,67.59000000000020,109.95000000000000,3848.56,793.31,50.75,103.06000000000000,3770.01,717.76,46.25999999999980,84.27000000000000,4083.7,599.3,37.29000000000000,61.81000000000010,3505.07,701.51,48.98999999999980,80.82000000000010,3023.86,673.04,48.4699999999998,91.64,3289.76,539.78,27.94999999999980,48.58000000000000,3429.79,512.53,20.44000000000010,36.53000000000000,3735.19,551.35,22.73000000000000,49.069999999999900,2771.27,528.92,26.76000000000020,42.24000000000000,3774.33,958.39,20.74000000000020,20.96000000000000,3966.73,553.85,21.5,45.5,4369.24,554.78,19.26000000000020,42.79000000000010 -145,3655.69,725.9,41.88999999999990,100.56000000000000,3457.65,542.14,22.790000000000000,49.610000000000000,3886.09,809.48,52.48999999999980,108.49,4061.78,747.69,60.65000000000010,102.45000000000000,3736.2,633.4,36.66000000000030,65.20000000000010,3894.36,585.45,25.09999999999990,59.84999999999990,4026.78,558.9,31.35999999999970,47.31000000000010,4234.88,632.33,44.93000000000030,72.76000000000000,3801.16,510.59,19.19000000000010,37.77000000000000,3569.99,504.05,17.550000000000200,34.04000000000000,4166.2,811.19,67.60000000000040,109.94000000000000,3848.13,793.36,50.73999999999980,103.5,3768.04,717.38,46.220000000000300,85.85000000000000,4084.24,599.45,37.32000000000060,61.93999999999990,3504.02,702.1,48.92000000000010,81.28000000000000,3023.27,673.74,48.309999999999900,91.62,3288.82,539.86,27.94999999999980,48.59000000000000,3429.63,512.53,20.42999999999980,36.53000000000000,3735.32,551.3,22.73999999999980,49.07000000000010,2771.29,529.02,26.76000000000020,42.24000000000000,3769.95,960.8,20.830000000000400,21.06000000000010,3966.92,553.97,21.5,45.51000000000000,4369.43,554.77,19.25999999999930,42.79000000000000 -146,3653.21,725.56,41.88999999999990,100.55000000000000,3457.27,542.19,22.790000000000000,49.59999999999990,3885.59,808.81,51.77000000000000,109.85000000000000,4064.52,747.53,60.24000000000020,102.31000000000000,3737.72,633.45,36.79000000000040,65.28000000000000,3894.54,585.39,25.09999999999990,59.85000000000000,4026.68,558.98,31.350000000000400,47.319999999999900,4235.41,632.42,44.94000000000050,72.75,3800.36,510.57,19.19999999999980,37.77000000000000,3569.88,504.07,17.559999999999900,34.04000000000000,4163.95,811.89,67.59000000000020,109.94000000000000,3847.69,793.42,50.75,103.93000000000000,3766.07,717.0,46.190000000000100,87.44000000000010,4084.79,599.59,37.34000000000020,62.069999999999900,3502.97,702.69,48.86000000000010,81.7299999999999,3022.68,674.44,48.15000000000010,91.58999999999990,3287.88,539.94,27.94999999999980,48.58999999999990,3429.47,512.52,20.43000000000030,36.53000000000000,3735.46,551.25,22.73000000000000,49.059999999999900,2771.31,529.11,26.76000000000020,42.24000000000000,3765.58,963.2,20.90999999999990,21.18000000000000,3967.11,554.1,21.5,45.51000000000000,4369.63,554.75,19.26000000000020,42.80000000000000 -147,3650.73,725.22,41.88999999999990,100.55000000000000,3456.89,542.24,22.790000000000000,49.60000000000000,3885.09,808.14,51.04999999999970,111.21000000000000,4067.26,747.37,59.82999999999990,102.18000000000000,3739.24,633.5,36.91000000000030,65.36000000000000,3894.72,585.33,25.100000000000400,59.84999999999990,4026.57,559.07,31.34999999999990,47.309999999999900,4235.69,632.38,44.94000000000050,72.75,3799.57,510.55,19.19999999999980,37.77000000000000,3569.78,504.09,17.559999999999900,34.04000000000000,4161.69,812.59,67.59000000000020,109.94000000000000,3847.26,793.48,50.73999999999980,104.36,3764.1,716.62,46.15000000000010,89.03000000000000,4085.34,599.74,37.35999999999970,62.200000000000000,3501.91,703.28,48.80000000000020,82.18000000000010,3022.09,675.13,47.98000000000000,91.57000000000000,3286.94,540.02,27.94999999999980,48.59000000000000,3429.31,512.51,20.42999999999980,36.53000000000000,3735.6,551.2,22.73000000000000,49.059999999999900,2771.33,529.21,26.76000000000020,42.24000000000000,3761.2,965.61,21.0,21.290000000000000,3967.3,554.23,21.5,45.5,4369.82,554.74,19.26000000000020,42.80000000000000 -148,3648.26,724.87,41.88999999999990,100.56000000000000,3456.51,542.28,22.790000000000000,49.610000000000000,3884.59,807.47,50.32999999999990,112.57000000000000,4070.0,747.21,59.43000000000030,102.04000000000000,3740.75,633.55,37.05000000000020,65.44000000000010,3894.9,585.27,25.09999999999990,59.85000000000000,4026.46,559.16,31.360000000000100,47.31000000000010,4235.97,632.34,44.92999999999940,72.75,3800.64,510.66,19.20000000000030,37.769999999999900,3569.68,504.12,17.559999999999900,34.040000000000000,4159.43,813.29,67.59999999999950,109.94000000000000,3846.82,793.54,50.75,104.78000000000000,3762.13,716.24,46.10999999999970,90.62,4085.88,599.89,37.39000000000030,62.32000000000010,3500.86,703.87,48.73999999999980,82.63,3021.5,675.83,47.82000000000020,91.54000000000000,3286.0,540.1,27.94999999999980,48.59000000000000,3429.15,512.5,20.42999999999980,36.53000000000000,3735.74,551.14,22.73000000000000,49.07000000000010,2771.35,529.3,26.76000000000020,42.24000000000000,3756.49,968.08,21.0,20.68999999999990,3967.49,554.35,21.5,45.51000000000000,4370.02,554.73,19.25999999999930,42.80000000000000 -149,3645.78,724.53,41.88999999999990,100.56000000000000,3456.13,542.33,22.790000000000000,49.610000000000000,3884.09,806.8,49.60999999999970,113.93000000000000,4072.74,747.05,59.02000000000040,101.91000000000000,3742.27,633.6,37.17999999999980,65.52000000000000,3895.08,585.21,25.09999999999990,59.84999999999990,4026.34,559.2,31.35999999999970,47.309999999999900,4236.25,632.3,44.93000000000030,72.75,3801.71,510.77,19.19999999999980,37.77000000000000,3569.57,504.14,17.559999999999900,34.040000000000000,4157.18,813.99,67.59000000000020,109.95000000000000,3846.39,793.59,50.74000000000020,105.22000000000000,3760.16,715.85,46.07000000000020,92.20999999999990,4086.43,600.04,37.41000000000030,62.440000000000100,3499.53,703.28,48.84999999999990,81.84000000000000,3020.91,676.52,47.66000000000030,91.53000000000000,3285.06,540.19,27.94000000000010,48.57999999999990,3428.99,512.49,20.43000000000030,36.53000000000000,3735.88,551.09,22.73000000000000,49.069999999999900,2771.37,529.39,26.76000000000020,42.24000000000000,3751.78,970.55,21.0,20.090000000000000,3967.68,554.48,21.5,45.51000000000000,4370.21,554.72,19.26000000000020,42.79000000000000 -150,3643.3,724.19,41.88999999999990,100.55000000000000,3455.75,542.38,22.790000000000000,49.60000000000000,3886.19,806.4,49.61000000000010,113.93000000000000,4075.49,746.89,58.60000000000040,101.77000000000000,3743.79,633.64,37.309999999999900,65.61000000000000,3895.26,585.15,25.08999999999970,59.85000000000000,4026.22,559.24,31.350000000000400,47.309999999999900,4236.52,632.25,44.9399999999996,72.76000000000000,3802.78,510.89,19.19999999999980,37.77000000000000,3569.47,504.16,17.5600000000004,34.04000000000000,4154.92,814.69,67.59000000000020,109.95000000000000,3845.95,793.65,50.75,105.65000000000000,3758.19,715.47,46.04000000000000,93.80000000000000,4086.98,600.18,37.41999999999960,62.58000000000000,3498.2,702.69,48.96000000000000,81.05000000000000,3020.33,677.22,47.48000000000000,91.5,3284.11,540.27,27.94999999999980,48.59000000000000,3428.82,512.48,20.44000000000010,36.54000000000000,3736.01,551.04,22.73999999999980,49.07000000000010,2771.39,529.49,26.76000000000020,42.24000000000000,3747.08,973.03,20.99000000000020,19.48000000000000,3967.87,554.61,21.5,45.5,4370.41,554.7,19.26000000000020,42.80000000000000 -151,3640.83,723.84,41.88999999999990,100.56000000000000,3455.37,542.42,22.790000000000000,49.610000000000000,3888.29,806.0,49.61000000000010,113.93000000000000,4078.23,746.74,58.190000000000100,101.63,3745.31,633.69,37.440000000000100,65.68999999999990,3895.43,585.09,25.100000000000400,59.85000000000000,4026.1,559.28,31.34999999999990,47.31000000000010,4236.8,632.21,44.9399999999996,72.76000000000000,3803.85,511.0,19.20000000000030,37.77000000000000,3569.37,504.19,17.559999999999900,34.04000000000000,4152.66,815.4,67.60000000000040,109.94000000000000,3845.52,793.71,50.74000000000020,106.08000000000000,3756.22,715.09,46.0,95.39,4087.52,600.33,37.45000000000030,62.69999999999990,3496.87,702.1,49.07000000000020,80.27000000000000,3019.74,677.91,47.32000000000020,91.48000000000000,3283.17,540.35,27.94999999999980,48.59000000000000,3428.66,512.48,20.44000000000010,36.53000000000000,3736.15,550.99,22.73999999999980,49.059999999999900,2771.41,529.58,26.76000000000020,42.24000000000000,3742.37,975.5,21.0,18.890000000000000,3968.06,554.73,21.5,45.51000000000000,4370.6,554.69,19.25999999999930,42.80000000000000 -152,3638.35,723.5,41.88999999999990,100.56000000000000,3454.98,542.47,22.800000000000200,49.610000000000000,3890.39,805.61,49.59999999999990,113.92000000000000,4080.97,746.58,57.79000000000040,101.49,3746.83,633.74,37.57000000000020,65.77000000000000,3895.61,585.03,25.09999999999990,59.85000000000000,4025.97,559.32,31.360000000000100,47.309999999999900,4237.08,632.17,44.94000000000050,72.76000000000000,3804.92,511.12,19.19999999999980,37.76000000000000,3569.27,504.21,17.550000000000200,34.04000000000000,4150.41,816.1,67.59000000000020,109.94000000000000,3845.08,793.77,50.75,106.5,3754.25,714.71,45.96000000000000,96.98000000000000,4088.07,600.48,37.4699999999998,62.82999999999990,3495.53,701.51,49.1899999999996,79.48000000000000,3019.15,678.61,47.159999999999900,91.44999999999990,3282.23,540.43,27.94999999999980,48.59000000000000,3428.5,512.47,20.42999999999980,36.53000000000000,3736.29,550.93,22.73000000000000,49.07000000000010,2771.43,529.68,26.76000000000020,42.24000000000000,3737.66,977.98,21.0,18.280000000000000,3968.25,554.86,21.5,45.51000000000000,4370.8,554.68,19.26000000000020,42.80000000000010 -153,3635.88,723.16,41.88000000000010,100.55000000000000,3454.6,542.52,22.800000000000200,49.60000000000000,3892.49,805.21,49.60000000000040,113.92000000000000,4083.71,746.42,57.38000000000010,101.36,3748.35,633.79,37.690000000000100,65.85000000000000,3895.79,584.97,25.09999999999990,59.85000000000000,4025.85,559.36,31.360000000000100,47.309999999999900,4237.36,632.13,44.94000000000050,72.76000000000000,3805.99,511.23,19.20000000000030,37.77000000000000,3569.66,504.23,17.559999999999900,34.040000000000000,4148.15,816.8,67.59000000000020,109.94000000000000,3844.65,793.82,50.73999999999980,106.94000000000000,3752.28,714.33,45.92999999999980,98.56000000000000,4088.61,600.63,37.499999999999500,62.950000000000000,3494.2,700.92,49.29000000000000,78.69000000000010,3018.56,679.3,46.99000000000020,91.43000000000010,3281.29,540.51,27.94999999999980,48.59000000000000,3428.34,512.46,20.42999999999980,36.53000000000000,3736.43,550.88,22.73000000000000,49.07000000000010,2771.45,529.77,26.76000000000020,42.24000000000000,3732.95,980.45,21.0,17.68000000000000,3968.44,554.99,21.5,45.5,4370.99,554.67,19.26000000000020,42.79000000000010 -154,3633.4,722.81,41.88999999999990,100.56000000000000,3454.22,542.56,22.79000000000040,49.610000000000000,3894.59,804.81,49.59999999999990,113.93000000000000,4086.45,746.26,56.970000000000300,101.22000000000000,3749.87,633.84,37.82000000000020,65.93000000000000,3895.97,584.91,25.100000000000400,59.85000000000000,4025.73,559.4,31.34999999999990,47.32000000000010,4237.64,632.09,44.92999999999940,72.76000000000000,3807.06,511.34,19.20000000000030,37.77000000000000,3570.06,504.25,17.559999999999900,34.040000000000000,4145.89,817.5,67.59999999999950,109.94000000000000,3844.21,793.88,50.75,107.37,3750.31,713.95,45.88999999999990,100.15000000000000,4089.16,600.77,37.52000000000040,63.09000000000000,3492.87,700.33,49.40000000000010,77.90000000000000,3017.97,680.0,46.83000000000040,91.41000000000000,3280.35,540.6,27.94000000000010,48.57999999999990,3428.18,512.45,20.43000000000030,36.53000000000000,3736.57,550.83,22.73000000000000,49.069999999999900,2771.47,529.87,26.76000000000020,42.24000000000000,3728.24,982.92,21.0,17.08000000000000,3968.63,555.11,21.5,45.51000000000000,4371.19,554.65,19.26000000000020,42.80000000000010 -155,3630.92,722.47,41.88999999999990,100.56000000000000,3453.84,542.61,22.790000000000000,49.610000000000000,3896.68,804.41,49.61000000000010,113.93000000000000,4089.19,746.1,56.559999999999900,101.09000000000000,3751.39,633.89,37.95000000000030,66.01000000000000,3896.15,584.86,25.08999999999970,59.84000000000000,4025.61,559.44,31.34999999999990,47.319999999999900,4237.92,632.05,44.93000000000030,72.75,3808.13,511.46,19.19999999999980,37.77000000000000,3570.46,504.28,17.559999999999900,34.04000000000010,4143.64,818.2,67.58999999999920,109.95000000000000,3843.78,793.94,50.73999999999980,107.80000000000000,3748.34,713.5,45.92000000000010,99.03000000000000,4089.71,600.92,37.54000000000000,63.21000000000000,3491.54,699.73,49.51000000000020,77.12,3016.47,680.19,46.83000000000040,91.41000000000000,3279.4,540.68,27.94999999999980,48.59000000000000,3428.02,512.44,20.42999999999980,36.54000000000000,3737.25,550.83,22.73999999999980,49.069999999999900,2771.49,529.96,26.76000000000020,42.24000000000000,3727.33,982.86,21.0,17.059999999999900,3968.82,555.24,21.5,45.5,4371.38,554.64,19.26000000000020,42.80000000000010 -156,3628.45,722.13,41.89000000000030,100.55000000000000,3453.46,542.66,22.790000000000000,49.610000000000000,3898.78,804.01,49.60999999999970,113.93000000000000,4091.93,745.94,56.16000000000030,100.95000000000000,3752.91,633.94,38.07999999999990,66.08999999999990,3896.32,584.8,25.09999999999990,59.85000000000000,4025.48,559.48,31.360000000000100,47.319999999999900,4238.19,632.01,44.94000000000050,72.75,3809.2,511.57,19.19000000000010,37.77000000000000,3570.86,504.3,17.549999999999700,34.04000000000000,4141.38,818.9,67.59000000000020,109.95000000000000,3843.34,794.0,50.75,108.22000000000000,3746.37,713.05,45.940000000000100,97.91000000000010,4090.25,601.07,37.56999999999970,63.33999999999990,3490.2,699.14,49.63000000000010,76.34000000000000,3014.97,680.38,46.83000000000040,91.41000000000000,3278.46,540.76,27.94999999999980,48.59000000000000,3427.86,512.44,20.42999999999980,36.53000000000000,3737.94,550.84,22.73000000000000,49.059999999999900,2771.51,530.05,26.759999999999800,42.24000000000000,3726.43,982.8,20.99000000000020,17.040000000000100,3969.01,555.36,21.5,45.51000000000000,4371.58,554.63,19.26000000000020,42.80000000000000 -157,3625.97,721.78,41.89000000000030,100.56000000000000,3453.08,542.71,22.790000000000000,49.59999999999990,3900.88,803.61,49.60999999999970,113.93000000000000,4094.67,745.78,55.75,100.82000000000000,3754.43,633.98,38.21000000000000,66.18000000000000,3896.5,584.74,25.09999999999990,59.85000000000000,4025.36,559.52,31.34999999999990,47.32000000000010,4238.47,631.97,44.9399999999996,72.75,3810.27,511.68,19.19000000000010,37.77000000000000,3571.26,504.32,17.549999999999700,34.04000000000000,4139.12,819.61,67.60000000000040,109.94000000000000,3842.91,794.05,50.74000000000020,108.66000000000000,3744.4,712.61,45.9699999999998,96.78000000000000,4090.8,601.22,37.59000000000020,63.45999999999990,3488.87,698.55,49.74000000000020,75.55000000000010,3013.46,680.57,46.82999999999990,91.41000000000000,3277.52,540.84,27.94999999999980,48.58999999999990,3427.7,512.43,20.43000000000030,36.530000000000100,3738.63,550.84,22.73000000000000,49.059999999999900,2771.53,530.15,26.759999999999800,42.24000000000000,3725.52,982.74,21.0,17.020000000000000,3969.2,555.49,21.5,45.51000000000000,4371.77,554.62,19.25999999999930,42.79000000000000 -158,3623.49,721.44,41.89000000000030,100.56000000000000,3452.7,542.75,22.790000000000000,49.610000000000000,3902.98,803.22,49.59999999999990,113.92000000000000,4097.41,745.62,55.34000000000020,100.68000000000000,3755.94,634.03,38.34000000000020,66.26000000000000,3896.68,584.68,25.100000000000400,59.85000000000000,4025.24,559.56,31.350000000000400,47.32000000000010,4238.75,631.93,44.9399999999996,72.75,3811.34,511.8,19.19000000000010,37.77000000000000,3571.65,504.34,17.559999999999900,34.04000000000000,4136.87,820.31,67.59000000000020,109.94000000000000,3842.47,794.11,50.75,109.09000000000000,3742.43,712.16,46.0,95.66000000000010,4091.34,601.36,37.61999999999990,63.60000000000000,3487.54,697.96,49.84999999999990,74.76000000000000,3011.96,680.76,46.82999999999990,91.41000000000000,3276.58,540.92,27.95000000000030,48.59000000000000,3427.53,512.42,20.4399999999996,36.530000000000100,3739.32,550.84,22.73000000000000,49.069999999999900,2771.55,530.24,26.759999999999800,42.24000000000000,3724.61,982.67,21.0,17.01000000000000,3969.39,555.62,21.49000000000020,45.5,4371.97,554.6,19.25999999999930,42.80000000000000 -159,3621.02,721.1,41.88999999999990,100.55000000000000,3452.32,542.8,22.790000000000000,49.610000000000000,3905.08,802.82,49.59999999999990,113.92000000000000,4100.15,745.47,54.93000000000030,100.54000000000000,3757.46,634.08,38.4699999999998,66.33999999999990,3896.86,584.62,25.09999999999990,59.85000000000000,4025.11,559.61,31.35999999999970,47.309999999999900,4239.03,631.89,44.94000000000050,72.75,3812.41,511.91,19.19000000000010,37.769999999999900,3572.05,504.37,17.559999999999900,34.040000000000000,4134.61,821.01,67.59000000000020,109.94000000000000,3843.93,795.23,50.90000000000010,109.40000000000000,3740.46,711.71,46.02000000000000,94.55000000000000,4091.89,601.51,37.63999999999990,63.72000000000000,3486.21,697.37,49.96000000000000,73.97000000000000,3010.46,680.95,46.82999999999990,91.41000000000000,3275.64,541.01,27.95000000000030,48.58000000000000,3427.37,512.41,20.44000000000010,36.530000000000100,3740.0,550.84,22.73999999999980,49.069999999999900,2771.57,530.34,26.759999999999800,42.24000000000000,3723.7014124293800,982.6077966101690,21.0,16.991920903954800,3969.58,555.74,21.49000000000020,45.51000000000000,4372.16,554.59,19.26000000000020,42.80000000000000 -160,3618.54,720.75,41.88999999999990,100.56000000000000,3452.44,542.73,22.790000000000000,49.610000000000000,3907.17,802.42,49.61000000000010,113.93000000000000,4102.89,745.31,54.52999999999980,100.40000000000000,3758.98,634.13,38.59999999999990,66.42000000000000,3897.04,584.56,25.09999999999990,59.85000000000000,4024.99,559.65,31.360000000000100,47.31000000000010,4239.31,631.84,44.9399999999996,72.76000000000000,3813.48,512.02,19.19000000000010,37.77000000000000,3572.45,504.39,17.5600000000004,34.040000000000000,4132.35,821.71,67.59999999999950,109.95000000000000,3845.39,796.34,51.059999999999900,109.72000000000000,3738.49,711.26,46.05000000000020,93.43000000000010,4092.44,601.66,37.66000000000030,63.85000000000000,3484.88,696.78,50.06999999999970,73.18000000000010,3008.96,681.14,46.82999999999990,91.41000000000000,3274.69,541.09,27.94999999999980,48.58999999999990,3427.21,512.4,20.42999999999980,36.54000000000010,3740.69,550.85,22.73000000000000,49.059999999999900,2771.59,530.43,26.759999999999800,42.24000000000000,3722.7928248587600,982.5455932203390,21.0,16.973841807909600,3969.77,555.87,21.49000000000020,45.51000000000000,4372.36,554.58,19.26000000000020,42.80000000000000 -161,3616.06,720.41,41.88999999999990,100.56000000000000,3452.57,542.66,22.790000000000000,49.610000000000000,3909.27,802.02,49.61000000000010,113.93000000000000,4105.63,745.15,54.11999999999990,100.27000000000000,3760.5,634.18,38.73000000000000,66.5,3897.22,584.5,25.090000000000100,59.85000000000000,4024.87,559.69,31.34999999999990,47.309999999999900,4239.59,631.8,44.93000000000030,72.76000000000000,3814.55,512.14,19.1899999999996,37.77000000000000,3572.85,504.41,17.550000000000200,34.04000000000000,4130.1,822.41,67.58999999999920,109.95000000000000,3846.84,797.46,51.23000000000000,110.03000000000000,3736.52,710.82,46.07999999999990,92.30000000000000,4092.98,601.81,37.690000000000100,63.97000000000000,3483.43,696.1,49.88000000000010,73.05000000000000,3007.46,681.33,46.82999999999990,91.41000000000000,3273.75,541.17,27.94999999999980,48.59000000000000,3427.47,512.31,20.43000000000030,36.530000000000100,3741.38,550.85,22.73000000000000,49.069999999999900,2771.61,530.53,26.759999999999800,42.24000000000000,3721.884237288140,982.4833898305090,21.0,16.9557627118644,3969.95,556.0,21.5,45.5,4372.55,554.57,19.26000000000020,42.79000000000000 -162,3613.59,720.07,41.88999999999990,100.55000000000000,3452.69,542.59,22.790000000000000,49.610000000000000,3911.37,801.62,49.61000000000010,113.93000000000000,4108.37,744.99,53.71000000000000,100.13,3762.02,634.23,38.86000000000010,66.57999999999990,3897.39,584.44,25.09999999999990,59.84999999999990,4024.75,559.73,31.34999999999990,47.309999999999900,4239.87,631.76,44.93000000000030,72.76000000000000,3815.62,512.25,19.19000000000010,37.77000000000000,3573.24,504.43,17.5600000000004,34.04000000000000,4127.84,823.11,67.59000000000020,109.95000000000000,3848.3,798.58,51.38999999999990,110.35000000000000,3734.55,710.37,46.09999999999990,91.18000000000000,4093.53,601.95,37.70999999999960,64.1099999999999,3481.98,695.43,49.69999999999980,72.92000000000010,3005.95,681.52,46.84000000000020,91.40000000000000,3272.81,541.25,27.95000000000030,48.59000000000000,3427.73,512.22,20.42999999999980,36.53000000000000,3742.06,550.85,22.74000000000020,49.069999999999900,2771.63,530.62,26.759999999999800,42.24000000000000,3720.9756497175100,982.421186440678,21.0,16.9376836158192,3970.14,556.12,21.5,45.51000000000000,4372.75,554.55,19.26000000000020,42.80000000000010 -163,3611.11,719.72,41.88999999999990,100.56000000000000,3452.82,542.52,22.790000000000000,49.610000000000000,3913.47,801.23,49.61000000000010,113.92000000000000,4111.11,744.83,53.30000000000020,100.0,3763.54,634.28,38.98000000000000,66.66000000000010,3897.57,584.38,25.09999999999990,59.85000000000000,4024.62,559.77,31.360000000000100,47.31000000000010,4240.14,631.72,44.9399999999996,72.76000000000000,3816.69,512.36,19.19000000000010,37.77000000000000,3573.64,504.46,17.559999999999900,34.04000000000000,4125.59,823.82,67.59000000000020,109.94000000000000,3849.76,799.69,51.54999999999970,110.67000000000000,3732.58,709.92,46.13000000000010,90.06000000000010,4094.07,602.1,37.74000000000020,64.23000000000000,3480.54,694.75,49.5,72.79000000000000,3004.45,681.71,46.83000000000040,91.40000000000000,3271.87,541.33,27.95000000000030,48.58999999999990,3427.98,512.13,20.44000000000010,36.53000000000000,3742.75,550.85,22.73000000000000,49.069999999999900,2771.65,530.71,26.759999999999800,42.24000000000000,3720.0670621468900,982.3589830508470,21.0,16.919604519774000,3970.33,556.25,21.5,45.51000000000000,4372.94,554.54,19.26000000000020,42.80000000000010 -164,3608.64,719.38,41.89000000000030,100.56000000000000,3452.94,542.45,22.790000000000000,49.6099999999999,3915.57,800.83,49.59999999999990,113.92000000000000,4113.85,744.67,52.89999999999960,99.86,3765.06,634.32,39.11000000000010,66.75,3897.75,584.32,25.09999999999990,59.84999999999990,4024.5,559.81,31.360000000000100,47.31000000000010,4240.42,631.68,44.9399999999996,72.7600000000001,3817.76,512.48,19.1899999999996,37.77000000000000,3574.04,504.48,17.559999999999900,34.040000000000000,4123.33,824.52,67.59000000000020,109.94000000000000,3851.21,800.81,51.7199999999998,110.98000000000000,3730.61,709.47,46.159999999999900,88.93999999999990,4094.62,602.25,37.76000000000020,64.35000000000000,3479.09,694.08,49.31999999999970,72.65000000000000,3002.95,681.9,46.83000000000040,91.40000000000000,3270.93,541.42,27.95000000000030,48.58000000000000,3428.24,512.03,20.43000000000030,36.53000000000000,3743.44,550.86,22.73000000000000,49.059999999999900,2771.66,530.81,26.76000000000020,42.24000000000000,3719.158474576270,982.2967796610170,21.0,16.901525423728800,3970.52,556.38,21.5,45.5,4373.14,554.53,19.25999999999930,42.80000000000010 -165,3606.16,719.04,41.89000000000030,100.55000000000000,3453.07,542.38,22.790000000000000,49.610000000000000,3917.67,800.43,49.59999999999990,113.93000000000000,4116.6,744.51,52.47999999999960,99.73000000000000,3766.58,634.37,39.24000000000020,66.83000000000000,3897.93,584.26,25.100000000000400,59.85000000000000,4024.38,559.85,31.34999999999990,47.309999999999900,4240.7,631.64,44.94000000000050,72.76000000000000,3818.83,512.59,19.19000000000010,37.77000000000000,3574.44,504.5,17.559999999999900,34.040000000000000,4121.07,825.22,67.59000000000020,109.94000000000000,3852.67,801.92,51.88000000000010,111.30000000000000,3728.64,709.03,46.18000000000030,87.81000000000010,4095.17,602.4,37.77999999999980,64.48000000000000,3477.65,693.4,49.13000000000010,72.52000000000000,3001.45,682.09,46.83000000000040,91.40000000000000,3269.99,541.5,27.94000000000010,48.58000000000000,3428.5,511.94,20.42999999999980,36.53000000000000,3744.13,550.86,22.73000000000000,49.069999999999900,2771.68,530.9,26.76000000000020,42.24000000000000,3718.2498870056500,982.2345762711860,21.0,16.88344632768360,3970.71,556.5,21.5,45.51000000000000,4373.33,554.52,19.26000000000020,42.79000000000000 -166,3603.68,718.69,41.89000000000030,100.56000000000000,3453.19,542.31,22.790000000000000,49.60000000000000,3919.76,800.03,49.60999999999970,113.93000000000000,4119.34,744.35,52.06999999999970,99.59000000000010,3768.1,634.42,39.36999999999990,66.91000000000010,3898.11,584.2,25.09999999999990,59.84999999999990,4024.26,559.89,31.34999999999990,47.31000000000010,4240.98,631.6,44.94000000000050,72.75,3819.9,512.7,19.19000000000010,37.77000000000000,3574.84,504.53,17.549999999999700,34.04000000000010,4118.82,825.92,67.59000000000020,109.95000000000000,3854.13,803.04,52.04000000000000,111.61,3726.67,708.58,46.21000000000000,86.68999999999990,4095.71,602.54,37.8100000000004,64.61000000000000,3476.2,692.73,48.940000000000100,72.38,2999.95,682.28,46.83000000000040,91.40000000000000,3269.04,541.58,27.94999999999980,48.58999999999990,3428.76,511.85,20.42999999999980,36.53000000000000,3744.81,550.86,22.74000000000020,49.069999999999900,2771.7,531.0,26.76000000000020,42.24000000000000,3717.3412994350300,982.1723728813560,21.0,16.865367231638400,3970.9,556.63,21.5,45.51000000000000,4373.53,554.5,19.26000000000020,42.80000000000000 -167,3601.21,718.35,41.88999999999990,100.56000000000000,3453.32,542.24,22.790000000000000,49.60000000000000,3921.86,799.63,49.60999999999970,113.93000000000000,4122.08,744.2,51.659999999999900,99.44999999999990,3769.62,634.47,39.5,66.99000000000000,3898.29,584.14,25.090000000000100,59.85000000000000,4024.13,559.93,31.35999999999970,47.31000000000010,4241.26,631.56,44.92999999999940,72.75,3820.97,512.82,19.19000000000010,37.77000000000000,3575.23,504.55,17.559999999999900,34.04000000000000,4116.56,826.62,67.58999999999920,109.95000000000000,3855.58,804.15,52.21000000000000,111.93000000000000,3724.7,708.13,46.24000000000020,85.58000000000000,4096.26,602.69,37.82999999999990,64.7399999999999,3474.76,692.05,48.75,72.25,2998.44,682.47,46.84000000000020,91.40000000000000,3268.1,541.66,27.95000000000030,48.59000000000000,3429.01,511.76,20.4399999999996,36.53000000000000,3745.5,550.87,22.73000000000000,49.059999999999900,2771.72,531.09,26.76000000000020,42.24000000000000,3716.432711864410,982.1101694915250,21.0,16.847288135593200,3971.09,556.76,21.5,45.5,4373.72,554.49,19.25999999999930,42.80000000000000 -168,3598.73,718.01,41.88999999999990,100.55000000000000,3453.44,542.17,22.799999999999700,49.60000000000000,3923.96,799.23,49.61000000000010,113.93000000000000,4124.82,744.04,51.26000000000020,99.31000000000010,3771.13,634.52,39.63000000000010,67.07000000000010,3898.46,584.08,25.09999999999990,59.84999999999990,4024.01,559.97,31.34999999999990,47.309999999999900,4241.54,631.52,44.93000000000030,72.75,3822.03,512.93,19.19999999999980,37.770000000000100,3575.63,504.57,17.559999999999900,34.04000000000000,4114.3,827.32,67.59999999999950,109.95000000000000,3857.04,805.27,52.36999999999990,112.24,3722.74,707.68,46.25,84.46000000000000,4096.81,602.84,37.849999999999500,64.86000000000000,3473.31,691.38,48.559999999999900,72.11000000000000,2996.94,682.66,46.82999999999990,91.40000000000000,3267.16,541.74,27.95000000000030,48.59000000000000,3429.27,511.66,20.42999999999980,36.53000000000000,3746.19,550.87,22.73000000000000,49.059999999999900,2771.74,531.19,26.76000000000020,42.239999999999900,3715.5241242937900,982.0479661016950,21.0,16.82920903954800,3971.28,556.88,21.5,45.51000000000000,4373.92,554.48,19.26000000000020,42.80000000000000 -169,3596.25,717.67,41.88999999999990,100.55000000000000,3453.57,542.1,22.790000000000000,49.60000000000000,3928.08,798.91,49.61000000000010,113.92000000000000,4127.56,743.88,50.849999999999500,99.18000000000000,3772.65,634.57,39.75999999999980,67.15000000000000,3898.64,584.02,25.09999999999990,59.85000000000000,4023.89,560.01,31.34999999999990,47.31000000000010,4241.81,631.48,44.9399999999996,72.75,3823.1,513.04,19.20000000000030,37.77000000000000,3576.03,504.59,17.559999999999900,34.04000000000000,4112.05,828.03,67.59000000000020,109.94000000000000,3858.5,806.39,52.5300000000002,112.56000000000000,3720.77,707.24,46.2800000000002,83.33000000000000,4097.35,602.98,37.86999999999990,65.0,3471.87,690.7,48.36999999999990,71.9799999999999,2995.44,682.85,46.82999999999990,91.40000000000000,3266.22,541.82,27.95000000000030,48.58999999999990,3429.53,511.57,20.42999999999980,36.53000000000000,3746.87,550.87,22.74000000000020,49.07000000000010,2771.76,531.28,26.759999999999800,42.24000000000000,3714.615536723160,981.9857627118640,21.0,16.81112994350280,3971.47,557.01,21.5,45.51000000000000,4374.11,554.47,19.26000000000020,42.79000000000000 -170,3593.78,717.32,41.88999999999990,100.56000000000000,3453.69,542.03,22.799999999999700,49.60000000000000,3932.21,798.58,49.59999999999990,113.92000000000000,4130.3,743.72,50.4399999999996,99.04000000000000,3774.17,634.62,39.88999999999990,67.23000000000000,3898.82,583.96,25.09999999999990,59.84999999999990,4023.76,560.05,31.35999999999970,47.32000000000010,4242.09,631.44,44.9399999999996,72.75,3824.17,513.16,19.19999999999980,37.77000000000000,3576.43,504.62,17.559999999999900,34.040000000000000,4109.79,828.73,67.59000000000020,109.94000000000000,3859.96,807.5,52.690000000000100,112.88,3718.8,706.79,46.309999999999900,82.21000000000000,4097.9,603.13,37.89000000000030,65.12,3470.42,690.03,48.17999999999980,71.84000000000000,2993.94,683.04,46.82999999999990,91.40000000000010,3265.28,541.91,27.94999999999980,48.58000000000000,3429.79,511.48,20.42999999999980,36.53000000000000,3747.56,550.87,22.73000000000000,49.07000000000010,2771.78,531.37,26.759999999999800,42.24000000000000,3713.7069491525400,981.9235593220340,21.0,16.79305084745760,3971.66,557.14,21.5,45.5,4374.31,554.45,19.25,42.80000000000000 -171,3591.3,716.98,41.88999999999990,100.55000000000000,3453.82,541.96,22.790000000000000,49.59999999999990,3936.33,798.25,49.61000000000010,113.92000000000000,4133.04,743.56,50.02999999999980,98.91000000000010,3775.69,634.66,40.02000000000000,67.32000000000010,3899.0,583.9,25.09999999999990,59.85000000000000,4023.64,560.09,31.360000000000100,47.319999999999900,4242.37,631.39,44.94000000000050,72.76000000000000,3825.24,513.27,19.20000000000030,37.77000000000000,3576.83,504.64,17.550000000000200,34.040000000000000,4107.53,829.43,67.60000000000040,109.94000000000000,3861.41,808.62,52.86000000000010,113.19000000000000,3716.83,706.34,46.32999999999990,81.08999999999990,4098.44,603.28,37.92000000000010,65.25,3468.98,689.35,47.98999999999980,71.70999999999990,2992.44,683.22,46.82999999999990,91.41000000000000,3264.33,541.99,27.95000000000030,48.59000000000000,3430.04,511.38,20.44000000000010,36.54000000000000,3748.25,550.88,22.73000000000000,49.06000000000010,2771.8,531.47,26.759999999999800,42.24000000000000,3712.798361581920,981.8613559322030,21.0,16.774971751412400,3971.85,557.26,21.5,45.51000000000000,4374.5,554.44,19.26000000000020,42.80000000000000 -172,3589.56,716.13,41.88999999999990,100.56000000000000,3453.94,541.89,22.799999999999700,49.60000000000000,3940.45,797.92,49.61000000000010,113.92000000000000,4135.78,743.4,49.63000000000010,98.77000000000000,3777.21,634.71,40.15000000000010,67.40000000000000,3899.18,583.84,25.100000000000400,59.85000000000000,4023.52,560.13,31.34999999999990,47.32000000000010,4242.65,631.35,44.94000000000050,72.76000000000000,3826.31,513.38,19.20000000000030,37.77000000000000,3577.22,504.66,17.5600000000004,34.04000000000000,4105.28,830.13,67.59000000000020,109.95000000000000,3862.87,809.73,53.01000000000020,113.51,3715.78,705.21,46.33999999999970,81.08999999999990,4098.99,603.43,37.94000000000050,65.37,3467.53,688.68,47.809999999999900,71.57000000000010,2990.94,683.41,46.82999999999990,91.41000000000010,3263.39,542.07,27.95000000000030,48.58999999999990,3430.3,511.29,20.42999999999980,36.53000000000000,3748.94,550.88,22.73000000000000,49.07000000000010,2771.82,531.56,26.759999999999800,42.24000000000000,3711.8897740113000,981.7991525423730,21.0,16.756892655367200,3972.17,557.24,21.5,45.51000000000000,4374.7,554.43,19.25,42.80000000000010 -173,3587.82,715.28,41.88999999999990,100.56000000000000,3454.07,541.82,22.790000000000000,49.59999999999990,3944.58,797.59,49.59999999999990,113.93000000000000,4138.52,743.24,49.21999999999940,98.64,3778.73,634.76,40.27000000000000,67.48000000000000,3899.36,583.79,25.08999999999970,59.85000000000000,4023.4,560.17,31.34999999999990,47.32000000000010,4242.93,631.31,44.9399999999996,72.7600000000001,3827.38,513.5,19.19999999999980,37.77000000000000,3577.62,504.68,17.559999999999900,34.04000000000000,4103.02,830.83,67.58999999999920,109.95000000000000,3864.33,810.85,53.17000000000010,113.82000000000000,3714.74,704.08,46.33000000000040,81.08999999999990,4099.54,603.57,37.96000000000000,65.51000000000000,3466.09,688.0,47.60999999999970,71.44000000000010,2989.43,683.6,46.84000000000020,91.41000000000000,3262.45,542.15,27.95000000000030,48.59000000000000,3430.56,511.2,20.42999999999980,36.53000000000000,3749.62,550.88,22.74000000000020,49.07000000000010,2771.84,531.66,26.759999999999800,42.24000000000000,3710.981186440680,981.7369491525420,21.0,16.73881355932200,3972.49,557.22,21.5,45.51000000000000,4374.89,554.42,19.25999999999930,42.79000000000010 -174,3586.09,714.44,41.88999999999990,100.55000000000000,3454.19,541.75,22.799999999999700,49.60000000000000,3948.7,797.26,49.61000000000010,113.93000000000000,4141.26,743.08,48.80999999999950,98.5,3780.25,634.81,40.40000000000010,67.56000000000010,3899.53,583.73,25.09999999999990,59.85000000000000,4023.27,560.21,31.360000000000100,47.319999999999900,4243.21,631.27,44.93000000000030,72.76000000000000,3828.45,513.61,19.20000000000030,37.77000000000000,3578.02,504.71,17.559999999999900,34.04000000000000,4100.76,831.53,67.59999999999950,109.95000000000000,3865.78,811.97,53.33999999999970,114.13,3713.69,702.95,46.34000000000020,81.08999999999990,4100.08,603.72,37.98999999999980,65.63,3465.58,686.55,47.43000000000030,71.70000000000010,2987.93,683.79,46.83000000000040,91.41000000000010,3261.51,542.23,27.94999999999980,48.59000000000000,3430.81,511.11,20.44000000000010,36.53000000000000,3750.31,550.88,22.73000000000000,49.07000000000010,2771.86,531.75,26.759999999999800,42.24000000000000,3710.0725988700600,981.6747457627120,21.0,16.720734463276800,3972.81,557.21,21.5,45.5,4375.09,554.4,19.25,42.80000000000010 -175,3584.35,713.59,41.88999999999990,100.55000000000000,3454.32,541.68,22.790000000000000,49.60000000000000,3952.82,796.93,49.60999999999970,113.93000000000000,4144.0,742.93,48.39999999999960,98.36,3781.77,634.86,40.5300000000002,67.64000000000000,3899.71,583.67,25.09999999999990,59.85000000000000,4023.79,560.32,31.34999999999990,47.309999999999900,4243.49,631.23,44.93000000000030,72.76000000000000,3829.52,513.72,19.19999999999980,37.77000000000000,3578.42,504.73,17.549999999999700,34.040000000000000,4098.51,832.24,67.59000000000020,109.94000000000000,3867.24,813.08,53.5,114.46000000000000,3712.65,701.82,46.32999999999990,81.08999999999990,4100.63,603.87,38.01000000000020,65.76000000000000,3465.07,685.09,47.25999999999980,71.95999999999990,2986.43,683.98,46.83000000000040,91.41000000000000,3260.57,542.32,27.94999999999980,48.57999999999990,3431.07,511.01,20.42999999999980,36.54000000000000,3751.0,550.89,22.73000000000000,49.06000000000010,2771.88,531.85,26.759999999999800,42.24000000000000,3709.164011299440,981.6125423728810,21.0,16.702655367231600,3973.13,557.19,21.5,45.5,4375.28,554.39,19.26000000000020,42.80000000000010 -176,3582.61,712.74,41.88999999999990,100.56000000000000,3454.44,541.61,22.799999999999700,49.60000000000000,3956.95,796.6,49.60000000000040,113.93000000000000,4146.74,742.77,48.0,98.22000000000000,3783.3,634.86,40.52999999999980,67.64000000000000,3899.89,583.61,25.09999999999990,59.85000000000000,4024.31,560.43,31.34999999999990,47.31000000000010,4243.76,631.19,44.9399999999996,72.75,3830.59,513.84,19.19999999999980,37.77000000000000,3578.81,504.75,17.559999999999900,34.040000000000000,4096.25,832.94,67.59000000000020,109.94000000000000,3871.11,814.35,53.67000000000010,114.76,3711.6,700.69,46.34000000000020,81.08999999999990,4101.17,604.02,38.04000000000000,65.88,3464.56,683.64,47.07999999999990,72.21000000000000,2984.93,684.17,46.83000000000040,91.41000000000010,3259.62,542.4,27.95000000000030,48.59000000000000,3431.33,510.92,20.43000000000030,36.53000000000000,3751.68,550.89,22.74000000000020,49.07000000000010,2771.9,531.94,26.759999999999800,42.239999999999900,3708.2554237288100,981.5503389830510,21.0,16.684576271186400,3973.45,557.17,21.5,45.5,4375.48,554.38,19.25,42.80000000000000 -177,3580.87,711.89,41.89000000000030,100.56000000000000,3454.57,541.54,22.790000000000000,49.60000000000000,3961.07,796.27,49.60999999999970,113.93000000000000,4149.48,742.61,47.59000000000020,98.09000000000010,3784.83,634.87,40.5300000000002,67.64000000000000,3900.07,583.55,25.09999999999990,59.85000000000000,4024.82,560.53,31.35999999999970,47.32000000000010,4244.04,631.15,44.9399999999996,72.75,3831.66,513.95,19.20000000000030,37.77000000000000,3579.21,504.77,17.559999999999900,34.040000000000000,4093.99,833.64,67.60000000000040,109.94000000000000,3874.98,815.61,53.82999999999990,115.08000000000000,3710.56,699.56,46.34000000000020,81.09000000000000,4101.72,604.16,38.05999999999950,66.02000000000000,3464.05,682.18,46.89999999999960,72.47000000000000,2983.43,684.36,46.83000000000040,91.41000000000000,3258.68,542.48,27.95000000000030,48.59000000000000,3431.59,510.83,20.42999999999980,36.53000000000000,3752.37,550.89,22.74000000000020,49.07000000000010,2772.0,531.97,26.76000000000020,42.24000000000000,3707.346836158190,981.4881355932200,21.0,16.66649717514120,3973.78,557.15,21.48999999999980,45.51000000000000,4375.67,554.37,19.26000000000020,42.79000000000000 -178,3579.14,711.05,41.89000000000030,100.55000000000000,3454.69,541.47,22.799999999999700,49.60000000000000,3965.2,795.95,49.60000000000040,113.92000000000000,4152.22,742.45,47.17999999999940,97.94999999999990,3786.36,634.87,40.52999999999980,67.64000000000000,3900.25,583.49,25.09999999999990,59.85000000000000,4025.34,560.64,31.34999999999990,47.31000000000010,4244.32,631.11,44.94000000000050,72.75,3832.73,514.07,19.19000000000010,37.76000000000000,3579.61,504.8,17.559999999999900,34.04000000000000,4091.74,834.34,67.59000000000020,109.95000000000000,3878.85,816.87,53.99000000000020,115.40000000000000,3709.52,698.43,46.32999999999990,81.09000000000000,4102.27,604.31,38.07999999999990,66.1400000000001,3463.54,680.73,46.720000000000300,72.72000000000000,2981.92,684.55,46.84000000000020,91.41000000000010,3257.74,542.56,27.95000000000030,48.59000000000000,3431.84,510.74,20.44000000000010,36.53000000000000,3753.06,550.9,22.73000000000000,49.06000000000010,2772.11,531.99,26.759999999999800,42.24000000000000,3706.438248587570,981.4259322033900,21.0,16.648418079096000,3974.1,557.13,21.49000000000020,45.51000000000000,4375.87,554.35,19.25,42.80000000000000 -179,3577.4,710.2,41.88999999999990,100.55000000000000,3454.82,541.39,22.790000000000000,49.610000000000000,3969.32,795.62,49.60999999999970,113.92000000000000,4154.96,742.29,46.76999999999950,97.82000000000000,3787.88,634.88,40.54000000000000,67.64000000000000,3900.43,583.43,25.090000000000100,59.85000000000000,4025.85,560.74,31.360000000000100,47.319999999999900,4244.6,631.07,44.9399999999996,72.75,3833.8,514.18,19.1899999999996,37.770000000000100,3580.01,504.82,17.559999999999900,34.04000000000000,4089.48,835.04,67.58999999999970,109.95000000000000,3882.73,818.14,54.15000000000010,115.71000000000000,3708.47,697.3,46.34000000000020,81.09000000000000,4102.81,604.46,38.10999999999970,66.26000000000000,3463.02,679.27,46.55000000000020,72.99000000000000,2980.42,684.74,46.82999999999990,91.41000000000000,3256.8,542.64,27.94999999999980,48.59000000000000,3432.1,510.64,20.43000000000030,36.53000000000000,3753.75,550.9,22.73000000000000,49.06000000000010,2772.21,532.02,26.759999999999800,42.24000000000000,3705.5296610169500,981.3637288135590,21.0,16.630338983050800,3974.42,557.11,21.5,45.51000000000000,4376.06,554.34,19.25999999999930,42.80000000000000 -180,3575.66,709.35,41.89000000000030,100.56000000000000,3454.95,541.32,22.790000000000000,49.6099999999999,3973.44,795.29,49.61000000000010,113.92000000000000,4157.71,742.13,46.35999999999970,97.68000000000000,3789.41,634.88,40.54000000000000,67.64000000000000,3900.6,583.37,25.09999999999990,59.85000000000000,4026.37,560.85,31.34999999999990,47.309999999999900,4244.88,631.03,44.93000000000030,72.75,3834.87,514.29,19.19000000000010,37.77000000000000,3580.41,504.84,17.550000000000200,34.04000000000000,4087.22,835.75,67.59999999999990,109.94000000000000,3886.6,819.4,54.309999999999900,116.03000000000000,3707.43,696.17,46.33000000000040,81.09000000000000,4103.36,604.61,38.13000000000010,66.39000000000000,3462.51,677.82,46.37999999999970,73.2399999999999,2978.92,684.93,46.82999999999990,91.41000000000010,3255.86,542.73,27.94999999999980,48.57999999999990,3432.36,510.55,20.42999999999980,36.53000000000000,3754.43,550.9,22.74000000000020,49.07000000000010,2772.32,532.05,26.759999999999800,42.24000000000000,3704.621073446330,981.3015254237290,21.0,16.61225988700570,3974.74,557.09,21.5,45.51000000000000,4376.26,554.33,19.25,42.80000000000000 -181,3573.92,708.5,41.88999999999990,100.56000000000000,3455.07,541.25,22.790000000000000,49.610000000000000,3977.57,794.96,49.59999999999990,113.92000000000000,4160.45,741.97,45.94999999999980,97.55000000000000,3790.94,634.89,40.52999999999980,67.64000000000000,3900.78,583.31,25.09999999999990,59.85000000000000,4026.89,560.96,31.34999999999990,47.309999999999900,4245.16,630.98,44.93000000000030,72.76000000000000,3835.94,514.41,19.19000000000010,37.77000000000000,3580.8,504.87,17.559999999999900,34.040000000000000,4084.97,836.45,67.5900000000006,109.94000000000000,3890.47,820.66,54.470000000000300,116.35000000000000,3706.38,695.04,46.33999999999970,81.09000000000000,4103.9,604.75,38.16000000000080,66.52000000000000,3462.0,676.36,46.19999999999980,73.5,2977.42,685.12,46.82999999999990,91.41000000000000,3254.92,542.81,27.94000000000010,48.59000000000000,3432.62,510.46,20.43000000000030,36.53000000000000,3755.12,550.9,22.73000000000000,49.07000000000010,2772.42,532.08,26.759999999999800,42.24000000000000,3703.7124858757100,981.2393220338980,21.0,16.59418079096050,3975.06,557.07,21.5,45.51000000000000,4376.45,554.32,19.26000000000020,42.79000000000000 -182,3572.18,707.66,41.89000000000030,100.55000000000000,3455.2,541.18,22.790000000000000,49.610000000000000,3981.69,794.63,49.61000000000010,113.93000000000000,4163.19,741.81,45.54000000000000,97.41000000000010,3792.47,634.89,40.5300000000002,67.64000000000000,3900.96,583.25,25.09999999999990,59.85000000000000,4027.4,561.06,31.360000000000100,47.32000000000010,4245.43,630.94,44.9399999999996,72.76000000000000,3837.01,514.52,19.1899999999996,37.77000000000000,3581.2,504.89,17.5600000000004,34.040000000000000,4082.71,837.15,67.59000000000020,109.94000000000000,3894.34,821.93,54.63999999999990,116.66000000000000,3705.34,693.91,46.32999999999990,81.09000000000000,4104.45,604.9,38.18000000000030,66.65000000000000,3461.49,674.91,46.02000000000040,73.75,2975.92,685.31,46.82999999999990,91.41000000000010,3253.97,542.89,27.95000000000030,48.59000000000000,3432.87,510.37,20.44000000000010,36.53000000000000,3755.81,550.91,22.73000000000000,49.06000000000010,2772.52,532.1,26.76000000000020,42.24000000000000,3702.8038983050800,981.1771186440680,21.0,16.576101694915300,3975.38,557.05,21.5,45.51000000000000,4376.65,554.3,19.25,42.80000000000010 -183,3570.45,706.81,41.89000000000030,100.55000000000000,3455.32,541.11,22.790000000000000,49.610000000000000,3985.81,794.3,49.61000000000010,113.93000000000000,4165.93,741.66,45.13000000000010,97.27000000000000,3794.0,634.9,40.5300000000002,67.64000000000000,3901.14,583.19,25.09999999999990,59.84999999999990,4027.92,561.17,31.34999999999990,47.31000000000010,4245.71,630.9,44.9399999999996,72.76000000000000,3838.08,514.63,19.19000000000010,37.77000000000000,3581.6,504.91,17.559999999999900,34.04000000000000,4080.45,837.85,67.60000000000040,109.94000000000000,3898.21,823.19,54.80000000000020,116.9800000000000,3704.29,692.78,46.34000000000020,81.09000000000000,4105.0,605.05,38.19999999999980,66.7700000000001,3460.98,673.45,45.84000000000020,74.02000000000000,2974.42,685.5,46.82999999999990,91.41000000000000,3253.03,542.97,27.94999999999980,48.58999999999990,3433.13,510.27,20.42999999999980,36.53000000000000,3756.5,550.91,22.73000000000000,49.07000000000010,2772.63,532.13,26.759999999999800,42.24000000000000,3701.8953107344600,981.1149152542370,21.0,16.558022598870100,3975.7,557.04,21.5,45.5,4376.84,554.29,19.26000000000020,42.80000000000010 -184,3568.71,705.96,41.88999999999990,100.56000000000000,3455.45,541.04,22.790000000000000,49.610000000000000,3989.94,793.97,49.59999999999990,113.93000000000000,4168.67,741.5,44.72999999999960,97.13,3795.53,634.9,40.52999999999980,67.64000000000000,3901.32,583.13,25.09999999999990,59.85000000000000,4028.43,561.27,31.360000000000100,47.32000000000010,4245.99,630.86,44.94000000000050,72.76000000000000,3839.15,514.75,19.19000000000010,37.77000000000000,3582.0,504.93,17.559999999999900,34.04000000000000,4078.2,838.55,67.59000000000020,109.95000000000000,3902.08,824.45,54.96000000000000,117.29000000000000,3703.25,691.65,46.32999999999990,81.09000000000000,4105.54,605.2,38.23000000000050,66.90000000000000,3460.47,672.0,45.66000000000030,74.27000000000000,2972.91,685.69,46.84000000000020,91.41000000000000,3252.09,543.05,27.94999999999980,48.59000000000000,3433.39,510.18,20.43000000000030,36.53000000000000,3757.18,550.91,22.74000000000020,49.07000000000010,2772.73,532.16,26.759999999999800,42.24000000000000,3700.986723163840,981.0527118644070,21.0,16.53994350282490,3976.02,557.02,21.5,45.5,4377.04,554.28,19.25,42.80000000000010 -185,3566.97,705.11,41.89000000000030,100.56000000000000,3455.57,540.97,22.790000000000000,49.610000000000000,3994.06,793.64,49.61000000000010,113.93000000000000,4171.41,741.34,44.31999999999970,97.0,3797.06,634.91,40.5300000000002,67.64000000000000,3901.5,583.07,25.090000000000100,59.84999999999990,4028.95,561.38,31.350000000000400,47.31000000000010,4246.27,630.82,44.9399999999996,72.76000000000000,3840.22,514.86,19.19000000000010,37.77000000000000,3582.4,504.96,17.549999999999700,34.04000000000000,4075.94,839.25,67.58999999999970,109.95000000000000,3905.95,825.72,55.13000000000010,117.60000000000000,3702.2,690.52,46.34000000000020,81.09000000000000,4106.09,605.34,38.25,67.03000000000000,3459.96,670.55,45.48999999999980,74.5200000000001,2971.41,685.88,46.82999999999990,91.41000000000000,3251.15,543.14,27.94999999999980,48.58000000000000,3433.65,510.09,20.42999999999980,36.53000000000000,3757.87,550.91,22.73000000000000,49.07000000000010,2772.84,532.18,26.759999999999800,42.24000000000000,3700.0781355932200,980.9905084745760,21.0,16.521864406779700,3976.34,557.0,21.5,45.5,4377.23,554.27,19.26000000000020,42.79000000000000 -186,3565.23,704.27,41.88999999999990,100.55000000000000,3455.7,540.9,22.790000000000000,49.610000000000000,3998.18,793.31,49.61000000000010,113.93000000000000,4174.15,741.18,43.91000000000080,96.86,3798.59,634.91,40.52999999999980,67.64000000000000,3901.55,582.94,25.09999999999990,59.84999999999990,4029.47,561.49,31.350000000000400,47.309999999999900,4246.55,630.78,44.9399999999996,72.76000000000000,3841.29,514.97,19.19000000000010,37.77000000000000,3582.79,504.98,17.559999999999900,34.040000000000000,4073.68,839.96,67.59999999999990,109.94000000000000,3909.82,826.98,55.29000000000000,117.92000000000000,3701.16,689.39,46.34000000000020,81.09000000000000,4106.64,605.49,38.26999999999950,67.16000000000000,3459.45,669.09,45.3100000000004,74.78000000000000,2969.91,686.07,46.82999999999990,91.41000000000000,3250.21,543.22,27.94999999999980,48.57999999999990,3433.9,509.99,20.44000000000010,36.54000000000000,3758.56,550.92,22.73000000000000,49.06000000000010,2772.94,532.21,26.759999999999800,42.24000000000000,3699.169548022600,980.9283050847460,21.0,16.503785310734500,3976.66,556.98,21.5,45.51000000000000,4377.43,554.26,19.25,42.79000000000000 -187,3563.49,703.42,41.89000000000030,100.55000000000000,3455.82,540.83,22.790000000000000,49.610000000000000,4002.31,792.99,49.59999999999990,113.92000000000000,4176.89,741.02,43.5,96.73000000000000,3800.12,634.92,40.5300000000002,67.64000000000000,3901.6,582.81,25.09999999999990,59.85000000000000,4029.98,561.59,31.360000000000100,47.309999999999900,4246.83,630.74,44.93000000000030,72.75,3842.36,515.09,19.19000000000010,37.77000000000000,3583.19,505.0,17.559999999999900,34.040000000000000,4071.43,840.66,67.5900000000006,109.94000000000000,3913.69,828.24,55.44999999999980,118.24,3700.12,688.26,46.32999999999990,81.09000000000000,4107.18,605.64,38.29999999999930,67.28000000000000,3458.94,667.64,45.13000000000010,75.03000000000000,2968.41,686.26,46.82999999999990,91.41000000000000,3249.26,543.3,27.94999999999980,48.59000000000000,3434.16,509.9,20.43000000000030,36.53000000000000,3759.24,550.92,22.74000000000020,49.07000000000010,2773.04,532.24,26.76000000000020,42.24000000000000,3698.2609604519800,980.8661016949150,21.0,16.485706214689300,3976.98,556.96,21.5,45.51000000000000,4377.62,554.24,19.26000000000020,42.80000000000000 -188,3561.76,702.57,41.88999999999990,100.56000000000000,3455.95,540.76,22.790000000000000,49.610000000000000,4006.43,792.66,49.61000000000010,113.92000000000000,4179.63,740.86,43.099999999999500,96.59000000000010,3801.65,634.92,40.52999999999980,67.64000000000000,3901.66,582.69,25.100000000000400,59.84999999999990,4030.5,561.7,31.34999999999990,47.309999999999900,4247.11,630.7,44.93000000000030,72.75,3843.43,515.2,19.19000000000010,37.77000000000000,3583.59,505.02,17.559999999999900,34.040000000000000,4069.17,841.36,67.59000000000020,109.94000000000000,3917.57,829.51,55.60999999999970,118.55000000000000,3699.07,687.13,46.33999999999970,81.09000000000000,4107.73,605.79,38.3100000000004,67.41000000000010,3458.43,666.18,44.95000000000030,75.30000000000010,2966.91,686.45,46.82999999999990,91.41000000000000,3248.32,543.38,27.94999999999980,48.59000000000000,3434.42,509.81,20.42999999999980,36.53000000000000,3759.93,550.92,22.73000000000000,49.07000000000010,2773.15,532.27,26.759999999999800,42.24000000000000,3697.352372881360,980.8038983050850,21.0,16.46762711864410,3977.3,556.94,21.5,45.51000000000000,4377.81,554.23,19.25999999999930,42.80000000000000 -189,3560.02,701.72,41.88999999999990,100.56000000000000,3456.07,540.69,22.790000000000000,49.6099999999999,4010.55,792.33,49.60999999999970,113.92000000000000,4180.98,740.4,43.09000000000020,96.60000000000000,3803.18,634.93,40.5300000000002,67.6400000000001,3901.71,582.56,25.09999999999990,59.85000000000000,4031.01,561.8,31.35999999999970,47.32000000000010,4247.38,630.66,44.9399999999996,72.75,3844.5,515.31,19.19000000000010,37.770000000000100,3583.99,505.05,17.550000000000200,34.04000000000000,4066.91,842.06,67.60000000000040,109.94000000000000,3921.44,830.77,55.77000000000000,118.87,3698.03,686.0,46.32999999999990,81.08000000000000,4108.27,605.93,38.33999999999920,67.54000000000010,3457.92,664.73,44.77000000000000,75.55000000000000,2965.4,686.64,46.83999999999970,91.41000000000000,3247.38,543.46,27.94999999999980,48.58999999999990,3434.68,509.72,20.43000000000030,36.53000000000000,3760.62,550.93,22.73000000000000,49.06000000000010,2773.25,532.29,26.76000000000020,42.24000000000000,3696.4437853107300,980.7416949152540,21.0,16.449548022598900,3977.62,556.92,21.5,45.51000000000000,4378.01,554.22,19.26000000000020,42.80000000000000 -190,3558.28,700.88,41.88999999999990,100.55000000000000,3456.2,540.62,22.790000000000000,49.610000000000000,4014.68,792.0,49.60000000000040,113.92000000000000,4182.32,739.95,43.10000000000040,96.58999999999990,3804.7,634.93,40.54000000000000,67.6400000000001,3901.76,582.43,25.09999999999990,59.85000000000000,4031.53,561.91,31.34999999999990,47.31000000000010,4247.66,630.62,44.94000000000050,72.75,3845.57,515.43,19.19000000000010,37.770000000000100,3584.39,505.07,17.550000000000200,34.04000000000000,4064.66,842.76,67.59000000000020,109.95000000000000,3925.31,832.03,55.940000000000100,119.19000000000000,3696.98,684.87,46.34000000000020,81.08000000000000,4108.82,606.08,38.36000000000060,67.67000000000000,3457.41,663.27,44.60000000000040,75.81000000000010,2963.9,686.83,46.82999999999990,91.41000000000000,3246.44,543.54,27.94999999999980,48.59000000000000,3434.98,509.66,20.42999999999980,36.53000000000000,3761.31,550.93,22.73000000000000,49.06000000000010,2773.36,532.32,26.759999999999800,42.239999999999900,3695.5351977401100,980.6794915254240,21.0,16.431468926553700,3977.94,556.9,21.5,45.51000000000000,4378.2,554.21,19.26000000000020,42.79000000000000 -191,3556.54,700.03,41.88999999999990,100.55000000000000,3456.32,540.55,22.790000000000000,49.610000000000000,4018.8,791.67,49.60999999999970,113.93000000000000,4183.67,739.49,43.09000000000020,96.59000000000010,3806.23,634.93,40.54000000000000,67.65000000000010,3901.82,582.3,25.09999999999990,59.85000000000000,4032.05,562.01,31.34999999999990,47.32000000000010,4247.94,630.58,44.94000000000050,72.75,3846.63,515.54,19.19999999999980,37.77000000000000,3584.78,505.09,17.559999999999900,34.04000000000000,4062.4,843.46,67.58999999999970,109.95000000000000,3929.18,833.29,56.10000000000040,119.51,3695.94,683.74,46.32999999999990,81.08000000000000,4109.37,606.23,38.38000000000010,67.79000000000000,3456.89,661.82,44.43000000000030,76.06000000000000,2962.4,687.02,46.82999999999990,91.41000000000000,3245.5,543.63,27.94999999999980,48.58000000000000,3435.29,509.61,20.42999999999980,36.53000000000000,3761.99,550.93,22.74000000000020,49.07000000000010,2773.46,532.35,26.759999999999800,42.24000000000000,3694.6266101694900,980.6172881355930,21.0,16.41338983050850,3978.26,556.88,21.5,45.51000000000000,4378.4,554.19,19.26000000000020,42.80000000000000 -192,3554.8,699.18,41.88999999999990,100.56000000000000,3456.99,540.59,22.79000000000040,49.60000000000000,4022.92,791.34,49.61000000000010,113.93000000000000,4185.01,739.04,43.099999999999500,96.59000000000010,3807.76,634.94,40.54000000000000,67.64000000000000,3901.87,582.17,25.09999999999990,59.85000000000000,4032.56,562.12,31.360000000000100,47.309999999999900,4248.22,630.53,44.9399999999996,72.76000000000000,3848.03,515.63,19.19999999999980,37.77000000000000,3585.18,505.11,17.559999999999900,34.050000000000000,4060.15,844.17,67.58999999999970,109.94000000000000,3933.7,832.9,56.26000000000020,119.82000000000000,3694.89,682.61,46.34000000000020,81.08000000000000,4109.91,606.38,38.409999999999900,67.92000000000000,3456.38,660.36,44.25,76.31999999999990,2960.9,687.21,46.82999999999990,91.41000000000000,3244.56,543.71,27.94000000000010,48.58999999999990,3435.59,509.55,20.42999999999980,36.54000000000000,3762.68,550.93,22.73000000000000,49.07000000000010,2773.57,532.37,26.759999999999800,42.24000000000000,3693.71802259887,980.5550847457630,21.0,16.39531073446330,3978.58,556.87,21.5,45.5,4378.59,554.18,19.26000000000020,42.80000000000010 -193,3553.07,698.33,41.88999999999990,100.56000000000000,3457.65,540.62,22.790000000000000,49.610000000000000,4027.05,791.01,49.59999999999990,113.93000000000000,4186.36,738.58,43.09000000000020,96.58999999999990,3809.29,634.94,40.5300000000002,67.64000000000000,3901.93,582.04,25.090000000000100,59.85000000000000,4033.08,562.23,31.34999999999990,47.309999999999900,4248.5,630.49,44.93000000000030,72.76000000000000,3849.43,515.72,19.20000000000030,37.77000000000000,3585.58,505.14,17.559999999999900,34.040000000000000,4057.89,844.87,67.58999999999970,109.94000000000000,3938.21,832.5,56.42999999999980,120.13,3693.85,681.48,46.34000000000020,81.07999999999990,4110.46,606.52,38.43000000000030,68.05000000000010,3455.87,658.91,44.07000000000020,76.58000000000000,2959.4,687.4,46.82999999999990,91.41000000000000,3243.61,543.79,27.94999999999980,48.59000000000000,3435.9,509.5,20.42999999999980,36.53000000000000,3763.37,550.94,22.73000000000000,49.059999999999900,2773.67,532.4,26.759999999999800,42.24000000000000,3692.8094350282500,980.4928813559320,21.0,16.377231638418100,3978.91,556.85,21.49000000000020,45.5,4378.79,554.17,19.26000000000020,42.80000000000010 -194,3551.33,697.49,41.88999999999990,100.55000000000000,3458.32,540.66,22.790000000000000,49.60000000000000,4031.17,790.68,49.61000000000010,113.93000000000000,4187.7,738.12,43.10000000000040,96.59000000000010,3810.82,634.95,40.52999999999980,67.64000000000000,3901.98,581.91,25.09999999999990,59.85000000000000,4033.59,562.33,31.35999999999970,47.319999999999900,4248.78,630.45,44.93000000000030,72.76000000000000,3850.83,515.81,19.20000000000030,37.770000000000100,3585.98,505.16,17.550000000000200,34.04000000000000,4055.63,845.57,67.59000000000020,109.94000000000000,3942.73,832.1,56.57999999999990,120.45000000000000,3692.81,680.35,46.32999999999990,81.07999999999990,4111.0,606.67,38.46000000000000,68.17000000000010,3455.36,657.45,43.90000000000010,76.83999999999990,2957.9,687.59,46.82999999999990,91.41000000000000,3242.67,543.87,27.94999999999980,48.59000000000000,3436.2,509.45,20.44000000000010,36.53000000000000,3764.05,550.94,22.73999999999980,49.069999999999900,2773.77,532.43,26.76000000000020,42.24000000000000,3691.900847457630,980.4306779661020,21.0,16.359152542372900,3979.23,556.83,21.48999999999980,45.5,4378.98,554.16,19.26000000000020,42.79000000000010 -195,3550.1,696.47,41.88999999999990,100.56000000000000,3458.98,540.69,22.790000000000000,49.6099999999999,4035.29,790.35,49.61000000000010,113.93000000000000,4189.05,737.67,43.09000000000020,96.59000000000010,3812.35,634.95,40.5300000000002,67.64000000000000,3902.03,581.78,25.09999999999990,59.85000000000000,4034.11,562.44,31.34999999999990,47.309999999999900,4249.05,630.41,44.9399999999996,72.76000000000000,3852.23,515.89,19.19000000000010,37.77000000000000,3586.46,505.27,17.559999999999900,34.040000000000000,4053.38,846.27,67.59000000000020,109.95000000000000,3947.24,831.71,56.75,120.76,3691.76,679.22,46.33999999999970,81.07999999999990,4111.55,606.82,38.47999999999960,68.30000000000000,3454.85,656.0,43.720000000000300,77.09000000000000,2956.39,687.78,46.84000000000020,91.40000000000000,3241.73,543.95,27.94999999999980,48.58999999999990,3436.51,509.39,20.42999999999980,36.53000000000000,3764.74,550.94,22.74000000000020,49.069999999999900,2773.88,532.46,26.759999999999800,42.24000000000000,3690.9922598870100,980.3684745762710,21.0,16.341073446327700,3979.55,556.81,21.5,45.510000000000100,4379.18,554.14,19.25999999999930,42.80000000000010 -196,3548.88,695.46,41.88999999999990,100.55000000000000,3459.65,540.73,22.790000000000000,49.60000000000000,4039.42,790.02,49.59999999999990,113.93000000000000,4190.39,737.21,43.099999999999500,96.58999999999990,3813.88,634.96,40.52999999999980,67.64000000000000,3902.09,581.65,25.09999999999990,59.85000000000000,4034.63,562.54,31.34999999999990,47.32000000000010,4249.33,630.37,44.94000000000050,72.76000000000000,3853.63,515.98,19.19000000000010,37.77000000000000,3586.95,505.37,17.550000000000200,34.040000000000000,4051.12,846.97,67.59000000000020,109.95000000000000,3951.76,831.31,56.909999999999900,121.08000000000000,3690.72,678.09,46.33000000000040,81.07999999999990,4112.1,606.97,38.5,68.42000000000000,3454.34,654.55,43.54000000000000,77.34000000000000,2954.89,687.97,46.82999999999990,91.40000000000000,3240.79,544.04,27.94999999999980,48.58000000000000,3436.81,509.34,20.44000000000010,36.53000000000000,3765.43,550.94,22.73000000000000,49.069999999999900,2773.98,532.48,26.759999999999800,42.24000000000000,3690.0836723163800,980.3062711864410,21.0,16.322994350282500,3979.87,556.79,21.5,45.51000000000000,4379.37,554.13,19.26000000000020,42.80000000000000 -197,3547.66,694.44,41.89000000000030,100.56000000000000,3460.31,540.76,22.790000000000000,49.610000000000000,4043.54,789.7,49.61000000000010,113.92000000000000,4191.74,736.75,43.09000000000020,96.60000000000000,3815.41,634.96,40.5300000000002,67.64000000000000,3902.14,581.53,25.09999999999990,59.85000000000000,4035.14,562.65,31.360000000000100,47.31000000000010,4249.61,630.33,44.94000000000050,72.75,3855.03,516.07,19.1899999999996,37.77000000000000,3587.43,505.48,17.559999999999900,34.040000000000000,4047.99,848.17,67.59000000000020,109.94000000000000,3956.28,830.91,57.06999999999970,121.40000000000000,3688.77,677.53,46.34000000000020,81.09000000000000,4112.64,607.11,38.52999999999980,68.56000000000000,3453.83,653.09,43.36000000000010,77.60000000000000,2953.39,688.16,46.82999999999990,91.40000000000000,3239.85,544.12,27.94000000000010,48.59000000000000,3437.12,509.28,20.43000000000030,36.53000000000000,3766.12,550.95,22.73000000000000,49.059999999999900,2774.09,532.51,26.759999999999800,42.24000000000000,3689.175084745760,980.2440677966100,21.0,16.304915254237300,3980.19,556.77,21.5,45.51000000000000,4379.57,554.12,19.26000000000020,42.80000000000000 -198,3546.43,693.43,41.89000000000030,100.55000000000000,3460.97,540.8,22.800000000000200,49.610000000000000,4047.66,789.37,49.61000000000060,113.92000000000000,4193.08,736.3,43.10000000000040,96.59000000000010,3816.94,634.97,40.52999999999980,67.64000000000000,3902.19,581.4,25.09999999999990,59.85000000000000,4035.66,562.76,31.350000000000400,47.31000000000010,4249.89,630.29,44.9399999999996,72.75,3856.43,516.16,19.19000000000010,37.77000000000000,3587.92,505.58,17.549999999999700,34.04000000000000,4044.85,849.36,67.58999999999970,109.95000000000000,3960.79,830.51,57.24000000000020,121.71000000000000,3686.83,676.98,46.32999999999990,81.09000000000000,4113.19,607.26,38.55000000000020,68.68000000000010,3453.32,651.64,43.17999999999980,77.86000000000000,2951.89,688.35,46.82999999999990,91.40000000000000,3238.9,544.2,27.94999999999980,48.58999999999990,3437.42,509.23,20.44000000000010,36.53000000000000,3766.8,550.95,22.73999999999980,49.069999999999900,2774.19,532.54,26.759999999999800,42.24000000000000,3688.2664971751400,980.1818644067800,21.0,16.286836158192100,3980.51,556.75,21.5,45.51000000000000,4379.76,554.11,19.26000000000020,42.79000000000000 -199,3545.21,692.41,41.88999999999990,100.56000000000000,3461.64,540.83,22.790000000000000,49.610000000000000,4053.63,787.88,49.599999999999500,113.93000000000000,4194.43,735.84,43.09000000000020,96.58999999999990,3818.47,634.97,40.5300000000002,67.64000000000000,3902.25,581.27,25.09999999999990,59.85000000000000,4036.17,562.86,31.360000000000100,47.309999999999900,4250.17,630.25,44.9399999999996,72.75,3857.83,516.25,19.19000000000010,37.77000000000000,3588.4,505.69,17.559999999999900,34.04000000000000,4041.72,850.56,67.5900000000006,109.94000000000000,3965.31,830.12,57.40000000000010,122.02000000000000,3684.88,676.43,46.33999999999970,81.08000000000000,4113.74,607.41,38.57000000000060,68.81000000000010,3452.81,650.18,43.01000000000020,78.12,2950.39,688.54,46.82999999999990,91.40000000000010,3237.96,544.28,27.94999999999980,48.59000000000000,3437.73,509.17,20.42999999999980,36.54000000000000,3767.49,550.95,22.73000000000000,49.069999999999900,2774.29,532.56,26.76000000000020,42.24000000000000,3687.35790960452,980.1196610169490,21.0,16.2687570621469,3980.83,556.73,21.5,45.51000000000000,4379.96,554.09,19.26000000000020,42.80000000000000 -200,3543.98,691.4,41.88999999999990,100.55000000000000,3462.3,540.87,22.799999999999700,49.610000000000000,4059.59,786.39,49.599999999999500,113.93000000000000,4195.77,735.39,43.099999999999500,96.59000000000010,3820.0,634.98,40.5300000000002,67.64000000000000,3902.3,581.14,25.09999999999990,59.85000000000000,4036.69,562.97,31.34999999999990,47.309999999999900,4250.45,630.21,44.93000000000030,72.75,3859.22,516.34,19.20000000000030,37.77000000000000,3588.89,505.79,17.550000000000200,34.04000000000000,4038.58,851.75,67.60000000000040,109.95000000000000,3969.83,829.72,57.559999999999900,122.34000000000000,3682.94,675.87,46.32999999999990,81.09000000000000,4114.28,607.55,38.60000000000040,68.94000000000010,3452.3,648.73,42.82999999999990,78.37,2948.88,688.73,46.83999999999970,91.40000000000000,3237.02,544.36,27.94999999999980,48.59000000000000,3438.03,509.12,20.4399999999996,36.53000000000000,3768.18,550.95,22.73000000000000,49.069999999999900,2774.4,532.59,26.759999999999800,42.24000000000000,3686.449322033900,980.0574576271190,21.0,16.2506779661017,3981.15,556.72,21.5,45.5,4380.15,554.08,19.26000000000020,42.80000000000000 -201,3542.76,690.38,41.88999999999990,100.56000000000000,3462.97,540.9,22.79000000000040,49.610000000000000,4065.55,784.91,49.60999999999970,113.92000000000000,4197.12,734.93,43.09000000000020,96.59000000000010,3821.53,634.98,40.52999999999980,67.64000000000000,3902.36,581.01,25.08999999999970,59.85000000000000,4037.21,563.07,31.34999999999990,47.319999999999900,4250.73,630.17,44.93000000000030,72.75,3860.62,516.43,19.20000000000030,37.770000000000100,3589.37,505.9,17.559999999999900,34.04000000000010,4035.45,852.95,67.59000000000020,109.94000000000000,3974.34,829.32,57.7199999999998,122.66000000000000,3680.99,675.32,46.34000000000020,81.08999999999990,4114.83,607.7,38.61999999999990,69.06999999999990,3451.79,647.27,42.65000000000010,78.63,2947.38,688.92,46.82999999999990,91.40000000000010,3236.08,544.45,27.95000000000030,48.57999999999990,3438.34,509.07,20.42999999999980,36.53000000000000,3768.86,550.96,22.73999999999980,49.059999999999900,2774.5,532.62,26.76000000000020,42.24000000000000,3685.5407344632800,979.9952542372880,21.0,16.232598870056500,3981.47,556.7,21.5,45.5,4380.35,554.07,19.25999999999930,42.80000000000000 -202,3541.54,689.37,41.88999999999990,100.55000000000000,3463.63,540.94,22.790000000000000,49.6099999999999,4071.51,783.42,49.60999999999970,113.93000000000000,4198.46,734.47,43.10000000000040,96.58999999999990,3823.05,634.99,40.54000000000000,67.64000000000000,3902.41,580.88,25.100000000000400,59.85000000000000,4037.72,563.18,31.360000000000100,47.31000000000010,4251.0,630.12,44.9399999999996,72.76000000000000,3862.02,516.51,19.19999999999980,37.77000000000000,3589.85,506.0,17.559999999999900,34.040000000000000,4032.32,854.14,67.58999999999970,109.95000000000000,3978.86,828.92,57.87999999999970,122.98000000000000,3679.05,674.77,46.32999999999990,81.08000000000000,4115.37,607.85,38.65000000000060,69.18999999999990,3451.28,645.82,42.4699999999998,78.89000000000000,2945.88,689.11,46.82999999999990,91.40000000000000,3235.14,544.53,27.95000000000030,48.59000000000000,3438.65,509.01,20.42999999999980,36.53000000000000,3769.55,550.96,22.73999999999980,49.069999999999900,2774.61,532.65,26.759999999999800,42.24000000000000,3684.6321468926600,979.9330508474580,21.0,16.214519774011300,3981.79,556.68,21.5,45.5,4380.54,554.06,19.26000000000020,42.79000000000010 -203,3540.31,688.35,41.88999999999990,100.56000000000000,3464.3,540.97,22.790000000000000,49.610000000000000,4077.47,781.94,49.61000000000010,113.92000000000000,4199.81,734.02,43.08999999999920,96.59000000000010,3824.58,634.99,40.54000000000000,67.64000000000000,3902.46,580.75,25.09999999999990,59.85000000000000,4038.24,563.28,31.350000000000400,47.32000000000010,4251.28,630.08,44.94000000000050,72.76000000000000,3863.42,516.6,19.19999999999980,37.77000000000000,3590.34,506.11,17.559999999999900,34.040000000000000,4029.18,855.34,67.59999999999990,109.94000000000000,3983.38,828.53,58.04000000000000,123.28000000000000,3677.1,674.21,46.34000000000020,81.08999999999990,4115.92,608.0,38.67000000000010,69.32000000000010,3450.76,644.36,42.29999999999970,79.15000000000000,2944.38,689.3,46.82999999999990,91.40000000000010,3234.19,544.61,27.94999999999980,48.59000000000000,3438.95,508.96,20.43000000000030,36.53000000000000,3770.24,550.96,22.73000000000000,49.069999999999900,2774.71,532.67,26.759999999999800,42.24000000000000,3683.723559322030,979.8708474576270,21.0,16.19644067796610,3982.11,556.66,21.5,45.51000000000000,4380.74,554.04,19.26000000000020,42.80000000000010 -204,3539.09,687.34,41.88999999999990,100.55000000000000,3464.96,541.01,22.790000000000000,49.610000000000000,4083.43,780.45,49.61000000000010,113.93000000000000,4201.15,733.56,43.10000000000040,96.59000000000010,3826.11,635.0,40.54000000000000,67.64000000000000,3902.52,580.62,25.090000000000100,59.85000000000000,4038.75,563.39,31.360000000000100,47.31000000000010,4251.56,630.04,44.9399999999996,72.76000000000000,3864.82,516.69,19.19000000000010,37.77000000000000,3590.82,506.21,17.559999999999900,34.04000000000000,4026.05,856.54,67.58999999999970,109.94000000000000,3987.89,828.13,58.21000000000000,123.60000000000000,3675.16,673.66,46.32999999999990,81.09000000000000,4116.47,608.14,38.6899999999996,69.45000000000010,3450.25,642.91,42.13000000000010,79.40000000000000,2942.88,689.49,46.82999999999990,91.40000000000000,3233.25,544.69,27.94999999999980,48.58999999999990,3439.26,508.9,20.42999999999980,36.53000000000000,3770.93,550.97,22.73000000000000,49.059999999999900,2774.81,532.7,26.76000000000020,42.24000000000000,3682.8149717514100,979.8086440677970,21.0,16.178361581920900,3982.43,556.64,21.5,45.51000000000000,4380.93,554.03,19.25999999999930,42.80000000000010 -205,3537.86,686.33,41.88999999999990,100.55000000000000,3465.63,541.05,22.790000000000000,49.60000000000000,4089.4,778.96,49.59999999999990,113.93000000000000,4202.5,733.1,43.09000000000020,96.59000000000010,3827.64,635.0,40.5300000000002,67.64000000000000,3902.57,580.49,25.09999999999990,59.85000000000000,4039.27,563.5,31.34999999999990,47.309999999999900,4251.84,630.0,44.9399999999996,72.76000000000000,3866.22,516.78,19.19000000000010,37.77000000000000,3591.31,506.32,17.559999999999900,34.04000000000000,4022.92,857.73,67.59000000000020,109.94000000000000,3992.41,827.73,58.370000000000300,123.92000000000000,3673.21,673.1,46.34000000000020,81.09000000000000,4117.01,608.29,38.71999999999940,69.58000000000000,3449.74,641.45,41.95000000000030,79.66000000000000,2941.38,689.67,46.82999999999990,91.41000000000010,3232.31,544.77,27.95000000000030,48.59000000000000,3439.56,508.85,20.42999999999980,36.53000000000000,3771.61,550.97,22.73999999999980,49.059999999999900,2774.92,532.73,26.759999999999800,42.24000000000000,3681.906384180790,979.746440677966,21.0,16.160282485875700,3982.75,556.62,21.5,45.51000000000000,4381.13,554.02,19.26000000000020,42.80000000000010 -206,3536.64,685.31,41.89000000000030,100.56000000000000,3466.29,541.08,22.790000000000000,49.610000000000000,4095.36,777.48,49.59999999999990,113.92000000000000,4203.84,732.65,43.099999999999500,96.59000000000010,3829.17,635.0,40.52999999999980,67.65000000000000,3902.62,580.37,25.09999999999990,59.84000000000000,4039.79,563.6,31.34999999999990,47.319999999999900,4252.12,629.96,44.93000000000030,72.76000000000000,3867.62,516.87,19.19000000000010,37.77000000000000,3591.79,506.42,17.559999999999900,34.05000000000000,4019.78,858.93,67.59999999999990,109.94000000000000,3996.92,827.33,58.54000000000000,124.24,3671.27,672.55,46.32999999999990,81.09000000000000,4117.56,608.44,38.73999999999980,69.69999999999990,3449.23,640.0,41.77000000000000,79.91000000000000,2939.87,689.86,46.82999999999990,91.41000000000000,3231.37,544.86,27.95000000000030,48.58000000000000,3439.87,508.79,20.43000000000030,36.54000000000000,3772.3,550.97,22.73000000000000,49.069999999999900,2775.02,532.75,26.76000000000020,42.24000000000000,3680.9977966101700,979.6842372881360,21.0,16.142203389830500,3983.07,556.6,21.5,45.51000000000000,4381.32,554.01,19.26000000000020,42.79000000000000 -207,3535.42,684.3,41.88999999999990,100.55000000000000,3466.96,541.12,22.790000000000000,49.60000000000000,4100.46,777.13,49.60999999999970,113.92000000000000,4205.19,732.19,43.09000000000020,96.58999999999990,3830.7,635.01,40.5300000000002,67.64000000000000,3902.68,580.24,25.100000000000400,59.85000000000000,4040.3,563.71,31.35999999999970,47.309999999999900,4252.4,629.92,44.93000000000030,72.76000000000000,3869.02,516.96,19.19000000000010,37.77000000000000,3592.28,506.53,17.559999999999900,34.04000000000010,4016.65,860.12,67.58999999999970,109.95000000000000,4001.44,826.94,58.69999999999980,124.55000000000000,3669.32,672.0,46.33999999999970,81.08000000000000,4118.1,608.59,38.75999999999930,69.82999999999990,3449.87,639.16,41.57999999999990,79.58000000000000,2938.37,690.05,46.82999999999990,91.41000000000010,3230.43,544.94,27.95000000000030,48.57999999999990,3440.17,508.74,20.42999999999980,36.53000000000000,3772.99,550.97,22.73000000000000,49.069999999999900,2775.13,532.78,26.759999999999800,42.24000000000000,3680.089209039550,979.6220338983050,21.0,16.12412429378530,3983.39,556.58,21.5,45.51000000000000,4381.52,553.99,19.25999999999930,42.80000000000000 -208,3534.19,683.28,41.88999999999990,100.56000000000000,3467.62,541.15,22.790000000000000,49.610000000000000,4105.56,776.77,49.60999999999970,113.93000000000000,4206.53,731.73,43.10000000000040,96.60000000000000,3832.23,635.01,40.5300000000002,67.64000000000000,3902.73,580.11,25.09999999999990,59.85000000000000,4040.82,563.81,31.34999999999990,47.32000000000010,4252.67,629.88,44.9399999999996,72.75,3870.42,517.05,19.19000000000010,37.770000000000100,3592.76,506.64,17.559999999999900,34.040000000000000,4013.52,861.32,67.59000000000020,109.94000000000000,4005.96,826.54,58.84999999999990,124.87,3667.38,671.44,46.32999999999990,81.08999999999990,4118.65,608.73,38.780000000000700,69.96000000000000,3450.51,638.32,41.37999999999970,79.2399999999999,2936.87,690.24,46.82999999999990,91.41000000000000,3229.49,545.02,27.94000000000010,48.59000000000000,3440.48,508.69,20.42999999999980,36.53000000000000,3773.68,550.98,22.73000000000000,49.059999999999900,2775.23,532.81,26.759999999999800,42.24000000000000,3679.180621468930,979.5598305084750,21.0,16.106045197740100,3983.71,556.56,21.5,45.510000000000100,4381.71,553.98,19.26000000000020,42.80000000000000 -209,3532.97,682.27,41.89000000000030,100.55000000000000,3468.28,541.19,22.799999999999700,49.59999999999990,4110.67,776.42,49.60000000000040,113.93000000000000,4206.89,731.73,43.099999999999500,96.60000000000000,3833.76,635.02,40.52999999999980,67.64000000000000,3902.79,579.98,25.090000000000100,59.85000000000000,4041.33,563.92,31.360000000000100,47.31000000000010,4252.95,629.84,44.94000000000050,72.75,3871.81,517.14,19.20000000000030,37.76000000000000,3593.25,506.74,17.559999999999900,34.040000000000000,4010.38,862.51,67.59999999999990,109.95000000000000,4010.47,826.14,59.02000000000000,125.18000000000000,3665.43,670.89,46.34000000000020,81.09000000000000,4119.2,608.88,38.80000000000020,70.08000000000000,3451.15,637.48,41.190000000000100,78.90000000000000,2935.37,690.43,46.82999999999990,91.41000000000010,3228.54,545.1,27.94999999999980,48.59000000000000,3440.78,508.63,20.4399999999996,36.53000000000000,3774.36,550.98,22.73999999999980,49.069999999999900,2775.33,532.84,26.76000000000020,42.24000000000000,3678.2720338983100,979.497627118644,21.0,16.087966101694900,3984.04,556.55,21.49000000000020,45.5,4381.91,553.97,19.26000000000020,42.80000000000000 -210,3531.74,681.25,41.89000000000030,100.56000000000000,3468.95,541.22,22.790000000000000,49.610000000000000,4115.77,776.07,49.60999999999970,113.93000000000000,4207.25,731.73,43.10000000000040,96.60000000000000,3835.29,635.02,40.5300000000002,67.64000000000000,3902.84,579.85,25.09999999999990,59.85000000000000,4041.85,564.03,31.34999999999990,47.31000000000010,4253.71,629.84,44.93000000000030,72.75,3873.21,517.22,19.19999999999980,37.77000000000000,3593.73,506.85,17.559999999999900,34.040000000000000,4007.25,863.71,67.59000000000020,109.94000000000000,4014.99,825.74,59.18000000000030,125.5,3663.49,670.34,46.33000000000040,81.07999999999990,4119.74,609.03,38.82999999999990,70.21000000000000,3451.8,636.64,40.98000000000000,78.56000000000010,2933.87,690.62,46.82999999999990,91.41000000000000,3227.6,545.18,27.95000000000030,48.59000000000000,3441.09,508.58,20.42999999999980,36.53000000000000,3775.05,550.98,22.73000000000000,49.069999999999900,2775.44,532.86,26.759999999999800,42.24000000000000,3677.3634463276800,979.4354237288140,21.0,16.06988700564970,3984.33,556.63,21.5,45.5,4382.1,553.96,19.25999999999930,42.79000000000000 -211,3530.52,680.24,41.88999999999990,100.55000000000000,3469.61,541.26,22.799999999999700,49.60000000000000,4120.87,775.72,49.60999999999970,113.93000000000000,4207.61,731.73,43.10000000000040,96.60000000000000,3836.82,635.03,40.52999999999980,67.64000000000000,3902.89,579.72,25.09999999999990,59.85000000000000,4042.37,564.13,31.34999999999990,47.32000000000010,4254.46,629.84,44.9399999999996,72.75,3874.61,517.31,19.19999999999980,37.770000000000100,3594.22,506.95,17.5600000000004,34.04000000000000,4004.12,864.9,67.59000000000020,109.95000000000000,4019.51,825.35,59.33999999999970,125.81000000000000,3661.54,669.78,46.34000000000020,81.09000000000000,4120.29,609.18,38.85000000000040,70.33000000000000,3452.44,635.8,40.79000000000000,78.22000000000000,2932.36,690.81,46.83999999999970,91.41000000000010,3226.66,545.26,27.95000000000030,48.59000000000000,3441.39,508.52,20.44000000000010,36.53000000000000,3775.74,550.98,22.73000000000000,49.069999999999900,2775.54,532.89,26.76000000000020,42.24000000000000,3676.454858757060,979.3732203389830,21.0,16.05180790960450,3984.62,556.7,21.5,45.51000000000000,4382.3,553.94,19.26000000000020,42.80000000000000 -212,3529.3,679.22,41.88999999999990,100.56000000000000,3470.28,541.29,22.790000000000000,49.610000000000000,4125.97,775.37,49.60999999999970,113.92000000000000,4207.97,731.73,43.099999999999500,96.60000000000000,3838.35,635.03,40.5300000000002,67.64000000000000,3902.95,579.59,25.090000000000100,59.85000000000000,4043.64,564.24,31.360000000000100,47.309999999999900,4255.21,629.84,44.9399999999996,72.75,3876.01,517.4,19.19999999999980,37.77000000000000,3594.7,507.06,17.5600000000004,34.04000000000000,4000.98,866.1,67.59000000000020,109.94000000000000,4024.02,824.95,59.51000000000020,126.13,3659.6,669.23,46.32999999999990,81.09000000000000,4120.83,609.32,38.88000000000010,70.46999999999990,3453.08,634.96,40.59000000000020,77.89000000000000,2930.86,691.0,46.82999999999990,91.41000000000000,3225.72,545.35,27.95000000000030,48.57999999999990,3441.7,508.47,20.43000000000030,36.53000000000000,3776.42,550.99,22.73999999999980,49.059999999999900,2775.65,532.92,26.759999999999800,42.24000000000000,3675.5462711864400,979.3110169491530,21.0,16.033728813559300,3984.91,556.78,21.5,45.51000000000000,4382.49,553.93,19.26000000000020,42.80000000000010 -213,3528.07,678.21,41.88999999999990,100.55000000000000,3470.94,541.33,22.790000000000000,49.59999999999990,4131.08,775.02,49.60000000000040,113.92000000000000,4208.33,731.73,43.10000000000040,96.60000000000000,3839.88,635.04,40.52999999999980,67.64000000000000,3903.0,579.46,25.09999999999990,59.84999999999990,4044.92,564.34,31.34999999999990,47.319999999999900,4255.96,629.84,44.9399999999996,72.75,3877.41,517.49,19.19000000000010,37.77000000000000,3595.19,507.16,17.559999999999900,34.04000000000000,3997.85,867.29,67.59000000000020,109.95000000000000,4028.54,824.55,59.67000000000010,126.45000000000000,3657.65,668.68,46.33999999999970,81.08000000000000,4121.38,609.47,38.89999999999960,70.58999999999990,3453.72,634.12,40.40000000000010,77.55000000000000,2929.36,691.19,46.82999999999990,91.41000000000000,3224.78,545.43,27.9399999999996,48.59000000000000,3442.0,508.41,20.44000000000010,36.54000000000000,3777.11,550.99,22.73000000000000,49.069999999999900,2775.75,532.95,26.76000000000020,42.24000000000000,3674.6376836158200,979.248813559322,21.0,16.015649717514100,3985.21,556.86,21.5,45.51000000000000,4382.69,553.92,19.26000000000020,42.80000000000010 -214,3526.85,677.19,41.88999999999990,100.56000000000000,3471.61,541.36,22.790000000000000,49.610000000000000,4136.18,774.67,49.60999999999970,113.92000000000000,4208.69,731.73,43.10000000000040,96.60000000000000,3841.4,635.04,40.54000000000000,67.64000000000000,3903.05,579.33,25.09999999999990,59.84999999999990,4046.19,564.45,31.360000000000100,47.309999999999900,4256.72,629.84,44.92999999999940,72.75,3878.81,517.58,19.19000000000010,37.77000000000000,3595.67,507.27,17.559999999999900,34.040000000000000,3994.71,868.49,67.59999999999990,109.94000000000000,4033.05,824.15,59.83999999999970,126.76,3655.71,668.12,46.32999999999990,81.09000000000000,4121.93,609.62,38.92000000000010,70.72000000000000,3454.36,633.28,40.19999999999980,77.21000000000000,2927.86,691.38,46.82999999999990,91.41000000000000,3223.83,545.51,27.95000000000030,48.59000000000000,3442.31,508.36,20.42999999999980,36.53000000000000,3777.14,550.98,22.73000000000000,49.069999999999900,2775.85,532.97,26.76000000000020,42.24000000000000,3673.729096045200,979.1866101694920,21.0,15.997570621468900,3985.5,556.94,21.5,45.51000000000000,4382.88,553.91,19.26000000000020,42.79000000000010 -215,3525.62,676.18,41.89000000000030,100.55000000000000,3472.27,541.4,22.790000000000000,49.60000000000000,4141.28,774.31,49.61000000000060,113.93000000000000,4209.05,731.73,43.099999999999500,96.60000000000000,3842.93,635.05,40.54000000000000,67.6400000000001,3903.11,579.2,25.09999999999990,59.84999999999990,4047.47,564.56,31.360000000000100,47.31000000000010,4257.47,629.84,44.9399999999996,72.75,3880.21,517.67,19.19000000000010,37.770000000000100,3596.16,507.37,17.550000000000200,34.040000000000000,3991.58,869.68,67.59000000000020,109.95000000000000,4037.57,823.76,59.999999999999500,127.07000000000000,3653.76,667.57,46.33999999999970,81.08999999999990,4122.47,609.77,38.94999999999980,70.84000000000000,3455.0,632.44,40.01000000000020,76.86999999999990,2926.36,691.57,46.82999999999990,91.41000000000000,3222.89,545.59,27.95000000000030,48.58999999999990,3442.61,508.31,20.44000000000010,36.53000000000000,3777.17,550.97,22.73000000000000,49.069999999999900,2775.96,533.0,26.759999999999800,42.24000000000000,3672.8205084745800,979.124406779661,21.0,15.979491525423700,3985.79,557.02,21.5,45.51000000000000,4383.08,553.89,19.26000000000020,42.80000000000010 -216,3524.4,675.17,41.88999999999990,100.55000000000000,3472.94,541.43,22.790000000000000,49.610000000000000,4146.39,773.96,49.599999999999500,113.93000000000000,4209.41,731.73,43.10000000000040,96.60000000000000,3844.46,635.05,40.54000000000000,67.6400000000001,3903.16,579.08,25.100000000000400,59.84999999999990,4048.75,564.66,31.34999999999990,47.31000000000010,4258.22,629.84,44.9399999999996,72.75,3881.61,517.76,19.19000000000010,37.77000000000000,3596.64,507.48,17.559999999999900,34.040000000000000,3988.45,870.88,67.59000000000020,109.94000000000000,4042.09,823.36,60.14999999999960,127.39,3651.82,667.02,46.32999999999990,81.08000000000000,4123.02,609.91,38.96999999999940,70.98000000000000,3455.64,631.6,39.809999999999900,76.53000000000000,2924.86,691.76,46.82999999999990,91.41000000000000,3221.95,545.67,27.95000000000030,48.59000000000000,3442.92,508.25,20.42999999999980,36.53000000000000,3777.19,550.96,22.73999999999980,49.069999999999900,2776.06,533.03,26.76000000000020,42.24000000000000,3671.911920903960,979.0622033898300,21.0,15.961412429378500,3986.09,557.1,21.5,45.51000000000000,4384.82,553.8,19.26000000000020,42.80000000000010 -217,3523.18,674.15,41.89000000000030,100.55000000000000,3473.6,541.47,22.790000000000000,49.610000000000000,4151.49,773.61,49.60000000000040,113.93000000000000,4209.77,731.73,43.099999999999500,96.60000000000000,3845.99,635.06,40.5300000000002,67.6400000000001,3903.21,578.95,25.09999999999990,59.84999999999990,4050.02,564.77,31.360000000000100,47.31000000000010,4258.97,629.84,44.9399999999996,72.75,3883.01,517.84,19.1899999999996,37.77000000000000,3597.13,507.58,17.549999999999700,34.04000000000000,3985.31,872.07,67.59999999999990,109.95000000000000,4046.6,822.96,60.32000000000020,127.71000000000000,3649.87,666.46,46.34000000000020,81.08999999999990,4123.57,610.06,38.99000000000070,71.10000000000000,3456.28,630.76,39.61999999999990,76.20000000000010,2923.35,691.95,46.82999999999990,91.41000000000000,3221.01,545.76,27.94999999999980,48.58000000000000,3443.23,508.2,20.42999999999980,36.53000000000000,3777.22,550.95,22.73000000000000,49.069999999999900,2776.17,533.05,26.759999999999800,42.24000000000000,3671.0033333333300,979.0,21.0,15.943333333333300,3986.38,557.18,21.5,45.510000000000100,4386.56,553.71,19.25999999999930,42.80000000000000 -218,3521.95,673.14,41.89000000000030,100.55000000000000,3474.27,541.5,22.790000000000000,49.610000000000000,4156.59,773.26,49.60999999999970,113.93000000000000,4210.13,731.73,43.099999999999500,96.60000000000000,3847.52,635.06,40.5300000000002,67.6400000000001,3903.27,578.82,25.09999999999990,59.84999999999990,4051.3,564.87,31.34999999999990,47.32000000000010,4259.73,629.84,44.93000000000030,72.75,3884.4,517.93,19.19999999999980,37.770000000000100,3597.61,507.69,17.559999999999900,34.04000000000000,3982.18,873.27,67.59000000000020,109.94000000000000,4051.12,822.57,60.48000000000050,128.02000000000000,3647.93,665.91,46.33000000000040,81.09000000000000,4124.11,610.21,39.02000000000040,71.23000000000000,3456.92,629.92,39.42000000000010,75.86000000000000,2921.85,692.14,46.82999999999990,91.41000000000000,3220.07,545.84,27.94999999999980,48.58999999999990,3443.53,508.14,20.42999999999980,36.53000000000000,3777.25,550.94,22.73000000000000,49.069999999999900,2776.27,533.08,26.76000000000020,42.24000000000000,3670.094745762710,978.9377966101700,21.0,15.925254237288100,3986.67,557.26,21.5,45.5,4388.3,553.62,19.26000000000020,42.80000000000000 -219,3520.73,672.12,41.88999999999990,100.56000000000000,3474.93,541.54,22.790000000000000,49.610000000000000,4161.69,772.91,49.61000000000060,113.93000000000000,4210.49,731.73,43.10000000000040,96.60000000000000,3849.05,635.07,40.52999999999980,67.64000000000000,3903.32,578.69,25.09999999999990,59.84999999999990,4052.58,564.98,31.34999999999990,47.309999999999900,4260.48,629.84,44.94000000000050,72.75,3885.8,518.02,19.19999999999980,37.77000000000000,3598.1,507.79,17.550000000000200,34.05000000000000,3979.05,874.46,67.58999999999970,109.95000000000000,4055.64,822.17,60.63999999999990,128.34000000000000,3645.98,665.36,46.34000000000020,81.08000000000000,4124.66,610.36,39.04000000000000,71.35000000000000,3457.56,629.08,39.23000000000000,75.52000000000000,2920.35,692.33,46.82999999999990,91.41000000000000,3219.58,545.78,27.95000000000030,48.58000000000000,3443.84,508.09,20.42999999999980,36.53000000000000,3777.27,550.93,22.74000000000020,49.07000000000010,2776.37,533.11,26.76000000000020,42.24000000000000,3669.1861581920900,978.8755932203390,21.0,15.907175141243000,3986.97,557.34,21.5,45.5,4390.04,553.53,19.26000000000020,42.79000000000010 -220,3519.5,671.11,41.88999999999990,100.55000000000000,3475.59,541.57,22.799999999999700,49.6099999999999,4166.8,772.56,49.599999999999500,113.92000000000000,4210.63,731.74,43.099999999999500,96.59000000000010,3850.58,635.07,40.5300000000002,67.64000000000000,3903.38,578.56,25.08999999999970,59.85000000000000,4053.85,565.08,31.360000000000100,47.319999999999900,4261.23,629.84,44.94000000000050,72.75,3887.2,518.11,19.20000000000030,37.77000000000000,3598.58,507.9,17.559999999999900,34.04000000000010,3974.14,878.11,67.59999999999990,107.86,4060.15,821.77,60.809999999999900,128.65000000000000,3644.04,664.8,46.32999999999990,81.09000000000000,4125.2,610.5,39.07000000000060,71.49000000000000,3458.2,628.24,39.0300000000002,75.18000000000000,2918.85,692.52,46.82999999999990,91.41000000000000,3219.09,545.71,27.94999999999980,48.58999999999990,3444.14,508.03,20.43000000000030,36.54000000000010,3777.3,550.92,22.73000000000000,49.07000000000010,2776.48,533.14,26.759999999999800,42.24000000000000,3668.277570621470,978.8133898305080,21.0,15.889096045197800,3987.26,557.42,21.5,45.5,4390.23,553.44,19.26000000000020,42.79000000000000 -221,3518.28,670.09,41.88999999999990,100.56000000000000,3476.26,541.61,22.790000000000000,49.610000000000000,4171.9,772.21,49.61000000000060,113.92000000000000,4210.77,731.75,43.08999999999920,96.59000000000010,3852.11,635.08,40.52999999999980,67.64000000000000,3903.43,578.43,25.100000000000400,59.85000000000000,4055.13,565.19,31.34999999999990,47.309999999999900,4261.98,629.84,44.94000000000050,72.75,3888.6,518.2,19.20000000000030,37.77000000000000,3599.07,508.01,17.549999999999700,34.040000000000000,3969.24,881.75,67.59000000000020,105.78000000000000,4064.67,821.37,60.970000000000300,128.97000000000000,3642.09,664.25,46.33999999999970,81.09000000000000,4125.75,610.65,39.09000000000020,71.61000000000000,3458.84,627.4,38.83999999999970,74.84000000000000,2917.35,692.71,46.82999999999990,91.41000000000000,3218.61,545.65,27.94999999999980,48.59000000000000,3444.45,507.98,20.43000000000030,36.53000000000000,3777.33,550.91,22.73000000000000,49.06000000000010,2776.58,533.16,26.76000000000020,42.24000000000000,3667.3689830508500,978.7511864406780,21.0,15.871016949152600,3987.55,557.5,21.5,45.5,4390.42,553.34,19.26000000000020,42.80000000000000 -222,3517.06,669.08,41.88999999999990,100.55000000000000,3476.92,541.64,22.799999999999700,49.610000000000000,4177.0,771.86,49.60999999999970,113.92000000000000,4210.9,731.76,43.10000000000040,96.59000000000010,3853.64,635.08,40.5300000000002,67.64000000000000,3903.48,578.3,25.09999999999990,59.85000000000000,4056.41,565.3,31.350000000000400,47.31000000000010,4262.74,629.84,44.93000000000030,72.75,3890.0,518.29,19.19000000000010,37.77000000000000,3599.55,508.11,17.559999999999900,34.040000000000000,3964.34,885.39,67.58999999999970,103.70000000000000,4069.18,820.98,61.13999999999990,129.28000000000000,3642.18,663.74,46.33000000000040,81.09000000000000,4126.3,610.8,39.10999999999970,71.74000000000000,3459.48,626.57,38.63999999999990,74.5,2915.84,692.9,46.83999999999970,91.41000000000000,3218.12,545.59,27.95000000000030,48.58999999999990,3444.75,507.93,20.44000000000010,36.53000000000000,3777.35,550.9,22.74000000000020,49.06000000000010,2776.69,533.19,26.759999999999800,42.239999999999900,3666.460395480230,978.6889830508480,21.0,15.85293785310740,3987.85,557.57,21.5,45.51000000000000,4390.61,553.25,19.26000000000020,42.80000000000000 -223,3515.83,668.06,41.88999999999990,100.56000000000000,3477.59,541.68,22.790000000000000,49.610000000000000,4182.11,771.5,49.60000000000040,113.93000000000000,4211.04,731.76,43.10000000000040,96.60000000000000,3855.17,635.08,40.52999999999980,67.65000000000000,3903.54,578.17,25.09999999999990,59.85000000000000,4057.68,565.4,31.360000000000100,47.32000000000010,4263.49,629.84,44.94000000000050,72.75,3891.4,518.38,19.19000000000010,37.77000000000000,3600.04,508.22,17.550000000000200,34.040000000000000,3959.43,889.03,67.59000000000020,101.62,4073.7,820.58,61.29000000000000,129.6000000000000,3642.27,663.24,46.32999999999990,81.08000000000000,4126.84,610.95,39.13999999999940,71.8599999999999,3460.13,625.73,38.440000000000100,74.16000000000000,2914.34,693.09,46.82999999999990,91.41000000000000,3217.63,545.53,27.94999999999980,48.58000000000000,3445.06,507.87,20.42999999999980,36.53000000000000,3777.38,550.89,22.73000000000000,49.06000000000010,2776.79,533.22,26.76000000000020,42.24000000000000,3665.5518079096000,978.6267796610170,21.0,15.834858757062200,3988.14,557.65,21.5,45.51000000000000,4390.8,553.16,19.25,42.80000000000010 -224,3514.61,667.05,41.88999999999990,100.55000000000000,3478.25,541.72,22.790000000000000,49.60000000000000,4187.21,771.15,49.60000000000040,113.93000000000000,4211.18,731.77,43.09000000000020,96.59000000000010,3856.7,635.09,40.5300000000002,67.64000000000000,3903.59,578.04,25.09999999999990,59.85000000000000,4058.96,565.51,31.34999999999990,47.31000000000010,4264.24,629.84,44.94000000000050,72.75,3892.8,518.46,19.1899999999996,37.77000000000000,3600.52,508.32,17.559999999999900,34.04000000000000,3954.53,892.67,67.58999999999970,99.53000000000010,4077.64,819.61,61.46000000000050,129.91000000000000,3642.35,662.73,46.34000000000020,81.09000000000000,4127.39,611.09,39.159999999999900,72.0,3460.77,624.89,38.24000000000020,73.82000000000010,2912.84,693.28,46.82999999999990,91.41000000000010,3217.15,545.46,27.94999999999980,48.58999999999990,3445.36,507.82,20.44000000000010,36.53000000000000,3777.41,550.88,22.73000000000000,49.06000000000010,2776.89,533.24,26.76000000000020,42.24000000000000,3664.643220338980,978.5645762711860,21.0,15.816779661017000,3988.43,557.73,21.5,45.51000000000000,4390.98,553.07,19.26000000000020,42.80000000000000 -225,3513.38,666.03,41.88999999999990,100.56000000000000,3478.92,541.75,22.790000000000000,49.610000000000000,4192.31,770.8,49.60999999999970,113.93000000000000,4211.31,731.78,43.099999999999500,96.59000000000010,3858.23,635.09,40.5300000000002,67.64000000000000,3903.64,577.92,25.09999999999990,59.85000000000000,4060.24,565.61,31.350000000000400,47.319999999999900,4264.99,629.84,44.94000000000050,72.75,3894.2,518.55,19.19000000000010,37.770000000000100,3601.01,508.43,17.549999999999700,34.04000000000000,3949.62,896.31,67.59999999999990,97.45000000000010,4081.59,818.64,61.60999999999970,130.23000000000000,3642.44,662.23,46.34000000000020,81.07999999999990,4127.93,611.24,39.1899999999996,72.12,3461.41,624.05,38.05000000000020,73.48000000000000,2911.34,693.47,46.82999999999990,91.41000000000000,3216.66,545.4,27.95000000000030,48.59000000000000,3445.67,507.76,20.42999999999980,36.53000000000000,3777.88,550.87,22.73000000000000,49.059999999999900,2777.0,533.27,26.76000000000020,42.24000000000000,3663.7346327683600,978.5023728813560,21.0,15.798700564971800,3988.73,557.81,21.48999999999980,45.510000000000100,4391.17,552.98,19.26000000000020,42.79000000000000 -226,3512.16,665.02,41.89000000000030,100.55000000000000,3479.58,541.79,22.790000000000000,49.60000000000000,4197.41,770.45,49.61000000000060,113.93000000000000,4211.45,731.79,43.10000000000040,96.59000000000010,3859.75,635.1,40.54000000000000,67.64000000000000,3903.7,577.79,25.100000000000400,59.85000000000000,4061.51,565.72,31.35999999999970,47.309999999999900,4265.75,629.84,44.93000000000030,72.75,3895.6,518.64,19.19000000000010,37.77000000000000,3601.49,508.53,17.5600000000004,34.04000000000010,3944.72,899.95,67.59000000000020,95.37,4085.53,817.66,61.7800000000002,130.55000000000000,3642.53,661.72,46.32999999999990,81.08999999999990,4128.48,611.39,39.21000000000000,72.24000000000000,3462.05,623.21,37.84999999999990,73.14000000000000,2909.84,693.66,46.82999999999990,91.41000000000010,3216.17,545.34,27.94999999999980,48.58999999999990,3445.97,507.71,20.44000000000010,36.53000000000000,3778.35,550.86,22.73000000000000,49.059999999999900,2777.1,533.3,26.76000000000020,42.24000000000000,3662.8260451977400,978.4401694915250,21.0,15.78062146892660,3989.02,557.89,21.5,45.51000000000000,4391.36,552.88,19.26000000000020,42.80000000000000 -227,3510.94,664.0,41.88999999999990,100.56000000000000,3480.25,541.82,22.790000000000000,49.6099999999999,4202.52,770.1,49.599999999999500,113.93000000000000,4211.59,731.79,43.09000000000020,96.60000000000000,3861.28,635.1,40.54000000000000,67.64000000000000,3903.75,577.66,25.09999999999990,59.85000000000000,4062.79,565.83,31.34999999999990,47.309999999999900,4266.5,629.84,44.9399999999996,72.75,3896.99,518.73,19.20000000000030,37.77000000000000,3601.97,508.64,17.5600000000004,34.040000000000000,3939.82,903.59,67.58999999999970,93.29000000000000,4089.47,816.69,61.940000000000100,130.8700000000000,3642.62,661.22,46.32999999999990,81.07999999999990,4129.03,611.54,39.220000000000300,72.37,3462.69,622.37,37.659999999999900,72.81000000000000,2908.34,693.85,46.82999999999990,91.41000000000000,3215.69,545.28,27.94999999999980,48.59000000000000,3446.28,507.65,20.42999999999980,36.54000000000010,3778.81,550.85,22.74000000000020,49.059999999999900,2777.21,533.33,26.759999999999800,42.24000000000000,3661.917457627120,978.3779661016950,21.0,15.762542372881400,3989.31,557.97,21.5,45.51000000000000,4391.55,552.79,19.26000000000020,42.80000000000010 -228,3509.71,662.99,41.88999999999990,100.55000000000000,3480.91,541.86,22.790000000000000,49.60000000000000,4207.62,769.75,49.60999999999970,113.92000000000000,4211.73,731.8,43.09000000000020,96.59000000000010,3862.81,635.11,40.54000000000000,67.64000000000000,3903.81,577.53,25.090000000000100,59.85000000000000,4064.07,565.93,31.34999999999990,47.31000000000010,4267.25,629.84,44.9399999999996,72.75,3898.39,518.82,19.20000000000030,37.77000000000000,3602.46,508.74,17.559999999999900,34.040000000000000,3934.91,907.23,67.60000000000040,91.21000000000000,4093.42,815.72,62.10000000000040,131.18000000000000,3642.7,660.71,46.34000000000020,81.08999999999990,4129.57,611.68,39.25,72.5,3463.33,621.53,37.46000000000000,72.47000000000000,2906.83,694.04,46.82999999999990,91.41000000000010,3215.2,545.22,27.95000000000030,48.57999999999990,3446.58,507.6,20.44000000000010,36.53000000000000,3779.28,550.84,22.73999999999980,49.059999999999900,2777.31,533.35,26.76000000000020,42.24000000000000,3661.008870056500,978.3157627118640,21.0,15.744463276836200,3989.61,558.05,21.48999999999980,45.51000000000000,4391.74,552.7,19.26000000000020,42.80000000000000 -229,3508.49,661.98,41.89000000000030,100.55000000000000,3481.58,541.89,22.790000000000000,49.610000000000000,4212.72,769.4,49.60999999999970,113.92000000000000,4211.86,731.81,43.10000000000040,96.59000000000010,3864.34,635.11,40.52999999999980,67.64000000000000,3903.86,577.4,25.09999999999990,59.85000000000000,4065.34,566.04,31.35999999999970,47.31000000000010,4268.0,629.84,44.9399999999996,72.75,3899.79,518.91,19.19999999999980,37.77000000000000,3602.94,508.85,17.559999999999900,34.040000000000000,3930.01,910.87,67.58999999999970,89.13,4097.36,814.75,62.26000000000020,131.49,3642.79,660.2,46.34000000000020,81.08999999999990,4130.12,611.83,39.27000000000040,72.63,3463.97,620.69,37.27000000000000,72.13,2905.33,694.23,46.82999999999990,91.40000000000000,3214.71,545.15,27.94999999999980,48.59000000000000,3446.89,507.55,20.43000000000030,36.53000000000000,3779.75,550.83,22.73999999999980,49.059999999999900,2777.41,533.38,26.76000000000020,42.24000000000000,3660.1002824858800,978.2535593220340,21.0,15.726384180791000,3989.9,558.13,21.5,45.5,4391.89,552.67,19.25999999999930,42.80000000000010 -230,3507.26,660.96,41.88999999999990,100.55000000000000,3482.24,541.93,22.79000000000040,49.60000000000000,4217.83,769.04,49.60000000000040,113.93000000000000,4212.0,731.82,43.09000000000020,96.58999999999990,3865.87,635.12,40.5300000000002,67.64000000000000,3903.91,577.27,25.100000000000400,59.85000000000000,4066.62,566.14,31.350000000000400,47.32000000000010,4268.76,629.84,44.92999999999940,72.75,3901.19,519.0,19.19999999999980,37.77000000000000,3603.43,508.95,17.559999999999900,34.04000000000000,3924.15,912.56,67.58999999999970,87.44000000000010,4101.3,813.78,62.42999999999940,131.81000000000000,3642.88,659.7,46.32999999999990,81.08999999999990,4130.67,611.98,39.29000000000000,72.75,3464.61,619.85,37.06999999999970,71.79000000000000,2903.83,694.42,46.82999999999990,91.40000000000010,3214.23,545.09,27.94999999999980,48.58999999999990,3447.2,507.49,20.43000000000030,36.53000000000000,3780.22,550.82,22.73000000000000,49.059999999999900,2777.52,533.41,26.76000000000020,42.24000000000000,3659.191694915250,978.1913559322030,21.0,15.708305084745800,3990.19,558.21,21.5,45.5,4392.05,552.64,19.26000000000020,42.80000000000010 -231,3506.04,659.95,41.88999999999990,100.55000000000000,3482.9,541.96,22.799999999999700,49.610000000000000,4222.93,768.69,49.599999999999500,113.93000000000000,4212.14,731.82,43.08999999999920,96.59999999999990,3867.4,635.12,40.52999999999980,67.64000000000000,3903.97,577.14,25.100000000000400,59.85000000000000,4067.89,566.25,31.360000000000100,47.309999999999900,4269.51,629.84,44.9399999999996,72.75,3902.13,519.08,19.19999999999980,37.77000000000000,3603.91,509.06,17.559999999999900,34.04000000000000,3918.29,914.26,67.59000000000020,85.74000000000000,4105.24,812.81,62.59000000000020,132.12,3642.97,659.19,46.33000000000040,81.08999999999990,4131.21,612.12,39.31999999999970,72.89000000000000,3465.25,619.01,36.88000000000010,71.45000000000010,2902.33,694.61,46.82999999999990,91.40000000000000,3213.74,545.03,27.95000000000030,48.59000000000000,3447.5,507.44,20.42999999999980,36.53000000000000,3780.69,550.81,22.73000000000000,49.06000000000010,2777.62,533.43,26.76000000000020,42.24000000000000,3658.2831073446300,978.1291525423730,21.0,15.690225988700600,3990.48,558.29,21.5,45.5,4392.21,552.61,19.26000000000020,42.80000000000000 -232,3504.82,658.93,41.88999999999990,100.56000000000000,3483.57,542.0,22.790000000000000,49.60000000000000,4228.03,768.34,49.61000000000060,113.93000000000000,4212.27,731.83,43.099999999999500,96.58999999999990,3868.93,635.13,40.5300000000002,67.64000000000000,3904.02,577.01,25.09999999999990,59.85000000000000,4069.17,566.35,31.35999999999970,47.319999999999900,4270.26,629.84,44.9399999999996,72.75,3903.08,519.17,19.19000000000010,37.770000000000100,3604.4,509.17,17.559999999999900,34.04000000000000,3912.43,915.95,67.59000000000020,84.05000000000000,4109.19,811.84,62.75,132.44000000000000,3643.05,658.69,46.33999999999970,81.07999999999990,4131.76,612.27,39.34000000000020,73.01000000000000,3465.89,618.17,36.68000000000030,71.12,2900.83,694.8,46.82999999999990,91.40000000000010,3213.25,544.97,27.94999999999980,48.57999999999990,3447.81,507.38,20.42999999999980,36.53000000000000,3781.16,550.8,22.73000000000000,49.06000000000010,2777.73,533.46,26.759999999999800,42.24000000000000,3657.3745197740100,978.0669491525420,21.0,15.672146892655400,3990.78,558.37,21.5,45.5,4392.36,552.58,19.26000000000020,42.79000000000000 -233,3503.59,657.92,41.88999999999990,100.55000000000000,3484.23,542.03,22.800000000000200,49.610000000000000,4233.13,767.99,49.60999999999970,113.93000000000000,4212.41,731.84,43.09000000000020,96.58999999999990,3870.46,635.13,40.52999999999980,67.64000000000000,3904.07,576.88,25.09999999999990,59.85000000000000,4070.45,566.46,31.350000000000400,47.309999999999900,4271.01,629.84,44.9399999999996,72.75,3904.02,519.26,19.19000000000010,37.77000000000000,3604.88,509.27,17.559999999999900,34.040000000000000,3906.56,917.64,67.59999999999990,82.36000000000000,4113.13,810.87,62.909999999999900,132.75,3643.14,658.18,46.34000000000020,81.09000000000000,4132.3,612.42,39.36999999999990,73.14000000000000,3466.53,617.33,36.48999999999980,70.78000000000000,2899.32,694.99,46.83999999999970,91.40000000000000,3212.77,544.9,27.94999999999980,48.59000000000000,3448.11,507.33,20.42999999999980,36.53000000000000,3781.63,550.79,22.73000000000000,49.06000000000010,2777.83,533.49,26.76000000000020,42.24000000000000,3656.46593220339,978.0047457627120,21.0,15.654067796610200,3991.07,558.44,21.5,45.51000000000000,4392.52,552.55,19.25999999999930,42.79000000000010 -234,3502.37,656.9,41.89000000000030,100.56000000000000,3484.9,542.07,22.790000000000000,49.59999999999990,4238.24,767.64,49.60000000000040,113.93000000000000,4212.55,731.85,43.09000000000020,96.59000000000010,3871.99,635.14,40.5300000000002,67.64000000000000,3904.13,576.76,25.09999999999990,59.85000000000000,4071.72,566.57,31.360000000000100,47.309999999999900,4271.46,629.94,44.9399999999996,72.75,3904.96,519.35,19.19000000000010,37.77000000000000,3605.37,509.38,17.559999999999900,34.040000000000000,3900.7,919.33,67.59000000000020,80.67000000000000,4117.07,809.9,63.07999999999990,133.07000000000000,3643.23,657.68,46.32999999999990,81.08000000000000,4132.85,612.57,39.38999999999940,73.26000000000000,3467.17,616.49,36.29000000000000,70.43999999999990,2897.82,695.18,46.82999999999990,91.40000000000010,3212.28,544.84,27.94999999999980,48.58999999999990,3448.54,507.13,20.42999999999980,36.53000000000000,3782.1,550.78,22.73000000000000,49.06000000000010,2777.94,533.52,26.759999999999800,42.24000000000000,3655.5573446327700,977.9425423728810,21.0,15.635988700565000,3991.36,558.52,21.5,45.51000000000000,4392.68,552.52,19.25999999999930,42.79000000000000 -235,3501.14,655.89,41.89000000000030,100.55000000000000,3485.56,542.1,22.800000000000200,49.610000000000000,4243.34,767.29,49.60999999999970,113.92000000000000,4212.68,731.86,43.099999999999500,96.59000000000010,3873.52,635.14,40.5300000000002,67.64000000000000,3904.18,576.63,25.100000000000400,59.85000000000000,4073.0,566.67,31.35999999999970,47.32000000000010,4271.91,630.04,44.94000000000050,72.75,3905.9,519.44,19.19999999999980,37.77000000000000,3605.85,509.48,17.559999999999900,34.040000000000000,3894.84,921.03,67.58999999999970,78.97000000000000,4121.01,808.92,63.25,133.39,3643.32,657.17,46.32999999999990,81.09000000000000,4133.4,612.71,39.41000000000080,73.40000000000000,3467.81,615.65,36.09999999999990,70.10000000000000,2896.32,695.37,46.82999999999990,91.40000000000000,3211.79,544.78,27.94999999999980,48.59000000000000,3448.96,506.93,20.44000000000010,36.53000000000000,3782.57,550.77,22.73000000000000,49.06000000000010,2778.04,533.54,26.76000000000020,42.24000000000000,3654.648757062150,977.8803389830510,21.0,15.617909604519800,3991.66,558.6,21.5,45.51000000000000,4392.83,552.49,19.26000000000020,42.79000000000000 -236,3501.36,655.25,41.88999999999990,100.56000000000000,3486.23,542.14,22.790000000000000,49.610000000000000,4248.44,766.94,49.61000000000060,113.92000000000000,4212.82,731.86,43.09000000000020,96.59000000000010,3875.05,635.15,40.52999999999980,67.64000000000000,3904.24,576.5,25.090000000000100,59.85000000000000,4074.28,566.78,31.34999999999990,47.31000000000010,4272.36,630.13,44.94000000000050,72.76000000000000,3906.84,519.53,19.19999999999980,37.77000000000000,3606.34,509.59,17.559999999999900,34.04000000000000,3888.98,922.72,67.59000000000020,77.28000000000000,4124.96,807.95,63.39999999999960,133.71000000000000,3643.4,656.66,46.33999999999970,81.09000000000000,4133.94,612.86,39.44000000000050,73.52000000000000,3468.46,614.81,35.88999999999990,69.7600000000001,2894.82,695.56,46.82999999999990,91.40000000000010,3211.31,544.72,27.95000000000030,48.58999999999990,3449.39,506.73,20.43000000000030,36.53000000000000,3783.03,550.76,22.73999999999980,49.06000000000010,2778.14,533.57,26.76000000000020,42.239999999999900,3653.7401694915300,977.8181355932200,21.0,15.599830508474600,3991.95,558.68,21.5,45.510000000000100,4392.99,552.46,19.26000000000020,42.79000000000000 -237,3501.57,654.62,41.88999999999990,100.56000000000000,3486.89,542.17,22.790000000000000,49.610000000000000,4253.55,766.59,49.599999999999500,113.92000000000000,4212.96,731.87,43.09000000000020,96.59000000000010,3876.58,635.15,40.5300000000002,67.64000000000000,3904.29,576.37,25.09999999999990,59.85000000000000,4074.5,566.76,31.350000000000400,47.430000000000100,4272.81,630.23,44.9399999999996,72.76000000000000,3907.79,519.62,19.19000000000010,37.77000000000000,3606.82,509.69,17.559999999999900,34.04000000000000,3883.12,924.41,67.59000000000020,75.59000000000000,4128.9,806.98,63.57000000000060,134.02000000000000,3643.49,656.16,46.34000000000020,81.09000000000000,4134.49,613.01,39.46000000000000,73.65000000000000,3469.1,613.97,35.70000000000030,69.43000000000000,2893.32,695.75,46.82999999999990,91.40000000000000,3210.82,544.66,27.94999999999980,48.58000000000000,3449.82,506.53,20.42999999999980,36.53000000000000,3783.5,550.74,22.73999999999980,49.069999999999900,2778.25,533.6,26.76000000000020,42.24000000000000,3652.831581920900,977.7559322033900,21.0,15.5817514124294,3992.24,558.76,21.5,45.51000000000000,4393.15,552.42,19.26000000000020,42.80000000000010 -238,3501.78,653.99,41.88999999999990,100.55000000000000,3487.56,542.21,22.790000000000000,49.610000000000000,4258.65,766.23,49.60000000000040,113.93000000000000,4213.09,731.88,43.099999999999500,96.59000000000010,3878.1,635.16,40.54000000000000,67.64000000000000,3904.34,576.24,25.09999999999990,59.85000000000000,4074.72,566.74,31.3400000000006,47.54000000000000,4273.26,630.33,44.9399999999996,72.76000000000000,3908.73,519.71,19.19000000000010,37.76000000000000,3607.31,509.8,17.559999999999900,34.04000000000000,3877.26,926.1,67.58999999999970,73.90000000000000,4132.1,805.84,63.31999999999970,133.52000000000000,3643.58,655.65,46.32999999999990,81.09000000000000,4135.03,613.16,39.49000000000070,73.77000000000000,3469.74,613.13,35.5,69.09000000000000,2891.82,695.94,46.82999999999990,91.40000000000000,3210.34,544.59,27.94000000000010,48.58999999999990,3450.24,506.33,20.44000000000010,36.53000000000000,3783.97,550.73,22.73000000000000,49.069999999999900,2778.35,533.62,26.76000000000020,42.24000000000000,3651.9229943502800,977.6937288135590,21.0,15.563672316384200,3992.54,558.84,21.5,45.51000000000000,4393.31,552.39,19.25,42.80000000000010 -239,3501.99,653.36,41.89000000000030,100.55000000000000,3488.22,542.24,22.79000000000040,49.610000000000000,4262.39,765.66,49.60999999999970,113.93000000000000,4213.23,731.89,43.09000000000020,96.59000000000010,3879.63,635.16,40.54000000000000,67.64000000000000,3904.4,576.11,25.08999999999970,59.85000000000000,4074.94,566.73,31.330000000000400,47.65000000000000,4273.71,630.43,44.9399999999996,72.7600000000001,3909.67,519.79,19.19999999999980,37.77000000000000,3607.79,509.9,17.559999999999900,34.04000000000010,3871.39,927.79,67.59999999999990,72.21000000000000,4135.3,804.69,63.06999999999970,133.02000000000000,3643.67,655.15,46.32999999999990,81.08000000000000,4135.58,613.3,39.51000000000020,73.91000000000010,3470.38,612.29,35.309999999999900,68.75,2890.31,696.12,46.82999999999990,91.41000000000000,3209.85,544.53,27.95000000000030,48.59000000000000,3450.67,506.13,20.42999999999980,36.53000000000000,3784.44,550.72,22.73000000000000,49.069999999999900,2778.46,533.65,26.759999999999800,42.24000000000000,3651.014406779660,977.6315254237290,21.0,15.545593220339000,3992.83,558.92,21.5,45.51000000000000,4393.46,552.36,19.26000000000020,42.80000000000000 -240,3502.21,652.72,41.88000000000010,100.56000000000000,3488.89,542.28,22.790000000000000,49.610000000000000,4266.14,765.09,49.599999999999500,113.92000000000000,4213.37,731.89,43.09000000000020,96.59000000000010,3881.16,635.16,40.54000000000000,67.65000000000000,3904.45,575.98,25.100000000000400,59.85000000000000,4075.17,566.71,31.31999999999970,47.76000000000000,4274.16,630.53,44.94000000000050,72.76000000000000,3910.61,519.88,19.19999999999980,37.77000000000000,3608.28,510.01,17.549999999999700,34.040000000000000,3865.53,929.49,67.59999999999990,70.51000000000000,4138.5,803.54,62.82999999999990,132.5300000000000,3643.75,654.64,46.34000000000020,81.09000000000000,4136.13,613.45,39.52999999999980,74.03000000000000,3471.02,611.45,35.11000000000010,68.41000000000000,2888.81,696.31,46.82999999999990,91.41000000000010,3209.36,544.47,27.94999999999980,48.58999999999990,3451.1,505.93,20.43000000000030,36.54000000000000,3784.91,550.71,22.73000000000000,49.069999999999900,2778.56,533.68,26.76000000000020,42.24000000000000,3650.1058192090400,977.5693220338980,21.0,15.527514124293800,3993.12,559.0,21.5,45.5,4393.62,552.33,19.26000000000020,42.80000000000000 -241,3502.42,652.09,41.88999999999990,100.55000000000000,3489.55,542.31,22.790000000000000,49.610000000000000,4269.88,764.51,49.60999999999970,113.93000000000000,4213.5,731.9,43.10000000000040,96.59000000000010,3882.69,635.17,40.52999999999980,67.64000000000000,3904.5,575.85,25.09999999999990,59.85000000000000,4075.39,566.69,31.309999999999900,47.88,4274.61,630.63,44.94000000000050,72.75,3911.56,519.97,19.19000000000010,37.77000000000000,3608.76,510.11,17.559999999999900,34.040000000000000,3859.67,931.18,67.59000000000020,68.82000000000010,4141.71,802.39,62.56999999999970,132.03000000000000,3643.84,654.14,46.33999999999970,81.08000000000000,4136.67,613.6,39.55999999999950,74.15000000000000,3471.66,610.61,34.92000000000010,68.06999999999990,2887.31,696.5,46.82999999999990,91.41000000000000,3208.88,544.41,27.94000000000010,48.58000000000000,3451.52,505.74,20.44000000000010,36.53000000000000,3785.38,550.7,22.73000000000000,49.069999999999900,2778.66,533.71,26.76000000000020,42.24000000000000,3649.197231638420,977.5071186440680,21.0,15.50943502824860,3993.42,559.08,21.5,45.5,4393.78,552.3,19.26000000000020,42.80000000000010 -242,3502.63,651.46,41.88999999999990,100.55000000000000,3490.21,542.35,22.800000000000200,49.610000000000000,4273.63,763.94,49.599999999999500,113.93000000000000,4213.64,731.91,43.08999999999920,96.59000000000010,3884.22,635.17,40.5300000000002,67.64000000000000,3904.56,575.72,25.09999999999990,59.85000000000000,4075.61,566.67,31.309999999999900,47.99000000000000,4275.06,630.73,44.9399999999996,72.75,3912.5,520.06,19.19000000000010,37.770000000000100,3609.25,510.22,17.550000000000200,34.040000000000000,3853.81,932.87,67.59000000000020,67.13,4144.91,801.25,62.31999999999970,131.53000000000000,3643.93,653.63,46.33000000000040,81.09000000000000,4137.22,613.75,39.57999999999990,74.28000000000000,3472.3,609.77,34.7199999999998,67.74000000000000,2885.81,696.69,46.82999999999990,91.41000000000000,3208.39,544.34,27.95000000000030,48.58999999999990,3451.95,505.54,20.43000000000030,36.53000000000000,3785.85,550.69,22.73000000000000,49.069999999999900,2778.77,533.73,26.76000000000020,42.24000000000000,3648.2886440678000,977.4449152542370,21.0,15.491355932203400,3993.71,559.16,21.5,45.5,4393.93,552.27,19.25999999999930,42.80000000000010 -243,3502.84,650.82,41.88999999999990,100.56000000000000,3490.88,542.39,22.790000000000000,49.60000000000000,4277.37,763.37,49.60999999999970,113.92000000000000,4213.78,731.92,43.09000000000020,96.59000000000010,3885.75,635.18,40.5300000000002,67.6400000000001,3904.61,575.6,25.09999999999990,59.85000000000000,4075.83,566.66,31.300000000000200,48.10000000000000,4275.52,630.83,44.92999999999940,72.75,3913.44,520.15,19.19000000000010,37.77000000000000,3609.73,510.32,17.559999999999900,34.04000000000000,3847.95,934.56,67.59000000000020,65.44000000000010,4148.11,800.1,62.07999999999990,131.03000000000000,3644.02,653.13,46.32999999999990,81.08000000000000,4137.76,613.89,39.60999999999970,74.41000000000000,3472.94,608.93,34.529999999999700,67.40000000000010,2884.31,696.88,46.82999999999990,91.41000000000000,3207.9,544.28,27.94999999999980,48.59000000000000,3452.38,505.34,20.42999999999980,36.53000000000000,3786.32,550.68,22.73000000000000,49.07000000000010,2778.79,533.73,26.76000000000020,42.24000000000000,3647.3800564971800,977.3827118644070,21.0,15.473276836158200,3994.0,559.24,21.5,45.5,4394.09,552.24,19.26000000000020,42.80000000000000 -244,3503.05,650.19,41.88999999999990,100.55000000000000,3491.54,542.42,22.800000000000200,49.610000000000000,4281.12,762.79,49.60000000000040,113.93000000000000,4213.91,731.92,43.10000000000040,96.59000000000010,3887.28,635.18,40.52999999999980,67.6400000000001,3904.67,575.47,25.090000000000100,59.85000000000000,4076.06,566.64,31.29000000000040,48.21000000000000,4275.97,630.92,44.92999999999940,72.76000000000000,3914.38,520.24,19.19999999999980,37.77000000000000,3610.22,510.43,17.550000000000200,34.04000000000000,3842.09,936.26,67.58999999999970,63.74000000000000,4151.31,798.95,61.82999999999990,130.54000000000000,3644.1,652.62,46.34000000000020,81.09000000000000,4138.31,614.04,39.6299999999992,74.54000000000010,3473.58,608.09,34.32999999999990,67.06000000000000,2882.8,697.07,46.83999999999970,91.41000000000000,3207.42,544.22,27.94000000000010,48.58999999999990,3452.8,505.14,20.4399999999996,36.53000000000000,3786.78,550.67,22.73999999999980,49.07000000000010,2778.81,533.74,26.76000000000020,42.24000000000000,3646.471468926550,977.3205084745760,21.0,15.455197740113000,3994.3,559.31,21.5,45.510000000000100,4394.25,552.21,19.26000000000020,42.80000000000000 -245,3503.27,649.56,41.88999999999990,100.55000000000000,3492.21,542.46,22.790000000000000,49.59999999999990,4284.86,762.22,49.61000000000060,113.92000000000000,4214.05,731.93,43.09000000000020,96.59000000000010,3888.81,635.19,40.5300000000002,67.64000000000000,3904.72,575.34,25.100000000000400,59.85000000000000,4076.28,566.62,31.2800000000002,48.33000000000000,4276.42,631.02,44.93000000000030,72.76000000000000,3915.32,520.33,19.19999999999980,37.77000000000000,3610.7,510.54,17.5600000000004,34.04000000000000,3836.23,937.95,67.59000000000020,62.05000000000000,4154.51,797.8,61.59000000000020,130.04000000000000,3644.19,652.11,46.34000000000020,81.09000000000000,4138.86,614.19,39.65000000000060,74.66000000000000,3474.22,607.25,34.14000000000030,66.72000000000000,2881.3,697.26,46.82999999999990,91.41000000000000,3206.93,544.16,27.95000000000030,48.59000000000000,3453.23,504.94,20.42999999999980,36.53000000000000,3787.25,550.66,22.73999999999980,49.07000000000010,2778.83,533.74,26.76000000000020,42.24000000000000,3645.5628813559300,977.2583050847460,21.0,15.437118644067800,3994.59,559.39,21.5,45.51000000000000,4394.4,552.18,19.26000000000020,42.80000000000010 -246,3503.48,648.92,41.88999999999990,100.56000000000000,3492.87,542.49,22.800000000000200,49.610000000000000,4288.61,761.64,49.60000000000040,113.93000000000000,4214.19,731.94,43.09000000000020,96.58999999999990,3890.34,635.19,40.52999999999980,67.64000000000000,3904.77,575.21,25.09999999999990,59.84999999999990,4076.5,566.61,31.27000000000040,48.43000000000000,4276.87,631.12,44.93000000000030,72.76000000000000,3916.27,520.41,19.19000000000010,37.77000000000000,3611.19,510.54,17.559999999999900,34.04000000000000,3830.36,939.64,67.59999999999990,60.360000000000000,4157.71,796.66,61.34000000000020,129.54000000000000,3644.28,651.61,46.32999999999990,81.09000000000000,4139.4,614.34,39.67000000000010,74.79000000000000,3474.86,606.41,33.940000000000100,66.38,2879.8,697.45,46.82999999999990,91.41000000000000,3206.44,544.1,27.94999999999980,48.57999999999990,3453.66,504.74,20.43000000000030,36.53000000000000,3787.72,550.65,22.74000000000020,49.07000000000010,2778.86,533.74,26.759999999999800,42.24000000000000,3644.654293785310,977.1961016949150,21.0,15.419039548022600,3994.88,559.47,21.5,45.51000000000000,4394.56,552.15,19.25999999999930,42.80000000000010 -247,3503.69,648.29,41.88999999999990,100.55000000000000,3493.54,542.53,22.790000000000000,49.60000000000000,4292.35,761.07,49.60999999999970,113.93000000000000,4214.32,731.95,43.10000000000040,96.58999999999990,3891.87,635.2,40.5300000000002,67.64000000000000,3904.83,575.08,25.090000000000100,59.84999999999990,4076.72,566.59,31.270000000000000,48.55000000000000,4277.32,631.22,44.93000000000030,72.76000000000000,3917.21,520.5,19.19000000000010,37.77000000000000,3611.68,510.54,17.559999999999900,34.04000000000000,3824.5,941.33,67.59000000000020,58.67000000000000,4160.92,795.51,61.07999999999990,129.04000000000000,3644.37,651.1,46.32999999999990,81.09000000000000,4139.95,614.48,39.69000000000050,74.92000000000000,3475.5,605.57,33.75,66.05000000000000,2878.3,697.64,46.82999999999990,91.41000000000000,3205.96,544.03,27.94000000000010,48.59000000000000,3454.08,504.54,20.44000000000010,36.53000000000000,3788.19,550.64,22.73000000000000,49.07000000000010,2778.88,533.74,26.759999999999800,42.24000000000000,3643.745706214690,977.1338983050850,21.0,15.400960451977400,3995.18,559.55,21.49000000000020,45.51000000000000,4394.72,552.12,19.25999999999930,42.80000000000000 -248,3503.9,647.66,41.88999999999990,100.55000000000000,3494.2,542.56,22.790000000000000,49.610000000000000,4296.1,760.5,49.599999999999500,113.92000000000000,4214.46,731.95,43.10000000000040,96.58999999999990,3893.4,635.2,40.52999999999980,67.64000000000000,3904.88,574.95,25.09999999999990,59.84999999999990,4076.95,566.57,31.25,48.67000000000000,4277.77,631.32,44.92999999999940,72.76000000000000,3918.15,520.59,19.19999999999980,37.77000000000000,3612.17,510.54,17.559999999999900,34.04000000000000,3820.11,941.81,67.58999999999970,58.190000000000100,4164.12,794.36,60.84000000000020,128.55000000000000,3644.45,650.6,46.34000000000020,81.07999999999990,4140.5,614.63,39.71000000000000,75.05000000000000,3476.14,604.73,33.55000000000020,65.71000000000000,2876.8,697.83,46.82999999999990,91.41000000000000,3205.47,543.97,27.95000000000030,48.58999999999990,3454.51,504.34,20.42999999999980,36.53000000000000,3788.66,550.63,22.73000000000000,49.07000000000010,2778.9,533.74,26.759999999999800,42.24000000000000,3642.8371186440700,977.0716949152540,21.0,15.382881355932200,3995.47,559.63,21.5,45.51000000000000,4394.88,552.09,19.25,42.79000000000000 -249,3504.11,647.02,41.88999999999990,100.56000000000000,3494.87,542.6,22.790000000000000,49.60000000000000,4299.84,759.92,49.60999999999970,113.93000000000000,4214.6,731.96,43.08999999999920,96.58999999999990,3894.93,635.21,40.5300000000002,67.64000000000000,3904.93,574.82,25.100000000000400,59.84999999999990,4077.61,566.55,31.24000000000020,48.780000000000100,4278.22,631.42,44.92999999999940,72.75,3919.09,520.68,19.19999999999980,37.770000000000100,3612.66,510.54,17.559999999999900,34.04000000000000,3815.72,942.28,67.59000000000020,57.72000000000000,4167.32,793.21,60.59000000000020,128.05000000000000,3644.54,650.09,46.34000000000020,81.08999999999990,4141.04,614.78,39.73999999999980,75.17000000000010,3476.78,603.89,33.35999999999970,65.37,2875.21,697.63,46.82999999999990,91.41000000000000,3204.98,543.91,27.94999999999980,48.59000000000000,3454.94,504.14,20.42999999999980,36.53000000000000,3789.13,550.62,22.73000000000000,49.07000000000010,2778.92,533.75,26.759999999999800,42.24000000000000,3641.9285310734500,977.0094915254240,21.0,15.364802259887000,3995.76,559.71,21.5,45.51000000000000,4395.03,552.06,19.26000000000020,42.79000000000010 -250,3504.33,646.39,41.88999999999990,100.55000000000000,3495.53,542.63,22.790000000000000,49.610000000000000,4303.59,759.35,49.599999999999500,113.92000000000000,4214.73,731.97,43.10000000000040,96.58999999999990,3896.45,635.21,40.54000000000000,67.64000000000000,3904.99,574.69,25.100000000000400,59.84999999999990,4078.26,566.54,31.23999999999980,48.89000000000000,4278.67,631.52,44.93000000000030,72.75,3920.04,520.77,19.19000000000010,37.77000000000000,3613.15,510.54,17.559999999999900,34.04000000000000,3811.33,942.75,67.59000000000020,57.25,4170.52,792.07,60.349999999999500,127.55000000000000,3644.63,649.59,46.32999999999990,81.07999999999990,4141.59,614.93,39.76000000000020,75.30000000000010,3477.43,603.05,33.15000000000010,65.03000000000010,2873.63,697.44,46.82999999999990,91.40000000000000,3204.5,543.85,27.94999999999980,48.57999999999990,3455.36,503.94,20.42999999999980,36.54000000000000,3789.6,550.61,22.73000000000000,49.069999999999900,2778.95,533.75,26.76000000000020,42.24000000000000,3641.019943502830,976.9472881355930,21.0,15.346723163841800,3996.06,559.79,21.49000000000020,45.51000000000000,4395.19,552.03,19.26000000000020,42.79000000000010 -251,3504.54,645.76,41.88999999999990,100.55000000000000,3496.2,542.67,22.790000000000000,49.60000000000000,4307.33,758.77,49.60999999999970,113.93000000000000,4214.87,731.98,43.10000000000040,96.59000000000010,3897.98,635.22,40.54000000000000,67.64000000000000,3905.04,574.56,25.09999999999990,59.85000000000000,4078.92,566.52,31.23999999999980,49.0,4279.12,631.62,44.93000000000030,72.75,3920.98,520.86,19.19000000000010,37.77000000000000,3613.64,510.54,17.559999999999900,34.04000000000000,3806.94,943.23,67.59000000000020,56.77000000000000,4173.72,790.92,60.099999999999500,127.05000000000000,3644.72,649.08,46.33000000000040,81.08999999999990,4142.13,615.07,39.79000000000000,75.43000000000000,3478.07,602.21,32.96000000000000,64.68999999999990,2872.05,697.24,46.82999999999990,91.41000000000000,3204.01,543.78,27.94999999999980,48.59000000000000,3455.79,503.74,20.42999999999980,36.54000000000000,3790.07,550.6,22.73000000000000,49.069999999999900,2778.97,533.75,26.76000000000020,42.24000000000000,3640.1113559322000,976.8850847457630,21.0,15.328644067796600,3996.35,559.87,21.5,45.51000000000000,4395.35,552.0,19.25,42.79000000000000 -252,3504.75,645.12,41.88999999999990,100.56000000000000,3496.86,542.7,22.790000000000000,49.6099999999999,4311.08,758.2,49.60000000000040,113.93000000000000,4215.01,731.98,43.09000000000020,96.59000000000010,3899.51,635.22,40.52999999999980,67.64000000000000,3905.09,574.43,25.09999999999990,59.85000000000000,4079.58,566.5,31.23000000000050,49.120000000000000,4279.57,631.72,44.93000000000030,72.75,3921.92,520.95,19.19000000000010,37.77000000000000,3614.13,510.54,17.549999999999700,34.04000000000000,3802.55,943.7,67.58999999999970,56.30000000000000,4176.92,789.77,59.85000000000040,126.56000000000000,3644.8,648.57,46.33999999999970,81.08999999999990,4142.68,615.22,39.80999999999950,75.56000000000000,3478.71,601.37,32.75999999999980,64.36000000000000,2870.46,697.04,46.82999999999990,91.41000000000010,3203.52,543.72,27.94999999999980,48.58999999999990,3456.22,503.55,20.43000000000030,36.53000000000000,3790.53,550.59,22.73999999999980,49.069999999999900,2778.99,533.75,26.76000000000020,42.24000000000000,3639.202768361580,976.8228813559320,21.0,15.31056497175140,3996.64,559.95,21.5,45.5,4395.5,551.97,19.26000000000020,42.79000000000000 -253,3504.96,644.49,41.88999999999990,100.56000000000000,3497.52,542.74,22.800000000000200,49.60000000000000,4314.82,757.63,49.61000000000060,113.92000000000000,4215.14,731.99,43.099999999999500,96.59000000000010,3901.04,635.23,40.5300000000002,67.64000000000000,3905.15,574.31,25.09999999999990,59.85000000000000,4080.24,566.48,31.22000000000030,49.23000000000000,4280.02,631.81,44.92999999999940,72.7600000000001,3922.86,521.03,19.19999999999980,37.77000000000000,3614.62,510.54,17.550000000000200,34.04000000000000,3798.16,944.17,67.59000000000020,55.83000000000000,4180.13,788.62,59.599999999999500,126.06000000000000,3644.89,648.07,46.34000000000020,81.08999999999990,4143.23,615.37,39.83000000000080,75.68000000000000,3479.35,600.53,32.570000000000200,64.02000000000000,2868.88,696.84,46.82999999999990,91.41000000000000,3203.04,543.66,27.94999999999980,48.59000000000000,3456.64,503.35,20.43000000000030,36.53000000000000,3791.0,550.58,22.73999999999980,49.069999999999900,2779.01,533.75,26.759999999999800,42.24000000000000,3638.2941807909600,976.7606779661020,21.0,15.292485875706200,3996.93,560.03,21.5,45.5,4395.66,551.93,19.26000000000020,42.80000000000010 -254,3505.17,643.86,41.88999999999990,100.55000000000000,3498.19,542.77,22.790000000000000,49.610000000000000,4318.57,757.05,49.60000000000040,113.93000000000000,4215.28,732.0,43.10000000000040,96.59000000000010,3902.57,635.23,40.52999999999980,67.64000000000000,3905.2,574.18,25.100000000000400,59.85000000000000,4080.9,566.47,31.20999999999960,49.33999999999990,4280.47,631.91,44.92999999999940,72.76000000000000,3923.8,521.12,19.19999999999980,37.77000000000000,3615.11,510.54,17.549999999999700,34.04000000000000,3793.77,944.64,67.59000000000020,55.360000000000000,4183.33,787.48,59.35000000000040,125.56000000000000,3644.98,647.56,46.32999999999990,81.09000000000000,4143.77,615.52,39.85999999999970,75.81000000000010,3479.99,599.7,32.370000000000300,63.67000000000000,2867.29,696.65,46.84000000000020,91.40000000000000,3202.55,543.6,27.94999999999980,48.59000000000000,3457.07,503.15,20.42999999999980,36.53000000000000,3791.47,550.57,22.74000000000020,49.069999999999900,2779.04,533.75,26.76000000000020,42.24000000000000,3637.385593220340,976.6984745762710,21.0,15.274406779661000,3997.23,560.11,21.5,45.5,4395.82,551.9,19.26000000000020,42.80000000000010 -255,3505.39,643.22,41.89000000000030,100.56000000000000,3498.97,542.73,22.79000000000040,49.60000000000000,4322.31,756.48,49.60999999999970,113.93000000000000,4215.42,732.01,43.09000000000020,96.59000000000010,3904.1,635.24,40.5300000000002,67.64000000000000,3905.26,574.05,25.08999999999970,59.85000000000000,4081.56,566.45,31.20000000000030,49.44999999999990,4280.92,632.01,44.93000000000030,72.76000000000000,3924.75,521.21,19.19000000000010,37.77000000000000,3615.6,510.54,17.550000000000200,34.04000000000000,3789.38,945.12,67.58999999999970,54.88,4186.53,786.33,59.11000000000060,125.06000000000000,3645.07,647.06,46.32999999999990,81.09000000000000,4144.32,615.66,39.88000000000010,75.94000000000010,3480.63,598.86,32.17999999999980,63.33000000000000,2865.71,696.45,46.82999999999990,91.41000000000000,3202.06,543.54,27.95000000000030,48.58000000000000,3457.0,503.11,20.42999999999980,36.54000000000000,3791.94,550.56,22.73000000000000,49.07000000000010,2779.06,533.76,26.76000000000020,42.24000000000000,3636.4770056497200,976.6362711864410,21.0,15.256327683615800,3997.52,560.19,21.5,45.5,4395.97,551.87,19.25999999999930,42.80000000000000 -256,3505.6,642.59,41.88999999999990,100.56000000000000,3499.75,542.68,22.790000000000000,49.60000000000000,4326.06,755.91,49.599999999999500,113.92000000000000,4215.55,732.01,43.099999999999500,96.59000000000010,3905.63,635.24,40.52999999999980,67.64000000000000,3905.31,573.92,25.09999999999990,59.85000000000000,4082.22,566.43,31.19000000000010,49.57000000000010,4281.37,632.11,44.93000000000030,72.76000000000000,3925.69,521.3,19.19000000000010,37.770000000000100,3616.08,510.54,17.559999999999900,34.04000000000000,3784.99,945.59,67.59000000000020,54.41000000000000,4189.73,785.18,58.86000000000060,124.57000000000000,3645.15,646.55,46.33999999999970,81.09000000000000,4145.03,615.63,39.88000000000010,75.94000000000010,3481.27,598.02,31.98000000000000,62.99000000000000,2864.13,696.25,46.82999999999990,91.41000000000000,3201.58,543.47,27.95000000000030,48.58999999999990,3456.93,503.08,20.43000000000030,36.53000000000000,3792.41,550.55,22.73000000000000,49.07000000000010,2779.08,533.76,26.76000000000020,42.24000000000000,3635.568418079100,976.5740677966100,21.0,15.23824858757070,3997.81,560.26,21.5,45.51000000000000,4396.13,551.84,19.26000000000020,42.80000000000000 -257,3505.81,641.96,41.88999999999990,100.55000000000000,3500.52,542.63,22.800000000000200,49.610000000000000,4329.8,755.33,49.60999999999970,113.93000000000000,4214.56,732.04,43.08999999999920,96.59000000000010,3907.16,635.24,40.5300000000002,67.65000000000000,3905.36,573.79,25.09999999999990,59.85000000000000,4082.88,566.42,31.18000000000030,49.67000000000010,4281.82,632.21,44.93000000000030,72.75,3926.63,521.39,19.19999999999980,37.77000000000000,3616.57,510.54,17.559999999999900,34.04000000000000,3780.6,946.06,67.59000000000020,53.940000000000100,4192.93,784.03,58.60999999999970,124.08000000000000,3645.24,646.05,46.34000000000020,81.08000000000000,4145.75,615.6,39.88000000000010,75.93999999999990,3481.91,597.18,31.790000000000000,62.66000000000010,2862.54,696.05,46.82999999999990,91.41000000000010,3201.09,543.41,27.94999999999980,48.59000000000000,3456.86,503.05,20.42999999999980,36.53000000000000,3792.88,550.54,22.73000000000000,49.07000000000010,2779.1,533.76,26.76000000000020,42.24000000000000,3634.6598305084700,976.5118644067800,21.0,15.220169491525500,3998.11,560.34,21.5,45.51000000000000,4396.29,551.81,19.26000000000020,42.80000000000010 -258,3506.02,641.33,41.88999999999990,100.55000000000000,3501.3,542.58,22.790000000000000,49.610000000000000,4333.55,754.76,49.599999999999500,113.92000000000000,4213.56,732.07,43.08999999999920,96.58999999999990,3908.69,635.25,40.52999999999980,67.64000000000000,3905.42,573.66,25.09999999999990,59.85000000000000,4083.54,566.4,31.17000000000010,49.79000000000010,4282.27,632.31,44.92999999999940,72.75,3927.57,521.48,19.19999999999980,37.77000000000000,3617.06,510.54,17.559999999999900,34.04000000000000,3776.21,946.54,67.59000000000020,53.46000000000000,4196.13,782.89,58.36999999999990,123.57000000000000,3645.33,645.54,46.32999999999990,81.09000000000000,4146.46,615.57,39.88000000000010,75.93999999999990,3482.55,596.34,31.58999999999970,62.319999999999900,2860.96,695.86,46.82999999999990,91.40000000000000,3200.6,543.35,27.95000000000030,48.59000000000000,3456.79,503.01,20.42999999999980,36.54000000000000,3793.35,550.53,22.73000000000000,49.07000000000010,2779.13,533.76,26.759999999999800,42.24000000000000,3633.751242937850,976.4496610169490,21.0,15.202090395480300,3998.4,560.42,21.5,45.51000000000000,4396.44,551.78,19.26000000000020,42.80000000000010 -259,3506.23,640.69,41.88999999999990,100.56000000000000,3502.08,542.53,22.790000000000000,49.610000000000000,4337.29,754.18,49.60999999999970,113.93000000000000,4212.56,732.1,43.08999999999920,96.59000000000010,3910.22,635.25,40.5300000000002,67.64000000000000,3905.47,573.53,25.100000000000400,59.85000000000000,4084.19,566.38,31.16999999999960,49.90000000000000,4282.72,632.41,44.92999999999940,72.75,3928.52,521.57,19.19000000000010,37.77000000000000,3617.55,510.54,17.559999999999900,34.04000000000000,3771.7,946.54,67.59000000000020,53.46000000000000,4199.34,781.74,58.10999999999970,123.08000000000000,3645.42,645.04,46.32999999999990,81.08000000000000,4147.18,615.54,39.88000000000010,75.94000000000010,3483.19,595.5,31.40000000000010,61.98000000000000,2859.38,695.66,46.82999999999990,91.40000000000000,3200.12,543.29,27.95000000000030,48.58000000000000,3456.72,502.98,20.43000000000030,36.53000000000000,3793.82,550.52,22.73000000000000,49.07000000000010,2779.15,533.76,26.759999999999800,42.24000000000000,3632.8426553672300,976.3874576271190,21.0,15.184011299435100,3998.69,560.5,21.5,45.51000000000000,4396.6,551.75,19.25999999999930,42.80000000000000 -260,3506.45,640.06,41.89000000000030,100.55000000000000,3502.86,542.48,22.790000000000000,49.610000000000000,4341.04,753.61,49.60000000000040,113.93000000000000,4211.56,732.12,43.08999999999920,96.59000000000010,3911.75,635.26,40.5300000000002,67.64000000000000,3905.52,573.4,25.09999999999990,59.85000000000000,4084.85,566.36,31.16000000000030,50.02000000000000,4283.17,632.51,44.93000000000030,72.75,3929.46,521.66,19.19000000000010,37.76000000000000,3618.04,510.54,17.559999999999900,34.04000000000000,3767.18,946.54,67.60000000000040,53.46000000000000,4202.54,780.59,57.86999999999990,122.58000000000000,3645.5,644.53,46.34000000000020,81.09000000000000,4147.89,615.51,39.88000000000010,75.94000000000010,3483.83,594.66,31.20000000000030,61.64000000000000,2857.79,695.46,46.82999999999990,91.41000000000000,3199.63,543.22,27.94999999999980,48.58999999999990,3456.65,502.95,20.42999999999980,36.53000000000000,3794.29,550.51,22.73000000000000,49.07000000000010,2779.17,533.77,26.759999999999800,42.24000000000000,3631.93406779661,976.325254237288,21.0,15.165932203389900,3998.99,560.58,21.5,45.51000000000000,4396.76,551.72,19.26000000000020,42.80000000000000 -261,3506.66,639.43,41.89000000000030,100.55000000000000,3503.63,542.44,22.799999999999700,49.59999999999990,4344.78,753.04,49.61000000000060,113.92000000000000,4210.56,732.15,43.099999999999500,96.59000000000010,3913.27,635.26,40.54000000000000,67.64000000000000,3905.58,573.27,25.09999999999990,59.85000000000000,4085.51,566.35,31.14999999999960,50.120000000000000,4283.62,632.6,44.93000000000030,72.76000000000000,3930.4,521.74,19.19000000000010,37.77000000000000,3618.53,510.54,17.559999999999900,34.04000000000000,3762.67,946.54,67.59999999999990,53.46000000000000,4205.74,779.44,57.61999999999990,122.09000000000000,3645.59,644.02,46.33999999999970,81.09000000000000,4148.6,615.48,39.88999999999940,75.93999999999990,3484.47,593.82,31.01000000000020,61.30000000000000,2856.21,695.26,46.82999999999990,91.41000000000000,3199.14,543.16,27.95000000000030,48.59000000000000,3456.58,502.92,20.43000000000030,36.53000000000000,3794.75,550.5,22.73999999999980,49.07000000000010,2779.19,533.77,26.759999999999800,42.24000000000000,3631.0254802259900,976.2630508474580,21.0,15.147853107344700,3999.28,560.66,21.5,45.51000000000000,4396.92,551.69,19.25,42.80000000000000 -262,3506.87,638.79,41.89000000000030,100.56000000000000,3504.41,542.39,22.790000000000000,49.60000000000000,4348.53,752.46,49.60000000000040,113.93000000000000,4209.56,732.18,43.099999999999500,96.59000000000010,3914.8,635.27,40.54000000000000,67.64000000000000,3905.63,573.15,25.09999999999990,59.85000000000000,4086.17,566.33,31.140000000000300,50.24000000000000,4284.07,632.7,44.93000000000030,72.76000000000000,3931.34,521.83,19.19999999999980,37.77000000000000,3619.02,510.54,17.559999999999900,34.04000000000000,3758.16,946.54,67.60000000000040,53.46000000000000,4208.94,778.3,57.3700000000008,121.58000000000000,3645.68,643.52,46.33000000000040,81.09000000000000,4149.32,615.45,39.88000000000010,75.93999999999990,3485.11,592.98,30.809999999999900,60.97000000000000,2854.62,695.06,46.84000000000020,91.41000000000010,3198.66,543.1,27.95000000000030,48.59000000000000,3456.51,502.88,20.42999999999980,36.53000000000000,3795.22,550.49,22.74000000000020,49.069999999999900,2779.22,533.77,26.76000000000020,42.24000000000000,3630.1168926553700,976.2008474576270,21.0,15.129774011299500,3999.57,560.74,21.5,45.51000000000000,4397.07,551.66,19.26000000000020,42.80000000000010 -263,3507.08,638.16,41.88999999999990,100.55000000000000,3505.19,542.34,22.790000000000000,49.610000000000000,4352.27,751.89,49.60999999999970,113.92000000000000,4208.56,732.21,43.099999999999500,96.58999999999990,3916.33,635.27,40.54000000000000,67.64000000000000,3905.69,573.02,25.090000000000100,59.85000000000000,4086.83,566.31,31.13000000000010,50.35000000000000,4284.52,632.8,44.92999999999940,72.76000000000000,3932.28,521.92,19.19999999999980,37.770000000000100,3619.51,510.54,17.559999999999900,34.04000000000000,3753.65,946.54,67.58999999999970,53.46000000000000,4212.14,777.15,57.13000000000010,121.09000000000000,3645.77,643.01,46.32999999999990,81.09000000000000,4150.03,615.42,39.89000000000030,75.94000000000010,3485.76,592.14,30.60999999999970,60.63,2853.04,694.87,46.82999999999990,91.40000000000000,3198.17,543.04,27.94999999999980,48.59000000000000,3456.44,502.85,20.42999999999980,36.53000000000000,3795.69,550.48,22.73999999999980,49.069999999999900,2779.24,533.77,26.76000000000020,42.24000000000000,3629.208305084750,976.1386440677970,21.0,15.111694915254300,3999.87,560.82,21.5,45.5,4397.23,551.63,19.26000000000020,42.80000000000000 -264,3507.3,637.53,41.88999999999990,100.55000000000000,3505.97,542.29,22.79000000000040,49.610000000000000,4356.02,751.31,49.599999999999500,113.93000000000000,4207.56,732.23,43.099999999999500,96.59000000000010,3917.86,635.28,40.52999999999980,67.64000000000000,3905.74,572.89,25.100000000000400,59.85000000000000,4087.49,566.29,31.11999999999990,50.47000000000000,4284.97,632.9,44.92999999999940,72.76000000000000,3933.23,522.01,19.19000000000010,37.77000000000000,3620.0,510.54,17.559999999999900,34.04000000000000,3749.14,946.54,67.59000000000020,53.46000000000000,4215.34,776.0,56.88000000000010,120.59000000000000,3645.85,642.51,46.34000000000020,81.08000000000000,4150.75,615.4,39.88000000000010,75.93000000000010,3486.4,591.3,30.40999999999990,60.29000000000010,2851.46,694.67,46.82999999999990,91.41000000000010,3197.68,542.98,27.95000000000030,48.57999999999990,3456.37,502.82,20.43000000000030,36.53000000000000,3796.16,550.47,22.73000000000000,49.059999999999900,2779.26,533.77,26.759999999999800,42.24000000000000,3628.2997175141200,976.076440677966,21.0,15.093615819209100,4000.16,560.9,21.5,45.5,4397.39,551.6,19.25999999999930,42.80000000000000 -265,3507.51,636.89,41.88999999999990,100.56000000000000,3506.75,542.24,22.790000000000000,49.610000000000000,4359.76,750.74,49.60999999999970,113.93000000000000,4206.57,732.26,43.09000000000020,96.59000000000010,3919.39,635.28,40.5300000000002,67.64000000000000,3905.79,572.76,25.09999999999990,59.85000000000000,4088.15,566.28,31.110000000000100,50.57000000000010,4285.42,633.0,44.9399999999996,72.76000000000000,3933.93,522.06,19.20000000000030,37.770000000000100,3620.49,510.54,17.5600000000004,34.04000000000000,3744.63,946.54,67.58999999999970,53.46000000000000,4218.54,774.85,56.63000000000010,120.10000000000000,3645.94,642.0,46.34000000000020,81.09000000000000,4151.46,615.37,39.88000000000010,75.93000000000000,3487.04,590.46,30.22000000000030,59.94999999999990,2849.87,694.47,46.82999999999990,91.41000000000000,3197.2,542.91,27.95000000000030,48.59000000000000,3456.3,502.78,20.42999999999980,36.53000000000000,3796.63,550.46,22.73000000000000,49.059999999999900,2779.28,533.78,26.759999999999800,42.24000000000000,3627.391129943500,976.0142372881360,21.0,15.075536723163900,4000.45,560.98,21.5,45.5,4397.54,551.57,19.26000000000020,42.79000000000000 -266,3507.72,636.26,41.89000000000030,100.55000000000000,3507.52,542.19,22.800000000000200,49.6099999999999,4363.51,750.17,49.599999999999500,113.92000000000000,4205.57,732.29,43.09000000000020,96.59000000000010,3920.92,635.29,40.52999999999980,67.64000000000000,3905.85,572.63,25.09999999999990,59.85000000000000,4088.81,566.26,31.110000000000100,50.690000000000100,4285.87,633.1,44.94000000000050,72.75,3934.64,522.11,19.19000000000010,37.77000000000000,3620.98,510.54,17.559999999999900,34.04000000000000,3740.12,946.54,67.59000000000020,53.46000000000000,4221.75,773.71,56.38000000000010,119.59000000000000,3646.03,641.5,46.32999999999990,81.08000000000000,4152.18,615.34,39.88000000000010,75.93000000000000,3487.68,589.62,30.020000000000000,59.610000000000000,2847.58,694.79,46.82999999999990,91.41000000000010,3196.71,542.85,27.94999999999980,48.59000000000000,3456.23,502.75,20.42999999999980,36.53000000000000,3797.1,550.45,22.73000000000000,49.059999999999900,2779.3,533.78,26.759999999999800,42.24000000000000,3626.482542372880,975.9520338983050,21.0,15.057457627118700,4000.75,561.06,21.5,45.5,4397.7,551.54,19.26000000000020,42.79000000000010 -267,3507.93,635.63,41.89000000000030,100.55000000000000,3508.3,542.15,22.790000000000000,49.60000000000000,4367.25,749.59,49.60999999999970,113.93000000000000,4204.57,732.32,43.09000000000020,96.58999999999990,3922.45,635.29,40.5300000000002,67.64000000000000,3905.9,572.5,25.09999999999990,59.85000000000000,4089.47,566.24,31.09999999999990,50.809999999999900,4286.32,633.2,44.94000000000050,72.75,3935.35,522.16,19.19000000000010,37.77000000000000,3621.47,510.54,17.5600000000004,34.04000000000000,3735.61,946.54,67.58999999999970,53.46000000000000,4224.95,772.56,56.13000000000010,119.10000000000000,3646.12,640.99,46.32999999999990,81.09000000000000,4152.89,615.31,39.88000000000010,75.93000000000010,3488.32,588.78,29.829999999999900,59.28000000000000,2845.28,695.11,46.83999999999970,91.40000000000000,3196.22,542.79,27.95000000000030,48.59000000000000,3456.16,502.72,20.44000000000010,36.53000000000000,3797.57,550.44,22.73000000000000,49.059999999999900,2779.33,533.78,26.76000000000020,42.24000000000000,3625.57395480226,975.8898305084750,21.0,15.03937853107350,4001.04,561.13,21.5,45.51000000000000,4397.86,551.51,19.26000000000020,42.79000000000000 -268,3508.14,634.99,41.89000000000030,100.56000000000000,3509.08,542.1,22.790000000000000,49.60000000000000,4371.0,749.02,49.60000000000040,113.93000000000000,4203.57,732.34,43.09000000000020,96.58999999999990,3923.98,635.3,40.5300000000002,67.6400000000001,3905.95,572.37,25.100000000000400,59.85000000000000,4090.12,566.23,31.100000000000400,50.91000000000000,4286.77,633.3,44.9399999999996,72.75,3936.05,522.21,19.19999999999980,37.77000000000000,3621.96,510.54,17.559999999999900,34.04000000000000,3731.1,946.54,67.59000000000020,53.46000000000000,4228.15,771.41,55.89000000000030,118.60000000000000,3646.2,640.49,46.34000000000020,81.08000000000000,4153.61,615.28,39.88000000000010,75.93000000000010,3488.96,587.94,29.63000000000010,58.93999999999990,2842.99,695.42,46.83000000000040,91.41000000000010,3195.74,542.73,27.95000000000030,48.57999999999990,3456.09,502.68,20.44000000000010,36.53000000000000,3798.04,550.43,22.73000000000000,49.06000000000010,2779.35,533.78,26.76000000000020,42.24000000000000,3624.6653672316400,975.827627118644,21.0,15.021299435028300,4001.33,561.21,21.5,45.51000000000000,4398.01,551.48,19.26000000000020,42.79000000000000 -269,3508.36,634.36,41.88999999999990,100.56000000000000,3509.86,542.05,22.790000000000000,49.610000000000000,4374.74,748.45,49.61000000000060,113.92000000000000,4202.57,732.37,43.10000000000040,96.59000000000010,3925.51,635.3,40.52999999999980,67.6400000000001,3906.01,572.24,25.09999999999990,59.85000000000000,4090.78,566.21,31.08999999999970,51.03000000000000,4287.22,633.4,44.9399999999996,72.75,3936.76,522.26,19.1899999999996,37.77000000000000,3622.45,510.54,17.550000000000200,34.04000000000000,3726.59,946.54,67.58999999999970,53.46000000000000,4231.35,770.27,55.63999999999940,118.10000000000000,3646.29,639.98,46.34000000000020,81.09000000000000,4154.32,615.25,39.88000000000010,75.93000000000000,3489.6,587.1,29.44000000000010,58.60000000000000,2840.69,695.74,46.84000000000020,91.41000000000000,3195.25,542.66,27.94999999999980,48.59000000000000,3456.02,502.65,20.44000000000010,36.53000000000000,3798.5,550.42,22.73999999999980,49.06000000000010,2779.37,533.78,26.76000000000020,42.24000000000000,3623.756779661020,975.7654237288140,21.0,15.003220338983100,4001.63,561.29,21.48999999999980,45.51000000000000,4398.17,551.44,19.26000000000020,42.80000000000000 -270,3508.57,633.73,41.88999999999990,100.55000000000000,3510.64,542.0,22.790000000000000,49.610000000000000,4378.49,747.87,49.60000000000040,113.93000000000000,4201.57,732.4,43.10000000000040,96.59000000000010,3927.04,635.31,40.5300000000002,67.6400000000001,3906.06,572.11,25.09999999999990,59.85000000000000,4091.44,566.19,31.080000000000400,51.14000000000000,4287.67,633.49,44.9399999999996,72.76000000000000,3937.47,522.31,19.19000000000010,37.770000000000100,3622.94,510.54,17.549999999999700,34.04000000000000,3722.07,946.54,67.59999999999990,53.46000000000000,4234.55,769.12,55.38999999999940,117.60000000000000,3646.38,639.47,46.32999999999990,81.08999999999990,4155.03,615.22,39.89000000000030,75.93000000000000,3490.97,586.69,29.44000000000010,58.59999999999990,2838.4,696.06,46.82999999999990,91.41000000000010,3194.77,542.6,27.94000000000010,48.59000000000000,3455.95,502.62,20.44000000000010,36.53000000000000,3798.97,550.41,22.74000000000020,49.06000000000010,2779.39,533.78,26.76000000000020,42.24000000000000,3622.8481920904000,975.703220338983,21.0,14.985141242937900,4001.92,561.37,21.5,45.51000000000000,4398.33,551.41,19.26000000000020,42.80000000000010 -271,3508.78,633.09,41.88999999999990,100.56000000000000,3511.41,541.95,22.800000000000200,49.6099999999999,4382.23,747.3,49.61000000000060,113.92000000000000,4200.57,732.42,43.10000000000040,96.60000000000000,3928.57,635.31,40.52999999999980,67.6400000000001,3906.12,571.99,25.090000000000100,59.85000000000000,4092.1,566.17,31.070000000000200,51.26000000000000,4288.12,633.59,44.94000000000050,72.76000000000000,3938.17,522.36,19.19999999999980,37.77000000000000,3623.43,510.54,17.550000000000200,34.04000000000000,3717.56,946.54,67.59999999999990,53.46000000000000,4237.75,767.97,55.14999999999960,117.11,3646.47,638.97,46.33000000000040,81.08999999999990,4155.75,615.19,39.88000000000010,75.93000000000000,3492.34,586.27,29.44000000000010,58.60000000000000,2836.11,696.38,46.82999999999990,91.40000000000000,3194.28,542.54,27.94999999999980,48.59000000000000,3455.88,502.58,20.44000000000010,36.53000000000000,3799.44,550.4,22.73999999999980,49.06000000000010,2779.42,533.79,26.759999999999800,42.24000000000000,3621.939604519770,975.6410169491530,21.0,14.96706214689270,4002.21,561.45,21.5,45.51000000000000,4398.49,551.38,19.25,42.80000000000000 -272,3508.99,632.46,41.89000000000030,100.56000000000000,3512.19,541.9,22.790000000000000,49.610000000000000,4385.98,746.72,49.60000000000040,113.93000000000000,4199.58,732.45,43.09000000000020,96.58999999999990,3930.1,635.31,40.5300000000002,67.65000000000010,3906.17,571.86,25.09999999999990,59.85000000000000,4092.76,566.16,31.05999999999950,51.360000000000000,4288.57,633.69,44.94000000000050,72.76000000000000,3938.88,522.41,19.19000000000010,37.77000000000000,3623.92,510.54,17.549999999999700,34.04000000000000,3714.711967213120,946.5845901639340,67.59983606557370,53.41540983606560,4240.96,766.82,54.89000000000030,116.6100000000000,3646.55,638.46,46.33999999999970,81.08999999999990,4156.46,615.16,39.89000000000030,75.93000000000010,3493.7,585.86,29.44000000000010,58.60000000000000,2833.81,696.69,46.82999999999990,91.41000000000000,3193.79,542.48,27.94999999999980,48.59000000000000,3455.81,502.55,20.44000000000010,36.53000000000000,3799.91,550.39,22.73000000000000,49.06000000000010,2779.44,533.79,26.759999999999800,42.24000000000000,3621.0310169491500,975.578813559322,21.0,14.948983050847500,4002.5,561.53,21.5,45.51000000000000,4398.64,551.35,19.25999999999930,42.80000000000000 -273,3509.2,631.83,41.89000000000030,100.55000000000000,3512.97,541.86,22.79000000000040,49.60000000000000,4389.72,746.15,49.60999999999970,113.93000000000000,4198.58,732.48,43.09000000000020,96.59000000000010,3931.62,635.32,40.54000000000000,67.64000000000000,3906.22,571.73,25.100000000000400,59.85000000000000,4093.42,566.14,31.050000000000200,51.48000000000000,4289.02,633.79,44.9399999999996,72.76000000000000,3939.59,522.46,19.19000000000010,37.77000000000000,3624.41,510.54,17.550000000000200,34.04000000000000,3711.8639344262300,946.6291803278690,67.59967213114750,53.37081967213120,4244.16,765.68,54.65000000000060,116.11,3646.64,637.96,46.34000000000020,81.07999999999990,4157.18,615.13,39.88000000000010,75.93000000000000,3495.07,585.44,29.44000000000010,58.59999999999990,2831.52,697.01,46.82999999999990,91.41000000000000,3193.31,542.42,27.94000000000010,48.58000000000000,3455.74,502.52,20.44000000000010,36.53000000000000,3800.38,550.38,22.73000000000000,49.06000000000010,2779.46,533.79,26.759999999999800,42.24000000000000,3620.1224293785300,975.5166101694920,21.0,14.930903954802300,4002.8,561.61,21.5,45.51000000000000,4398.8,551.32,19.26000000000020,42.80000000000000 -274,3509.42,631.2,41.88999999999990,100.55000000000000,3513.75,541.81,22.790000000000000,49.60000000000000,4393.47,745.58,49.599999999999500,113.92000000000000,4197.58,732.51,43.09000000000020,96.59000000000010,3933.15,635.32,40.54000000000000,67.64000000000000,3906.28,571.6,25.08999999999970,59.85000000000000,4094.08,566.12,31.040000000000000,51.59000000000000,4289.47,633.89,44.9399999999996,72.75,3940.29,522.51,19.19999999999980,37.77000000000000,3624.89,510.54,17.559999999999900,34.04000000000000,3709.015901639340,946.6737704918030,67.59950819672120,53.32622950819680,4247.36,764.53,54.40000000000060,115.61,3646.73,637.45,46.32999999999990,81.08999999999990,4157.89,615.1,39.88000000000010,75.93000000000000,3496.44,585.03,29.44000000000010,58.60000000000000,2829.22,697.33,46.83000000000040,91.41000000000000,3192.82,542.35,27.94999999999980,48.59000000000000,3455.67,502.48,20.44000000000010,36.54000000000000,3800.85,550.37,22.73000000000000,49.059999999999900,2779.48,533.79,26.759999999999800,42.24000000000000,3619.21384180791,975.454406779661,21.0,14.912824858757100,4003.09,561.69,21.5,45.5,4398.96,551.29,19.25,42.80000000000010 -275,3509.63,630.56,41.88999999999990,100.56000000000000,3514.53,541.76,22.790000000000000,49.610000000000000,4397.21,745.0,49.60999999999970,113.93000000000000,4196.58,732.53,43.09000000000020,96.60000000000000,3934.68,635.33,40.54000000000000,67.64000000000000,3906.33,571.47,25.09999999999990,59.85000000000000,4094.74,566.1,31.03000000000070,51.70999999999990,4289.92,633.99,44.9399999999996,72.75,3941.0,522.56,19.19000000000010,37.770000000000100,3625.38,510.54,17.559999999999900,34.04000000000000,3706.167868852460,946.7183606557380,67.599344262295,53.28163934426230,4250.56,763.38,54.14999999999960,115.12,3646.82,636.95,46.32999999999990,81.07999999999990,4158.61,615.07,39.88000000000010,75.93000000000000,3497.81,584.61,29.44000000000010,58.60000000000000,2826.93,697.65,46.83000000000040,91.40000000000000,3192.33,542.29,27.95000000000030,48.59000000000000,3455.61,502.45,20.42999999999980,36.53000000000000,3801.32,550.36,22.73000000000000,49.059999999999900,2779.51,533.79,26.759999999999800,42.24000000000000,3618.305254237290,975.3922033898310,21.0,14.8947457627119,4003.38,561.77,21.5,45.5,4399.11,551.26,19.26000000000020,42.80000000000000 -276,3509.84,629.93,41.88999999999990,100.55000000000000,3515.3,541.71,22.799999999999700,49.610000000000000,4400.96,744.43,49.60000000000040,113.92000000000000,4195.58,732.56,43.09000000000020,96.59000000000010,3936.21,635.33,40.52999999999980,67.64000000000000,3906.38,571.34,25.09999999999990,59.85000000000000,4095.39,566.09,31.0300000000002,51.809999999999900,4290.37,634.09,44.94000000000050,72.75,3941.71,522.61,19.19000000000010,37.77000000000000,3625.87,510.54,17.559999999999900,34.04000000000000,3703.319836065570,946.7629508196720,67.59918032786880,53.23704918032790,4251.33,762.39,53.909999999999900,114.63,3646.9,636.44,46.33999999999970,81.08999999999990,4159.32,615.04,39.88000000000010,75.93000000000010,3499.18,584.2,29.44000000000010,58.59999999999990,2824.63,697.96,46.82999999999990,91.41000000000000,3191.85,542.23,27.94000000000010,48.59000000000000,3455.54,502.42,20.42999999999980,36.53000000000000,3801.79,550.35,22.73000000000000,49.059999999999900,2779.53,533.8,26.759999999999800,42.24000000000000,3617.3966666666700,975.3300000000000,21.0,14.876666666666700,4003.68,561.85,21.5,45.5,4399.27,551.23,19.25999999999930,42.80000000000000 -277,3510.05,629.3,41.88999999999990,100.55000000000000,3516.08,541.66,22.790000000000000,49.610000000000000,4404.7,743.85,49.61000000000060,113.93000000000000,4194.58,732.59,43.10000000000040,96.58999999999990,3937.74,635.34,40.5300000000002,67.64000000000000,3906.44,571.21,25.09999999999990,59.84999999999990,4096.05,566.07,31.019999999999500,51.93000000000000,4290.82,634.19,44.94000000000050,72.75,3942.41,522.66,19.20000000000030,37.77000000000000,3626.36,510.54,17.559999999999900,34.04000000000000,3700.4718032786900,946.8075409836070,67.59901639344260,53.192459016393500,4252.1,761.41,53.659999999999900,114.12,3646.99,635.93,46.34000000000020,81.09000000000000,4160.04,615.01,39.88000000000010,75.94000000000010,3500.55,583.79,29.42999999999980,58.60000000000000,2822.34,698.28,46.82999999999990,91.41000000000010,3191.36,542.17,27.94999999999980,48.58000000000000,3455.47,502.38,20.43000000000030,36.54000000000000,3802.26,550.34,22.729999999999600,49.059999999999900,2779.55,533.8,26.759999999999800,42.24000000000000,3616.488079096050,975.2677966101700,21.0,14.858587570621500,4003.97,561.93,21.5,45.5,4399.43,551.2,19.25999999999930,42.80000000000000 -278,3510.21,629.9,41.559999999999900,99.67000000000010,3516.86,541.61,22.790000000000000,49.610000000000000,4408.45,743.28,49.60000000000040,113.93000000000000,4193.58,732.62,43.10000000000040,96.59000000000010,3939.27,635.34,40.5300000000002,67.64000000000000,3906.49,571.08,25.100000000000400,59.84999999999990,4096.71,566.05,31.01000000000020,52.04000000000010,4291.27,634.28,44.9399999999996,72.76000000000000,3943.12,522.71,19.20000000000030,37.77000000000000,3626.85,510.54,17.559999999999900,34.04000000000000,3697.623770491800,946.852131147541,67.59885245901630,53.147868852459100,4252.87,760.42,53.409999999999900,113.63,3647.08,635.43,46.32999999999990,81.09000000000000,4160.75,614.98,39.88000000000010,75.93999999999990,3501.91,583.37,29.44000000000010,58.60000000000000,2820.04,698.6,46.82999999999990,91.41000000000000,3190.87,542.1,27.95000000000030,48.59000000000000,3455.4,502.35,20.42999999999980,36.53000000000000,3802.72,550.33,22.74000000000020,49.059999999999900,2779.57,533.8,26.759999999999800,42.24000000000000,3615.5794915254200,975.205593220339,21.0,14.840508474576300,4004.26,562.0,21.5,45.51000000000000,4399.58,551.17,19.26000000000020,42.80000000000010 -279,3510.36,630.5,41.23999999999980,98.79000000000000,3517.64,541.57,22.790000000000000,49.59999999999990,4412.19,742.71,49.61000000000060,113.92000000000000,4192.58,732.64,43.10000000000040,96.59000000000010,3940.8,635.35,40.52999999999980,67.64000000000000,3906.54,570.95,25.09999999999990,59.84999999999990,4097.37,566.04,31.0,52.15000000000010,4291.72,634.38,44.9399999999996,72.76000000000000,3943.83,522.76,19.19000000000010,37.77000000000000,3627.34,510.54,17.559999999999900,34.04000000000000,3694.775737704920,946.8967213114750,67.5986885245901,53.10327868852460,4253.65,759.43,53.16000000000080,113.13,3647.17,634.92,46.32999999999990,81.09000000000000,4161.46,614.95,39.89000000000030,75.93999999999990,3503.28,582.96,29.4399999999996,58.59999999999990,2817.75,698.92,46.82999999999990,91.40000000000010,3190.39,542.04,27.95000000000030,48.59000000000000,3455.33,502.32,20.43000000000030,36.53000000000000,3803.19,550.31,22.73999999999980,49.07000000000010,2779.6,533.8,26.76000000000020,42.24000000000000,3614.6709039548000,975.1433898305090,21.0,14.822429378531100,4004.56,562.08,21.5,45.51000000000000,4399.74,551.14,19.26000000000020,42.80000000000010 -280,3510.52,631.11,40.909999999999900,97.90000000000000,3518.41,541.52,22.800000000000200,49.60000000000000,4415.94,742.13,49.60000000000040,113.93000000000000,4191.59,732.67,43.09000000000020,96.59000000000010,3942.33,635.35,40.5300000000002,67.64000000000000,3906.6,570.83,25.09999999999990,59.84999999999990,4098.03,566.02,30.99000000000070,52.26000000000000,4292.17,634.48,44.9399999999996,72.76000000000000,3944.53,522.81,19.19999999999980,37.770000000000100,3627.83,510.54,17.559999999999900,34.04000000000000,3691.9277049180300,946.9413114754100,67.59852459016390,53.0586885245902,4254.42,758.45,52.909999999999900,112.63,3647.25,634.42,46.34000000000020,81.08000000000000,4162.18,614.92,39.88000000000010,75.94000000000010,3504.65,582.54,29.44000000000010,58.60000000000000,2812.23,699.23,46.82999999999990,91.41000000000000,3189.9,541.98,27.94999999999980,48.59000000000000,3455.26,502.28,20.42999999999980,36.54000000000010,3803.66,550.3,22.74000000000020,49.07000000000010,2779.62,533.8,26.76000000000020,42.24000000000000,3613.762316384180,975.0811864406780,21.0,14.804350282485900,4004.85,562.16,21.5,45.51000000000000,4399.9,551.11,19.26000000000020,42.80000000000000 -281,3510.67,631.71,40.59000000000020,97.02000000000000,3519.19,541.47,22.790000000000000,49.610000000000000,4419.68,741.56,49.60999999999970,113.93000000000000,4190.59,732.7,43.09000000000020,96.58999999999990,3943.86,635.36,40.52999999999980,67.64000000000000,3906.65,570.7,25.09999999999990,59.84999999999990,4098.69,566.0,30.99000000000070,52.38,4291.81,634.22,44.92999999999940,72.75,3945.24,522.86,19.20000000000030,37.77000000000000,3628.32,510.54,17.559999999999900,34.04000000000000,3689.0796721311500,946.9859016393440,67.59836065573770,53.01409836065580,4255.19,757.46,52.67000000000010,112.13,3647.34,633.91,46.33999999999970,81.09000000000000,4162.89,614.89,39.88999999999940,75.94000000000010,3506.02,582.13,29.44000000000010,58.60000000000000,2806.71,699.55,46.82999999999990,91.41000000000010,3189.41,541.92,27.95000000000030,48.59000000000000,3455.19,502.25,20.42999999999980,36.53000000000000,3804.13,550.29,22.73000000000000,49.07000000000010,2779.64,533.81,26.76000000000020,42.24000000000000,3612.8537288135600,975.0189830508470,21.0,14.786271186440700,4005.14,562.24,21.5,45.51000000000000,4400.05,551.08,19.26000000000020,42.79000000000000 -282,3510.83,632.32,40.26000000000020,96.13,3519.97,541.42,22.79000000000040,49.610000000000000,4423.43,740.99,49.599999999999500,113.92000000000000,4189.59,732.73,43.09000000000020,96.59000000000010,3945.39,635.36,40.5300000000002,67.64000000000000,3906.71,570.57,25.090000000000100,59.84999999999990,4099.35,565.98,30.979999999999600,52.49000000000000,4291.44,633.96,44.94000000000050,72.75,3945.95,522.91,19.19000000000010,37.77000000000000,3628.81,510.54,17.559999999999900,34.04000000000000,3686.231639344260,947.0304918032790,67.59819672131140,52.96950819672140,4255.96,756.47,52.42000000000010,111.64,3647.43,633.41,46.33000000000040,81.08000000000000,4163.61,614.86,39.88000000000010,75.93999999999990,3507.39,581.71,29.44000000000010,58.59999999999990,2801.19,699.87,46.82999999999990,91.41000000000000,3188.93,541.86,27.95000000000030,48.58000000000000,3455.12,502.22,20.43000000000030,36.53000000000000,3804.6,550.28,22.73000000000000,49.07000000000010,2779.66,533.81,26.76000000000020,42.24000000000000,3611.945141242940,974.9567796610170,21.0,14.76819209039550,4005.44,562.32,21.5,45.51000000000000,4400.21,551.05,19.26000000000020,42.79000000000010 -283,3510.98,632.92,39.940000000000100,95.25,3520.75,541.37,22.790000000000000,49.610000000000000,4427.17,740.41,49.60999999999970,113.93000000000000,4188.59,732.75,43.09000000000020,96.59000000000010,3946.92,635.37,40.52999999999980,67.64000000000000,3906.76,570.44,25.09999999999990,59.84999999999990,4100.01,565.97,30.969999999999300,52.60000000000000,4291.08,633.69,44.93000000000030,72.76000000000000,3946.65,522.96,19.19999999999980,37.76000000000000,3629.3,510.54,17.559999999999900,34.04000000000000,3683.383606557380,947.0750819672130,67.5980327868852,52.92491803278690,4256.73,755.48,52.17000000000010,111.14,3647.52,632.9,46.32999999999990,81.09000000000000,4164.32,614.83,39.88000000000010,75.93999999999990,3508.75,581.3,29.44000000000010,58.60000000000000,2795.67,700.19,46.84000000000020,91.40000000000000,3188.44,541.79,27.94999999999980,48.59000000000000,3455.05,502.19,20.42999999999980,36.53000000000000,3805.07,550.27,22.73000000000000,49.07000000000010,2779.69,533.81,26.759999999999800,42.24000000000000,3611.0365536723200,974.8945762711870,21.0,14.75011299435030,4005.73,562.4,21.5,45.51000000000000,4400.37,551.02,19.26000000000020,42.79000000000000 -284,3511.14,633.53,39.620000000000300,94.37,3521.53,541.32,22.790000000000000,49.6099999999999,4430.92,739.84,49.60000000000040,113.92000000000000,4187.59,732.78,43.099999999999500,96.59000000000010,3948.45,635.37,40.5300000000002,67.64000000000000,3906.81,570.31,25.09999999999990,59.85000000000000,4100.67,565.95,30.96000000000000,52.71999999999990,4290.71,633.43,44.9399999999996,72.7600000000001,3947.36,523.01,19.19999999999980,37.76000000000000,3629.79,510.54,17.559999999999900,34.04000000000000,3680.5355737704900,947.1196721311480,67.59786885245900,52.8803278688525,4257.5,754.5,51.93000000000030,110.64,3647.6,632.4,46.34000000000020,81.08000000000000,4165.04,614.8,39.88000000000010,75.94000000000010,3510.12,580.88,29.44000000000010,58.60000000000000,2790.16,700.5,46.82999999999990,91.41000000000000,3187.95,541.73,27.95000000000030,48.59000000000000,3454.98,502.15,20.42999999999980,36.53000000000000,3805.54,550.26,22.73000000000000,49.07000000000010,2779.71,533.81,26.759999999999800,42.24000000000000,3610.1279661016900,974.8323728813560,21.0,14.732033898305100,4006.02,562.48,21.5,45.51000000000000,4400.53,550.99,19.25,42.79000000000000 -285,3511.29,634.13,39.30000000000020,93.49,3522.3,541.28,22.799999999999700,49.60000000000000,4431.13,738.77,49.60999999999970,113.93000000000000,4186.59,732.81,43.099999999999500,96.59000000000010,3949.97,635.38,40.54000000000040,67.64000000000000,3906.87,570.18,25.09999999999990,59.85000000000000,4101.32,565.93,30.96000000000000,52.83000000000000,4290.35,633.17,44.9399999999996,72.75,3948.07,523.05,19.19000000000010,37.770000000000100,3630.28,510.54,17.559999999999900,34.04000000000000,3677.6875409836100,947.1642622950820,67.59770491803280,52.83573770491810,4258.27,753.51,51.67999999999940,110.15000000000000,3647.69,631.89,46.34000000000020,81.09000000000000,4165.75,614.77,39.88000000000010,75.94000000000010,3511.49,580.47,29.44000000000010,58.60000000000000,2784.64,700.82,46.82999999999990,91.41000000000000,3187.47,541.67,27.95000000000030,48.59000000000000,3454.91,502.12,20.43000000000030,36.53000000000000,3806.01,550.25,22.729999999999600,49.07000000000010,2779.73,533.81,26.759999999999800,42.24000000000000,3609.2193785310700,974.7701694915250,21.0,14.713954802259900,4006.32,562.56,21.5,45.5,4400.68,550.95,19.25999999999930,42.80000000000000 -286,3511.45,634.73,38.970000000000300,92.61,3523.08,541.23,22.790000000000000,49.60000000000000,4431.35,737.71,49.599999999999500,113.92000000000000,4185.59,732.84,43.099999999999500,96.58999999999990,3950.46,635.52,40.52999999999980,67.64000000000000,3906.92,570.05,25.09999999999990,59.85000000000000,4101.98,565.91,30.950000000000700,52.950000000000000,4289.98,632.9,44.94000000000050,72.76000000000000,3948.77,523.1,19.19999999999980,37.77000000000000,3630.77,510.54,17.559999999999900,34.04000000000000,3674.8395081967200,947.2088524590160,67.59754098360650,52.791147540983600,4259.04,752.52,51.43000000000030,109.65000000000000,3647.78,631.38,46.32999999999990,81.09000000000000,4166.47,614.74,39.88000000000010,75.93999999999990,3512.86,580.06,29.44000000000010,58.60000000000000,2779.12,701.14,46.82999999999990,91.41000000000000,3186.98,541.61,27.94999999999980,48.58000000000000,3454.84,502.09,20.42999999999980,36.53000000000000,3806.47,550.24,22.74000000000020,49.069999999999900,2779.75,533.81,26.76000000000020,42.24000000000000,3608.310790960450,974.7079661016950,21.0,14.695875706214700,4006.61,562.64,21.5,45.5,4400.84,550.92,19.26000000000020,42.80000000000010 -287,3511.6,635.34,38.65000000000010,91.71999999999990,3523.86,541.18,22.790000000000000,49.610000000000000,4431.56,736.64,49.60999999999970,113.93000000000000,4184.59,732.86,43.099999999999500,96.59000000000010,3950.95,635.66,40.5300000000002,67.65000000000000,3906.97,569.92,25.100000000000400,59.85000000000000,4102.64,565.9,30.9399999999996,53.05000000000010,4289.62,632.64,44.94000000000050,72.76000000000000,3949.48,523.15,19.19999999999980,37.77000000000000,3631.13,510.61,17.559999999999900,34.040000000000000,3671.991475409840,947.2534426229510,67.5973770491803,52.746557377049200,4259.82,751.54,51.18000000000030,109.15000000000000,3647.87,630.88,46.32999999999990,81.09000000000000,4167.18,614.71,39.88000000000010,75.93999999999990,3514.23,579.64,29.44000000000010,58.60000000000000,2773.6,701.46,46.82999999999990,91.40000000000000,3186.49,541.54,27.95000000000030,48.59000000000000,3454.77,502.05,20.42999999999980,36.53000000000000,3807.22,550.11,22.73000000000000,49.059999999999900,2779.78,533.82,26.759999999999800,42.239999999999900,3607.4022033898300,974.6457627118640,21.0,14.677796610169500,4007.04,562.66,21.5,45.51000000000000,4401.0,550.89,19.26000000000020,42.80000000000010 -288,3511.76,635.94,38.31999999999970,90.83999999999990,3524.64,541.13,22.790000000000000,49.610000000000000,4431.78,735.57,49.60000000000040,113.93000000000000,4183.6,732.89,43.08999999999920,96.59000000000010,3951.43,635.81,40.54000000000000,67.6400000000001,3907.03,569.79,25.09999999999990,59.85000000000000,4103.3,565.88,30.92999999999940,53.17000000000000,4289.26,632.38,44.92999999999940,72.75,3950.19,523.2,19.19000000000010,37.77000000000000,3631.5,510.69,17.559999999999900,34.04000000000000,3669.1434426229500,947.2980327868850,67.59721311475410,52.70196721311480,4260.59,750.55,50.93000000000030,108.65000000000000,3647.95,630.37,46.34000000000020,81.09000000000000,4167.89,614.68,39.88999999999940,75.94000000000010,3515.59,579.23,29.44000000000010,58.60000000000000,2768.08,701.77,46.82999999999990,91.41000000000000,3186.01,541.48,27.94999999999980,48.59000000000000,3454.7,502.02,20.43000000000030,36.53000000000000,3807.96,549.97,22.73999999999980,49.069999999999900,2779.8,533.82,26.759999999999800,42.239999999999900,3606.493615819210,974.5835593220340,21.0,14.659717514124300,4007.48,562.68,21.5,45.510000000000100,4401.15,550.86,19.26000000000020,42.80000000000000 -289,3511.91,636.55,38.0,89.95000000000010,3525.42,541.08,22.790000000000000,49.610000000000000,4431.99,734.51,49.61000000000060,113.93000000000000,4182.6,732.92,43.08999999999920,96.59000000000010,3951.92,635.95,40.52999999999980,67.64000000000000,3907.08,569.67,25.09999999999990,59.84000000000000,4103.96,565.86,30.92000000000010,53.28000000000000,4288.89,632.12,44.9399999999996,72.75,3950.89,523.25,19.20000000000030,37.77000000000000,3631.86,510.77,17.559999999999900,34.040000000000000,3666.2954098360700,947.3426229508200,67.59704918032780,52.65737704918040,4261.36,749.56,50.68000000000030,108.16000000000000,3648.04,629.87,46.34000000000020,81.08000000000000,4168.61,614.65,39.88000000000010,75.94000000000010,3516.96,578.81,29.44000000000010,58.60000000000000,2762.57,702.09,46.82999999999990,91.41000000000000,3185.52,541.42,27.94999999999980,48.59000000000000,3454.63,501.99,20.42999999999980,36.53000000000000,3808.71,549.84,22.73000000000000,49.059999999999900,2779.82,533.82,26.759999999999800,42.239999999999900,3605.5850282485900,974.5213559322030,21.0,14.641638418079100,4007.91,562.71,21.5,45.5,4401.31,550.83,19.25999999999930,42.80000000000000 -290,3512.07,637.15,37.66999999999960,89.07000000000010,3526.19,541.03,22.799999999999700,49.610000000000000,4432.2,733.44,49.61000000000060,113.93000000000000,4181.6,732.95,43.08999999999920,96.58999999999990,3952.41,636.1,40.5300000000002,67.64000000000000,3907.1,569.65,25.09999999999990,59.85000000000000,4104.62,565.85,30.90999999999990,53.39000000000000,4288.53,631.85,44.94000000000050,72.76000000000000,3951.23,523.29,19.23000000000000,37.80000000000010,3632.23,510.85,17.550000000000200,34.040000000000000,3663.4473770491800,947.3872131147540,67.59688524590160,52.61278688524590,4262.13,748.57,50.4399999999996,107.66000000000000,3648.13,629.36,46.32999999999990,81.09000000000000,4169.32,614.62,39.89000000000030,75.93999999999990,3518.33,578.4,29.44000000000010,58.60000000000000,2757.05,702.41,46.82999999999990,91.41000000000010,3185.03,541.36,27.94999999999980,48.59000000000000,3454.56,501.95,20.42999999999980,36.53000000000000,3809.45,549.7,22.74000000000020,49.069999999999900,2779.84,533.82,26.759999999999800,42.239999999999900,3604.676440677970,974.4591525423730,21.0,14.623559322033900,4008.35,562.73,21.5,45.51000000000000,4401.47,550.8,19.25999999999930,42.80000000000010 -291,3512.22,637.75,37.35000000000040,88.19000000000010,3526.97,540.99,22.79000000000040,49.60000000000000,4432.42,732.38,49.60000000000040,113.92000000000000,4180.6,732.97,43.08999999999920,96.58999999999990,3952.89,636.24,40.54000000000000,67.64000000000000,3907.13,569.63,25.08999999999970,59.85000000000000,4105.28,565.83,30.900000000000500,53.5,4288.16,631.59,44.94000000000050,72.75,3951.57,523.33,19.259999999999800,37.819999999999900,3632.59,510.93,17.559999999999900,34.04000000000000,3660.599344262300,947.4318032786880,67.59672131147540,52.56819672131150,4262.9,747.59,50.19000000000050,107.16000000000000,3648.22,628.86,46.33000000000040,81.08000000000000,4170.04,614.59,39.88000000000010,75.93999999999990,3519.7,577.98,29.44000000000010,58.60000000000000,2751.53,702.73,46.82999999999990,91.40000000000000,3184.55,541.3,27.94999999999980,48.58000000000000,3454.49,501.92,20.43000000000030,36.53000000000000,3810.2,549.56,22.73000000000000,49.07000000000010,2779.86,533.82,26.759999999999800,42.239999999999900,3603.7678531073400,974.3969491525420,21.0,14.605480225988700,4008.78,562.76,21.5,45.5,4401.62,550.77,19.26000000000020,42.80000000000010 -292,3512.38,638.36,37.02000000000000,87.30000000000000,3527.75,540.94,22.790000000000000,49.59999999999990,4432.63,731.31,49.60999999999970,113.93000000000000,4182.42,732.94,43.10000000000040,96.59999999999990,3953.38,636.39,40.52999999999980,67.64000000000000,3907.15,569.62,25.09999999999990,59.85000000000000,4105.94,565.81,30.890000000000300,53.620000000000000,4287.8,631.33,44.9399999999996,72.75,3951.9,523.37,19.290000000000000,37.84000000000000,3632.96,511.01,17.550000000000200,34.040000000000000,3657.7513114754100,947.4763934426230,67.59655737704920,52.52360655737710,4263.67,746.6,49.9399999999996,106.66000000000000,3648.3,628.35,46.33999999999970,81.09000000000000,4170.75,614.56,39.88000000000010,75.94000000000010,3521.07,577.57,29.44000000000010,58.59999999999990,2746.01,703.04,46.82999999999990,91.41000000000010,3184.06,541.23,27.95000000000030,48.59000000000000,3454.42,501.89,20.42999999999980,36.53000000000000,3810.94,549.43,22.73999999999980,49.07000000000010,2779.89,533.83,26.76000000000020,42.24000000000000,3602.8592655367200,974.3347457627120,21.0,14.587401129943500,4009.22,562.78,21.5,45.51000000000000,4401.78,550.74,19.26000000000020,42.80000000000000 -293,3512.54,638.96,36.690000000000100,86.42000000000000,3528.53,540.89,22.790000000000000,49.610000000000000,4432.85,730.25,49.599999999999500,113.92000000000000,4184.24,732.92,43.10000000000040,96.59000000000010,3953.87,636.53,40.5300000000002,67.64000000000000,3907.17,569.6,25.09999999999990,59.85000000000000,4106.59,565.79,30.88999999999940,53.73000000000000,4287.44,631.06,44.93000000000030,72.7600000000001,3952.24,523.41,19.320000000000200,37.860000000000000,3633.32,511.09,17.559999999999900,34.04000000000000,3654.9032786885200,947.5209836065570,67.59639344262290,52.479016393442700,4264.44,745.61,49.70000000000070,106.17000000000000,3648.39,627.84,46.34000000000020,81.08999999999990,4171.47,614.53,39.88000000000010,75.94000000000010,3522.44,577.16,29.42999999999980,58.60000000000000,2740.49,703.36,46.83000000000040,91.41000000000000,3183.57,541.17,27.94999999999980,48.59000000000000,3454.35,501.85,20.43000000000030,36.53000000000000,3811.69,549.29,22.73000000000000,49.07000000000010,2779.91,533.83,26.76000000000020,42.24000000000000,3601.9506779661000,974.2725423728810,21.0,14.569322033898300,4009.65,562.8,21.5,45.51000000000000,4401.94,550.71,19.26000000000020,42.80000000000000 -294,3512.69,639.57,36.36999999999990,85.53000000000000,3529.31,540.84,22.790000000000000,49.610000000000000,4433.06,729.18,49.60999999999970,113.93000000000000,4186.07,732.89,43.09000000000020,96.59000000000010,3954.35,636.68,40.54000000000000,67.6400000000001,3907.19,569.58,25.09999999999990,59.84999999999990,4107.25,565.78,30.88000000000010,53.84000000000000,4287.07,630.8,44.94000000000050,72.76000000000000,3952.57,523.45,19.35999999999970,37.89000000000000,3633.69,511.17,17.549999999999700,34.04000000000000,3652.0552459016400,947.5655737704920,67.59622950819670,52.434426229508200,4265.22,744.63,49.4399999999996,105.67000000000000,3648.48,627.34,46.32999999999990,81.08999999999990,4172.18,614.5,39.88000000000010,75.94000000000010,3523.8,576.74,29.4399999999996,58.60000000000000,2734.97,703.68,46.83000000000040,91.41000000000010,3183.09,541.11,27.94999999999980,48.59000000000000,3454.28,501.82,20.42999999999980,36.53000000000000,3812.43,549.16,22.74000000000020,49.06000000000010,2779.93,533.83,26.76000000000020,42.24000000000000,3601.04209039548,974.2103389830510,21.0,14.55124293785320,4010.09,562.83,21.5,45.5,4402.1,550.68,19.25,42.80000000000010 -295,3512.85,640.17,36.04000000000000,84.65000000000010,3530.08,540.79,22.800000000000200,49.610000000000000,4433.28,728.11,49.60000000000040,113.93000000000000,4187.89,732.86,43.08999999999920,96.59000000000010,3954.84,636.82,40.52999999999980,67.64000000000000,3907.22,569.57,25.090000000000100,59.84999999999990,4107.91,565.76,30.86999999999990,53.950000000000000,4286.71,630.54,44.93000000000030,72.75,3952.91,523.49,19.390000000000300,37.91000000000000,3634.05,511.25,17.559999999999900,34.040000000000000,3649.2072131147500,947.6101639344260,67.59606557377050,52.3898360655738,4265.99,743.64,49.19999999999980,105.17000000000000,3648.57,626.83,46.32999999999990,81.08999999999990,4172.9,614.47,39.88000000000010,75.93999999999990,3525.17,576.33,29.44000000000010,58.59999999999990,2729.46,704.0,46.82999999999990,91.40000000000000,3183.36,540.65,27.94999999999980,48.59000000000000,3454.21,501.79,20.42999999999980,36.53000000000000,3813.18,549.02,22.73000000000000,49.07000000000010,2779.95,533.83,26.76000000000020,42.24000000000000,3600.1335028248600,974.1481355932200,21.0,14.533163841808000,4010.52,562.85,21.5,45.51000000000000,4402.25,550.65,19.26000000000020,42.80000000000010 -296,3513.0,640.78,35.7199999999998,83.76000000000000,3530.86,540.74,22.790000000000000,49.610000000000000,4433.49,727.05,49.61000000000060,113.92000000000000,4189.71,732.83,43.10000000000040,96.58999999999990,3955.33,636.97,40.5300000000002,67.64000000000000,3907.24,569.55,25.100000000000400,59.85000000000000,4108.57,565.74,30.860000000000600,54.069999999999900,4286.34,630.27,44.9399999999996,72.76000000000000,3953.24,523.53,19.43000000000030,37.930000000000100,3634.42,511.33,17.549999999999700,34.04000000000000,3646.3591803278700,947.6547540983610,67.59590163934430,52.34524590163940,4266.76,742.65,48.94999999999980,104.68000000000000,3648.65,626.33,46.33999999999970,81.07999999999990,4173.61,614.44,39.88000000000010,75.93999999999990,3526.54,575.91,29.44000000000010,58.60000000000000,2723.94,704.31,46.82999999999990,91.41000000000010,3183.63,540.19,27.94999999999980,48.58999999999990,3454.14,501.75,20.43000000000030,36.54000000000000,3813.92,548.89,22.73999999999980,49.06000000000010,2779.98,533.83,26.759999999999800,42.24000000000000,3599.224915254240,974.0859322033900,21.0,14.515084745762800,4010.96,562.87,21.5,45.51000000000000,4402.41,550.62,19.26000000000020,42.80000000000000 -297,3513.16,641.38,35.39000000000030,82.88,3531.64,540.7,22.790000000000000,49.59999999999990,4433.7,725.98,49.61000000000060,113.93000000000000,4191.53,732.8,43.10000000000040,96.59000000000010,3955.81,637.11,40.54000000000000,67.64000000000000,3907.26,569.54,25.09999999999990,59.85000000000000,4109.23,565.72,30.860000000000600,54.18000000000000,4285.98,630.01,44.94000000000050,72.76000000000000,3953.58,523.57,19.46000000000000,37.94999999999990,3634.78,511.41,17.559999999999900,34.04000000000000,3643.5111475409800,947.6993442622950,67.59573770491800,52.30065573770490,4267.53,741.66,48.69999999999980,104.18000000000000,3648.74,625.82,46.34000000000020,81.08999999999990,4174.32,614.41,39.89000000000030,75.94000000000010,3527.91,575.5,29.44000000000010,58.60000000000000,2718.42,704.63,46.82999999999990,91.41000000000000,3183.9,539.73,27.94999999999980,48.59000000000000,3454.07,501.72,20.42999999999980,36.53000000000000,3814.67,548.75,22.73000000000000,49.07000000000010,2780.0,533.84,26.76000000000020,42.24000000000000,3598.316327683620,974.0237288135590,21.0,14.497005649717600,4011.39,562.9,21.5,45.5,4402.57,550.59,19.25,42.79000000000000 -298,3513.31,641.98,35.070000000000200,82.0,3532.42,540.65,22.790000000000000,49.60000000000000,4433.92,724.92,49.60999999999970,113.92000000000000,4193.36,732.78,43.09000000000020,96.59000000000010,3956.3,637.25,40.52999999999980,67.65000000000000,3907.28,569.52,25.09999999999990,59.85000000000000,4109.89,565.71,30.84999999999950,54.29000000000000,4285.61,629.75,44.94000000000050,72.75,3953.92,523.6,19.48000000000000,37.98000000000000,3635.15,511.49,17.549999999999700,34.040000000000000,3640.6631147541000,947.7439344262290,67.59557377049180,52.25606557377050,4268.3,740.68,48.46000000000000,103.68000000000000,3648.83,625.32,46.32999999999990,81.07999999999990,4175.04,614.38,39.88000000000010,75.94000000000010,3529.28,575.08,29.4399999999996,58.59999999999990,2712.9,704.95,46.82999999999990,91.41000000000000,3184.17,539.27,27.94999999999980,48.59000000000000,3454.0,501.69,20.44000000000010,36.53000000000000,3815.41,548.62,22.73000000000000,49.059999999999900,2780.02,533.84,26.76000000000020,42.24000000000000,3597.4077401129900,973.9615254237290,21.0,14.47892655367240,4011.83,562.92,21.49000000000020,45.51000000000000,4402.72,550.56,19.25999999999930,42.79000000000010 -299,3513.47,642.59,34.74000000000020,81.12,3533.19,540.6,22.799999999999700,49.610000000000000,4434.13,723.85,49.60999999999970,113.93000000000000,4193.6,732.75,43.08999999999920,96.59000000000010,3956.79,637.4,40.5300000000002,67.64000000000000,3907.3,569.5,25.09999999999990,59.85000000000000,4110.55,565.69,30.840000000000100,54.40000000000000,4285.25,629.48,44.9399999999996,72.76000000000000,3954.25,523.64,19.520000000000000,38.01000000000000,3635.51,511.57,17.559999999999900,34.04000000000000,3637.8150819672100,947.7885245901640,67.59540983606560,52.21147540983610,4269.07,739.69,48.21000000000000,103.18000000000000,3648.92,624.81,46.32999999999990,81.09000000000000,4175.75,614.35,39.88000000000010,75.93999999999990,3530.64,574.67,29.44000000000010,58.60000000000000,2707.38,705.27,46.82999999999990,91.40000000000000,3184.44,538.81,27.94999999999980,48.59000000000000,3453.93,501.65,20.44000000000010,36.54000000000010,3816.16,548.48,22.73000000000000,49.069999999999900,2780.04,533.84,26.76000000000020,42.24000000000000,3596.499152542370,973.8993220338980,21.0,14.460847457627200,4012.26,562.94,21.5,45.51000000000000,4402.88,550.53,19.26000000000020,42.79000000000010 -300,3513.62,643.19,34.42000000000010,80.2399999999999,3533.97,540.55,22.79000000000040,49.610000000000000,4434.35,722.79,49.599999999999500,113.92000000000000,4193.84,732.72,43.09000000000020,96.58999999999990,3957.27,637.54,40.54000000000000,67.64000000000000,3907.33,569.49,25.09999999999990,59.85000000000000,4111.21,565.67,30.829999999999900,54.520000000000100,4284.89,629.22,44.92999999999940,72.76000000000000,3954.59,523.68,19.549999999999700,38.030000000000100,3635.88,511.65,17.549999999999700,34.04000000000010,3634.9670491803300,947.8331147540980,67.59524590163940,52.16688524590170,4269.84,738.7,47.96000000000000,102.69000000000000,3649.0,624.31,46.34000000000020,81.08000000000000,4176.47,614.32,39.88000000000010,75.93999999999990,3532.01,574.26,29.4399999999996,58.59000000000000,2701.86,705.59,46.82999999999990,91.40000000000000,3184.71,538.35,27.94999999999980,48.59000000000000,3453.86,501.62,20.44000000000010,36.53000000000000,3816.9,548.34,22.73000000000000,49.069999999999900,2780.07,533.84,26.759999999999800,42.24000000000000,3595.5905649717500,973.8371186440680,21.0,14.442768361582000,4012.69,562.97,21.5,45.5,4403.04,550.5,19.26000000000020,42.79000000000000 -301,3513.78,643.8,34.08999999999970,79.35000000000000,3534.75,540.5,22.790000000000000,49.610000000000000,4434.56,721.72,49.60999999999970,113.93000000000000,4194.08,732.69,43.09000000000020,96.58999999999990,3957.76,637.69,40.52999999999980,67.64000000000000,3907.35,569.47,25.09999999999990,59.85000000000000,4111.87,565.66,30.81999999999970,54.620000000000000,4284.52,628.96,44.9399999999996,72.75,3954.92,523.72,19.590000000000100,38.05000000000000,3636.24,511.73,17.5600000000004,34.040000000000000,3632.1190163934400,947.8777049180330,67.59508196721310,52.12229508196720,4270.61,737.72,47.720000000000300,102.18000000000000,3649.09,623.8,46.33999999999970,81.09000000000000,4177.18,614.29,39.88000000000010,75.94000000000010,3533.38,573.84,29.44000000000010,58.60000000000000,2696.35,705.9,46.82999999999990,91.41000000000000,3184.99,537.89,27.94000000000010,48.59000000000000,3453.79,501.59,20.44000000000010,36.53000000000000,3817.65,548.21,22.73000000000000,49.059999999999900,2780.09,533.84,26.759999999999800,42.24000000000000,3594.68197740113,973.7749152542370,21.0,14.424689265536800,4013.13,562.99,21.5,45.51000000000000,4403.19,550.46,19.26000000000020,42.80000000000000 -302,3513.93,644.4,33.77000000000000,78.47000000000000,3535.53,540.45,22.790000000000000,49.6099999999999,4434.78,720.65,49.60000000000040,113.93000000000000,4194.32,732.66,43.09000000000020,96.59000000000010,3958.25,637.83,40.5300000000002,67.64000000000000,3907.37,569.45,25.09999999999990,59.84999999999990,4112.52,565.64,30.81999999999970,54.74000000000000,4284.16,628.7,44.93000000000030,72.75,3955.26,523.76,19.61999999999990,38.07000000000010,3636.61,511.81,17.549999999999700,34.04000000000000,3629.2709836065600,947.9222950819670,67.59491803278690,52.077704918032800,4271.39,736.73,47.46000000000000,101.69000000000000,3649.18,623.29,46.33000000000040,81.09000000000000,4177.9,614.26,39.88000000000010,75.94000000000010,3534.75,573.43,29.44000000000010,58.60000000000000,2690.83,706.22,46.82999999999990,91.41000000000000,3185.26,537.43,27.9399999999996,48.59000000000000,3453.72,501.55,20.44000000000010,36.54000000000000,3818.39,548.07,22.73000000000000,49.069999999999900,2780.11,533.84,26.759999999999800,42.24000000000000,3593.7733898305100,973.7127118644070,21.0,14.406610169491600,4013.56,563.01,21.5,45.51000000000000,4403.35,550.43,19.25999999999930,42.80000000000010 -303,3514.09,645.0,33.440000000000100,77.59000000000000,3536.31,540.41,22.790000000000000,49.60000000000000,4434.99,719.59,49.61000000000060,113.92000000000000,4194.56,732.63,43.08999999999920,96.60000000000000,3958.73,637.98,40.5300000000002,67.64000000000000,3907.39,569.44,25.09999999999990,59.84999999999990,4113.18,565.62,30.80999999999950,54.860000000000000,4283.79,628.43,44.9399999999996,72.7600000000001,3955.59,523.8,19.64999999999960,38.10000000000000,3636.97,511.89,17.5600000000004,34.040000000000000,3626.422950819670,947.9668852459020,67.5947540983607,52.033114754098400,4272.16,735.74,47.21000000000000,101.20000000000000,3649.27,622.79,46.32999999999990,81.09000000000000,4178.61,614.23,39.88000000000010,75.93999999999990,3536.12,573.01,29.44000000000010,58.60000000000000,2685.31,706.54,46.82999999999990,91.40000000000010,3185.53,536.97,27.94999999999980,48.58999999999990,3453.65,501.52,20.44000000000010,36.53000000000000,3819.14,547.94,22.73000000000000,49.059999999999900,2780.13,533.85,26.759999999999800,42.24000000000000,3592.864802259890,973.6505084745760,21.0,14.388531073446400,4014.0,563.04,21.5,45.5,4403.51,550.4,19.26000000000020,42.80000000000010 -304,3514.24,645.61,33.120000000000300,76.69999999999990,3537.08,540.36,22.800000000000200,49.60000000000000,4435.21,718.52,49.60000000000040,113.93000000000000,4194.8,732.61,43.09000000000020,96.59000000000010,3959.22,638.12,40.5300000000002,67.64000000000000,3907.42,569.42,25.090000000000100,59.85000000000000,4113.84,565.6,30.800000000000200,54.97000000000000,4283.43,628.17,44.9399999999996,72.75,3955.93,523.84,19.68000000000030,38.120000000000000,3637.34,511.97,17.549999999999700,34.040000000000000,3623.5749180327900,948.0114754098360,67.59459016393450,51.98852459016400,4272.93,734.75,46.96999999999940,100.70000000000000,3649.35,622.28,46.34000000000020,81.09000000000000,4179.33,614.2,39.88000000000010,75.93999999999990,3537.48,572.6,29.44000000000010,58.60000000000000,2679.79,706.86,46.82999999999990,91.40000000000000,3185.8,536.51,27.94999999999980,48.59000000000000,3453.58,501.49,20.44000000000010,36.53000000000000,3819.88,547.8,22.73000000000000,49.07000000000010,2780.16,533.85,26.76000000000020,42.24000000000000,3591.9562146892700,973.5883050847460,21.0,14.370451977401200,4014.43,563.06,21.5,45.510000000000100,4403.66,550.37,19.26000000000020,42.80000000000000 -305,3514.4,646.21,32.790000000000000,75.81999999999990,3537.86,540.31,22.790000000000000,49.610000000000000,4435.42,717.46,49.60999999999970,113.92000000000000,4195.04,732.58,43.09000000000020,96.58999999999990,3959.71,638.27,40.52999999999980,67.64000000000000,3907.44,569.41,25.09999999999990,59.85000000000000,4114.5,565.59,30.790000000000000,55.07999999999990,4283.06,627.91,44.9399999999996,72.75,3956.26,523.88,19.7199999999998,38.14000000000000,3637.7,512.05,17.5600000000004,34.04000000000010,3620.7268852459000,948.0560655737710,67.59442622950820,51.94393442622950,4273.7,733.77,46.720000000000300,100.20000000000000,3649.44,621.78,46.34000000000020,81.08000000000000,4180.04,614.17,39.88000000000010,75.94000000000010,3538.85,572.18,29.44000000000010,58.60000000000000,2674.27,707.17,46.82999999999990,91.41000000000010,3186.07,536.05,27.94999999999980,48.59000000000000,3453.51,501.46,20.4399999999996,36.53000000000000,3820.62,547.67,22.74000000000020,49.06000000000010,2780.18,533.85,26.76000000000020,42.24000000000000,3591.047627118640,973.5261016949150,21.0,14.35237288135600,4014.87,563.08,21.5,45.51000000000000,4403.82,550.34,19.26000000000020,42.80000000000000 -306,3514.55,646.82,32.4699999999998,74.93000000000000,3538.64,540.26,22.790000000000000,49.610000000000000,4435.63,716.39,49.60999999999970,113.93000000000000,4195.28,732.55,43.09000000000020,96.59000000000010,3960.19,638.41,40.52999999999980,67.64000000000000,3907.46,569.39,25.09999999999990,59.85000000000000,4115.16,565.57,30.779999999999700,55.18999999999990,4282.7,627.64,44.94000000000050,72.76000000000000,3956.6,523.92,19.75,38.16000000000010,3638.07,512.13,17.549999999999700,34.040000000000000,3617.8788524590200,948.1006557377050,67.59426229508200,51.8993442622951,4273.15,733.0,46.720000000000300,100.20000000000000,3649.53,621.27,46.32999999999990,81.09000000000000,4180.75,614.15,39.89000000000030,75.93000000000010,3540.22,571.77,29.44000000000010,58.60000000000000,2668.75,707.49,46.84000000000020,91.41000000000000,3186.34,535.59,27.94999999999980,48.58999999999990,3453.44,501.42,20.44000000000010,36.53000000000000,3821.37,547.53,22.73000000000000,49.07000000000010,2780.2,533.85,26.76000000000020,42.24000000000000,3590.1390395480200,973.4638983050850,21.0,14.334293785310800,4015.3,563.11,21.5,45.5,4403.98,550.31,19.26000000000020,42.80000000000010 -307,3514.71,647.42,32.13999999999990,74.05000000000010,3539.42,540.21,22.790000000000000,49.610000000000000,4435.85,715.33,49.599999999999500,113.92000000000000,4195.52,732.52,43.08999999999920,96.59000000000010,3960.68,638.55,40.5300000000002,67.65000000000010,3907.48,569.37,25.09999999999990,59.85000000000000,4115.82,565.55,30.77000000000040,55.31000000000010,4282.34,627.38,44.93000000000030,72.76000000000000,3956.94,523.96,19.779999999999700,38.18999999999990,3638.43,512.21,17.559999999999900,34.040000000000000,3615.030819672130,948.1452459016390,67.59409836065580,51.85475409836070,4272.59,732.23,46.72999999999960,100.20000000000000,3649.62,620.77,46.32999999999990,81.08000000000000,4181.47,614.12,39.88000000000010,75.93000000000000,3541.59,571.35,29.44000000000010,58.60000000000000,2664.11,707.84,46.82999999999990,91.41000000000000,3186.61,535.13,27.94999999999980,48.59000000000000,3453.38,501.39,20.42999999999980,36.53000000000000,3822.11,547.39,22.73999999999980,49.07000000000010,2780.22,533.85,26.76000000000020,42.24000000000000,3589.230451977400,973.4016949152540,21.0,14.316214689265600,4015.74,563.13,21.5,45.51000000000000,4403.83,550.28,19.26000000000020,42.80000000000010 -308,3512.83,647.62,32.15000000000010,74.05000000000000,3540.2,540.16,22.790000000000000,49.610000000000000,4436.06,714.26,49.60999999999970,113.93000000000000,4195.76,732.49,43.09000000000020,96.60000000000000,3961.17,638.7,40.52999999999980,67.64000000000000,3907.51,569.36,25.08999999999970,59.85000000000000,4116.48,565.53,30.76000000000020,55.42000000000010,4281.97,627.12,44.9399999999996,72.75,3957.27,523.99,19.820000000000200,38.22000000000000,3638.8,512.29,17.549999999999700,34.04000000000010,3612.182786885250,948.1898360655740,67.59393442622960,51.81016393442630,4272.04,731.47,46.720000000000300,100.20000000000000,3649.7,620.26,46.34000000000020,81.09000000000000,4182.48,613.85,39.88000000000010,75.93999999999990,3542.96,570.94,29.44000000000010,58.59999999999990,2659.46,708.2,46.82999999999990,91.40000000000000,3186.88,534.67,27.94999999999980,48.59000000000000,3453.31,501.36,20.42999999999980,36.53000000000000,3822.86,547.26,22.73000000000000,49.07000000000010,2780.25,533.86,26.76000000000020,42.24000000000000,3588.3218644067800,973.3394915254240,21.0,14.298135593220400,4016.17,563.15,21.5,45.51000000000000,4403.69,550.25,19.26000000000020,42.80000000000000 -309,3510.96,647.81,32.15000000000010,74.05000000000010,3540.97,540.12,22.800000000000200,49.60000000000000,4436.28,713.19,49.60000000000040,113.93000000000000,4196.0,732.47,43.09000000000020,96.58999999999990,3961.65,638.84,40.52999999999980,67.64000000000000,3907.53,569.34,25.09999999999990,59.85000000000000,4117.14,565.52,30.75,55.53000000000000,4281.61,626.85,44.94000000000050,72.76000000000000,3957.61,524.03,19.83999999999970,38.24000000000000,3639.16,512.37,17.559999999999900,34.040000000000000,3609.3347540983600,948.2344262295080,67.59377049180330,51.76557377049180,4271.49,730.7,46.720000000000300,100.20000000000000,3649.79,619.75,46.34000000000020,81.09000000000000,4183.5,613.59,39.88000000000010,75.93999999999990,3544.33,570.53,29.44000000000010,58.60000000000000,2654.81,708.55,46.82999999999990,91.41000000000010,3187.15,534.21,27.94999999999980,48.58999999999990,3453.24,501.32,20.43000000000030,36.53000000000000,3823.6,547.12,22.74000000000020,49.07000000000010,2780.27,533.86,26.76000000000020,42.24000000000000,3587.4132768361600,973.2772881355930,21.0,14.28005649717520,4016.61,563.18,21.5,45.5,4403.55,550.22,19.25,42.80000000000000 -310,3509.09,648.0,32.13999999999990,74.05000000000000,3541.75,540.07,22.790000000000000,49.59999999999990,4436.49,712.13,49.61000000000060,113.92000000000000,4196.24,732.44,43.09000000000020,96.58999999999990,3962.14,638.99,40.5300000000002,67.64000000000000,3907.55,569.32,25.09999999999990,59.84999999999990,4117.8,565.5,30.73999999999980,55.64000000000000,4281.24,626.59,44.94000000000050,72.76000000000000,3957.94,524.07,19.88000000000010,38.26000000000000,3639.53,512.45,17.549999999999700,34.040000000000000,3606.4867213114800,948.2790163934430,67.59360655737710,51.7209836065574,4270.93,729.93,46.72999999999960,100.20000000000000,3651.47,620.09,46.33000000000040,81.07999999999990,4184.51,613.33,39.88000000000010,75.93000000000000,3545.69,570.11,29.44000000000010,58.60000000000000,2650.16,708.9,46.82999999999990,91.41000000000000,3187.42,533.75,27.94999999999980,48.59000000000000,3453.17,501.29,20.42999999999980,36.53000000000000,3824.35,546.99,22.73000000000000,49.059999999999900,2780.29,533.86,26.76000000000020,42.24000000000000,3586.504689265540,973.2150847457630,21.0,14.261977401130000,4017.04,563.2,21.5,45.51000000000000,4403.4,550.19,19.26000000000020,42.80000000000000 -311,3507.21,648.2,32.15000000000010,74.05000000000000,3542.53,540.02,22.790000000000000,49.610000000000000,4436.71,711.06,49.60000000000040,113.93000000000000,4196.48,732.41,43.09000000000020,96.59000000000010,3962.62,639.13,40.54000000000000,67.64000000000000,3907.57,569.31,25.09999999999990,59.85000000000000,4118.45,565.48,30.73999999999980,55.76000000000000,4280.88,626.33,44.9399999999996,72.75,3958.28,524.11,19.90999999999990,38.29000000000000,3639.89,512.53,17.559999999999900,34.04000000000010,3603.63868852459,948.323606557377,67.59344262295090,51.676393442623000,4270.38,729.17,46.720000000000300,100.20000000000000,3653.15,620.42,46.32999999999990,81.08000000000000,4185.52,613.06,39.8799999999992,75.94000000000010,3547.06,569.7,29.44000000000010,58.59999999999990,2645.51,709.25,46.83999999999970,91.41000000000000,3187.7,533.29,27.94000000000010,48.59000000000000,3453.1,501.26,20.43000000000030,36.53000000000000,3825.09,546.85,22.73999999999980,49.069999999999900,2780.31,533.86,26.76000000000020,42.24000000000000,3585.5961016949200,973.1528813559320,21.0,14.243898305084800,4017.48,563.22,21.5,45.51000000000000,4403.26,550.16,19.26000000000020,42.79000000000010 -312,3505.34,648.39,32.13999999999990,74.05000000000010,3543.31,539.97,22.790000000000000,49.610000000000000,4436.92,710.0,49.60999999999970,113.92000000000000,4196.72,732.38,43.09000000000020,96.59000000000010,3963.11,639.28,40.52999999999980,67.64000000000000,3907.59,569.29,25.09999999999990,59.85000000000000,4119.11,565.47,30.74000000000070,55.860000000000000,4280.52,626.07,44.92999999999940,72.75,3958.61,524.15,19.94999999999980,38.31000000000010,3640.26,512.61,17.549999999999700,34.040000000000000,3600.790655737710,948.3681967213120,67.59327868852470,51.631803278688500,4269.83,728.4,46.720000000000300,100.20000000000000,3654.82,620.75,46.33999999999970,81.09000000000000,4186.54,612.8,39.88000000000010,75.94000000000010,3548.43,569.28,29.44000000000010,58.60000000000000,2640.87,709.61,46.82999999999990,91.40000000000000,3187.53,532.83,27.94999999999980,48.58999999999990,3453.03,501.22,20.42999999999980,36.53000000000000,3825.84,546.72,22.73000000000000,49.059999999999900,2780.33,533.86,26.76000000000020,42.24000000000000,3584.6875141242900,973.0906779661020,21.0,14.225819209039600,4017.91,563.25,21.5,45.5,4403.11,550.13,19.26000000000020,42.79000000000000 -313,3503.46,648.59,32.15000000000010,74.05000000000000,3544.09,539.92,22.790000000000000,49.610000000000000,4437.13,708.93,49.60999999999970,113.93000000000000,4196.96,732.35,43.09000000000020,96.59000000000010,3962.14,639.34,40.5300000000002,67.64000000000000,3907.62,569.28,25.09999999999990,59.85000000000000,4119.77,565.45,30.729999999999600,55.97999999999990,4280.15,625.8,44.94000000000050,72.76000000000000,3958.95,524.19,19.98000000000000,38.32999999999990,3640.62,512.69,17.559999999999900,34.040000000000000,3597.9426229508200,948.4127868852460,67.59311475409840,51.58721311475410,4269.27,727.63,46.72999999999960,100.20000000000000,3656.5,621.08,46.34000000000020,81.08999999999990,4187.55,612.54,39.88000000000010,75.93000000000010,3549.8,568.87,29.4399999999996,58.60000000000000,2636.22,709.96,46.83000000000040,91.41000000000000,3187.36,532.37,27.94999999999980,48.59000000000000,3452.96,501.19,20.42999999999980,36.53000000000000,3826.58,546.58,22.74000000000020,49.069999999999900,2780.36,533.87,26.759999999999800,42.24000000000000,3583.778926553670,973.0284745762710,21.0,14.2077401129944,4018.35,563.27,21.49000000000020,45.51000000000000,4402.97,550.1,19.25999999999930,42.79000000000000 -314,3501.59,648.78,32.14999999999960,74.05000000000010,3544.86,539.87,22.799999999999700,49.610000000000000,4437.35,707.86,49.599999999999500,113.93000000000000,4197.2,732.33,43.09000000000020,96.58999999999990,3961.17,639.39,40.52999999999980,67.64000000000000,3907.64,569.26,25.09999999999990,59.85000000000000,4120.43,565.43,30.719999999999300,56.09000000000000,4279.79,625.54,44.93000000000030,72.75,3959.28,524.23,20.020000000000000,38.35000000000000,3640.99,512.76,17.550000000000200,34.040000000000000,3595.0945901639300,948.4573770491800,67.59295081967220,51.54262295081970,4268.72,726.87,46.71999999999940,100.20000000000000,3658.18,621.41,46.34000000000020,81.09000000000000,4188.56,612.27,39.8799999999992,75.94000000000010,3551.17,568.45,29.44000000000010,58.59999999999990,2631.57,710.31,46.82999999999990,91.41000000000010,3187.19,531.92,27.94999999999980,48.58000000000000,3452.89,501.16,20.43000000000030,36.53000000000000,3827.33,546.45,22.73000000000000,49.059999999999900,2780.38,533.87,26.759999999999800,42.24000000000000,3582.8703389830500,972.9662711864410,21.0,14.189661016949200,4018.78,563.3,21.5,45.5,4402.83,550.06,19.25,42.80000000000010 -315,3499.72,648.98,32.14000000000030,74.05000000000000,3545.64,539.83,22.790000000000000,49.59999999999990,4437.56,706.8,49.60999999999970,113.93000000000000,4197.44,732.3,43.09000000000020,96.59000000000010,3960.2,639.45,40.5300000000002,67.64000000000000,3907.66,569.24,25.100000000000400,59.85000000000000,4121.09,565.41,30.71000000000000,56.21000000000000,4279.42,625.28,44.9399999999996,72.75,3959.62,524.27,20.040000000000000,38.370000000000000,3641.35,512.84,17.559999999999900,34.040000000000000,3592.246557377050,948.5019672131150,67.59278688524600,51.49803278688530,4268.17,726.1,46.720000000000300,100.20000000000000,3659.86,621.74,46.32999999999990,81.09000000000000,4189.57,612.01,39.89000000000030,75.94000000000010,3552.53,568.04,29.4399999999996,58.60000000000000,2626.92,710.66,46.84000000000020,91.41000000000010,3187.02,531.46,27.94999999999980,48.57999999999990,3452.82,501.12,20.42999999999980,36.53000000000000,3828.07,546.31,22.73999999999980,49.07000000000010,2780.4,533.87,26.759999999999800,42.24000000000000,3581.9617514124300,972.9040677966100,21.0,14.171581920904000,4019.22,563.32,21.49000000000020,45.51000000000000,4402.68,550.03,19.25999999999930,42.80000000000010 -316,3497.84,649.17,32.14999999999960,74.05000000000010,3546.42,539.78,22.790000000000000,49.60000000000000,4437.78,705.73,49.60000000000040,113.93000000000000,4197.67,732.27,43.10000000000040,96.59000000000010,3959.23,639.51,40.5300000000002,67.64000000000000,3907.68,569.23,25.100000000000400,59.85000000000000,4121.75,565.4,30.69999999999980,56.31000000000010,4279.06,625.01,44.9399999999996,72.76000000000000,3959.96,524.31,20.070000000000200,38.40000000000010,3641.72,512.92,17.550000000000200,34.04000000000010,3589.398524590160,948.5465573770490,67.59262295081980,51.45344262295080,4267.62,725.33,46.720000000000300,100.20000000000000,3661.54,622.07,46.32999999999990,81.08999999999990,4190.59,611.75,39.88000000000010,75.93000000000000,3553.9,567.63,29.44000000000010,58.60000000000000,2622.28,711.02,46.82999999999990,91.40000000000000,3186.85,531.0,27.95000000000030,48.58000000000000,3452.75,501.09,20.42999999999980,36.53000000000000,3828.82,546.17,22.73000000000000,49.07000000000010,2780.42,533.87,26.759999999999800,42.24000000000000,3581.053163841810,972.8418644067800,21.0,14.153502824858800,4019.65,563.34,21.5,45.51000000000000,4402.54,550.0,19.26000000000020,42.80000000000000 -317,3495.97,649.37,32.15000000000010,74.05000000000000,3547.2,539.73,22.790000000000000,49.610000000000000,4437.99,704.67,49.61000000000060,113.92000000000000,4197.91,732.24,43.10000000000040,96.59000000000010,3958.26,639.57,40.52999999999980,67.64000000000000,3907.71,569.21,25.090000000000100,59.84999999999990,4122.41,565.38,30.69000000000050,56.43000000000000,4278.69,624.75,44.94000000000050,72.76000000000000,3960.29,524.34,20.110000000000100,38.43000000000000,3642.08,513.0,17.559999999999900,34.040000000000000,3586.5504918032800,948.5911475409840,67.59245901639350,51.40885245901640,4267.06,724.57,46.72999999999960,100.20000000000000,3663.21,622.41,46.34000000000020,81.08000000000000,4191.6,611.48,39.8799999999992,75.93999999999990,3555.27,567.21,29.44000000000010,58.59999999999990,2617.63,711.37,46.82999999999990,91.41000000000000,3186.68,530.54,27.95000000000030,48.58000000000000,3452.68,501.06,20.43000000000030,36.53000000000000,3829.56,546.04,22.73000000000000,49.06000000000010,2780.45,533.87,26.76000000000020,42.24000000000000,3580.1445762711900,972.7796610169490,21.0,14.135423728813600,4020.08,563.37,21.5,45.5,4402.39,549.97,19.25999999999930,42.80000000000000 -318,3494.09,649.56,32.14999999999960,74.05000000000010,3547.97,539.68,22.800000000000200,49.610000000000000,4438.21,703.6,49.60000000000040,113.93000000000000,4198.15,732.21,43.10000000000040,96.58999999999990,3957.29,639.63,40.5300000000002,67.64000000000000,3907.73,569.19,25.09999999999990,59.84999999999990,4123.07,565.36,30.68000000000030,56.54000000000000,4278.33,624.49,44.94000000000050,72.75,3960.63,524.38,20.13999999999990,38.450000000000000,3642.45,513.08,17.550000000000200,34.040000000000000,3583.7024590163900,948.635737704918,67.59229508196730,51.364262295082000,4266.51,723.8,46.71999999999940,100.20000000000000,3664.89,622.74,46.34000000000020,81.08000000000000,4192.61,611.22,39.89000000000030,75.93999999999990,3556.64,566.8,29.44000000000010,58.60000000000000,2612.98,711.72,46.82999999999990,91.41000000000000,3186.51,530.08,27.94999999999980,48.57999999999990,3452.61,501.02,20.42999999999980,36.54000000000000,3830.31,545.9,22.73000000000000,49.07000000000010,2780.47,533.87,26.76000000000020,42.24000000000000,3579.235988700570,972.7174576271190,21.0,14.117344632768400,4020.52,563.39,21.5,45.51000000000000,4402.25,549.94,19.26000000000020,42.80000000000000 -319,3492.22,649.75,32.15000000000010,74.05000000000000,3548.75,539.63,22.790000000000000,49.610000000000000,4438.42,702.54,49.60999999999970,113.92000000000000,4198.39,732.18,43.099999999999500,96.60000000000000,3956.32,639.68,40.52999999999980,67.6400000000001,3907.75,569.18,25.09999999999990,59.85000000000000,4123.72,565.34,30.67999999999940,56.66000000000000,4277.97,624.22,44.92999999999940,72.76000000000000,3960.96,524.42,20.17999999999980,38.47000000000000,3642.81,513.16,17.559999999999900,34.04000000000010,3580.854426229510,948.6803278688530,67.59213114754110,51.319672131147600,4265.96,723.03,46.720000000000300,100.20000000000000,3666.57,623.07,46.32999999999990,81.07999999999990,4193.63,610.96,39.88000000000010,75.93000000000000,3558.01,566.38,29.4399999999996,58.60000000000000,2608.33,712.07,46.82999999999990,91.41000000000000,3186.34,529.62,27.94999999999980,48.58000000000000,3452.54,500.99,20.42999999999980,36.53000000000000,3831.05,545.77,22.73000000000000,49.06000000000010,2780.49,533.88,26.76000000000020,42.24000000000000,3578.3274011299400,972.6552542372880,21.0,14.099265536723200,4020.95,563.41,21.5,45.51000000000000,4402.1,549.91,19.25999999999930,42.80000000000010 -320,3490.35,649.95,32.13999999999990,74.05000000000000,3549.53,539.58,22.790000000000000,49.610000000000000,4438.63,701.47,49.60999999999970,113.93000000000000,4198.63,732.16,43.099999999999500,96.59000000000010,3955.35,639.74,40.5300000000002,67.64000000000000,3907.77,569.16,25.09999999999990,59.85000000000000,4123.34,565.36,30.67000000000010,56.66000000000000,4277.6,623.96,44.9399999999996,72.76000000000000,3961.3,524.46,20.21000000000000,38.5,3643.18,513.24,17.550000000000200,34.040000000000000,3578.006393442620,948.7249180327870,67.59196721311490,51.27508196721310,4265.4,722.27,46.73000000000050,100.20000000000000,3668.25,623.4,46.32999999999990,81.09000000000000,4194.64,610.69,39.88000000000010,75.93999999999990,3559.38,565.97,29.42999999999980,58.60000000000000,2603.68,712.43,46.84000000000020,91.40000000000010,3186.17,529.16,27.94999999999980,48.59000000000000,3452.47,500.96,20.43000000000030,36.53000000000000,3831.8,545.63,22.73000000000000,49.07000000000010,2780.51,533.88,26.759999999999800,42.24000000000000,3577.418813559320,972.5930508474580,21.0,14.08118644067800,4021.39,563.44,21.5,45.5,4401.96,549.88,19.26000000000020,42.80000000000000 -321,3488.47,650.14,32.15000000000010,74.05000000000010,3550.31,539.54,22.790000000000000,49.60000000000000,4438.85,700.4,49.60999999999970,113.93000000000000,4198.87,732.13,43.10000000000040,96.59000000000010,3954.38,639.8,40.52999999999980,67.6400000000001,3907.8,569.15,25.08999999999970,59.85000000000000,4122.95,565.38,30.68000000000030,56.66000000000000,4277.24,623.7,44.93000000000030,72.75,3961.63,524.5,20.23999999999980,38.52000000000000,3643.54,513.32,17.559999999999900,34.040000000000000,3575.158360655740,948.7695081967210,67.59180327868860,51.2304918032787,4264.85,721.5,46.71999999999940,100.20000000000000,3669.92,623.73,46.34000000000020,81.09000000000000,4195.65,610.43,39.89000000000030,75.94000000000010,3560.74,565.55,29.44000000000010,58.60000000000000,2599.04,712.78,46.82999999999990,91.41000000000010,3186.01,528.7,27.9399999999996,48.58999999999990,3452.4,500.92,20.42999999999980,36.54000000000000,3832.54,545.5,22.73000000000000,49.059999999999900,2780.54,533.88,26.76000000000020,42.24000000000000,3576.5102259887000,972.530847457627,21.0,14.063107344632800,4021.82,563.46,21.5,45.51000000000000,4401.82,549.85,19.26000000000020,42.80000000000000 -322,3486.6,650.34,32.15000000000010,74.05000000000000,3551.09,539.49,22.790000000000000,49.60000000000000,4439.06,699.34,49.60999999999970,113.92000000000000,4199.11,732.1,43.10000000000040,96.59000000000010,3953.41,639.86,40.5300000000002,67.64000000000000,3907.82,569.13,25.09999999999990,59.85000000000000,4122.57,565.4,30.67000000000010,56.65000000000000,4276.87,623.43,44.94000000000050,72.7600000000001,3961.97,524.54,20.270000000000000,38.54000000000010,3643.91,513.4,17.550000000000200,34.04000000000010,3572.3103278688500,948.8140983606560,67.5916393442624,51.18590163934430,4264.3,720.73,46.720000000000300,100.20000000000000,3671.6,624.06,46.34000000000020,81.09000000000000,4196.67,610.17,39.88000000000010,75.93000000000010,3562.11,565.14,29.44000000000010,58.60000000000000,2594.39,713.13,46.82999999999990,91.41000000000000,3185.84,528.24,27.94999999999980,48.59000000000000,3452.33,500.89,20.43000000000030,36.53000000000000,3833.29,545.36,22.73000000000000,49.069999999999900,2780.56,533.88,26.76000000000020,42.24000000000000,3575.601638418080,972.4686440677970,21.0,14.045028248587600,4022.26,563.48,21.5,45.51000000000000,4401.67,549.82,19.26000000000020,42.79000000000000 -323,3484.72,650.53,32.15000000000010,74.05000000000010,3551.86,539.44,22.799999999999700,49.6099999999999,4439.28,698.27,49.60000000000040,113.93000000000000,4199.35,732.07,43.099999999999500,96.58999999999990,3952.44,639.92,40.52999999999980,67.64000000000000,3907.84,569.11,25.09999999999990,59.85000000000000,4122.18,565.42,30.67999999999940,56.65000000000010,4276.51,623.17,44.9399999999996,72.76000000000000,3962.31,524.58,20.300000000000200,38.559999999999900,3644.27,513.48,17.559999999999900,34.040000000000000,3569.462295081970,948.8586885245900,67.59147540983620,51.14131147540990,4263.74,719.97,46.73000000000050,100.20000000000000,3673.28,624.39,46.32999999999990,81.09000000000000,4197.68,609.9,39.88000000000010,75.94000000000010,3563.48,564.72,29.44000000000010,58.60000000000000,2589.74,713.48,46.83000000000040,91.41000000000000,3185.67,527.78,27.94999999999980,48.59000000000000,3452.26,500.86,20.42999999999980,36.53000000000000,3834.03,545.22,22.73000000000000,49.069999999999900,2780.58,533.88,26.76000000000020,42.24000000000000,3574.6930508474600,972.4064406779660,21.0,14.026949152542400,4022.69,563.51,21.5,45.5,4401.53,549.79,19.26000000000020,42.79000000000010 -324,3482.85,650.73,32.15000000000010,74.05000000000000,3552.64,539.39,22.790000000000000,49.610000000000000,4439.49,697.21,49.61000000000060,113.92000000000000,4199.59,732.04,43.099999999999500,96.59000000000010,3951.47,639.97,40.5300000000002,67.64000000000000,3907.86,569.1,25.09999999999990,59.85000000000000,4121.8,565.43,30.67000000000010,56.66000000000010,4276.15,622.91,44.93000000000030,72.75,3962.64,524.62,20.340000000000100,38.59000000000000,3644.64,513.56,17.550000000000200,34.04000000000010,3566.614262295080,948.9032786885250,67.59131147541000,51.09672131147540,4263.19,719.2,46.720000000000300,100.20000000000000,3674.96,624.72,46.32999999999990,81.08999999999990,4198.69,609.64,39.89000000000030,75.94000000000010,3564.85,564.31,29.44000000000010,58.60000000000000,2585.09,713.84,46.82999999999990,91.40000000000000,3185.27,527.66,27.94999999999980,48.59000000000000,3452.19,500.82,20.42999999999980,36.54000000000000,3834.77,545.09,22.74000000000020,49.069999999999900,2780.6,533.89,26.76000000000020,42.24000000000000,3573.784463276840,972.3442372881360,21.0,14.00887005649720,4023.13,563.53,21.5,45.51000000000000,4401.38,549.76,19.26000000000020,42.79000000000000 -325,3480.98,650.92,32.13999999999990,74.05000000000010,3553.42,539.34,22.790000000000000,49.610000000000000,4439.09,697.21,49.85999999999970,113.19000000000000,4199.83,732.02,43.10000000000040,96.59000000000010,3950.5,640.03,40.5300000000002,67.64000000000000,3907.88,569.08,25.09999999999990,59.84999999999990,4121.41,565.45,30.68000000000030,56.66000000000000,4275.78,622.65,44.94000000000050,72.75,3962.98,524.66,20.36999999999990,38.610000000000000,3645.0,513.64,17.559999999999900,34.040000000000000,3563.766229508200,948.947868852459,67.59114754098370,51.052131147541,4262.64,718.43,46.71999999999940,100.20000000000000,3676.63,625.06,46.33999999999970,81.08000000000000,4199.71,609.38,39.88000000000010,75.93000000000000,3565.67,564.14,29.44000000000010,58.60000000000000,2580.45,714.19,46.83000000000040,91.41000000000000,3184.88,527.55,27.94999999999980,48.59000000000000,3452.12,500.79,20.43000000000030,36.53000000000000,3835.52,544.95,22.73000000000000,49.069999999999900,2780.63,533.89,26.759999999999800,42.24000000000000,3572.8758757062100,972.282033898305,21.0,13.990790960452000,4023.56,563.55,21.5,45.51000000000000,4401.24,549.72,19.26000000000020,42.80000000000000 -326,3479.1,651.12,32.15000000000010,74.05000000000000,3554.2,539.29,22.790000000000000,49.610000000000000,4438.7,697.21,50.11000000000060,112.47000000000000,4200.07,731.99,43.10000000000040,96.59000000000010,3949.53,640.09,40.52999999999980,67.64000000000000,3907.91,569.06,25.100000000000400,59.85000000000000,4121.03,565.47,30.67000000000010,56.66000000000000,4275.42,622.38,44.93000000000030,72.76000000000000,3963.31,524.7,20.40000000000010,38.63,3645.37,513.72,17.550000000000200,34.040000000000000,3560.9181967213100,948.9924590163940,67.5909836065575,51.00754098360660,4262.09,717.67,46.720000000000300,100.19000000000000,3678.31,625.39,46.34000000000020,81.08000000000000,4200.72,609.11,39.88000000000010,75.93999999999990,3566.49,563.98,29.44000000000010,58.60000000000000,2575.8,714.54,46.82999999999990,91.41000000000010,3184.49,527.44,27.95000000000030,48.57999999999990,3452.05,500.76,20.42999999999980,36.53000000000000,3836.26,544.82,22.73999999999980,49.059999999999900,2780.65,533.89,26.759999999999800,42.24000000000000,3571.967288135590,972.2198305084750,21.0,13.972711864406800,4024.0,563.58,21.5,45.5,4401.1,549.69,19.25,42.80000000000000 -327,3477.23,651.31,32.15000000000010,74.05000000000010,3554.98,539.25,22.790000000000000,49.60000000000000,4438.3,697.21,50.36999999999990,111.74,4200.31,731.96,43.099999999999500,96.58999999999990,3948.56,640.15,40.5300000000002,67.64000000000000,3907.93,569.05,25.100000000000400,59.85000000000000,4120.64,565.49,30.67999999999940,56.65000000000000,4275.05,622.12,44.9399999999996,72.75,3963.65,524.73,20.42999999999980,38.66000000000000,3645.73,513.8,17.559999999999900,34.04000000000010,3558.070163934430,949.0370491803280,67.59081967213130,50.962950819672100,4261.53,716.9,46.720000000000300,100.20000000000000,3679.99,625.72,46.34000000000020,81.08999999999990,4201.73,608.85,39.89000000000030,75.93999999999990,3567.32,563.81,29.44000000000010,58.60000000000000,2571.15,714.89,46.82999999999990,91.41000000000000,3184.09,527.32,27.94999999999980,48.58999999999990,3451.98,500.73,20.42999999999980,36.53000000000000,3837.01,544.68,22.729999999999600,49.07000000000010,2780.67,533.89,26.759999999999800,42.24000000000000,3571.058700564970,972.1576271186440,21.0,13.954632768361600,4024.43,563.6,21.5,45.51000000000000,4400.95,549.66,19.26000000000020,42.80000000000010 -328,3475.35,651.5,32.15000000000010,74.05000000000000,3555.75,539.2,22.800000000000200,49.59999999999990,4437.9,697.21,50.6200000000008,111.01,4200.55,731.93,43.099999999999500,96.59000000000010,3947.59,640.21,40.52999999999980,67.64000000000000,3907.95,569.03,25.100000000000400,59.85000000000000,4120.25,565.51,30.68000000000030,56.65000000000000,4274.69,621.86,44.94000000000050,72.75,3963.98,524.77,20.4699999999998,38.690000000000100,3646.1,513.88,17.550000000000200,34.040000000000000,3555.222131147540,949.0816393442620,67.59065573770510,50.918360655737700,4260.98,716.13,46.720000000000300,100.20000000000000,3681.67,626.05,46.32999999999990,81.09000000000000,4202.75,608.59,39.88000000000010,75.93000000000000,3568.14,563.64,29.44000000000010,58.60000000000000,2566.5,715.25,46.82999999999990,91.40000000000000,3183.7,527.21,27.95000000000030,48.58999999999990,3451.91,500.69,20.43000000000030,36.53000000000000,3837.75,544.55,22.73999999999980,49.06000000000010,2780.69,533.89,26.759999999999800,42.24000000000000,3570.1501129943500,972.0954237288140,21.0,13.93655367231640,4024.87,563.62,21.5,45.51000000000000,4400.81,549.63,19.25999999999930,42.80000000000000 -329,3473.48,651.7,32.15000000000010,74.05000000000000,3556.53,539.15,22.790000000000000,49.610000000000000,4437.51,697.21,50.86999999999990,110.28000000000000,4200.79,731.9,43.10000000000040,96.59000000000010,3946.62,640.26,40.5300000000002,67.64000000000000,3907.97,569.02,25.100000000000400,59.85000000000000,4119.87,565.52,30.67000000000010,56.66000000000000,4274.32,621.59,44.94000000000050,72.76000000000000,3964.32,524.81,20.5,38.71000000000000,3646.46,513.96,17.559999999999900,34.040000000000000,3552.374098360660,949.1262295081970,67.59049180327880,50.87377049180330,4260.43,715.36,46.71999999999940,100.20000000000000,3683.35,626.38,46.32999999999990,81.09000000000000,4203.76,608.32,39.88000000000010,75.93999999999990,3568.97,563.48,29.44000000000010,58.60000000000000,2561.85,715.6,46.84000000000020,91.41000000000000,3183.31,527.09,27.94000000000010,48.58999999999990,3451.84,500.66,20.42999999999980,36.53000000000000,3838.5,544.41,22.73000000000000,49.07000000000010,2780.72,533.89,26.76000000000020,42.24000000000000,3569.241525423730,972.033220338983,21.0,13.918474576271200,4025.3,563.65,21.5,45.5,4400.66,549.6,19.26000000000020,42.80000000000000 -330,3471.61,651.89,32.13999999999990,74.05000000000010,3557.31,539.1,22.790000000000000,49.610000000000000,4437.11,697.21,51.13000000000010,109.55000000000000,4201.03,731.88,43.10000000000040,96.59000000000010,3945.64,640.32,40.54000000000000,67.64000000000000,3908.0,569.0,25.090000000000100,59.85000000000000,4119.48,565.54,30.68000000000030,56.66000000000010,4273.96,621.33,44.9399999999996,72.76000000000000,3964.65,524.85,20.540000000000000,38.73000000000000,3646.83,514.04,17.550000000000200,34.04000000000010,3549.52606557377,949.1708196721310,67.5903278688526,50.82918032786890,4259.87,714.6,46.73000000000050,100.20000000000000,3685.02,626.71,46.34000000000020,81.08999999999990,4204.77,608.06,39.88999999999940,75.94000000000010,3569.79,563.31,29.44000000000010,58.60000000000000,2557.21,715.95,46.82999999999990,91.41000000000000,3182.91,526.98,27.95000000000030,48.59000000000000,3451.77,500.63,20.44000000000010,36.53000000000000,3839.24,544.27,22.74000000000020,49.07000000000010,2780.74,533.9,26.76000000000020,42.24000000000000,3568.332937853110,971.9710169491530,21.0,13.900395480226000,4025.74,563.67,21.49000000000020,45.51000000000000,4400.52,549.57,19.25999999999930,42.80000000000000 -331,3469.73,652.09,32.15000000000010,74.05000000000000,3558.09,539.05,22.790000000000000,49.610000000000000,4436.71,697.21,51.38000000000010,108.82000000000000,4201.27,731.85,43.099999999999500,96.59000000000010,3944.67,640.38,40.54000000000000,67.64000000000000,3908.02,568.98,25.09999999999990,59.85000000000000,4119.1,565.56,30.67000000000010,56.65000000000010,4273.6,621.07,44.92999999999940,72.75,3964.99,524.89,20.570000000000200,38.75,3647.19,514.12,17.559999999999900,34.040000000000000,3546.678032786890,949.2154098360660,67.59016393442640,50.78459016393440,4259.32,713.83,46.720000000000300,100.20000000000000,3686.7,627.04,46.34000000000020,81.09000000000000,4205.79,607.8,39.88000000000010,75.93000000000010,3570.61,563.14,29.44000000000010,58.60000000000000,2552.56,716.3,46.82999999999990,91.41000000000010,3182.52,526.87,27.94999999999980,48.58000000000000,3451.7,500.59,20.44000000000010,36.53000000000000,3839.99,544.14,22.73000000000000,49.07000000000010,2780.76,533.9,26.759999999999800,42.24000000000000,3567.4243502824900,971.908813559322,21.0,13.882316384180800,4026.17,563.69,21.5,45.51000000000000,4400.38,549.54,19.25,42.80000000000010 -332,3467.86,652.28,32.15000000000010,74.05000000000010,3558.87,539.0,22.790000000000000,49.610000000000000,4436.31,697.21,51.63999999999940,108.09000000000000,4201.51,731.82,43.099999999999500,96.58999999999990,3943.7,640.44,40.54000000000000,67.64000000000000,3908.04,568.97,25.09999999999990,59.85000000000000,4118.71,565.58,30.68000000000030,56.65000000000000,4273.33,621.0,44.94000000000050,72.76000000000000,3965.33,524.93,20.590000000000100,38.770000000000100,3647.56,514.2,17.550000000000200,34.040000000000000,3543.83,949.26,67.59000000000020,50.74000000000000,4258.77,713.06,46.71999999999940,100.20000000000000,3688.38,627.37,46.32999999999990,81.09000000000000,4206.8,607.53,39.88000000000010,75.94000000000010,3571.44,562.97,29.44000000000010,58.60000000000000,2547.91,716.66,46.82999999999990,91.40000000000000,3182.12,526.75,27.95000000000030,48.59000000000000,3451.63,500.56,20.44000000000010,36.53000000000000,3840.73,544.0,22.73999999999980,49.07000000000010,2780.78,533.9,26.759999999999800,42.24000000000000,3566.515762711860,971.8466101694910,21.0,13.864237288135700,4026.6,563.72,21.5,45.5,4400.23,549.51,19.26000000000020,42.80000000000000 -333,3465.99,652.48,32.14000000000030,74.05000000000000,3559.64,538.96,22.800000000000200,49.59999999999990,4435.92,697.21,51.89000000000030,107.36,4201.75,731.79,43.10000000000040,96.59000000000010,3942.73,640.5,40.54000000000000,67.64000000000000,3908.06,568.95,25.09999999999990,59.84999999999990,4118.33,565.6,30.67000000000010,56.65000000000000,4273.07,620.94,44.93000000000030,72.75,3965.66,524.97,20.63000000000010,38.80000000000000,3647.92,514.28,17.559999999999900,34.04000000000010,3543.03,949.34,67.58999999999970,50.66000000000000,4258.21,712.3,46.72999999999960,100.20000000000000,3690.06,627.71,46.32999999999990,81.07999999999990,4207.81,607.27,39.88999999999940,75.94000000000010,3572.26,562.81,29.4399999999996,58.60000000000000,2543.26,717.01,46.82999999999990,91.41000000000000,3181.73,526.64,27.94999999999980,48.59000000000000,3451.56,500.53,20.44000000000010,36.53000000000000,3841.48,543.87,22.73000000000000,49.059999999999900,2780.8,533.9,26.759999999999800,42.24000000000000,3565.607175141240,971.784406779661,21.0,13.846158192090500,4027.04,563.74,21.5,45.51000000000000,4400.09,549.48,19.26000000000020,42.79000000000000 -334,3464.11,652.67,32.15000000000010,74.05000000000010,3560.42,538.91,22.790000000000000,49.60000000000000,4435.52,697.21,52.13999999999940,106.63,4201.99,731.76,43.10000000000040,96.59000000000010,3941.76,640.55,40.54000000000000,67.65000000000010,3908.09,568.94,25.08999999999970,59.84999999999990,4117.94,565.61,30.68000000000030,56.66000000000000,4272.8,620.87,44.9399999999996,72.75,3966.0,525.01,20.65999999999990,38.82000000000010,3648.28,514.36,17.559999999999900,34.040000000000000,3542.22,949.43,67.60000000000040,50.57000000000010,4257.66,711.53,46.720000000000300,100.20000000000000,3691.73,628.04,46.34000000000020,81.08000000000000,4208.83,607.01,39.88000000000010,75.93000000000010,3573.08,562.64,29.44000000000010,58.60000000000000,2538.62,717.36,46.82999999999990,91.41000000000000,3181.34,526.52,27.94999999999980,48.59000000000000,3451.49,500.49,20.44000000000010,36.53000000000000,3842.22,543.73,22.74000000000020,49.069999999999900,2780.83,533.9,26.76000000000020,42.24000000000000,3564.6985875706200,971.7222033898310,21.0,13.828079096045300,4027.47,563.77,21.5,45.5,4399.94,549.45,19.26000000000020,42.79000000000000 -335,3462.24,652.87,32.14000000000030,74.05000000000000,3561.2,538.86,22.790000000000000,49.610000000000000,4435.12,697.21,52.40000000000060,105.90000000000000,4202.23,731.73,43.10000000000040,96.60000000000000,3940.79,640.61,40.54000000000000,67.64000000000000,3908.11,568.92,25.09999999999990,59.85000000000000,4117.56,565.63,30.669999999999200,56.66000000000000,4272.54,620.8,44.93000000000030,72.76000000000000,3966.33,525.05,20.70000000000030,38.84000000000000,3648.65,514.44,17.559999999999900,34.040000000000000,3541.42,949.51,67.59000000000020,50.49000000000000,4257.11,710.76,46.720000000000300,100.20000000000000,3693.41,628.37,46.34000000000020,81.09000000000000,4209.84,606.74,39.88000000000010,75.93999999999990,3573.91,562.47,29.44000000000010,58.60000000000000,2533.97,717.71,46.83000000000040,91.41000000000000,3180.94,526.41,27.94999999999980,48.59000000000000,3451.42,500.46,20.44000000000010,36.53000000000000,3842.97,543.6,22.73000000000000,49.059999999999900,2780.85,533.91,26.76000000000020,42.24000000000000,3563.79,971.66,21.0,13.81000000000010,4027.91,563.79,21.5,45.5,4399.8,549.42,19.26000000000020,42.79000000000010 -336,3460.36,653.06,32.15000000000010,74.05000000000010,3561.98,538.81,22.790000000000000,49.610000000000000,4434.73,697.21,52.65000000000060,105.17000000000000,4201.75,732.0,43.09000000000020,96.59000000000010,3939.82,640.67,40.54000000000000,67.64000000000000,3908.32,568.61,25.09999999999990,59.85000000000000,4117.17,565.65,30.68000000000030,56.65000000000000,4272.27,620.74,44.9399999999996,72.75,3966.67,525.09,20.73000000000000,38.860000000000000,3649.01,514.52,17.559999999999900,34.040000000000000,3541.42,947.15,67.81000000000000,52.85000000000000,4256.55,710.0,46.72999999999960,100.20000000000000,3695.09,628.7,46.33999999999970,81.08999999999990,4210.85,606.48,39.88999999999940,75.93999999999990,3574.73,562.31,29.44000000000010,58.60000000000000,2529.32,718.07,46.82999999999990,91.40000000000000,3180.55,526.3,27.94999999999980,48.58000000000000,3451.35,500.43,20.44000000000010,36.53000000000000,3843.08,543.52,22.74000000000020,49.06000000000010,2780.87,533.91,26.76000000000020,42.24000000000000,3565.29,971.45,20.99000000000020,13.800000000000000,4028.34,563.81,21.5,45.510000000000100,4399.41,549.42,19.26000000000020,42.79000000000010 -337,3458.49,653.25,32.15000000000010,74.05000000000000,3562.75,538.76,22.800000000000200,49.610000000000000,4434.33,697.21,52.89999999999960,104.45000000000000,4201.26,732.26,43.099999999999500,96.59000000000010,3938.85,640.73,40.5300000000002,67.64000000000000,3908.53,568.31,25.09999999999990,59.85000000000000,4116.78,565.67,30.68000000000030,56.65000000000010,4272.01,620.67,44.9399999999996,72.76000000000000,3967.0,525.12,20.770000000000000,38.90000000000000,3649.38,514.6,17.559999999999900,34.040000000000000,3541.42,944.79,68.02000000000000,55.21000000000000,4256.0,709.23,46.720000000000300,100.20000000000000,3696.77,629.03,46.32999999999990,81.09000000000000,4210.93,606.48,39.88000000000010,75.93000000000000,3575.55,562.14,29.4399999999996,58.60000000000000,2526.73,718.36,46.82999999999990,91.41000000000000,3180.16,526.18,27.94000000000010,48.59000000000000,3451.28,500.39,20.4399999999996,36.53000000000000,3843.2,543.44,22.73000000000000,49.069999999999900,2780.89,533.91,26.76000000000020,42.24000000000000,3566.78,971.25,21.0,13.780000000000000,4028.78,563.84,21.5,45.5,4399.03,549.42,19.25,42.79000000000010 -338,3456.62,653.45,32.14000000000030,74.05000000000000,3563.53,538.71,22.790000000000000,49.610000000000000,4433.93,697.21,53.159999999999900,103.72000000000000,4200.78,732.52,43.09000000000020,96.59000000000010,3937.88,640.79,40.52999999999980,67.64000000000000,3908.74,568.0,25.100000000000400,59.85000000000000,4116.4,565.69,30.67000000000010,56.65000000000000,4271.74,620.6,44.94000000000050,72.76000000000000,3967.16,525.16,20.790000000000000,38.92000000000010,3649.74,514.68,17.5600000000004,34.04000000000010,3541.42,942.43,68.23999999999980,57.57000000000010,4255.45,708.46,46.720000000000300,100.20000000000000,3696.97,629.84,46.34000000000020,81.08999999999990,4211.01,606.47,39.88000000000010,75.93999999999990,3576.38,561.97,29.44000000000010,58.60000000000000,2524.13,718.66,46.82999999999990,91.41000000000010,3179.76,526.07,27.94999999999980,48.58999999999990,3451.21,500.36,20.44000000000010,36.53000000000000,3843.31,543.36,22.74000000000020,49.069999999999900,2780.92,533.91,26.759999999999800,42.24000000000000,3568.28,971.04,20.98999999999980,13.760000000000000,4029.21,563.86,21.5,45.51000000000000,4398.64,549.42,19.25999999999930,42.79000000000010 -339,3454.74,653.64,32.15000000000010,74.05000000000010,3564.31,538.67,22.790000000000000,49.60000000000000,4433.53,697.21,53.42000000000010,102.99,4200.29,732.79,43.10000000000040,96.59000000000010,3936.91,640.84,40.5300000000002,67.65000000000000,3908.95,567.7,25.100000000000400,59.84999999999990,4116.01,565.7,30.67999999999940,56.66000000000000,4271.48,620.54,44.94000000000050,72.75,3967.31,525.2,20.820000000000200,38.93999999999990,3650.11,514.76,17.559999999999900,34.040000000000000,3541.42,940.07,68.46000000000000,59.93000000000000,4254.9,707.7,46.720000000000300,100.20000000000000,3697.18,630.65,46.33000000000040,81.09000000000000,4211.09,606.47,39.88000000000010,75.93999999999990,3577.2,561.8,29.44000000000010,58.60000000000000,2521.54,718.95,46.82999999999990,91.41000000000000,3179.37,525.95,27.95000000000030,48.58999999999990,3451.15,500.33,20.42999999999980,36.53000000000000,3843.43,543.28,22.73000000000000,49.07000000000010,2780.94,533.91,26.759999999999800,42.24000000000000,3569.77,970.84,21.0,13.740000000000000,4029.65,563.88,21.5,45.51000000000000,4398.25,549.42,19.26000000000020,42.79000000000010 -340,3452.87,653.84,32.15000000000010,74.05000000000000,3565.09,538.62,22.790000000000000,49.610000000000000,4433.14,697.21,53.659999999999900,102.26,4199.81,733.05,43.08999999999920,96.59000000000010,3935.94,640.9,40.52999999999980,67.64000000000000,3909.16,567.4,25.100000000000400,59.85000000000000,4115.63,565.72,30.67000000000010,56.66000000000000,4271.21,620.47,44.9399999999996,72.76000000000000,3967.46,525.24,20.860000000000100,38.96000000000000,3650.47,514.83,17.5600000000004,34.050000000000000,3541.42,937.71,68.67999999999980,62.29000000000000,4254.34,706.93,46.72999999999960,100.20000000000000,3697.38,631.46,46.33999999999970,81.08999999999990,4211.17,606.47,39.88000000000010,75.93999999999990,3578.03,561.64,29.42999999999980,58.60000000000000,2518.95,719.25,46.83000000000040,91.41000000000000,3178.97,525.84,27.95000000000030,48.58999999999990,3451.08,500.29,20.43000000000030,36.54000000000000,3843.55,543.2,22.73000000000000,49.069999999999900,2780.96,533.92,26.759999999999800,42.24000000000000,3571.27,970.63,20.99000000000020,13.730000000000000,4030.08,563.91,21.5,45.5,4397.86,549.42,19.26000000000020,42.79000000000010 -341,3450.99,654.03,32.15000000000010,74.05000000000010,3565.87,538.57,22.790000000000000,49.6099999999999,4432.74,697.21,53.92000000000010,101.53000000000000,4199.32,733.31,43.10000000000040,96.59000000000010,3934.97,640.96,40.5300000000002,67.64000000000000,3909.38,567.09,25.08999999999970,59.85000000000000,4115.24,565.74,30.68000000000030,56.65000000000000,4270.95,620.41,44.94000000000050,72.75,3967.61,525.28,20.88999999999990,38.99000000000000,3651.03,514.88,17.559999999999900,34.040000000000000,3541.42,935.35,68.88999999999990,64.65000000000000,4253.79,706.16,46.720000000000300,100.20000000000000,3697.59,632.28,46.32999999999990,81.08000000000000,4211.25,606.47,39.88000000000010,75.93000000000000,3578.85,561.47,29.44000000000010,58.60000000000000,2516.35,719.55,46.82999999999990,91.40000000000010,3178.58,525.73,27.95000000000030,48.57999999999990,3451.01,500.26,20.42999999999980,36.53000000000000,3843.66,543.12,22.74000000000020,49.07000000000010,2780.98,533.92,26.759999999999800,42.24000000000000,3571.93,965.23,21.330000000000400,14.319999999999900,4030.52,563.93,21.5,45.510000000000100,4397.48,549.42,19.26000000000020,42.79000000000010 -342,3449.12,654.23,32.15000000000010,74.05000000000000,3566.64,538.52,22.800000000000200,49.610000000000000,4432.34,697.21,54.17000000000010,100.80000000000000,4198.84,733.57,43.09000000000020,96.58999999999990,3934.0,641.02,40.5300000000002,67.64000000000000,3909.59,566.79,25.09999999999990,59.85000000000000,4114.86,565.76,30.67000000000010,56.65000000000000,4270.68,620.34,44.9399999999996,72.76000000000000,3967.76,525.32,20.92999999999980,39.01000000000000,3651.59,514.93,17.549999999999700,34.04000000000010,3541.42,932.99,69.11000000000010,67.01000000000000,4253.24,705.4,46.720000000000300,100.20000000000000,3697.79,633.09,46.34000000000020,81.07999999999990,4211.33,606.46,39.88000000000010,75.93999999999990,3579.67,561.3,29.44000000000010,58.60000000000000,2513.76,719.84,46.82999999999990,91.41000000000000,3178.19,525.61,27.94999999999980,48.59000000000000,3450.94,500.23,20.42999999999980,36.53000000000000,3843.78,543.05,22.73000000000000,49.06000000000010,2781.01,533.92,26.759999999999800,42.24000000000000,3572.59,959.83,21.65999999999990,14.910000000000000,4030.95,563.95,21.5,45.51000000000000,4397.09,549.42,19.26000000000020,42.79000000000010 -343,3447.25,654.42,32.13999999999990,74.05000000000010,3567.42,538.47,22.790000000000000,49.610000000000000,4431.94,697.21,54.43000000000030,100.07000000000000,4198.35,733.84,43.099999999999500,96.58999999999990,3933.03,641.08,40.52999999999980,67.64000000000000,3909.8,566.48,25.09999999999990,59.85000000000000,4114.47,565.77,30.67999999999940,56.66000000000000,4270.42,620.27,44.9399999999996,72.76000000000000,3967.91,525.36,20.96000000000000,39.03000000000000,3652.14,514.97,17.559999999999900,34.040000000000000,3541.42,930.63,69.32999999999990,69.37,4252.68,704.63,46.72999999999960,100.20000000000000,3698.0,633.9,46.32999999999990,81.08000000000000,4211.41,606.46,39.88000000000010,75.93999999999990,3580.5,561.14,29.44000000000010,58.60000000000000,2511.17,720.14,46.82999999999990,91.40000000000000,3177.79,525.5,27.94999999999980,48.59000000000000,3450.87,500.19,20.43000000000030,36.54000000000000,3843.89,542.97,22.74000000000020,49.059999999999900,2781.03,533.92,26.759999999999800,42.24000000000000,3573.25,954.43,21.98999999999980,15.5,4031.39,563.98,21.5,45.5,4396.7,549.42,19.26000000000020,42.79000000000010 -344,3445.37,654.62,32.15000000000010,74.05000000000000,3568.2,538.42,22.790000000000000,49.610000000000000,4431.55,697.21,54.67999999999940,99.33999999999990,4197.87,734.1,43.09000000000020,96.59000000000010,3932.06,641.13,40.5300000000002,67.65000000000000,3910.01,566.18,25.09999999999990,59.85000000000000,4114.09,565.79,30.67000000000010,56.66000000000010,4270.16,620.21,44.93000000000030,72.75,3968.06,525.4,20.99000000000020,39.05000000000010,3652.7,515.02,17.5600000000004,34.040000000000000,3541.42,928.27,69.54000000000000,71.73000000000000,4252.13,703.86,46.720000000000300,100.20000000000000,3698.2,634.71,46.34000000000020,81.08999999999990,4211.49,606.46,39.88000000000010,75.93999999999990,3581.32,560.97,29.44000000000010,58.60000000000000,2508.57,720.43,46.82999999999990,91.41000000000010,3177.4,525.38,27.94999999999980,48.59000000000000,3450.8,500.16,20.42999999999980,36.53000000000000,3844.01,542.89,22.729999999999600,49.06000000000010,2781.05,533.92,26.759999999999800,42.24000000000000,3573.91,949.03,22.320000000000200,16.090000000000000,4031.82,564.0,21.5,45.51000000000000,4396.32,549.42,19.26000000000020,42.79000000000010 -345,3443.5,654.81,32.15000000000010,74.05000000000010,3568.98,538.38,22.790000000000000,49.60000000000000,4431.15,697.21,54.93000000000030,98.61,4197.38,734.36,43.099999999999500,96.59000000000010,3931.09,641.19,40.52999999999980,67.64000000000000,3910.22,565.87,25.100000000000400,59.85000000000000,4113.7,565.81,30.68000000000030,56.66000000000010,4269.89,620.14,44.9399999999996,72.76000000000000,3968.21,525.44,21.029999999999700,39.07999999999990,3653.25,515.07,17.559999999999900,34.040000000000000,3541.42,925.91,69.75999999999980,74.09000000000000,4251.58,703.1,46.720000000000300,100.20000000000000,3698.41,635.52,46.34000000000020,81.09000000000000,4211.57,606.46,39.88000000000010,75.93000000000000,3582.14,560.8,29.44000000000010,58.60000000000000,2505.98,720.73,46.82999999999990,91.40000000000000,3177.01,525.27,27.94999999999980,48.59000000000000,3451.11,500.14,20.42999999999980,36.53000000000000,3844.13,542.81,22.73000000000000,49.07000000000010,2781.07,533.92,26.759999999999800,42.24000000000000,3574.57,943.63,22.64999999999960,16.690000000000100,4032.26,564.02,21.48999999999980,45.51000000000000,4395.93,549.42,19.25999999999930,42.79000000000010 -346,3441.62,655.0,32.15000000000010,74.05000000000000,3569.76,538.33,22.790000000000000,49.610000000000000,4430.75,697.21,55.1899999999996,97.88,4196.9,734.62,43.09000000000020,96.59000000000010,3930.12,641.25,40.5300000000002,67.64000000000000,3910.43,565.57,25.100000000000400,59.84999999999990,4113.31,565.83,30.67999999999940,56.65000000000000,4269.63,620.08,44.93000000000030,72.75,3968.36,525.47,21.059999999999900,39.110000000000000,3653.81,515.11,17.559999999999900,34.040000000000000,3541.42,923.56,69.98000000000000,76.44000000000010,4251.02,702.33,46.72999999999960,100.20000000000000,3698.62,636.33,46.32999999999990,81.08999999999990,4211.65,606.46,39.88000000000010,75.93000000000000,3582.97,560.64,29.44000000000010,58.60000000000000,2503.39,721.02,46.82999999999990,91.41000000000000,3176.61,525.16,27.94999999999980,48.58000000000000,3451.42,500.11,20.44000000000010,36.53000000000000,3844.24,542.73,22.74000000000020,49.069999999999900,2781.1,533.93,26.76000000000020,42.24000000000000,3575.23,938.23,22.98999999999980,17.280000000000000,4032.69,564.05,21.5,45.5,4395.54,549.42,19.26000000000020,42.79000000000010 -347,3439.75,655.2,32.15000000000010,74.05000000000000,3570.53,538.28,22.799999999999700,49.610000000000000,4430.36,697.21,55.44000000000050,97.15000000000000,4196.41,734.89,43.10000000000040,96.59000000000010,3928.26,641.31,40.52999999999980,67.6400000000001,3910.65,565.26,25.08999999999970,59.85000000000000,4112.93,565.85,30.67000000000010,56.65000000000000,4269.36,620.01,44.94000000000050,72.75,3968.52,525.51,21.079999999999900,39.13,3654.37,515.16,17.550000000000200,34.04000000000010,3541.42,921.2,70.19000000000010,78.80000000000000,4250.47,701.56,46.71999999999940,100.20000000000000,3698.82,637.14,46.33999999999970,81.09000000000000,4211.73,606.45,39.88000000000010,75.93999999999990,3583.79,560.47,29.44000000000010,58.60000000000000,2500.79,721.32,46.82999999999990,91.41000000000000,3176.22,525.04,27.95000000000030,48.59000000000000,3451.74,500.09,20.43000000000030,36.53000000000000,3844.36,542.65,22.73000000000000,49.07000000000010,2781.12,533.93,26.76000000000020,42.24000000000000,3575.89,932.82,23.320000000000200,17.880000000000000,4033.12,564.07,21.5,45.51000000000000,4395.16,549.42,19.26000000000020,42.79000000000010 -348,3437.88,655.39,32.13999999999990,74.05000000000010,3571.31,538.23,22.790000000000000,49.610000000000000,4429.96,697.21,55.6899999999996,96.43000000000000,4195.93,735.15,43.09000000000020,96.59000000000010,3926.4,641.37,40.54000000000000,67.64000000000000,3910.86,564.96,25.09999999999990,59.84999999999990,4112.54,565.86,30.68000000000030,56.66000000000000,4269.1,619.94,44.92999999999940,72.76000000000000,3968.67,525.55,21.11999999999990,39.15000000000010,3654.92,515.21,17.559999999999900,34.040000000000000,3541.42,918.84,70.40999999999990,81.16000000000000,4249.92,700.8,46.720000000000300,100.20000000000000,3699.03,637.95,46.32999999999990,81.08999999999990,4211.81,606.45,39.8799999999992,75.93999999999990,3584.61,560.3,29.44000000000010,58.60000000000000,2498.2,721.61,46.83000000000040,91.41000000000000,3175.83,524.93,27.94000000000010,48.59000000000000,3452.05,500.06,20.42999999999980,36.54000000000000,3844.47,542.57,22.74000000000020,49.069999999999900,2781.14,533.93,26.76000000000020,42.24000000000000,3576.55,927.42,23.64999999999960,18.470000000000000,4033.16,564.25,21.559999999999900,45.57000000000010,4394.77,549.42,19.25999999999930,42.79000000000010 -349,3436.0,655.59,32.15000000000010,74.05000000000000,3572.09,538.18,22.790000000000000,49.610000000000000,4429.56,697.21,55.94999999999980,95.69999999999990,4195.44,735.41,43.10000000000040,96.59000000000010,3924.54,641.43,40.54000000000000,67.6400000000001,3911.07,564.65,25.09999999999990,59.85000000000000,4112.16,565.88,30.67000000000010,56.66000000000000,4268.83,619.88,44.94000000000050,72.75,3968.82,525.59,21.14999999999960,39.18000000000000,3655.48,515.25,17.559999999999900,34.040000000000000,3541.42,916.48,70.63000000000010,83.52000000000000,4249.37,700.03,46.720000000000300,100.20000000000000,3699.23,638.76,46.34000000000020,81.09000000000000,4211.89,606.45,39.88000000000010,75.93999999999990,3585.44,560.13,29.44000000000010,58.60000000000000,2495.6,721.91,46.84000000000020,91.41000000000010,3175.43,524.81,27.95000000000030,48.59000000000000,3452.36,500.04,20.42999999999980,36.53000000000000,3844.59,542.5,22.73000000000000,49.059999999999900,2781.16,533.93,26.76000000000020,42.24000000000000,3577.22,922.02,23.97000000000030,19.06000000000010,4033.19,564.43,21.61999999999990,45.63,4394.38,549.42,19.26000000000020,42.79000000000010 -350,3434.13,655.78,32.15000000000010,74.05000000000010,3572.87,538.14,22.790000000000000,49.60000000000000,4429.16,697.21,56.21000000000000,94.96999999999990,4194.96,735.67,43.09000000000020,96.60000000000000,3922.69,641.48,40.52999999999980,67.64000000000000,3910.45,564.79,25.090000000000100,59.85000000000000,4111.77,565.9,30.67999999999940,56.66000000000000,4268.57,619.81,44.94000000000050,72.7600000000001,3968.97,525.63,21.19000000000010,39.200000000000000,3656.03,515.3,17.559999999999900,34.04000000000010,3541.42,914.12,70.84999999999990,85.88,4248.81,699.26,46.71999999999940,100.20000000000000,3699.44,639.57,46.32999999999990,81.08999999999990,4211.97,606.45,39.88000000000010,75.93000000000000,3586.26,559.97,29.4399999999996,58.60000000000000,2493.01,722.21,46.82999999999990,91.40000000000000,3175.04,524.7,27.94999999999980,48.58999999999990,3452.68,500.02,20.43000000000030,36.53000000000000,3844.71,542.42,22.73000000000000,49.06000000000010,2781.19,533.93,26.759999999999800,42.24000000000000,3577.88,916.62,24.299999999999700,19.660000000000000,4033.22,564.61,21.69000000000010,45.68999999999990,4394.0,549.42,19.26000000000020,42.79000000000010 -351,3432.25,655.98,32.15000000000010,74.05000000000000,3573.65,538.09,22.790000000000000,49.60000000000000,4428.77,697.21,56.44999999999980,94.24,4194.47,735.94,43.099999999999500,96.58999999999990,3920.83,641.54,40.5300000000002,67.64000000000000,3909.82,564.92,25.09999999999990,59.85000000000000,4111.39,565.92,30.67000000000010,56.65000000000010,4268.3,619.74,44.9399999999996,72.76000000000000,3969.12,525.67,21.22000000000030,39.22000000000000,3656.59,515.34,17.559999999999900,34.050000000000000,3541.42,911.76,71.06000000000000,88.24000000000000,4248.26,698.5,46.71999999999940,100.20000000000000,3699.64,640.38,46.34000000000020,81.09000000000000,4212.05,606.44,39.88000000000010,75.93999999999990,3587.08,559.8,29.44000000000010,58.60000000000000,2490.42,722.5,46.82999999999990,91.41000000000000,3174.64,524.59,27.95000000000030,48.57999999999990,3452.99,499.99,20.43000000000030,36.53000000000000,3844.82,542.34,22.73000000000000,49.059999999999900,2781.21,533.94,26.759999999999800,42.239999999999900,3578.54,911.22,24.63000000000010,20.25,4033.25,564.79,21.75,45.76000000000000,4393.61,549.42,19.26000000000020,42.79000000000010 -352,3430.38,656.17,32.15000000000010,74.05000000000010,3574.42,538.04,22.799999999999700,49.610000000000000,4428.37,697.21,56.71000000000000,93.51,4193.99,736.2,43.09000000000020,96.58999999999990,3918.97,641.6,40.5300000000002,67.64000000000000,3909.2,565.05,25.100000000000400,59.85000000000000,4111.0,565.94,30.68000000000030,56.65000000000000,4268.04,619.68,44.9399999999996,72.75,3969.27,525.71,21.25,39.24000000000000,3657.15,515.39,17.549999999999700,34.040000000000000,3541.42,909.4,71.27999999999980,90.60000000000000,4247.71,697.73,46.720000000000300,100.20000000000000,3699.85,641.2,46.32999999999990,81.07999999999990,4214.38,606.44,39.88000000000010,75.93999999999990,3587.91,559.63,29.44000000000010,58.60000000000000,2487.82,722.8,46.83999999999970,91.40000000000010,3174.25,524.47,27.94999999999980,48.58999999999990,3453.3,499.97,20.42999999999980,36.53000000000000,3844.94,542.26,22.73000000000000,49.07000000000010,2781.23,533.94,26.759999999999800,42.239999999999900,3579.2,905.82,24.97000000000030,20.83999999999990,4033.28,564.97,21.81999999999970,45.819999999999900,4393.22,549.42,19.25999999999930,42.79000000000010 -353,3428.51,656.37,32.13999999999990,74.05000000000000,3575.2,537.99,22.790000000000000,49.610000000000000,4427.97,697.21,56.96999999999940,92.78000000000000,4193.5,736.46,43.10000000000040,96.58999999999990,3917.11,641.66,40.52999999999980,67.64000000000000,3908.58,565.18,25.090000000000100,59.85000000000000,4110.62,565.95,30.67000000000010,56.66000000000000,4267.77,619.61,44.9399999999996,72.76000000000000,3969.42,525.75,21.290000000000000,39.26000000000000,3657.7,515.44,17.5600000000004,34.040000000000000,3541.92,906.73,71.40000000000010,91.99,4247.15,696.96,46.73000000000050,100.20000000000000,3700.05,642.01,46.33999999999970,81.08000000000000,4216.7,606.44,39.88000000000010,75.93999999999990,3588.73,559.47,29.44000000000010,58.60000000000000,2485.23,723.09,46.82999999999990,91.41000000000000,3173.86,524.36,27.94999999999980,48.59000000000000,3453.61,499.94,20.44000000000010,36.54000000000000,3845.05,542.18,22.73999999999980,49.07000000000010,2781.25,533.94,26.76000000000020,42.239999999999900,3579.86,900.42,25.299999999999700,21.430000000000100,4033.31,565.15,21.88000000000010,45.88,4392.84,549.42,19.26000000000020,42.79000000000010 -354,3426.63,656.56,32.15000000000010,74.05000000000010,3575.98,537.94,22.790000000000000,49.6099999999999,4427.58,697.21,57.21000000000000,92.05000000000000,4193.02,736.73,43.08999999999920,96.59000000000010,3915.25,641.72,40.54000000000000,67.64000000000000,3907.95,565.31,25.100000000000400,59.85000000000000,4110.23,565.97,30.68000000000030,56.66000000000000,4267.51,619.55,44.9399999999996,72.75,3969.57,525.79,21.31999999999970,39.29000000000010,3658.26,515.48,17.559999999999900,34.040000000000000,3542.43,904.05,71.52000000000000,93.40000000000010,4246.6,696.2,46.71999999999940,100.20000000000000,3700.26,642.82,46.32999999999990,81.07999999999990,4219.03,606.44,39.88000000000010,75.93000000000000,3589.56,559.3,29.42999999999980,58.60000000000000,2484.12,723.04,47.54000000000000,92.12,3173.46,524.25,27.94999999999980,48.58000000000000,3453.93,499.92,20.43000000000030,36.53000000000000,3845.17,542.1,22.73000000000000,49.069999999999900,2781.28,533.94,26.75,42.239999999999900,3580.52,895.02,25.63000000000010,22.020000000000000,4033.35,565.33,21.94000000000010,45.94999999999990,4392.45,549.42,19.26000000000020,42.79000000000010 -355,3424.76,656.75,32.14999999999960,74.06000000000000,3576.76,537.89,22.790000000000000,49.610000000000000,4427.18,697.21,57.46999999999940,91.31999999999990,4192.53,736.99,43.10000000000040,96.59000000000010,3913.4,641.77,40.52999999999980,67.64000000000000,3907.33,565.44,25.09999999999990,59.84999999999990,4109.85,565.99,30.67000000000010,56.65000000000000,4267.24,619.48,44.94000000000050,72.76000000000000,3969.72,525.83,21.350000000000400,39.309999999999900,3658.81,515.53,17.559999999999900,34.04000000000010,3542.93,901.38,71.64000000000030,94.79000000000000,4246.05,695.43,46.720000000000300,100.20000000000000,3700.46,643.63,46.34000000000020,81.09000000000000,4221.35,606.44,39.88999999999940,75.93000000000000,3590.38,559.13,29.44000000000010,58.60000000000000,2483.01,722.99,48.25999999999980,92.83000000000000,3173.07,524.13,27.94999999999980,48.59000000000000,3454.24,499.9,20.43000000000030,36.53000000000000,3845.28,542.02,22.73999999999980,49.07000000000010,2781.3,533.94,26.759999999999800,42.239999999999900,3580.97,890.24,25.96000000000000,22.620000000000000,4033.38,565.51,22.0,46.01000000000000,4392.06,549.42,19.25999999999930,42.79000000000010 -356,3422.89,656.95,32.14000000000030,74.05000000000000,3577.53,537.85,22.799999999999700,49.60000000000000,4426.78,697.21,57.720000000000300,90.58999999999990,4192.05,737.25,43.09000000000020,96.59000000000010,3911.54,641.83,40.5300000000002,67.64000000000000,3906.71,565.58,25.090000000000100,59.84999999999990,4109.46,566.01,30.67000000000010,56.65000000000000,4266.98,619.41,44.94000000000050,72.76000000000000,3969.88,525.86,21.38000000000010,39.34000000000000,3659.37,515.58,17.559999999999900,34.040000000000000,3543.44,898.7,71.75999999999980,96.19999999999990,4245.49,694.66,46.73000000000050,100.20000000000000,3700.67,644.44,46.32999999999990,81.08999999999990,4223.68,606.43,39.88000000000010,75.94000000000010,3591.2,558.97,29.44000000000010,58.60000000000000,2481.91,722.94,48.96000000000000,93.53000000000000,3172.68,524.02,27.94000000000010,48.59000000000000,3454.55,499.87,20.4399999999996,36.53000000000000,3845.4,541.94,22.73000000000000,49.069999999999900,2781.32,533.95,26.759999999999800,42.24000000000000,3581.43,885.47,26.290000000000000,23.209999999999900,4033.41,565.69,22.070000000000200,46.069999999999900,4391.68,549.42,19.25,42.79000000000010 -357,3421.01,657.14,32.14999999999960,74.05000000000010,3578.31,537.8,22.790000000000000,49.60000000000000,4426.38,697.21,57.97999999999960,89.86000000000000,4191.56,737.51,43.099999999999500,96.59000000000010,3909.68,641.89,40.5300000000002,67.64000000000000,3906.08,565.71,25.09999999999990,59.84999999999990,4109.07,566.03,30.68000000000030,56.65000000000000,4266.72,619.35,44.92999999999940,72.75,3970.03,525.9,21.40999999999990,39.360000000000000,3659.93,515.62,17.550000000000200,34.040000000000000,3543.94,896.03,71.88000000000010,97.59000000000010,4244.94,693.9,46.720000000000300,100.20000000000000,3700.87,645.25,46.34000000000020,81.09000000000000,4226.01,606.43,39.88000000000010,75.94000000000010,3592.03,558.8,29.4399999999996,58.60000000000000,2480.8,722.89,49.66999999999960,94.24,3172.28,523.9,27.94999999999980,48.59000000000000,3454.87,499.85,20.43000000000030,36.53000000000000,3845.52,541.87,22.73000000000000,49.059999999999900,2781.34,533.95,26.759999999999800,42.24000000000000,3581.88,880.69,26.61999999999990,23.809999999999900,4033.44,565.87,22.13000000000010,46.13,4391.29,549.42,19.26000000000020,42.79000000000010 -358,3419.14,657.34,32.14000000000030,74.05000000000000,3577.91,537.98,22.790000000000000,49.610000000000000,4425.99,697.21,58.23000000000050,89.14000000000000,4191.08,737.78,43.09000000000020,96.59000000000010,3907.82,641.95,40.52999999999980,67.64000000000000,3905.46,565.84,25.09999999999990,59.85000000000000,4108.69,566.04,30.67000000000010,56.66000000000010,4266.45,619.28,44.94000000000050,72.76000000000000,3970.18,525.94,21.45000000000030,39.39000000000000,3660.48,515.67,17.559999999999900,34.04000000000010,3544.45,893.35,71.99000000000020,98.99,4244.39,693.13,46.71999999999940,100.20000000000000,3701.08,646.06,46.32999999999990,81.09000000000000,4228.33,606.43,39.88000000000010,75.94000000000010,3592.85,558.63,29.44000000000010,58.60000000000000,2479.69,722.84,50.38999999999990,94.94999999999990,3171.89,523.79,27.95000000000030,48.59000000000000,3455.18,499.82,20.43000000000030,36.54000000000000,3845.63,541.79,22.73999999999980,49.06000000000010,2781.36,533.95,26.759999999999800,42.24000000000000,3582.39,878.57,26.620000000000300,23.809999999999900,4033.47,566.05,22.20000000000030,46.200000000000000,4390.9,549.42,19.26000000000020,42.79000000000010 -359,3417.26,657.53,32.14999999999960,74.05000000000010,3577.5,538.17,22.800000000000200,49.60000000000000,4425.59,697.21,58.47999999999960,88.41000000000000,4190.59,738.04,43.099999999999500,96.59000000000010,3905.96,642.01,40.54000000000000,67.64000000000000,3904.84,565.97,25.09999999999990,59.85000000000000,4108.3,566.06,30.67999999999940,56.66000000000010,4266.19,619.22,44.93000000000030,72.75,3970.33,525.98,21.48000000000000,39.41000000000000,3661.04,515.72,17.559999999999900,34.040000000000000,3544.95,890.68,72.12000000000040,100.3900000000000,4243.84,692.36,46.720000000000300,100.20000000000000,3701.28,646.87,46.33999999999970,81.09000000000000,4230.66,606.43,39.88000000000010,75.93000000000010,3593.67,558.46,29.44000000000010,58.59999999999990,2478.58,722.8,51.09999999999990,95.65000000000010,3171.49,523.68,27.95000000000030,48.58000000000000,3455.49,499.8,20.44000000000010,36.53000000000000,3845.75,541.71,22.73000000000000,49.059999999999900,2781.39,533.95,26.76000000000020,42.24000000000000,3582.9,876.46,26.61999999999990,23.800000000000000,4033.5,566.23,22.26000000000020,46.26000000000000,4390.52,549.42,19.25,42.79000000000010 -360,3415.39,657.73,32.15000000000010,74.05000000000000,3577.1,538.35,22.790000000000000,49.610000000000000,4425.19,697.21,58.74000000000070,87.68000000000000,4190.11,738.3,43.09000000000020,96.59000000000010,3904.11,642.06,40.52999999999980,67.6400000000001,3904.21,566.1,25.09999999999990,59.85000000000000,4107.92,566.08,30.67000000000010,56.65000000000000,4265.92,619.15,44.9399999999996,72.75,3970.48,526.02,21.509999999999800,39.430000000000100,3661.59,515.76,17.559999999999900,34.040000000000000,3545.46,888.0,72.23000000000000,101.79000000000000,4243.28,691.6,46.720000000000300,100.20000000000000,3701.49,647.68,46.34000000000020,81.09000000000000,4232.98,606.42,39.88000000000010,75.94000000000010,3594.5,558.3,29.44000000000010,58.60000000000000,2477.47,722.75,51.8100000000004,96.36,3171.1,523.56,27.95000000000030,48.59000000000000,3455.81,499.78,20.42999999999980,36.53000000000000,3845.86,541.63,22.73999999999980,49.07000000000010,2781.41,533.95,26.76000000000020,42.24000000000000,3583.41,874.34,26.620000000000300,23.800000000000000,4033.53,566.41,22.329999999999900,46.32000000000010,4390.13,549.42,19.26000000000020,42.79000000000010 -361,3413.52,657.92,32.13999999999990,74.05000000000010,3576.7,538.53,22.790000000000000,49.610000000000000,4424.79,697.21,59.0,86.94999999999990,4189.62,738.56,43.10000000000040,96.59000000000010,3902.25,642.12,40.5300000000002,67.64000000000000,3903.59,566.24,25.09999999999990,59.85000000000000,4107.53,566.1,30.68000000000030,56.65000000000000,4265.66,619.08,44.93000000000030,72.76000000000000,3970.63,526.06,21.549999999999700,39.450000000000000,3662.15,515.81,17.559999999999900,34.04000000000010,3545.97,885.33,72.35000000000040,103.19000000000000,4242.73,690.83,46.720000000000300,100.20000000000000,3701.7,648.49,46.33000000000040,81.09000000000000,4235.31,606.42,39.8799999999992,75.94000000000010,3595.32,558.13,29.44000000000010,58.60000000000000,2476.36,722.7,52.52000000000000,97.06000000000000,3170.71,523.45,27.94999999999980,48.58999999999990,3456.12,499.75,20.43000000000030,36.53000000000000,3845.98,541.55,22.73000000000000,49.07000000000010,2781.43,533.95,26.76000000000020,42.24000000000000,3583.92,872.22,26.63000000000010,23.800000000000000,4033.57,566.59,22.37999999999970,46.38,4389.74,549.42,19.26000000000020,42.79000000000010 -362,3411.64,658.12,32.15000000000010,74.05000000000000,3576.29,538.72,22.790000000000000,49.610000000000000,4424.4,697.21,59.24000000000070,86.21999999999990,4189.14,738.83,43.08999999999920,96.58999999999990,3900.39,642.18,40.5300000000002,67.6400000000001,3902.97,566.37,25.100000000000400,59.85000000000000,4107.15,566.11,30.67000000000010,56.66000000000000,4265.39,619.02,44.9399999999996,72.75,3970.78,526.1,21.579999999999900,39.48000000000000,3662.71,515.85,17.550000000000200,34.050000000000000,3546.47,882.65,72.47000000000030,104.59000000000000,4242.18,690.06,46.71999999999940,100.20000000000000,3701.9,649.31,46.33999999999970,81.08000000000000,4237.63,606.42,39.89000000000030,75.94000000000010,3596.14,557.96,29.44000000000010,58.59999999999990,2475.26,722.65,53.22999999999960,97.77000000000000,3170.31,523.33,27.95000000000030,48.58999999999990,3456.43,499.73,20.43000000000030,36.53000000000000,3846.1,541.47,22.73000000000000,49.069999999999900,2781.45,533.96,26.76000000000020,42.24000000000000,3584.44,870.1,26.61999999999990,23.809999999999900,4033.6,566.77,22.45000000000030,46.450000000000000,4389.36,549.42,19.25,42.79000000000010 -363,3409.77,658.31,32.15000000000010,74.05000000000010,3575.89,538.9,22.790000000000000,49.610000000000000,4424.0,697.21,59.5,85.49000000000000,4188.65,739.09,43.10000000000040,96.58999999999990,3898.53,642.24,40.52999999999980,67.64000000000000,3902.34,566.5,25.09999999999990,59.85000000000000,4106.76,566.13,30.67999999999940,56.66000000000000,4265.13,618.95,44.93000000000030,72.76000000000000,3970.93,526.14,21.620000000000300,39.5,3663.26,515.9,17.559999999999900,34.04000000000010,3546.98,879.98,72.57999999999990,105.98000000000000,4241.62,689.3,46.73000000000050,100.20000000000000,3702.11,650.12,46.32999999999990,81.08000000000000,4239.96,606.42,39.88000000000010,75.93000000000010,3596.97,557.8,29.44000000000010,58.60000000000000,2474.15,722.6,53.940000000000100,98.48000000000000,3169.92,523.22,27.94999999999980,48.58999999999990,3456.74,499.7,20.44000000000010,36.53000000000000,3846.21,541.39,22.73999999999980,49.07000000000010,2781.48,533.96,26.759999999999800,42.24000000000000,3584.95,867.98,26.620000000000300,23.809999999999900,4033.63,566.95,22.509999999999800,46.51000000000000,4388.97,549.42,19.25999999999930,42.79000000000010 -364,3407.89,658.51,32.15000000000010,74.05000000000000,3575.48,539.09,22.800000000000200,49.610000000000000,4422.49,696.8,59.5,85.49000000000000,4188.17,739.35,43.09000000000020,96.59000000000010,3896.67,642.3,40.54000000000000,67.6400000000001,3901.72,566.63,25.100000000000400,59.85000000000000,4106.38,566.15,30.67000000000010,56.66000000000000,4264.86,618.88,44.94000000000050,72.76000000000000,3971.09,526.18,21.63999999999990,39.520000000000100,3663.82,515.95,17.549999999999700,34.040000000000000,3547.48,877.3,72.71000000000000,107.3900000000000,4241.07,688.53,46.720000000000300,100.20000000000000,3702.31,650.93,46.34000000000020,81.08000000000000,4242.29,606.42,39.88000000000010,75.93000000000010,3597.79,557.63,29.44000000000010,58.60000000000000,2473.04,722.55,54.65000000000010,99.19000000000000,3169.53,523.11,27.9399999999996,48.58000000000000,3457.06,499.68,20.42999999999980,36.53000000000000,3846.33,541.31,22.73000000000000,49.07000000000010,2781.5,533.96,26.76000000000020,42.24000000000000,3585.46,865.86,26.61999999999990,23.809999999999900,4033.66,567.13,22.579999999999900,46.57000000000010,4388.58,549.42,19.26000000000020,42.79000000000010 -365,3406.02,658.7,32.15000000000010,74.05000000000000,3575.08,539.27,22.790000000000000,49.610000000000000,4420.99,696.39,59.5,85.49000000000000,4187.68,739.61,43.099999999999500,96.60000000000000,3894.82,642.35,40.52999999999980,67.64000000000000,3901.1,566.76,25.09999999999990,59.85000000000000,4105.99,566.17,30.68000000000030,56.65000000000010,4264.6,618.82,44.9399999999996,72.75,3971.24,526.22,21.67000000000010,39.54000000000000,3664.37,515.99,17.559999999999900,34.040000000000000,3547.99,874.63,72.82000000000020,108.78000000000000,4240.52,687.76,46.71999999999940,100.20000000000000,3702.52,651.74,46.32999999999990,81.09000000000000,4244.61,606.41,39.88000000000010,75.94000000000010,3598.61,557.46,29.44000000000010,58.59999999999990,2471.93,722.5,55.36000000000010,99.90000000000000,3169.13,522.99,27.94999999999980,48.59000000000000,3457.37,499.66,20.43000000000030,36.53000000000000,3846.44,541.24,22.73999999999980,49.059999999999900,2781.52,533.96,26.76000000000020,42.24000000000000,3585.97,863.74,26.620000000000300,23.809999999999900,4033.69,567.31,22.63999999999990,46.6400000000001,4388.19,549.42,19.26000000000020,42.79000000000010 -366,3404.15,658.89,32.13999999999990,74.05000000000010,3574.68,539.46,22.790000000000000,49.59999999999990,4419.48,695.98,59.5,85.49000000000000,4187.2,739.88,43.09000000000020,96.59000000000010,3892.96,642.41,40.52999999999980,67.64000000000000,3900.48,566.9,25.090000000000100,59.85000000000000,4105.6,566.19,30.67999999999940,56.65000000000000,4264.33,618.75,44.94000000000050,72.76000000000000,3971.39,526.25,21.71000000000000,39.58000000000000,3664.93,516.04,17.559999999999900,34.04000000000010,3548.49,871.95,72.95000000000030,110.19000000000000,4239.96,687.0,46.72999999999960,100.20000000000000,3702.72,652.55,46.34000000000020,81.09000000000000,4246.94,606.41,39.88000000000010,75.94000000000010,3599.44,557.29,29.44000000000010,58.60000000000000,2470.82,722.45,56.07999999999990,100.6100000000000,3168.74,522.88,27.95000000000030,48.59000000000000,3457.68,499.63,20.44000000000010,36.53000000000000,3846.56,541.16,22.73000000000000,49.06000000000010,2781.54,533.96,26.76000000000020,42.24000000000000,3586.48,861.62,26.61999999999990,23.809999999999900,4033.72,567.49,22.71000000000000,46.700000000000000,4387.81,549.42,19.25999999999930,42.79000000000010 -367,3402.27,659.09,32.15000000000010,74.05000000000000,3574.27,539.64,22.790000000000000,49.610000000000000,4417.97,695.57,59.5,85.4899999999999,4186.71,740.14,43.10000000000040,96.59000000000010,3890.77,642.25,40.5300000000002,67.64000000000000,3899.85,567.03,25.09999999999990,59.85000000000000,4105.22,566.2,30.67000000000010,56.66000000000000,4264.07,618.69,44.94000000000050,72.75,3971.54,526.29,21.74000000000020,39.60000000000000,3665.49,516.09,17.550000000000200,34.040000000000000,3549.0,869.28,73.06000000000000,111.58000000000000,4239.41,686.23,46.720000000000300,100.20000000000000,3702.93,653.36,46.33000000000040,81.09000000000000,4249.26,606.41,39.88000000000010,75.94000000000010,3600.26,557.13,29.4399999999996,58.60000000000000,2469.71,722.4,56.79000000000000,101.31000000000000,3168.34,522.76,27.94999999999980,48.59000000000000,3458.0,499.61,20.42999999999980,36.53000000000000,3846.68,541.08,22.73000000000000,49.069999999999900,2781.57,533.97,26.759999999999800,42.24000000000000,3586.99,859.5,26.620000000000300,23.809999999999900,4033.75,567.67,22.770000000000000,46.76000000000000,4387.42,549.42,19.26000000000020,42.79000000000010 -368,3400.4,659.28,32.15000000000010,74.05000000000010,3573.87,539.83,22.790000000000000,49.59999999999990,4416.47,695.16,59.5,85.5,4186.23,740.4,43.09000000000020,96.59000000000010,3888.57,642.08,40.54000000000000,67.64000000000000,3899.23,567.16,25.09999999999990,59.85000000000000,4104.83,566.22,30.68000000000030,56.66000000000000,4263.8,618.62,44.9399999999996,72.75,3971.69,526.33,21.770000000000000,39.620000000000000,3666.04,516.13,17.559999999999900,34.040000000000000,3549.5,866.6,73.17999999999980,112.98000000000000,4238.86,685.46,46.720000000000300,100.20000000000000,3703.13,654.17,46.33999999999970,81.09000000000000,4251.59,606.41,39.88000000000010,75.93000000000010,3601.09,556.96,29.44000000000010,58.59999999999990,2473.02,721.95,56.69999999999980,101.2300000000000,3167.95,522.65,27.95000000000030,48.59000000000000,3458.31,499.58,20.42999999999980,36.53000000000000,3846.79,541.0,22.73000000000000,49.07000000000010,2781.59,533.97,26.759999999999800,42.24000000000000,3587.5,857.39,26.61999999999990,23.800000000000100,4033.79,567.85,22.829999999999900,46.819999999999900,4387.03,549.42,19.26000000000020,42.79000000000010 -369,3398.52,659.48,32.15000000000010,74.05000000000000,3573.46,540.01,22.800000000000200,49.610000000000000,4414.96,694.75,59.5,85.5,4184.19,740.14,43.09000000000020,96.59000000000010,3885.52,643.04,40.55000000000020,67.76000000000000,3898.61,567.29,25.08999999999970,59.85000000000000,4104.45,566.24,30.67000000000010,56.66000000000000,4263.54,618.55,44.9399999999996,72.76000000000000,3971.84,526.37,21.809999999999900,39.64000000000000,3666.6,516.18,17.550000000000200,34.04000000000010,3550.01,863.93,73.29999999999970,114.38,4238.3,684.7,46.72999999999960,100.20000000000000,3703.34,654.98,46.32999999999990,81.09000000000000,4253.91,606.4,39.89000000000030,75.94000000000010,3601.91,556.79,29.44000000000010,58.60000000000000,2476.33,721.51,56.61000000000010,101.14,3167.56,522.54,27.95000000000030,48.58000000000000,3458.62,499.56,20.44000000000010,36.53000000000000,3846.91,540.92,22.73000000000000,49.07000000000010,2781.61,533.97,26.759999999999800,42.24000000000000,3588.01,855.27,26.62999999999970,23.800000000000100,4033.82,568.03,22.88999999999990,46.89000000000000,4386.65,549.42,19.26000000000020,42.79000000000010 -370,3396.65,659.67,32.15000000000010,74.05000000000010,3573.06,540.2,22.790000000000000,49.59999999999990,4413.45,694.35,59.5,85.49000000000000,4182.14,739.88,43.099999999999500,96.59000000000010,3882.46,643.99,40.57000000000020,67.89000000000000,3897.98,567.42,25.09999999999990,59.85000000000000,4104.06,566.26,30.67999999999940,56.65000000000000,4263.28,618.49,44.93000000000030,72.75,3971.99,526.41,21.840000000000100,39.67000000000010,3667.15,516.23,17.559999999999900,34.040000000000000,3550.51,861.25,73.41999999999960,115.78000000000000,4238.58,684.73,46.720000000000300,100.20000000000000,3702.76,655.79,46.32999999999990,81.09000000000000,4256.24,606.4,39.88000000000010,75.94000000000010,3602.73,556.63,29.44000000000010,58.60000000000000,2479.64,721.06,56.52000000000000,101.06000000000000,3167.16,522.42,27.95000000000030,48.59000000000000,3458.94,499.53,20.42999999999980,36.54000000000010,3847.02,540.84,22.74000000000020,49.069999999999900,2781.63,533.97,26.759999999999800,42.24000000000000,3588.53,853.15,26.61999999999990,23.800000000000100,4033.85,568.21,22.96000000000000,46.94999999999990,4386.26,549.42,19.26000000000020,42.79000000000010 -371,3394.78,659.87,32.13999999999990,74.05000000000000,3573.01,540.38,22.799999999999700,49.610000000000000,4411.94,693.94,59.5,85.4899999999999,4180.1,739.61,43.08999999999920,96.59000000000010,3879.41,644.94,40.59000000000020,68.01000000000000,3897.36,567.56,25.09999999999990,59.85000000000000,4103.68,566.28,30.67000000000010,56.65000000000000,4263.28,618.49,44.54000000000000,72.56000000000000,3972.14,526.45,21.88000000000010,39.68999999999990,3667.71,516.27,17.559999999999900,34.040000000000000,3551.02,858.58,73.54000000000000,117.18000000000000,4238.85,684.76,46.71999999999940,100.20000000000000,3702.18,656.6,46.33000000000040,81.09000000000000,4258.57,606.4,39.88000000000010,75.94000000000010,3603.56,556.46,29.44000000000010,58.59999999999990,2482.94,720.61,56.440000000000100,100.97000000000000,3166.77,522.31,27.94999999999980,48.59000000000000,3459.25,499.51,20.42999999999980,36.53000000000000,3846.97,540.76,22.73000000000000,49.07000000000010,2781.66,533.97,26.76000000000020,42.24000000000000,3589.04,851.03,26.61999999999990,23.81000000000010,4033.88,568.39,23.020000000000000,47.01000000000000,4385.87,549.42,19.26000000000020,42.79000000000010 -372,3392.9,660.06,32.15000000000010,74.05000000000010,3572.97,540.56,22.79000000000040,49.610000000000000,4410.44,693.53,59.5,85.49000000000000,4177.68,739.35,43.09000000000020,96.59000000000010,3876.35,645.89,40.61000000000010,68.14000000000000,3895.7,567.72,25.100000000000400,59.85000000000000,4103.29,566.29,30.68000000000030,56.66000000000010,4263.28,618.49,44.15000000000060,72.36000000000000,3972.29,526.49,21.90999999999990,39.71000000000000,3668.26,516.32,17.559999999999900,34.040000000000000,3551.52,855.9,73.65999999999990,118.58000000000000,4239.13,684.8,46.720000000000300,100.20000000000000,3701.6,657.42,46.32999999999990,81.08000000000000,4260.89,606.4,39.88000000000010,75.93000000000010,3604.38,556.29,29.44000000000010,58.60000000000000,2486.25,720.17,56.34999999999990,100.88,3166.38,522.19,27.94999999999980,48.58999999999990,3459.56,499.49,20.42999999999980,36.53000000000000,3846.91,540.69,22.73000000000000,49.059999999999900,2781.68,533.98,26.76000000000020,42.24000000000000,3589.55,848.91,26.61999999999990,23.81000000000010,4033.91,568.57,23.090000000000100,47.069999999999900,4385.49,549.42,19.26000000000020,42.79000000000010 -373,3391.03,660.26,32.14999999999960,74.05000000000000,3572.92,540.75,22.790000000000000,49.610000000000000,4408.93,693.12,59.5,85.49000000000000,4175.25,739.09,43.10000000000040,96.58999999999990,3873.3,646.85,40.61999999999990,68.26000000000000,3894.04,567.88,25.09999999999990,59.85000000000000,4102.91,566.31,30.67000000000010,56.66000000000010,4263.28,618.49,43.75,72.16000000000000,3971.79,526.51,21.90999999999990,39.71000000000000,3668.82,516.36,17.559999999999900,34.050000000000000,3552.03,853.23,73.77000000000000,119.97000000000000,4239.4,684.83,46.720000000000300,100.20000000000000,3701.02,658.23,46.32999999999990,81.07999999999990,4263.22,606.4,39.88000000000010,75.93000000000010,3605.2,556.13,29.44000000000010,58.60000000000000,2489.56,719.72,56.26000000000020,100.80000000000000,3165.98,522.08,27.94999999999980,48.58999999999990,3459.87,499.46,20.44000000000010,36.53000000000000,3846.85,540.61,22.74000000000020,49.059999999999900,2781.7,533.98,26.76000000000020,42.24000000000000,3590.06,846.79,26.61999999999990,23.81000000000010,4033.94,568.75,23.15000000000010,47.14000000000000,4385.1,549.42,19.25999999999930,42.79000000000010 -374,3389.15,660.45,32.15000000000010,74.05000000000000,3572.88,540.93,22.790000000000000,49.610000000000000,4407.42,692.71,59.5,85.49000000000000,4172.83,738.83,43.09000000000020,96.58999999999990,3870.24,647.8,40.64000000000030,68.3900000000001,3892.38,568.04,25.09999999999990,59.85000000000000,4102.52,566.33,30.67999999999940,56.66000000000000,4263.28,618.49,43.36000000000060,71.97000000000000,3971.29,526.53,21.90999999999990,39.71000000000000,3669.38,516.41,17.549999999999700,34.04000000000010,3552.53,850.55,73.89999999999960,121.38,4239.67,684.87,46.72999999999960,100.20000000000000,3700.44,659.04,46.32999999999990,81.08000000000000,4265.54,606.39,39.88000000000010,75.94000000000010,3606.03,555.96,29.4399999999996,58.59999999999990,2492.87,719.28,56.17000000000010,100.71000000000000,3165.59,521.97,27.94999999999980,48.57999999999990,3460.19,499.44,20.42999999999980,36.53000000000000,3846.8,540.53,22.73000000000000,49.06000000000010,2781.72,533.98,26.76000000000020,42.24000000000000,3590.57,844.67,26.61999999999990,23.81000000000010,4033.97,568.93,23.22000000000030,47.200000000000000,4384.71,549.42,19.26000000000020,42.79000000000010 -375,3387.28,660.64,32.14999999999960,74.05000000000010,3572.83,541.12,22.790000000000000,49.60000000000000,4405.92,692.3,59.5,85.49000000000000,4170.41,738.56,43.09000000000020,96.59000000000010,3867.19,648.75,40.659999999999900,68.51000000000000,3890.73,568.2,25.090000000000100,59.84999999999990,4102.13,566.35,30.68000000000030,56.65000000000000,4263.28,618.49,42.970000000000300,71.77000000000000,3970.79,526.55,21.90999999999990,39.71000000000000,3669.93,516.46,17.559999999999900,34.040000000000000,3553.04,847.88,74.01000000000020,122.77000000000000,4239.95,684.9,46.720000000000300,100.20000000000000,3699.86,659.85,46.32999999999990,81.09000000000000,4267.87,606.39,39.88000000000010,75.94000000000010,3606.85,555.79,29.44000000000010,58.60000000000000,2496.17,718.83,56.09999999999990,100.62,3165.2,521.85,27.94000000000010,48.59000000000000,3460.5,499.41,20.42999999999980,36.54000000000000,3846.74,540.45,22.73000000000000,49.069999999999900,2781.75,533.98,26.76000000000020,42.24000000000000,3591.08,842.55,26.61999999999990,23.81000000000010,4034.01,569.11,23.270000000000000,47.26000000000000,4384.33,549.42,19.26000000000020,42.79000000000010 -376,3385.41,660.84,32.14000000000030,74.05000000000000,3572.79,541.3,22.790000000000000,49.610000000000000,4404.41,691.89,59.5,85.5,4167.98,738.3,43.10000000000040,96.59000000000010,3864.13,649.7,40.67999999999980,68.64000000000000,3889.07,568.37,25.09999999999990,59.85000000000000,4101.75,566.37,30.67000000000010,56.65000000000000,4263.28,618.49,42.57000000000060,71.58000000000000,3970.29,526.57,21.90999999999990,39.70999999999990,3670.49,516.5,17.5600000000004,34.040000000000000,3553.54,845.2,74.13999999999990,124.18000000000000,4240.22,684.94,46.71999999999940,100.19000000000000,3699.28,660.66,46.32999999999990,81.09000000000000,4270.19,606.39,39.89000000000030,75.94000000000010,3607.67,555.62,29.44000000000010,58.60000000000000,2499.48,718.38,56.00999999999980,100.54000000000000,3164.8,521.74,27.94999999999980,48.59000000000000,3460.81,499.39,20.44000000000010,36.53000000000000,3846.68,540.37,22.73000000000000,49.07000000000010,2781.77,533.98,26.76000000000020,42.24000000000000,3591.59,840.43,26.61999999999990,23.81000000000010,4034.04,569.29,23.340000000000100,47.33000000000000,4383.94,549.42,19.26000000000020,42.79000000000010 -377,3383.53,661.03,32.14999999999960,74.05000000000010,3572.74,541.49,22.79000000000040,49.60000000000000,4402.9,691.48,59.5,85.5,4165.56,738.04,43.08999999999920,96.59000000000010,3861.08,650.66,40.690000000000100,68.76000000000000,3887.41,568.53,25.100000000000400,59.85000000000000,4101.36,566.38,30.68000000000030,56.66000000000000,4263.28,618.49,42.18000000000030,71.38,3969.79,526.59,21.90999999999990,39.70999999999990,3671.04,516.55,17.559999999999900,34.04000000000010,3554.05,842.53,74.25,125.57000000000000,4240.5,684.97,46.720000000000300,100.20000000000000,3698.7,661.47,46.33000000000040,81.08999999999990,4272.52,606.39,39.8799999999992,75.93000000000010,3608.5,555.46,29.44000000000010,58.59999999999990,2502.79,717.94,55.92000000000010,100.45000000000000,3164.41,521.62,27.95000000000030,48.59000000000000,3461.13,499.37,20.42999999999980,36.53000000000000,3846.62,540.29,22.74000000000020,49.07000000000010,2781.79,533.98,26.76000000000020,42.24000000000000,3592.1,838.32,26.63000000000010,23.800000000000000,4034.07,569.47,23.39999999999960,47.39000000000000,4383.55,549.42,19.26000000000020,42.79000000000010 -378,3381.66,661.23,32.15000000000010,74.05000000000000,3572.69,541.67,22.799999999999700,49.610000000000000,4401.4,691.08,59.5,85.49000000000000,4163.14,737.77,43.08999999999920,96.60000000000000,3858.02,651.61,40.71000000000000,68.88,3885.75,568.69,25.09999999999990,59.84999999999990,4100.98,566.4,30.67000000000010,56.66000000000000,4263.28,618.49,41.79000000000000,71.18000000000000,3969.29,526.61,21.90000000000010,39.71000000000000,3671.6,516.6,17.559999999999900,34.040000000000000,3554.88,841.37,74.25999999999980,125.57000000000000,4240.77,685.0,46.71999999999940,100.20000000000000,3698.11,662.28,46.33999999999970,81.09000000000000,4274.85,606.38,39.8799999999992,75.94000000000010,3609.32,555.29,29.44000000000010,58.60000000000000,2506.09,717.49,55.83999999999970,100.37,3164.01,521.51,27.94999999999980,48.59000000000000,3461.44,499.34,20.42999999999980,36.53000000000000,3846.57,540.21,22.73000000000000,49.069999999999900,2781.81,533.99,26.76000000000020,42.24000000000000,3592.62,836.2,26.61999999999990,23.800000000000000,4034.1,569.64,23.47000000000030,47.46000000000000,4383.17,549.42,19.25,42.79000000000010 -379,3379.79,661.42,32.13999999999990,74.05000000000010,3572.65,541.86,22.790000000000000,49.60000000000000,4399.89,690.67,59.5,85.49000000000000,4160.71,737.51,43.10000000000040,96.59000000000010,3854.97,652.56,40.73000000000000,69.0100000000001,3884.09,568.85,25.09999999999990,59.85000000000000,4100.59,566.42,30.68000000000030,56.65000000000010,4263.28,618.49,41.39000000000030,70.99000000000000,3968.79,526.63,21.90000000000010,39.71000000000000,3672.16,516.64,17.550000000000200,34.040000000000000,3555.72,840.21,74.25,125.57000000000000,4241.04,685.04,46.73000000000050,100.20000000000000,3697.53,663.09,46.33999999999970,81.08999999999990,4277.17,606.38,39.88000000000010,75.94000000000010,3610.14,555.12,29.44000000000010,58.60000000000000,2509.4,717.04,55.75,100.28000000000000,3163.62,521.4,27.95000000000030,48.58000000000000,3461.75,499.32,20.44000000000010,36.53000000000000,3846.51,540.13,22.729999999999600,49.07000000000010,2781.83,533.99,26.76000000000020,42.24000000000000,3593.13,834.08,26.61999999999990,23.809999999999900,4034.13,569.82,23.529999999999700,47.52000000000000,4382.78,549.42,19.26000000000020,42.79000000000010 -380,3377.91,661.62,32.15000000000010,74.05000000000000,3572.6,542.04,22.800000000000200,49.610000000000000,4398.38,690.26,59.5,85.49000000000000,4158.29,737.25,43.09000000000020,96.59000000000010,3851.91,653.51,40.75,69.14000000000000,3882.43,569.02,25.100000000000400,59.85000000000000,4100.21,566.44,30.67000000000010,56.65000000000000,4263.28,618.49,41.0,70.79000000000000,3968.29,526.65,21.90000000000010,39.71000000000000,3672.71,516.69,17.559999999999900,34.040000000000000,3556.56,839.05,74.25,125.57000000000000,4241.32,685.07,46.720000000000300,100.20000000000000,3696.95,663.9,46.34000000000020,81.09000000000000,4279.5,606.38,39.88000000000010,75.94000000000010,3610.97,554.96,29.44000000000010,58.59999999999990,2512.71,716.6,55.659999999999900,100.19000000000000,3163.23,521.28,27.94999999999980,48.59000000000000,3462.07,499.29,20.42999999999980,36.54000000000000,3846.45,540.06,22.74000000000020,49.06000000000010,2781.86,533.99,26.759999999999800,42.24000000000000,3593.64,831.96,26.620000000000300,23.809999999999900,4034.16,570.0,23.600000000000400,47.59000000000000,4382.87,549.41,19.26000000000020,42.80000000000010 -381,3376.04,661.81,32.13999999999990,74.05000000000010,3572.56,542.23,22.790000000000000,49.60000000000000,4396.88,689.85,59.5,85.49000000000000,4155.87,736.99,43.09000000000020,96.59000000000010,3848.86,654.47,40.75999999999980,69.25,3880.77,569.18,25.09999999999990,59.85000000000000,4099.82,566.46,30.68000000000030,56.65000000000000,4263.28,618.49,40.61000000000060,70.59000000000000,3967.79,526.67,21.90000000000010,39.71000000000000,3673.27,516.74,17.559999999999900,34.040000000000000,3557.39,837.89,74.25,125.57000000000000,4241.59,685.11,46.720000000000300,100.20000000000000,3696.37,664.71,46.34000000000020,81.08999999999990,4281.82,606.38,39.88000000000010,75.93000000000000,3611.79,554.79,29.44000000000010,58.60000000000000,2516.02,716.15,55.57000000000020,100.11,3162.83,521.17,27.95000000000030,48.59000000000000,3462.38,499.27,20.42999999999980,36.53000000000000,3846.4,539.98,22.73000000000000,49.059999999999900,2781.88,533.99,26.759999999999800,42.24000000000000,3594.15,829.84,26.61999999999990,23.809999999999900,4034.2,570.18,23.65000000000010,47.65000000000010,4382.96,549.4,19.26000000000020,42.80000000000010 -382,3374.16,662.01,32.15000000000010,74.05000000000000,3572.51,542.41,22.799999999999700,49.610000000000000,4395.37,689.44,59.5,85.4899999999999,4153.44,736.72,43.10000000000040,96.58999999999990,3845.8,655.42,40.79000000000000,69.38,3879.12,569.34,25.090000000000100,59.85000000000000,4099.44,566.47,30.67000000000010,56.66000000000000,4263.28,618.49,40.21000000000000,70.40000000000000,3967.29,526.68,21.90000000000010,39.72000000000000,3673.82,516.78,17.559999999999900,34.04000000000010,3558.23,836.72,74.25,125.58000000000000,4241.86,685.14,46.73000000000050,100.20000000000000,3695.79,665.53,46.34000000000020,81.08000000000000,4284.15,606.38,39.88000000000010,75.93000000000000,3612.62,554.62,29.44000000000010,58.60000000000000,2519.32,715.71,55.48999999999980,100.02000000000000,3162.44,521.05,27.94999999999980,48.59000000000000,3462.69,499.25,20.42999999999980,36.53000000000000,3846.34,539.9,22.73000000000000,49.06000000000010,2781.9,533.99,26.759999999999800,42.24000000000000,3594.66,827.72,26.620000000000300,23.809999999999900,4034.23,570.36,23.7199999999998,47.71000000000000,4383.05,549.4,19.26000000000020,42.79000000000010 -383,3372.29,662.2,32.15000000000010,74.05000000000000,3572.47,542.59,22.79000000000040,49.610000000000000,4393.86,689.03,59.5,85.49000000000000,4151.02,736.46,43.08999999999920,96.58999999999990,3842.75,656.37,40.80000000000020,69.51000000000000,3877.46,569.5,25.09999999999990,59.85000000000000,4099.05,566.49,30.67999999999940,56.66000000000000,4263.28,618.49,39.82000000000060,70.20000000000010,3966.78,526.7,21.90999999999990,39.71999999999990,3674.02,516.81,17.559999999999900,34.04000000000010,3559.06,835.56,74.26000000000020,125.57000000000000,4242.14,685.17,46.71999999999940,100.20000000000000,3695.21,666.34,46.34000000000020,81.07999999999990,4285.05,607.33,39.88000000000010,75.93999999999990,3613.44,554.46,29.44000000000010,58.59999999999990,2522.63,715.26,55.40000000000010,99.94000000000000,3162.05,520.94,27.9399999999996,48.58999999999990,3463.01,499.22,20.42999999999980,36.53000000000000,3846.28,539.82,22.73999999999980,49.069999999999900,2781.92,534.0,26.759999999999800,42.24000000000000,3595.17,825.6,26.61999999999990,23.809999999999900,4034.26,570.54,23.779999999999700,47.77000000000000,4383.14,549.39,19.25999999999930,42.80000000000010 -384,3370.42,662.39,32.13999999999990,74.05000000000010,3572.42,542.78,22.790000000000000,49.610000000000000,4392.35,688.62,59.5,85.5,4148.6,736.2,43.08999999999920,96.58999999999990,3839.69,657.32,40.82000000000020,69.64000000000000,3875.8,569.67,25.09999999999990,59.84000000000000,4098.66,566.51,30.68000000000030,56.65000000000000,4263.28,618.49,39.43000000000030,70.01000000000000,3966.28,526.72,21.90999999999990,39.72000000000000,3674.22,516.85,17.5600000000004,34.040000000000000,3559.9,834.4,74.25,125.57000000000000,4242.41,685.21,46.720000000000300,100.20000000000000,3694.63,667.15,46.33999999999970,81.08000000000000,4285.95,608.28,39.88000000000010,75.94000000000010,3614.26,554.29,29.4399999999996,58.60000000000000,2525.94,714.81,55.309999999999900,99.85000000000000,3161.65,520.83,27.94999999999980,48.57999999999990,3463.32,499.2,20.42999999999980,36.53000000000000,3846.23,539.74,22.73000000000000,49.069999999999900,2781.95,534.0,26.76000000000020,42.24000000000000,3595.68,823.48,26.620000000000300,23.809999999999900,4034.29,570.72,23.84999999999990,47.83999999999990,4383.23,549.38,19.26000000000020,42.80000000000000 -385,3368.54,662.59,32.15000000000010,74.05000000000000,3572.38,542.96,22.790000000000000,49.610000000000000,4390.85,688.21,59.5,85.5,4146.17,735.94,43.10000000000040,96.58999999999990,3836.64,658.28,40.82999999999990,69.75,3874.75,569.68,25.09999999999990,59.85000000000000,4098.28,566.53,30.67000000000010,56.65000000000000,4263.28,618.49,39.04000000000000,69.81000000000000,3965.78,526.74,21.90999999999990,39.72000000000000,3674.42,516.88,17.559999999999900,34.040000000000000,3560.74,833.24,74.25,125.57000000000000,4242.69,685.24,46.720000000000300,100.20000000000000,3694.05,667.96,46.33999999999970,81.08999999999990,4286.85,609.24,39.8799999999992,75.93999999999990,3615.09,554.12,29.44000000000010,58.60000000000000,2529.25,714.37,55.2199999999998,99.76,3161.26,520.71,27.94999999999980,48.58999999999990,3463.63,499.17,20.42999999999980,36.53000000000000,3846.17,539.66,22.73000000000000,49.07000000000010,2781.97,534.0,26.76000000000020,42.24000000000000,3596.19,821.37,26.63000000000010,23.800000000000000,4034.32,570.9,23.90999999999990,47.90000000000000,4383.32,549.38,19.26000000000020,42.79000000000000 -386,3366.67,662.78,32.15000000000010,74.05000000000010,3572.33,543.15,22.790000000000000,49.60000000000000,4389.34,687.81,59.5,85.49000000000000,4143.75,735.67,43.09000000000020,96.59000000000010,3833.58,659.23,40.86000000000010,69.88,3873.7,569.69,25.100000000000400,59.84999999999990,4097.89,566.54,30.67999999999940,56.66000000000010,4263.28,618.49,38.64000000000030,69.61000000000000,3965.28,526.76,21.90999999999990,39.72000000000000,3674.62,516.91,17.559999999999900,34.04000000000010,3561.57,832.08,74.25,125.57000000000000,4242.96,685.28,46.720000000000300,100.20000000000000,3693.47,668.77,46.34000000000020,81.09000000000000,4287.75,610.19,39.88000000000010,75.93999999999990,3615.91,553.95,29.44000000000010,58.59999999999990,2532.55,713.92,55.13999999999990,99.68000000000010,3160.86,520.6,27.94999999999980,48.59000000000000,3463.94,499.15,20.44000000000010,36.53000000000000,3846.11,539.58,22.73000000000000,49.069999999999900,2781.99,534.0,26.76000000000020,42.24000000000000,3596.71,819.25,26.61999999999990,23.800000000000000,4034.35,571.08,23.98000000000000,47.95999999999990,4383.41,549.37,19.26000000000020,42.80000000000000 -387,3365.26,663.2,32.279999999999700,74.16000000000000,3572.29,543.33,22.790000000000000,49.610000000000000,4387.83,687.4,59.5,85.49000000000000,4141.33,735.41,43.09000000000020,96.59000000000010,3831.73,659.63,40.86999999999990,70.01000000000000,3872.66,569.71,25.090000000000100,59.84999999999990,4097.51,566.56,30.67000000000010,56.66000000000010,4263.28,618.49,38.25,69.42000000000000,3964.78,526.78,21.90999999999990,39.71000000000000,3674.82,516.94,17.549999999999700,34.040000000000000,3562.41,830.92,74.25,125.57000000000000,4243.23,685.31,46.73000000000050,100.20000000000000,3692.89,669.58,46.34000000000020,81.08999999999990,4288.65,611.15,39.89000000000030,75.94000000000010,3616.73,553.79,29.44000000000010,58.60000000000000,2535.86,713.47,55.04999999999970,99.60000000000000,3160.47,520.48,27.95000000000030,48.59000000000000,3464.26,499.13,20.42999999999980,36.53000000000000,3846.05,539.51,22.73999999999980,49.06000000000010,2782.01,534.0,26.759999999999800,42.24000000000000,3597.22,817.13,26.620000000000300,23.800000000000000,4034.38,571.26,24.040000000000000,48.03000000000000,4383.5,549.36,19.26000000000020,42.80000000000000 -388,3363.85,663.61,32.42000000000010,74.28000000000000,3572.24,543.52,22.79000000000040,49.60000000000000,4386.33,686.99,59.5,85.49000000000000,4138.9,735.15,43.10000000000040,96.59000000000010,3829.88,660.03,40.88999999999990,70.13,3871.61,569.72,25.09999999999990,59.85000000000000,4097.12,566.58,30.68000000000030,56.66000000000000,4263.28,618.49,37.86000000000060,69.22000000000000,3964.28,526.8,21.89999999999960,39.71000000000000,3675.01,516.97,17.559999999999900,34.040000000000000,3563.24,829.76,74.25,125.57000000000000,4243.51,685.35,46.71999999999940,100.20000000000000,3692.31,670.39,46.34000000000020,81.09000000000000,4289.56,612.1,39.8799999999992,75.93999999999990,3617.56,553.62,29.44000000000010,58.60000000000000,2539.17,713.03,54.96000000000000,99.5,3160.08,520.37,27.95000000000030,48.59000000000000,3464.57,499.1,20.42999999999980,36.53000000000000,3846.0,539.43,22.73000000000000,49.06000000000010,2782.04,534.01,26.76000000000020,42.24000000000000,3597.73,815.01,26.61999999999990,23.81000000000010,4034.42,571.44,24.09999999999990,48.08999999999990,4383.59,549.36,19.26000000000020,42.80000000000000 -389,3362.44,664.02,32.559999999999900,74.40000000000000,3572.19,543.7,22.799999999999700,49.6099999999999,4384.82,686.58,59.5,85.49000000000000,4136.48,734.88,43.09000000000020,96.60000000000000,3828.03,660.43,40.909999999999900,70.2600000000001,3870.56,569.73,25.09999999999990,59.85000000000000,4096.74,566.6,30.67000000000010,56.65000000000000,4263.28,618.49,37.46000000000000,69.02000000000000,3963.78,526.82,21.89999999999960,39.70999999999990,3675.21,517.01,17.559999999999900,34.040000000000000,3564.08,828.6,74.25,125.57000000000000,4243.78,685.38,46.720000000000300,100.20000000000000,3691.73,671.2,46.34000000000020,81.08999999999990,4290.46,613.06,39.88000000000010,75.94000000000010,3618.38,553.45,29.44000000000010,58.59999999999990,2542.47,712.58,54.89000000000030,99.42000000000000,3159.68,520.26,27.95000000000030,48.58000000000000,3464.88,499.08,20.44000000000010,36.53000000000000,3845.94,539.35,22.73000000000000,49.059999999999900,2782.06,534.01,26.76000000000020,42.24000000000000,3598.24,812.89,26.620000000000300,23.81000000000010,4034.45,571.62,24.16000000000030,48.15000000000000,4383.68,549.35,19.25999999999930,42.80000000000000 -390,3361.04,664.43,32.690000000000100,74.5200000000001,3572.15,543.89,22.790000000000000,49.60000000000000,4383.31,686.17,59.5,85.49000000000000,4134.06,734.62,43.08999999999920,96.59000000000010,3826.18,660.83,40.93000000000030,70.38,3869.51,569.75,25.09999999999990,59.85000000000000,4096.35,566.62,30.67999999999940,56.65000000000000,4263.28,618.49,37.07000000000060,68.83000000000000,3963.28,526.84,21.89999999999960,39.70999999999990,3675.41,517.04,17.559999999999900,34.04000000000010,3564.91,827.44,74.26000000000020,125.57000000000000,4244.06,685.41,46.71999999999940,100.20000000000000,3691.15,672.01,46.33999999999970,81.09000000000000,4291.36,614.01,39.88000000000010,75.94000000000010,3618.25,554.06,29.44000000000010,58.60000000000000,2545.78,712.14,54.79999999999970,99.33000000000000,3159.29,520.14,27.94999999999980,48.59000000000000,3465.2,499.05,20.43000000000030,36.53000000000000,3845.88,539.27,22.73999999999980,49.07000000000010,2782.08,534.01,26.76000000000020,42.24000000000000,3598.75,810.77,26.61999999999990,23.81000000000010,4034.48,571.8,24.23000000000000,48.21000000000000,4383.77,549.35,19.25999999999930,42.79000000000000 -391,3359.63,664.85,32.82999999999990,74.63,3572.1,544.07,22.800000000000200,49.6099999999999,4381.81,685.76,59.5,85.49000000000000,4131.63,734.36,43.099999999999500,96.59000000000010,3824.33,661.24,40.940000000000100,70.5,3868.47,569.76,25.090000000000100,59.85000000000000,4095.97,566.63,30.670000000000500,56.66000000000000,4263.28,618.49,36.68000000000030,68.63,3962.78,526.86,21.89999999999960,39.71000000000000,3675.61,517.07,17.559999999999900,34.040000000000000,3565.75,826.28,74.25,125.57000000000000,4244.33,685.45,46.720000000000300,100.20000000000000,3690.57,672.82,46.33999999999970,81.08999999999990,4293.16,614.8,39.88000000000010,75.93000000000010,3618.12,554.67,29.44000000000010,58.60000000000000,2549.09,711.69,54.71000000000000,99.25,3158.9,520.03,27.94000000000010,48.59000000000000,3465.51,499.03,20.42999999999980,36.53000000000000,3845.83,539.19,22.73000000000000,49.069999999999900,2782.1,534.01,26.76000000000020,42.24000000000000,3599.26,808.65,26.61999999999990,23.81000000000010,4034.98,572.06,24.290000000000000,48.280000000000100,4383.86,549.34,19.26000000000020,42.80000000000000 -392,3358.22,665.26,32.970000000000300,74.75,3572.06,544.26,22.790000000000000,49.60000000000000,4380.3,685.35,59.5,85.5,4129.21,734.1,43.09000000000020,96.59000000000010,3822.48,661.64,40.96000000000000,70.62,3867.42,569.78,25.09999999999990,59.85000000000000,4095.58,566.65,30.68000000000030,56.66000000000000,4263.28,618.49,36.280000000000700,68.43999999999990,3962.28,526.88,21.89999999999960,39.71000000000000,3675.81,517.1,17.550000000000200,34.040000000000000,3566.59,825.11,74.25,125.58000000000000,4244.6,685.48,46.72999999999960,100.20000000000000,3689.49,673.1,46.34000000000020,81.09000000000000,4294.96,615.58,39.88000000000010,75.93999999999990,3617.99,555.28,29.44000000000010,58.60000000000000,2552.4,711.24,54.61999999999990,99.16000000000000,3158.5,519.91,27.94999999999980,48.59000000000000,3465.82,499.01,20.44000000000010,36.53000000000000,3845.77,539.11,22.73000000000000,49.069999999999900,2782.13,534.01,26.759999999999800,42.24000000000000,3599.77,806.53,26.61999999999990,23.81000000000010,4035.49,572.32,24.350000000000400,48.33999999999990,4383.95,549.33,19.26000000000020,42.80000000000000 -393,3356.81,665.67,33.11000000000010,74.87,3572.01,544.44,22.799999999999700,49.6099999999999,4378.79,684.94,59.5,85.5,4126.79,733.83,43.09000000000020,96.59999999999990,3820.62,662.04,40.99000000000020,70.75,3866.37,569.79,25.09999999999990,59.85000000000000,4094.07,566.67,30.67999999999980,56.66000000000010,4263.28,618.49,35.89000000000030,68.24000000000000,3961.77,526.9,21.90999999999990,39.71000000000000,3676.01,517.14,17.549999999999700,34.040000000000000,3567.42,823.95,74.25,125.57000000000000,4244.88,685.52,46.720000000000300,100.20000000000000,3688.41,673.38,46.34000000000020,81.09000000000000,4296.75,616.36,39.89000000000030,75.93999999999990,3617.86,555.89,29.44000000000010,58.60000000000000,2555.7,710.8,54.54000000000000,99.07000000000000,3158.11,519.8,27.94999999999980,48.59000000000000,3466.14,498.98,20.43000000000030,36.53000000000000,3845.71,539.03,22.73999999999980,49.07000000000010,2782.15,534.01,26.759999999999800,42.24000000000000,3600.28,806.79,26.62999999999970,23.81000000000010,4035.99,572.58,24.42000000000010,48.40000000000000,4384.05,549.33,19.25,42.79000000000000 -394,3355.41,666.08,33.24000000000020,74.99000000000000,3571.97,544.62,22.79000000000040,49.610000000000000,4377.29,684.54,59.5,85.49000000000000,4124.36,733.57,43.10000000000040,96.58999999999990,3818.77,662.44,41.01000000000020,70.88,3865.32,569.8,25.09999999999990,59.85000000000000,4092.57,566.69,30.66999999999960,56.65000000000000,4263.28,618.49,35.5,68.04000000000000,3961.27,526.92,21.90999999999990,39.71000000000000,3676.2,517.17,17.5600000000004,34.04000000000010,3568.26,822.79,74.25,125.57000000000000,4245.15,685.55,46.720000000000300,100.20000000000000,3687.33,673.66,46.34000000000020,81.09000000000000,4298.55,617.15,39.88000000000010,75.93000000000010,3617.74,556.5,29.44000000000010,58.60000000000000,2559.01,710.35,54.44999999999980,98.99,3157.71,519.69,27.94999999999980,48.57999999999990,3466.45,498.96,20.43000000000030,36.53000000000000,3845.66,538.95,22.73000000000000,49.069999999999900,2782.17,534.02,26.759999999999800,42.24000000000000,3600.8,807.05,26.61999999999990,23.81000000000010,4036.49,572.84,24.48000000000000,48.45999999999990,4384.14,549.32,19.25,42.80000000000000 -395,3354.0,666.5,33.38000000000010,75.11000000000000,3571.92,544.81,22.790000000000000,49.610000000000000,4375.78,684.13,59.5,85.49000000000000,4121.94,733.31,43.09000000000020,96.59000000000010,3816.92,662.84,41.02000000000000,71.0,3864.28,569.82,25.09999999999990,59.84999999999990,4091.06,566.71,30.66999999999960,56.65000000000000,4263.28,618.49,35.100000000000400,67.85000000000000,3960.77,526.94,21.90999999999990,39.70999999999990,3676.4,517.2,17.559999999999900,34.040000000000000,3569.09,821.63,74.25999999999980,125.57000000000000,4245.42,685.59,46.72999999999960,100.20000000000000,3686.25,673.94,46.34000000000020,81.08999999999990,4300.35,617.93,39.8799999999992,75.94000000000010,3617.61,557.11,29.44000000000010,58.60000000000000,2562.32,709.9,54.35999999999970,98.91000000000000,3157.32,519.57,27.94999999999980,48.58999999999990,3466.76,498.93,20.42999999999980,36.53000000000000,3845.6,538.88,22.73000000000000,49.06000000000010,2782.19,534.02,26.759999999999800,42.24000000000000,3601.31,807.31,26.61999999999990,23.81000000000010,4037.0,573.1,24.540000000000000,48.52000000000000,4384.23,549.31,19.25,42.80000000000010 -396,3352.59,666.91,33.52000000000000,75.23000000000000,3571.88,544.99,22.790000000000000,49.610000000000000,4374.27,683.72,59.5,85.49000000000000,4119.52,733.05,43.08999999999920,96.59000000000010,3815.07,663.24,41.04000000000000,71.13,3863.23,569.83,25.09999999999990,59.84999999999990,4089.55,566.72,30.67999999999940,56.66000000000000,4263.28,618.49,34.71000000000000,67.65000000000000,3960.27,526.96,21.90999999999990,39.70999999999990,3676.6,517.23,17.559999999999900,34.040000000000000,3569.93,820.47,74.25,125.57000000000000,4245.7,685.62,46.720000000000300,100.20000000000000,3685.17,674.22,46.34000000000020,81.08999999999990,4302.15,618.71,39.88000000000010,75.93999999999990,3617.48,557.72,29.44000000000010,58.60000000000000,2565.63,709.46,54.27000000000000,98.81000000000000,3156.93,519.46,27.95000000000030,48.58999999999990,3467.07,498.91,20.44000000000010,36.53000000000000,3845.54,538.8,22.73000000000000,49.06000000000010,2782.22,534.02,26.76000000000020,42.24000000000000,3601.82,807.57,26.61999999999990,23.800000000000000,4037.5,573.36,24.610000000000100,48.58000000000000,4384.32,549.31,19.26000000000020,42.80000000000010 -397,3351.18,667.32,33.65000000000010,75.34999999999990,3571.83,545.18,22.790000000000000,49.60000000000000,4372.76,683.31,59.5,85.49000000000000,4117.09,732.78,43.099999999999500,96.59000000000010,3813.22,663.64,41.0600000000004,71.25,3862.18,569.85,25.100000000000400,59.85000000000000,4088.04,566.74,30.68000000000030,56.66000000000000,4263.28,618.49,34.32000000000060,67.45000000000010,3959.77,526.98,21.90999999999990,39.71000000000000,3676.8,517.26,17.559999999999900,34.040000000000000,3570.77,819.31,74.25,125.57000000000000,4245.97,685.65,46.71999999999940,100.20000000000000,3684.09,674.5,46.33999999999970,81.09000000000000,4303.95,619.5,39.88000000000010,75.93000000000000,3617.35,558.33,29.44000000000010,58.59999999999990,2568.93,709.01,54.190000000000100,98.73000000000000,3156.53,519.34,27.94999999999980,48.58999999999990,3467.39,498.88,20.43000000000030,36.54000000000000,3845.63,538.82,22.73999999999980,49.069999999999900,2782.24,534.02,26.76000000000020,42.24000000000000,3602.33,807.83,26.61999999999990,23.800000000000000,4038.0,573.62,24.67000000000010,48.65000000000000,4384.41,549.3,19.26000000000020,42.80000000000010 -398,3349.78,667.73,33.779999999999700,75.47000000000000,3571.79,545.36,22.790000000000000,49.610000000000000,4371.26,682.9,59.5,85.49000000000000,4114.67,732.52,43.09000000000020,96.59000000000010,3811.37,664.05,41.07000000000020,71.37,3861.13,569.86,25.09999999999990,59.85000000000000,4086.53,566.76,30.67999999999980,56.65000000000000,4263.28,618.49,33.92000000000010,67.26000000000000,3959.27,527.0,21.90999999999990,39.71000000000000,3677.0,517.3,17.550000000000200,34.04000000000010,3571.6,818.15,74.25,125.57000000000000,4246.25,685.69,46.720000000000300,100.20000000000000,3683.01,674.78,46.33999999999970,81.09000000000000,4305.75,620.28,39.88000000000010,75.94000000000010,3617.22,558.94,29.44000000000010,58.59999999999990,2572.24,708.57,54.10000000000040,98.64,3156.14,519.23,27.95000000000030,48.59000000000000,3467.7,498.86,20.43000000000030,36.53000000000000,3845.72,538.85,22.74000000000020,49.069999999999900,2782.26,534.02,26.759999999999800,42.24000000000000,3602.84,808.08,26.61999999999990,23.809999999999900,4038.51,573.87,24.729999999999600,48.72000000000000,4384.5,549.3,19.26000000000020,42.79000000000010 -399,3348.37,668.15,33.92000000000010,75.58000000000000,3571.74,545.55,22.79000000000040,49.60000000000000,4369.75,682.49,59.5,85.49000000000000,4112.25,732.26,43.09000000000020,96.59000000000010,3809.52,664.45,41.09000000000020,71.5,3860.09,569.87,25.09999999999990,59.85000000000000,4085.03,566.78,30.66999999999960,56.65000000000000,4263.28,618.49,33.530000000000700,67.06000000000000,3958.77,527.02,21.90000000000010,39.71000000000000,3677.2,517.33,17.550000000000200,34.040000000000000,3572.44,816.99,74.25,125.57000000000000,4246.52,685.72,46.71999999999940,100.20000000000000,3681.93,675.06,46.34000000000020,81.09000000000000,4307.55,621.06,39.88000000000010,75.94000000000010,3617.09,559.54,29.44000000000010,58.60000000000000,2575.55,708.12,54.00999999999980,98.56000000000000,3155.75,519.12,27.94000000000010,48.58000000000000,3468.01,498.84,20.4399999999996,36.53000000000000,3845.81,538.88,22.74000000000020,49.07000000000010,2782.28,534.03,26.759999999999800,42.24000000000000,3603.35,808.34,26.61999999999990,23.809999999999900,4039.01,574.13,24.799999999999700,48.78000000000000,4384.59,549.29,19.26000000000020,42.80000000000010 -400,3346.96,668.56,34.059999999999900,75.70000000000010,3571.69,545.73,22.799999999999700,49.610000000000000,4368.24,682.08,59.5,85.5,4109.82,732.0,43.10000000000040,96.59000000000010,3807.67,664.85,41.11000000000010,71.62,3859.04,569.89,25.09999999999990,59.85000000000000,4084.75,567.04,30.68000000000030,56.66000000000010,4263.28,618.49,33.14000000000030,66.87,3958.27,527.04,21.90000000000010,39.71000000000000,3677.39,517.36,17.559999999999900,34.040000000000000,3573.27,815.83,74.25,125.57000000000000,4246.79,685.76,46.73000000000050,100.20000000000000,3680.85,675.34,46.34000000000020,81.08999999999990,4309.35,621.84,39.8799999999992,75.93999999999990,3616.96,560.15,29.44000000000010,58.60000000000000,2578.85,707.67,53.93000000000030,98.47000000000000,3155.35,519.0,27.95000000000030,48.59000000000000,3468.33,498.81,20.43000000000030,36.53000000000000,3845.9,538.91,22.73999999999980,49.06000000000010,2782.3,534.03,26.759999999999800,42.24000000000000,3603.86,808.6,26.61999999999990,23.809999999999900,4039.51,574.39,24.86999999999990,48.84000000000000,4384.68,549.28,19.25999999999930,42.80000000000010 -401,3345.55,668.97,34.19999999999980,75.81999999999990,3571.65,545.92,22.790000000000000,49.60000000000000,4366.74,681.67,59.5,85.5,4107.4,731.73,43.09000000000020,96.59000000000010,3805.82,665.25,41.12999999999970,71.75,3857.99,569.9,25.100000000000400,59.85000000000000,4084.48,567.31,30.67999999999980,56.66000000000010,4263.28,618.49,32.74000000000070,66.67000000000000,3957.77,527.06,21.90000000000010,39.71000000000000,3677.59,517.39,17.559999999999900,34.040000000000000,3574.11,814.67,74.25,125.57000000000000,4247.07,685.79,46.720000000000300,100.20000000000000,3679.77,675.62,46.34000000000020,81.08000000000000,4311.15,622.63,39.88000000000010,75.93000000000000,3616.83,560.76,29.44000000000010,58.60000000000000,2582.16,707.23,53.84000000000020,98.38,3154.96,518.89,27.94999999999980,48.59000000000000,3468.64,498.79,20.43000000000030,36.53000000000000,3845.99,538.94,22.74000000000020,49.059999999999900,2782.33,534.03,26.76000000000020,42.24000000000000,3604.39,807.97,26.620000000000300,23.809999999999900,4040.02,574.65,24.92000000000010,48.90000000000000,4384.77,549.28,19.25999999999930,42.79000000000010 -402,3344.14,669.38,34.340000000000100,75.94000000000010,3571.6,546.1,22.800000000000200,49.610000000000000,4365.23,681.27,59.5,85.49000000000000,4104.98,731.47,43.09000000000020,96.58999999999990,3803.97,665.65,41.14000000000030,71.87,3856.94,569.92,25.09999999999990,59.85000000000000,4084.21,567.58,30.67000000000010,56.65000000000000,4263.28,618.49,32.350000000000400,66.47000000000000,3957.27,527.08,21.90000000000010,39.70999999999990,3677.79,517.42,17.559999999999900,34.04000000000010,3574.95,813.51,74.25,125.57000000000000,4247.34,685.83,46.720000000000300,100.20000000000000,3678.69,675.9,46.34000000000020,81.08000000000000,4312.94,623.41,39.89000000000030,75.94000000000010,3616.7,561.37,29.44000000000010,58.60000000000000,2585.47,706.78,53.75,98.30000000000010,3154.57,518.77,27.94000000000010,48.59000000000000,3468.95,498.76,20.44000000000010,36.54000000000000,3846.08,538.96,22.74000000000020,49.069999999999900,2782.35,534.03,26.76000000000020,42.24000000000000,3604.92,807.34,26.61999999999990,23.809999999999900,4040.52,574.91,24.99000000000020,48.97000000000000,4384.86,549.27,19.26000000000020,42.80000000000010 -403,3342.74,669.79,34.470000000000300,76.06000000000010,3571.56,546.28,22.790000000000000,49.610000000000000,4363.72,680.86,59.5,85.49000000000000,4102.55,731.21,43.099999999999500,96.58999999999990,3802.12,666.05,41.16000000000030,72.0,3855.9,569.93,25.09999999999990,59.85000000000000,4083.94,567.85,30.66999999999960,56.65000000000000,4263.28,618.49,31.96000000000000,66.28000000000000,3956.77,527.1,21.90000000000010,39.70999999999990,3677.99,517.46,17.5600000000004,34.040000000000000,3575.78,812.34,74.25,125.57000000000000,4247.62,685.86,46.720000000000300,100.20000000000000,3677.61,676.18,46.33999999999970,81.08000000000000,4314.74,624.19,39.89000000000030,75.93999999999990,3616.57,561.98,29.44000000000010,58.60000000000000,2588.78,706.33,53.66999999999960,98.21999999999990,3154.17,518.66,27.94999999999980,48.59000000000000,3469.27,498.74,20.42999999999980,36.53000000000000,3846.18,538.99,22.73000000000000,49.069999999999900,2782.35,534.03,26.76000000000020,42.24000000000000,3605.45,806.71,26.620000000000300,23.809999999999900,4041.02,575.17,25.059999999999900,49.030000000000100,4384.95,549.26,19.26000000000020,42.80000000000000 -404,3341.33,670.21,34.61000000000010,76.17000000000000,3571.51,546.47,22.799999999999700,49.610000000000000,4362.22,680.45,59.5,85.49000000000000,4100.13,730.94,43.09000000000020,96.59999999999990,3800.27,666.45,41.17999999999980,72.12,3854.85,569.94,25.09999999999990,59.84999999999990,4083.66,568.11,30.68000000000030,56.66000000000000,4263.28,618.49,31.57000000000060,66.08000000000000,3956.26,527.12,21.90999999999990,39.71000000000000,3678.19,517.49,17.549999999999700,34.040000000000000,3576.62,811.18,74.25,125.57000000000000,4247.89,685.89,46.71999999999940,100.20000000000000,3676.53,676.46,46.33999999999970,81.07999999999990,4316.54,624.98,39.88000000000010,75.93000000000000,3616.45,562.59,29.43000000000030,58.60000000000000,2592.08,705.89,53.59000000000020,98.12,3153.78,518.55,27.94999999999980,48.58000000000000,3469.58,498.72,20.43000000000030,36.53000000000000,3846.27,539.02,22.73000000000000,49.07000000000010,2782.35,534.03,26.76000000000020,42.24000000000000,3605.97,806.08,26.620000000000300,23.809999999999900,4041.53,575.43,25.10999999999970,49.09000000000000,4385.04,549.26,19.26000000000020,42.79000000000000 -405,3339.92,670.62,34.75,76.29000000000000,3571.47,546.65,22.79000000000040,49.610000000000000,4360.71,680.04,59.5,85.49000000000000,4097.71,730.68,43.09000000000020,96.59000000000010,3798.42,666.86,41.19999999999980,72.24000000000000,3853.8,569.96,25.09999999999990,59.84999999999990,4083.39,568.38,30.67999999999980,56.66000000000000,4263.28,618.49,31.17000000000010,65.88,3955.76,527.14,21.90999999999990,39.71000000000000,3678.39,517.52,17.550000000000200,34.040000000000000,3577.45,810.02,74.25,125.57000000000000,4248.16,685.93,46.73000000000050,100.20000000000000,3675.45,676.74,46.34000000000020,81.08000000000000,4318.34,625.76,39.88000000000010,75.94000000000010,3615.58,562.88,29.44000000000010,58.60000000000000,2595.39,705.44,53.5,98.04000000000000,3153.38,518.43,27.94999999999980,48.59000000000000,3469.89,498.69,20.43000000000030,36.53000000000000,3846.36,539.05,22.73000000000000,49.06000000000010,2782.35,534.03,26.76000000000020,42.24000000000000,3606.5,805.45,26.61999999999990,23.809999999999900,4042.03,575.69,25.17999999999980,49.15000000000000,4385.13,549.25,19.26000000000020,42.80000000000000 -406,3338.51,671.03,34.88999999999990,76.41000000000010,3571.42,546.84,22.790000000000000,49.610000000000000,4359.2,679.63,59.5,85.49000000000000,4095.28,730.42,43.09999999999990,96.59000000000010,3796.56,667.26,41.220000000000300,72.37,3852.75,569.97,25.09999999999990,59.85000000000000,4083.12,568.65,30.67000000000010,56.65000000000000,4263.28,618.49,30.78000000000070,65.68999999999990,3955.26,527.16,21.90999999999990,39.71000000000000,3678.58,517.55,17.559999999999900,34.04000000000010,3578.29,808.86,74.25,125.57000000000000,4248.44,685.96,46.720000000000300,100.20000000000000,3674.37,677.01,46.34000000000020,81.09000000000000,4320.14,626.54,39.88000000000010,75.94000000000010,3614.71,563.18,29.44000000000010,58.60000000000000,2598.7,705.0,53.41000000000030,97.95000000000010,3152.99,518.32,27.95000000000030,48.58999999999990,3470.21,498.67,20.42999999999980,36.53000000000000,3846.45,539.07,22.73000000000000,49.069999999999900,2782.35,534.03,26.76000000000020,42.24000000000000,3607.03,804.82,26.61999999999990,23.809999999999900,4042.53,575.95,25.25,49.20999999999990,4385.22,549.24,19.25999999999930,42.80000000000000 -407,3337.11,671.44,35.02000000000000,76.53000000000000,3571.38,547.02,22.790000000000000,49.610000000000000,4357.7,679.22,59.5,85.49000000000000,4092.86,730.16,43.08999999999970,96.59000000000010,3794.71,667.66,41.23999999999980,72.49000000000000,3851.71,569.99,25.09999999999990,59.85000000000000,4082.84,568.92,30.68000000000030,56.65000000000010,4263.28,618.49,30.390000000000300,65.49000000000000,3954.76,527.18,21.90999999999990,39.71000000000000,3678.78,517.58,17.559999999999900,34.040000000000000,3579.12,807.7,74.26000000000020,125.57000000000000,4248.71,686.0,46.720000000000300,100.20000000000000,3673.29,677.29,46.34000000000020,81.09000000000000,4321.94,627.33,39.88000000000010,75.93000000000000,3613.84,563.47,29.44000000000010,58.60000000000000,2602.0,704.55,53.32999999999990,97.87,3152.9,518.47,27.94999999999980,48.58999999999990,3470.56,498.67,20.42999999999980,36.53000000000000,3846.54,539.1,22.73000000000000,49.069999999999900,2782.36,534.03,26.759999999999800,42.24000000000000,3607.56,804.19,26.61999999999990,23.809999999999900,4043.04,576.2,25.300000000000200,49.29000000000000,4385.31,549.24,19.25999999999930,42.80000000000000 -408,3335.7,671.86,35.15000000000010,76.64000000000000,3571.33,547.21,22.790000000000000,49.59999999999990,4356.19,678.81,59.5,85.5,4090.44,729.89,43.08999999999970,96.59000000000010,3792.86,668.06,41.25999999999980,72.62,3850.66,570.0,25.100000000000400,59.85000000000000,4082.57,569.18,30.67999999999980,56.66000000000010,4263.28,618.49,29.99000000000070,65.30000000000000,3954.26,527.2,21.90999999999990,39.70999999999990,3678.98,517.62,17.559999999999900,34.040000000000000,3579.96,806.54,74.25,125.57000000000000,4248.98,686.03,46.73000000000050,100.20000000000000,3672.21,677.57,46.34000000000020,81.08999999999990,4323.74,628.11,39.88000000000010,75.93999999999990,3612.98,563.77,29.44000000000010,58.60000000000000,2605.31,704.1,53.24000000000020,97.79000000000000,3152.81,518.63,27.95000000000030,48.58000000000000,3470.91,498.67,20.43000000000030,36.53000000000000,3846.63,539.13,22.73000000000000,49.07000000000010,2782.36,534.03,26.759999999999800,42.24000000000000,3608.08,803.57,26.61999999999990,23.800000000000000,4043.54,576.46,25.36999999999990,49.34999999999990,4385.4,549.23,19.26000000000020,42.80000000000000 -409,3334.29,672.27,35.290000000000000,76.76000000000000,3571.29,547.39,22.790000000000000,49.610000000000000,4354.68,678.4,59.5,85.5,4088.01,729.63,43.099999999999500,96.59000000000010,3791.01,668.46,41.27000000000000,72.74000000000000,3849.61,570.01,25.09999999999990,59.85000000000000,4082.3,569.45,30.67000000000010,56.66000000000000,4263.28,618.49,29.600000000000400,65.10000000000000,3953.76,527.22,21.89999999999960,39.70999999999990,3679.18,517.65,17.559999999999900,34.04000000000010,3580.8,805.38,74.25,125.57000000000000,4249.26,686.06,46.71999999999940,100.20000000000000,3671.13,677.85,46.33999999999970,81.09000000000000,4326.47,629.05,39.88000000000010,75.94000000000010,3612.11,564.06,29.44000000000010,58.60000000000000,2608.62,703.66,53.15000000000010,97.69000000000000,3152.72,518.78,27.95000000000030,48.59000000000000,3471.26,498.67,20.42999999999980,36.53000000000000,3846.72,539.16,22.73000000000000,49.06000000000010,2782.36,534.03,26.759999999999800,42.24000000000000,3608.61,802.94,26.61999999999990,23.800000000000000,4044.04,576.72,25.44000000000010,49.41000000000000,4385.49,549.23,19.26000000000020,42.79000000000000 -410,3334.9,672.16,35.42999999999980,76.88,3571.24,547.58,22.79000000000040,49.59999999999990,4353.24,678.82,59.5,85.5,4085.59,729.37,43.09000000000020,96.59000000000010,3789.16,668.86,41.29000000000000,72.87,3848.56,570.03,25.09999999999990,59.85000000000000,4082.03,569.72,30.66999999999960,56.65000000000000,4263.28,618.49,29.21000000000000,64.90000000000000,3953.26,527.23,21.89999999999960,39.72000000000000,3679.38,517.68,17.549999999999700,34.04000000000010,3581.63,804.22,74.25,125.57000000000000,4249.53,686.1,46.720000000000300,100.20000000000000,3670.05,678.13,46.33999999999970,81.09000000000000,4329.21,629.99,39.88000000000010,75.93999999999990,3611.24,564.35,29.44000000000010,58.60000000000000,2611.93,703.21,53.059999999999900,97.61,3152.63,518.93,27.94999999999980,48.59000000000000,3471.61,498.67,20.42999999999980,36.53000000000000,3846.81,539.19,22.73000000000000,49.059999999999900,2782.36,534.03,26.759999999999800,42.24000000000000,3609.14,802.31,26.620000000000300,23.800000000000100,4044.55,576.98,25.48999999999980,49.47000000000000,4385.58,549.22,19.26000000000020,42.80000000000000 -411,3335.5,672.06,35.570000000000200,76.99000000000000,3571.19,547.76,22.799999999999700,49.610000000000000,4351.79,679.24,59.5,85.5,4083.17,729.11,43.09000000000020,96.59000000000010,3787.31,669.26,41.309999999999900,73.0,3847.52,570.04,25.09999999999990,59.85000000000000,4081.75,569.99,30.68000000000030,56.65000000000000,4263.28,618.49,28.8100000000004,64.71000000000000,3952.76,527.25,21.89999999999960,39.72000000000000,3679.58,517.71,17.550000000000200,34.040000000000000,3582.47,803.06,74.25,125.57000000000000,4249.81,686.13,46.71999999999940,100.20000000000000,3668.97,678.41,46.34000000000020,81.09000000000000,4331.94,630.93,39.88000000000010,75.94000000000010,3610.38,564.65,29.44000000000010,58.60000000000000,2615.23,702.76,52.98000000000000,97.53000000000000,3152.54,519.09,27.94999999999980,48.58999999999990,3471.96,498.67,20.42999999999980,36.53000000000000,3846.9,539.21,22.73000000000000,49.069999999999900,2782.36,534.02,26.759999999999800,42.24000000000000,3609.67,801.68,26.61999999999990,23.800000000000100,4045.05,577.24,25.559999999999900,49.53000000000000,4385.67,549.21,19.26000000000020,42.80000000000000 -412,3336.11,671.95,35.69999999999980,77.1099999999999,3571.15,547.95,22.790000000000000,49.59999999999990,4350.34,679.66,59.5,85.49000000000000,4080.74,728.84,43.10000000000040,96.58999999999990,3785.46,669.67,41.32999999999990,73.11000000000000,3846.47,570.06,25.100000000000400,59.85000000000000,4081.48,570.25,30.66999999999960,56.66000000000000,4263.28,618.49,28.42000000000010,64.51000000000000,3952.26,527.27,21.89999999999960,39.72000000000000,3679.77,517.74,17.559999999999900,34.040000000000000,3583.3,801.9,74.25,125.57000000000000,4250.08,686.17,46.720000000000300,100.20000000000000,3667.89,678.69,46.34000000000020,81.08999999999990,4334.67,631.87,39.89000000000030,75.93999999999990,3609.51,564.94,29.4399999999996,58.59999999999990,2618.54,702.32,52.88999999999990,97.43999999999990,3152.45,519.24,27.95000000000030,48.59000000000000,3472.31,498.67,20.44000000000010,36.53000000000000,3846.99,539.24,22.73000000000000,49.069999999999900,2782.36,534.02,26.759999999999800,42.24000000000000,3610.19,801.05,26.61999999999990,23.800000000000100,4045.55,577.5,25.62999999999970,49.59000000000000,4385.76,549.21,19.26000000000020,42.79000000000000 -413,3336.71,671.84,35.840000000000100,77.23000000000000,3571.1,548.13,22.800000000000200,49.610000000000000,4348.9,680.08,59.5,85.49000000000000,4078.32,728.58,43.08999999999970,96.58999999999990,3783.61,670.07,41.33999999999970,73.2399999999999,3845.42,570.07,25.09999999999990,59.84999999999990,4081.21,570.52,30.67000000000010,56.66000000000000,4252.81,617.95,28.919999999999200,64.82999999999990,3951.76,527.29,21.89999999999960,39.72000000000000,3679.97,517.78,17.5600000000004,34.04000000000010,3584.14,800.73,74.25,125.58000000000000,4250.35,686.2,46.72999999999960,100.20000000000000,3666.81,678.97,46.34000000000020,81.08999999999990,4337.41,632.82,39.88000000000010,75.93000000000000,3608.64,565.24,29.44000000000010,58.60000000000000,2621.85,701.87,52.80000000000020,97.35000000000000,3152.36,519.4,27.94999999999980,48.58000000000000,3472.66,498.67,20.44000000000010,36.53000000000000,3847.08,539.27,22.74000000000020,49.07000000000010,2782.36,534.02,26.759999999999800,42.24000000000000,3610.72,800.42,26.620000000000300,23.800000000000100,4046.06,577.76,25.67999999999980,49.66000000000000,4385.85,549.2,19.25999999999930,42.80000000000000 -414,3337.31,671.73,35.98000000000000,77.35000000000000,3571.06,548.31,22.790000000000000,49.610000000000000,4347.45,680.5,59.5,85.49000000000000,4075.9,728.32,43.08999999999970,96.58999999999990,3783.52,670.28,41.36000000000010,73.37,3844.38,570.08,25.08999999999970,59.84999999999990,4080.93,570.79,30.67999999999980,56.65000000000010,4253.22,618.16,29.40999999999990,65.15000000000000,3951.25,527.31,21.90999999999990,39.72000000000000,3680.17,517.81,17.559999999999900,34.04000000000010,3584.98,799.57,74.25,125.57000000000000,4250.63,686.24,46.720000000000300,100.20000000000000,3665.73,679.25,46.34000000000020,81.09000000000000,4340.14,633.76,39.88000000000010,75.93000000000010,3607.77,565.53,29.44000000000010,58.60000000000000,2625.16,701.43,52.71000000000000,97.2600000000001,3152.27,519.55,27.94999999999980,48.59000000000000,3473.02,498.67,20.42999999999980,36.53000000000000,3847.17,539.3,22.73999999999980,49.06000000000010,2782.36,534.02,26.759999999999800,42.24000000000000,3611.25,799.79,26.61999999999990,23.800000000000100,4046.56,578.02,25.75,49.72000000000000,4385.94,549.19,19.26000000000020,42.80000000000000 -415,3337.92,671.63,36.11000000000010,77.46000000000000,3571.01,548.5,22.799999999999700,49.610000000000000,4346.01,680.92,59.5,85.49000000000000,4073.47,728.05,43.09999999999990,96.60000000000000,3783.44,670.5,41.36999999999990,73.49000000000000,3843.33,570.1,25.09999999999990,59.85000000000000,4080.66,571.05,30.68000000000030,56.66000000000010,4253.62,618.37,29.90999999999990,65.47000000000000,3950.75,527.33,21.90999999999990,39.70999999999990,3680.37,517.84,17.559999999999900,34.040000000000000,3585.81,798.41,74.25,125.57000000000000,4250.9,686.27,46.720000000000300,100.20000000000000,3664.65,679.53,46.33999999999970,81.09000000000000,4342.88,634.7,39.88000000000010,75.93999999999990,3606.91,565.82,29.44000000000010,58.59999999999990,2628.46,700.98,52.63000000000010,97.18000000000000,3152.18,519.7,27.95000000000030,48.58999999999990,3473.37,498.67,20.43000000000030,36.53000000000000,3847.26,539.32,22.73999999999980,49.069999999999900,2782.36,534.02,26.759999999999800,42.24000000000000,3611.77,799.16,26.63000000000010,23.81000000000010,4047.06,578.28,25.820000000000200,49.78000000000000,4386.03,549.19,19.26000000000020,42.80000000000000 -416,3338.52,671.52,36.25,77.58000000000000,3570.97,548.68,22.79000000000040,49.610000000000000,4344.56,681.34,59.5,85.49000000000000,4071.05,727.79,43.09000000000020,96.59000000000010,3783.35,670.72,41.40000000000010,73.61000000000000,3842.28,570.11,25.09999999999990,59.85000000000000,4080.39,571.32,30.670000000000500,56.66000000000000,4254.03,618.59,30.400000000000500,65.77000000000000,3950.25,527.35,21.90999999999990,39.70999999999990,3680.57,517.87,17.549999999999700,34.040000000000000,3586.65,797.25,74.25,125.57000000000000,4251.18,686.3,46.71999999999940,100.20000000000000,3663.57,679.81,46.33999999999970,81.09000000000000,4345.61,635.64,39.88000000000010,75.94000000000010,3606.04,566.12,29.44000000000010,58.60000000000000,2631.77,700.53,52.54000000000000,97.10000000000000,3152.09,519.86,27.94999999999980,48.59000000000000,3473.72,498.67,20.43000000000030,36.53000000000000,3847.35,539.35,22.74000000000020,49.069999999999900,2782.37,534.02,26.76000000000020,42.24000000000000,3612.3,798.53,26.61999999999990,23.81000000000010,4047.57,578.54,25.86999999999990,49.84000000000000,4386.12,549.18,19.26000000000020,42.80000000000010 -417,3339.13,671.41,36.38999999999990,77.70000000000010,3570.92,548.87,22.790000000000000,49.610000000000000,4343.12,681.76,59.5,85.49000000000000,4068.63,727.53,43.09000000000020,96.59000000000010,3783.26,670.94,41.41999999999960,73.7399999999999,3841.23,570.13,25.09999999999990,59.85000000000000,4080.11,571.59,30.67999999999980,56.65000000000000,4254.43,618.8,30.89999999999960,66.09000000000000,3949.75,527.37,21.90999999999990,39.71000000000000,3680.77,517.9,17.550000000000200,34.05000000000010,3587.48,796.09,74.25,125.57000000000000,4251.47,686.32,46.72999999999960,100.20000000000000,3662.49,680.09,46.34000000000020,81.07999999999990,4348.34,636.58,39.88999999999940,75.93999999999990,3605.17,566.41,29.44000000000010,58.60000000000000,2635.08,700.09,52.45000000000030,97.0,3152.0,520.01,27.94999999999980,48.59000000000000,3474.07,498.67,20.42999999999980,36.53000000000000,3847.44,539.38,22.73999999999980,49.07000000000010,2782.37,534.02,26.76000000000020,42.24000000000000,3612.83,797.9,26.61999999999990,23.81000000000010,4048.07,578.79,25.94000000000010,49.91000000000010,4386.22,549.18,19.25,42.79000000000010 -418,3339.73,671.31,36.5300000000002,77.81000000000010,3570.88,549.05,22.790000000000000,49.610000000000000,4341.67,682.18,59.5,85.49000000000000,4066.2,727.27,43.10000000000040,96.59000000000010,3783.17,671.16,41.440000000000100,73.86000000000000,3840.19,570.14,25.090000000000100,59.85000000000000,4079.84,571.86,30.68000000000030,56.65000000000000,4254.83,619.01,31.39999999999960,66.41000000000000,3949.25,527.39,21.90999999999990,39.71000000000000,3680.96,517.94,17.559999999999900,34.040000000000000,3588.32,794.93,74.25,125.57000000000000,4251.77,686.33,46.71999999999940,100.20000000000000,3661.41,680.37,46.34000000000020,81.08000000000000,4351.08,637.52,39.88000000000010,75.94000000000010,3604.31,566.7,29.44000000000010,58.59999999999990,2638.38,699.64,52.38000000000010,96.92000000000000,3151.91,520.17,27.95000000000030,48.58000000000000,3474.42,498.67,20.42999999999980,36.53000000000000,3847.54,539.41,22.73000000000000,49.06000000000010,2782.37,534.02,26.76000000000020,42.24000000000000,3613.36,797.27,26.61999999999990,23.81000000000010,4048.57,579.05,26.009999999999800,49.98000000000000,4386.31,549.17,19.25,42.80000000000010 -419,3340.34,671.2,36.659999999999900,77.93000000000000,3570.83,549.24,22.790000000000000,49.60000000000000,4340.23,682.6,59.5,85.49000000000000,4063.78,727.0,43.08999999999970,96.59000000000010,3783.09,671.38,41.44999999999980,73.98000000000000,3839.14,570.15,25.09999999999990,59.85000000000000,4079.57,572.12,30.66999999999960,56.66000000000000,4255.24,619.22,31.890000000000300,66.73000000000000,3948.75,527.41,21.90999999999990,39.71000000000000,3681.16,517.97,17.559999999999900,34.040000000000000,3589.15,793.77,74.25999999999980,125.57000000000000,4252.07,686.34,46.720000000000300,100.20000000000000,3660.33,680.65,46.34000000000020,81.08000000000000,4353.81,638.46,39.8799999999992,75.93999999999990,3603.44,567.0,29.44000000000010,58.60000000000000,2641.69,699.19,52.29000000000000,96.83999999999990,3151.82,520.32,27.94999999999980,48.58999999999990,3474.77,498.67,20.44000000000010,36.53000000000000,3847.63,539.44,22.73000000000000,49.059999999999900,2782.37,534.02,26.76000000000020,42.24000000000000,3613.88,796.64,26.63000000000010,23.81000000000010,4049.08,579.31,26.070000000000200,50.04000000000010,4386.4,549.16,19.25,42.80000000000010 -420,3340.94,671.09,36.79999999999970,78.05000000000000,3570.79,549.42,22.790000000000000,49.610000000000000,4338.78,683.01,59.5,85.5,4063.23,726.94,43.29000000000040,96.66000000000000,3783.0,671.59,41.4699999999998,74.12,3838.09,570.17,25.09999999999990,59.85000000000000,4079.3,572.39,30.67000000000010,56.66000000000000,4255.64,619.43,32.38000000000010,67.05000000000010,3948.25,527.43,21.90000000000010,39.71000000000000,3681.36,518.0,17.559999999999900,34.040000000000000,3589.99,792.61,74.25,125.57000000000000,4252.37,686.35,46.720000000000300,100.20000000000000,3659.25,680.93,46.34000000000020,81.08000000000000,4356.55,639.41,39.88000000000010,75.93000000000010,3602.57,567.29,29.44000000000010,58.60000000000000,2645.0,698.75,52.19999999999980,96.75,3151.73,520.47,27.94999999999980,48.58999999999990,3475.12,498.67,20.44000000000010,36.53000000000000,3847.72,539.46,22.73000000000000,49.069999999999900,2782.37,534.02,26.76000000000020,42.24000000000000,3614.49,795.92,26.620000000000300,23.81000000000010,4049.58,579.57,26.13000000000010,50.09999999999990,4386.49,549.16,19.26000000000020,42.79000000000010 -421,3341.55,670.98,36.92999999999980,78.18000000000000,3570.74,549.61,22.79000000000040,49.60000000000000,4337.33,683.43,59.5,85.5,4062.69,726.88,43.48000000000000,96.73000000000000,3782.91,671.81,41.49000000000020,74.24000000000000,3837.04,570.18,25.09999999999990,59.85000000000000,4079.02,572.66,30.67999999999980,56.65000000000000,4256.05,619.65,32.86999999999990,67.35000000000000,3947.75,527.45,21.90000000000010,39.70999999999990,3681.56,518.03,17.559999999999900,34.04000000000010,3590.83,791.45,74.25,125.57000000000000,4252.66,686.36,46.720000000000300,100.20000000000000,3658.17,681.21,46.34000000000020,81.07999999999990,4359.28,640.35,39.88000000000010,75.93000000000000,3601.7,567.59,29.44000000000010,58.60000000000000,2648.31,698.3,52.11000000000010,96.66000000000010,3151.64,520.63,27.95000000000030,48.59000000000000,3475.48,498.67,20.42999999999980,36.53000000000000,3847.81,539.49,22.73000000000000,49.069999999999900,2782.37,534.02,26.76000000000020,42.24000000000000,3615.09,795.21,26.61999999999990,23.800000000000000,4050.08,579.83,26.20000000000030,50.16000000000000,4386.58,549.15,19.26000000000020,42.80000000000010 -422,3342.15,670.88,37.06999999999970,78.29000000000000,3570.69,549.79,22.799999999999700,49.610000000000000,4335.89,683.85,59.5,85.5,4062.14,726.81,43.67999999999980,96.80000000000010,3782.82,672.03,41.50999999999980,74.36000000000000,3836.0,570.2,25.090000000000100,59.84999999999990,4078.75,572.93,30.68000000000030,56.65000000000010,4256.45,619.86,33.36999999999990,67.67000000000000,3947.25,527.47,21.90000000000010,39.70999999999990,3681.76,518.07,17.549999999999700,34.040000000000000,3591.66,790.29,74.25,125.57000000000000,4252.96,686.37,46.720000000000300,100.20000000000000,3655.24,683.95,47.40000000000010,82.34999999999990,4362.01,641.29,39.88000000000010,75.94000000000010,3600.84,567.88,29.44000000000010,58.60000000000000,2651.61,697.86,52.02999999999980,96.56999999999990,3151.55,520.78,27.94999999999980,48.59000000000000,3475.83,498.67,20.43000000000030,36.53000000000000,3847.9,539.52,22.73000000000000,49.07000000000010,2782.37,534.02,26.76000000000020,42.24000000000000,3615.69,794.49,26.61999999999990,23.800000000000000,4050.59,580.09,26.259999999999800,50.21999999999990,4386.67,549.14,19.26000000000020,42.80000000000010 -423,3342.76,670.77,37.20999999999960,78.41000000000000,3570.65,549.98,22.790000000000000,49.60000000000000,4334.44,684.27,59.5,85.49000000000000,4061.59,726.75,43.88000000000010,96.87,3782.74,672.25,41.52000000000040,74.48000000000000,3834.95,570.21,25.100000000000400,59.84999999999990,4078.69,573.19,30.66999999999960,56.66000000000000,4256.85,620.07,33.86999999999990,67.9899999999999,3946.75,527.49,21.90000000000010,39.71000000000000,3681.95,518.1,17.5600000000004,34.040000000000000,3592.5,789.12,74.25,125.58000000000000,4253.26,686.39,46.71999999999940,100.20000000000000,3652.31,686.7,48.470000000000300,83.6099999999999,4364.75,642.23,39.88000000000010,75.93999999999990,3599.97,568.17,29.44000000000010,58.60000000000000,2654.92,697.41,51.940000000000100,96.49,3151.46,520.94,27.94999999999980,48.57999999999990,3476.18,498.67,20.43000000000030,36.53000000000000,3847.99,539.55,22.73000000000000,49.06000000000010,2782.37,534.02,26.76000000000020,42.24000000000000,3616.29,793.77,26.63000000000010,23.81000000000010,4051.09,580.35,26.31999999999970,50.28000000000000,4386.76,549.14,19.26000000000020,42.79000000000000 -424,3343.36,670.66,37.34999999999990,78.53000000000010,3570.6,550.16,22.800000000000200,49.610000000000000,4333.0,684.69,59.5,85.4899999999999,4061.04,726.69,44.09000000000020,96.93999999999990,3782.65,672.47,41.54000000000000,74.61000000000000,3833.9,570.22,25.09999999999990,59.85000000000000,4078.63,573.46,30.67000000000010,56.66000000000000,4257.26,620.28,34.35999999999970,68.31000000000010,3946.25,527.51,21.90000000000010,39.71000000000000,3682.15,518.13,17.559999999999900,34.040000000000000,3593.33,787.96,74.26000000000020,125.57000000000000,4253.55,686.4,46.72999999999960,100.20000000000000,3649.38,689.44,49.54000000000000,84.86999999999990,4367.48,643.17,39.88000000000010,75.94000000000010,3599.1,568.47,29.44000000000010,58.60000000000000,2658.23,696.96,51.84999999999990,96.41000000000000,3151.37,521.09,27.95000000000030,48.58999999999990,3476.53,498.67,20.42999999999980,36.53000000000000,3848.08,539.57,22.73000000000000,49.069999999999900,2782.37,534.02,26.76000000000020,42.24000000000000,3616.9,793.05,26.61999999999990,23.81000000000010,4051.59,580.61,26.38999999999990,50.35000000000000,4386.85,549.13,19.25999999999930,42.80000000000000 -425,3343.97,670.56,37.48000000000000,78.6400000000001,3570.56,550.34,22.790000000000000,49.610000000000000,4331.55,685.11,59.5,85.49000000000000,4060.5,726.62,44.27999999999980,97.01,3782.56,672.69,41.559999999999900,74.7299999999999,3834.64,570.56,25.09999999999990,59.85000000000000,4078.56,573.73,30.67999999999980,56.65000000000000,4257.66,620.49,34.86000000000060,68.63,3945.74,527.53,21.91000000000030,39.71000000000000,3682.35,518.16,17.559999999999900,34.04000000000010,3594.17,786.8,74.25,125.57000000000000,4253.85,686.41,46.71999999999940,100.20000000000000,3646.45,692.19,50.61000000000010,86.13,4370.21,644.11,39.89000000000030,75.93999999999990,3598.24,568.76,29.44000000000010,58.60000000000000,2661.54,696.52,51.76000000000020,96.31000000000010,3151.28,521.24,27.94999999999980,48.59000000000000,3476.88,498.67,20.42999999999980,36.53000000000000,3848.17,539.6,22.73000000000000,49.069999999999900,2782.38,534.02,26.759999999999800,42.24000000000000,3617.5,792.34,26.61999999999990,23.800000000000000,4052.1,580.87,26.45000000000030,50.41000000000000,4386.94,549.12,19.26000000000020,42.80000000000000 -426,3344.57,670.45,37.61999999999990,78.76000000000000,3570.51,550.53,22.799999999999700,49.610000000000000,4330.11,685.53,59.5,85.49000000000000,4059.95,726.56,44.48000000000050,97.08000000000000,3782.48,672.9,41.57000000000020,74.86000000000000,3835.38,570.9,25.08999999999970,59.85000000000000,4078.5,574.0,30.68000000000030,56.65000000000000,4258.07,620.71,35.350000000000400,68.93999999999990,3945.24,527.55,21.91000000000030,39.71000000000000,3682.55,518.19,17.559999999999900,34.040000000000000,3597.2,786.7,74.25,125.57000000000000,4254.15,686.42,46.720000000000300,100.20000000000000,3643.52,694.94,51.67999999999980,87.39000000000000,4372.95,645.05,39.88000000000010,75.94000000000010,3597.37,569.05,29.44000000000010,58.60000000000000,2664.84,696.07,51.67999999999980,96.2299999999999,3151.19,521.4,27.94999999999980,48.59000000000000,3477.23,498.67,20.42999999999980,36.53000000000000,3848.26,539.63,22.729999999999600,49.07000000000010,2782.38,534.01,26.759999999999800,42.24000000000000,3618.1,791.62,26.61999999999990,23.800000000000000,4052.6,581.13,26.51000000000020,50.47000000000000,4387.03,549.12,19.26000000000020,42.80000000000000 -427,3345.18,670.34,37.75,78.88,3570.47,550.71,22.79000000000040,49.610000000000000,4328.66,685.95,59.5,85.49000000000000,4059.4,726.5,44.67999999999980,97.15000000000000,3782.39,673.12,41.59999999999990,74.98000000000000,3836.11,571.24,25.09999999999990,59.85000000000000,4078.44,574.26,30.66999999999960,56.66000000000000,4258.47,620.92,35.840000000000100,69.25,3944.74,527.57,21.91000000000030,39.70999999999990,3682.75,518.23,17.559999999999900,34.040000000000000,3600.24,786.59,74.25,125.57000000000000,4254.45,686.43,46.720000000000300,100.20000000000000,3641.39,694.17,52.74000000000020,88.65000000000010,4375.68,646.0,39.88000000000010,75.93000000000000,3596.5,569.35,29.44000000000010,58.60000000000000,2668.15,695.62,51.58999999999970,96.15000000000000,3151.1,521.55,27.95000000000030,48.59000000000000,3477.58,498.67,20.44000000000010,36.53000000000000,3848.35,539.66,22.73000000000000,49.06000000000010,2782.38,534.01,26.759999999999800,42.24000000000000,3618.7,790.9,26.620000000000300,23.81000000000010,4053.1,581.38,26.579999999999900,50.54000000000000,4387.12,549.11,19.26000000000020,42.80000000000000 -428,3345.78,670.23,37.88999999999990,79.0,3570.42,550.9,22.790000000000000,49.60000000000000,4327.22,686.37,59.5,85.49000000000000,4058.86,726.43,44.86999999999940,97.22000000000000,3782.3,673.34,41.61999999999990,75.11000000000000,3836.85,571.57,25.09999999999990,59.84999999999990,4078.38,574.53,30.67000000000010,56.65000000000000,4258.87,621.13,36.34000000000020,69.57000000000010,3944.24,527.59,21.91000000000030,39.70999999999990,3682.95,518.26,17.550000000000200,34.040000000000000,3603.27,786.49,74.25,125.57000000000000,4254.74,686.44,46.73000000000050,100.20000000000000,3639.26,693.41,53.809999999999900,89.91000000000010,4378.42,646.94,39.88000000000010,75.93000000000000,3595.63,569.64,29.44000000000010,58.60000000000000,2671.46,695.18,51.5,96.06000000000010,3151.01,521.71,27.94999999999980,48.57999999999990,3477.93,498.67,20.44000000000010,36.53000000000000,3848.44,539.69,22.73999999999980,49.059999999999900,2782.38,534.01,26.759999999999800,42.24000000000000,3621.87,790.92,26.63000000000010,23.800000000000100,4053.61,581.64,26.63999999999990,50.60000000000000,4387.21,549.11,19.26000000000020,42.79000000000000 -429,3346.39,670.13,38.02000000000000,79.11000000000000,3570.38,551.08,22.790000000000000,49.610000000000000,4325.77,686.79,59.5,85.49000000000000,4058.31,726.37,45.07000000000020,97.29000000000000,3782.21,673.56,41.63999999999990,75.23000000000000,3837.59,571.91,25.09999999999990,59.85000000000000,4078.31,574.8,30.67999999999980,56.65000000000010,4259.28,621.34,36.82999999999990,69.89000000000000,3943.74,527.61,21.91000000000030,39.71000000000000,3683.14,518.29,17.559999999999900,34.04000000000010,3606.3,786.39,74.25,125.57000000000000,4255.04,686.46,46.720000000000300,100.20000000000000,3637.13,692.64,54.86999999999990,91.18000000000010,4381.15,647.88,39.88000000000010,75.94000000000010,3594.77,569.94,29.44000000000010,58.59999999999990,2674.76,694.73,51.41999999999960,95.97000000000000,3150.92,521.86,27.94999999999980,48.59000000000000,3478.29,498.67,20.42999999999980,36.53000000000000,3848.53,539.71,22.73999999999980,49.069999999999900,2782.38,534.01,26.759999999999800,42.24000000000000,3625.05,790.93,26.61999999999990,23.81000000000010,4054.11,581.9,26.69999999999980,50.67000000000010,4387.3,549.1,19.26000000000020,42.80000000000000 -430,3346.83,670.41,38.159999999999900,79.23000000000000,3570.33,551.27,22.790000000000000,49.60000000000000,4324.32,687.21,59.5,85.49000000000000,4057.76,726.31,45.26999999999950,97.36,3782.13,673.78,41.65000000000010,75.35000000000000,3838.33,572.25,25.09999999999990,59.85000000000000,4078.25,575.06,30.68000000000030,56.66000000000010,4259.68,621.55,37.32999999999990,70.21000000000000,3943.24,527.63,21.90000000000010,39.71000000000000,3683.34,518.32,17.559999999999900,34.040000000000000,3609.34,786.28,74.25,125.57000000000000,4255.34,686.47,46.720000000000300,100.20000000000000,3635.0,691.88,55.940000000000100,92.43000000000000,4383.88,648.82,39.89000000000030,75.93999999999990,3593.9,570.23,29.44000000000010,58.60000000000000,2678.07,694.29,51.32999999999990,95.88,3150.83,522.01,27.95000000000030,48.59000000000000,3478.64,498.67,20.43000000000030,36.53000000000000,3848.62,539.74,22.74000000000020,49.069999999999900,2782.38,534.01,26.759999999999800,42.24000000000000,3628.22,790.95,26.620000000000300,23.809999999999900,4054.61,582.16,26.770000000000000,50.73000000000000,4387.39,549.09,19.25999999999930,42.80000000000000 -431,3347.27,670.69,38.309999999999900,79.33999999999990,3570.29,551.45,22.790000000000000,49.6099999999999,4322.88,687.62,59.5,85.5,4057.22,726.24,45.46000000000050,97.43000000000000,3782.04,674.0,41.67000000000010,75.48000000000000,3839.07,572.59,25.08999999999970,59.83999999999990,4078.19,575.33,30.66999999999960,56.66000000000000,4260.08,621.77,37.82999999999990,70.52000000000000,3942.74,527.65,21.90000000000010,39.71000000000000,3683.54,518.35,17.559999999999900,34.040000000000000,3612.37,786.18,74.25,125.57000000000000,4255.64,686.48,46.71999999999940,100.20000000000000,3632.86,691.11,57.00999999999980,93.69999999999990,4386.62,649.76,39.88000000000010,75.94000000000010,3593.03,570.52,29.4399999999996,58.60000000000000,2681.38,693.84,51.23999999999980,95.80000000000000,3150.74,522.17,27.95000000000030,48.59000000000000,3478.99,498.67,20.43000000000030,36.53000000000000,3848.71,539.77,22.73999999999980,49.07000000000010,2782.38,534.01,26.759999999999800,42.24000000000000,3631.39,790.97,26.620000000000300,23.800000000000000,4055.12,582.42,26.829999999999900,50.79000000000010,4387.48,549.09,19.26000000000020,42.79000000000000 -432,3347.72,670.97,38.440000000000100,79.45999999999990,3570.24,551.64,22.79000000000040,49.60000000000000,4321.43,688.04,59.5,85.5,4056.67,726.18,45.659999999999900,97.5,3781.95,674.21,41.690000000000100,75.61000000000000,3839.8,572.92,25.09999999999990,59.85000000000000,4078.13,575.6,30.67000000000010,56.65000000000000,4260.49,621.98,38.32000000000060,70.84000000000000,3942.24,527.67,21.90000000000010,39.71000000000000,3683.74,518.39,17.5600000000004,34.040000000000000,3615.4,786.07,74.25999999999980,125.57000000000000,4255.93,686.49,46.72999999999960,100.20000000000000,3630.73,690.35,58.07999999999990,94.94999999999990,4389.35,650.7,39.8799999999992,75.93999999999990,3592.17,570.82,29.44000000000010,58.59999999999990,2684.69,693.39,51.159999999999900,95.72000000000000,3150.65,522.32,27.94999999999980,48.58999999999990,3479.34,498.67,20.42999999999980,36.53000000000000,3848.8,539.8,22.73999999999980,49.06000000000010,2782.38,534.01,26.759999999999800,42.24000000000000,3634.56,790.98,26.61999999999990,23.809999999999900,4055.62,582.68,26.890000000000300,50.85000000000000,4387.57,549.08,19.26000000000020,42.80000000000000 -433,3348.16,671.25,38.57999999999990,79.58000000000000,3570.19,551.82,22.799999999999700,49.6099999999999,4319.99,688.46,59.5,85.5,4056.12,726.12,45.85999999999970,97.57000000000000,3781.87,674.43,41.70000000000030,75.73000000000000,3840.54,573.26,25.09999999999990,59.85000000000000,4078.06,575.87,30.67999999999980,56.65000000000000,4260.89,622.19,38.81999999999970,71.15000000000000,3941.74,527.69,21.90000000000010,39.70999999999990,3683.94,518.42,17.559999999999900,34.04000000000010,3618.44,785.97,74.25,125.57000000000000,4256.23,686.5,46.720000000000300,100.20000000000000,3628.6,689.58,59.15000000000010,96.21999999999990,4392.09,651.65,39.88000000000010,75.93000000000010,3591.3,571.11,29.4399999999996,58.60000000000000,2687.99,692.95,51.08000000000040,95.63,3150.56,522.48,27.95000000000030,48.57999999999990,3479.69,498.67,20.42999999999980,36.53000000000000,3849.18,539.82,22.74000000000020,49.069999999999900,2782.38,534.01,26.759999999999800,42.24000000000000,3637.73,791.0,26.61999999999990,23.809999999999900,4056.12,582.94,26.96000000000000,50.91000000000000,4387.66,549.07,19.26000000000020,42.80000000000000 -434,3348.61,671.52,38.71000000000000,79.71000000000000,3570.15,552.01,22.790000000000000,49.60000000000000,4318.54,688.88,59.5,85.49000000000000,4055.57,726.05,46.059999999999900,97.6400000000001,3781.78,674.65,41.7199999999998,75.85000000000000,3841.28,573.6,25.09999999999990,59.85000000000000,4078.0,576.13,30.68000000000030,56.66000000000000,4261.3,622.4,39.30000000000020,71.47000000000000,3941.24,527.71,21.90000000000010,39.70999999999990,3684.14,518.45,17.550000000000200,34.040000000000000,3621.47,785.86,74.25,125.57000000000000,4256.53,686.51,46.720000000000300,100.20000000000000,3628.24,689.41,59.15000000000010,96.22000000000000,4394.82,652.59,39.88000000000010,75.93000000000000,3590.43,571.41,29.44000000000010,58.60000000000000,2691.3,692.5,50.98999999999980,95.54000000000000,3150.47,522.63,27.95000000000030,48.59000000000000,3480.04,498.67,20.44000000000010,36.53000000000000,3849.56,539.85,22.74000000000020,49.069999999999900,2782.39,534.01,26.76000000000020,42.24000000000000,3640.9,791.01,26.61999999999990,23.81000000000010,4056.63,583.2,27.020000000000000,50.97999999999990,4387.75,549.07,19.26000000000020,42.80000000000000 -435,3349.05,671.8,38.84999999999990,79.82000000000010,3570.1,552.19,22.800000000000200,49.6099999999999,4317.1,689.3,59.5,85.49000000000000,4055.03,725.99,46.249999999999500,97.71000000000000,3781.69,674.87,41.73999999999980,75.98000000000000,3842.02,573.93,25.09999999999990,59.85000000000000,4077.94,576.4,30.66999999999960,56.66000000000000,4261.7,622.62,39.80000000000020,71.78000000000000,3940.74,527.73,21.90000000000010,39.71000000000000,3684.33,518.48,17.559999999999900,34.040000000000000,3624.5,785.76,74.26000000000020,125.57000000000000,4256.83,686.53,46.720000000000300,100.20000000000000,3627.88,689.24,59.13999999999990,96.21000000000000,4397.55,653.53,39.88999999999940,75.94000000000010,3589.56,571.7,29.44000000000010,58.59999999999990,2694.61,692.05,50.90000000000010,95.46000000000000,3150.38,522.78,27.94999999999980,48.59000000000000,3480.39,498.67,20.44000000000010,36.53000000000000,3849.94,539.88,22.73000000000000,49.06000000000010,2782.39,534.01,26.76000000000020,42.24000000000000,3644.07,791.03,26.61999999999990,23.81000000000010,4057.13,583.46,27.079999999999900,51.04000000000000,4387.84,549.06,19.26000000000020,42.80000000000010 -436,3349.49,672.08,38.99000000000020,79.93999999999990,3570.06,552.37,22.790000000000000,49.610000000000000,4315.65,689.72,59.5,85.49000000000000,4054.48,725.93,46.45000000000030,97.78000000000010,3781.6,675.09,41.76000000000020,76.10000000000000,3842.76,574.27,25.08999999999970,59.85000000000000,4077.88,576.67,30.67000000000010,56.65000000000010,4265.34,623.27,39.80000000000020,71.79000000000000,3940.23,527.75,21.90999999999990,39.71000000000000,3684.53,518.51,17.559999999999900,34.040000000000000,3627.54,785.65,74.25,125.58000000000000,4257.12,686.54,46.73000000000050,100.20000000000000,3627.52,689.06,59.13999999999990,96.22000000000000,4400.29,654.47,39.88000000000010,75.93999999999990,3588.7,571.99,29.44000000000010,58.60000000000000,2697.92,691.61,50.809999999999900,95.37,3150.29,522.94,27.94999999999980,48.58999999999990,3480.75,498.67,20.42999999999980,36.53000000000000,3850.32,539.9,22.73000000000000,49.07000000000010,2782.39,534.01,26.76000000000020,42.24000000000000,3647.24,791.05,26.620000000000300,23.800000000000100,4057.63,583.71,27.15000000000010,51.110000000000000,4387.93,549.06,19.25999999999930,42.79000000000010 -437,3349.94,672.36,39.11999999999990,80.06000000000000,3570.01,552.56,22.790000000000000,49.610000000000000,4314.21,690.14,59.5,85.49000000000000,4053.93,725.86,46.65000000000010,97.85000000000000,3781.52,675.3,41.77000000000000,76.23000000000000,3843.49,574.61,25.100000000000400,59.85000000000000,4077.81,576.94,30.67999999999980,56.65000000000000,4268.97,623.93,39.80000000000020,71.78000000000010,3939.73,527.77,21.90999999999990,39.71000000000000,3684.73,518.55,17.559999999999900,34.04000000000010,3630.57,785.55,74.25,125.57000000000000,4257.42,686.55,46.720000000000300,100.20000000000000,3627.16,688.89,59.14000000000030,96.22000000000000,4403.02,655.41,39.8799999999992,75.94000000000010,3587.83,572.29,29.44000000000010,58.60000000000000,2701.22,691.16,50.73000000000000,95.29000000000010,3150.21,523.09,27.94000000000010,48.58999999999990,3481.1,498.67,20.43000000000030,36.53000000000000,3850.7,539.93,22.73000000000000,49.07000000000010,2782.39,534.01,26.76000000000020,42.24000000000000,3650.41,791.06,26.63000000000010,23.81000000000010,4058.14,583.97,27.21000000000000,51.17000000000000,4388.02,549.05,19.25999999999930,42.80000000000010 -438,3350.38,672.64,39.25999999999980,80.18000000000010,3569.97,552.74,22.79000000000040,49.610000000000000,4312.76,690.56,59.5,85.49000000000000,4053.39,725.8,46.83999999999970,97.92000000000010,3781.43,675.52,41.79000000000000,76.35000000000000,3844.23,574.95,25.09999999999990,59.84999999999990,4077.75,577.2,30.68000000000030,56.66000000000000,4272.61,624.59,39.80000000000020,71.78000000000000,3939.23,527.78,21.90999999999990,39.72000000000000,3684.93,518.58,17.559999999999900,34.040000000000000,3633.6,785.45,74.26000000000020,125.57000000000000,4257.72,686.56,46.71999999999940,100.20000000000000,3626.8,688.72,59.13999999999990,96.20999999999990,4406.79,656.66,39.88000000000010,75.93000000000010,3586.96,572.58,29.44000000000010,58.59999999999990,2704.53,690.72,50.63999999999990,95.18999999999990,3150.12,523.25,27.94000000000010,48.58000000000000,3481.45,498.67,20.43000000000030,36.53000000000000,3851.08,539.96,22.73000000000000,49.059999999999900,2782.39,534.01,26.76000000000020,42.24000000000000,3653.59,791.08,26.61999999999990,23.809999999999900,4058.64,584.23,27.270000000000000,51.23000000000000,4388.11,549.04,19.26000000000020,42.80000000000010 -439,3350.82,672.92,39.39999999999960,80.29000000000010,3569.92,552.93,22.790000000000000,49.60000000000000,4311.31,690.98,59.5,85.49000000000000,4052.84,725.74,47.04000000000000,97.99,3781.34,675.74,41.81999999999970,76.48000000000000,3844.97,575.28,25.100000000000400,59.85000000000000,4077.69,577.47,30.66999999999960,56.66000000000000,4276.24,625.24,39.80000000000020,71.79000000000000,3938.73,527.8,21.90999999999990,39.72000000000000,3685.13,518.61,17.559999999999900,34.040000000000000,3636.64,785.34,74.25,125.57000000000000,4258.02,686.57,46.71999999999940,100.20000000000000,3626.44,688.54,59.13999999999990,96.22000000000000,4410.56,657.9,39.8799999999992,75.94000000000010,3586.1,572.87,29.44000000000010,58.60000000000000,2707.84,690.27,50.54999999999970,95.11,3150.03,523.4,27.9399999999996,48.59000000000000,3481.8,498.67,20.42999999999980,36.53000000000000,3851.46,539.98,22.73000000000000,49.069999999999900,2782.39,534.01,26.76000000000020,42.24000000000000,3656.76,791.1,26.61999999999990,23.800000000000000,4059.14,584.49,27.340000000000100,51.29000000000000,4388.2,549.04,19.26000000000020,42.79000000000010 -440,3351.27,673.2,39.5300000000002,80.41000000000000,3569.88,553.11,22.790000000000000,49.610000000000000,4309.87,691.4,59.5,85.49000000000000,4052.29,725.67,47.23999999999980,98.06000000000010,3781.26,675.96,41.82999999999990,76.59999999999990,3845.71,575.62,25.09999999999990,59.85000000000000,4077.63,577.74,30.67000000000010,56.65000000000000,4279.88,625.9,39.80000000000020,71.78000000000000,3938.23,527.82,21.90999999999990,39.71999999999990,3685.33,518.64,17.550000000000200,34.040000000000000,3639.67,785.24,74.25,125.57000000000000,4258.31,686.58,46.71999999999940,100.20000000000000,3626.08,688.37,59.13999999999990,96.22000000000000,4414.32,659.15,39.89000000000030,75.93000000000010,3585.23,573.17,29.44000000000010,58.60000000000000,2711.14,689.82,50.470000000000300,95.03000000000000,3149.94,523.56,27.94000000000010,48.58000000000000,3482.15,498.67,20.42999999999980,36.53000000000000,3851.84,540.01,22.73000000000000,49.06000000000010,2782.39,534.0,26.76000000000020,42.24000000000000,3659.93,791.11,26.620000000000300,23.809999999999900,4059.65,584.75,27.40000000000010,51.360000000000000,4388.3,549.03,19.25,42.80000000000010 -441,3351.71,673.48,39.67000000000010,80.53000000000000,3569.83,553.3,22.790000000000000,49.60000000000000,4308.42,691.82,59.5,85.4899999999999,4051.75,725.61,47.43000000000030,98.13,3781.17,676.18,41.84999999999990,76.72000000000000,3846.44,575.96,25.09999999999990,59.84999999999990,4078.89,578.0,30.67999999999980,56.66000000000000,4283.51,626.56,39.80000000000020,71.78000000000010,3937.73,527.84,21.90000000000010,39.71999999999990,3685.62,518.66,17.559999999999900,34.04000000000010,3642.7,785.13,74.26000000000020,125.57000000000000,4258.61,686.6,46.720000000000300,100.20000000000000,3625.72,688.2,59.14000000000030,96.20999999999990,4418.09,660.39,39.88000000000010,75.94000000000010,3584.36,573.46,29.44000000000010,58.59999999999990,2714.45,689.38,50.38000000000010,94.94000000000000,3149.85,523.71,27.94000000000010,48.58999999999990,3482.59,498.67,20.42999999999980,36.53000000000000,3852.22,540.03,22.73000000000000,49.07000000000010,2782.39,534.0,26.76000000000020,42.24000000000000,3663.1,791.13,26.61999999999990,23.81000000000010,4060.15,585.01,27.4699999999998,51.42000000000000,4388.39,549.02,19.25,42.80000000000010 -442,3352.16,673.76,39.80000000000020,80.65000000000000,3569.79,553.48,22.790000000000000,49.610000000000000,4306.98,692.23,59.5,85.5,4051.2,725.54,47.63000000000010,98.20000000000010,3781.08,676.4,41.86999999999990,76.84000000000000,3847.18,576.3,25.100000000000400,59.85000000000000,4080.16,578.27,30.67000000000010,56.66000000000000,4287.15,627.21,39.80000000000020,71.79000000000000,3937.23,527.86,21.90000000000010,39.72000000000000,3685.91,518.69,17.559999999999900,34.040000000000000,3645.74,785.03,74.25,125.57000000000000,4258.91,686.61,46.720000000000300,100.20000000000000,3625.36,688.02,59.13999999999990,96.22000000000000,4421.86,661.64,39.88000000000010,75.94000000000010,3583.49,573.76,29.44000000000010,58.60000000000000,2717.76,688.93,50.29000000000000,94.85000000000000,3149.76,523.86,27.9399999999996,48.59000000000000,3483.03,498.67,20.42999999999980,36.53000000000000,3852.59,540.06,22.73999999999980,49.07000000000010,2782.39,534.0,26.76000000000020,42.24000000000000,3666.27,791.15,26.61999999999990,23.800000000000100,4060.65,585.27,27.529999999999700,51.48000000000000,4388.48,549.02,19.25,42.80000000000010 -443,3352.6,674.04,39.940000000000100,80.76000000000000,3569.74,553.67,22.79000000000040,49.60000000000000,4305.53,692.65,59.5,85.5,4050.65,725.48,47.82999999999950,98.27000000000000,3780.99,676.61,41.89000000000030,76.98000000000000,3847.92,576.63,25.09999999999990,59.85000000000000,4081.42,578.54,30.68000000000030,56.65000000000010,4290.78,627.87,39.80000000000020,71.78000000000000,3936.73,527.88,21.90000000000010,39.71000000000000,3686.2,518.71,17.5600000000004,34.040000000000000,3648.77,784.92,74.25,125.57000000000000,4259.2,686.62,46.73000000000050,100.20000000000000,3625.0,687.85,59.13999999999990,96.20999999999990,4425.63,662.88,39.88000000000010,75.94000000000010,3582.63,574.05,29.44000000000010,58.60000000000000,2721.07,688.48,50.19999999999980,94.77000000000000,3149.67,524.02,27.94000000000010,48.59000000000000,3483.46,498.67,20.44000000000010,36.53000000000000,3852.97,540.09,22.74000000000020,49.059999999999900,2782.4,534.0,26.759999999999800,42.24000000000000,3669.44,791.16,26.61999999999990,23.81000000000010,4061.16,585.53,27.590000000000100,51.54000000000010,4388.57,549.01,19.26000000000020,42.80000000000000 -444,3353.04,674.32,40.07999999999990,80.88,3569.69,553.85,22.799999999999700,49.610000000000000,4304.09,693.07,59.5,85.5,4050.1,725.42,48.0300000000002,98.34000000000010,3780.91,676.83,41.90000000000010,77.09999999999990,3848.66,576.97,25.100000000000400,59.85000000000000,4082.69,578.81,30.66999999999960,56.65000000000010,4294.42,628.53,39.80000000000020,71.78000000000000,3936.23,527.9,21.90000000000010,39.71000000000000,3686.5,518.73,17.550000000000200,34.040000000000000,3651.81,784.82,74.25,125.57000000000000,4259.5,686.63,46.720000000000300,100.20000000000000,3624.63,687.68,59.15000000000010,96.21000000000000,4429.39,664.13,39.88999999999940,75.94000000000010,3581.76,574.34,29.4399999999996,58.60000000000000,2724.37,688.04,50.11999999999990,94.68000000000010,3149.58,524.17,27.94000000000010,48.59000000000000,3483.9,498.67,20.42999999999980,36.53000000000000,3853.35,540.11,22.74000000000020,49.069999999999900,2782.4,534.0,26.759999999999800,42.24000000000000,3672.61,791.18,26.61999999999990,23.81000000000010,4062.21,585.95,27.65999999999990,51.6099999999999,4388.66,549.01,19.26000000000020,42.79000000000000 -445,3353.49,674.6,40.21000000000000,81.0,3569.65,554.04,22.790000000000000,49.60000000000000,4302.64,693.49,59.5,85.5,4049.56,725.35,48.2199999999998,98.41000000000000,3780.82,677.05,41.91999999999960,77.22000000000000,3849.4,577.31,25.08999999999970,59.85000000000000,4083.95,579.07,30.68000000000030,56.66000000000000,4298.05,629.18,39.80999999999950,71.79000000000010,3935.73,527.92,21.90000000000010,39.71000000000000,3686.79,518.75,17.559999999999900,34.040000000000000,3654.84,784.71,74.25,125.58000000000000,4259.8,686.64,46.720000000000300,100.20000000000000,3624.27,687.5,59.15000000000010,96.22000000000000,4433.16,665.37,39.88000000000010,75.93999999999990,3580.89,574.64,29.44000000000010,58.60000000000000,2727.68,687.59,50.0300000000002,94.60000000000000,3149.49,524.33,27.95000000000030,48.57999999999990,3484.34,498.67,20.42999999999980,36.53000000000000,3853.73,540.14,22.73000000000000,49.07000000000010,2782.4,534.0,26.759999999999800,42.24000000000000,3675.78,791.19,26.62999999999970,23.809999999999900,4063.27,586.38,27.7199999999998,51.67000000000000,4388.75,549.0,19.26000000000020,42.80000000000000 -446,3353.93,674.88,40.35000000000040,81.11000000000000,3569.6,554.22,22.800000000000200,49.610000000000000,4302.89,694.18,59.5,85.5,4049.01,725.29,48.42000000000010,98.48000000000000,3780.73,677.27,41.940000000000100,77.35000000000000,3850.13,577.65,25.09999999999990,59.84000000000000,4085.22,579.34,30.670000000000500,56.66000000000000,4301.69,629.84,39.80000000000020,71.78000000000000,3935.22,527.94,21.91000000000030,39.70999999999990,3687.08,518.77,17.559999999999900,34.040000000000000,3657.87,784.61,74.25,125.57000000000000,4260.1,686.65,46.71999999999940,100.20000000000000,3623.91,687.33,59.15000000000010,96.20999999999990,4436.93,666.62,39.88000000000010,75.93999999999990,3580.03,574.93,29.4399999999996,58.60000000000000,2730.99,687.15,49.95000000000030,94.5,3149.4,524.48,27.94999999999980,48.59000000000000,3484.78,498.67,20.42999999999980,36.53000000000000,3854.11,540.17,22.73000000000000,49.06000000000010,2782.4,534.0,26.759999999999800,42.24000000000000,3678.96,791.21,26.61999999999990,23.809999999999900,4064.33,586.8,27.7800000000002,51.74000000000000,4388.84,548.99,19.26000000000020,42.80000000000000 -447,3354.37,675.16,40.49000000000020,81.23000000000000,3569.42,554.3,22.790000000000000,49.610000000000000,4303.14,694.87,59.5,85.5,4048.46,725.23,48.61999999999990,98.55000000000000,3780.65,677.49,41.94999999999980,77.47000000000000,3850.87,577.98,25.09999999999990,59.85000000000000,4086.48,579.61,30.67999999999980,56.65000000000000,4305.32,630.5,39.8100000000004,71.78000000000000,3934.72,527.96,21.91000000000030,39.70999999999990,3687.37,518.79,17.559999999999900,34.04000000000010,3660.91,784.51,74.25,125.57000000000000,4260.39,686.67,46.72999999999960,100.20000000000000,3622.88,687.65,59.15000000000010,96.22000000000000,4440.7,667.87,39.88000000000010,75.93000000000000,3579.16,575.23,29.44000000000010,58.60000000000000,2734.3,686.7,49.85999999999970,94.42000000000000,3149.31,524.63,27.95000000000030,48.59000000000000,3485.22,498.67,20.43000000000030,36.53000000000000,3854.49,540.19,22.73000000000000,49.069999999999900,2782.4,534.0,26.759999999999800,42.24000000000000,3682.13,791.23,26.61999999999990,23.800000000000000,4065.39,587.23,27.840000000000100,51.79000000000000,4388.93,548.99,19.25999999999930,42.79000000000000 -448,3354.82,675.44,40.61999999999990,81.34999999999990,3569.23,554.39,22.790000000000000,49.610000000000000,4303.39,695.56,59.5,85.5,4047.92,725.16,48.80999999999950,98.62,3780.56,677.71,41.970000000000300,77.58999999999990,3851.61,578.32,25.09999999999990,59.84999999999990,4087.75,579.88,30.67000000000010,56.65000000000000,4308.96,631.15,39.80000000000020,71.79000000000010,3934.22,527.98,21.91000000000030,39.71000000000000,3687.67,518.82,17.549999999999700,34.040000000000000,3663.94,784.4,74.25,125.57000000000000,4260.69,686.68,46.720000000000300,100.20000000000000,3621.85,687.97,59.13999999999990,96.22000000000000,4444.46,669.11,39.88000000000010,75.93999999999990,3578.29,575.52,29.44000000000010,58.60000000000000,2737.6,686.25,49.7800000000002,94.34000000000010,3149.22,524.79,27.95000000000030,48.59000000000000,3485.65,498.67,20.44000000000010,36.53000000000000,3854.87,540.22,22.73000000000000,49.069999999999900,2782.4,534.0,26.759999999999800,42.24000000000000,3685.3,791.24,26.61999999999990,23.809999999999900,4066.44,587.65,27.90999999999990,51.860000000000000,4389.02,548.98,19.25999999999930,42.80000000000000 -449,3355.26,675.72,40.75999999999980,81.47000000000000,3569.04,554.47,22.790000000000000,49.610000000000000,4303.65,696.25,59.5,85.5,4048.24,725.22,49.01000000000020,98.68999999999990,3780.47,677.92,41.99000000000020,77.72000000000000,3852.35,578.66,25.09999999999990,59.85000000000000,4089.01,580.14,30.67999999999940,56.66000000000000,4312.59,631.81,39.80999999999950,71.78000000000010,3934.43,528.05,21.91000000000030,39.71000000000000,3687.96,518.84,17.559999999999900,34.040000000000000,3666.97,784.3,74.25,125.57000000000000,4260.99,686.69,46.720000000000300,100.20000000000000,3620.81,688.29,59.15000000000010,96.22000000000000,4448.23,670.36,39.88000000000010,75.93000000000000,3577.43,575.81,29.43000000000030,58.60000000000000,2740.91,685.81,49.690000000000100,94.25,3149.13,524.94,27.94999999999980,48.58999999999990,3486.09,498.67,20.42999999999980,36.53000000000000,3855.25,540.25,22.73000000000000,49.059999999999900,2782.4,534.0,26.759999999999800,42.24000000000000,3688.47,791.26,26.620000000000300,23.81000000000010,4067.5,588.08,27.9699999999998,51.92000000000000,4389.11,548.97,19.26000000000020,42.80000000000000 -450,3355.71,676.0,40.88999999999990,81.58000000000000,3568.85,554.56,22.790000000000000,49.610000000000000,4303.9,696.95,59.5,85.49000000000000,4048.56,725.28,49.2199999999998,98.76,3780.38,678.14,42.02000000000000,77.85000000000000,3853.09,578.99,25.08999999999970,59.85000000000000,4090.28,580.41,30.66999999999960,56.66000000000010,4316.23,632.47,39.80000000000020,71.78000000000000,3934.64,528.12,21.90000000000010,39.72000000000000,3688.25,518.86,17.559999999999900,34.040000000000000,3670.01,784.19,74.25,125.57000000000000,4261.29,686.7,46.720000000000300,100.20000000000000,3619.78,688.61,59.13999999999990,96.22000000000000,4452.45,671.71,40.36000000000060,76.69999999999990,3576.56,576.11,29.44000000000010,58.60000000000000,2744.22,685.36,49.60000000000040,94.16000000000000,3149.04,525.1,27.94999999999980,48.57999999999990,3486.53,498.67,20.42999999999980,36.53000000000000,3855.63,540.27,22.73000000000000,49.07000000000010,2782.4,534.0,26.759999999999800,42.24000000000000,3691.64,791.28,26.620000000000300,23.800000000000100,4067.94,588.75,27.9699999999998,51.93000000000000,4389.2,548.97,19.26000000000020,42.79000000000000 -451,3356.15,676.28,41.04000000000000,81.70000000000010,3568.66,554.64,22.800000000000200,49.610000000000000,4304.15,697.64,59.5,85.49000000000000,4048.89,725.34,49.41000000000030,98.82999999999990,3780.3,678.36,42.02999999999980,77.97000000000000,3853.82,579.33,25.09999999999990,59.84999999999990,4091.54,580.68,30.68000000000030,56.65000000000010,4319.86,633.12,39.8100000000004,71.79000000000000,3934.85,528.2,21.90000000000010,39.70999999999990,3688.55,518.88,17.549999999999700,34.040000000000000,3673.04,784.09,74.25,125.57000000000000,4261.58,686.71,46.73000000000050,100.20000000000000,3618.74,688.93,59.15000000000010,96.22000000000000,4456.68,673.07,40.82999999999990,77.44999999999990,3575.69,576.4,29.44000000000010,58.60000000000000,2747.52,684.91,49.52000000000000,94.08000000000000,3148.95,525.25,27.95000000000030,48.59000000000000,3486.97,498.67,20.43000000000030,36.53000000000000,3856.01,540.3,22.729999999999600,49.07000000000010,2782.4,534.0,26.759999999999800,42.24000000000000,3694.81,791.29,26.61999999999990,23.81000000000010,4068.38,589.43,27.979999999999600,51.92000000000010,4389.29,548.96,19.26000000000020,42.80000000000000 -452,3356.59,676.56,41.17999999999980,81.82000000000010,3568.47,554.73,22.800000000000200,49.610000000000000,4304.4,698.33,59.5,85.49000000000000,4049.21,725.4,49.60999999999970,98.89,3780.92,678.58,42.04999999999970,78.08999999999990,3854.56,579.67,25.09999999999990,59.85000000000000,4092.8,580.95,30.67999999999940,56.65000000000000,4323.5,633.78,39.80000000000020,71.78000000000000,3935.05,528.27,21.90999999999990,39.71000000000000,3688.84,518.9,17.559999999999900,34.04000000000010,3676.07,783.98,74.25,125.57000000000000,4261.88,686.72,46.720000000000300,100.20000000000000,3617.71,689.25,59.13999999999990,96.22000000000000,4460.9,674.43,41.3100000000004,78.20000000000010,3574.82,576.69,29.44000000000010,58.59999999999990,2750.83,684.47,49.43000000000030,93.99,3148.86,525.4,27.94999999999980,48.59000000000000,3487.41,498.67,20.43000000000030,36.53000000000000,3856.38,540.33,22.73999999999980,49.059999999999900,2782.41,534.0,26.76000000000020,42.24000000000000,3697.98,791.31,26.61999999999990,23.81000000000010,4068.82,590.1,27.98000000000000,51.93000000000000,4389.38,548.95,19.26000000000020,42.80000000000000 -453,3357.04,676.84,41.309999999999900,81.93999999999990,3568.29,554.81,22.790000000000000,49.610000000000000,4304.65,699.02,59.5,85.49000000000000,4049.54,725.45,49.80000000000020,98.96999999999990,3781.55,678.8,42.059999999999900,78.21000000000000,3855.3,580.01,25.09999999999990,59.85000000000000,4094.07,581.21,30.67999999999980,56.66000000000000,4327.13,634.44,39.80999999999950,71.78000000000000,3935.26,528.34,21.90999999999990,39.70999999999990,3689.13,518.92,17.559999999999900,34.04000000000010,3679.11,783.88,74.25,125.57000000000000,4262.18,686.74,46.71999999999940,100.20000000000000,3616.67,689.58,59.15000000000010,96.20999999999990,4465.13,675.79,41.76999999999950,78.95000000000010,3573.96,576.99,29.44000000000010,58.60000000000000,2754.14,684.02,49.34000000000020,93.91000000000000,3148.77,525.56,27.94999999999980,48.59000000000000,3487.84,498.67,20.44000000000010,36.53000000000000,3856.76,540.35,22.73999999999980,49.069999999999900,2782.41,534.0,26.76000000000020,42.24000000000000,3701.15,791.33,26.61999999999990,23.800000000000000,4069.26,590.78,27.979999999999600,51.92000000000010,4389.47,548.95,19.25999999999930,42.80000000000000 -454,3357.48,677.12,41.44999999999980,82.05000000000000,3568.1,554.9,22.790000000000000,49.610000000000000,4304.9,699.71,59.5,85.49000000000000,4049.86,725.51,49.999999999999500,99.04000000000000,3782.17,679.02,42.09000000000020,78.34000000000000,3856.04,580.34,25.09999999999990,59.85000000000000,4095.33,581.48,30.68000000000030,56.65000000000000,4330.77,635.09,39.79999999999930,71.79000000000000,3935.47,528.41,21.90000000000010,39.71000000000000,3689.42,518.94,17.559999999999900,34.050000000000000,3682.14,783.78,74.25,125.57000000000000,4262.48,686.75,46.720000000000300,100.20000000000000,3615.64,689.9,59.15000000000010,96.21000000000000,4469.35,677.15,42.25,79.71000000000000,3573.09,577.28,29.44000000000010,58.60000000000000,2757.45,683.58,49.25,93.81000000000000,3148.68,525.71,27.95000000000030,48.58999999999990,3488.28,498.67,20.42999999999980,36.53000000000000,3857.14,540.38,22.74000000000020,49.07000000000010,2782.41,533.99,26.76000000000020,42.24000000000000,3704.32,791.34,26.62999999999970,23.809999999999900,4069.7,591.45,27.98000000000050,51.93000000000000,4389.56,548.94,19.25999999999930,42.80000000000000 -455,3357.92,677.4,41.59000000000020,82.17000000000010,3567.91,554.98,22.790000000000000,49.610000000000000,4305.15,700.4,59.5,85.49000000000000,4050.19,725.57,50.190000000000100,99.1099999999999,3782.8,679.23,42.09999999999990,78.47000000000000,3856.78,580.68,25.08999999999970,59.85000000000000,4096.6,581.75,30.67000000000010,56.65000000000000,4334.41,635.75,39.80000000000020,71.78000000000000,3935.68,528.48,21.90000000000010,39.71000000000000,3689.72,518.97,17.550000000000200,34.040000000000000,3685.17,783.67,74.25,125.57000000000000,4262.77,686.76,46.72999999999960,100.20000000000000,3614.61,690.22,59.13999999999990,96.20999999999990,4473.57,678.5,42.73000000000050,80.47000000000000,3572.22,577.58,29.44000000000010,58.59999999999990,2760.75,683.13,49.17000000000010,93.73000000000000,3148.59,525.87,27.94999999999980,48.58000000000000,3488.72,498.67,20.43000000000030,36.53000000000000,3857.52,540.41,22.73000000000000,49.06000000000010,2782.41,533.99,26.76000000000020,42.24000000000000,3707.5,791.36,26.61999999999990,23.809999999999900,4070.15,592.13,27.9699999999998,51.92000000000000,4389.65,548.94,19.26000000000020,42.79000000000000 -456,3358.37,677.68,41.720000000000300,82.29000000000010,3567.72,555.07,22.79000000000040,49.6099999999999,4305.41,701.09,59.5,85.49000000000000,4050.51,725.63,50.38999999999940,99.18000000000000,3784.52,678.98,42.11000000000010,78.46000000000000,3857.51,581.02,25.09999999999990,59.85000000000000,4097.86,582.01,30.68000000000030,56.66000000000000,4338.04,636.41,39.80000000000020,71.78000000000010,3935.88,528.55,21.90999999999990,39.72000000000000,3690.01,518.99,17.559999999999900,34.040000000000000,3688.21,783.57,74.25,125.57000000000000,4263.07,686.77,46.720000000000300,100.20000000000000,3613.57,690.54,59.14999999999960,96.22000000000000,4477.8,679.86,43.19999999999980,81.22000000000000,3571.36,577.87,29.42999999999980,58.60000000000000,2764.06,682.68,49.07999999999990,93.65000000000010,3148.5,526.02,27.94999999999980,48.59000000000000,3489.38,498.62,20.42999999999980,36.53000000000000,3857.9,540.43,22.73000000000000,49.07000000000010,2782.41,533.99,26.76000000000020,42.24000000000000,3710.67,791.38,26.61999999999990,23.800000000000000,4070.59,592.81,27.97000000000030,51.92000000000010,4389.74,548.93,19.26000000000020,42.80000000000010 -457,3358.81,677.95,41.86000000000010,82.41000000000000,3567.53,555.15,22.799999999999700,49.610000000000000,4305.66,701.78,59.5,85.49000000000000,4050.83,725.68,50.60000000000040,99.25,3786.25,678.72,42.09999999999990,78.47000000000000,3858.25,581.36,25.09999999999990,59.85000000000000,4099.13,582.28,30.67000000000010,56.66000000000010,4341.68,637.06,39.79999999999930,71.79000000000010,3936.09,528.63,21.90999999999990,39.71000000000000,3690.3,519.01,17.559999999999900,34.040000000000000,3691.24,783.46,74.25,125.57000000000000,4264.32,686.81,46.720000000000300,100.20000000000000,3612.54,690.86,59.13999999999990,96.22000000000000,4482.02,681.22,43.67999999999940,81.98000000000000,3570.49,578.16,29.44000000000010,58.60000000000000,2767.37,682.24,48.99000000000020,93.56000000000000,3148.41,526.17,27.95000000000030,48.59000000000000,3490.03,498.56,20.4399999999996,36.53000000000000,3858.28,540.46,22.73000000000000,49.059999999999900,2782.41,533.99,26.76000000000020,42.24000000000000,3713.84,791.39,26.61999999999990,23.81000000000010,4071.03,593.48,27.9699999999998,51.92000000000000,4389.83,548.92,19.26000000000020,42.80000000000010 -458,3359.26,678.23,41.98999999999980,82.53000000000000,3567.35,555.24,22.790000000000000,49.610000000000000,4305.91,702.47,59.5,85.49000000000000,4051.16,725.74,50.79000000000000,99.31999999999990,3787.98,678.47,42.09999999999990,78.45999999999990,3858.99,581.69,25.100000000000400,59.84999999999990,4100.39,582.55,30.67999999999940,56.65000000000010,4345.59,638.08,39.93000000000030,72.0,3936.3,528.7,21.89999999999960,39.70999999999990,3690.59,519.03,17.559999999999900,34.04000000000010,3694.27,783.36,74.25,125.57000000000000,4265.57,686.85,46.720000000000300,100.20000000000000,3611.5,691.18,59.15000000000010,96.22000000000000,4486.24,682.58,44.15000000000060,82.7299999999999,3569.62,578.46,29.44000000000010,58.59999999999990,2770.67,681.79,48.909999999999900,93.47000000000000,3148.32,526.33,27.94999999999980,48.58999999999990,3490.69,498.51,20.42999999999980,36.53000000000000,3858.66,540.48,22.73000000000000,49.069999999999900,2782.41,533.99,26.76000000000020,42.24000000000000,3717.01,791.41,26.61999999999990,23.800000000000100,4071.47,594.16,27.9699999999998,51.92000000000010,4389.92,548.92,19.26000000000020,42.79000000000010 -459,3359.7,678.51,42.13000000000010,82.65000000000000,3567.16,555.32,22.790000000000000,49.6099999999999,4306.16,703.16,59.5,85.49000000000000,4051.48,725.8,50.99000000000020,99.3900000000001,3789.7,678.21,42.10000000000040,78.46999999999990,3859.73,582.03,25.09999999999990,59.85000000000000,4101.66,582.82,30.67000000000010,56.65000000000000,4349.51,639.09,40.05999999999950,72.20999999999990,3936.51,528.77,21.89999999999960,39.71000000000000,3690.89,519.05,17.550000000000200,34.04000000000010,3697.31,783.25,74.25,125.57000000000000,4266.82,686.89,46.720000000000300,100.20000000000000,3610.47,691.5,59.15000000000010,96.22000000000000,4490.47,683.94,44.61999999999990,83.4799999999999,3568.75,578.75,29.44000000000010,58.60000000000000,2773.98,681.34,48.82000000000020,93.39,3148.23,526.48,27.94999999999980,48.59000000000000,3491.35,498.46,20.43000000000030,36.53000000000000,3859.04,540.51,22.73000000000000,49.07000000000010,2782.41,533.99,26.76000000000020,42.24000000000000,3720.18,791.42,26.620000000000300,23.81000000000010,4071.91,594.83,27.97000000000030,51.92000000000000,4390.01,548.91,19.26000000000020,42.80000000000010 -460,3360.14,678.79,42.27000000000000,82.77000000000000,3566.97,555.41,22.79000000000040,49.610000000000000,4306.41,703.85,59.5,85.49000000000000,4051.81,725.86,51.17999999999980,99.46000000000000,3791.43,677.95,42.10000000000040,78.46999999999990,3860.46,582.37,25.09999999999990,59.85000000000000,4102.92,583.08,30.68000000000030,56.66000000000000,4353.42,640.11,40.1899999999996,72.42000000000000,3936.71,528.84,21.90999999999990,39.70999999999990,3691.18,519.07,17.559999999999900,34.040000000000000,3700.34,783.15,74.25,125.57000000000000,4268.07,686.93,46.720000000000300,100.20000000000000,3609.44,691.82,59.13999999999990,96.21999999999990,4494.69,685.29,45.10000000000040,84.24000000000000,3567.89,579.04,29.44000000000010,58.60000000000000,2777.29,680.9,48.73000000000000,93.30000000000010,3148.14,526.64,27.95000000000030,48.58000000000000,3492.0,498.41,20.44000000000010,36.53000000000000,3859.42,540.54,22.73000000000000,49.06000000000010,2782.42,533.99,26.759999999999800,42.24000000000000,3723.35,791.44,26.61999999999990,23.809999999999900,4072.35,595.51,27.9699999999998,51.92000000000000,4390.1,548.9,19.25999999999930,42.80000000000010 -461,3360.59,679.07,42.39999999999960,82.88,3566.78,555.49,22.790000000000000,49.610000000000000,4306.66,704.54,59.5,85.49000000000000,4052.13,725.92,51.38000000000010,99.5200000000001,3793.15,677.7,42.09999999999990,78.45999999999990,3861.2,582.71,25.100000000000400,59.84999999999990,4104.19,583.35,30.67000000000010,56.66000000000000,4357.34,641.13,40.30999999999950,72.63,3936.92,528.91,21.90999999999990,39.71000000000000,3691.47,519.1,17.5600000000004,34.040000000000000,3703.37,783.04,74.25,125.58000000000000,4269.31,686.97,46.72999999999960,100.20000000000000,3608.4,692.14,59.15000000000010,96.22000000000000,4498.92,686.65,45.56999999999970,85.0,3568.63,579.34,29.44000000000010,58.60000000000000,2780.6,680.45,48.65000000000010,93.21999999999990,3148.05,526.79,27.94999999999980,48.59000000000000,3492.66,498.35,20.43000000000030,36.54000000000000,3859.79,540.56,22.74000000000020,49.07000000000010,2782.42,533.99,26.759999999999800,42.24000000000000,3726.52,791.46,26.61999999999990,23.800000000000000,4072.79,596.18,27.98000000000050,51.92000000000010,4390.19,548.9,19.26000000000020,42.80000000000010 -462,3361.03,679.35,42.54000000000000,83.0,3566.59,555.58,22.799999999999700,49.610000000000000,4306.91,705.23,59.5,85.5,4052.45,725.97,51.57999999999990,99.60000000000000,3794.88,677.44,42.09999999999990,78.46999999999990,3861.94,583.04,25.09999999999990,59.85000000000000,4105.45,583.62,30.68000000000030,56.65000000000000,4361.25,642.14,40.44999999999980,72.85000000000000,3937.13,528.98,21.90000000000010,39.71000000000000,3691.76,519.12,17.559999999999900,34.040000000000000,3706.41,782.94,74.25,125.57000000000000,4270.56,687.01,46.71999999999940,100.20000000000000,3607.37,692.47,59.14000000000030,96.20999999999990,4503.14,688.01,46.04999999999930,85.75,3569.38,579.63,29.44000000000010,58.60000000000000,2783.9,680.01,48.56999999999970,93.13,3147.96,526.94,27.94999999999980,48.58999999999990,3493.32,498.3,20.42999999999980,36.53000000000000,3860.17,540.59,22.73999999999980,49.069999999999900,2782.42,533.99,26.759999999999800,42.24000000000000,3729.69,791.47,26.63000000000010,23.809999999999900,4073.23,596.86,27.98000000000000,51.92000000000000,4390.28,548.89,19.26000000000020,42.80000000000010 -463,3361.47,679.63,42.68000000000030,83.12,3566.41,555.66,22.790000000000000,49.610000000000000,4307.17,705.92,59.5,85.5,4052.78,726.03,51.77000000000000,99.67000000000010,3796.61,677.19,42.09999999999990,78.45999999999990,3862.68,583.38,25.100000000000400,59.85000000000000,4106.43,584.56,30.67000000000010,56.66000000000010,4365.17,643.16,40.56999999999970,73.06000000000010,3937.34,529.05,21.89999999999960,39.72000000000000,3692.06,519.14,17.550000000000200,34.040000000000000,3709.44,782.84,74.25,125.57000000000000,4271.81,687.05,46.71999999999940,100.20000000000000,3606.17,692.35,59.15000000000010,96.22000000000000,4507.36,689.37,46.52000000000040,86.5,3570.12,579.93,29.44000000000010,58.60000000000000,2787.21,679.56,48.48000000000000,93.04000000000010,3147.87,527.1,27.95000000000030,48.59000000000000,3493.97,498.25,20.44000000000010,36.53000000000000,3860.55,540.62,22.73999999999980,49.059999999999900,2782.42,533.99,26.759999999999800,42.24000000000000,3732.87,791.49,26.61999999999990,23.809999999999900,4073.67,597.53,27.979999999999600,51.92000000000010,4390.37,548.89,19.26000000000020,42.79000000000000 -464,3361.92,679.91,42.809999999999900,83.24000000000000,3566.22,555.75,22.79000000000040,49.610000000000000,4309.41,705.66,59.5,85.49000000000000,4053.1,726.09,51.98000000000000,99.74,3798.33,676.93,42.09999999999990,78.47000000000000,3863.42,583.72,25.090000000000100,59.85000000000000,4107.41,585.51,30.67000000000010,56.66000000000000,4369.08,644.17,40.71000000000000,73.2700000000001,3937.54,529.13,21.90999999999990,39.71000000000000,3692.35,519.16,17.559999999999900,34.04000000000010,3712.47,782.73,74.25,125.57000000000000,4273.06,687.09,46.71999999999940,100.20000000000000,3604.97,692.24,59.15000000000010,96.21000000000000,4511.59,690.72,46.98999999999980,87.27000000000000,3570.87,580.22,29.44000000000010,58.60000000000000,2790.52,679.11,48.38999999999990,92.96000000000000,3147.78,527.25,27.94999999999980,48.59000000000000,3494.63,498.2,20.42999999999980,36.53000000000000,3860.93,540.64,22.73000000000000,49.07000000000010,2782.42,533.99,26.759999999999800,42.24000000000000,3736.04,791.51,26.61999999999990,23.800000000000000,4074.11,598.21,27.98000000000000,51.92000000000000,4390.47,548.88,19.25,42.80000000000000 -465,3362.36,680.19,42.94999999999980,83.34999999999990,3566.03,555.83,22.790000000000000,49.610000000000000,4311.66,705.39,59.5,85.5,4053.43,726.15,52.17000000000050,99.81000000000010,3800.06,676.67,42.09999999999990,78.47000000000000,3864.15,584.05,25.09999999999990,59.85000000000000,4108.38,586.46,30.68000000000030,56.65000000000000,4373.0,645.19,40.82999999999990,73.4799999999999,3937.9,529.09,21.90000000000010,39.70999999999990,3692.64,519.18,17.559999999999900,34.04000000000010,3715.51,782.63,74.25,125.57000000000000,4274.31,687.13,46.71999999999940,100.20000000000000,3603.78,692.12,59.13999999999990,96.22000000000000,4515.81,692.08,47.46999999999940,88.02000000000000,3572.07,580.7,29.44000000000010,58.59999999999990,2793.83,678.67,48.30000000000020,92.87,3147.69,527.41,27.94999999999980,48.58000000000000,3495.29,498.15,20.42999999999980,36.53000000000000,3861.31,540.67,22.73000000000000,49.07000000000010,2782.42,533.99,26.759999999999800,42.24000000000000,3739.21,791.52,26.61999999999990,23.81000000000010,4074.56,598.88,27.9699999999998,51.92000000000000,4390.56,548.87,19.25,42.80000000000000 -466,3362.8,680.47,43.08999999999970,83.47000000000000,3565.84,555.92,22.790000000000000,49.610000000000000,4313.91,705.13,59.5,85.49000000000000,4053.75,726.2,52.36999999999990,99.88,3801.78,676.42,42.09999999999990,78.46000000000000,3864.89,584.39,25.09999999999990,59.85000000000000,4109.36,587.4,30.67000000000010,56.66000000000000,4376.91,646.21,40.96000000000000,73.68999999999990,3938.25,529.05,21.90999999999990,39.71000000000000,3692.94,519.2,17.549999999999700,34.040000000000000,3718.54,782.52,74.25,125.57000000000000,4275.56,687.17,46.71999999999940,100.20000000000000,3602.58,692.01,59.15000000000010,96.22000000000000,4520.03,693.44,47.94999999999980,88.77000000000000,3573.28,581.19,29.4399999999996,58.59999999999990,2797.13,678.22,48.2199999999998,92.79000000000000,3147.6,527.56,27.95000000000030,48.59000000000000,3495.94,498.09,20.44000000000010,36.53000000000000,3862.3,540.8,22.73999999999980,49.06000000000010,2782.42,533.99,26.759999999999800,42.24000000000000,3742.38,791.54,26.61999999999990,23.81000000000010,4075.0,599.56,27.97000000000030,51.92000000000010,4390.65,548.87,19.25,42.79000000000000 -467,3363.25,680.75,43.2199999999998,83.59000000000000,3565.65,556.0,22.790000000000000,49.610000000000000,4316.15,704.86,59.5,85.5,4054.07,726.26,52.57000000000020,99.95000000000010,3803.51,676.16,42.09999999999990,78.47000000000000,3865.63,584.73,25.09999999999990,59.85000000000000,4110.33,588.35,30.68000000000030,56.66000000000000,4380.83,647.22,41.09000000000020,73.91000000000000,3938.6,529.02,21.91000000000030,39.71000000000000,3693.23,519.23,17.559999999999900,34.040000000000000,3721.57,782.42,74.25999999999980,125.57000000000000,4276.81,687.21,46.71999999999940,100.20000000000000,3601.38,691.89,59.15000000000010,96.22000000000000,4524.26,694.8,48.42000000000010,89.5200000000001,3574.49,581.67,29.44000000000010,58.60000000000000,2800.44,677.77,48.13000000000010,92.70000000000010,3147.51,527.71,27.94999999999980,48.58999999999990,3496.6,498.04,20.43000000000030,36.53000000000000,3863.29,540.93,22.74000000000020,49.06000000000010,2782.42,533.99,26.759999999999800,42.24000000000000,3745.55,791.56,26.61999999999990,23.800000000000100,4075.44,600.23,27.9699999999998,51.93000000000000,4390.74,548.86,19.26000000000020,42.80000000000000 -468,3363.69,681.03,43.36000000000010,83.71000000000000,3565.46,556.09,22.800000000000200,49.610000000000000,4318.4,704.6,59.5,85.49000000000000,4054.4,726.32,52.75999999999980,100.02000000000000,3805.23,675.91,42.11000000000010,78.46000000000000,3866.37,585.07,25.09999999999990,59.84999999999990,4111.31,589.3,30.67999999999940,56.65000000000010,4384.74,648.24,41.220000000000300,74.11000000000000,3938.96,528.98,21.90000000000010,39.71000000000000,3693.52,519.25,17.559999999999900,34.040000000000000,3724.61,782.31,74.25,125.57000000000000,4278.06,687.25,46.71999999999940,100.20000000000000,3600.19,691.78,59.13999999999990,96.22000000000000,4528.48,696.16,48.89000000000030,90.28000000000010,3575.7,582.15,29.44000000000010,58.60000000000000,2803.75,677.33,48.04000000000000,92.61,3147.42,527.87,27.94999999999980,48.59000000000000,3497.26,497.99,20.42999999999980,36.53000000000000,3864.29,541.06,22.73000000000000,49.06000000000010,2782.42,533.98,26.759999999999800,42.24000000000000,3748.72,791.57,26.620000000000300,23.809999999999900,4075.88,600.91,27.97000000000030,51.92000000000010,4390.83,548.85,19.26000000000020,42.80000000000000 -469,3364.14,681.31,43.49000000000020,83.82000000000010,3565.28,556.17,22.790000000000000,49.610000000000000,4320.65,704.33,59.5,85.5,4054.72,726.38,52.96000000000050,100.09000000000000,3806.96,675.65,42.09999999999990,78.47000000000000,3867.11,585.4,25.08999999999970,59.85000000000000,4112.29,590.24,30.67000000000010,56.66000000000000,4388.66,649.25,41.34000000000020,74.33000000000000,3939.31,528.94,21.90999999999990,39.70999999999990,3693.81,519.27,17.559999999999900,34.040000000000000,3727.64,782.21,74.25,125.57000000000000,4279.3,687.29,46.72999999999960,100.20000000000000,3598.99,691.67,59.14000000000030,96.21000000000000,4532.71,697.51,49.35999999999970,91.04000000000000,3576.9,582.63,29.44000000000010,58.60000000000000,2807.05,676.88,47.96000000000000,92.53000000000000,3147.33,528.02,27.95000000000030,48.59000000000000,3497.92,497.94,20.42999999999980,36.53000000000000,3865.28,541.18,22.73000000000000,49.07000000000010,2782.43,533.98,26.76000000000020,42.24000000000000,3751.89,791.59,26.620000000000300,23.800000000000000,4076.32,601.58,27.9699999999998,51.93000000000000,4390.92,548.85,19.26000000000020,42.79000000000000 -470,3364.58,681.59,43.63000000000010,83.93999999999990,3565.09,556.26,22.790000000000000,49.610000000000000,4322.89,704.07,59.5,85.4899999999999,4055.05,726.44,53.14999999999960,100.15000000000000,3808.69,675.39,42.09999999999990,78.47000000000000,3867.84,585.74,25.09999999999990,59.85000000000000,4113.26,591.19,30.67999999999940,56.66000000000000,4392.57,650.27,41.48000000000050,74.54000000000000,3939.66,528.9,21.91000000000030,39.72000000000000,3694.11,519.29,17.549999999999700,34.04000000000010,3730.67,782.11,74.25999999999980,125.57000000000000,4280.55,687.33,46.720000000000300,100.20000000000000,3597.79,691.55,59.15000000000010,96.22000000000000,4536.93,698.87,49.84000000000020,91.79000000000000,3578.11,583.12,29.44000000000010,58.60000000000000,2810.36,676.44,47.86999999999990,92.43999999999990,3147.24,528.18,27.95000000000030,48.58000000000000,3498.57,497.88,20.42999999999980,36.54000000000000,3866.27,541.31,22.73000000000000,49.07000000000010,2782.43,533.98,26.76000000000020,42.24000000000000,3755.06,791.6,26.61999999999990,23.809999999999900,4076.76,602.26,27.969999999999300,51.92000000000000,4391.01,548.84,19.26000000000020,42.80000000000000 -471,3365.02,681.87,43.7800000000002,84.06000000000000,3564.9,556.34,22.790000000000000,49.610000000000000,4325.14,703.81,59.5,85.49000000000000,4055.37,726.49,53.35999999999970,100.23000000000000,3810.41,675.14,42.10000000000040,78.46000000000000,3868.48,585.75,25.23999999999980,59.78000000000000,4114.24,592.14,30.68000000000030,56.65000000000000,4396.49,651.29,41.60000000000040,74.75,3940.02,528.87,21.90000000000010,39.71000000000000,3694.4,519.31,17.559999999999900,34.04000000000010,3733.71,782.0,74.25,125.57000000000000,4281.8,687.37,46.720000000000300,100.20000000000000,3596.6,691.44,59.13999999999990,96.20999999999990,4541.15,700.23,50.32000000000060,92.54000000000000,3579.32,583.6,29.44000000000010,58.60000000000000,2813.67,675.99,47.77999999999980,92.35000000000000,3147.15,528.33,27.94999999999980,48.58999999999990,3499.23,497.83,20.42999999999980,36.53000000000000,3867.26,541.44,22.73999999999980,49.069999999999900,2782.43,533.98,26.76000000000020,42.24000000000000,3758.23,791.62,26.63000000000010,23.809999999999900,4077.2,602.93,27.97000000000030,51.930000000000100,4391.1,548.83,19.25999999999930,42.80000000000000 -472,3365.47,682.15,43.91000000000030,84.17000000000010,3564.71,556.43,22.790000000000000,49.610000000000000,4327.38,703.54,59.5,85.49000000000000,4055.7,726.55,53.55000000000020,100.30000000000000,3812.14,674.88,42.09999999999990,78.47000000000000,3869.11,585.75,25.37999999999970,59.71000000000000,4115.22,593.08,30.67000000000010,56.66000000000000,4400.4,652.3,41.74000000000070,74.97000000000000,3940.37,528.83,21.91000000000030,39.70999999999990,3694.69,519.33,17.559999999999900,34.040000000000000,3736.74,781.9,74.25,125.57000000000000,4283.05,687.41,46.720000000000300,100.19000000000000,3595.4,691.32,59.13999999999990,96.21999999999990,4545.38,701.59,50.79000000000000,93.30000000000000,3580.53,584.08,29.4399999999996,58.59999999999990,2816.98,675.54,47.690000000000100,92.27000000000000,3147.06,528.48,27.95000000000030,48.59000000000000,3499.89,497.78,20.43000000000030,36.53000000000000,3868.25,541.57,22.73999999999980,49.069999999999900,2782.43,533.98,26.76000000000020,42.24000000000000,3761.41,791.64,26.620000000000300,23.800000000000100,4077.64,603.61,27.98000000000000,51.92000000000000,4391.19,548.83,19.26000000000020,42.80000000000000 -473,3365.91,682.43,44.05000000000020,84.29000000000010,3564.52,556.51,22.800000000000200,49.610000000000000,4329.63,703.28,59.5,85.49000000000000,4056.02,726.61,53.750000000000500,100.37,3813.86,674.63,42.09999999999990,78.46000000000000,3869.75,585.76,25.51000000000020,59.64000000000000,4116.19,594.03,30.68000000000030,56.65000000000000,4404.32,653.32,41.86000000000060,75.17000000000000,3940.73,528.79,21.90000000000010,39.71000000000000,3694.98,519.36,17.559999999999900,34.040000000000000,3739.77,781.79,74.26000000000020,125.57000000000000,4284.3,687.44,46.720000000000300,100.20000000000000,3594.2,691.21,59.15000000000010,96.21999999999990,4549.6,702.95,51.25999999999930,94.05000000000000,3581.73,584.57,29.44000000000010,58.59999999999990,2820.28,675.1,47.60999999999970,92.18000000000000,3146.97,528.64,27.95000000000030,48.59000000000000,3500.54,497.73,20.44000000000010,36.53000000000000,3869.25,541.7,22.73000000000000,49.069999999999900,2782.43,533.98,26.76000000000020,42.24000000000000,3764.58,791.65,26.61999999999990,23.81000000000010,4078.08,604.29,27.98000000000050,51.92000000000010,4391.28,548.82,19.26000000000020,42.80000000000000 -474,3366.35,682.71,44.190000000000100,84.41000000000000,3564.34,556.6,22.790000000000000,49.610000000000000,4331.88,703.01,59.5,85.49000000000000,4056.34,726.67,53.94999999999980,100.43000000000000,3815.59,674.37,42.09999999999990,78.47000000000000,3870.38,585.76,25.65999999999990,59.57000000000010,4117.17,594.98,30.67000000000010,56.65000000000000,4408.23,654.33,41.99000000000070,75.39000000000000,3941.08,528.76,21.90000000000010,39.71000000000000,3695.28,519.38,17.549999999999700,34.040000000000000,3742.81,781.69,74.25,125.57000000000000,4285.55,687.48,46.720000000000300,100.20000000000000,3593.01,691.1,59.13999999999990,96.20999999999990,4554.53,704.54,51.21000000000000,93.99,3582.94,585.05,29.44000000000010,58.60000000000000,2823.59,674.65,47.52000000000000,92.10000000000000,3147.34,528.7,27.94999999999980,48.57999999999990,3501.2,497.67,20.43000000000030,36.54000000000000,3870.24,541.83,22.73000000000000,49.059999999999900,2782.43,533.98,26.76000000000020,42.24000000000000,3767.75,791.67,26.61999999999990,23.81000000000010,4078.52,604.96,27.98000000000000,51.92000000000000,4391.37,548.82,19.26000000000020,42.79000000000000 -475,3366.8,682.99,44.31999999999970,84.53000000000000,3564.15,556.68,22.790000000000000,49.610000000000000,4334.12,702.75,59.5,85.49000000000000,4056.67,726.72,54.14000000000030,100.51,3817.31,674.11,42.11000000000010,78.47000000000000,3871.02,585.77,25.790000000000000,59.5,4118.14,595.92,30.67999999999940,56.66000000000010,4412.15,655.35,42.1200000000008,75.60000000000000,3941.43,528.72,21.91000000000030,39.70999999999990,3695.57,519.4,17.559999999999900,34.04000000000010,3745.84,781.58,74.25,125.57000000000000,4286.8,687.52,46.720000000000300,100.20000000000000,3591.81,690.98,59.13999999999990,96.22000000000000,4559.45,706.13,51.17000000000010,93.92000000000000,3584.15,585.53,29.44000000000010,58.60000000000000,2826.9,674.2,47.440000000000100,92.01,3147.72,528.75,27.94000000000010,48.59000000000000,3501.86,497.62,20.42999999999980,36.53000000000000,3871.23,541.96,22.73000000000000,49.059999999999900,2782.43,533.98,26.76000000000020,42.24000000000000,3770.92,791.69,26.61999999999990,23.800000000000000,4078.96,605.64,27.979999999999600,51.92000000000000,4391.46,548.81,19.26000000000020,42.80000000000010 -476,3367.24,683.27,44.46000000000000,84.64000000000000,3563.96,556.77,22.790000000000000,49.610000000000000,4336.37,702.48,59.5,85.5,4058.1,727.09,54.33999999999970,100.58000000000000,3820.97,674.05,42.10000000000040,78.47000000000000,3871.65,585.78,25.92999999999980,59.430000000000100,4119.12,596.87,30.68000000000030,56.65000000000000,4416.06,656.36,42.25,75.81999999999990,3941.79,528.68,21.90000000000010,39.71000000000000,3695.86,519.42,17.559999999999900,34.04000000000010,3748.87,781.48,74.26000000000020,125.57000000000000,4288.04,687.56,46.73000000000050,100.20000000000000,3590.61,690.87,59.15000000000010,96.21000000000000,4564.38,707.72,51.11999999999990,93.86,3585.36,586.01,29.44000000000010,58.60000000000000,2830.21,673.76,47.34999999999990,91.92000000000000,3148.09,528.81,27.94999999999980,48.59000000000000,3502.51,497.57,20.4399999999996,36.53000000000000,3872.22,542.08,22.74000000000020,49.069999999999900,2782.43,533.98,26.76000000000020,42.24000000000000,3774.09,791.7,26.61999999999990,23.809999999999900,4079.4,606.65,28.079999999999500,52.08000000000000,4391.55,548.8,19.26000000000020,42.80000000000010 -477,3367.69,683.55,44.59000000000020,84.76000000000000,3563.77,556.85,22.790000000000000,49.610000000000000,4338.62,702.22,59.5,85.49000000000000,4059.53,727.46,54.5300000000002,100.65000000000000,3824.63,673.99,42.09999999999990,78.47000000000000,3872.29,585.78,26.070000000000200,59.360000000000000,4119.38,597.63,30.67000000000010,56.65000000000000,4419.98,657.38,42.3700000000008,76.03000000000000,3942.14,528.65,21.91000000000030,39.71000000000000,3696.15,519.44,17.559999999999900,34.040000000000000,3751.91,781.37,74.25,125.58000000000000,4291.9,687.51,46.73000000000050,100.20000000000000,3592.41,690.55,59.14000000000030,96.21000000000000,4569.31,709.31,51.06999999999970,93.79000000000010,3586.56,586.5,29.44000000000010,58.60000000000000,2833.51,673.31,47.27000000000000,91.84000000000010,3148.46,528.87,27.94999999999980,48.59000000000000,3503.17,497.52,20.42999999999980,36.53000000000000,3873.22,542.21,22.73000000000000,49.069999999999900,2782.43,533.98,26.76000000000020,42.24000000000000,3777.26,791.72,26.61999999999990,23.809999999999900,4079.83,607.66,28.19000000000050,52.25,4391.64,548.8,19.25999999999930,42.79000000000010 -478,3368.13,683.83,44.73000000000000,84.88,3563.58,556.94,22.800000000000200,49.6099999999999,4340.86,701.95,59.5,85.5,4060.95,727.83,54.73999999999980,100.71000000000000,3828.29,673.93,42.09999999999990,78.47000000000000,3872.92,585.79,26.21000000000000,59.29000000000010,4119.63,598.38,30.68000000000030,56.66000000000000,4423.9,658.4,42.5,76.23000000000000,3942.49,528.61,21.91000000000030,39.71000000000000,3696.45,519.46,17.550000000000200,34.040000000000000,3754.94,781.27,74.25,125.57000000000000,4295.76,687.46,46.71999999999940,100.20000000000000,3594.21,690.23,59.13999999999990,96.21000000000000,4574.23,710.9,51.030000000000700,93.73000000000000,3587.77,586.98,29.44000000000010,58.60000000000000,2836.82,672.87,47.17999999999980,91.75,3148.83,528.93,27.95000000000030,48.59000000000000,3503.83,497.47,20.43000000000030,36.53000000000000,3874.21,542.34,22.73000000000000,49.069999999999900,2782.44,533.98,26.759999999999800,42.24000000000000,3780.43,791.74,26.620000000000300,23.800000000000000,4080.27,608.67,28.29000000000040,52.41000000000010,4391.73,548.79,19.26000000000020,42.80000000000010 -479,3368.57,684.1,44.86999999999990,85.01000000000000,3563.39,557.02,22.800000000000200,49.610000000000000,4343.11,701.69,59.5,85.4899999999999,4062.38,728.19,54.9399999999996,100.79000000000000,3831.95,673.87,42.10000000000040,78.46000000000000,3873.56,585.79,26.340000000000100,59.22000000000000,4119.89,599.14,30.67000000000010,56.65000000000000,4427.81,659.41,42.6299999999992,76.45000000000010,3943.39,528.84,21.91000000000030,39.71999999999990,3696.74,519.48,17.5600000000004,34.040000000000000,3757.98,781.17,74.25,125.57000000000000,4299.62,687.41,46.720000000000300,100.20000000000000,3596.0,689.91,59.15000000000010,96.22000000000000,4579.16,712.49,50.98000000000050,93.67000000000000,3588.98,587.46,29.44000000000010,58.59999999999990,2840.13,672.42,47.08999999999970,91.66000000000010,3149.2,528.99,27.95000000000030,48.59000000000000,3504.48,497.41,20.44000000000010,36.53000000000000,3875.2,542.47,22.73000000000000,49.069999999999900,2782.44,533.98,26.759999999999800,42.24000000000000,3783.6,791.75,26.61999999999990,23.809999999999900,4080.7,609.68,28.400000000000500,52.58000000000000,4391.82,548.78,19.26000000000020,42.80000000000010 -480,3369.02,684.38,45.0,85.12,3563.21,557.11,22.790000000000000,49.610000000000000,4345.36,701.42,59.5,85.5,4063.81,728.56,55.12999999999970,100.86,3835.61,673.81,42.09999999999990,78.46000000000000,3874.19,585.8,26.48999999999980,59.15000000000010,4120.14,599.9,30.67999999999940,56.65000000000000,4431.73,660.43,42.76000000000020,76.66000000000010,3944.29,529.08,21.90000000000010,39.70999999999990,3697.03,519.51,17.559999999999900,34.040000000000000,3761.01,781.06,74.25,125.57000000000000,4303.48,687.36,46.720000000000300,100.20000000000000,3597.8,689.59,59.13999999999990,96.21999999999990,4584.09,714.08,50.93000000000030,93.59999999999990,3590.19,587.95,29.44000000000010,58.59999999999990,2843.43,671.97,47.01000000000020,91.57999999999990,3149.58,529.05,27.95000000000030,48.58000000000000,3505.14,497.36,20.43000000000030,36.53000000000000,3876.19,542.6,22.73000000000000,49.069999999999900,2782.44,533.98,26.759999999999800,42.24000000000000,3786.78,791.77,26.61999999999990,23.800000000000100,4081.14,610.7,28.50000000000050,52.74000000000000,4391.91,548.78,19.26000000000020,42.80000000000010 -481,3369.46,684.66,45.13999999999990,85.24000000000000,3563.02,557.19,22.790000000000000,49.6099999999999,4347.6,701.16,59.5,85.49000000000000,4065.24,728.93,55.32999999999990,100.93000000000000,3839.27,673.75,42.09999999999990,78.46000000000000,3874.83,585.8,26.61999999999990,59.09000000000000,4120.4,600.65,30.68000000000030,56.66000000000000,4435.64,661.44,42.88999999999940,76.88,3945.18,529.31,21.91000000000030,39.71000000000000,3697.33,519.53,17.550000000000200,34.04000000000010,3764.04,780.96,74.25,125.57000000000000,4307.34,687.31,46.720000000000300,100.20000000000000,3599.6,689.27,59.13999999999990,96.22000000000000,4589.01,715.67,50.88000000000010,93.54000000000010,3592.97,588.03,29.44000000000010,58.60000000000000,2846.74,671.53,46.92000000000010,91.49,3149.95,529.1,27.95000000000030,48.59000000000000,3505.8,497.31,20.42999999999980,36.53000000000000,3877.18,542.73,22.74000000000020,49.059999999999900,2782.44,533.98,26.759999999999800,42.24000000000000,3789.95,791.78,26.620000000000300,23.81000000000010,4081.57,611.71,28.610000000000100,52.90000000000000,4392.0,548.77,19.26000000000020,42.80000000000010 -482,3369.85,684.74,45.13999999999990,85.23000000000000,3562.83,557.28,22.790000000000000,49.610000000000000,4349.85,700.89,59.5,85.5,4066.67,729.3,55.51999999999950,100.99,3842.93,673.68,42.10000000000040,78.47000000000000,3875.46,585.81,26.770000000000000,59.010000000000100,4120.66,601.41,30.67000000000010,56.66000000000010,4439.56,662.46,43.00999999999930,77.08999999999990,3946.08,529.55,21.90999999999990,39.71000000000000,3697.62,519.55,17.559999999999900,34.04000000000010,3767.08,780.85,74.25,125.57000000000000,4311.2,687.26,46.720000000000300,100.20000000000000,3601.39,688.95,59.15000000000010,96.21999999999990,4593.94,717.26,50.83000000000080,93.48000000000000,3595.76,588.11,29.4399999999996,58.60000000000000,2850.05,671.08,46.82999999999990,91.41000000000000,3150.32,529.16,27.94999999999980,48.59000000000000,3506.45,497.26,20.44000000000010,36.53000000000000,3878.18,542.86,22.73000000000000,49.059999999999900,2782.44,533.97,26.759999999999800,42.24000000000000,3793.12,791.8,26.61999999999990,23.81000000000010,4082.01,612.72,28.719999999999300,53.069999999999900,4392.09,548.77,19.26000000000020,42.79000000000000 -483,3370.25,684.81,45.13999999999990,85.23000000000000,3562.64,557.36,22.790000000000000,49.610000000000000,4352.1,700.63,59.5,85.49000000000000,4068.1,729.66,55.7199999999998,101.07000000000000,3846.59,673.62,42.09999999999990,78.47000000000000,3876.1,585.82,26.90000000000010,58.93999999999990,4120.91,602.17,30.68000000000030,56.65000000000010,4443.47,663.48,43.14999999999960,77.29000000000000,3946.98,529.78,21.90000000000010,39.71000000000000,3697.91,519.57,17.559999999999900,34.040000000000000,3770.11,780.75,74.25,125.57000000000000,4315.05,687.21,46.72999999999960,100.20000000000000,3603.19,688.63,59.15000000000010,96.22000000000000,4598.87,718.85,50.77999999999980,93.41000000000000,3598.54,588.2,29.44000000000010,58.59999999999990,2853.96,670.97,46.82999999999990,91.41000000000000,3150.69,529.22,27.94999999999980,48.58999999999990,3507.11,497.2,20.42999999999980,36.54000000000000,3879.17,542.99,22.73000000000000,49.059999999999900,2782.44,533.97,26.759999999999800,42.24000000000000,3796.29,791.82,26.61999999999990,23.800000000000000,4082.44,613.73,28.830000000000400,53.23000000000000,4392.18,548.76,19.25999999999930,42.80000000000000 -484,3370.64,684.88,45.14000000000030,85.24000000000000,3562.45,557.45,22.800000000000200,49.6099999999999,4354.34,700.37,59.5,85.49000000000000,4069.53,730.03,55.91999999999960,101.14,3850.25,673.56,42.09999999999990,78.47000000000000,3876.73,585.82,27.040000000000000,58.870000000000000,4121.17,602.92,30.67000000000010,56.66000000000010,4447.39,664.49,43.26999999999950,77.51000000000000,3947.87,530.02,21.91000000000030,39.71000000000000,3698.2,519.59,17.5600000000004,34.040000000000000,3773.14,780.64,74.25,125.57000000000000,4318.91,687.16,46.73000000000050,100.20000000000000,3604.99,688.31,59.14000000000030,96.22000000000000,4603.79,720.44,50.73999999999980,93.34999999999990,3601.33,588.28,29.44000000000010,58.60000000000000,2857.87,670.86,46.82999999999990,91.41000000000000,3151.07,529.28,27.94000000000010,48.59000000000000,3507.77,497.15,20.42999999999980,36.53000000000000,3880.16,543.11,22.73000000000000,49.069999999999900,2782.44,533.97,26.759999999999800,42.24000000000000,3799.46,791.83,26.61999999999990,23.809999999999900,4082.88,614.74,28.93000000000030,53.40000000000000,4392.27,548.75,19.25999999999930,42.80000000000000 -485,3371.03,684.95,45.13999999999990,85.24000000000000,3562.27,557.53,22.790000000000000,49.610000000000000,4356.59,700.1,59.5,85.49000000000000,4070.96,730.4,56.10999999999970,101.21000000000000,3853.91,673.5,42.10000000000040,78.47000000000000,3877.37,585.83,27.18000000000030,58.80000000000000,4121.42,603.68,30.68000000000030,56.66000000000010,4450.03,664.82,43.40000000000060,77.71999999999990,3948.77,530.25,21.90999999999990,39.71000000000000,3698.5,519.61,17.550000000000200,34.040000000000000,3776.18,780.54,74.25,125.57000000000000,4322.77,687.11,46.71999999999940,100.20000000000000,3606.78,687.99,59.14999999999960,96.22000000000000,4608.72,722.03,50.6899999999996,93.28000000000000,3604.11,588.37,29.44000000000010,58.60000000000000,2861.78,670.75,46.82999999999990,91.41000000000000,3151.44,529.34,27.94999999999980,48.58999999999990,3508.43,497.1,20.43000000000030,36.53000000000000,3881.15,543.24,22.73000000000000,49.069999999999900,2782.44,533.97,26.759999999999800,42.24000000000000,3802.63,791.85,26.61999999999990,23.809999999999900,4083.31,615.76,29.04000000000040,53.55000000000000,4392.36,548.75,19.26000000000020,42.79000000000000 -486,3371.43,685.03,45.14000000000030,85.23000000000000,3562.08,557.62,22.790000000000000,49.60000000000000,4358.84,699.84,59.5,85.49000000000000,4072.39,730.77,56.309999999999900,101.27000000000000,3857.56,673.44,42.11000000000010,78.46999999999990,3878.0,585.83,27.320000000000200,58.74000000000000,4121.68,604.44,30.67999999999940,56.65000000000000,4452.68,665.15,43.52999999999980,77.93000000000010,3949.67,530.49,21.90000000000010,39.71000000000000,3698.79,519.64,17.559999999999900,34.040000000000000,3779.21,780.44,74.25,125.57000000000000,4320.43,686.89,46.72999999999960,100.20000000000000,3608.58,687.67,59.15000000000010,96.22000000000000,4613.65,723.62,50.64000000000030,93.22000000000000,3606.9,588.45,29.44000000000010,58.59999999999990,2865.69,670.64,46.82999999999990,91.41000000000000,3151.81,529.4,27.95000000000030,48.58000000000000,3509.08,497.05,20.43000000000030,36.53000000000000,3882.14,543.37,22.74000000000020,49.07000000000010,2782.44,533.97,26.759999999999800,42.24000000000000,3806.73,790.92,26.61999999999990,23.81000000000010,4083.74,616.77,29.150000000000500,53.72000000000000,4392.45,548.74,19.26000000000020,42.80000000000000 -487,3371.82,685.1,45.13999999999990,85.23000000000000,3561.89,557.7,22.790000000000000,49.6099999999999,4361.08,699.57,59.5,85.4899999999999,4073.81,731.13,56.52000000000000,101.35000000000000,3861.22,673.38,42.11000000000010,78.46000000000000,3878.64,585.84,27.45000000000030,58.66000000000000,4121.94,605.19,30.67000000000010,56.66000000000000,4455.32,665.48,43.659999999999900,78.15000000000000,3950.56,530.72,21.90999999999990,39.70999999999990,3699.08,519.66,17.559999999999900,34.04000000000010,3782.24,780.33,74.25,125.57000000000000,4318.1,686.67,46.71999999999940,100.20000000000000,3610.38,687.35,59.13999999999990,96.22000000000000,4618.57,725.21,50.60000000000040,93.16000000000000,3609.68,588.54,29.44000000000010,58.60000000000000,2869.6,670.54,46.82999999999990,91.40000000000010,3152.18,529.45,27.95000000000030,48.58999999999990,3509.74,497.0,20.43000000000030,36.53000000000000,3883.14,543.5,22.73000000000000,49.07000000000010,2782.45,533.97,26.76000000000020,42.24000000000000,3810.83,789.99,26.61999999999990,23.809999999999900,4084.18,617.78,29.25000000000050,53.88,4392.54,548.73,19.26000000000020,42.80000000000000 -488,3372.21,685.17,45.13999999999990,85.24000000000000,3561.7,557.79,22.790000000000000,49.60000000000000,4363.33,699.31,59.5,85.49000000000000,4075.24,731.5,56.71000000000000,101.42000000000000,3864.88,673.32,42.09999999999990,78.45999999999990,3879.27,585.85,27.59999999999990,58.59000000000000,4122.19,605.95,30.68000000000030,56.66000000000000,4457.96,665.81,43.79000000000000,78.36000000000000,3951.46,530.96,21.90999999999990,39.70999999999990,3699.37,519.68,17.559999999999900,34.04000000000010,3785.28,780.23,74.25,125.57000000000000,4315.76,686.45,46.71999999999940,100.20000000000000,3612.17,687.04,59.15000000000010,96.21000000000000,4623.5,726.8,50.54000000000000,93.09000000000010,3612.47,588.62,29.44000000000010,58.60000000000000,2873.51,670.43,46.82999999999990,91.40000000000010,3152.55,529.51,27.94999999999980,48.59000000000000,3510.4,496.94,20.42999999999980,36.53000000000000,3884.13,543.63,22.73000000000000,49.06000000000010,2782.45,533.97,26.76000000000020,42.24000000000000,3814.93,789.06,26.620000000000300,23.81000000000010,4084.61,618.79,29.360000000000100,54.05000000000010,4392.64,548.73,19.25,42.79000000000000 -489,3372.61,685.24,45.13999999999990,85.24000000000000,3561.51,557.87,22.799999999999700,49.610000000000000,4365.58,699.04,59.5,85.49000000000000,4076.67,731.87,56.909999999999900,101.49,3868.54,673.26,42.09999999999990,78.46000000000000,3879.91,585.85,27.73000000000000,58.52000000000000,4122.45,606.71,30.67000000000010,56.65000000000000,4460.61,666.14,43.92000000000010,78.57000000000010,3952.36,531.19,21.90000000000010,39.70999999999990,3699.67,519.7,17.549999999999700,34.040000000000000,3788.31,780.12,74.25,125.57000000000000,4313.42,686.22,46.720000000000300,100.20000000000000,3613.97,686.72,59.15000000000010,96.20999999999990,4628.43,728.39,50.48999999999980,93.03000000000000,3615.25,588.71,29.44000000000010,58.59999999999990,2877.42,670.32,46.82999999999990,91.41000000000000,3154.04,529.58,27.94999999999980,48.58999999999990,3511.05,496.89,20.4399999999996,36.53000000000000,3885.12,543.76,22.73000000000000,49.06000000000010,2782.45,533.97,26.76000000000020,42.24000000000000,3819.03,788.13,26.61999999999990,23.81000000000010,4085.05,619.8,29.46000000000000,54.21000000000000,4392.73,548.72,19.25,42.80000000000000 -490,3373.0,685.31,45.13999999999990,85.24000000000000,3561.33,557.96,22.790000000000000,49.59999999999990,4367.82,698.78,59.5,85.49000000000000,4078.1,732.24,57.09999999999990,101.55000000000000,3872.2,673.19,42.10000000000040,78.46999999999990,3880.54,585.86,27.86999999999990,58.44999999999990,4122.7,607.46,30.68000000000030,56.66000000000000,4463.25,666.47,44.05000000000020,78.78000000000000,3953.25,531.43,21.90999999999990,39.71000000000000,3699.96,519.72,17.559999999999900,34.040000000000000,3791.34,780.02,74.25,125.57000000000000,4311.08,686.0,46.73000000000050,100.20000000000000,3615.77,686.4,59.13999999999990,96.21000000000000,4633.35,729.98,50.44999999999980,92.96000000000000,3618.04,588.79,29.44000000000010,58.60000000000000,2881.33,670.21,46.82999999999990,91.41000000000000,3155.53,529.65,27.94999999999980,48.59000000000000,3511.71,496.84,20.42999999999980,36.53000000000000,3886.11,543.89,22.73999999999980,49.06000000000010,2782.45,533.97,26.76000000000020,42.24000000000000,3823.13,787.2,26.61999999999990,23.809999999999900,4085.48,620.82,29.570000000000200,54.370000000000000,4392.82,548.72,19.25,42.79000000000000 -491,3373.39,685.39,45.14000000000030,85.23000000000000,3561.14,558.04,22.790000000000000,49.610000000000000,4370.07,698.51,59.5,85.5,4079.53,732.6,57.29999999999970,101.63,3875.86,673.13,42.09999999999990,78.47000000000000,3881.18,585.86,28.01000000000020,58.38,4122.96,608.22,30.67000000000010,56.66000000000000,4465.9,666.8,44.17000000000010,78.99000000000000,3954.15,531.66,21.90000000000010,39.71000000000000,3700.25,519.74,17.559999999999900,34.040000000000000,3794.38,779.91,74.25,125.57000000000000,4308.75,685.78,46.720000000000300,100.20000000000000,3617.57,686.08,59.13999999999990,96.20999999999990,4638.28,731.57,50.40000000000060,92.90000000000000,3620.82,588.87,29.44000000000010,58.60000000000000,2885.24,670.1,46.83000000000040,91.41000000000000,3157.01,529.72,27.94999999999980,48.58999999999990,3512.37,496.79,20.43000000000030,36.53000000000000,3887.1,544.01,22.74000000000020,49.07000000000010,2782.45,533.97,26.76000000000020,42.24000000000000,3827.23,786.27,26.61999999999990,23.81000000000010,4085.92,621.83,29.67000000000010,54.54000000000000,4392.91,548.71,19.26000000000020,42.80000000000000 -492,3373.79,685.46,45.13999999999990,85.23000000000000,3560.95,558.13,22.790000000000000,49.60000000000000,4373.19,699.28,59.5,85.5,4080.96,732.97,57.5,101.70000000000000,3879.52,673.07,42.09999999999990,78.46999999999990,3881.81,585.87,28.15000000000010,58.309999999999900,4123.21,608.98,30.68000000000030,56.65000000000000,4468.54,667.12,44.30000000000020,79.21000000000000,3955.05,531.9,21.89999999999960,39.71000000000000,3700.54,519.77,17.559999999999900,34.040000000000000,3797.41,779.81,74.25,125.57000000000000,4306.41,685.56,46.720000000000300,100.20000000000000,3619.36,685.76,59.15000000000010,96.21000000000000,4643.21,733.16,50.35000000000040,92.84000000000010,3623.61,588.96,29.44000000000010,58.59999999999990,2889.15,669.99,46.82999999999990,91.41000000000000,3158.5,529.79,27.94999999999980,48.59000000000000,3513.02,496.73,20.44000000000010,36.54000000000000,3888.1,544.14,22.73000000000000,49.07000000000010,2782.45,533.97,26.76000000000020,42.24000000000000,3831.12,788.14,26.61999999999990,23.800000000000100,4086.35,622.84,29.79000000000040,54.69999999999990,4393.0,548.7,19.26000000000020,42.80000000000000 -493,3374.18,685.53,45.14000000000030,85.24000000000000,3560.76,558.21,22.790000000000000,49.610000000000000,4376.3,700.06,59.5,85.49000000000000,4082.39,733.34,57.690000000000100,101.76,3883.18,673.01,42.10000000000040,78.47000000000000,3882.45,585.87,28.2800000000002,58.25,4123.47,609.74,30.67999999999940,56.65000000000000,4471.19,667.45,44.43000000000030,79.42000000000000,3955.94,532.13,21.90999999999990,39.71000000000000,3700.84,519.79,17.549999999999700,34.04000000000010,3800.44,779.7,74.25,125.58000000000000,4309.88,685.43,46.720000000000300,100.20000000000000,3621.16,685.44,59.14000000000030,96.21999999999990,4648.13,734.75,50.30999999999950,92.77000000000000,3626.39,589.04,29.44000000000010,58.60000000000000,2893.06,669.88,46.82999999999990,91.41000000000000,3159.99,529.86,27.95000000000030,48.59000000000000,3513.68,496.68,20.43000000000030,36.53000000000000,3889.09,544.27,22.73000000000000,49.07000000000010,2782.45,533.97,26.76000000000020,42.24000000000000,3835.0,790.0,26.61999999999990,23.809999999999900,4086.79,623.85,29.890000000000300,54.870000000000000,4393.09,548.7,19.26000000000020,42.79000000000000 -494,3374.57,685.6,45.13999999999990,85.24000000000000,3560.57,558.3,22.790000000000000,49.60000000000000,4379.42,700.83,59.5,85.49000000000000,4083.82,733.71,57.88999999999990,101.83000000000000,3886.84,672.95,42.09999999999990,78.46999999999990,3883.08,585.88,28.43000000000030,58.17000000000000,4123.73,610.49,30.67000000000010,56.66000000000000,4473.83,667.78,44.5600000000004,79.63,3956.84,532.37,21.89999999999960,39.71000000000000,3701.13,519.81,17.559999999999900,34.04000000000010,3803.48,779.6,74.25,125.57000000000000,4313.35,685.29,46.71999999999940,100.20000000000000,3622.96,685.12,59.13999999999990,96.22000000000000,4652.6,735.75,50.25999999999930,92.71000000000000,3629.18,589.13,29.44000000000010,58.60000000000000,2896.97,669.77,46.83000000000040,91.41000000000000,3161.47,529.93,27.95000000000030,48.58000000000000,3514.34,496.63,20.42999999999980,36.53000000000000,3890.74,544.46,22.72000000000030,48.99000000000000,2782.45,533.97,26.76000000000020,42.24000000000000,3838.88,791.87,26.63000000000010,23.800000000000000,4087.22,624.86,30.00000000000050,55.03000000000000,4393.18,548.69,19.25999999999930,42.80000000000000 -495,3374.97,685.68,45.14000000000030,85.23000000000000,3560.38,558.38,22.799999999999700,49.610000000000000,4382.54,701.6,59.5,85.49000000000000,4085.24,734.07,58.09000000000020,101.91000000000000,3890.5,672.89,42.09999999999990,78.46000000000000,3883.72,585.89,28.5600000000004,58.10000000000000,4123.42,611.96,30.850000000000400,57.01000000000000,4476.47,668.11,44.6899999999996,79.84000000000000,3957.74,532.6,21.90000000000010,39.70999999999990,3701.42,519.83,17.559999999999900,34.040000000000000,3806.51,779.5,74.25,125.57000000000000,4316.82,685.16,46.720000000000300,100.20000000000000,3624.75,684.8,59.15000000000010,96.22000000000000,4657.07,736.75,50.21000000000000,92.65000000000000,3631.96,589.21,29.44000000000010,58.59999999999990,2900.88,669.67,46.82999999999990,91.40000000000010,3162.96,530.0,27.94999999999980,48.58000000000000,3514.99,496.58,20.44000000000010,36.53000000000000,3892.38,544.64,22.73000000000000,48.930000000000100,2782.45,533.97,26.76000000000020,42.24000000000000,3842.77,793.73,26.61999999999990,23.809999999999900,4087.66,625.87,30.100000000000400,55.200000000000000,4393.27,548.68,19.25999999999930,42.80000000000010 -496,3375.36,685.75,45.13999999999990,85.23000000000000,3560.2,558.47,22.790000000000000,49.60000000000000,4385.65,702.37,59.5,85.5,4086.67,734.44,58.29000000000000,101.9800000000000,3894.16,672.83,42.10000000000040,78.45999999999990,3884.35,585.89,28.71000000000000,58.03000000000000,4123.11,613.42,31.02000000000040,57.370000000000000,4479.12,668.44,44.81999999999970,80.05000000000000,3958.63,532.84,21.90999999999990,39.70999999999990,3701.71,519.85,17.559999999999900,34.040000000000000,3809.54,779.39,74.25,125.57000000000000,4320.29,685.02,46.720000000000300,100.20000000000000,3626.55,684.48,59.14999999999960,96.22000000000000,4661.54,737.75,50.159999999999900,92.58000000000000,3635.47,589.3,29.44000000000010,58.60000000000000,2904.79,669.56,46.82999999999990,91.40000000000010,3164.45,530.07,27.95000000000030,48.57999999999990,3515.24,496.58,20.43000000000030,36.53000000000000,3894.03,544.82,22.7199999999998,48.8599999999999,2782.46,533.97,26.759999999999800,42.24000000000000,3845.26,793.26,26.61999999999990,23.800000000000000,4088.09,626.89,30.21000000000000,55.35000000000000,4393.36,548.68,19.26000000000020,42.79000000000010 -497,3375.75,685.82,45.13999999999990,85.2399999999999,3560.01,558.55,22.790000000000000,49.610000000000000,4388.77,703.14,59.5,85.5,4088.1,734.81,58.49000000000020,102.04000000000000,3897.82,672.77,42.09999999999990,78.46000000000000,3884.99,585.9,28.840000000000100,57.96000000000000,4122.81,614.89,31.1899999999996,57.73000000000000,4481.76,668.77,44.94999999999980,80.27000000000000,3959.53,533.07,21.89999999999960,39.70999999999990,3701.8,519.89,17.559999999999900,34.040000000000000,3812.58,779.29,74.25,125.57000000000000,4323.76,684.89,46.71999999999940,100.20000000000000,3628.35,684.16,59.13999999999990,96.22000000000000,4666.01,738.75,50.10999999999970,92.52000000000000,3638.98,589.38,29.44000000000010,58.60000000000000,2908.7,669.45,46.83000000000040,91.40000000000000,3165.93,530.13,27.95000000000030,48.59000000000000,3515.48,496.58,20.42999999999980,36.53000000000000,3895.68,545.01,22.71000000000000,48.79000000000000,2782.46,533.96,26.759999999999800,42.24000000000000,3847.75,792.78,26.61999999999990,23.81000000000010,4088.52,627.9,30.320000000000200,55.52000000000000,4393.45,548.67,19.26000000000020,42.80000000000010 -498,3376.15,685.89,45.13999999999990,85.24000000000000,3559.82,558.64,22.790000000000000,49.60000000000000,4391.89,703.92,59.5,85.49000000000000,4089.53,735.17,58.67999999999980,102.12,3901.47,672.7,42.11000000000010,78.46999999999990,3885.62,585.9,28.98000000000000,57.90000000000000,4122.5,616.35,31.35999999999970,58.09000000000000,4484.41,669.1,45.06999999999970,80.48000000000000,3960.43,533.31,21.90000000000010,39.71000000000000,3701.89,519.93,17.559999999999900,34.04000000000010,3815.61,779.18,74.25,125.57000000000000,4327.23,684.75,46.720000000000300,100.20000000000000,3630.14,683.84,59.15000000000010,96.21999999999990,4670.48,739.75,50.0600000000004,92.46000000000000,3642.48,589.47,29.44000000000010,58.60000000000000,2912.61,669.34,46.82999999999990,91.41000000000000,3167.42,530.2,27.94999999999980,48.58999999999990,3515.72,496.58,20.43000000000030,36.53000000000000,3897.33,545.19,22.70000000000030,48.71999999999990,2782.46,533.96,26.759999999999800,42.24000000000000,3850.24,792.31,26.620000000000300,23.800000000000100,4088.96,628.91,30.42000000000010,55.680000000000100,4393.54,548.66,19.26000000000020,42.80000000000010 -499,3376.54,685.96,45.13999999999990,85.24000000000000,3559.63,558.72,22.790000000000000,49.610000000000000,4395.01,704.69,59.5,85.4899999999999,4090.96,735.54,58.88000000000010,102.19000000000000,3905.13,672.64,42.09999999999990,78.47000000000000,3886.26,585.91,29.11999999999990,57.82000000000010,4122.2,617.82,31.529999999999700,58.44999999999990,4487.05,669.43,45.19999999999980,80.69000000000010,3962.58,533.54,21.90000000000010,39.71000000000000,3701.98,519.98,17.559999999999900,34.040000000000000,3818.64,779.08,74.25,125.57000000000000,4330.7,684.62,46.720000000000300,100.20000000000000,3631.94,683.52,59.15000000000010,96.22000000000000,4674.94,740.75,50.02000000000040,92.39,3645.99,589.55,29.44000000000010,58.60000000000000,2916.52,669.23,46.82999999999990,91.41000000000000,3168.91,530.27,27.95000000000030,48.59000000000000,3515.96,496.58,20.44000000000010,36.53000000000000,3898.97,545.37,22.70000000000030,48.65000000000000,2782.46,533.96,26.759999999999800,42.24000000000000,3852.73,791.83,26.61999999999990,23.809999999999900,4089.39,629.92,30.5300000000002,55.85000000000000,4393.63,548.66,19.26000000000020,42.80000000000010 -500,3376.93,686.04,45.14000000000030,85.23000000000000,3559.44,558.81,22.799999999999700,49.60000000000000,4398.12,705.46,59.5,85.49000000000000,4092.39,735.91,59.08000000000040,102.26,3908.79,672.58,42.09999999999990,78.46999999999990,3886.89,585.91,29.26000000000020,57.76000000000000,4121.89,619.29,31.69999999999980,58.80000000000010,4489.7,669.76,45.32999999999990,80.90000000000000,3964.73,533.78,21.90000000000010,39.71000000000000,3702.07,520.02,17.559999999999900,34.040000000000000,3821.68,778.97,74.25,125.57000000000000,4334.16,684.48,46.73000000000050,100.20000000000000,3633.74,683.2,59.14000000000030,96.21999999999990,4679.41,741.75,49.970000000000300,92.33000000000000,3649.5,589.63,29.44000000000010,58.60000000000000,2920.43,669.12,46.83000000000040,91.41000000000000,3170.39,530.34,27.95000000000030,48.58999999999990,3516.21,496.58,20.42999999999980,36.53000000000000,3900.62,545.56,22.70000000000030,48.58000000000000,2782.46,533.96,26.759999999999800,42.24000000000000,3855.22,791.36,26.620000000000300,23.800000000000000,4089.83,630.93,30.63000000000010,56.020000000000100,4393.72,548.65,19.25999999999930,42.80000000000010 -501,3377.33,686.11,45.13999999999990,85.24000000000000,3559.26,558.89,22.790000000000000,49.610000000000000,4401.24,706.23,59.5,85.49000000000000,4093.82,736.28,59.27000000000000,102.32000000000000,3912.45,672.52,42.10000000000040,78.47000000000000,3887.53,585.92,29.38999999999990,57.680000000000100,4121.59,620.75,31.85999999999970,59.16000000000000,4492.34,670.08,45.46000000000000,81.12,3966.88,534.01,21.90999999999990,39.71000000000000,3702.16,520.06,17.550000000000200,34.04000000000010,3824.71,778.87,74.25,125.57000000000000,4337.63,684.35,46.72999999999960,100.20000000000000,3635.53,682.88,59.14999999999960,96.22000000000000,4683.88,742.75,49.92000000000010,92.27000000000000,3653.01,589.72,29.4399999999996,58.60000000000000,2924.34,669.01,46.82999999999990,91.41000000000000,3171.88,530.41,27.94999999999980,48.59000000000000,3516.45,496.58,20.43000000000030,36.53000000000000,3902.27,545.74,22.69000000000010,48.51000000000000,2782.46,533.96,26.759999999999800,42.24000000000000,3857.71,790.88,26.61999999999990,23.81000000000010,4090.26,631.95,30.75,56.17000000000000,4393.81,548.65,19.25999999999930,42.79000000000010 -502,3377.72,686.18,45.14000000000030,85.24000000000000,3559.07,558.98,22.790000000000000,49.60000000000000,4404.36,707.0,59.5,85.5,4095.25,736.64,59.470000000000300,102.40000000000000,3916.11,672.46,42.09999999999990,78.46999999999990,3888.16,585.93,29.540000000000000,57.610000000000000,4121.28,622.22,32.040000000000000,59.52000000000000,4497.62,671.88,45.470000000000300,81.11000000000000,3969.03,534.25,21.90999999999990,39.71000000000000,3702.24,520.1,17.5600000000004,34.040000000000000,3827.74,778.76,74.26000000000020,125.58000000000000,4341.1,684.21,46.72999999999960,100.20000000000000,3637.33,682.57,59.15000000000010,96.20999999999990,4688.35,743.75,49.86999999999990,92.20000000000010,3656.52,589.8,29.44000000000010,58.60000000000000,2928.25,668.9,46.82999999999990,91.41000000000000,3173.37,530.48,27.95000000000030,48.59000000000000,3516.69,496.58,20.42999999999980,36.53000000000000,3903.92,545.92,22.67999999999980,48.450000000000000,2782.46,533.96,26.759999999999800,42.24000000000000,3860.2,790.41,26.620000000000300,23.800000000000100,4090.7,632.96,30.850000000000400,56.33999999999990,4393.9,548.64,19.26000000000020,42.80000000000010 -503,3378.11,686.25,45.13999999999990,85.24000000000000,3558.88,559.06,22.790000000000000,49.610000000000000,4407.47,707.78,59.5,85.49000000000000,4096.68,737.01,59.659999999999900,102.47000000000000,3919.77,672.4,42.09999999999990,78.46000000000000,3888.8,585.93,29.66999999999960,57.54000000000010,4120.97,623.68,32.21000000000000,59.88,4497.77,671.83,45.45999999999910,81.12,3971.19,534.48,21.90000000000010,39.71000000000000,3702.33,520.14,17.559999999999900,34.040000000000000,3830.78,778.66,74.25,125.57000000000000,4344.57,684.08,46.73000000000050,100.20000000000000,3639.13,682.25,59.13999999999990,96.21000000000000,4692.82,744.75,49.82000000000060,92.14,3660.02,589.89,29.44000000000010,58.60000000000000,2932.16,668.79,46.82999999999990,91.41000000000010,3174.85,530.55,27.95000000000030,48.59000000000000,3516.93,496.58,20.44000000000010,36.53000000000000,3905.56,546.11,22.67999999999980,48.370000000000000,2782.46,533.96,26.759999999999800,42.24000000000000,3862.69,789.93,26.61999999999990,23.81000000000010,4091.13,633.97,30.96000000000000,56.5,4393.99,548.63,19.26000000000020,42.80000000000000 -504,3378.51,686.33,45.12999999999970,85.2299999999999,3558.69,559.15,22.790000000000000,49.60000000000000,4410.59,708.55,59.5,85.49000000000000,4099.76,736.45,59.86999999999990,102.54000000000000,3923.43,672.34,42.10000000000040,78.45999999999990,3889.43,585.94,29.809999999999900,57.46999999999990,4120.67,625.15,32.38000000000010,60.23000000000000,4497.92,671.79,45.46000000000000,81.11000000000000,3973.34,534.72,21.89999999999960,39.70999999999990,3702.42,520.18,17.559999999999900,34.04000000000010,3833.81,778.56,74.25,125.57000000000000,4348.04,683.94,46.73000000000050,100.20000000000000,3640.93,681.93,59.14000000000030,96.21000000000000,4697.28,745.75,49.780000000000700,92.08000000000000,3663.53,589.97,29.4399999999996,58.60000000000000,2936.07,668.69,46.82999999999990,91.40000000000000,3176.34,530.62,27.94999999999980,48.59000000000000,3517.18,496.58,20.43000000000030,36.53000000000000,3907.21,546.29,22.67000000000010,48.31000000000010,2782.46,533.96,26.759999999999800,42.24000000000000,3865.18,789.46,26.620000000000300,23.800000000000000,4091.57,634.98,31.059999999999900,56.67000000000000,4394.08,548.63,19.26000000000020,42.79000000000000 -505,3378.9,686.4,45.13999999999990,85.23000000000000,3558.5,559.23,22.800000000000200,49.610000000000000,4413.71,709.32,59.5,85.4899999999999,4102.85,735.89,60.05999999999950,102.61,3927.09,672.27,42.09999999999990,78.47000000000000,3890.07,585.94,29.94999999999980,57.41000000000000,4120.36,626.61,32.55000000000020,60.60000000000000,4498.07,671.74,45.46000000000000,81.12,3975.49,534.95,21.90000000000010,39.70999999999990,3702.51,520.22,17.559999999999900,34.040000000000000,3836.84,778.45,74.25999999999980,125.57000000000000,4351.51,683.81,46.72999999999960,100.20000000000000,3642.72,681.61,59.15000000000010,96.21000000000000,4701.75,746.75,49.72999999999960,92.01,3667.04,590.06,29.44000000000010,58.60000000000000,2939.98,668.58,46.82999999999990,91.40000000000000,3177.83,530.69,27.95000000000030,48.57999999999990,3517.42,496.58,20.42999999999980,36.53000000000000,3908.86,546.47,22.67000000000010,48.24000000000000,2782.47,533.96,26.76000000000020,42.24000000000000,3867.67,788.98,26.61999999999990,23.809999999999900,4092.86,636.38,31.16999999999960,56.82000000000010,4394.17,548.62,19.26000000000020,42.80000000000000 -506,3379.29,686.47,45.13999999999990,85.24000000000000,3558.31,559.32,22.800000000000200,49.59999999999990,4416.83,710.09,59.5,85.49000000000000,4105.94,735.33,60.26000000000020,102.67000000000000,3930.75,672.21,42.09999999999990,78.46999999999990,3890.7,585.95,30.090000000000100,57.32999999999990,4120.06,628.08,32.719999999999300,60.94999999999990,4498.22,671.7,45.46000000000000,81.12,3977.64,535.19,21.91000000000030,39.70999999999990,3702.6,520.26,17.550000000000200,34.040000000000000,3839.88,778.35,74.25,125.57000000000000,4354.98,683.67,46.720000000000300,100.20000000000000,3644.52,681.29,59.15000000000010,96.21000000000000,4706.22,747.75,49.67999999999940,91.95000000000010,3670.55,590.14,29.4399999999996,58.60000000000000,2943.89,668.47,46.82999999999990,91.41000000000000,3179.31,530.76,27.95000000000030,48.58000000000000,3517.66,496.58,20.43000000000030,36.53000000000000,3910.51,546.66,22.65999999999990,48.16000000000010,2782.47,533.96,26.76000000000020,42.24000000000000,3870.16,788.51,26.620000000000300,23.800000000000000,4094.15,637.77,31.270000000000000,56.99000000000000,4394.26,548.61,19.26000000000020,42.80000000000000 -507,3379.69,686.54,45.13000000000010,85.24000000000000,3558.13,559.4,22.790000000000000,49.610000000000000,4419.94,710.86,59.5,85.5,4109.03,734.77,60.44999999999980,102.74,3934.41,672.15,42.10000000000040,78.47000000000000,3891.34,585.95,30.2199999999998,57.27000000000000,4119.75,629.54,32.89000000000030,61.31000000000010,4498.36,671.66,45.46000000000000,81.11000000000000,3979.79,535.42,21.90999999999990,39.71000000000000,3702.69,520.3,17.549999999999700,34.04000000000010,3842.91,778.24,74.25,125.57000000000000,4358.45,683.54,46.720000000000300,100.20000000000000,3646.32,680.97,59.13999999999990,96.20999999999990,4709.03,747.79,50.85000000000040,92.94000000000000,3674.06,590.23,29.44000000000010,58.59000000000000,2947.8,668.36,46.82999999999990,91.41000000000000,3180.8,530.82,27.94999999999980,48.58999999999990,3517.9,496.58,20.44000000000010,36.53000000000000,3912.15,546.84,22.65999999999990,48.10000000000000,2782.47,533.96,26.76000000000020,42.24000000000000,3872.65,788.03,26.61999999999990,23.81000000000010,4095.44,639.16,31.37999999999970,57.16000000000010,4394.35,548.61,19.25999999999930,42.80000000000000 -508,3380.08,686.62,45.13999999999990,85.23000000000000,3557.94,559.49,22.790000000000000,49.60000000000000,4423.06,711.63,59.5,85.5,4112.11,734.21,60.66000000000080,102.81000000000000,3938.07,672.09,42.09999999999990,78.46999999999990,3891.97,585.96,30.370000000000300,57.18999999999990,4119.45,631.01,33.0600000000004,61.67000000000000,4498.51,671.61,45.46000000000000,81.12,3981.94,535.66,21.90999999999990,39.71000000000000,3702.77,520.35,17.559999999999900,34.040000000000000,3845.94,778.14,74.25999999999980,125.57000000000000,4361.92,683.4,46.720000000000300,100.20000000000000,3648.11,680.65,59.15000000000010,96.22000000000000,4711.84,747.83,52.01000000000020,93.92000000000000,3677.56,590.31,29.44000000000010,58.60000000000000,2951.71,668.25,46.82999999999990,91.41000000000000,3182.29,530.89,27.94999999999980,48.59000000000000,3518.15,496.58,20.42999999999980,36.53000000000000,3913.8,547.02,22.64999999999960,48.03000000000000,2782.47,533.96,26.76000000000020,42.24000000000000,3875.14,787.56,26.620000000000300,23.81000000000010,4096.73,640.55,31.49000000000070,57.32000000000010,4394.44,548.6,19.26000000000020,42.80000000000000 -509,3380.47,686.69,45.14000000000030,85.2299999999999,3557.75,559.57,22.790000000000000,49.6099999999999,4426.18,712.41,59.5,85.49000000000000,4115.2,733.64,60.85000000000040,102.89,3941.73,672.03,42.09999999999990,78.47000000000000,3892.61,585.97,30.5,57.120000000000000,4120.4,631.56,33.23000000000050,62.020000000000100,4498.66,671.57,45.46000000000000,81.12,3984.1,535.89,21.90000000000010,39.71000000000000,3702.86,520.39,17.559999999999900,34.040000000000000,3848.98,778.03,74.25,125.57000000000000,4365.39,683.27,46.71999999999940,100.20000000000000,3649.91,680.33,59.15000000000010,96.21999999999990,4714.65,747.87,53.18000000000030,94.91000000000000,3681.07,590.39,29.44000000000010,58.60000000000000,2955.62,668.14,46.84000000000020,91.41000000000000,3184.41,530.99,27.95000000000030,48.59000000000000,3518.39,496.58,20.43000000000030,36.53000000000000,3917.51,547.56,22.63999999999990,47.96000000000000,2782.47,533.96,26.76000000000020,42.24000000000000,3877.63,787.08,26.61999999999990,23.809999999999900,4098.02,641.95,31.59999999999950,57.47999999999990,4394.53,548.6,19.26000000000020,42.79000000000000 -510,3380.87,686.76,45.13000000000010,85.24000000000000,3557.56,559.66,22.790000000000000,49.60000000000000,4429.29,713.18,59.5,85.49000000000000,4118.29,733.08,61.05000000000020,102.96000000000000,3945.38,671.97,42.10999999999970,78.47000000000000,3893.24,585.97,30.65000000000010,57.059999999999900,4121.35,632.1,33.39999999999960,62.39000000000000,4498.81,671.53,45.46000000000000,81.11000000000000,3986.25,536.13,21.90000000000010,39.71000000000000,3702.95,520.43,17.5600000000004,34.04000000000010,3852.01,777.93,74.25,125.57000000000000,4368.86,683.13,46.720000000000300,100.20000000000000,3651.71,680.01,59.13999999999990,96.22000000000000,4717.45,747.91,54.35000000000040,95.89,3684.58,590.48,29.44000000000010,58.60000000000000,2959.53,668.03,46.83999999999970,91.41000000000010,3186.54,531.08,27.94999999999980,48.58999999999990,3518.63,496.58,20.44000000000010,36.53000000000000,3921.21,548.1,22.63999999999990,47.89000000000000,2782.47,533.96,26.76000000000020,42.24000000000000,3880.12,786.61,26.61999999999990,23.809999999999900,4099.32,643.34,31.700000000000700,57.65000000000000,4394.62,548.59,19.26000000000020,42.80000000000000 -511,3382.16,686.89,45.14000000000030,85.24000000000000,3557.37,559.74,22.800000000000200,49.610000000000000,4432.41,713.95,59.5,85.49000000000000,4121.38,732.52,61.23999999999980,103.03000000000000,3949.04,671.91,42.09999999999990,78.46000000000000,3893.88,585.98,30.779999999999700,56.98000000000000,4122.3,632.65,33.56999999999970,62.74000000000000,4498.96,671.48,45.46000000000000,81.12,3988.4,536.36,21.90999999999990,39.71000000000000,3703.04,520.47,17.559999999999900,34.040000000000000,3855.04,777.83,74.26000000000020,125.57000000000000,4372.33,683.0,46.720000000000300,100.20000000000000,3653.5,679.69,59.15000000000010,96.21999999999990,4720.26,747.94,55.51999999999950,96.89,3688.09,590.56,29.44000000000010,58.60000000000000,2963.44,667.92,46.84000000000020,91.41000000000010,3188.66,531.17,27.95000000000030,48.59000000000000,3518.88,496.58,20.42999999999980,36.53000000000000,3924.92,548.64,22.63000000000010,47.82000000000010,2782.47,533.95,26.76000000000020,42.24000000000000,3882.65,786.68,26.61999999999990,23.81000000000010,4100.61,644.73,31.8100000000004,57.809999999999900,4394.71,548.58,19.26000000000020,42.80000000000000 -512,3383.45,687.03,45.14000000000030,85.23000000000000,3557.19,559.83,22.790000000000000,49.59999999999990,4435.53,714.72,59.5,85.5,4124.46,731.96,61.44999999999980,103.10000000000000,3952.7,671.85,42.10000000000040,78.45999999999990,3894.51,585.98,30.91999999999960,56.92000000000000,4123.25,633.19,33.73999999999980,63.09999999999990,4499.1,671.44,45.46000000000000,81.1099999999999,3990.55,536.6,21.90999999999990,39.70999999999990,3703.13,520.51,17.549999999999700,34.040000000000000,3858.08,777.72,74.25,125.57000000000000,4375.8,682.86,46.720000000000300,100.20000000000000,3655.3,679.37,59.14999999999960,96.22000000000000,4723.07,747.98,56.69000000000050,97.88,3691.6,590.65,29.44000000000010,58.60000000000000,2967.35,667.82,46.84000000000020,91.40000000000000,3190.79,531.27,27.94999999999980,48.59000000000000,3519.1,496.58,20.43000000000030,36.53000000000000,3928.62,549.18,22.63000000000010,47.75,2782.47,533.95,26.76000000000020,42.24000000000000,3885.17,786.75,26.61999999999990,23.800000000000000,4101.9,646.13,31.910000000000800,57.97000000000000,4394.81,548.58,19.25,42.79000000000000 -513,3384.74,687.16,45.14000000000030,85.24000000000000,3557.0,559.91,22.790000000000000,49.610000000000000,4438.65,715.49,59.5,85.5,4127.55,731.4,61.63999999999940,103.17000000000000,3956.36,671.78,42.09999999999990,78.47000000000000,3895.15,585.99,31.059999999999900,56.84000000000000,4124.2,633.74,33.92000000000010,63.46000000000000,4499.25,671.4,45.46000000000000,81.11000000000000,3992.7,536.83,21.91000000000030,39.70999999999990,3703.21,520.55,17.559999999999900,34.04000000000010,3861.11,777.62,74.25,125.57000000000000,4379.27,682.73,46.71999999999940,100.20000000000000,3657.1,679.05,59.13999999999990,96.22000000000000,4725.88,748.02,57.849999999999500,98.86,3695.1,590.73,29.44000000000010,58.60000000000000,2971.26,667.71,46.83999999999970,91.40000000000000,3192.91,531.36,27.95000000000030,48.59000000000000,3519.32,496.58,20.44000000000010,36.53000000000000,3932.33,549.72,22.61999999999990,47.68000000000000,2782.47,533.95,26.76000000000020,42.24000000000000,3887.7,786.82,26.620000000000300,23.800000000000000,4100.85,646.95,34.42000000000010,64.80000000000000,4394.9,548.57,19.25,42.80000000000000 -514,3386.04,687.3,45.13999999999990,85.23000000000000,3556.81,560.0,22.790000000000000,49.60000000000000,4441.76,716.27,59.5,85.49000000000000,4130.64,730.84,61.83999999999920,103.23000000000000,3960.02,671.72,42.09999999999990,78.47000000000000,3895.78,586.0,31.19999999999980,56.77000000000000,4125.15,634.28,34.090000000000100,63.82000000000010,4499.4,671.35,45.46000000000000,81.12,3994.86,537.06,21.90000000000010,39.72000000000000,3703.3,520.59,17.559999999999900,34.040000000000000,3864.15,777.51,74.25,125.57000000000000,4382.74,682.59,46.720000000000300,100.20000000000000,3658.9,678.73,59.13999999999990,96.22000000000000,4728.69,748.06,59.02000000000040,99.85000000000000,3698.61,590.82,29.44000000000010,58.59999999999990,2975.17,667.6,46.84000000000020,91.40000000000000,3195.04,531.46,27.94999999999980,48.57999999999990,3519.55,496.58,20.42999999999980,36.53000000000000,3936.03,550.26,22.61999999999990,47.610000000000000,2782.48,533.95,26.759999999999800,42.24000000000000,3890.23,786.89,26.61999999999990,23.800000000000100,4099.8,647.77,36.92999999999940,71.63,4394.99,548.56,19.25,42.80000000000010 -515,3387.33,687.43,45.13999999999990,85.24000000000000,3556.62,560.08,22.790000000000000,49.610000000000000,4444.88,717.04,59.5,85.49000000000000,4133.73,730.28,62.030000000000700,103.30000000000000,3963.68,671.66,42.10000000000040,78.47000000000000,3896.42,586.0,31.329999999999900,56.71000000000000,4126.1,634.83,34.25999999999930,64.17000000000000,4499.55,671.31,45.46000000000000,81.11000000000000,3997.01,537.3,21.89999999999960,39.71000000000000,3703.89,520.72,17.550000000000200,34.040000000000000,3867.18,777.41,74.25,125.57000000000000,4386.21,682.46,46.720000000000300,100.20000000000000,3660.69,678.41,59.15000000000010,96.22000000000000,4731.49,748.1,60.19000000000050,100.83000000000000,3702.12,590.9,29.44000000000010,58.60000000000000,2979.09,667.49,46.82999999999990,91.41000000000000,3197.16,531.55,27.95000000000030,48.59000000000000,3519.77,496.58,20.42999999999980,36.53000000000000,3939.74,550.79,22.610000000000100,47.55000000000010,2782.48,533.95,26.759999999999800,42.24000000000000,3892.75,786.95,26.61999999999990,23.809999999999900,4100.93,648.6,37.25999999999930,72.14000000000000,4395.08,548.56,19.26000000000020,42.79000000000010 -516,3388.62,687.56,45.14000000000030,85.24000000000000,3556.43,560.17,22.800000000000200,49.60000000000000,4448.0,717.81,59.5,85.49000000000000,4136.81,729.72,62.23999999999980,103.37,3967.34,671.6,42.09999999999990,78.47000000000000,3897.05,586.01,31.48000000000000,56.63,4127.06,635.38,34.41999999999920,64.53000000000000,4499.7,671.26,45.46000000000000,81.12,3999.16,537.53,21.91000000000030,39.72000000000000,3704.47,520.84,17.5600000000004,34.040000000000000,3870.21,777.3,74.25,125.57000000000000,4389.7,682.33,46.720000000000300,100.20000000000000,3662.49,678.1,59.14000000000030,96.20999999999990,4734.3,748.14,61.35999999999970,101.82000000000000,3705.63,590.98,29.44000000000010,58.60000000000000,2983.0,667.38,46.82999999999990,91.41000000000000,3199.29,531.64,27.94999999999980,48.59000000000000,3519.99,496.58,20.44000000000010,36.53000000000000,3943.44,551.33,22.610000000000100,47.47999999999990,2782.48,533.95,26.759999999999800,42.24000000000000,3895.28,787.02,26.61999999999990,23.81000000000010,4102.06,649.42,37.58999999999920,72.66000000000010,4395.17,548.55,19.26000000000020,42.80000000000010 -517,3389.91,687.7,45.14000000000030,85.2299999999999,3556.25,560.25,22.790000000000000,49.610000000000000,4451.12,718.58,59.5,85.49000000000000,4139.9,729.15,62.43000000000030,103.45000000000000,3971.0,671.54,42.09999999999990,78.47000000000000,3897.69,586.01,31.610000000000100,56.57000000000010,4128.01,635.92,34.590000000000100,64.89000000000000,4499.84,671.22,45.46000000000000,81.12,4001.31,537.77,21.90999999999990,39.71000000000000,3705.05,520.97,17.559999999999900,34.040000000000000,3873.25,777.2,74.25,125.57000000000000,4393.19,682.19,46.720000000000300,100.20000000000000,3664.29,677.78,59.13999999999990,96.21000000000000,4737.11,748.17,62.530000000000700,102.81000000000000,3709.14,591.07,29.44000000000010,58.59999999999990,2986.91,667.27,46.82999999999990,91.41000000000000,3201.41,531.74,27.95000000000030,48.58000000000000,3520.22,496.58,20.43000000000030,36.53000000000000,3947.14,551.87,22.610000000000100,47.41000000000000,2782.48,533.95,26.759999999999800,42.24000000000000,3897.8,787.09,26.62999999999970,23.809999999999900,4103.19,650.25,37.92000000000010,73.18000000000000,4395.26,548.54,19.26000000000020,42.80000000000010 -518,3391.21,687.83,45.13999999999990,85.24000000000000,3556.06,560.34,22.790000000000000,49.60000000000000,4454.23,719.35,59.5,85.5,4143.18,729.31,62.42999999999940,103.45000000000000,3974.66,671.48,42.10000000000040,78.46000000000000,3898.32,586.02,31.75,56.49000000000000,4128.96,636.47,34.76000000000020,65.25,4499.99,671.18,45.46000000000000,81.11000000000000,4003.46,538.0,21.90999999999990,39.72000000000000,3705.64,521.09,17.550000000000200,34.040000000000000,3876.28,777.09,74.25,125.58000000000000,4396.67,682.06,46.72999999999960,100.20000000000000,3666.08,677.46,59.15000000000010,96.20999999999990,4739.92,748.21,63.6899999999996,103.80000000000000,3712.64,591.15,29.44000000000010,58.60000000000000,2990.82,667.16,46.82999999999990,91.41000000000010,3203.54,531.83,27.94999999999980,48.58999999999990,3520.44,496.58,20.44000000000010,36.53000000000000,3950.85,552.41,22.59999999999990,47.34000000000000,2782.48,533.95,26.759999999999800,42.24000000000000,3900.33,787.16,26.61999999999990,23.81000000000010,4104.32,651.07,38.25,73.69999999999990,4395.35,548.54,19.25999999999930,42.80000000000010 -519,3392.5,687.97,45.13999999999990,85.23000000000000,3555.87,560.42,22.790000000000000,49.610000000000000,4457.35,720.13,59.5,85.49000000000000,4146.47,729.47,62.42999999999940,103.45000000000000,3978.32,671.42,42.09999999999990,78.46000000000000,3898.96,586.02,31.88999999999990,56.430000000000100,4129.91,637.01,34.94000000000050,65.61000000000000,4500.14,671.13,45.46000000000000,81.12,4005.62,538.24,21.90000000000010,39.71000000000000,3706.22,521.21,17.5600000000004,34.040000000000000,3879.31,776.99,74.25,125.57000000000000,4400.16,681.92,46.720000000000300,100.20000000000000,3667.88,677.14,59.15000000000010,96.21000000000000,4742.73,748.25,64.86000000000060,104.79000000000000,3716.15,591.24,29.44000000000010,58.60000000000000,2994.73,667.05,46.82999999999990,91.41000000000010,3205.66,531.92,27.95000000000030,48.59000000000000,3520.67,496.58,20.42999999999980,36.53000000000000,3954.55,552.95,22.59999999999990,47.27000000000000,2782.48,533.95,26.759999999999800,42.24000000000000,3902.86,787.23,26.61999999999990,23.809999999999900,4105.45,651.9,38.57999999999990,74.21000000000000,4395.44,548.53,19.26000000000020,42.80000000000010 -520,3393.79,688.1,45.13999999999990,85.24000000000000,3555.68,560.51,22.790000000000000,49.60000000000000,4460.47,720.9,59.5,85.49000000000000,4149.75,729.63,62.43000000000030,103.44000000000000,3981.98,671.36,42.09999999999990,78.46000000000000,3899.59,586.03,32.029999999999700,56.35000000000000,4130.86,637.56,35.11000000000060,65.96000000000000,4500.29,671.09,45.46000000000000,81.11000000000000,4007.77,538.47,21.90000000000010,39.72000000000000,3706.8,521.34,17.559999999999900,34.040000000000000,3882.35,776.89,74.25,125.57000000000000,4403.65,681.79,46.720000000000300,100.20000000000000,3669.68,676.82,59.14000000000030,96.20999999999990,4745.53,748.29,66.03000000000070,105.77000000000000,3719.66,591.32,29.44000000000010,58.59999999999990,2998.64,666.94,46.82999999999990,91.41000000000000,3207.79,532.02,27.94999999999980,48.58000000000000,3520.89,496.58,20.43000000000030,36.53000000000000,3958.26,553.49,22.58999999999970,47.18999999999990,2782.48,533.95,26.759999999999800,42.24000000000000,3905.38,787.3,26.63000000000010,23.81000000000010,4106.58,652.72,38.909999999999900,74.73000000000000,4395.53,548.53,19.26000000000020,42.79000000000010 -521,3395.08,688.24,45.13999999999990,85.23000000000000,3555.49,560.59,22.800000000000200,49.610000000000000,4463.58,721.67,59.5,85.49000000000000,4153.03,729.79,62.43000000000030,103.44000000000000,3985.63,671.29,42.10999999999970,78.47000000000000,3900.23,586.04,32.159999999999900,56.280000000000100,4131.81,638.1,35.279999999999700,66.32999999999990,4500.44,671.05,45.46000000000000,81.11000000000000,4009.92,538.71,21.90999999999990,39.70999999999990,3707.39,521.46,17.559999999999900,34.040000000000000,3885.38,776.78,74.25,125.57000000000000,4407.14,681.65,46.71999999999940,100.20000000000000,3671.47,676.5,59.15000000000010,96.21000000000000,4748.34,748.33,67.19999999999980,106.76,3723.17,591.41,29.44000000000010,58.60000000000000,3002.55,666.84,46.82999999999990,91.40000000000000,3209.91,532.11,27.95000000000030,48.59000000000000,3521.11,496.58,20.44000000000010,36.53000000000000,3961.96,554.02,22.590000000000100,47.13,2782.48,533.95,26.759999999999800,42.24000000000000,3907.91,787.37,26.620000000000300,23.809999999999900,4107.71,653.54,39.23999999999980,75.25,4395.62,548.52,19.26000000000020,42.80000000000010 -522,3396.38,688.37,45.13999999999990,85.24000000000000,3555.3,560.68,22.799999999999700,49.60000000000000,4466.7,722.44,59.5,85.4899999999999,4156.31,729.95,62.4399999999996,103.44000000000000,3989.29,671.23,42.11000000000010,78.47000000000000,3900.86,586.04,32.309999999999900,56.22000000000000,4132.76,638.65,35.44999999999980,66.68000000000010,4500.58,671.0,45.46000000000000,81.12,4013.88,538.94,21.90000000000010,39.71999999999990,3707.97,521.59,17.5600000000004,34.040000000000000,3888.41,776.68,74.25,125.57000000000000,4410.63,681.52,46.720000000000300,100.20000000000000,3673.27,676.18,59.15000000000010,96.22000000000000,4751.15,748.36,68.3700000000008,107.75,3726.68,591.49,29.44000000000010,58.60000000000000,3006.46,666.73,46.82999999999990,91.40000000000000,3212.04,532.2,27.94000000000010,48.58999999999990,3521.34,496.58,20.42999999999980,36.53000000000000,3965.67,554.56,22.579999999999900,47.06000000000010,2782.49,533.95,26.76000000000020,42.24000000000000,3910.44,787.44,26.61999999999990,23.809999999999900,4108.84,654.37,39.56999999999970,75.77000000000000,4395.54,548.52,19.27000000000040,42.79000000000000 -523,3397.67,688.5,45.13999999999990,85.24000000000000,3555.12,560.76,22.790000000000000,49.610000000000000,4469.82,723.21,59.5,85.5,4159.6,730.1,62.42999999999940,103.45000000000000,3992.95,671.17,42.10000000000040,78.47000000000000,3901.5,586.05,32.440000000000100,56.1400000000001,4133.71,639.2,35.61999999999990,67.04000000000000,4500.73,670.96,45.46000000000000,81.11000000000000,4017.83,539.18,21.90999999999990,39.71000000000000,3708.56,521.71,17.550000000000200,34.040000000000000,3891.45,776.57,74.25,125.57000000000000,4414.12,681.38,46.720000000000300,100.20000000000000,3675.07,675.86,59.13999999999990,96.22000000000000,4753.96,748.4,69.52999999999980,108.74,3730.18,591.58,29.44000000000010,58.59999999999990,3010.37,666.62,46.82999999999990,91.41000000000000,3214.16,532.3,27.95000000000030,48.59000000000000,3521.56,496.58,20.44000000000010,36.53000000000000,3969.37,555.1,22.579999999999900,46.99000000000000,2782.49,533.95,26.76000000000020,42.24000000000000,3912.96,787.51,26.61999999999990,23.800000000000000,4109.97,655.19,39.89999999999960,76.29000000000000,4395.46,548.51,19.279999999999700,42.80000000000000 -524,3398.96,688.64,45.13999999999990,85.23000000000000,3554.93,560.85,22.790000000000000,49.60000000000000,4474.05,723.05,59.69999999999980,85.98000000000000,4162.88,730.26,62.43000000000030,103.45000000000000,3995.24,671.11,42.10000000000040,78.47000000000000,3902.13,586.05,32.58999999999970,56.08000000000000,4134.67,639.74,35.779999999999700,67.40000000000000,4500.88,670.91,45.46000000000000,81.12,4020.41,539.68,22.24000000000020,39.84000000000000,3709.14,521.83,17.559999999999900,34.040000000000000,3894.48,776.47,74.25,125.57000000000000,4417.6,681.25,46.72999999999960,100.20000000000000,3676.86,675.54,59.15000000000010,96.22000000000000,4753.74,748.21,70.69999999999980,109.72000000000000,3733.69,591.66,29.44000000000010,58.60000000000000,3014.28,666.51,46.82999999999990,91.41000000000000,3216.29,532.39,27.94000000000010,48.59000000000000,3521.79,496.58,20.42999999999980,36.53000000000000,3973.08,555.64,22.570000000000200,46.92000000000000,2782.49,533.95,26.76000000000020,42.24000000000000,3915.49,787.58,26.620000000000300,23.800000000000000,4111.1,656.02,40.22999999999960,76.80000000000010,4395.39,548.51,19.290000000000000,42.80000000000000 -525,3400.26,688.77,45.12999999999970,85.24000000000000,3554.74,560.93,22.79000000000040,49.610000000000000,4478.29,722.89,59.89000000000030,86.45000000000010,4166.16,730.42,62.43000000000030,103.45000000000000,3997.53,671.05,42.09999999999990,78.47000000000000,3902.77,586.06,32.7199999999998,56.0,4135.62,640.29,35.96000000000000,67.75,4501.03,670.87,45.46000000000000,81.12,4022.98,540.18,22.579999999999900,39.97000000000000,3709.72,521.96,17.5600000000004,34.040000000000000,3897.51,776.36,74.25,125.57000000000000,4421.09,681.11,46.720000000000300,100.20000000000000,3678.66,675.22,59.15000000000010,96.22000000000000,4753.53,748.01,71.86000000000060,110.72000000000000,3737.2,591.74,29.44000000000010,58.60000000000000,3018.19,666.4,46.82999999999990,91.41000000000000,3218.41,532.48,27.95000000000030,48.59000000000000,3522.01,496.58,20.42999999999980,36.53000000000000,3976.78,556.18,22.559999999999900,46.85000000000000,2782.49,533.94,26.76000000000020,42.239999999999900,3918.02,787.65,26.61999999999990,23.800000000000100,4112.23,656.84,40.5600000000004,77.31999999999990,4395.31,548.51,19.299999999999300,42.79000000000000 -526,3401.55,688.91,45.13999999999990,85.23000000000000,3554.55,561.02,22.790000000000000,49.60000000000000,4482.53,722.73,60.09000000000020,86.93000000000000,4169.45,730.58,62.43000000000030,103.44000000000000,3999.82,670.99,42.09999999999990,78.46000000000000,3903.4,586.06,32.86000000000010,55.940000000000100,4136.57,640.83,36.13000000000010,68.12,4501.18,670.83,45.46000000000000,81.11000000000000,4025.56,540.67,22.92000000000010,40.110000000000000,3710.31,522.08,17.550000000000200,34.040000000000000,3900.55,776.26,74.25,125.57000000000000,4424.58,680.98,46.720000000000300,100.20000000000000,3680.46,674.9,59.13999999999990,96.22000000000000,4753.31,747.82,73.04000000000000,111.70000000000000,3740.71,591.83,29.44000000000010,58.59999999999990,3022.1,666.29,46.82999999999990,91.41000000000010,3220.54,532.58,27.94000000000010,48.58999999999990,3522.23,496.58,20.44000000000010,36.53000000000000,3980.49,556.72,22.550000000000200,46.78000000000000,2782.49,533.94,26.76000000000020,42.239999999999900,3920.54,787.71,26.61999999999990,23.809999999999900,4113.36,657.66,40.89000000000030,77.85000000000000,4395.23,548.5,19.32000000000060,42.80000000000000 -527,3402.84,689.04,45.13999999999990,85.24000000000000,3554.36,561.1,22.799999999999700,49.610000000000000,4486.76,722.57,60.29000000000000,87.41000000000000,4172.73,730.74,62.43000000000030,103.44000000000000,4002.11,670.93,42.09999999999990,78.46000000000000,3905.68,586.23,32.86000000000010,55.93000000000000,4137.52,641.38,36.29999999999930,68.47000000000000,4501.32,670.78,45.46000000000000,81.12,4028.14,541.17,23.25,40.24000000000000,3710.89,522.21,17.559999999999900,34.040000000000000,3903.58,776.16,74.25,125.57000000000000,4428.07,680.84,46.720000000000300,100.20000000000000,3682.26,674.58,59.13999999999990,96.21999999999990,4753.09,747.62,74.21000000000000,112.69000000000000,3744.34,592.13,29.36999999999990,58.51000000000000,3026.01,666.18,46.82999999999990,91.41000000000010,3222.66,532.67,27.95000000000030,48.59000000000000,3522.46,496.58,20.42999999999980,36.53000000000000,3984.19,557.26,22.549999999999700,46.71000000000000,2782.49,533.94,26.76000000000020,42.239999999999900,3923.57,788.45,26.61999999999990,23.800000000000000,4114.49,658.49,41.220000000000300,78.36000000000000,4395.15,548.5,19.329999999999900,42.80000000000000 -528,3404.13,689.17,45.13999999999990,85.24000000000000,3554.18,561.19,22.790000000000000,49.59999999999990,4491.0,722.42,60.47999999999960,87.88,4176.01,730.89,62.42999999999940,103.45000000000000,4004.4,670.87,42.09999999999990,78.46000000000000,3907.96,586.39,32.86000000000010,55.940000000000100,4138.47,641.92,36.46999999999940,68.83000000000000,4501.47,670.74,45.46000000000000,81.12,4030.72,541.67,23.580000000000400,40.370000000000000,3711.47,522.33,17.5600000000004,34.040000000000000,3906.61,776.05,74.25,125.57000000000000,4431.56,680.71,46.71999999999940,100.20000000000000,3684.05,674.26,59.14999999999960,96.22000000000000,4752.88,747.43,75.36999999999990,113.68000000000000,3747.96,592.43,29.309999999999900,58.430000000000100,3029.92,666.07,46.82999999999990,91.41000000000000,3224.79,532.77,27.94000000000010,48.58000000000000,3522.61,496.76,20.42999999999980,36.53000000000000,3987.9,557.79,22.540000000000000,46.65000000000010,2782.49,533.94,26.76000000000020,42.239999999999900,3926.6,789.18,26.63000000000010,23.800000000000100,4115.62,659.31,41.55000000000020,78.88000000000010,4395.08,548.5,19.329999999999900,42.79000000000000 -529,3405.43,689.31,45.14000000000030,85.24000000000000,3554.58,561.09,22.790000000000000,49.610000000000000,4495.23,722.26,60.69000000000050,88.36000000000000,4179.3,731.05,62.42999999999940,103.45000000000000,4006.68,670.8,42.11000000000010,78.47000000000000,3910.24,586.55,32.870000000000300,55.940000000000100,4139.42,642.47,36.64000000000030,69.18999999999990,4501.62,670.7,45.46000000000000,81.1099999999999,4033.29,542.17,23.92999999999980,40.5,3712.06,522.45,17.559999999999900,34.040000000000000,3909.65,775.95,74.25,125.57000000000000,4435.04,680.57,46.73000000000050,100.20000000000000,3685.85,673.94,59.13999999999990,96.21999999999990,4752.66,747.24,76.54000000000000,114.66000000000000,3751.59,592.74,29.25,58.33000000000000,3033.83,665.97,46.82999999999990,91.40000000000000,3226.91,532.86,27.95000000000030,48.59000000000000,3522.76,496.94,20.42999999999980,36.53000000000000,3991.6,558.33,22.540000000000000,46.57999999999990,2782.49,533.94,26.76000000000020,42.239999999999900,3929.64,789.91,26.620000000000300,23.81000000000010,4116.75,660.14,41.88000000000010,79.39000000000000,4395.0,548.49,19.350000000000400,42.80000000000000 -530,3406.72,689.44,45.14000000000030,85.2399999999999,3554.98,560.99,22.800000000000200,49.610000000000000,4499.47,722.1,60.88000000000010,88.84000000000000,4182.58,731.21,62.43000000000030,103.45000000000000,4008.97,670.74,42.10000000000040,78.47000000000000,3912.52,586.72,32.86999999999990,55.93000000000000,4140.37,643.02,36.8100000000004,69.54000000000000,4501.77,670.65,45.45999999999910,81.12,4035.87,542.67,24.26000000000020,40.63,3712.64,522.58,17.559999999999900,34.040000000000000,3912.68,775.84,74.25,125.57000000000000,4438.53,680.44,46.73000000000050,100.20000000000000,3687.65,673.62,59.13999999999990,96.22000000000000,4751.31,746.86,76.15999999999990,114.10000000000000,3755.22,593.04,29.18000000000030,58.24000000000000,3037.74,665.86,46.83000000000040,91.40000000000000,3229.04,532.95,27.94000000000010,48.58999999999990,3522.91,497.12,20.43000000000030,36.54000000000000,3996.32,559.03,22.529999999999700,46.51000000000000,2782.49,533.94,26.76000000000020,42.239999999999900,3932.67,790.64,26.61999999999990,23.81000000000010,4117.88,660.96,42.21000000000000,79.91000000000000,4394.92,548.49,19.35999999999970,42.80000000000000 -531,3408.01,689.58,45.13999999999990,85.2299999999999,3555.39,560.89,22.790000000000000,49.610000000000000,4503.7,721.94,61.07999999999990,89.31999999999990,4185.86,731.37,62.43000000000030,103.45000000000000,4011.26,670.68,42.09999999999990,78.47000000000000,3914.81,586.88,32.86000000000010,55.940000000000100,4141.32,643.56,36.99000000000070,69.91000000000010,4501.92,670.61,45.46000000000000,81.11000000000000,4038.45,543.17,24.590000000000100,40.76000000000000,3713.22,522.7,17.5600000000004,34.040000000000000,3915.71,775.74,74.25,125.57000000000000,4441.93,680.77,46.71999999999940,100.20000000000000,3689.44,673.31,59.15000000000010,96.21000000000000,4749.97,746.47,75.77999999999980,113.55000000000000,3758.84,593.34,29.11999999999990,58.16000000000000,3041.65,665.75,46.82999999999990,91.40000000000000,3231.16,533.05,27.95000000000030,48.58000000000000,3523.06,497.31,20.42999999999980,36.53000000000000,4001.04,559.73,22.5300000000002,46.43999999999990,2782.5,533.94,26.76000000000020,42.239999999999900,3935.7,791.37,26.620000000000300,23.809999999999900,4119.01,661.78,42.54000000000000,80.44000000000010,4394.84,548.49,19.36999999999990,42.79000000000000 -532,3409.3,689.71,45.13999999999990,85.24000000000000,3555.79,560.8,22.790000000000000,49.60000000000000,4507.94,721.78,61.27000000000040,89.80000000000010,4189.14,731.53,62.4399999999996,103.44000000000000,4013.55,670.62,42.09999999999990,78.47000000000000,3917.09,587.04,32.85999999999970,55.940000000000100,4142.27,644.11,37.159999999999900,70.26000000000000,4502.06,670.57,45.46000000000000,81.1099999999999,4041.03,543.67,24.92999999999980,40.89000000000000,3713.81,522.83,17.559999999999900,34.040000000000000,3918.75,775.63,74.25,125.57000000000000,4445.33,681.1,46.720000000000300,100.20000000000000,3691.24,672.99,59.15000000000010,96.21000000000000,4748.62,746.09,75.40000000000060,112.99,3762.47,593.64,29.050000000000200,58.07000000000010,3045.56,665.64,46.82999999999990,91.41000000000000,3233.29,533.14,27.94000000000010,48.59000000000000,3523.21,497.49,20.42999999999980,36.53000000000000,4005.75,560.43,22.5300000000002,46.370000000000000,2782.5,533.94,26.76000000000020,42.239999999999900,3938.73,792.1,26.61999999999990,23.809999999999900,4120.14,662.61,42.86999999999990,80.94999999999990,4394.77,548.48,19.3799999999992,42.80000000000000 -533,3410.6,689.85,45.13999999999990,85.23000000000000,3556.19,560.7,22.799999999999700,49.59999999999990,4512.18,721.62,61.46999999999940,90.28000000000000,4192.43,731.69,62.42999999999940,103.44000000000000,4015.84,670.56,42.09999999999990,78.47000000000000,3919.37,587.21,32.86000000000010,55.93000000000000,4143.23,644.65,37.32000000000060,70.62,4502.21,670.52,45.46000000000000,81.12,4043.6,544.16,25.270000000000000,41.030000000000100,3714.4,522.84,17.559999999999900,34.040000000000000,3921.78,775.53,74.25,125.57000000000000,4448.72,681.43,46.71999999999940,100.20000000000000,3693.04,672.67,59.13999999999990,96.21000000000000,4747.28,745.71,75.01000000000020,112.43000000000000,3766.1,593.95,28.99000000000020,57.96999999999990,3049.47,665.53,46.83000000000040,91.41000000000010,3235.41,533.23,27.95000000000030,48.59000000000000,3523.35,497.67,20.44000000000010,36.53000000000000,4010.47,561.13,22.520000000000000,46.29000000000000,2782.5,533.94,26.76000000000020,42.239999999999900,3941.76,792.84,26.61999999999990,23.800000000000000,4121.28,663.43,43.19000000000050,81.47000000000000,4394.69,548.48,19.390000000000300,42.80000000000000 -534,3411.89,689.98,45.14000000000030,85.24000000000000,3556.6,560.6,22.790000000000000,49.610000000000000,4516.41,721.46,61.67000000000010,90.76,4195.71,731.84,62.43000000000030,103.45000000000000,4018.13,670.5,42.09999999999990,78.46000000000000,3921.65,587.37,32.86000000000010,55.93999999999990,4144.18,645.2,37.48999999999980,70.9799999999999,4502.36,670.48,45.46000000000000,81.11000000000000,4046.18,544.66,25.600000000000400,41.16000000000010,3714.99,522.85,17.5600000000004,34.040000000000000,3924.81,775.42,74.25,125.58000000000000,4452.12,681.76,46.720000000000300,100.20000000000000,3694.83,672.35,59.15000000000010,96.20999999999990,4745.93,745.33,74.63999999999940,111.87,3769.73,594.25,28.92000000000010,57.88,3053.38,665.42,46.82999999999990,91.41000000000010,3237.54,533.33,27.94000000000010,48.57999999999990,3523.5,497.85,20.44000000000010,36.54000000000000,4015.19,561.82,22.509999999999800,46.22999999999990,2782.5,533.94,26.76000000000020,42.239999999999900,3944.79,793.57,26.61999999999990,23.800000000000000,4122.41,664.26,43.52000000000040,81.98000000000000,4394.61,548.48,19.400000000000500,42.80000000000000 -535,3413.18,690.11,45.14000000000030,85.24000000000000,3557.0,560.5,22.790000000000000,49.610000000000000,4520.65,721.3,61.86000000000060,91.24,4198.99,732.0,62.43000000000030,103.45000000000000,4020.42,670.44,42.09999999999990,78.45999999999990,3923.93,587.53,32.86000000000010,55.940000000000100,4145.13,645.74,37.659999999999900,71.34000000000000,4502.51,670.43,45.46000000000000,81.12,4048.76,545.16,25.9399999999996,41.29000000000010,3715.58,522.86,17.559999999999900,34.040000000000000,3927.85,775.32,74.25,125.57000000000000,4455.51,682.09,46.72999999999960,100.20000000000000,3696.63,672.03,59.15000000000010,96.21000000000000,4744.58,744.95,74.26000000000020,111.31000000000000,3773.35,594.55,28.860000000000100,57.80000000000010,3057.29,665.31,46.82999999999990,91.41000000000010,3239.66,533.42,27.95000000000030,48.59000000000000,3523.65,498.04,20.44000000000010,36.53000000000000,4019.9,562.52,22.509999999999800,46.16000000000000,2782.5,533.94,26.76000000000020,42.239999999999900,3947.82,794.3,26.61999999999990,23.81000000000010,4123.54,665.08,43.85000000000040,82.5,4394.53,548.47,19.42000000000010,42.80000000000000 -536,3414.47,690.25,45.14000000000030,85.23000000000000,3557.4,560.4,22.799999999999700,49.610000000000000,4523.61,721.28,62.0600000000004,91.72000000000000,4202.28,732.16,62.43000000000030,103.45000000000000,4022.7,670.38,42.11000000000010,78.46000000000000,3926.21,587.7,32.86000000000010,55.93000000000000,4146.08,646.29,37.82999999999990,71.69000000000010,4502.66,670.39,45.46000000000000,81.12,4051.34,545.66,26.270000000000000,41.42000000000010,3716.17,522.87,17.559999999999900,34.050000000000000,3930.88,775.22,74.25,125.57000000000000,4458.91,682.42,46.720000000000300,100.20000000000000,3698.43,671.71,59.14000000000030,96.20999999999990,4743.24,744.57,73.86999999999990,110.76,3776.98,594.86,28.790000000000000,57.69999999999990,3061.2,665.2,46.83000000000040,91.41000000000000,3241.79,533.51,27.94000000000010,48.59000000000000,3523.8,498.22,20.4399999999996,36.53000000000000,4024.62,563.22,22.5,46.08999999999990,2782.5,533.94,26.76000000000020,42.239999999999900,3950.85,795.03,26.61999999999990,23.81000000000010,4124.67,665.91,44.18000000000030,83.02000000000000,4394.46,548.47,19.42000000000010,42.80000000000000 -537,3415.77,690.38,45.13999999999990,85.24000000000000,3557.81,560.31,22.790000000000000,49.60000000000000,4526.56,721.26,62.25999999999930,92.20000000000010,4205.56,732.32,62.42999999999940,103.44000000000000,4024.99,670.31,42.10000000000040,78.47000000000000,3928.49,587.86,32.86000000000010,55.93999999999990,4147.03,646.84,38.01000000000020,72.05000000000000,4502.8,670.35,45.46000000000000,81.11000000000000,4053.91,546.16,26.610000000000100,41.55000000000010,3716.76,522.89,17.559999999999900,34.040000000000000,3933.91,775.11,74.26000000000020,125.57000000000000,4462.31,682.75,46.71999999999940,100.20000000000000,3699.87,671.31,58.91000000000030,96.06000000000010,4741.89,744.19,73.48999999999980,110.20000000000000,3780.61,595.16,28.73000000000000,57.610000000000000,3065.11,665.09,46.82999999999990,91.41000000000000,3243.91,533.61,27.95000000000030,48.59000000000000,3523.95,498.4,20.43000000000030,36.53000000000000,4029.34,563.92,22.48999999999980,46.020000000000100,2782.5,533.94,26.76000000000020,42.239999999999900,3953.88,795.76,26.61999999999990,23.81000000000010,4125.8,666.73,44.51000000000020,83.54000000000000,4394.38,548.47,19.43000000000030,42.80000000000000 -538,3417.06,690.52,45.13999999999990,85.23000000000000,3558.21,560.21,22.790000000000000,49.59999999999990,4529.52,721.25,62.45999999999910,92.67000000000000,4208.84,732.48,62.43000000000030,103.44000000000000,4027.28,670.25,42.09999999999990,78.47000000000000,3930.77,588.02,32.86000000000010,55.940000000000100,4147.98,647.38,38.18000000000030,72.41000000000000,4502.95,670.3,45.46000000000000,81.12,4056.49,546.66,26.95000000000030,41.680000000000100,3717.35,522.9,17.559999999999900,34.04000000000010,3936.95,775.01,74.25,125.57000000000000,4465.7,683.08,46.720000000000300,100.20000000000000,3701.32,670.91,58.66999999999960,95.91000000000010,4740.55,743.81,73.10999999999970,109.6400000000000,3784.23,595.46,28.67000000000010,57.53000000000000,3069.02,664.99,46.82999999999990,91.40000000000000,3246.03,533.7,27.94999999999980,48.58999999999990,3524.1,498.58,20.43000000000030,36.54000000000000,4034.05,564.62,22.48999999999980,45.950000000000000,2782.5,533.94,26.76000000000020,42.239999999999900,3955.71,799.95,26.61999999999990,23.800000000000000,4126.93,667.55,44.84000000000020,84.06000000000010,4394.3,548.46,19.44999999999980,42.80000000000000 -539,3418.35,690.65,45.13999999999990,85.24000000000000,3558.61,560.11,22.799999999999700,49.610000000000000,4532.48,721.23,62.66000000000080,93.15000000000000,4212.13,732.64,62.43000000000030,103.44000000000000,4029.57,670.19,42.09999999999990,78.46999999999990,3933.05,588.19,32.86999999999990,55.93000000000000,4148.93,647.93,38.349999999999500,72.7700000000001,4503.1,670.26,45.46000000000000,81.11000000000000,4059.07,547.16,27.279999999999700,41.81000000000010,3717.94,522.91,17.559999999999900,34.04000000000010,3939.98,774.9,74.25,125.57000000000000,4469.1,683.41,46.71999999999940,100.20000000000000,3702.77,670.52,58.42999999999980,95.75,4739.2,743.42,72.73000000000050,109.09000000000000,3787.86,595.76,28.59999999999990,57.440000000000100,3072.93,664.88,46.83000000000040,91.40000000000000,3248.16,533.79,27.95000000000030,48.59000000000000,3524.25,498.77,20.42999999999980,36.53000000000000,4038.77,565.31,22.48000000000000,45.8900000000001,2782.5,533.93,26.76000000000020,42.24000000000000,3957.54,804.13,26.61999999999990,23.81000000000010,4128.06,668.38,45.159999999999900,84.57000000000010,4394.22,548.46,19.46000000000000,42.80000000000000 -540,3419.65,690.79,45.13000000000010,85.23000000000000,3559.02,560.01,22.790000000000000,49.610000000000000,4535.44,721.21,62.85000000000040,93.63,4215.41,732.79,62.43000000000030,103.45000000000000,4031.86,670.13,42.09999999999990,78.47000000000000,3935.33,588.35,32.86999999999990,55.93999999999990,4149.88,648.47,38.51999999999950,73.13,4503.25,670.22,45.46000000000000,81.11000000000000,4062.29,547.88,27.61999999999990,41.950000000000000,3718.53,522.92,17.559999999999900,34.04000000000010,3943.01,774.8,74.25999999999980,125.57000000000000,4472.49,683.75,46.73000000000050,100.20000000000000,3704.21,670.12,58.19999999999980,95.60000000000000,4737.85,743.04,72.34999999999950,108.53000000000000,3791.49,596.07,28.5300000000002,57.33999999999990,3076.84,664.77,46.82999999999990,91.41000000000000,3250.28,533.89,27.94999999999980,48.59000000000000,3524.4,498.95,20.42999999999980,36.53000000000000,4043.48,566.01,22.48000000000000,45.82000000000010,2782.51,533.93,26.759999999999800,42.24000000000000,3959.37,808.31,26.61999999999990,23.81000000000010,4129.19,669.2,45.49000000000070,85.08999999999990,4394.15,548.46,19.46000000000000,42.80000000000000 -541,3420.94,690.92,45.13999999999990,85.24000000000000,3559.42,559.91,22.790000000000000,49.610000000000000,4538.4,721.19,63.05000000000020,94.11999999999990,4218.69,732.95,62.43000000000030,103.45000000000000,4034.15,670.07,42.09999999999990,78.46999999999990,3937.62,588.51,32.86000000000010,55.940000000000100,4152.85,648.28,38.50999999999930,73.12,4503.4,670.17,45.46000000000000,81.12,4065.51,548.6,27.95999999999960,42.07999999999990,3719.12,522.93,17.559999999999900,34.04000000000010,3946.05,774.69,74.25,125.57000000000000,4475.89,684.08,46.71999999999940,100.20000000000000,3705.66,669.72,57.970000000000300,95.44999999999990,4736.51,742.66,71.96999999999940,107.97000000000000,3795.12,596.37,28.47000000000030,57.26000000000000,3080.75,664.66,46.82999999999990,91.41000000000010,3252.41,533.98,27.95000000000030,48.59000000000000,3524.55,499.13,20.42999999999980,36.53000000000000,4048.2,566.71,22.48000000000000,45.75,2782.51,533.93,26.759999999999800,42.24000000000000,3961.2,812.5,26.620000000000300,23.809999999999900,4130.32,670.03,45.82000000000060,85.61000000000000,4394.07,548.46,19.48000000000050,42.79000000000000 -542,3422.23,691.05,45.13999999999990,85.24000000000000,3559.82,559.82,22.799999999999700,49.59999999999990,4541.36,721.18,63.24000000000070,94.59000000000010,4221.97,733.11,62.4399999999996,103.45000000000000,4036.44,670.01,42.09999999999990,78.46000000000000,3939.9,588.68,32.86000000000010,55.930000000000100,4155.81,648.08,38.51999999999950,73.12,4503.54,670.13,45.46000000000000,81.11000000000000,4068.73,549.32,28.29000000000040,42.20999999999990,3719.71,522.95,17.559999999999900,34.040000000000000,3949.08,774.59,74.25,125.57000000000000,4479.29,684.41,46.720000000000300,100.20000000000000,3707.11,669.33,57.73000000000000,95.28000000000000,4735.16,742.28,71.59000000000020,107.41000000000000,3798.74,596.67,28.41000000000030,57.17000000000010,3084.66,664.55,46.82999999999990,91.41000000000010,3254.53,534.08,27.94999999999980,48.57999999999990,3524.7,499.31,20.43000000000030,36.54000000000000,4052.92,567.41,22.4699999999998,45.680000000000100,2782.51,533.93,26.759999999999800,42.24000000000000,3963.03,816.68,26.61999999999990,23.81000000000010,4131.45,670.85,46.15000000000060,86.13,4393.99,548.45,19.48999999999980,42.80000000000000 -543,3423.52,691.19,45.13999999999990,85.2299999999999,3560.23,559.72,22.790000000000000,49.610000000000000,4544.32,721.16,63.44000000000050,95.07000000000000,4225.26,733.27,62.42999999999940,103.44000000000000,4038.72,669.95,42.11000000000010,78.45999999999990,3942.18,588.84,32.86000000000010,55.93999999999990,4158.78,647.88,38.51000000000020,73.13,4503.69,670.08,45.46000000000000,81.12,4071.96,550.04,28.61999999999990,42.34000000000000,3720.31,522.96,17.550000000000200,34.040000000000000,3952.11,774.49,74.25999999999980,125.57000000000000,4482.68,684.74,46.71999999999940,100.20000000000000,3708.55,668.93,57.5,95.13,4733.81,741.9,71.21000000000000,106.85000000000000,3802.37,596.97,28.340000000000100,57.07999999999990,3089.87,663.99,46.82999999999990,91.41000000000000,3256.66,534.17,27.95000000000030,48.59000000000000,3524.85,499.5,20.43000000000030,36.53000000000000,4057.63,568.11,22.4699999999998,45.60000000000000,2782.51,533.93,26.759999999999800,42.24000000000000,3970.53,806.56,26.61999999999990,23.81000000000010,4132.58,671.67,46.48000000000050,86.65000000000010,4393.91,548.45,19.5,42.80000000000000 -544,3424.82,691.32,45.13999999999990,85.2399999999999,3560.63,559.62,22.790000000000000,49.610000000000000,4547.27,721.14,63.64999999999960,95.55000000000010,4228.54,733.43,62.43000000000030,103.44000000000000,4043.65,669.36,42.09999999999990,78.47000000000000,3944.46,589.0,32.86000000000010,55.940000000000100,4161.74,647.68,38.51000000000020,73.13,4503.26,669.81,45.46000000000000,81.12,4075.18,550.76,28.96000000000050,42.48000000000000,3720.9,522.97,17.549999999999700,34.040000000000000,3955.15,774.38,74.25,125.57000000000000,4486.08,685.07,46.720000000000300,100.20000000000000,3710.0,668.53,57.26000000000020,94.98000000000000,4728.74,740.32,70.82999999999990,106.30000000000000,3806.0,597.28,28.270000000000000,56.99000000000000,3095.08,663.42,46.82999999999990,91.41000000000010,3258.78,534.26,27.94999999999980,48.59000000000000,3525.0,499.68,20.42999999999980,36.53000000000000,4062.35,568.81,22.46000000000000,45.530000000000100,2782.51,533.93,26.759999999999800,42.24000000000000,3978.03,796.44,26.61999999999990,23.800000000000000,4133.71,672.5,46.8100000000004,87.16000000000000,4393.84,548.45,19.51000000000020,42.79000000000000 -545,3426.11,691.46,45.13999999999990,85.23000000000000,3561.04,559.52,22.790000000000000,49.610000000000000,4550.23,721.12,63.84000000000020,96.03000000000000,4231.82,733.58,62.43000000000030,103.45000000000000,4048.58,668.77,42.09999999999990,78.47000000000000,3946.74,589.17,32.86000000000010,55.930000000000100,4164.7,647.49,38.52000000000040,73.12,4502.82,669.54,45.46000000000000,81.12,4078.4,551.48,29.299999999999700,42.610000000000000,3721.49,522.98,17.550000000000200,34.040000000000000,3958.18,774.28,74.25,125.57000000000000,4489.47,685.4,46.72999999999960,100.20000000000000,3711.45,668.13,57.02000000000000,94.83000000000000,4723.66,738.75,70.44999999999980,105.73000000000000,3809.62,597.58,28.22000000000030,56.90000000000000,3100.28,662.86,46.82999999999990,91.41000000000000,3260.91,534.36,27.95000000000030,48.58000000000000,3525.15,499.86,20.42999999999980,36.53000000000000,4067.07,569.5,22.44999999999980,45.47000000000000,2782.51,533.93,26.759999999999800,42.24000000000000,3994.7,779.92,26.63000000000010,23.81000000000010,4134.84,673.32,47.13999999999940,87.68999999999990,4393.76,548.44,19.519999999999500,42.80000000000000 -546,3427.4,691.59,45.13999999999990,85.24000000000000,3561.44,559.43,22.790000000000000,49.60000000000000,4553.19,721.11,64.04000000000000,96.5,4235.11,733.74,62.43000000000030,103.45000000000000,4053.51,668.19,42.09999999999990,78.45999999999990,3949.02,589.33,32.86000000000010,55.93999999999990,4167.67,647.29,38.51000000000020,73.12,4502.39,669.27,45.46000000000000,81.12,4081.62,552.2,29.640000000000300,42.74000000000000,3722.08,522.99,17.550000000000200,34.040000000000000,3961.21,774.17,74.25999999999980,125.57000000000000,4492.87,685.73,46.720000000000300,100.20000000000000,3712.89,667.74,56.79000000000000,94.67000000000000,4718.58,737.17,70.06999999999970,105.18000000000000,3813.25,597.88,28.15000000000010,56.81000000000010,3105.49,662.3,46.83000000000040,91.41000000000010,3263.03,534.45,27.94999999999980,48.58999999999990,3525.45,499.97,20.43000000000030,36.53000000000000,4071.78,570.2,22.44999999999980,45.40000000000000,2782.51,533.93,26.759999999999800,42.24000000000000,4011.38,763.41,26.61999999999990,23.800000000000100,4135.97,674.15,47.46999999999940,88.20000000000010,4393.86,548.5,19.53000000000070,42.80000000000000 -547,3428.69,691.72,45.13999999999990,85.24000000000000,3561.84,559.33,22.790000000000000,49.59999999999990,4556.15,721.09,64.23000000000050,96.98000000000000,4238.39,733.9,62.42999999999940,103.45000000000000,4058.43,667.6,42.11000000000010,78.47000000000000,3951.3,589.49,32.85999999999970,55.93999999999990,4170.63,647.09,38.51999999999950,73.13,4501.95,669.0,45.46000000000000,81.12,4084.85,552.92,29.96000000000050,42.870000000000000,3722.67,523.01,17.559999999999900,34.040000000000000,3960.58,778.05,73.96000000000000,125.2700000000000,4496.27,686.06,46.71999999999940,100.20000000000000,3714.34,667.34,56.54999999999970,94.51,4713.51,735.59,69.67999999999940,104.62,3816.88,598.18,28.079999999999900,56.73000000000000,3110.7,661.74,46.83000000000040,91.40000000000000,3265.16,534.54,27.95000000000030,48.59000000000000,3525.74,500.07,20.44000000000010,36.53000000000000,4076.5,570.9,22.4399999999996,45.33000000000000,2782.51,533.93,26.759999999999800,42.24000000000000,4028.05,746.89,26.61999999999990,23.81000000000010,4137.1,674.97,47.79999999999930,88.72000000000000,4393.96,548.56,19.540000000000000,42.80000000000010 -548,3429.99,691.86,45.14000000000030,85.23000000000000,3562.25,559.23,22.790000000000000,49.610000000000000,4559.11,721.07,64.43000000000030,97.46999999999990,4241.67,734.06,62.43000000000030,103.45000000000000,4063.36,667.02,42.09999999999990,78.46000000000000,3953.58,589.66,32.86999999999990,55.930000000000100,4173.59,646.89,38.51999999999950,73.13,4501.52,668.73,45.45999999999910,81.12,4088.07,553.64,30.299999999999700,43.01000000000000,3724.11,523.01,17.559999999999900,34.040000000000000,3962.35,777.86,73.67000000000010,124.97000000000000,4499.66,686.39,46.720000000000300,100.20000000000000,3715.79,666.94,56.309999999999900,94.3599999999999,4708.43,734.01,69.29999999999930,104.07000000000000,3820.51,598.49,28.009999999999800,56.63,3115.91,661.17,46.82999999999990,91.41000000000010,3267.28,534.64,27.94999999999980,48.58000000000000,3526.04,500.18,20.44000000000010,36.53000000000000,4082.33,571.73,22.67000000000010,45.370000000000000,2782.51,533.93,26.759999999999800,42.24000000000000,4044.21,734.76,26.61999999999990,23.81000000000010,4138.23,675.8,48.13000000000010,89.23000000000000,4394.06,548.63,19.55999999999950,42.79000000000000 -549,3431.28,691.99,45.13999999999990,85.24000000000000,3563.31,559.23,22.790000000000000,49.610000000000000,4562.07,721.05,64.61999999999990,97.95000000000010,4244.96,734.22,62.43000000000030,103.44000000000000,4067.09,667.1,42.099999999999500,78.45999999999990,3955.86,589.82,32.86999999999990,55.93999999999990,4176.56,646.7,38.50999999999930,73.12,4501.08,668.46,45.46000000000000,81.12,4091.29,554.36,30.640000000000300,43.14000000000000,3725.55,523.01,17.559999999999900,34.040000000000000,3964.12,777.68,73.38000000000010,124.66000000000000,4503.06,686.72,46.71999999999940,100.20000000000000,3717.24,666.54,56.07000000000020,94.21000000000000,4703.35,732.44,68.92999999999940,103.5,3824.13,598.79,27.96000000000000,56.54000000000010,3121.11,660.61,46.82999999999990,91.41000000000000,3269.41,534.73,27.95000000000030,48.59000000000000,3526.34,500.28,20.42999999999980,36.54000000000010,4088.16,572.57,22.90999999999990,45.39000000000000,2782.52,533.93,26.76000000000020,42.24000000000000,4060.37,722.63,26.61999999999990,23.81000000000010,4139.36,676.62,48.46000000000000,89.75,4394.17,548.69,19.55999999999950,42.79000000000000 -550,3432.57,692.13,45.13999999999990,85.23000000000000,3564.37,559.23,22.790000000000000,49.610000000000000,4565.03,721.04,64.82000000000060,98.42000000000010,4248.24,734.38,62.43000000000030,103.44000000000000,4070.83,667.18,42.10000000000040,78.47000000000000,3958.14,589.98,32.870000000000300,55.93999999999990,4179.52,646.5,38.51999999999950,73.12,4500.65,668.19,45.46000000000000,81.11999999999990,4094.51,555.09,30.979999999999600,43.26000000000000,3727.0,523.01,17.550000000000200,34.040000000000000,3965.9,777.49,73.08999999999970,124.36,4506.45,687.05,46.73000000000050,100.20000000000000,3718.68,666.15,55.84000000000020,94.05000000000010,4698.27,730.86,68.54999999999930,102.95000000000000,3827.76,599.09,27.88999999999990,56.45999999999990,3126.32,660.05,46.82999999999990,91.40000000000010,3271.53,534.82,27.94999999999980,48.58999999999990,3526.64,500.39,20.43000000000030,36.53000000000000,4093.98,573.4,23.15000000000010,45.430000000000100,2782.87,533.95,26.76000000000020,42.24000000000000,4076.52,710.5,26.620000000000300,23.809999999999900,4140.49,677.44,48.79000000000000,90.28000000000000,4394.27,548.75,19.56999999999970,42.80000000000000 -551,3434.1,692.07,45.13999999999990,85.2299999999999,3565.43,559.23,22.790000000000000,49.60000000000000,4567.99,721.02,65.02000000000040,98.90000000000000,4251.52,734.53,62.42999999999940,103.45000000000000,4074.56,667.26,42.09999999999990,78.47000000000000,3960.43,590.15,32.86000000000010,55.930000000000100,4182.48,646.3,38.52000000000040,73.13,4500.21,667.92,45.470000000000300,81.12,4097.73,555.81,31.32000000000060,43.3900000000001,3728.44,523.01,17.559999999999900,34.040000000000000,3967.67,777.3,72.79999999999970,124.05000000000000,4509.85,687.38,46.71999999999940,100.20000000000000,3720.13,665.75,55.59999999999990,93.90000000000000,4693.2,729.28,68.15999999999990,102.39,3831.39,599.39,27.820000000000200,56.370000000000000,3131.53,659.48,46.82999999999990,91.41000000000000,3273.66,534.92,27.95000000000030,48.59000000000000,3526.94,500.49,20.42999999999980,36.54000000000000,4099.81,574.23,23.3799999999992,45.47000000000000,2783.22,533.97,26.76000000000020,42.24000000000000,4092.68,698.38,26.620000000000300,23.800000000000000,4141.62,678.27,49.11999999999990,90.79000000000000,4394.37,548.81,19.579999999999900,42.80000000000010 -552,3435.63,692.01,45.13999999999990,85.23000000000000,3566.49,559.23,22.79000000000040,49.60000000000000,4570.94,721.0,65.22000000000030,99.38,4254.8,734.69,62.4399999999996,103.45000000000000,4078.29,667.34,42.10000000000040,78.46999999999990,3962.71,590.31,32.86000000000010,55.940000000000100,4185.45,646.1,38.51000000000020,73.13,4499.78,667.65,45.46000000000000,81.12,4100.96,556.53,31.640000000000300,43.53000000000000,3729.88,523.01,17.559999999999900,34.040000000000000,3969.44,777.11,72.50999999999980,123.75,4513.25,687.71,46.720000000000300,100.20000000000000,3721.58,665.35,55.36000000000010,93.74,4688.12,727.71,67.77999999999980,101.83000000000000,3835.01,599.7,27.759999999999800,56.27000000000000,3136.74,658.92,46.83000000000040,91.41000000000010,3275.78,535.01,27.94999999999980,48.59000000000000,3527.24,500.6,20.43000000000030,36.53000000000000,4105.64,575.07,23.60999999999970,45.489999999999900,2783.57,534.0,26.759999999999800,42.24000000000000,4108.84,686.25,26.61999999999990,23.800000000000000,4142.75,679.09,49.44999999999980,91.31000000000000,4394.47,548.87,19.59999999999950,42.80000000000000 -553,3437.16,691.95,45.14000000000030,85.2299999999999,3567.55,559.23,22.790000000000000,49.60000000000000,4573.9,720.98,65.42000000000010,99.86,4258.09,734.85,62.43000000000030,103.45000000000000,4082.02,667.42,42.09999999999990,78.47000000000000,3964.99,590.47,32.86000000000010,55.93999999999990,4188.41,645.91,38.52000000000040,73.12,4499.35,667.38,45.46000000000000,81.12,4104.18,557.25,31.979999999999600,43.66000000000000,3731.32,523.02,17.559999999999900,34.040000000000000,3971.22,776.93,72.21000000000000,123.44000000000000,4516.64,688.04,46.72999999999960,100.20000000000000,3723.02,664.96,55.13000000000010,93.57999999999990,4683.04,726.13,67.39999999999960,101.27000000000000,3838.64,600.0,27.70000000000030,56.190000000000100,3141.94,658.36,46.82999999999990,91.41000000000000,3277.91,535.1,27.95000000000030,48.59000000000000,3527.54,500.71,20.42999999999980,36.53000000000000,4111.47,575.9,23.840000000000100,45.53000000000000,2783.92,534.02,26.759999999999800,42.24000000000000,4125.0,674.12,26.61999999999990,23.800000000000000,4145.05,679.54,49.34000000000020,90.98000000000000,4394.57,548.93,19.610000000000600,42.80000000000010 -554,3438.69,691.89,45.13999999999990,85.23000000000000,3568.61,559.23,22.790000000000000,49.60000000000000,4576.86,720.96,65.61000000000060,100.34000000000000,4261.37,735.01,62.43000000000030,103.44000000000000,4085.76,667.5,42.099999999999500,78.47000000000000,3967.27,590.64,32.86000000000010,55.930000000000100,4191.38,645.71,38.51000000000020,73.12,4498.91,667.11,45.46000000000000,81.12,4107.4,557.97,32.32000000000060,43.79000000000000,3732.77,523.02,17.550000000000200,34.040000000000000,3972.99,776.74,71.93000000000030,123.14,4520.04,688.38,46.720000000000300,100.19000000000000,3724.47,664.56,54.89000000000030,93.43000000000010,4677.97,724.55,67.01999999999950,100.71000000000000,3841.81,599.9,27.63000000000010,56.10000000000000,3147.15,657.8,46.82999999999990,91.40000000000010,3280.03,535.2,27.94999999999980,48.58999999999990,3527.83,500.81,20.44000000000010,36.53000000000000,4117.29,576.73,24.079999999999900,45.569999999999900,2784.27,534.04,26.76000000000020,42.24000000000000,4137.93,666.04,26.61999999999990,23.800000000000100,4147.35,679.99,49.21999999999940,90.65000000000000,4394.67,548.99,19.61999999999990,42.80000000000000 -555,3440.22,691.83,45.14000000000030,85.2299999999999,3569.67,559.23,22.790000000000000,49.60000000000000,4579.82,720.95,65.8100000000004,100.81000000000000,4264.65,735.17,62.43000000000030,103.44000000000000,4089.49,667.59,42.10000000000040,78.45999999999990,3969.55,590.8,32.85999999999970,55.940000000000100,4194.34,645.51,38.51000000000020,73.13,4498.48,666.84,45.46000000000000,81.12,4110.62,558.69,32.659999999999900,43.92000000000000,3734.21,523.02,17.559999999999900,34.040000000000000,3974.77,776.55,71.63000000000010,122.84000000000000,4519.61,688.22,46.720000000000300,100.20000000000000,3725.92,664.16,54.65000000000010,93.28000000000010,4672.89,722.98,66.63999999999940,100.15000000000000,3844.99,599.81,27.5600000000004,56.0,3152.36,657.23,46.82999999999990,91.41000000000000,3282.16,535.29,27.95000000000030,48.59000000000000,3528.13,500.92,20.44000000000010,36.53000000000000,4123.12,577.57,24.31999999999970,45.58999999999990,2784.62,534.06,26.76000000000020,42.24000000000000,4150.87,657.96,26.61999999999990,23.809999999999900,4149.66,680.44,49.10000000000040,90.31000000000000,4394.77,549.05,19.6299999999992,42.80000000000010 -556,3441.75,691.77,45.13999999999990,85.23000000000000,3570.73,559.22,22.790000000000000,49.610000000000000,4582.78,720.93,66.01000000000020,101.30000000000000,4267.94,735.33,62.43000000000030,103.44000000000000,4093.22,667.67,42.09999999999990,78.46000000000000,3971.83,590.96,32.86000000000010,55.93999999999990,4197.3,645.31,38.51999999999950,73.13000000000010,4498.04,666.57,45.46000000000000,81.12,4113.84,559.41,33.0,44.06000000000010,3735.65,523.02,17.559999999999900,34.040000000000000,3976.54,776.36,71.34000000000020,122.54000000000000,4519.18,688.06,46.72999999999960,100.20000000000000,3727.36,663.76,54.42000000000010,93.13,4667.81,721.4,66.25999999999930,99.59000000000010,3848.16,599.71,27.5,55.92000000000000,3157.57,656.67,46.82999999999990,91.41000000000010,3284.28,535.39,27.94999999999980,48.58000000000000,3528.43,501.02,20.43000000000030,36.53000000000000,4128.95,578.4,24.550000000000200,45.63,2784.97,534.09,26.76000000000020,42.24000000000000,4163.8,649.88,26.61999999999990,23.81000000000010,4151.96,680.89,48.97999999999960,89.98000000000000,4394.87,549.11,19.640000000000300,42.80000000000000 -557,3443.28,691.71,45.13999999999990,85.23000000000000,3571.79,559.22,22.790000000000000,49.610000000000000,4585.74,720.91,66.19999999999980,101.78000000000000,4271.22,735.48,62.42999999999940,103.45000000000000,4096.95,667.75,42.10000000000040,78.47000000000000,3974.11,591.13,32.85999999999970,55.93000000000000,4200.27,645.12,38.50999999999930,73.12,4497.61,666.3,45.46000000000000,81.12,4117.07,560.13,33.32999999999990,44.190000000000100,3737.09,523.02,17.559999999999900,34.040000000000000,3978.31,776.17,71.06000000000000,122.24,4518.76,687.9,46.71999999999940,100.20000000000000,3728.81,663.37,54.17999999999980,92.96000000000000,4662.73,719.82,65.88000000000010,99.04000000000000,3851.34,599.61,27.42999999999980,55.83000000000000,3162.77,656.11,46.82999999999990,91.40000000000000,3286.41,535.48,27.95000000000030,48.59000000000000,3528.73,501.13,20.42999999999980,36.53000000000000,4134.78,579.23,24.78000000000070,45.67000000000000,2785.32,534.11,26.759999999999800,42.24000000000000,4176.74,641.8,26.61999999999990,23.81000000000010,4154.26,681.34,48.86999999999990,89.65000000000000,4394.98,549.18,19.650000000000500,42.79000000000010 -558,3444.81,691.65,45.13999999999990,85.24000000000000,3572.85,559.22,22.790000000000000,49.610000000000000,4588.7,720.89,66.40000000000060,102.26,4274.5,735.64,62.43000000000030,103.45000000000000,4100.68,667.83,42.10999999999970,78.46999999999990,3976.39,591.29,32.870000000000300,55.940000000000100,4203.23,644.92,38.52000000000040,73.12,4494.55,666.06,45.46000000000000,81.12,4120.29,560.85,33.659999999999900,44.319999999999900,3738.54,523.02,17.550000000000200,34.040000000000000,3980.09,775.99,70.75999999999980,121.93000000000000,4518.33,687.74,46.720000000000300,100.20000000000000,3730.26,662.97,53.9399999999996,92.81000000000000,4657.66,718.24,65.48999999999980,98.48000000000000,3854.51,599.51,27.36999999999990,55.74000000000000,3167.98,655.54,46.82999999999990,91.41000000000010,3288.53,535.57,27.94999999999980,48.58999999999990,3529.03,501.23,20.42999999999980,36.53000000000000,4140.61,580.07,25.01000000000020,45.68999999999990,2785.68,534.13,26.76000000000020,42.24000000000000,4189.67,633.72,26.61999999999990,23.809999999999900,4156.56,681.79,48.75999999999930,89.32000000000010,4395.08,549.24,19.65999999999990,42.79000000000000 -559,3446.34,691.59,45.13999999999990,85.24000000000000,3573.91,559.22,22.790000000000000,49.610000000000000,4591.65,720.88,66.60000000000040,102.73000000000000,4277.79,735.8,62.43000000000030,103.45000000000000,4104.42,667.91,42.10000000000040,78.47000000000000,3978.67,591.45,32.86999999999990,55.93999999999990,4206.19,644.72,38.52000000000040,73.13,4491.48,665.82,45.46000000000000,81.12,4124.95,561.57,34.01000000000020,44.44999999999990,3739.98,523.03,17.559999999999900,34.04000000000010,3981.86,775.8,70.4699999999998,121.63,4517.9,687.58,46.720000000000300,100.20000000000000,3731.7,662.57,53.71000000000000,92.66000000000000,4652.58,716.67,65.11999999999990,97.92000000000010,3857.68,599.42,27.309999999999900,55.64000000000000,3173.19,654.98,46.82999999999990,91.41000000000000,3290.66,535.67,27.95000000000030,48.58000000000000,3529.33,501.34,20.43000000000030,36.53000000000000,4146.43,580.9,25.25,45.73000000000000,2786.03,534.15,26.759999999999800,42.24000000000000,4202.61,625.65,26.61999999999990,23.800000000000100,4158.86,682.23,48.64000000000030,88.99000000000000,4395.18,549.3,19.67000000000010,42.80000000000010 -560,3447.87,691.53,45.14000000000030,85.24000000000000,3574.97,559.22,22.79000000000040,49.610000000000000,4594.61,720.86,66.80000000000020,103.21000000000000,4281.07,735.96,62.43000000000030,103.44000000000000,4108.15,667.99,42.10000000000040,78.47000000000000,3980.96,591.62,32.86000000000010,55.93000000000000,4209.16,644.52,38.51000000000020,73.13,4488.42,665.58,45.46000000000000,81.12,4129.62,562.29,34.340000000000100,44.59000000000000,3741.42,523.03,17.559999999999900,34.04000000000010,3983.64,775.61,70.17000000000010,121.33000000000000,4517.47,687.42,46.71999999999940,100.20000000000000,3733.15,662.17,53.4699999999998,92.51,4647.5,715.09,64.73999999999980,97.36,3860.86,599.32,27.23999999999980,55.559999999999900,3178.4,654.42,46.82999999999990,91.41000000000010,3292.78,535.76,27.94999999999980,48.59000000000000,3529.63,501.44,20.42999999999980,36.53000000000000,4152.26,581.73,25.48999999999980,45.77000000000000,2786.38,534.18,26.759999999999800,42.24000000000000,4215.54,617.57,26.61999999999990,23.800000000000000,4161.16,682.68,48.52999999999980,88.66000000000010,4395.28,549.36,19.68000000000030,42.80000000000000 -561,3449.4,691.47,45.13999999999990,85.24000000000000,3576.03,559.22,22.790000000000000,49.610000000000000,4597.57,720.84,66.99000000000070,103.69000000000000,4284.35,736.12,62.42999999999940,103.44000000000000,4111.88,668.08,42.099999999999500,78.45999999999990,3983.24,591.78,32.86000000000010,55.940000000000100,4212.12,644.33,38.52000000000040,73.12,4485.36,665.34,45.46000000000000,81.12,4134.29,563.02,34.67000000000010,44.71000000000000,3742.86,523.03,17.559999999999900,34.04000000000010,3985.41,775.42,69.89000000000030,121.03000000000000,4517.04,687.27,46.73000000000050,100.20000000000000,3734.6,661.78,53.23000000000000,92.35000000000000,4642.43,713.51,64.34999999999950,96.81000000000010,3864.03,599.22,27.17999999999980,55.47000000000000,3183.6,653.86,46.82999999999990,91.40000000000000,3294.91,535.85,27.95000000000030,48.59000000000000,3529.92,501.55,20.44000000000010,36.53000000000000,4158.09,582.57,25.72000000000030,45.79000000000000,2786.73,534.2,26.759999999999800,42.24000000000000,4225.11,613.6,26.61999999999990,23.809999999999900,4163.47,683.13,48.39999999999960,88.33000000000000,4395.38,549.42,19.69999999999980,42.80000000000010 -562,3450.93,691.41,45.14000000000030,85.24000000000000,3577.09,559.22,22.790000000000000,49.610000000000000,4600.53,720.82,67.19000000000050,104.17000000000000,4287.63,736.28,62.4399999999996,103.44000000000000,4115.61,668.16,42.11000000000060,78.46000000000000,3985.52,591.94,32.86000000000010,55.93999999999990,4215.08,644.13,38.52000000000040,73.12,4482.3,665.1,45.46000000000000,81.11000000000000,4138.95,563.74,35.01000000000020,44.84000000000000,3744.31,523.03,17.550000000000200,34.04000000000010,3987.18,775.24,69.60000000000040,120.71000000000000,4516.62,687.11,46.720000000000300,100.20000000000000,3736.04,661.38,53.0,92.19000000000000,4637.35,711.94,63.96999999999940,96.2399999999999,3867.2,599.12,27.120000000000300,55.38,3188.81,653.29,46.82999999999990,91.41000000000010,3297.03,535.95,27.94999999999980,48.58999999999990,3530.22,501.65,20.44000000000010,36.54000000000010,4163.92,583.4,25.94999999999980,45.83000000000000,2787.08,534.22,26.76000000000020,42.24000000000000,4234.68,609.64,26.61999999999990,23.81000000000010,4165.77,683.58,48.29000000000000,88.0,4395.48,549.48,19.71000000000000,42.80000000000000 -563,3452.46,691.35,45.13999999999990,85.24000000000000,3578.15,559.22,22.790000000000000,49.610000000000000,4603.49,720.81,67.39000000000030,104.6400000000000,4290.92,736.43,62.43000000000030,103.45000000000000,4119.35,668.24,42.099999999999500,78.46000000000000,3987.8,592.11,32.85999999999970,55.93000000000000,4218.05,643.93,38.51000000000020,73.13,4479.24,664.86,45.46000000000000,81.11000000000000,4143.62,564.46,35.340000000000100,44.96999999999990,3745.75,523.03,17.559999999999900,34.04000000000010,3988.96,775.05,69.30000000000020,120.41000000000000,4516.19,686.95,46.720000000000300,100.20000000000000,3737.49,660.98,52.76000000000020,92.04000000000000,4632.27,710.36,63.58999999999920,95.68999999999990,3870.38,599.03,27.049999999999700,55.29000000000010,3194.02,652.73,46.82999999999990,91.41000000000000,3299.86,535.94,27.94999999999980,48.58999999999990,3530.75,501.78,20.42999999999980,36.53000000000000,4169.74,584.23,26.19000000000050,45.870000000000000,2787.43,534.24,26.76000000000020,42.24000000000000,4244.25,605.68,26.61999999999990,23.800000000000100,4168.07,684.03,48.18000000000030,87.67000000000010,4395.58,549.54,19.72000000000030,42.80000000000010 -564,3453.99,691.29,45.14000000000030,85.24000000000000,3579.21,559.22,22.790000000000000,49.610000000000000,4606.45,720.79,67.57999999999990,105.13,4294.2,736.59,62.43000000000030,103.45000000000000,4123.08,668.32,42.10000000000040,78.46999999999990,3990.08,592.27,32.86000000000010,55.940000000000100,4221.01,643.73,38.51999999999950,73.13,4476.18,664.62,45.46000000000000,81.11000000000000,4148.28,565.18,35.68000000000030,45.110000000000000,3747.19,523.03,17.559999999999900,34.04000000000010,3990.73,774.86,69.02000000000000,120.11,4515.76,686.79,46.71999999999940,100.20000000000000,3738.94,660.59,52.52000000000000,91.88,4627.19,708.78,63.220000000000300,95.13,3873.55,598.93,26.98999999999980,55.200000000000000,3199.23,652.17,46.82999999999990,91.40000000000010,3302.69,535.94,27.94999999999980,48.58999999999990,3531.27,501.9,20.42999999999980,36.53000000000000,4175.57,585.07,26.42000000000010,45.90000000000000,2787.78,534.27,26.759999999999800,42.24000000000000,4253.82,601.72,26.61999999999990,23.800000000000000,4170.37,684.48,48.0600000000004,87.32999999999990,4395.69,549.6,19.72000000000030,42.80000000000000 -565,3455.52,691.23,45.13999999999990,85.24000000000000,3580.27,559.22,22.790000000000000,49.610000000000000,4609.41,720.77,67.77999999999980,105.61,4297.48,736.75,62.43000000000030,103.45000000000000,4126.81,668.4,42.099999999999500,78.47000000000000,3992.36,592.43,32.85999999999970,55.940000000000100,4223.98,643.54,38.51000000000020,73.12,4473.11,664.38,45.46000000000000,81.11000000000000,4152.95,565.9,36.01000000000020,45.24000000000000,3748.64,523.04,17.550000000000200,34.04000000000010,3992.5,774.67,68.73000000000000,119.81000000000000,4515.33,686.63,46.720000000000300,100.20000000000000,3740.38,660.19,52.29000000000000,91.7299999999999,4622.12,707.2,62.82999999999990,94.57999999999990,3876.73,598.83,26.90999999999990,55.110000000000000,3204.43,651.6,46.83000000000040,91.41000000000000,3305.52,535.94,27.94000000000010,48.57999999999990,3531.79,502.02,20.44000000000010,36.53000000000000,4181.4,585.9,26.650000000000500,45.930000000000100,2788.13,534.29,26.759999999999800,42.24000000000000,4263.39,597.75,26.61999999999990,23.809999999999900,4172.67,684.93,47.94999999999980,87.0,4395.79,549.66,19.73000000000050,42.80000000000010 -566,3457.05,691.17,45.13999999999990,85.24000000000000,3581.33,559.22,22.790000000000000,49.610000000000000,4612.37,720.75,67.97000000000030,106.09000000000000,4300.77,736.91,62.42999999999940,103.44000000000000,4130.54,668.48,42.10000000000040,78.47000000000000,3994.64,592.6,32.86000000000010,55.93000000000000,4226.94,643.34,38.51000000000020,73.12,4470.05,664.14,45.46000000000000,81.11000000000000,4157.61,566.62,36.36000000000060,45.370000000000000,3750.08,523.04,17.559999999999900,34.04000000000010,3993.95,774.21,68.43000000000030,119.51,4514.9,686.47,46.73000000000050,100.20000000000000,3741.83,659.79,52.05000000000020,91.58000000000000,4617.04,705.63,62.44999999999980,94.01,3879.9,598.73,26.84999999999990,55.03000000000000,3209.64,651.04,46.82999999999990,91.41000000000010,3308.34,535.93,27.94999999999980,48.59000000000000,3532.32,502.14,20.42999999999980,36.53000000000000,4187.23,586.73,26.890000000000300,45.97000000000000,2788.48,534.31,26.759999999999800,42.24000000000000,4272.96,593.79,26.61999999999990,23.81000000000010,4174.98,685.38,47.82000000000060,86.67000000000000,4395.89,549.73,19.75,42.79000000000000 -567,3458.58,691.11,45.13999999999990,85.24000000000000,3582.39,559.22,22.790000000000000,49.60000000000000,4615.32,720.74,68.18000000000030,106.56000000000000,4304.05,737.07,62.42999999999940,103.44000000000000,4134.28,668.56,42.10000000000040,78.47000000000000,3996.92,592.76,32.86000000000010,55.940000000000100,4229.9,643.14,38.52000000000040,73.13,4466.99,663.89,45.46000000000000,81.12,4162.28,567.34,36.69000000000050,45.5,3751.52,523.04,17.559999999999900,34.04000000000010,3995.39,773.76,68.14000000000030,119.20000000000000,4514.48,686.31,46.720000000000300,100.20000000000000,3743.28,659.39,51.809999999999900,91.42000000000000,4611.96,704.05,62.06999999999970,93.46000000000000,3883.07,598.64,26.790000000000000,54.930000000000100,3214.85,650.48,46.82999999999990,91.40000000000000,3311.17,535.93,27.94999999999980,48.59000000000000,3532.84,502.26,20.44000000000010,36.53000000000000,4193.06,587.57,27.11999999999990,46.0,2788.83,534.33,26.76000000000020,42.24000000000000,4279.52,592.69,26.61999999999990,23.800000000000000,4177.28,685.83,47.71000000000000,86.33999999999990,4395.99,549.79,19.76000000000020,42.79000000000010 -568,3460.11,691.05,45.12999999999970,85.24000000000000,3583.45,559.22,22.790000000000000,49.60000000000000,4616.35,719.93,68.17999999999940,106.57000000000000,4307.33,737.22,62.43000000000030,103.45000000000000,4138.01,668.65,42.099999999999500,78.46000000000000,3999.2,592.92,32.870000000000300,55.940000000000100,4232.87,642.94,38.51000000000020,73.13,4463.93,663.65,45.46000000000000,81.12,4166.94,568.06,37.030000000000700,45.6400000000001,3752.96,523.04,17.559999999999900,34.04000000000010,3996.83,773.3,67.84999999999990,118.8900000000000,4514.05,686.16,46.720000000000300,100.20000000000000,3744.72,659.0,51.58000000000040,91.26,4606.89,702.47,61.67999999999940,92.90000000000000,3886.25,598.54,26.7199999999998,54.84000000000000,3220.06,649.91,46.82999999999990,91.41000000000010,3314.0,535.93,27.94999999999980,48.58000000000000,3533.37,502.38,20.43000000000030,36.53000000000000,4198.88,588.4,27.35999999999970,46.03000000000000,2789.19,534.36,26.759999999999800,42.24000000000000,4286.08,591.58,26.61999999999990,23.809999999999900,4179.58,686.27,47.59000000000020,86.01000000000000,4396.09,549.85,19.769999999999500,42.80000000000000 -569,3461.64,690.99,45.13000000000010,85.24000000000000,3584.51,559.22,22.790000000000000,49.60000000000000,4617.38,719.13,68.17000000000010,106.57000000000000,4310.62,737.38,62.43000000000030,103.45000000000000,4141.69,668.84,42.10000000000040,78.46999999999990,4001.48,593.09,32.86999999999990,55.93000000000000,4235.83,642.75,38.52000000000040,73.12,4460.87,663.41,45.46000000000000,81.12,4171.61,568.78,37.36000000000060,45.77000000000000,3754.41,523.04,17.550000000000200,34.04000000000010,3998.27,772.84,67.56000000000000,118.59000000000000,4513.62,686.0,46.720000000000300,100.20000000000000,3746.17,658.6,51.34999999999990,91.11,4601.81,700.9,61.30999999999950,92.34000000000010,3889.42,598.44,26.65999999999990,54.76000000000000,3225.26,649.35,46.82999999999990,91.41000000000000,3316.83,535.92,27.95000000000030,48.59000000000000,3533.89,502.5,20.43000000000030,36.53000000000000,4204.71,589.23,27.590000000000100,46.069999999999900,2789.54,534.38,26.76000000000020,42.24000000000000,4292.64,590.48,26.61999999999990,23.800000000000000,4181.88,686.72,47.47999999999960,85.68000000000000,4396.19,549.91,19.78000000000070,42.80000000000010 -570,3463.16,690.93,45.14000000000030,85.24000000000000,3585.57,559.22,22.790000000000000,49.60000000000000,4618.41,718.33,68.17000000000010,106.56000000000000,4313.9,737.54,62.43000000000030,103.45000000000000,4145.36,669.04,42.10000000000040,78.47000000000000,4003.77,593.25,32.86000000000010,55.940000000000100,4236.77,641.7,38.51999999999950,73.13,4457.8,663.17,45.46000000000000,81.12,4176.28,569.5,37.69000000000050,45.90000000000000,3755.85,523.04,17.559999999999900,34.04000000000010,3999.71,772.38,67.27000000000000,118.29000000000000,4509.91,684.32,46.73000000000050,100.20000000000000,3747.62,658.2,51.11000000000010,90.95999999999990,4596.73,699.32,60.93000000000030,91.78000000000000,3892.59,598.34,26.59999999999990,54.67000000000000,3230.47,648.79,46.83000000000040,91.41000000000010,3319.65,535.92,27.94999999999980,48.59000000000000,3534.41,502.62,20.44000000000010,36.53000000000000,4210.54,590.07,27.81999999999970,46.09999999999990,2789.89,534.4,26.76000000000020,42.24000000000000,4299.2,589.37,26.61999999999990,23.809999999999900,4184.18,687.17,47.36999999999990,85.35000000000000,4396.29,549.97,19.800000000000200,42.80000000000000 -571,3464.69,690.87,45.13999999999990,85.24000000000000,3586.63,559.22,22.790000000000000,49.60000000000000,4619.43,717.53,68.17999999999940,106.56000000000000,4317.18,737.7,62.42999999999940,103.44000000000000,4149.04,669.24,42.10000000000040,78.47000000000000,4006.05,593.41,32.85999999999970,55.940000000000100,4237.71,640.66,38.51999999999950,73.13,4454.74,662.93,45.46000000000000,81.12,4180.94,570.22,38.030000000000700,46.03000000000000,3757.29,523.05,17.559999999999900,34.04000000000010,4001.16,771.92,66.98000000000000,117.99,4506.21,682.64,46.720000000000300,100.20000000000000,3749.06,657.8,50.88000000000010,90.81000000000010,4591.65,697.74,60.55000000000020,91.23000000000000,3895.77,598.25,26.5300000000002,54.57000000000010,3235.08,648.26,46.82999999999990,91.41000000000000,3322.48,535.92,27.94999999999980,48.58000000000000,3534.94,502.74,20.42999999999980,36.53000000000000,4216.37,590.9,28.0600000000004,46.13,2790.24,534.43,26.76000000000020,42.24000000000000,4305.75,588.27,26.63000000000010,23.81000000000010,4186.48,687.62,47.25,85.02000000000000,4396.39,550.03,19.80999999999950,42.80000000000010 -572,3466.22,690.81,45.14000000000030,85.24000000000000,3587.69,559.22,22.790000000000000,49.60000000000000,4620.46,716.73,68.18000000000030,106.56000000000000,4318.57,737.26,62.43000000000030,103.44000000000000,4152.72,669.44,42.099999999999500,78.46999999999990,4008.33,593.58,32.86000000000010,55.93000000000000,4238.66,639.62,38.51000000000020,73.13,4451.68,662.69,45.46000000000000,81.11999999999990,4185.61,570.95,38.36000000000060,46.16000000000000,3758.73,523.05,17.559999999999900,34.04000000000010,4002.6,771.46,66.69000000000010,117.68000000000000,4502.5,680.96,46.720000000000300,100.20000000000000,3750.51,657.41,50.63999999999990,90.64,4586.58,696.16,60.159999999999900,90.67000000000010,3898.94,598.15,26.4699999999998,54.48000000000000,3239.69,647.74,46.82999999999990,91.41000000000000,3325.31,535.91,27.95000000000030,48.59000000000000,3535.46,502.86,20.42999999999980,36.53000000000000,4222.2,591.73,28.290000000000000,46.17000000000000,2790.59,534.45,26.759999999999800,42.24000000000000,4312.31,587.17,26.6299999999992,23.800000000000100,4188.79,688.07,47.13000000000010,84.68999999999990,4396.5,550.09,19.8100000000004,42.80000000000000 -573,3467.75,690.75,45.13999999999990,85.24000000000000,3588.75,559.21,22.790000000000000,49.610000000000000,4621.49,715.92,68.17000000000010,106.57000000000000,4319.96,736.81,62.43000000000030,103.45000000000000,4156.4,669.64,42.10000000000040,78.47000000000000,4010.61,593.74,32.85999999999970,55.93999999999990,4239.6,638.58,38.50999999999930,73.13,4448.62,662.45,45.46000000000000,81.1099999999999,4190.27,571.67,38.70999999999910,46.29000000000010,3760.18,523.05,17.550000000000200,34.04000000000010,4004.04,771.0,66.40000000000010,117.38,4498.8,679.28,46.720000000000300,100.20000000000000,3751.96,657.01,50.40000000000010,90.49,4581.5,694.59,59.79000000000000,90.11,3902.12,598.05,26.40000000000010,54.40000000000010,3244.3,647.21,46.82999999999990,91.41000000000000,3328.14,535.91,27.95000000000030,48.59000000000000,3535.99,502.98,20.43000000000030,36.54000000000000,4228.81,592.57,28.529999999999700,46.19999999999990,2790.94,534.47,26.759999999999800,42.24000000000000,4318.87,586.06,26.63000000000010,23.81000000000010,4191.09,688.52,47.01000000000020,84.35000000000000,4397.51,550.15,19.81999999999970,42.80000000000010 -574,3469.28,690.69,45.13999999999990,85.2399999999999,3589.81,559.21,22.790000000000000,49.610000000000000,4622.51,715.12,68.17999999999940,106.57000000000000,4321.35,736.37,62.4399999999996,103.44000000000000,4160.07,669.84,42.10000000000040,78.45999999999990,4012.89,593.9,32.86000000000010,55.940000000000100,4240.54,637.54,38.52000000000040,73.12,4445.56,662.21,45.46000000000000,81.11000000000000,4194.94,572.39,39.04000000000000,46.42000000000000,3761.62,523.05,17.559999999999900,34.04000000000010,4005.48,770.54,66.11000000000010,117.08000000000000,4495.09,677.6,46.720000000000300,100.20000000000000,3753.4,656.61,50.17000000000010,90.34000000000010,4576.42,693.01,59.409999999999900,89.55000000000000,3905.29,597.95,26.340000000000100,54.309999999999900,3248.91,646.69,46.82999999999990,91.40000000000000,3330.96,535.9,27.94999999999980,48.59000000000000,3536.51,503.1,20.42999999999980,36.54000000000000,4235.43,593.4,28.75999999999930,46.23000000000000,2791.29,534.49,26.76000000000020,42.24000000000000,4325.43,584.96,26.61999999999990,23.809999999999900,4193.39,688.97,46.89999999999960,84.02000000000000,4398.52,550.21,19.83999999999920,42.80000000000000 -575,3470.81,690.63,45.13999999999990,85.24000000000000,3590.87,559.21,22.790000000000000,49.610000000000000,4623.54,714.32,68.18000000000030,106.56000000000000,4322.75,735.92,62.43000000000030,103.45000000000000,4163.75,670.04,42.10000000000040,78.46000000000000,4015.17,594.07,32.86000000000010,55.93000000000000,4241.48,636.5,38.52000000000040,73.12,4442.5,661.97,45.46000000000000,81.11000000000000,4199.6,573.11,39.3799999999992,46.55000000000000,3763.06,523.05,17.559999999999900,34.04000000000010,4006.92,770.08,65.81999999999970,116.78000000000000,4491.39,675.92,46.71999999999940,100.20000000000000,3754.85,656.22,49.93000000000030,90.18000000000000,4571.35,691.43,59.01999999999950,89.0,3908.46,597.86,26.279999999999700,54.21000000000000,3253.52,646.16,46.82999999999990,91.41000000000010,3333.79,535.9,27.94999999999980,48.59000000000000,3537.03,503.23,20.4399999999996,36.53000000000000,4242.05,594.23,28.98999999999980,46.27000000000000,2791.64,534.52,26.76000000000020,42.24000000000000,4330.7,582.84,26.61999999999990,23.809999999999900,4195.69,689.42,46.79000000000000,83.69000000000010,4399.54,550.28,19.840000000000100,42.79000000000010 -576,3472.34,690.57,45.13999999999990,85.2399999999999,3591.93,559.21,22.790000000000000,49.610000000000000,4624.57,713.52,68.17000000000010,106.56000000000000,4324.14,735.48,62.42999999999940,103.45000000000000,4167.43,670.23,42.099999999999500,78.47000000000000,4017.45,594.23,32.86000000000010,55.93999999999990,4242.43,635.45,38.50999999999930,73.13,4438.68,662.86,45.46000000000000,81.12,4204.27,573.83,39.70999999999910,46.68999999999990,3764.5,523.05,17.559999999999900,34.04000000000010,4008.37,769.62,65.52000000000000,116.47000000000000,4487.68,674.24,46.71999999999940,100.20000000000000,3756.3,655.82,49.6899999999996,90.03000000000000,4566.27,689.86,58.63999999999940,88.43000000000000,3911.64,597.76,26.21000000000000,54.13,3258.13,645.64,46.82999999999990,91.40000000000000,3336.62,535.9,27.95000000000030,48.59000000000000,3537.56,503.35,20.42999999999980,36.53000000000000,4248.66,595.07,29.23000000000050,46.30000000000000,2791.99,534.54,26.76000000000020,42.24000000000000,4335.78,584.61,26.61999999999990,23.809999999999900,4197.99,689.87,46.67000000000010,83.36000000000000,4400.55,550.34,19.85999999999970,42.79000000000000 -577,3473.87,690.51,45.14000000000030,85.24000000000000,3592.99,559.21,22.79000000000040,49.610000000000000,4625.59,712.72,68.18000000000030,106.56000000000000,4325.53,735.04,62.43000000000030,103.44000000000000,4171.11,670.43,42.10000000000040,78.47000000000000,4019.73,594.39,32.86999999999990,55.940000000000100,4243.37,634.41,38.51000000000020,73.13,4437.0,661.36,45.46000000000000,81.12,4208.93,574.55,40.04999999999930,46.82000000000010,3768.38,523.11,17.559999999999900,34.040000000000000,4009.81,769.16,65.23000000000000,116.17000000000000,4484.89,673.74,46.75,99.76,3757.74,655.42,49.46000000000000,89.87,4561.19,688.28,58.26000000000020,87.88,3914.81,597.66,26.13999999999990,54.04000000000010,3262.74,645.11,46.83000000000040,91.41000000000000,3339.45,535.89,27.95000000000030,48.59000000000000,3538.08,503.47,20.43000000000030,36.53000000000000,4255.28,595.9,29.46000000000000,46.33000000000000,2792.35,534.56,26.76000000000020,42.24000000000000,4340.86,586.38,26.61999999999990,23.81000000000010,4200.56,689.05,46.54999999999930,83.03000000000010,4401.56,550.4,19.86999999999990,42.80000000000010 -578,3475.4,690.45,45.13999999999990,85.24000000000000,3594.05,559.21,22.790000000000000,49.610000000000000,4626.62,711.91,68.18000000000030,106.57000000000000,4326.92,734.59,62.43000000000030,103.45000000000000,4174.78,670.63,42.11000000000060,78.47000000000000,4022.01,594.56,32.86999999999990,55.930000000000100,4244.31,633.37,38.50999999999930,73.13,4435.32,659.87,45.46000000000000,81.11000000000000,4213.6,575.27,40.3799999999992,46.950000000000000,3772.26,523.16,17.559999999999900,34.04000000000010,4011.25,768.7,64.94000000000010,115.87,4482.1,673.24,46.77999999999980,99.31999999999990,3759.19,655.02,49.2199999999998,89.72000000000000,4556.11,686.7,57.89000000000030,87.31999999999990,3917.98,597.56,26.079999999999900,53.950000000000000,3267.35,644.59,46.82999999999990,91.40000000000000,3342.27,535.89,27.94999999999980,48.59000000000000,3538.61,503.59,20.42999999999980,36.53000000000000,4261.9,596.73,29.69000000000050,46.370000000000000,2792.7,534.58,26.76000000000020,42.24000000000000,4345.94,588.15,26.6200000000008,23.81000000000010,4203.12,688.24,46.44000000000050,82.70000000000010,4402.58,550.46,19.88000000000010,42.80000000000000 -579,3476.93,690.4,45.14000000000030,85.23000000000000,3595.11,559.21,22.790000000000000,49.610000000000000,4627.65,711.11,68.17000000000010,106.57000000000000,4328.31,734.15,62.42999999999940,103.44000000000000,4178.46,670.83,42.10000000000040,78.46999999999990,4024.29,594.72,32.86999999999990,55.93999999999990,4245.25,632.33,38.52000000000040,73.13,4433.65,658.37,45.46000000000000,81.12,4218.26,575.99,40.72999999999960,47.08000000000000,3776.14,523.22,17.559999999999900,34.040000000000000,4012.69,768.24,64.65000000000010,115.57000000000000,4479.3,672.73,46.82999999999990,98.89,3760.64,654.63,48.98000000000000,89.56000000000010,4551.04,685.13,57.5,86.76000000000000,3921.16,597.47,26.01000000000020,53.860000000000000,3271.96,644.06,46.82999999999990,91.41000000000010,3345.1,535.89,27.95000000000030,48.58000000000000,3539.13,503.71,20.42999999999980,36.53000000000000,4268.51,597.57,29.92999999999940,46.40000000000000,2793.05,534.61,26.759999999999800,42.24000000000000,4351.02,589.92,26.61999999999990,23.81000000000010,4205.68,687.43,46.31999999999970,82.36000000000000,4403.59,550.52,19.88999999999940,42.80000000000010 -580,3478.46,690.34,45.13999999999990,85.23000000000000,3596.17,559.21,22.790000000000000,49.610000000000000,4628.68,710.31,68.17000000000010,106.56000000000000,4329.7,733.71,62.43000000000030,103.44000000000000,4182.14,671.03,42.099999999999500,78.47000000000000,4026.58,594.88,32.86000000000010,55.940000000000100,4246.19,631.29,38.52000000000040,73.12,4431.97,656.88,45.46000000000000,81.11000000000000,4222.93,576.71,41.05999999999950,47.21999999999990,3780.02,523.27,17.550000000000200,34.040000000000000,4014.13,767.78,64.36999999999990,115.26,4476.51,672.23,46.85999999999970,98.46000000000000,3762.08,654.23,48.75,89.41000000000000,4545.96,683.55,57.11999999999990,86.20000000000010,3924.33,597.37,25.95000000000030,53.77000000000000,3276.57,643.54,46.82999999999990,91.40000000000010,3347.93,535.88,27.95000000000030,48.59000000000000,3539.65,503.83,20.44000000000010,36.53000000000000,4275.13,598.4,30.15999999999990,46.430000000000100,2793.4,534.63,26.759999999999800,42.24000000000000,4356.1,591.69,26.61999999999990,23.809999999999900,4208.25,686.61,46.19999999999980,82.04000000000000,4404.61,550.58,19.900000000000500,42.80000000000000 -581,3479.99,690.28,45.14000000000030,85.23000000000000,3597.23,559.21,22.790000000000000,49.610000000000000,4629.7,709.51,68.18000000000030,106.56000000000000,4331.09,733.26,62.43000000000030,103.45000000000000,4185.82,671.23,42.10000000000040,78.46000000000000,4028.86,595.05,32.85999999999970,55.930000000000100,4247.14,630.25,38.50999999999930,73.12,4430.29,655.38,45.46000000000000,81.11000000000000,4227.6,577.43,41.38999999999940,47.35000000000000,3783.9,523.33,17.549999999999700,34.040000000000000,4015.58,767.33,64.07000000000020,114.95000000000000,4473.72,671.73,46.88999999999940,98.02000000000000,3763.53,653.83,48.50999999999980,89.26000000000000,4540.88,681.97,56.73999999999980,85.65000000000000,3927.51,597.27,25.87999999999970,53.680000000000100,3281.18,643.01,46.83000000000040,91.41000000000000,3350.76,535.88,27.94999999999980,48.59000000000000,3540.18,503.95,20.43000000000030,36.53000000000000,4281.75,599.23,30.390000000000300,46.47000000000000,2794.35,534.69,26.76000000000020,42.239999999999900,4361.18,593.46,26.61999999999990,23.809999999999900,4210.81,685.8,46.08999999999920,81.70000000000010,4405.62,550.64,19.90999999999990,42.80000000000010 -582,3481.52,690.22,45.13999999999990,85.23000000000000,3598.29,559.21,22.790000000000000,49.610000000000000,4630.73,708.71,68.18000000000030,106.56000000000000,4332.48,732.82,62.43000000000030,103.44000000000000,4189.49,671.43,42.11000000000060,78.46000000000000,4031.14,595.21,32.86000000000010,55.93999999999990,4248.08,629.21,38.51000000000020,73.12,4428.62,653.88,45.46000000000000,81.12,4232.26,578.15,41.72999999999960,47.48000000000000,3787.77,523.38,17.559999999999900,34.040000000000000,4017.02,766.87,63.7800000000002,114.65000000000000,4470.93,671.23,46.92000000000010,97.57999999999990,3764.98,653.43,48.27000000000000,89.10000000000000,4535.8,680.39,56.35999999999970,85.09000000000000,3930.68,597.17,25.820000000000200,53.60000000000000,3285.79,642.48,46.82999999999990,91.41000000000000,3353.58,535.88,27.95000000000030,48.58000000000000,3540.81,503.97,20.42999999999980,36.53000000000000,4288.36,600.07,30.63000000000010,46.5,2795.3,534.76,26.759999999999800,42.24000000000000,4366.26,595.23,26.61999999999990,23.809999999999900,4213.37,684.99,45.98000000000050,81.37,4406.63,550.7,19.93000000000030,42.80000000000000 -583,3483.05,690.16,45.13999999999990,85.23000000000000,3599.35,559.21,22.790000000000000,49.610000000000000,4631.76,707.9,68.17000000000010,106.57000000000000,4333.88,732.37,62.43000000000030,103.45000000000000,4193.17,671.62,42.10000000000040,78.47000000000000,4033.42,595.37,32.86000000000010,55.93999999999990,4249.02,628.16,38.51999999999950,73.13,4426.94,652.39,45.46000000000000,81.11000000000000,4236.93,578.87,42.05999999999950,47.610000000000000,3791.65,523.43,17.559999999999900,34.04000000000010,4018.46,766.41,63.48999999999980,114.35000000000000,4468.14,670.73,46.94999999999980,97.14,3766.42,653.04,48.04000000000000,88.94000000000010,4530.73,678.82,55.98000000000050,84.53000000000000,3933.85,597.08,25.76000000000020,53.5,3290.4,641.96,46.82999999999990,91.41000000000000,3356.41,535.87,27.95000000000030,48.59000000000000,3541.44,503.98,20.42999999999980,36.53000000000000,4294.98,600.9,30.860000000000600,46.53000000000000,2796.26,534.82,26.759999999999800,42.239999999999900,4371.34,597.0,26.61999999999990,23.809999999999900,4215.94,684.17,45.85000000000040,81.04000000000010,4407.65,550.76,19.93000000000030,42.80000000000000 -584,3484.58,690.1,45.13999999999990,85.23000000000000,3600.41,559.21,22.790000000000000,49.59999999999990,4632.78,707.1,68.18000000000030,106.57000000000000,4335.27,731.93,62.42999999999940,103.45000000000000,4196.85,671.82,42.099999999999500,78.46999999999990,4035.7,595.54,32.86000000000010,55.930000000000100,4249.96,627.12,38.51999999999950,73.13,4425.26,650.89,45.46000000000000,81.12,4241.59,579.6,42.39999999999960,47.74000000000000,3793.68,523.58,17.559999999999900,34.040000000000000,4019.9,765.95,63.19999999999980,114.04000000000000,4465.34,670.23,46.98999999999980,96.69999999999990,3767.87,652.64,47.80000000000020,88.79000000000000,4525.65,677.24,55.60000000000040,83.97000000000000,3937.03,596.98,25.6899999999996,53.41000000000000,3295.01,641.43,46.82999999999990,91.41000000000010,3359.24,535.87,27.95000000000030,48.59000000000000,3542.07,503.99,20.42999999999980,36.54000000000000,4301.6,601.73,31.09999999999950,46.569999999999900,2797.21,534.88,26.759999999999800,42.24000000000000,4376.42,598.77,26.61999999999990,23.81000000000010,4218.5,683.36,45.73999999999980,80.71000000000000,4408.66,550.83,19.94999999999980,42.79000000000000 -585,3486.11,690.04,45.13999999999990,85.23000000000000,3601.47,559.21,22.79000000000040,49.59999999999990,4633.81,706.3,68.17999999999940,106.56000000000000,4336.66,731.49,62.43000000000030,103.44000000000000,4200.53,672.02,42.10000000000040,78.47000000000000,4037.98,595.7,32.86000000000010,55.93999999999990,4250.9,626.08,38.52000000000040,73.13,4423.59,649.39,45.46000000000000,81.12,4246.26,580.32,42.72999999999960,47.870000000000000,3795.71,523.73,17.559999999999900,34.040000000000000,4021.34,765.49,62.909999999999900,113.74,4462.55,669.73,47.01999999999950,96.27000000000000,3769.32,652.24,47.559999999999900,88.64000000000000,4520.57,675.66,55.220000000000300,83.42000000000010,3940.2,596.88,25.63000000000010,53.32000000000010,3299.61,640.91,46.83999999999970,91.41000000000010,3362.07,535.86,27.94999999999980,48.59000000000000,3542.7,504.01,20.43000000000030,36.53000000000000,4308.21,602.57,31.340000000000100,46.59999999999990,2798.16,534.95,26.76000000000020,42.24000000000000,4379.21,601.83,26.61999999999990,23.809999999999900,4221.06,682.55,45.6299999999992,80.38,4409.67,550.89,19.96000000000000,42.79000000000000 -586,3487.64,689.98,45.14000000000030,85.23000000000000,3602.53,559.21,22.790000000000000,49.59999999999990,4634.84,705.5,68.17000000000010,106.56000000000000,4338.05,731.04,62.42999999999940,103.45000000000000,4204.21,672.22,42.10000000000040,78.47000000000000,4040.26,595.86,32.85999999999970,55.93999999999990,4251.85,625.04,38.50999999999930,73.13,4421.91,647.9,45.46000000000000,81.11000000000000,4250.92,581.04,43.07999999999990,48.0,3797.74,523.87,17.5600000000004,34.040000000000000,4019.58,764.17,62.61999999999990,113.43000000000000,4459.76,669.23,47.05999999999950,95.82999999999990,3770.76,651.85,47.32999999999990,88.48000000000000,4515.5,674.09,54.82999999999990,82.85000000000000,3943.37,596.78,25.570000000000200,53.24000000000000,3304.22,640.38,46.84000000000020,91.41000000000000,3364.89,535.86,27.95000000000030,48.59000000000000,3543.33,504.02,20.43000000000030,36.54000000000000,4314.83,603.4,31.56999999999970,46.63,2799.11,535.01,26.759999999999800,42.24000000000000,4381.99,604.89,26.61999999999990,23.81000000000010,4223.63,681.73,45.5,80.05000000000000,4410.69,550.95,19.97000000000030,42.80000000000000 -587,3489.17,689.92,45.13999999999990,85.23000000000000,3603.59,559.21,22.790000000000000,49.59999999999990,4635.87,704.7,68.17000000000010,106.56000000000000,4339.44,730.6,62.43000000000030,103.44000000000000,4205.89,671.6,42.099999999999500,78.47000000000000,4042.54,596.03,32.86999999999990,55.930000000000100,4252.79,624.0,38.51000000000020,73.12,4420.23,646.4,45.46000000000000,81.12,4255.59,581.76,43.409999999999900,48.13,3799.77,524.02,17.559999999999900,34.040000000000000,4017.83,762.84,62.32000000000020,113.14,4456.97,668.72,47.09000000000020,95.40000000000000,3772.21,651.45,47.09000000000020,88.31999999999990,4510.42,672.51,54.44999999999980,82.30000000000000,3946.55,596.69,25.5,53.14000000000000,3308.83,639.86,46.84000000000020,91.40000000000000,3367.72,535.86,27.95000000000030,48.59000000000000,3543.96,504.04,20.42999999999980,36.53000000000000,4321.45,604.23,31.800000000000200,46.67000000000000,2800.07,535.08,26.759999999999800,42.24000000000000,4384.78,607.96,26.61999999999990,23.800000000000000,4226.19,680.92,45.39000000000030,79.72000000000000,4411.7,551.01,19.98000000000050,42.80000000000000 -588,3490.7,689.86,45.14000000000030,85.23000000000000,3604.65,559.21,22.790000000000000,49.59999999999990,4636.89,703.89,68.17999999999940,106.57000000000000,4340.83,730.15,62.43000000000030,103.45000000000000,4207.58,670.99,42.10000000000040,78.46000000000000,4044.82,596.19,32.86999999999990,55.93999999999990,4253.73,622.96,38.52000000000040,73.12,4418.55,644.91,45.46000000000000,81.11000000000000,4260.25,582.48,43.75,48.27000000000000,3801.8,524.16,17.559999999999900,34.04000000000010,4016.07,761.52,62.02999999999980,112.83000000000000,4455.22,668.03,47.13000000000010,94.96000000000000,3773.66,651.05,46.85000000000040,88.17000000000010,4505.34,670.93,54.07999999999990,81.74000000000000,3949.72,596.59,25.43000000000030,53.05000000000000,3313.44,639.33,46.82999999999990,91.41000000000000,3370.55,535.85,27.94999999999980,48.59000000000000,3544.59,504.05,20.44000000000010,36.53000000000000,4328.06,605.06,32.040000000000000,46.71000000000000,2801.02,535.14,26.76000000000020,42.24000000000000,4387.57,611.02,26.61999999999990,23.800000000000100,4228.75,680.11,45.27999999999980,79.38,4412.72,551.07,19.979999999999600,42.80000000000000 -589,3492.23,689.8,45.13999999999990,85.23000000000000,3605.71,559.21,22.790000000000000,49.59999999999990,4637.92,703.09,68.18000000000030,106.57000000000000,4342.22,729.71,62.42999999999940,103.45000000000000,4209.27,670.37,42.099999999999500,78.47000000000000,4046.51,596.04,32.85999999999970,55.930000000000100,4254.67,621.92,38.51999999999950,73.12,4416.88,643.41,45.46000000000000,81.11000000000000,4264.92,583.2,44.07999999999990,48.40000000000000,3803.83,524.31,17.559999999999900,34.04000000000010,4014.31,760.2,61.74000000000020,112.53000000000000,4453.48,667.33,47.16000000000080,94.52000000000000,3775.1,650.65,46.61999999999990,88.02000000000000,4500.26,669.35,53.69999999999980,81.18999999999990,3952.89,596.49,25.370000000000300,52.97000000000000,3318.05,638.81,46.82999999999990,91.40000000000010,3373.38,535.85,27.94999999999980,48.59000000000000,3545.22,504.07,20.44000000000010,36.53000000000000,4334.68,605.9,32.26999999999950,46.73000000000000,2801.97,535.2,26.76000000000020,42.24000000000000,4390.35,614.08,26.61999999999990,23.800000000000000,4231.32,679.29,45.159999999999900,79.06000000000010,4413.73,551.13,20.0,42.80000000000000 -590,3493.76,689.74,45.13999999999990,85.23000000000000,3606.77,559.2,22.790000000000000,49.6099999999999,4638.95,702.29,68.17000000000010,106.56000000000000,4343.61,729.27,62.43000000000030,103.44000000000000,4210.96,669.75,42.10000000000040,78.47000000000000,4048.2,595.88,32.86000000000010,55.940000000000100,4255.61,620.87,38.52000000000040,73.13,4415.2,641.91,45.46000000000000,81.12,4272.67,583.25,43.909999999999900,48.40000000000000,3805.87,524.46,17.550000000000200,34.040000000000000,4012.55,758.87,61.44999999999980,112.23000000000000,4451.74,666.63,47.19000000000050,94.08000000000000,3776.55,650.26,46.37999999999970,87.86000000000000,4495.19,667.78,53.3100000000004,80.62,3956.07,596.39,25.299999999999700,52.88,3322.66,638.28,46.82999999999990,91.41000000000010,3376.21,535.85,27.94000000000010,48.57999999999990,3545.85,504.08,20.44000000000010,36.53000000000000,4341.3,606.73,32.5,46.77000000000000,2802.93,535.27,26.76000000000020,42.24000000000000,4393.14,617.14,26.61999999999990,23.800000000000100,4233.88,678.48,45.04000000000000,78.72000000000000,4414.74,551.19,20.01000000000020,42.80000000000000 -591,3495.29,689.68,45.13999999999990,85.23000000000000,3607.83,559.2,22.790000000000000,49.6099999999999,4639.97,701.49,68.17999999999940,106.56000000000000,4345.0,728.82,62.43000000000030,103.45000000000000,4212.65,669.14,42.10000000000040,78.46000000000000,4049.89,595.73,32.86000000000010,55.93999999999990,4256.56,619.83,38.50999999999930,73.13,4413.52,640.42,45.45999999999910,81.11000000000000,4280.41,583.31,43.75,48.40000000000010,3807.9,524.6,17.549999999999700,34.040000000000000,4010.79,757.55,61.159999999999900,111.92000000000000,4449.99,665.93,47.23000000000050,93.65000000000010,3778.0,649.86,46.13999999999990,87.71000000000000,4491.63,666.19,53.30999999999950,80.61999999999990,3959.24,596.3,25.24000000000020,52.780000000000100,3327.27,637.76,46.82999999999990,91.40000000000000,3379.03,535.84,27.94999999999980,48.58999999999990,3546.49,504.1,20.43000000000030,36.53000000000000,4346.07,606.99,32.51000000000020,46.77000000000000,2803.88,535.33,26.759999999999800,42.24000000000000,4396.8,622.79,26.61999999999990,23.800000000000100,4236.44,677.67,44.93000000000030,78.39000000000000,4415.76,551.25,20.019999999999500,42.80000000000000 -592,3496.82,689.62,45.13999999999990,85.23000000000000,3608.89,559.2,22.790000000000000,49.6099999999999,4641.0,700.69,68.18000000000030,106.56000000000000,4346.4,728.38,62.43000000000030,103.45000000000000,4214.33,668.52,42.10999999999970,78.47000000000000,4051.57,595.58,32.86999999999990,55.93000000000000,4257.5,618.79,38.51000000000020,73.13,4411.85,638.92,45.46000000000000,81.11000000000000,4288.16,583.36,43.56999999999970,48.40000000000000,3809.93,524.75,17.550000000000200,34.040000000000000,4009.03,756.23,60.86999999999990,111.62,4448.25,665.23,47.26000000000020,93.21000000000000,3779.44,649.46,45.909999999999900,87.55000000000000,4488.07,664.59,53.3100000000004,80.63,3962.42,596.2,25.17000000000010,52.69999999999990,3331.88,637.23,46.82999999999990,91.41000000000000,3381.86,535.84,27.94999999999980,48.58999999999990,3547.12,504.11,20.43000000000030,36.53000000000000,4350.85,607.24,32.50999999999930,46.77000000000000,2804.83,535.4,26.76000000000020,42.24000000000000,4400.46,628.43,26.63000000000010,23.81000000000010,4239.01,676.85,44.80999999999950,78.06000000000000,4416.77,551.31,20.029999999999700,42.80000000000010 -593,3498.35,689.56,45.13999999999990,85.24000000000000,3609.95,559.2,22.790000000000000,49.6099999999999,4642.03,699.88,68.17000000000010,106.57000000000000,4347.79,727.94,62.43000000000030,103.44000000000000,4216.02,667.9,42.099999999999500,78.47000000000000,4053.26,595.42,32.85999999999970,55.940000000000100,4258.44,617.75,38.52000000000040,73.13,4410.17,637.42,45.46000000000000,81.12,4295.91,583.42,43.40000000000060,48.40000000000010,3813.15,524.8,17.559999999999900,34.04000000000010,4007.27,754.91,60.57999999999990,111.31000000000000,4446.51,664.53,47.29000000000000,92.78000000000000,3780.89,649.06,45.67000000000010,87.40000000000010,4484.51,663.0,53.30999999999950,80.63,3965.59,596.1,25.10999999999970,52.610000000000000,3336.49,636.71,46.83000000000040,91.40000000000000,3384.69,535.84,27.94999999999980,48.57999999999990,3547.75,504.13,20.42999999999980,36.53000000000000,4355.63,607.5,32.5,46.77000000000000,2805.78,535.46,26.759999999999800,42.24000000000000,4404.13,634.08,26.61999999999990,23.809999999999900,4241.57,676.04,44.70000000000070,77.73000000000000,4417.78,551.38,20.050000000000200,42.79000000000000 -594,3499.88,689.5,45.13999999999990,85.24000000000000,3611.01,559.2,22.790000000000000,49.6099999999999,4643.06,699.08,68.16999999999920,106.57000000000000,4349.18,727.49,62.42999999999940,103.45000000000000,4217.71,667.29,42.10000000000040,78.46000000000000,4054.95,595.27,32.86000000000010,55.940000000000100,4259.38,616.71,38.51999999999950,73.12,4408.49,635.93,45.46000000000000,81.11000000000000,4301.87,584.33,43.23000000000050,48.40000000000000,3816.37,524.84,17.559999999999900,34.040000000000000,4005.51,753.58,60.29000000000000,111.02000000000000,4444.76,663.83,47.32999999999990,92.33999999999990,3782.34,648.67,45.42999999999980,87.24000000000000,4480.95,661.41,53.3100000000004,80.62,3968.44,595.55,25.110000000000100,52.610000000000000,3341.1,636.18,46.82999999999990,91.41000000000010,3387.52,535.83,27.94000000000010,48.58999999999990,3548.38,504.14,20.42999999999980,36.53000000000000,4360.41,607.76,32.5,46.76000000000000,2806.74,535.52,26.76000000000020,42.24000000000000,4407.79,639.73,26.61999999999990,23.809999999999900,4244.13,675.23,44.57999999999990,77.39000000000000,4418.8,551.44,20.050000000000200,42.79000000000000 -595,3501.41,689.44,45.13000000000010,85.2399999999999,3612.07,559.2,22.790000000000000,49.6099999999999,4644.08,698.28,68.18000000000030,106.56000000000000,4350.57,727.05,62.43000000000030,103.44000000000000,4219.4,666.67,42.10000000000040,78.47000000000000,4056.64,595.12,32.86000000000010,55.93000000000000,4260.33,615.67,38.51000000000020,73.12,4406.82,634.43,45.46000000000000,81.12,4307.83,585.23,43.0600000000004,48.40000000000000,3819.59,524.89,17.559999999999900,34.040000000000000,4003.76,752.26,59.98999999999980,110.71000000000000,4443.02,663.13,47.35999999999970,91.91000000000000,3783.78,648.27,45.19999999999980,87.09000000000000,4477.38,659.82,53.31999999999970,80.62,3971.28,595.01,25.10999999999970,52.610000000000000,3345.71,635.65,46.82999999999990,91.41000000000000,3390.34,535.83,27.94999999999980,48.58999999999990,3549.01,504.15,20.42999999999980,36.54000000000010,4365.18,608.01,32.50999999999930,46.77000000000000,2807.69,535.59,26.759999999999800,42.24000000000000,4409.96,640.49,26.61999999999990,23.809999999999900,4246.69,674.41,44.470000000000300,77.07000000000010,4419.81,551.5,20.06999999999970,42.80000000000000 -596,3502.94,689.38,45.13000000000010,85.24000000000000,3613.13,559.2,22.790000000000000,49.6099999999999,4645.11,697.48,68.18000000000030,106.56000000000000,4351.96,726.6,62.43000000000030,103.45000000000000,4221.09,666.05,42.099999999999500,78.47000000000000,4058.46,594.83,32.86999999999990,55.860000000000000,4261.27,614.62,38.50999999999930,73.13,4405.14,632.93,45.46000000000000,81.12,4313.79,586.14,42.89999999999960,48.40000000000000,3822.81,524.94,17.559999999999900,34.040000000000000,4002.0,750.94,59.69999999999980,110.40000000000000,4441.27,662.43,47.39999999999960,91.47000000000000,3785.23,647.87,44.9699999999998,86.93999999999990,4473.82,658.23,53.32000000000060,80.62,3974.13,594.46,25.10999999999970,52.610000000000000,3350.32,635.13,46.82999999999990,91.41000000000000,3393.17,535.83,27.94999999999980,48.57999999999990,3549.64,504.17,20.43000000000030,36.53000000000000,4369.96,608.27,32.51000000000020,46.77000000000000,2808.64,535.65,26.76000000000020,42.24000000000000,4412.13,641.25,26.61999999999990,23.800000000000000,4249.26,673.6,44.349999999999500,76.74000000000000,4420.83,551.56,20.06999999999970,42.80000000000010 -597,3504.46,689.32,45.13999999999990,85.2399999999999,3614.19,559.2,22.790000000000000,49.6099999999999,4646.14,696.68,68.17000000000010,106.56000000000000,4353.35,726.16,62.42999999999940,103.45000000000000,4222.78,665.44,42.10000000000040,78.45999999999990,4060.29,594.53,32.86999999999990,55.80000000000010,4262.21,613.58,38.51999999999950,73.13,4405.78,631.64,45.46000000000000,81.12,4319.75,587.05,42.72999999999960,48.40000000000010,3826.04,524.99,17.550000000000200,34.040000000000000,4000.24,749.61,59.42000000000010,110.11,4439.53,661.74,47.43000000000030,91.02000000000000,3786.68,647.48,44.73000000000000,86.77000000000000,4470.26,656.64,53.31999999999970,80.62,3976.98,593.92,25.110000000000100,52.610000000000000,3354.93,634.6,46.83000000000040,91.41000000000000,3396.0,535.82,27.94999999999980,48.58999999999990,3550.27,504.18,20.42999999999980,36.54000000000000,4374.74,608.52,32.5,46.77000000000000,2809.59,535.72,26.759999999999800,42.24000000000000,4414.3,642.0,26.61999999999990,23.809999999999900,4251.82,672.79,44.23000000000050,76.40000000000010,4421.84,551.62,20.090000000000100,42.80000000000000 -598,3505.63,688.77,45.13999999999990,85.24000000000000,3615.25,559.2,22.790000000000000,49.6099999999999,4647.16,695.87,68.18000000000030,106.57000000000000,4354.74,725.72,62.43000000000030,103.44000000000000,4224.46,664.82,42.10999999999970,78.46999999999990,4062.12,594.24,32.86000000000010,55.73000000000000,4263.15,612.54,38.52000000000040,73.13,4406.43,630.35,45.46000000000000,81.12,4325.71,587.96,42.5600000000004,48.40000000000000,3829.26,525.04,17.559999999999900,34.04000000000010,3998.48,748.29,59.13000000000010,109.80000000000000,4437.79,661.04,47.46000000000000,90.59000000000010,3788.12,647.08,44.5,86.62,4466.96,654.83,53.3100000000004,80.62,3979.82,593.37,25.10999999999970,52.610000000000000,3359.54,634.08,46.82999999999990,91.41000000000000,3398.83,535.82,27.94000000000010,48.58999999999990,3550.9,504.2,20.42999999999980,36.53000000000000,4379.52,608.78,32.5,46.77000000000000,2810.55,535.78,26.759999999999800,42.24000000000000,4416.47,642.76,26.61999999999990,23.81000000000010,4254.38,671.97,44.11999999999990,76.07999999999990,4422.85,551.68,20.09999999999950,42.80000000000010 -599,3506.8,688.23,45.13999999999990,85.23000000000000,3616.31,559.2,22.790000000000000,49.6099999999999,4648.19,695.07,68.18000000000030,106.57000000000000,4356.13,725.27,62.43000000000030,103.45000000000000,4226.15,664.2,42.10000000000040,78.46999999999990,4063.95,593.95,32.86000000000060,55.65000000000000,4264.09,611.5,38.51999999999950,73.13,4407.07,629.06,45.46000000000000,81.12,4331.67,588.87,42.39000000000030,48.40000000000000,3832.48,525.08,17.559999999999900,34.040000000000000,3996.72,746.97,58.84000000000020,109.49,4436.04,660.34,47.48999999999980,90.15000000000000,3789.57,646.68,44.25999999999980,86.47000000000000,4463.66,653.02,53.3100000000004,80.62,3982.67,592.83,25.110000000000100,52.610000000000000,3364.15,633.55,46.82999999999990,91.41000000000010,3401.65,535.81,27.94999999999980,48.59000000000000,3551.53,504.21,20.42999999999980,36.53000000000000,4384.3,609.04,32.5,46.76000000000000,2811.5,535.84,26.76000000000020,42.24000000000000,4418.64,643.52,26.63000000000010,23.800000000000100,4256.95,671.16,44.0,75.74000000000000,4423.87,551.74,20.10999999999970,42.80000000000000 -600,3507.97,687.68,45.14000000000030,85.23000000000000,3617.37,559.2,22.790000000000000,49.6099999999999,4649.22,694.27,68.17000000000010,106.56000000000000,4357.52,724.83,62.42999999999940,103.44000000000000,4227.84,663.59,42.099999999999500,78.45999999999990,4065.78,593.66,32.86000000000010,55.58000000000000,4265.04,610.46,38.51000000000020,73.12,4407.72,627.77,45.46000000000000,81.12,4337.63,589.78,42.220000000000300,48.40000000000000,3835.7,525.13,17.5600000000004,34.040000000000000,3994.96,745.65,58.55000000000020,109.19000000000000,4434.3,659.64,47.51999999999950,89.72000000000000,3791.02,646.28,44.02000000000000,86.32000000000010,4460.36,651.21,53.3100000000004,80.62,3985.52,592.28,25.110000000000100,52.610000000000000,3368.76,633.03,46.82999999999990,91.41000000000010,3404.48,535.81,27.94999999999980,48.59000000000000,3552.63,504.28,20.42999999999980,36.53000000000000,4389.07,609.29,32.51000000000020,46.77000000000000,2812.45,535.91,26.76000000000020,42.24000000000000,4420.82,638.93,26.61999999999990,23.81000000000010,4259.51,670.35,43.88999999999940,75.41000000000000,4424.88,551.8,20.11999999999990,42.80000000000010 -601,3509.14,687.13,45.14000000000030,85.24000000000000,3618.43,559.2,22.790000000000000,49.59999999999990,4650.24,693.47,68.18000000000030,106.56000000000000,4358.92,724.39,62.43000000000030,103.44000000000000,4229.53,662.97,42.10000000000040,78.47000000000000,4067.6,593.36,32.870000000000300,55.52000000000000,4265.98,609.42,38.51000000000020,73.12,4408.36,626.48,45.46000000000000,81.12,4343.59,590.69,42.05000000000020,48.40000000000000,3838.92,525.18,17.559999999999900,34.04000000000010,3993.2,744.32,58.26000000000020,108.89,4432.56,658.94,47.54999999999930,89.28000000000000,3792.46,645.89,43.79000000000000,86.16000000000000,4457.05,649.4,53.31999999999970,80.62,3988.36,591.74,25.10999999999970,52.610000000000000,3373.37,632.5,46.82999999999990,91.41000000000000,3407.31,535.81,27.95000000000030,48.59000000000000,3553.73,504.35,20.42999999999980,36.53000000000000,4393.85,609.55,32.5,46.770000000000100,2813.4,535.97,26.759999999999800,42.24000000000000,4422.99,634.35,26.61999999999990,23.800000000000000,4262.07,669.53,43.77000000000040,75.08000000000000,4426.08,551.81,20.18000000000030,42.72000000000000 -602,3510.31,686.58,45.13000000000010,85.24000000000000,3619.49,559.2,22.79000000000040,49.59999999999990,4651.27,692.67,68.17999999999940,106.56000000000000,4360.31,723.94,62.42999999999940,103.45000000000000,4231.22,662.35,42.099999999999500,78.47000000000000,4069.43,593.07,32.870000000000300,55.44999999999990,4266.93,608.78,38.25999999999930,72.76000000000000,4409.01,625.19,45.46000000000000,81.11999999999990,4349.55,591.59,41.88000000000010,48.40000000000000,3842.15,525.23,17.549999999999700,34.040000000000000,3991.44,743.0,57.9699999999998,108.59000000000000,4430.81,658.24,47.58999999999920,88.85000000000000,3793.91,645.49,43.55000000000020,86.0,4453.75,647.59,53.31999999999970,80.62,3991.21,591.19,25.110000000000100,52.6099999999999,3377.98,631.98,46.82999999999990,91.40000000000000,3409.7,536.01,27.95000000000030,48.59000000000000,3554.83,504.41,20.43000000000030,36.53000000000000,4398.63,609.8,32.5,46.770000000000100,2814.36,536.04,26.759999999999800,42.24000000000000,4425.16,629.76,26.61999999999990,23.81000000000010,4264.64,668.72,43.64999999999960,74.75,4427.27,551.83,20.25,42.64000000000000 -603,3511.47,686.04,45.14000000000030,85.23000000000000,3620.55,559.2,22.790000000000000,49.59999999999990,4652.3,691.86,68.17000000000010,106.57000000000000,4361.7,723.5,62.43000000000030,103.44000000000000,4232.91,661.74,42.10000000000040,78.46000000000000,4071.26,592.78,32.86999999999990,55.38,4267.89,608.15,38.0,72.39000000000000,4409.65,623.9,45.46000000000000,81.12,4355.51,592.5,41.71000000000000,48.40000000000000,3845.37,525.27,17.559999999999900,34.040000000000000,3989.68,741.68,57.68000000000030,108.28000000000000,4429.07,657.54,47.61999999999990,88.41000000000010,3795.36,645.09,43.309999999999900,85.85000000000000,4450.45,645.78,53.3100000000004,80.62,3994.06,590.65,25.110000000000100,52.60000000000000,3382.59,631.45,46.82999999999990,91.41000000000000,3412.1,536.21,27.95000000000030,48.57999999999990,3555.93,504.48,20.43000000000030,36.53000000000000,4403.41,610.06,32.5,46.770000000000100,2815.31,536.1,26.76000000000020,42.24000000000000,4427.33,625.18,26.61999999999990,23.81000000000010,4267.2,667.91,43.54000000000000,74.41000000000010,4428.46,551.84,20.31999999999970,42.559999999999900 -604,3512.64,685.49,45.14000000000030,85.23000000000000,3621.61,559.2,22.790000000000000,49.59999999999990,4653.33,691.06,68.17000000000010,106.57000000000000,4363.09,723.05,62.43000000000030,103.45000000000000,4234.59,661.12,42.099999999999500,78.47000000000000,4073.09,592.49,32.86999999999990,55.30000000000000,4268.85,607.52,37.73999999999980,72.02000000000000,4410.3,622.62,45.46000000000000,81.11000000000000,4361.47,593.41,41.55000000000020,48.40000000000000,3848.59,525.32,17.559999999999900,34.040000000000000,3987.93,740.35,57.38000000000010,107.98000000000000,4427.33,656.84,47.64999999999960,87.98000000000000,3796.8,644.69,43.07999999999990,85.69999999999990,4447.15,643.97,53.3100000000004,80.63,3996.9,590.1,25.110000000000100,52.610000000000000,3387.2,630.93,46.83000000000040,91.40000000000010,3414.5,536.41,27.94000000000010,48.58000000000000,3557.03,504.54,20.42999999999980,36.53000000000000,4408.18,610.31,32.50999999999930,46.770000000000100,2816.26,536.16,26.759999999999800,42.24000000000000,4428.61,622.07,26.61999999999990,23.809999999999900,4269.76,667.09,43.42999999999940,74.08999999999990,4429.66,551.85,20.38000000000010,42.48000000000000 -605,3513.81,684.94,45.13999999999990,85.2399999999999,3622.24,559.05,22.800000000000200,49.60000000000000,4654.35,690.26,68.17999999999940,106.56000000000000,4364.48,722.61,62.43000000000030,103.45000000000000,4236.28,660.5,42.10000000000040,78.47000000000000,4074.92,592.2,32.85999999999970,55.22999999999990,4269.8,606.88,37.48999999999980,71.66000000000000,4410.94,621.33,45.46000000000000,81.11000000000000,4367.43,594.32,41.38000000000010,48.40000000000000,3851.81,525.37,17.559999999999900,34.040000000000000,3986.17,739.03,57.09000000000020,107.68000000000000,4425.58,656.14,47.69000000000050,87.54000000000000,3798.25,644.3,42.84000000000020,85.54000000000010,4443.85,642.16,53.30999999999950,80.63,3999.75,589.55,25.110000000000100,52.610000000000000,3391.81,630.4,46.82999999999990,91.41000000000000,3416.89,536.61,27.95000000000030,48.58000000000000,3558.13,504.61,20.42999999999980,36.53000000000000,4412.96,610.57,32.5,46.77000000000000,2817.21,536.23,26.759999999999800,42.24000000000000,4429.89,618.96,26.61999999999990,23.809999999999900,4270.88,666.28,43.30999999999950,73.75,4430.85,551.86,20.44999999999980,42.41000000000000 -606,3514.98,684.39,45.13999999999990,85.24000000000000,3622.88,558.9,22.790000000000000,49.60000000000000,4655.38,689.46,68.18000000000030,106.56000000000000,4365.87,722.17,62.43000000000030,103.44000000000000,4237.97,659.89,42.099999999999500,78.46000000000000,4076.74,591.9,32.86999999999990,55.17000000000010,4270.76,606.25,37.22999999999960,71.29000000000000,4411.59,620.04,45.46000000000000,81.11000000000000,4373.39,595.23,41.21000000000000,48.40000000000000,3855.03,525.42,17.559999999999900,34.04000000000010,3984.41,737.71,56.80000000000020,107.37,4423.84,655.45,47.720000000000300,87.08999999999990,3799.7,643.9,42.60000000000040,85.39000000000000,4440.54,640.36,53.31999999999970,80.62,4002.6,589.01,25.110000000000100,52.610000000000000,3396.42,629.88,46.82999999999990,91.40000000000000,3419.29,536.81,27.94999999999980,48.58000000000000,3559.23,504.68,20.42999999999980,36.53000000000000,4417.74,610.83,32.5,46.77000000000000,2818.17,536.29,26.759999999999800,42.24000000000000,4431.17,615.86,26.61999999999990,23.800000000000000,4272.0,665.46,43.1899999999996,73.43000000000000,4432.05,551.87,20.51000000000020,42.33000000000000 -607,3516.15,683.85,45.13999999999990,85.23000000000000,3623.51,558.75,22.790000000000000,49.60000000000000,4656.41,688.66,68.17000000000010,106.56000000000000,4367.26,721.72,62.42999999999940,103.45000000000000,4239.66,659.27,42.10000000000040,78.47000000000000,4078.57,591.61,32.86999999999940,55.10000000000000,4271.71,605.61,36.97999999999960,70.93000000000000,4412.23,618.75,45.46000000000000,81.11000000000000,4379.35,596.14,41.04000000000000,48.40000000000000,3858.26,525.47,17.549999999999700,34.040000000000000,3982.65,736.39,56.50999999999980,107.07000000000000,4422.1,654.75,47.75,86.66000000000000,3801.15,643.5,42.36000000000010,85.23000000000000,4437.24,638.55,53.3100000000004,80.62,4005.44,588.46,25.110000000000100,52.610000000000000,3401.03,629.35,46.82999999999990,91.41000000000000,3421.68,537.0,27.95000000000030,48.59000000000000,3560.33,504.74,20.43000000000030,36.53000000000000,4422.52,611.08,32.5,46.77000000000000,2819.12,536.36,26.76000000000020,42.24000000000000,4432.45,612.75,26.61999999999990,23.800000000000000,4273.11,664.65,43.07999999999990,73.10000000000000,4433.24,551.88,20.57000000000060,42.25 -608,3517.31,683.3,45.13999999999990,85.23000000000000,3624.15,558.6,22.790000000000000,49.60000000000000,4657.43,687.85,68.17999999999940,106.57000000000000,4367.82,721.41,62.26000000000020,103.29000000000000,4241.07,658.74,42.10000000000040,78.47000000000000,4080.4,591.32,32.870000000000300,55.03000000000000,4272.67,604.98,36.720000000000300,70.56000000000000,4412.88,617.46,45.46000000000000,81.11000000000000,4385.3,597.04,40.88000000000010,48.40000000000010,3861.48,525.51,17.559999999999900,34.040000000000000,3980.89,735.06,56.220000000000300,106.7700000000000,4420.35,654.05,47.79000000000000,86.22000000000000,3802.59,643.11,42.12999999999970,85.06999999999990,4433.94,636.74,53.3100000000004,80.62,4008.29,587.92,25.110000000000100,52.610000000000000,3405.64,628.82,46.82999999999990,91.41000000000000,3424.08,537.2,27.95000000000030,48.58999999999990,3561.43,504.81,20.43000000000030,36.53000000000000,4427.29,611.34,32.51000000000020,46.77000000000000,2820.07,536.42,26.759999999999800,42.24000000000000,4433.73,609.64,26.6200000000008,23.81000000000010,4274.23,663.84,42.96000000000000,72.76000000000000,4434.44,551.89,20.63000000000010,42.180000000000100 -609,3518.48,682.75,45.13999999999990,85.24000000000000,3624.78,558.45,22.790000000000000,49.59999999999990,4658.46,687.05,68.18000000000030,106.57000000000000,4368.38,721.11,62.09000000000020,103.12,4242.49,658.22,42.10000000000040,78.47000000000000,4082.23,591.03,32.870000000000300,54.950000000000000,4273.62,604.35,36.46000000000000,70.18999999999990,4413.52,616.17,45.45999999999910,81.11000000000000,4391.26,597.95,40.71000000000000,48.40000000000000,3864.7,525.56,17.5600000000004,34.04000000000010,3979.13,733.74,55.92999999999980,106.46000000000000,4418.61,653.35,47.82000000000060,85.79000000000000,3804.04,642.71,41.88999999999990,84.92000000000000,4430.64,634.93,53.30999999999950,80.62,4011.14,587.37,25.110000000000100,52.610000000000000,3410.25,628.3,46.82999999999990,91.41000000000010,3426.47,537.4,27.95000000000030,48.59000000000000,3562.53,504.87,20.42999999999980,36.54000000000000,4432.07,611.59,32.5,46.77000000000000,2821.03,536.48,26.759999999999800,42.24000000000000,4435.01,606.53,26.61999999999990,23.81000000000010,4275.35,663.02,42.83999999999920,72.44000000000010,4435.63,551.9,20.69999999999980,42.10000000000000 -610,3519.65,682.2,45.13999999999990,85.24000000000000,3625.41,558.3,22.800000000000200,49.60000000000000,4659.49,686.25,68.17000000000010,106.56000000000000,4368.94,720.8,61.92000000000010,102.96000000000000,4243.9,657.69,42.10000000000040,78.46999999999990,4084.06,590.74,32.870000000000300,54.88,4274.58,603.71,36.19999999999980,69.82999999999990,4414.17,614.88,45.46000000000000,81.11000000000000,4397.22,598.86,40.54000000000000,48.40000000000000,3867.92,525.61,17.559999999999900,34.040000000000000,3977.37,732.42,55.64000000000030,106.16000000000000,4416.86,652.65,47.86000000000060,85.35000000000000,3805.49,642.31,41.65000000000010,84.7700000000001,4427.33,633.12,53.31999999999970,80.62,4013.98,586.83,25.110000000000100,52.610000000000000,3414.85,627.77,46.84000000000020,91.41000000000000,3428.87,537.6,27.95000000000030,48.59000000000000,3563.63,504.94,20.42999999999980,36.53000000000000,4436.85,611.85,32.5,46.77000000000000,2821.98,536.55,26.759999999999800,42.24000000000000,4436.29,603.42,26.61999999999990,23.81000000000010,4276.47,662.21,42.71999999999940,72.09999999999990,4436.82,551.91,20.77000000000040,42.02000000000000 -611,3520.82,681.66,45.13999999999990,85.23000000000000,3626.05,558.15,22.790000000000000,49.60000000000000,4660.52,685.45,68.16999999999920,106.56000000000000,4369.5,720.49,61.75,102.80000000000000,4245.31,657.17,42.099999999999500,78.47000000000000,4085.88,590.44,32.86999999999990,54.819999999999900,4275.53,603.08,35.94999999999980,69.45999999999990,4414.81,613.59,45.46000000000000,81.11000000000000,4403.18,599.77,40.36999999999990,48.40000000000000,3871.14,525.66,17.559999999999900,34.04000000000010,3975.61,731.09,55.34999999999990,105.86,4415.12,651.95,47.89000000000030,84.92000000000000,3806.93,641.91,41.42000000000010,84.62,4424.03,631.31,53.32000000000060,80.62,4016.83,586.28,25.110000000000100,52.610000000000000,3419.46,627.25,46.84000000000020,91.41000000000000,3431.26,537.8,27.94999999999980,48.59000000000000,3564.73,505.01,20.42999999999980,36.53000000000000,4441.63,612.11,32.5,46.77000000000000,2822.93,536.61,26.76000000000020,42.24000000000000,4437.57,600.32,26.61999999999990,23.800000000000000,4277.58,661.4,42.60999999999970,71.77000000000000,4438.02,551.93,20.829999999999900,41.940000000000100 -612,3521.99,681.11,45.14000000000030,85.23000000000000,3626.68,558.0,22.790000000000000,49.60000000000000,4661.54,684.65,68.18000000000030,106.56000000000000,4370.06,720.18,61.56999999999970,102.6400000000000,4246.73,656.64,42.10000000000040,78.47000000000000,4087.71,590.15,32.86999999999990,54.75,4276.49,602.44,35.69000000000050,69.09999999999990,4415.46,612.3,45.46000000000000,81.11000000000000,4409.14,600.68,40.21000000000000,48.40000000000010,3874.37,525.71,17.550000000000200,34.040000000000000,3973.85,729.77,55.059999999999900,105.56000000000000,4413.38,651.25,47.92000000000010,84.48000000000000,3808.38,641.52,41.17999999999980,84.45000000000010,4420.73,629.5,53.3100000000004,80.62,4019.68,585.74,25.110000000000100,52.610000000000000,3424.07,626.72,46.83999999999970,91.41000000000000,3433.66,538.0,27.95000000000030,48.59000000000000,3565.83,505.07,20.43000000000030,36.53000000000000,4446.4,612.36,32.51000000000020,46.77000000000000,2823.88,536.68,26.759999999999800,42.24000000000000,4438.85,597.21,26.61999999999990,23.800000000000000,4278.7,660.58,42.48999999999980,71.43999999999990,4439.21,551.94,20.89999999999960,41.8599999999999 -613,3523.15,680.56,45.13999999999990,85.24000000000000,3627.32,557.85,22.790000000000000,49.60000000000000,4662.57,683.84,68.18000000000030,106.57000000000000,4370.62,719.88,61.40000000000060,102.47000000000000,4248.14,656.12,42.099999999999500,78.46000000000000,4089.54,589.86,32.86999999999990,54.68000000000000,4277.44,601.81,35.44000000000050,68.73000000000000,4416.1,611.01,45.46000000000000,81.11000000000000,4415.1,601.59,40.04000000000000,48.40000000000000,3877.59,525.75,17.559999999999900,34.040000000000000,3972.1,728.45,54.76000000000020,105.25,4411.63,650.55,47.96000000000000,84.05000000000010,3809.83,641.12,40.940000000000100,84.30000000000000,4417.43,627.69,53.30999999999950,80.63,4022.52,585.19,25.110000000000100,52.6099999999999,3428.68,626.2,46.83000000000040,91.41000000000000,3436.06,538.2,27.95000000000030,48.58999999999990,3566.93,505.14,20.43000000000030,36.53000000000000,4451.18,612.62,32.5,46.77000000000000,2824.84,536.74,26.759999999999800,42.24000000000000,4440.13,594.1,26.61999999999990,23.809999999999900,4279.82,659.77,42.38000000000010,71.11000000000000,4440.41,551.95,20.96000000000000,41.78000000000000 -614,3524.32,680.01,45.13999999999990,85.24000000000000,3627.95,557.7,22.790000000000000,49.59999999999990,4663.6,683.04,68.17000000000010,106.57000000000000,4371.17,719.57,61.23999999999980,102.32000000000000,4249.55,655.59,42.10999999999970,78.46999999999990,4091.37,589.57,32.86999999999990,54.59999999999990,4278.4,601.18,35.18000000000030,68.35000000000000,4416.75,609.72,45.46000000000000,81.11000000000000,4421.06,602.5,39.86999999999990,48.40000000000000,3880.81,525.8,17.559999999999900,34.04000000000010,3970.34,727.13,54.4699999999998,104.94000000000000,4409.89,649.85,47.98999999999980,83.61000000000000,3811.27,640.72,40.71000000000000,84.15000000000000,4414.13,625.88,53.30999999999950,80.63,4025.37,584.65,25.110000000000100,52.60000000000000,3433.29,625.67,46.82999999999990,91.41000000000010,3438.45,538.4,27.95000000000030,48.59000000000000,3568.03,505.2,20.42999999999980,36.54000000000000,4455.96,612.87,32.5,46.77000000000000,2825.79,536.8,26.76000000000020,42.24000000000000,4441.41,590.99,26.61999999999990,23.809999999999900,4280.93,658.96,42.26999999999950,70.77000000000000,4441.6,551.96,21.029999999999700,41.70999999999990 -615,3525.49,679.47,45.14000000000030,85.23000000000000,3628.58,557.55,22.800000000000200,49.60000000000000,4664.62,682.24,68.18000000000030,106.56000000000000,4371.73,719.26,61.07000000000060,102.16000000000000,4250.97,655.07,42.099999999999500,78.45999999999990,4093.2,589.27,32.86999999999990,54.54000000000000,4279.36,600.54,34.92000000000010,67.99000000000000,4417.39,608.43,45.46000000000000,81.11000000000000,4424.94,602.79,39.69000000000050,48.40000000000010,3884.03,525.85,17.559999999999900,34.040000000000000,3968.58,725.8,54.18000000000030,104.65000000000000,4409.14,649.16,48.02999999999980,83.16000000000010,3812.72,640.33,40.470000000000300,83.99000000000000,4410.82,624.08,53.32000000000060,80.62,4028.22,584.1,25.110000000000100,52.610000000000000,3437.9,625.15,46.82999999999990,91.40000000000000,3440.85,538.6,27.95000000000030,48.59000000000000,3569.13,505.27,20.42999999999980,36.53000000000000,4460.74,613.13,32.5,46.77000000000000,2826.74,536.87,26.76000000000020,42.24000000000000,4441.62,591.56,26.61999999999990,23.81000000000010,4282.05,658.14,42.14999999999960,70.45000000000010,4442.8,551.97,21.090000000000100,41.63 -616,3526.66,678.92,45.14000000000030,85.24000000000000,3629.22,557.4,22.79000000000040,49.60000000000000,4665.65,681.44,68.18000000000030,106.56000000000000,4372.29,718.95,60.89999999999960,102.0,4252.38,654.54,42.099999999999500,78.47000000000000,4095.02,588.98,32.879999999999700,54.47000000000000,4280.31,599.91,34.66999999999920,67.62,4418.04,607.14,45.46000000000000,81.11000000000000,4428.81,603.07,39.52999999999980,48.40000000000000,3887.26,525.9,17.549999999999700,34.04000000000010,3966.82,724.48,53.88999999999990,104.34000000000000,4408.39,648.46,48.05999999999950,82.73000000000000,3814.17,639.93,40.23000000000000,83.84000000000000,4407.52,622.27,53.30999999999950,80.62,4031.06,583.55,25.110000000000100,52.610000000000000,3442.51,624.62,46.82999999999990,91.41000000000000,3443.24,538.8,27.95000000000030,48.59000000000000,3570.23,505.34,20.42999999999980,36.53000000000000,4465.51,613.39,32.51000000000020,46.76000000000000,2827.69,536.93,26.759999999999800,42.24000000000000,4441.83,592.14,26.61999999999990,23.800000000000100,4283.17,657.33,42.02999999999980,70.11000000000000,4443.99,551.98,21.15999999999990,41.55000000000000 -617,3527.83,678.37,45.13999999999990,85.24000000000000,3629.85,557.25,22.800000000000200,49.60000000000000,4666.68,680.64,68.17000000000010,106.56000000000000,4372.85,718.64,60.72999999999960,101.84000000000000,4253.8,654.02,42.099999999999500,78.46000000000000,4096.85,588.69,32.8799999999992,54.40000000000000,4281.27,599.27,34.409999999999900,67.26000000000000,4418.19,607.14,45.3100000000004,79.59000000000000,4432.69,603.36,39.35000000000040,48.40000000000000,3890.48,525.94,17.550000000000200,34.040000000000000,3965.06,723.16,53.59999999999990,104.03000000000000,4407.65,647.76,48.09000000000020,82.29000000000000,3815.61,639.53,40.0,83.68000000000010,4406.32,620.8,53.3100000000004,80.62,4033.91,583.01,25.110000000000100,52.610000000000000,3447.12,624.1,46.82999999999990,91.40000000000000,3445.64,539.0,27.95000000000030,48.59000000000000,3571.33,505.4,20.43000000000030,36.53000000000000,4470.29,613.64,32.5,46.77000000000000,2828.65,537.0,26.759999999999800,42.24000000000000,4442.04,592.71,26.61999999999990,23.800000000000000,4284.29,656.52,41.909999999999900,69.78000000000000,4445.19,551.99,21.22000000000030,41.48000000000000 -618,3529.0,677.82,45.13000000000010,85.2399999999999,3630.49,557.1,22.79000000000040,49.610000000000000,4666.98,679.91,68.17000000000010,106.56000000000000,4373.41,718.34,60.5600000000004,101.67000000000000,4255.21,653.49,42.10000000000040,78.47000000000000,4098.68,588.4,32.86999999999990,54.33000000000000,4282.22,598.64,34.159999999999900,66.89000000000000,4418.34,607.14,45.159999999999900,78.07000000000010,4436.56,603.65,39.1899999999996,48.40000000000000,3893.7,525.99,17.5600000000004,34.040000000000000,3963.3,721.83,53.309999999999900,103.74,4406.9,647.06,48.1200000000008,81.86000000000000,3817.06,639.13,39.76000000000020,83.53000000000000,4405.11,619.33,53.3100000000004,80.63,4036.43,582.4,25.110000000000100,52.610000000000000,3451.73,623.57,46.82999999999990,91.41000000000000,3448.03,539.2,27.94999999999980,48.58999999999990,3572.43,505.47,20.43000000000030,36.53000000000000,4475.07,613.9,32.5,46.77000000000000,2829.6,537.06,26.76000000000020,42.24000000000000,4442.25,593.28,26.61999999999990,23.81000000000010,4284.49,655.5,41.92000000000010,69.79000000000000,4446.38,552.0,21.290000000000000,41.40000000000000 -619,3530.16,677.28,45.14000000000030,85.23000000000000,3631.12,556.95,22.790000000000000,49.6099999999999,4667.27,679.18,68.17999999999940,106.56000000000000,4373.97,718.03,60.38000000000010,101.51,4256.62,652.97,42.10000000000040,78.45999999999990,4100.11,588.11,32.88000000000010,54.25,4283.18,598.01,33.88999999999940,66.52000000000000,4418.5,607.14,45.0,76.54000000000000,4440.43,603.94,39.01999999999950,48.40000000000000,3896.92,526.04,17.559999999999900,34.04000000000010,3961.54,720.51,53.02000000000000,103.43000000000000,4406.15,646.36,48.16000000000080,81.42000000000000,3818.51,638.74,39.52000000000000,83.37,4403.91,617.87,53.3100000000004,80.62,4038.96,581.79,25.110000000000100,52.610000000000000,3456.34,623.05,46.82999999999990,91.40000000000010,3450.43,539.4,27.95000000000030,48.59000000000000,3573.53,505.54,20.42999999999980,36.53000000000000,4479.85,614.15,32.5,46.77000000000000,2830.55,537.12,26.759999999999800,42.24000000000000,4442.46,593.85,26.63000000000010,23.809999999999900,4284.7,654.49,41.909999999999900,69.78000000000000,4447.57,552.01,21.360000000000600,41.32000000000010 -620,3531.33,676.73,45.13999999999990,85.24000000000000,3631.76,556.8,22.790000000000000,49.610000000000000,4667.57,678.45,68.18000000000030,106.56000000000000,4374.53,717.72,60.21000000000000,101.35000000000000,4258.04,652.44,42.10000000000040,78.46999999999990,4101.55,587.81,32.86999999999990,54.190000000000100,4284.13,597.37,33.64000000000030,66.16000000000000,4418.65,607.14,44.85000000000040,75.02000000000000,4444.31,604.23,38.849999999999500,48.40000000000000,3900.14,526.09,17.559999999999900,34.040000000000000,3959.78,719.19,52.73000000000000,103.13,4405.4,645.66,48.19000000000050,80.99000000000000,3819.95,638.34,39.29000000000000,83.21999999999990,4402.7,616.4,53.3100000000004,80.62,4041.48,581.18,25.110000000000100,52.610000000000000,3460.95,622.52,46.83000000000040,91.41000000000000,3452.83,539.6,27.94000000000010,48.59000000000000,3574.63,505.6,20.42999999999980,36.53000000000000,4484.62,614.41,32.51000000000020,46.77000000000000,2831.5,537.19,26.76000000000020,42.239999999999900,4442.68,594.42,26.61999999999990,23.81000000000010,4284.91,653.48,41.909999999999900,69.78000000000000,4448.77,552.02,21.419999999999200,41.25 -621,3532.5,676.18,45.13999999999990,85.24000000000000,3632.39,556.65,22.790000000000000,49.610000000000000,4667.87,677.72,68.18000000000030,106.56000000000000,4375.09,717.41,60.04000000000000,101.19000000000000,4259.45,651.92,42.10000000000040,78.46000000000000,4102.98,587.52,32.88000000000010,54.120000000000000,4285.09,596.74,33.38000000000010,65.79000000000000,4418.8,607.14,44.69999999999980,73.5,4448.18,604.52,38.67999999999940,48.40000000000000,3903.37,526.14,17.550000000000200,34.040000000000000,3958.02,717.87,52.440000000000100,102.82000000000000,4404.65,644.96,48.23000000000050,80.55000000000000,3821.4,637.94,39.04999999999970,83.06999999999990,4401.49,614.93,53.32000000000060,80.63,4044.0,580.57,25.110000000000100,52.6099999999999,3465.56,622.0,46.82999999999990,91.40000000000000,3455.22,539.8,27.95000000000030,48.59000000000000,3575.73,505.67,20.42999999999980,36.53000000000000,4489.4,614.67,32.5,46.76000000000000,2832.46,537.25,26.759999999999800,42.24000000000000,4442.89,595.0,26.61999999999990,23.800000000000000,4285.11,652.47,41.92000000000010,69.78000000000000,4449.96,552.04,21.479999999999600,41.16000000000010 -622,3533.67,675.63,45.13999999999990,85.24000000000000,3633.02,556.5,22.800000000000200,49.610000000000000,4668.17,676.99,68.18000000000030,106.56000000000000,4375.65,717.11,59.8700000000008,101.02000000000000,4260.86,651.39,42.11000000000060,78.47000000000000,4104.42,587.23,32.86999999999990,54.05000000000000,4286.04,596.1,33.13000000000010,65.43000000000000,4418.96,607.14,44.54000000000000,71.98000000000000,4452.06,604.81,38.50999999999930,48.40000000000010,3906.59,526.18,17.549999999999700,34.04000000000010,3956.27,716.54,52.13999999999990,102.52000000000000,4403.91,644.26,48.26000000000020,80.11000000000000,3822.85,637.54,38.809999999999900,82.91000000000010,4400.29,613.47,53.3100000000004,80.62,4046.53,579.96,25.10999999999970,52.610000000000000,3470.17,621.47,46.82999999999990,91.41000000000000,3457.62,540.0,27.95000000000030,48.59000000000000,3576.83,505.73,20.43000000000030,36.54000000000000,4494.18,614.92,32.5,46.770000000000100,2833.41,537.32,26.76000000000020,42.239999999999900,4443.1,595.57,26.61999999999990,23.800000000000000,4285.32,651.45,41.909999999999900,69.79000000000000,4451.16,552.05,21.540000000000000,41.08000000000000 -623,3534.84,675.09,45.13999999999990,85.23000000000000,3633.66,556.35,22.790000000000000,49.610000000000000,4668.47,676.26,68.17000000000010,106.57000000000000,4376.21,716.8,59.69999999999980,100.86,4262.28,650.87,42.10000000000040,78.46000000000000,4105.85,586.94,32.8799999999992,53.96999999999990,4287.0,595.47,32.86999999999990,65.06000000000000,4419.11,607.14,44.39000000000030,70.45000000000010,4455.93,605.1,38.349999999999500,48.40000000000000,3909.81,526.23,17.559999999999900,34.040000000000000,3954.51,715.22,51.84999999999990,102.22000000000000,4403.16,643.56,48.29000000000000,79.68000000000010,3824.29,637.15,38.59000000000020,82.75,4399.08,612.0,53.31999999999970,80.62,4049.05,579.35,25.10999999999970,52.610000000000000,3470.75,621.55,46.82999999999990,91.41000000000010,3460.01,540.2,27.94999999999980,48.58999999999990,3577.93,505.8,20.43000000000030,36.53000000000000,4498.96,615.18,32.5,46.770000000000100,2834.35,537.24,26.76000000000020,42.24000000000000,4443.31,596.14,26.61999999999990,23.81000000000010,4285.53,650.44,41.909999999999900,69.78000000000000,4452.35,552.06,21.60999999999970,41.010000000000100 -624,3536.0,674.54,45.13999999999990,85.24000000000000,3634.29,556.2,22.790000000000000,49.6099999999999,4668.77,675.53,68.16999999999920,106.57000000000000,4376.76,716.49,59.54000000000000,100.70000000000000,4263.69,650.34,42.10000000000040,78.46999999999990,4107.29,586.65,32.86999999999990,53.90000000000000,4287.96,594.84,32.60999999999970,64.68999999999990,4419.26,607.14,44.23999999999980,68.93000000000010,4459.8,605.39,38.17999999999940,48.40000000000000,3913.03,526.28,17.559999999999900,34.04000000000010,3952.75,713.9,51.559999999999900,101.91000000000000,4402.41,642.87,48.32999999999990,79.23000000000000,3825.74,636.75,38.35000000000040,82.60000000000000,4397.88,610.53,53.30999999999950,80.63,4051.58,578.74,25.110000000000100,52.610000000000000,3471.32,621.63,46.83999999999970,91.41000000000000,3462.41,540.4,27.95000000000030,48.59000000000000,3579.03,505.87,20.42999999999980,36.53000000000000,4503.73,615.43,32.51000000000020,46.770000000000100,2835.29,537.17,26.76000000000020,42.24000000000000,4443.52,596.71,26.61999999999990,23.809999999999900,4285.73,649.43,41.92000000000010,69.78000000000010,4453.55,552.07,21.67000000000010,40.93000000000000 -625,3537.17,673.99,45.13999999999990,85.24000000000000,3634.93,556.05,22.790000000000000,49.610000000000000,4669.07,674.8,68.17000000000010,106.57000000000000,4377.32,716.18,59.36000000000060,100.55000000000000,4264.44,649.97,42.08000000000080,78.32999999999990,4108.72,586.35,32.88000000000010,53.84000000000000,4288.91,594.2,32.36000000000060,64.32999999999990,4419.42,607.14,44.07999999999990,67.41000000000000,4463.68,605.68,38.00999999999930,48.40000000000010,3916.25,526.33,17.559999999999900,34.040000000000000,3950.99,712.57,51.27000000000040,101.62,4407.83,642.37,48.31999999999970,79.24000000000000,3827.19,636.35,38.11000000000010,82.44999999999990,4396.67,609.07,53.31999999999970,80.62,4054.1,578.13,25.110000000000100,52.610000000000000,3471.9,621.71,46.82999999999990,91.41000000000000,3464.11,540.25,27.94999999999980,48.59000000000000,3580.13,505.93,20.42999999999980,36.53000000000000,4508.51,615.69,32.51000000000020,46.77000000000000,2836.23,537.09,26.759999999999800,42.24000000000000,4443.74,599.35,26.61999999999990,23.809999999999900,4285.94,648.41,41.91000000000080,69.79000000000010,4454.74,552.08,21.73999999999980,40.84999999999990 -626,3538.34,673.45,45.13999999999990,85.2299999999999,3635.56,555.9,22.790000000000000,49.610000000000000,4669.36,674.07,68.18000000000030,106.57000000000000,4377.88,715.87,59.1899999999996,100.39,4265.19,649.6,42.07000000000060,78.19999999999990,4110.15,586.06,32.88000000000010,53.770000000000100,4289.87,593.57,32.100000000000400,63.95999999999990,4419.57,607.14,43.93000000000030,65.89000000000000,4467.55,605.97,37.84000000000020,48.40000000000000,3919.48,526.38,17.550000000000200,34.040000000000000,3949.23,711.25,50.98000000000000,101.31000000000000,4413.24,641.88,48.32999999999990,79.24000000000000,3828.63,635.96,37.88000000000010,82.29000000000000,4395.47,607.6,53.30999999999950,80.62,4056.63,577.52,25.10999999999970,52.610000000000000,3472.48,621.79,46.82999999999990,91.41000000000010,3465.81,540.1,27.95000000000030,48.59000000000000,3581.23,506.0,20.42999999999980,36.53000000000000,4513.29,615.95,32.5,46.76000000000000,2837.18,537.02,26.76000000000020,42.24000000000000,4443.95,602.0,26.61999999999990,23.800000000000000,4286.15,647.4,41.91000000000080,69.78000000000000,4455.93,552.09,21.80999999999950,40.78000000000000 -627,3539.51,672.9,45.13999999999990,85.23000000000000,3636.19,555.75,22.799999999999700,49.610000000000000,4669.66,673.35,68.18000000000030,106.56000000000000,4378.44,715.57,59.02000000000040,100.22000000000000,4265.94,649.23,42.05000000000020,78.06000000000000,4111.59,585.77,32.88000000000010,53.700000000000000,4290.82,592.93,31.850000000000400,63.60000000000000,4419.72,607.14,43.77999999999980,64.36000000000000,4471.43,606.26,37.67000000000010,48.40000000000000,3922.7,526.42,17.5600000000004,34.04000000000010,3947.47,709.93,50.690000000000100,101.0,4418.66,641.39,48.31999999999970,79.24000000000000,3830.47,635.49,37.89000000000030,82.09000000000000,4394.26,606.13,53.30999999999950,80.63,4059.15,576.91,25.110000000000100,52.610000000000000,3473.06,621.87,46.82999999999990,91.41000000000000,3467.51,539.96,27.94999999999980,48.57999999999990,3582.33,506.06,20.43000000000030,36.54000000000000,4518.07,616.2,32.5,46.77000000000000,2838.12,536.95,26.76000000000020,42.24000000000000,4444.16,604.64,26.61999999999990,23.800000000000100,4286.35,646.39,41.92000000000010,69.78000000000000,4457.13,552.1,21.86999999999990,40.69999999999990 -628,3540.68,672.35,45.14000000000030,85.24000000000000,3636.83,555.6,22.790000000000000,49.610000000000000,4669.96,672.62,68.18000000000030,106.56000000000000,4379.0,715.26,58.85000000000040,100.06000000000000,4266.69,648.85,42.030000000000700,77.93999999999990,4113.02,585.48,32.8799999999992,53.620000000000000,4291.78,592.3,31.579999999999900,63.22000000000000,4419.87,607.14,43.63000000000010,62.84000000000000,4475.3,606.55,37.5,48.40000000000010,3925.92,526.47,17.559999999999900,34.040000000000000,3945.71,708.61,50.40000000000010,100.70000000000000,4424.07,640.9,48.32999999999990,79.23000000000000,3832.3,635.02,37.909999999999900,81.90000000000000,4393.06,604.67,53.30999999999950,80.62,4061.67,576.3,25.110000000000100,52.610000000000000,3473.63,621.95,46.82999999999990,91.41000000000000,3469.22,539.81,27.95000000000030,48.59000000000000,3583.43,506.13,20.43000000000030,36.53000000000000,4522.84,616.46,32.51000000000020,46.77000000000000,2839.06,536.87,26.76000000000020,42.24000000000000,4444.37,607.28,26.61999999999990,23.81000000000010,4286.56,645.38,41.909999999999900,69.78000000000000,4458.46,552.63,21.86999999999990,40.700000000000000 -629,3541.85,671.8,45.13000000000010,85.24000000000000,3637.46,555.45,22.800000000000200,49.6099999999999,4670.26,671.89,68.17000000000010,106.56000000000000,4379.56,714.95,58.67999999999940,99.90000000000000,4267.44,648.48,42.01000000000020,77.80000000000000,4114.46,585.18,32.88000000000010,53.56000000000010,4292.73,591.67,31.33000000000080,62.85000000000000,4420.03,607.14,43.470000000000300,61.32000000000010,4479.17,606.84,37.34000000000020,48.40000000000000,3929.14,526.52,17.559999999999900,34.040000000000000,3943.95,707.28,50.11000000000010,100.40000000000000,4429.49,640.4,48.32000000000060,79.24000000000000,3834.14,634.56,37.92000000000010,81.69000000000010,4391.85,603.2,53.30999999999950,80.62,4064.2,575.69,25.110000000000100,52.6099999999999,3474.21,622.03,46.82999999999990,91.41000000000010,3470.92,539.66,27.94999999999980,48.59000000000000,3584.53,506.2,20.42999999999980,36.53000000000000,4527.62,616.71,32.51000000000020,46.77000000000000,2840.0,536.8,26.76000000000020,42.24000000000000,4444.58,609.92,26.61999999999990,23.81000000000010,4286.77,644.36,41.909999999999900,69.78000000000000,4459.79,553.16,21.86999999999990,40.700000000000000 -630,3543.01,671.26,45.13999999999990,85.23000000000000,3638.1,555.3,22.790000000000000,49.610000000000000,4670.56,671.16,68.16999999999920,106.56000000000000,4380.12,714.64,58.51000000000020,99.74,4268.19,648.11,41.99000000000070,77.67000000000000,4115.89,584.89,32.88000000000010,53.49000000000000,4293.69,591.03,31.07000000000060,62.49000000000000,4420.18,607.14,43.31999999999970,59.80000000000010,4483.05,607.13,37.159999999999900,48.40000000000000,3932.36,526.57,17.559999999999900,34.040000000000000,3942.19,705.96,49.82000000000020,100.09000000000000,4434.9,639.91,48.32999999999990,79.24000000000000,3835.97,634.09,37.940000000000100,81.5,4390.65,601.73,53.3100000000004,80.63,4066.72,575.08,25.110000000000100,52.610000000000000,3474.79,622.11,46.82999999999990,91.41000000000000,3472.62,539.51,27.95000000000030,48.59000000000000,3585.63,506.26,20.42999999999980,36.53000000000000,4532.4,616.97,32.5,46.77000000000000,2840.94,536.72,26.759999999999800,42.24000000000000,4444.79,612.56,26.61999999999990,23.81000000000010,4286.97,643.35,41.92000000000010,69.78000000000000,4461.12,553.69,21.86999999999990,40.68999999999990 -631,3544.18,670.71,45.14000000000030,85.23000000000000,3638.73,555.15,22.790000000000000,49.610000000000000,4670.86,670.43,68.17000000000010,106.56000000000000,4380.68,714.33,58.32999999999990,99.57999999999990,4268.94,647.74,41.98000000000050,77.53000000000000,4117.33,584.6,32.88000000000010,53.42000000000000,4294.64,590.4,30.81999999999970,62.120000000000000,4420.33,607.14,43.17000000000010,58.27000000000000,4486.92,607.42,37.0,48.40000000000010,3935.59,526.61,17.549999999999700,34.040000000000000,3940.44,704.64,49.52000000000000,99.79000000000000,4440.32,639.42,48.32000000000060,79.24000000000000,3837.81,633.62,37.95000000000030,81.30000000000000,4389.44,600.27,53.3100000000004,80.62,4069.25,574.47,25.110000000000100,52.610000000000000,3477.41,621.07,46.82999999999990,91.41000000000000,3474.32,539.37,27.94999999999980,48.59000000000000,3586.73,506.33,20.42999999999980,36.53000000000000,4537.18,617.23,32.5,46.76000000000000,2841.88,536.65,26.759999999999800,42.24000000000000,4445.0,615.2,26.63000000000010,23.809999999999900,4287.18,642.34,41.909999999999900,69.78000000000000,4462.45,554.21,21.86999999999990,40.69999999999990 -632,3545.35,670.16,45.13999999999990,85.24000000000000,3639.37,555.0,22.790000000000000,49.610000000000000,4671.15,669.7,68.18000000000030,106.56000000000000,4381.24,714.03,58.159999999999900,99.41000000000010,4269.69,647.37,41.96000000000000,77.40000000000000,4118.76,584.31,32.88000000000010,53.35000000000000,4295.6,589.76,30.55999999999950,61.76000000000000,4420.49,607.14,43.01000000000020,56.75,4490.79,607.71,36.82999999999990,48.40000000000000,3938.81,526.66,17.559999999999900,34.04000000000010,3938.68,703.31,49.24000000000020,99.49,4441.54,638.93,48.31999999999970,79.24000000000000,3839.64,633.16,37.970000000000300,81.10000000000000,4388.23,598.8,53.32000000000060,80.62,4071.77,573.86,25.110000000000100,52.610000000000000,3480.03,620.03,46.82999999999990,91.41000000000010,3476.03,539.22,27.9399999999996,48.58999999999990,3587.83,506.4,20.43000000000030,36.53000000000000,4541.96,617.48,32.5,46.77000000000000,2842.82,536.58,26.759999999999800,42.24000000000000,4445.22,617.85,26.61999999999990,23.800000000000000,4287.39,641.32,41.909999999999900,69.79000000000000,4463.78,554.74,21.86999999999990,40.700000000000000 -633,3546.52,669.61,45.13999999999990,85.24000000000000,3640.0,554.85,22.790000000000000,49.610000000000000,4671.45,668.97,68.18000000000030,106.56000000000000,4381.79,713.72,58.0,99.25,4270.44,647.0,41.94000000000050,77.26000000000000,4120.19,584.02,32.89000000000030,53.27000000000000,4296.56,589.13,30.299999999999300,61.39000000000000,4420.64,607.14,42.85999999999970,55.23000000000000,4492.25,607.14,36.64999999999960,48.40000000000000,3942.03,526.71,17.559999999999900,34.040000000000000,3936.92,701.99,48.94999999999980,99.18999999999990,4442.76,638.43,48.31999999999970,79.24000000000000,3841.48,632.69,37.98000000000000,80.90000000000000,4387.03,597.33,53.3100000000004,80.63,4074.29,573.25,25.10999999999970,52.610000000000000,3482.65,618.98,46.82999999999990,91.41000000000000,3477.73,539.07,27.94999999999980,48.58999999999990,3588.93,506.46,20.43000000000030,36.53000000000000,4543.05,616.84,32.56999999999970,46.77000000000000,2843.76,536.5,26.759999999999800,42.24000000000000,4445.43,620.49,26.61999999999990,23.800000000000000,4287.59,640.31,41.92000000000010,69.78000000000010,4465.11,555.27,21.86999999999990,40.700000000000000 -634,3547.69,669.07,45.13000000000010,85.2299999999999,3640.63,554.7,22.799999999999700,49.6099999999999,4671.75,668.24,68.18000000000030,106.57000000000000,4382.35,713.41,57.82999999999990,99.09000000000010,4271.19,646.62,41.92000000000010,77.14000000000000,4121.63,583.72,32.88000000000010,53.20999999999990,4297.51,588.5,30.050000000000200,61.02000000000000,4420.79,607.14,42.71000000000000,53.71000000000000,4493.7,606.57,36.48999999999980,48.40000000000000,3945.25,526.76,17.559999999999900,34.040000000000000,3935.16,700.67,48.66000000000030,98.88,4443.98,637.94,48.32000000000060,79.2399999999999,3843.31,632.23,38.0,80.68999999999990,4385.82,595.87,53.32000000000060,80.62,4076.82,572.64,25.110000000000100,52.610000000000000,3485.27,617.94,46.82999999999990,91.41000000000000,3479.43,538.93,27.95000000000030,48.58000000000000,3590.03,506.53,20.42999999999980,36.53000000000000,4544.14,616.2,32.64999999999960,46.76000000000000,2844.71,536.43,26.759999999999800,42.24000000000000,4446.16,618.66,26.36999999999990,23.590000000000000,4287.8,639.3,41.909999999999900,69.78000000000010,4466.44,555.8,21.8700000000008,40.700000000000000 -635,3548.85,668.52,45.13999999999990,85.23000000000000,3641.27,554.55,22.790000000000000,49.610000000000000,4672.05,667.51,68.17000000000010,106.57000000000000,4380.79,713.03,57.659999999999900,98.93000000000010,4271.94,646.25,41.90000000000060,77.0,4123.06,583.43,32.88999999999940,53.1400000000001,4298.47,587.86,29.790000000000000,60.66000000000000,4420.95,607.14,42.55000000000020,52.180000000000100,4495.15,606.0,36.32000000000060,48.40000000000000,3949.11,526.49,17.559999999999900,34.040000000000000,3933.4,699.35,48.36999999999990,98.56999999999990,4445.19,637.45,48.33000000000080,79.24000000000000,3845.15,631.76,38.00999999999980,80.5,4384.62,594.4,53.3100000000004,80.62,4079.34,572.03,25.10999999999970,52.610000000000000,3487.89,616.9,46.82999999999990,91.41000000000000,3481.13,538.78,27.94999999999980,48.59000000000000,3591.13,506.59,20.42999999999980,36.53000000000000,4545.23,615.56,32.720000000000300,46.760000000000100,2845.65,536.36,26.759999999999800,42.24000000000000,4446.89,616.82,26.11999999999990,23.390000000000000,4288.01,638.28,41.909999999999900,69.79000000000010,4467.77,556.33,21.86999999999990,40.69999999999990 -636,3550.02,667.97,45.13999999999990,85.24000000000000,3641.9,554.4,22.790000000000000,49.610000000000000,4672.35,666.78,68.17000000000010,106.57000000000000,4379.23,712.65,57.49000000000070,98.77000000000000,4272.69,645.88,41.88000000000010,76.87,4124.5,583.14,32.88000000000010,53.07000000000010,4299.42,587.23,29.540000000000000,60.29000000000000,4421.1,607.14,42.39999999999960,50.66000000000000,4496.6,605.44,36.14999999999960,48.40000000000000,3952.98,526.21,17.550000000000200,34.040000000000000,3931.64,698.02,48.07999999999990,98.28000000000000,4446.41,636.96,48.32999999999990,79.24000000000000,3846.98,631.29,38.04000000000000,80.30000000000010,4383.41,592.93,53.31999999999970,80.63,4081.87,571.42,25.10999999999970,52.610000000000000,3490.51,615.86,46.82999999999990,91.40000000000000,3482.83,538.63,27.95000000000030,48.59000000000000,3592.23,506.66,20.42999999999980,36.53000000000000,4546.32,614.91,32.80000000000020,46.77000000000000,2846.59,536.28,26.759999999999800,42.24000000000000,4447.62,614.99,25.86999999999990,23.17000000000000,4288.21,637.27,41.92000000000010,69.78000000000000,4469.1,556.85,21.86999999999990,40.69999999999990 -637,3551.19,667.42,45.13999999999990,85.24000000000000,3642.54,554.25,22.790000000000000,49.610000000000000,4672.65,666.05,68.17000000000010,106.57000000000000,4377.67,712.27,57.30999999999950,98.61,4273.44,645.51,41.8700000000008,76.73000000000000,4125.93,582.85,32.88000000000010,53.0,4300.38,586.59,29.269999999999500,59.93000000000000,4420.63,606.36,42.39999999999960,50.67000000000000,4498.05,604.87,35.97999999999960,48.40000000000000,3956.84,525.94,17.559999999999900,34.040000000000000,3929.88,696.7,47.79000000000000,97.96999999999990,4447.63,636.47,48.32999999999990,79.23000000000000,3848.82,630.83,38.04999999999970,80.09999999999990,4382.21,591.47,53.3100000000004,80.62,4084.39,570.81,25.110000000000100,52.610000000000000,3493.13,614.81,46.82999999999990,91.41000000000010,3484.54,538.48,27.94999999999980,48.59000000000000,3593.33,506.73,20.43000000000030,36.53000000000000,4547.41,614.27,32.86999999999990,46.76000000000000,2847.53,536.21,26.759999999999800,42.24000000000000,4448.36,613.16,25.610000000000600,22.96000000000000,4288.42,636.26,41.909999999999900,69.78000000000000,4470.43,557.38,21.86999999999990,40.700000000000000 -638,3552.36,666.88,45.13999999999990,85.23000000000000,3643.17,554.1,22.790000000000000,49.610000000000000,4672.94,665.32,68.18000000000030,106.57000000000000,4376.11,711.89,57.14000000000030,98.45000000000010,4274.19,645.14,41.85000000000040,76.60000000000000,4127.37,582.56,32.88000000000010,52.92000000000010,4301.33,585.96,29.02000000000040,59.559999999999900,4420.16,605.59,42.40000000000060,50.67000000000000,4499.5,604.3,35.8100000000004,48.40000000000010,3959.28,525.86,17.559999999999900,34.040000000000000,3928.12,695.38,47.5,97.67000000000000,4448.85,635.97,48.32999999999990,79.24000000000000,3850.65,630.36,38.06999999999970,79.90000000000000,4381.0,590.0,53.3100000000004,80.62,4086.92,570.2,25.10999999999970,52.6099999999999,3495.75,613.77,46.82999999999990,91.41000000000000,3486.24,538.34,27.95000000000030,48.57999999999990,3594.43,506.79,20.43000000000030,36.53000000000000,4548.5,613.63,32.94999999999980,46.76000000000000,2848.47,536.13,26.76000000000020,42.24000000000000,4449.09,611.33,25.35999999999970,22.75,4288.63,635.25,41.909999999999900,69.78000000000000,4471.75,557.91,21.88000000000010,40.700000000000000 -639,3553.53,666.33,45.13999999999990,85.2299999999999,3643.8,553.95,22.799999999999700,49.6099999999999,4673.24,664.6,68.18000000000030,106.56000000000000,4374.55,711.51,56.970000000000300,98.29000000000000,4274.94,644.77,41.83000000000080,76.46000000000000,4128.8,582.26,32.88000000000010,52.860000000000000,4302.29,585.33,28.76000000000020,59.18999999999990,4419.69,604.82,42.40000000000060,50.67000000000000,4500.95,603.73,35.64000000000030,48.40000000000000,3961.72,525.77,17.5600000000004,34.040000000000000,3926.36,694.05,47.21000000000000,97.37,4450.07,635.48,48.32999999999990,79.24000000000000,3852.49,629.9,38.08000000000040,79.70000000000010,4379.8,588.54,53.30999999999950,80.62,4089.44,569.59,25.110000000000100,52.610000000000000,3498.37,612.73,46.82999999999990,91.40000000000000,3487.94,538.19,27.94999999999980,48.58999999999990,3595.53,506.86,20.42999999999980,36.53000000000000,4549.59,612.99,33.01999999999950,46.75,2849.41,536.06,26.76000000000020,42.24000000000000,4449.82,609.49,25.110000000000600,22.540000000000000,4288.83,634.23,41.92000000000010,69.79000000000000,4473.08,558.44,21.88000000000010,40.69999999999990 -640,3554.69,665.78,45.13999999999990,85.24000000000000,3644.44,553.8,22.790000000000000,49.610000000000000,4673.54,663.87,68.18000000000030,106.56000000000000,4372.98,711.13,56.8100000000004,98.13,4275.69,644.39,41.8100000000004,76.34000000000000,4130.23,581.97,32.89000000000030,52.79000000000000,4303.24,584.69,28.51000000000020,58.82999999999990,4419.22,604.05,42.38999999999940,50.67000000000010,4502.4,603.17,35.48000000000050,48.40000000000010,3964.16,525.68,17.559999999999900,34.04000000000010,3924.61,692.73,46.909999999999900,97.06000000000000,4451.29,634.99,48.32999999999990,79.24000000000000,3854.32,629.43,38.09999999999990,79.5,4378.59,587.07,53.30999999999950,80.62,4091.96,568.98,25.10999999999970,52.610000000000000,3500.99,611.68,46.84000000000020,91.41000000000010,3489.64,538.04,27.95000000000030,48.59000000000000,3596.62,506.92,20.44000000000010,36.54000000000000,4550.68,612.35,33.099999999999500,46.75,2850.35,535.99,26.76000000000020,42.24000000000000,4450.55,607.66,24.85999999999970,22.33000000000000,4289.04,633.22,41.909999999999900,69.78000000000000,4474.41,558.97,21.88000000000010,40.69999999999990 -641,3555.86,665.23,45.13999999999990,85.24000000000000,3645.07,553.65,22.790000000000000,49.610000000000000,4673.84,663.14,68.18000000000030,106.56000000000000,4371.42,710.75,56.63000000000010,97.96000000000000,4276.44,644.02,41.79000000000000,76.20000000000010,4131.67,581.68,32.88000000000010,52.72000000000000,4303.16,583.94,28.590000000000100,58.68999999999990,4418.75,603.28,42.39000000000030,50.67000000000010,4503.85,602.6,35.30999999999950,48.40000000000000,3966.6,525.59,17.559999999999900,34.040000000000000,3922.85,691.41,46.61999999999990,96.76,4452.51,634.5,48.31999999999970,79.23000000000000,3856.16,628.96,38.11000000000010,79.31000000000000,4377.39,585.6,53.30999999999950,80.62,4094.49,568.37,25.110000000000600,52.610000000000000,3503.61,610.64,46.83999999999970,91.41000000000000,3491.35,537.9,27.94000000000010,48.58000000000000,3597.72,506.99,20.44000000000010,36.53000000000000,4551.77,611.7,33.16999999999920,46.76000000000000,2851.3,535.91,26.759999999999800,42.24000000000000,4451.29,605.83,24.600000000000400,22.120000000000000,4289.25,632.21,41.909999999999900,69.78000000000000,4475.74,559.5,21.88000000000010,40.690000000000100 -642,3557.03,664.69,45.13999999999990,85.2299999999999,3645.71,553.5,22.790000000000000,49.610000000000000,4674.14,662.41,68.17000000000010,106.56000000000000,4369.86,710.37,56.46000000000000,97.80000000000000,4277.19,643.65,41.780000000000700,76.07000000000010,4133.1,581.39,32.88999999999940,52.64000000000000,4303.08,583.18,28.67000000000010,58.55000000000010,4418.28,602.51,42.39000000000030,50.67000000000000,4505.3,602.03,35.13999999999940,48.40000000000000,3969.04,525.51,17.559999999999900,34.040000000000000,3921.09,690.09,46.32999999999990,96.44999999999990,4453.73,634.0,48.32000000000060,79.24000000000000,3856.86,628.51,38.11999999999990,79.10000000000000,4376.18,584.14,53.30999999999950,80.62,4097.01,567.76,25.10999999999970,52.610000000000000,3506.24,609.6,46.83000000000040,91.40000000000000,3493.05,537.75,27.94999999999980,48.59000000000000,3598.82,507.06,20.44000000000010,36.53000000000000,4552.87,611.06,33.23000000000050,46.75,2852.24,535.84,26.76000000000020,42.24000000000000,4452.02,604.0,24.34999999999950,21.900000000000000,4289.45,631.19,41.92000000000010,69.79000000000000,4477.07,560.02,21.86999999999990,40.700000000000000 -643,3558.2,664.14,45.14000000000030,85.24000000000000,3646.34,553.35,22.790000000000000,49.610000000000000,4674.44,661.68,68.17000000000010,106.56000000000000,4368.3,709.99,56.29000000000000,97.64,4277.95,643.28,41.75,75.93000000000010,4134.54,581.09,32.88000000000010,52.57999999999990,4303.01,582.42,28.73999999999980,58.42000000000010,4417.81,601.74,42.38999999999940,50.66000000000000,4506.75,601.46,34.970000000000300,48.40000000000000,3971.48,525.42,17.559999999999900,34.04000000000010,3919.33,688.76,46.04000000000000,96.15000000000000,4454.95,633.51,48.32000000000060,79.24000000000000,3857.56,628.05,38.13999999999990,78.91000000000010,4374.97,582.67,53.31999999999970,80.62,4099.54,567.15,25.10999999999970,52.610000000000000,3508.86,608.55,46.82999999999990,91.41000000000010,3494.75,537.6,27.94999999999980,48.59000000000000,3599.92,507.12,20.44000000000010,36.53000000000000,4553.96,610.42,33.3100000000004,46.75,2853.18,535.76,26.76000000000020,42.24000000000000,4452.75,602.17,24.090000000000100,21.69000000000010,4289.66,630.18,41.909999999999900,69.78000000000010,4478.4,560.55,21.8700000000008,40.700000000000000 -644,3559.37,663.59,45.14000000000030,85.24000000000000,3646.97,553.2,22.800000000000200,49.6099999999999,4674.73,660.95,68.18000000000030,106.56000000000000,4366.74,709.61,56.11999999999990,97.48000000000000,4278.7,642.91,41.73000000000050,75.80000000000010,4135.97,580.8,32.88999999999940,52.51000000000000,4302.93,581.67,28.829999999999900,58.280000000000100,4417.33,600.97,42.39999999999960,50.66000000000000,4508.2,600.9,34.80000000000020,48.40000000000000,3973.92,525.33,17.559999999999900,34.040000000000000,3917.57,687.44,45.75,95.84999999999990,4456.17,633.02,48.31999999999970,79.24000000000000,3858.25,627.59,38.159999999999900,78.70999999999990,4373.77,581.2,53.30999999999950,80.62,4102.06,566.54,25.10999999999970,52.610000000000000,3511.48,607.51,46.82999999999990,91.41000000000000,3496.45,537.45,27.95000000000030,48.58999999999990,3601.02,507.19,20.44000000000010,36.53000000000000,4555.05,609.78,33.38000000000010,46.75,2854.12,535.69,26.76000000000020,42.239999999999900,4453.48,600.33,23.840000000000100,21.49000000000000,4289.87,629.17,41.909999999999900,69.78000000000010,4479.73,561.08,21.8700000000008,40.69999999999990 -645,3560.54,663.04,45.13000000000010,85.24000000000000,3647.61,553.05,22.790000000000000,49.610000000000000,4675.03,660.22,68.18000000000030,106.56000000000000,4365.18,709.23,55.94999999999980,97.31999999999990,4278.61,642.27,41.720000000000300,75.67000000000010,4137.41,580.51,32.88000000000010,52.440000000000100,4302.85,580.91,28.90999999999990,58.15000000000000,4416.86,600.2,42.40000000000060,50.66000000000000,4509.65,600.33,34.63000000000010,48.40000000000000,3976.36,525.25,17.559999999999900,34.040000000000000,3915.81,686.12,45.46000000000000,95.54000000000000,4457.38,632.53,48.32999999999990,79.24000000000000,3858.95,627.13,38.17000000000010,78.51000000000000,4372.56,579.74,53.31999999999970,80.62,4104.58,565.93,25.10999999999970,52.610000000000000,3514.1,606.47,46.82999999999990,91.40000000000000,3498.15,537.31,27.94999999999980,48.58000000000000,3602.12,507.25,20.44000000000010,36.54000000000000,4556.14,609.14,33.46000000000000,46.74000000000000,2855.06,535.62,26.76000000000020,42.24000000000000,4454.22,598.5,23.579999999999900,21.280000000000000,4290.07,628.16,41.92000000000010,69.78000000000010,4481.06,561.61,21.86999999999990,40.69999999999990 -646,3561.7,662.5,45.14000000000030,85.23000000000000,3648.24,552.9,22.800000000000200,49.610000000000000,4675.33,659.49,68.18000000000030,106.57000000000000,4363.61,708.85,55.780000000000700,97.16000000000000,4278.53,641.64,41.69999999999980,75.53000000000000,4138.84,580.22,32.88999999999940,52.370000000000000,4302.77,580.15,28.98999999999980,58.02000000000000,4416.39,599.43,42.39999999999960,50.66000000000010,4511.1,599.76,34.469999999999300,48.40000000000000,3978.8,525.16,17.559999999999900,34.04000000000010,3914.05,684.79,45.16999999999960,95.25,4458.6,632.04,48.32999999999990,79.23000000000000,3859.65,626.68,38.190000000000100,78.31000000000010,4371.36,578.27,53.3100000000004,80.62,4107.11,565.32,25.110000000000600,52.6099999999999,3516.72,605.42,46.83000000000040,91.41000000000010,3499.86,537.16,27.94000000000010,48.59000000000000,3603.22,507.32,20.44000000000010,36.53000000000000,4557.23,608.49,33.530000000000700,46.75,2856.0,535.54,26.76000000000020,42.24000000000000,4454.95,596.67,23.329999999999900,21.06000000000010,4290.28,627.14,41.909999999999900,69.78000000000000,4481.43,561.82,21.86999999999990,40.69999999999990 -647,3562.87,661.95,45.14000000000030,85.24000000000000,3648.88,552.75,22.790000000000000,49.610000000000000,4675.63,658.76,68.18000000000030,106.57000000000000,4362.05,708.47,55.60999999999970,96.99,4278.45,641.01,41.68000000000030,75.40000000000000,4140.27,579.93,32.88999999999940,52.29000000000010,4302.69,579.4,29.07000000000060,57.88,4415.92,598.66,42.39999999999960,50.66000000000010,4512.55,599.2,34.30000000000020,48.40000000000000,3981.24,525.07,17.5600000000004,34.040000000000000,3912.29,683.47,44.88000000000010,94.93999999999990,4459.82,631.54,48.32999999999990,79.24000000000000,3860.35,626.22,38.20000000000030,78.11000000000000,4370.15,576.8,53.32000000000060,80.62,4109.63,564.71,25.10999999999970,52.610000000000000,3519.34,604.38,46.82999999999990,91.41000000000000,3501.56,537.01,27.95000000000030,48.59000000000000,3604.32,507.39,20.44000000000010,36.53000000000000,4558.32,607.85,33.61000000000060,46.74000000000000,2856.94,535.47,26.759999999999800,42.24000000000000,4455.68,594.84,23.079999999999900,20.850000000000000,4290.49,626.13,41.909999999999900,69.78000000000000,4481.79,562.04,21.86999999999990,40.690000000000100 -648,3564.04,661.4,45.13999999999990,85.24000000000000,3649.51,552.6,22.790000000000000,49.610000000000000,4675.93,658.03,68.17000000000010,106.57000000000000,4360.49,708.09,55.44000000000050,96.82999999999990,4278.37,640.37,41.659999999999900,75.27000000000000,4141.71,579.63,32.89000000000030,52.23000000000000,4302.61,578.64,29.150000000000500,57.74000000000000,4415.45,597.89,42.40000000000060,50.66000000000000,4514.0,598.63,34.13000000000010,48.40000000000000,3983.68,524.98,17.559999999999900,34.040000000000000,3910.54,682.15,44.57999999999990,94.63,4461.04,631.05,48.32999999999990,79.24000000000000,3861.04,625.76,38.220000000000300,77.92000000000000,4368.95,575.34,53.3100000000004,80.62,4110.66,564.72,25.150000000000500,52.44999999999990,3521.96,603.34,46.82999999999990,91.40000000000000,3503.26,536.87,27.94999999999980,48.58000000000000,3605.42,507.45,20.44000000000010,36.53000000000000,4557.58,607.21,33.68000000000030,46.74000000000000,2857.88,535.39,26.759999999999800,42.24000000000000,4456.41,593.0,22.829999999999900,20.650000000000000,4290.69,625.12,41.92000000000010,69.78000000000000,4482.16,562.25,21.86999999999990,40.700000000000000 -649,3565.21,660.85,45.13999999999990,85.24000000000000,3650.15,552.45,22.790000000000000,49.6099999999999,4676.23,657.3,68.17000000000010,106.57000000000000,4358.93,707.71,55.26999999999950,96.67000000000000,4278.29,639.74,41.64000000000030,75.13,4143.14,579.34,32.88999999999940,52.16000000000000,4302.53,577.88,29.23000000000050,57.610000000000000,4414.98,597.12,42.40000000000060,50.66000000000000,4514.49,598.01,34.11999999999990,48.40000000000000,3986.12,524.9,17.559999999999900,34.04000000000010,3908.78,680.83,44.29000000000000,94.32999999999990,4462.26,630.56,48.32999999999990,79.24000000000000,3861.74,625.3,38.24000000000020,77.72000000000000,4367.74,573.87,53.3100000000004,80.62,4111.7,564.72,25.19000000000050,52.30000000000000,3524.58,602.29,46.82999999999990,91.41000000000010,3504.96,536.72,27.94999999999980,48.58999999999990,3606.52,507.52,20.44000000000010,36.53000000000000,4556.83,606.57,33.76000000000020,46.739999999999900,2858.83,535.32,26.76000000000020,42.239999999999900,4457.15,591.17,22.57000000000060,20.430000000000100,4290.9,624.1,41.91000000000080,69.79000000000000,4482.52,562.46,21.86999999999990,40.69999999999990 -650,3566.38,660.31,45.13000000000010,85.23000000000000,3650.78,552.3,22.790000000000000,49.610000000000000,4676.53,656.58,68.17000000000010,106.56000000000000,4357.37,707.32,55.09000000000020,96.52000000000000,4278.21,639.11,41.61999999999990,75.0,4143.35,579.05,32.88999999999940,52.09000000000000,4302.45,577.13,29.3100000000004,57.47000000000000,4414.51,596.34,42.39999999999960,50.67000000000000,4514.97,597.38,34.13000000000010,48.40000000000000,3988.56,524.81,17.559999999999900,34.04000000000010,3907.02,679.5,44.0,94.03000000000000,4463.48,630.07,48.33000000000080,79.2299999999999,3862.44,624.85,38.25,77.51000000000000,4368.88,576.71,49.44999999999980,76.94999999999990,4112.73,564.73,25.23000000000050,52.13,3527.2,601.25,46.83000000000040,91.41000000000000,3506.66,536.57,27.95000000000030,48.58999999999990,3607.62,507.59,20.44000000000010,36.53000000000000,4556.09,605.93,33.82999999999990,46.73000000000000,2859.77,535.25,26.76000000000020,42.24000000000000,4457.82,593.27,22.13000000000010,19.96000000000000,4291.11,623.09,41.91000000000080,69.78000000000000,4482.89,562.68,21.86999999999990,40.690000000000100 -651,3567.54,659.76,45.13999999999990,85.24000000000000,3651.41,552.15,22.800000000000200,49.610000000000000,4676.82,655.85,68.18000000000030,106.56000000000000,4355.8,706.94,54.92999999999940,96.3599999999999,4278.13,638.47,41.60999999999970,74.87,4143.55,578.76,32.88999999999940,52.02000000000000,4302.37,576.37,29.390000000000300,57.34000000000000,4414.04,595.57,42.39999999999960,50.67000000000000,4515.46,596.76,34.13000000000010,48.40000000000000,3991.0,524.72,17.559999999999900,34.040000000000000,3905.26,678.18,43.70999999999960,93.73000000000000,4464.7,629.57,48.32999999999990,79.2399999999999,3863.14,624.39,38.26000000000020,77.32000000000010,4370.02,579.54,45.599999999999500,73.28000000000010,4113.76,564.74,25.269999999999500,51.97000000000000,3529.82,600.21,46.82999999999990,91.40000000000000,3508.37,536.42,27.95000000000030,48.59000000000000,3608.72,507.65,20.44000000000010,36.53000000000000,4555.35,605.28,33.89999999999960,46.74000000000000,2860.71,535.17,26.759999999999800,42.24000000000000,4458.5,595.36,21.67000000000010,19.5,4291.31,622.08,41.91999999999920,69.78000000000000,4483.25,562.89,21.86999999999990,40.700000000000000 -652,3568.71,659.21,45.13999999999990,85.24000000000000,3652.05,552.0,22.790000000000000,49.610000000000000,4677.12,655.12,68.18000000000030,106.56000000000000,4354.24,706.56,54.76000000000020,96.20000000000010,4278.05,637.84,41.59000000000020,74.73000000000000,4143.76,578.47,32.88999999999940,51.93999999999990,4302.29,575.62,29.47000000000030,57.200000000000000,4413.57,594.8,42.40000000000060,50.67000000000010,4515.94,596.14,34.13000000000010,48.40000000000000,3993.44,524.64,17.559999999999900,34.040000000000000,3903.5,676.86,43.42000000000010,93.42000000000000,4465.92,629.08,48.31999999999970,79.24000000000000,3863.83,623.93,38.29000000000000,77.12,4371.17,582.38,41.72999999999960,69.61000000000000,4114.79,564.74,25.3100000000004,51.819999999999900,3532.44,599.16,46.82999999999990,91.41000000000010,3510.07,536.28,27.94999999999980,48.58000000000000,3609.82,507.72,20.44000000000010,36.53000000000000,4554.6,604.64,33.97999999999960,46.74000000000000,2861.65,535.1,26.759999999999800,42.24000000000000,4459.17,597.46,21.22000000000030,19.030000000000000,4291.52,621.06,41.909999999999900,69.79000000000010,4483.62,563.1,21.86999999999990,40.69999999999990 -653,3569.88,658.66,45.13999999999990,85.24000000000000,3652.68,551.85,22.790000000000000,49.610000000000000,4677.42,654.39,68.18000000000030,106.56000000000000,4352.68,706.18,54.59000000000020,96.03000000000010,4277.97,637.21,41.56999999999970,74.59999999999990,4143.96,578.17,32.89999999999960,51.88,4302.21,574.86,29.5600000000004,57.069999999999900,4413.1,594.03,42.39999999999960,50.67000000000010,4516.43,595.52,34.13000000000010,48.40000000000000,3995.88,524.55,17.559999999999900,34.04000000000010,3901.74,675.53,43.13000000000010,93.12,4467.14,628.59,48.31999999999970,79.24000000000000,3864.53,623.48,38.29999999999970,76.91000000000000,4372.31,585.22,37.86999999999990,65.93000000000000,4115.82,564.75,25.350000000000400,51.65000000000000,3535.06,598.12,46.82999999999990,91.41000000000000,3511.77,536.13,27.94999999999980,48.59000000000000,3610.92,507.78,20.44000000000010,36.54000000000010,4553.86,604.0,34.05000000000020,46.73000000000000,2862.59,535.02,26.759999999999800,42.24000000000000,4459.85,599.55,20.769999999999500,18.56000000000010,4291.73,620.05,41.91000000000080,69.78000000000010,4483.98,563.32,21.8700000000008,40.68999999999990 -654,3571.05,658.12,45.13999999999990,85.23000000000000,3653.32,551.7,22.790000000000000,49.6099999999999,4677.72,653.66,68.17000000000010,106.56000000000000,4351.12,705.8,54.42000000000010,95.87,4277.89,636.57,41.54999999999930,74.46999999999990,4144.17,577.88,32.89000000000030,51.81000000000010,4302.13,574.1,29.640000000000300,56.93999999999990,4412.63,593.26,42.39999999999960,50.67000000000000,4516.91,594.9,34.13000000000010,48.40000000000000,3998.32,524.46,17.559999999999900,34.040000000000000,3899.98,674.21,42.84000000000020,92.81999999999990,4468.36,628.1,48.32000000000060,79.24000000000000,3865.23,623.02,38.309999999999900,76.72000000000000,4371.77,584.7,37.349999999999500,65.15000000000000,4116.86,564.76,25.38000000000010,51.49000000000000,3537.68,597.08,46.84000000000020,91.41000000000000,3513.47,535.98,27.95000000000030,48.59000000000000,3612.02,507.85,20.44000000000010,36.53000000000000,4553.12,603.36,34.11999999999990,46.73000000000000,2863.53,534.95,26.759999999999800,42.24000000000000,4460.52,601.65,20.31999999999970,18.090000000000000,4291.93,619.04,41.92000000000010,69.78000000000010,4484.35,563.53,21.86999999999990,40.700000000000000 -655,3572.22,657.57,45.14000000000030,85.2399999999999,3653.95,551.55,22.790000000000000,49.610000000000000,4678.02,652.93,68.16999999999920,106.56000000000000,4349.56,705.42,54.23999999999980,95.71000000000000,4277.81,635.94,41.52999999999980,74.32999999999990,4144.37,577.59,32.900000000000500,51.74000000000000,4302.05,573.35,29.72000000000030,56.79000000000000,4412.16,592.49,42.40000000000060,50.67000000000000,4517.4,594.27,34.13000000000010,48.40000000000000,4000.77,524.37,17.550000000000200,34.040000000000000,3898.22,672.89,42.55000000000020,92.51,4469.58,627.6,48.31999999999970,79.24000000000000,3865.93,622.56,38.33000000000040,76.5200000000001,4371.24,584.19,36.82999999999990,64.3599999999999,4117.89,564.76,25.42000000000010,51.34000000000000,3540.3,596.04,46.83999999999970,91.40000000000010,3515.18,535.83,27.94000000000010,48.58999999999990,3613.12,507.92,20.44000000000010,36.53000000000000,4552.37,602.72,34.19999999999980,46.72000000000000,2864.47,534.88,26.76000000000020,42.24000000000000,4461.2,603.74,19.86999999999990,17.630000000000000,4292.14,618.03,41.909999999999900,69.78000000000000,4484.71,563.74,21.86999999999990,40.700000000000000 -656,3573.38,657.02,45.13999999999990,85.24000000000000,3654.58,551.4,22.800000000000200,49.610000000000000,4678.32,652.2,68.17000000000010,106.56000000000000,4348.0,705.04,54.06999999999970,95.55000000000010,4277.73,635.31,41.51000000000020,74.20000000000010,4144.58,577.3,32.89000000000030,51.67000000000010,4301.97,572.59,29.800000000000200,56.66000000000000,4411.69,591.72,42.39000000000030,50.66000000000000,4517.89,593.65,34.11999999999990,48.40000000000000,4003.21,524.29,17.550000000000200,34.04000000000010,3896.46,671.57,42.25999999999980,92.19999999999990,4470.79,627.11,48.32999999999990,79.24000000000000,3866.63,622.1,38.33999999999970,76.31999999999990,4370.7,583.67,36.3100000000004,63.57000000000010,4118.92,564.77,25.47000000000030,51.180000000000100,3540.43,598.45,46.75,91.20999999999990,3516.88,535.69,27.94999999999980,48.58999999999990,3614.22,507.98,20.44000000000010,36.53000000000000,4551.63,602.07,34.26999999999950,46.72999999999990,2865.41,534.8,26.76000000000020,42.24000000000000,4461.87,605.84,19.42000000000010,17.160000000000000,4292.35,617.01,41.909999999999900,69.79000000000000,4485.07,563.96,21.88000000000010,40.68999999999990 -657,3574.55,656.48,45.13999999999990,85.23000000000000,3655.22,551.25,22.79000000000040,49.610000000000000,4678.61,651.47,68.18000000000030,106.56000000000000,4346.43,704.66,53.909999999999900,95.39,4277.64,634.67,41.5,74.07000000000010,4144.78,577.0,32.900000000000500,51.60000000000000,4301.89,571.83,29.88000000000010,56.53000000000000,4411.22,590.95,42.38999999999940,50.66000000000000,4518.37,593.03,34.13000000000010,48.40000000000000,4005.65,524.2,17.549999999999700,34.040000000000000,3894.71,670.24,41.96000000000000,91.91000000000000,4472.01,626.62,48.32999999999990,79.24000000000000,3867.32,621.65,38.35999999999970,76.12,4370.16,583.16,35.80000000000020,62.780000000000100,4119.95,564.78,25.51000000000020,51.01000000000000,3540.55,600.87,46.67999999999980,91.0,3518.58,535.54,27.95000000000030,48.59000000000000,3615.32,508.05,20.42999999999980,36.53000000000000,4550.12,600.9,34.27000000000040,46.73000000000000,2866.36,534.73,26.759999999999800,42.24000000000000,4462.55,607.93,18.97000000000030,16.700000000000000,4292.55,616.0,41.92000000000010,69.78000000000000,4485.44,564.17,21.8700000000008,40.700000000000000 -658,3575.72,655.93,45.14000000000030,85.23000000000000,3655.85,551.1,22.790000000000000,49.610000000000000,4678.91,650.74,68.18000000000030,106.57000000000000,4344.87,704.28,53.73999999999980,95.23000000000000,4277.56,634.04,41.47999999999960,73.93000000000010,4144.99,576.71,32.89000000000030,51.53000000000000,4301.81,571.08,29.96000000000000,56.39000000000000,4413.95,589.97,42.39000000000030,50.66000000000000,4518.86,592.41,34.13000000000010,48.40000000000000,4008.09,524.11,17.549999999999700,34.040000000000000,3892.95,668.92,41.67000000000010,91.60000000000000,4473.23,626.13,48.33000000000080,79.24000000000000,3868.02,621.19,38.38000000000010,75.92000000000000,4369.63,582.64,35.26999999999950,62.0,4120.98,564.78,25.550000000000200,50.860000000000000,3540.67,603.29,46.61000000000010,90.80000000000010,3520.28,535.39,27.94999999999980,48.59000000000000,3616.42,508.11,20.42999999999980,36.54000000000000,4548.61,599.72,34.26000000000020,46.73000000000000,2867.3,534.65,26.759999999999800,42.24000000000000,4463.23,610.03,18.51000000000020,16.220000000000000,4292.76,614.99,41.909999999999900,69.78000000000000,4485.8,564.38,21.88000000000010,40.700000000000000 -659,3576.89,655.38,45.14000000000030,85.24000000000000,3656.49,550.95,22.79000000000040,49.6099999999999,4679.21,650.01,68.18000000000030,106.57000000000000,4343.31,703.9,53.55999999999950,95.07000000000000,4277.48,633.41,41.46000000000000,73.80000000000010,4145.2,576.42,32.89000000000030,51.46000000000000,4301.73,570.32,30.04000000000090,56.26000000000000,4416.67,588.98,42.39999999999960,50.67000000000000,4519.34,591.79,34.13000000000010,48.39000000000000,4010.53,524.03,17.549999999999700,34.04000000000010,3891.19,667.6,41.38000000000010,91.30000000000000,4474.45,625.64,48.32999999999990,79.23000000000000,3868.72,620.73,38.39000000000030,75.73000000000000,4369.09,582.12,34.76000000000020,61.22000000000000,4122.02,564.79,25.579999999999900,50.700000000000000,3541.1,602.93,46.54000000000000,90.60000000000000,3521.98,535.25,27.94999999999980,48.58000000000000,3617.52,508.18,20.42999999999980,36.53000000000000,4547.09,598.55,34.26999999999950,46.73000000000000,2868.24,534.58,26.76000000000020,42.24000000000000,4463.9,612.12,18.0600000000004,15.760000000000000,4292.97,613.97,41.909999999999900,69.79000000000000,4486.17,564.6,21.86999999999990,40.68999999999990 -660,3578.06,654.83,45.13999999999990,85.24000000000000,3657.12,550.8,22.790000000000000,49.610000000000000,4679.51,649.28,68.17999999999940,106.57000000000000,4341.75,703.52,53.39000000000030,94.90000000000000,4277.4,632.77,41.44000000000050,73.67000000000010,4145.4,576.13,32.900000000000500,51.39000000000000,4301.65,569.56,30.1200000000008,56.13000000000010,4419.4,588.0,42.40000000000060,50.66000000000000,4519.83,591.16,34.13000000000010,48.40000000000000,4012.97,523.94,17.550000000000200,34.040000000000000,3889.43,666.27,41.09000000000020,91.0,4473.33,624.93,48.32999999999990,79.23000000000000,3869.42,620.27,38.40000000000010,75.53000000000000,4368.56,581.61,34.22999999999960,60.43000000000000,4123.05,564.8,25.61999999999990,50.54000000000010,3541.54,602.57,46.46000000000000,90.40000000000000,3523.69,535.1,27.94999999999980,48.59000000000000,3618.62,508.25,20.43000000000030,36.53000000000000,4545.58,597.38,34.27000000000040,46.72000000000000,2869.18,534.51,26.76000000000020,42.24000000000000,4464.58,614.21,17.609999999999700,15.300000000000000,4293.17,612.96,41.92000000000010,69.78000000000000,4486.53,564.81,21.86999999999990,40.700000000000000 -661,3579.23,654.29,45.13000000000010,85.23000000000000,3657.76,550.65,22.790000000000000,49.610000000000000,4679.81,648.55,68.16999999999920,106.57000000000000,4340.19,703.14,53.220000000000300,94.74,4277.32,632.14,41.42000000000010,73.53000000000000,4145.61,575.84,32.89000000000030,51.319999999999900,4301.57,568.81,30.200000000000700,55.99000000000000,4422.13,587.01,42.39999999999960,50.67000000000000,4520.31,590.54,34.1299999999992,48.40000000000010,4015.41,523.85,17.559999999999900,34.040000000000000,3887.67,664.95,40.79999999999970,90.68999999999990,4472.21,624.22,48.31999999999970,79.24000000000000,3870.11,619.82,38.42999999999980,75.31999999999990,4368.02,581.09,33.719999999999300,59.64000000000000,4123.34,564.45,25.65999999999990,50.38,3541.98,602.21,46.38999999999990,90.19999999999990,3525.39,534.95,27.95000000000030,48.58999999999990,3619.72,508.31,20.43000000000030,36.53000000000000,4544.07,596.2,34.27000000000040,46.72999999999990,2870.12,534.43,26.76000000000020,42.24000000000000,4465.13,611.85,17.159999999999900,14.829999999999900,4293.38,611.95,41.909999999999900,69.78000000000000,4486.9,565.02,21.8700000000008,40.700000000000000 -662,3580.39,653.74,45.14000000000030,85.23000000000000,3658.39,550.5,22.790000000000000,49.610000000000000,4680.11,647.83,68.17000000000010,106.56000000000000,4338.63,702.76,53.05000000000020,94.58000000000000,4277.24,631.51,41.40000000000060,73.40000000000000,4145.81,575.54,32.89999999999960,51.25,4301.49,568.05,30.28000000000070,55.85000000000000,4424.4,587.1,42.40000000000060,50.66000000000000,4520.8,589.92,34.13000000000010,48.40000000000010,4017.85,523.76,17.559999999999900,34.040000000000000,3884.61,664.43,40.73999999999980,90.55000000000010,4471.09,623.51,48.31999999999970,79.24000000000000,3870.81,619.36,38.440000000000100,75.13,4367.48,580.58,33.21000000000000,58.84999999999990,4123.63,564.1,25.71000000000000,50.22000000000000,3542.42,601.85,46.309999999999900,90.0,3527.09,534.8,27.94999999999980,48.59000000000000,3620.82,508.38,20.42999999999980,36.53000000000000,4542.55,595.03,34.26999999999950,46.72000000000000,2871.06,534.36,26.76000000000020,42.24000000000000,4465.69,609.48,16.710000000000000,14.360000000000000,4293.59,610.94,41.909999999999900,69.78000000000000,4485.55,565.24,21.86999999999990,40.700000000000000 -663,3581.56,653.19,45.13999999999990,85.2399999999999,3659.02,550.35,22.800000000000200,49.610000000000000,4680.4,647.1,68.18000000000030,106.56000000000000,4337.06,702.38,52.88999999999940,94.42000000000000,4277.16,630.87,41.38000000000010,73.27000000000000,4146.02,575.25,32.88999999999940,51.18000000000000,4301.41,567.29,30.36999999999990,55.72000000000000,4426.68,587.18,42.38999999999940,50.66000000000010,4521.28,589.3,34.13000000000010,48.40000000000010,4020.29,523.68,17.559999999999900,34.04000000000010,3881.54,663.9,40.67999999999980,90.41000000000000,4469.96,622.8,48.32999999999990,79.24000000000000,3871.51,618.9,38.44999999999980,74.93000000000010,4366.95,580.06,32.68000000000030,58.07000000000010,4123.92,563.76,25.75,50.06000000000010,3542.86,601.5,46.23999999999980,89.79000000000000,3528.79,534.66,27.94999999999980,48.59000000000000,3621.92,508.45,20.42999999999980,36.53000000000000,4541.04,593.85,34.27000000000040,46.73000000000000,2872.0,534.28,26.76000000000020,42.24000000000000,4466.24,607.11,16.26000000000020,13.900000000000000,4293.79,609.92,41.92000000000010,69.78000000000010,4484.2,565.45,21.86999999999990,40.69999999999990 -664,3582.73,652.64,45.13999999999990,85.24000000000000,3659.66,550.2,22.790000000000000,49.6099999999999,4680.7,646.37,68.18000000000030,106.56000000000000,4335.5,702.0,52.71000000000000,94.26,4277.08,630.24,41.36999999999990,73.13,4146.22,574.96,32.89999999999960,51.110000000000000,4301.33,566.54,30.44999999999980,55.58000000000000,4428.95,587.26,42.39000000000030,50.66000000000000,4521.77,588.67,34.1299999999992,48.40000000000010,4022.73,523.59,17.559999999999900,34.040000000000000,3878.48,663.37,40.61000000000010,90.28000000000000,4468.84,622.09,48.32999999999990,79.24000000000000,3872.21,618.45,38.4699999999998,74.71999999999990,4366.41,579.54,32.17000000000010,57.29000000000010,4124.22,563.41,25.779999999999700,49.90000000000000,3543.3,601.14,46.159999999999900,89.59000000000000,3528.96,534.51,27.94999999999980,48.59000000000000,3623.02,508.51,20.42999999999980,36.53000000000000,4539.53,592.68,34.27000000000040,46.72000000000000,2872.95,534.21,26.76000000000020,42.24000000000000,4466.8,604.74,15.800000000000200,13.43000000000000,4294.0,608.91,41.909999999999900,69.78000000000010,4482.86,565.66,21.86999999999990,40.700000000000000 -665,3583.9,652.1,45.13999999999990,85.23000000000000,3660.29,550.06,22.790000000000000,49.60000000000000,4681.0,645.64,68.18000000000030,106.56000000000000,4333.94,701.62,52.54000000000000,94.10000000000000,4277.0,629.6,41.35000000000040,73.01000000000000,4146.43,574.67,32.88999999999940,51.04000000000010,4301.25,565.78,30.529999999999700,55.450000000000000,4431.22,587.34,42.38999999999940,50.67000000000000,4522.26,588.05,34.11999999999990,48.40000000000010,4025.17,523.5,17.559999999999900,34.040000000000000,3875.41,662.85,40.55000000000020,90.13,4467.72,621.38,48.32999999999990,79.24000000000000,3872.9,617.99,38.48999999999980,74.53000000000000,4365.88,579.03,31.640000000000300,56.49000000000000,4124.51,563.06,25.81999999999970,49.75,3543.73,600.78,46.09999999999990,89.39000000000000,3529.14,534.36,27.95000000000030,48.59000000000000,3624.12,508.58,20.43000000000030,36.53000000000000,4538.01,591.5,34.26999999999950,46.73000000000000,2873.89,534.14,26.76000000000020,42.24000000000000,4467.35,602.37,15.359999999999700,12.970000000000000,4294.21,607.9,41.909999999999900,69.78000000000000,4481.51,565.88,21.86999999999990,40.700000000000000 -666,3585.07,651.55,45.12999999999970,85.23000000000000,3660.93,549.91,22.790000000000000,49.60000000000000,4681.3,644.91,68.17999999999940,106.56000000000000,4331.88,701.32,52.36999999999990,93.93000000000000,4276.92,628.97,41.32999999999990,72.87,4146.63,574.38,32.89999999999960,50.96000000000000,4301.17,565.02,30.60999999999970,55.32000000000010,4433.49,587.43,42.40000000000060,50.66000000000010,4521.44,587.43,34.13000000000010,48.40000000000010,4027.61,523.41,17.559999999999900,34.05000000000010,3872.35,662.32,40.48000000000000,89.9899999999999,4466.6,620.67,48.31999999999970,79.24000000000000,3873.6,617.53,38.51000000000020,74.33000000000000,4365.34,578.51,31.13000000000010,55.71000000000000,4124.8,562.72,25.85999999999970,49.57999999999990,3544.17,600.42,46.02000000000000,89.19000000000010,3529.31,534.21,27.95000000000030,48.58999999999990,3625.22,508.64,20.43000000000030,36.54000000000000,4536.5,590.33,34.27000000000040,46.72999999999990,2874.83,534.06,26.76000000000020,42.24000000000000,4467.91,600.01,14.900000000000500,12.490000000000000,4294.41,606.88,41.92000000000010,69.79000000000000,4480.16,566.09,21.86999999999990,40.69999999999990 -667,3586.23,651.0,45.13999999999990,85.24000000000000,3660.53,548.67,22.799999999999700,49.610000000000000,4681.6,644.18,68.17000000000010,106.56000000000000,4329.81,701.01,52.19999999999980,93.78000000000000,4276.84,628.34,41.30999999999950,72.73000000000000,4146.84,574.08,32.89999999999960,50.90000000000000,4301.09,564.27,30.6899999999996,55.180000000000100,4435.76,587.51,42.39999999999960,50.66000000000000,4520.62,586.81,34.13000000000010,48.40000000000010,4030.05,523.33,17.559999999999900,34.040000000000000,3869.28,661.8,40.41999999999960,89.85000000000000,4465.48,619.96,48.32000000000060,79.24000000000000,3874.3,617.07,38.52000000000000,74.14000000000000,4364.81,578.0,30.59999999999950,54.92000000000000,4125.09,562.37,25.89999999999960,49.42000000000000,3544.61,600.06,45.940000000000100,88.99000000000000,3529.48,534.07,27.94999999999980,48.58999999999990,3626.32,508.71,20.42999999999980,36.53000000000000,4534.99,589.15,34.27000000000040,46.73000000000000,2875.77,533.99,26.76000000000020,42.24000000000000,4468.46,597.64,14.449999999999800,12.030000000000000,4294.62,605.87,41.909999999999900,69.78000000000000,4478.81,566.3,21.86999999999990,40.700000000000000 -668,3587.4,650.45,45.13999999999990,85.24000000000000,3660.14,547.44,22.800000000000200,49.6099999999999,4681.9,643.45,68.17000000000010,106.56000000000000,4327.75,700.71,52.02000000000040,93.61,4276.75,627.7,41.30000000000020,72.59999999999990,4147.04,573.79,32.89999999999960,50.83000000000000,4301.01,563.51,30.769999999999500,55.05000000000000,4437.68,587.59,42.38999999999940,50.66000000000000,4519.8,586.19,34.13000000000010,48.40000000000000,4032.49,523.24,17.5600000000004,34.040000000000000,3866.22,661.27,40.36000000000010,89.71000000000000,4464.35,619.25,48.32999999999990,79.24000000000000,3875.0,616.62,38.5300000000002,73.93000000000000,4364.27,577.48,30.08999999999920,54.14000000000000,4125.38,562.02,25.94999999999980,49.27000000000000,3545.05,599.7,45.86999999999990,88.79000000000000,3529.65,533.92,27.94999999999980,48.59000000000000,3627.42,508.78,20.42999999999980,36.53000000000000,4533.48,587.98,34.27000000000040,46.73000000000000,2876.71,533.92,26.759999999999800,42.24000000000000,4468.32,597.52,14.460000000000000,12.030000000000000,4294.83,604.86,41.909999999999900,69.78000000000000,4477.46,566.52,21.88000000000010,40.700000000000000 -669,3588.57,649.91,45.13999999999990,85.23000000000000,3659.75,546.21,22.790000000000000,49.610000000000000,4682.2,642.72,68.17000000000010,106.57000000000000,4325.68,700.41,51.85999999999970,93.45000000000010,4276.67,627.07,41.27999999999980,72.46999999999990,4147.25,573.5,32.89999999999960,50.76000000000000,4300.93,562.76,30.84999999999950,54.90000000000000,4439.59,587.67,42.39999999999960,50.67000000000010,4518.98,585.56,34.13000000000010,48.40000000000010,4034.93,523.15,17.559999999999900,34.04000000000010,3863.15,660.74,40.29999999999970,89.56999999999990,4463.23,618.54,48.33000000000080,79.24000000000000,3875.69,616.16,38.559999999999900,73.73000000000000,4363.73,576.97,29.57000000000060,53.33999999999990,4125.68,561.68,25.979999999999600,49.10000000000000,3545.49,599.35,45.79000000000040,88.57999999999990,3529.82,533.77,27.94999999999980,48.59000000000000,3628.52,508.84,20.42999999999980,36.53000000000000,4531.96,586.81,34.26999999999950,46.72000000000000,2877.65,533.84,26.759999999999800,42.24000000000000,4468.19,597.41,14.450000000000700,12.030000000000100,4295.03,603.84,41.92000000000010,69.79000000000000,4476.12,566.73,21.86999999999990,40.69999999999990 -670,3589.74,649.36,45.14000000000030,85.23000000000000,3659.36,544.98,22.790000000000000,49.60000000000000,4682.77,643.23,67.59999999999950,106.06000000000000,4323.61,700.1,51.69000000000050,93.29000000000000,4276.59,626.44,41.26000000000020,72.32999999999990,4147.45,573.21,32.900000000000500,50.68999999999990,4300.85,562.0,30.92999999999940,54.77000000000000,4441.51,587.76,42.39999999999960,50.66000000000000,4518.16,584.94,34.13000000000010,48.40000000000000,4037.37,523.07,17.559999999999900,34.040000000000000,3860.09,660.22,40.23000000000000,89.43000000000000,4462.11,617.83,48.32999999999990,79.24000000000000,3876.39,615.7,38.57000000000020,73.54000000000000,4363.2,576.45,29.050000000000200,52.559999999999900,4125.97,561.33,26.019999999999500,48.94999999999990,3545.93,598.99,45.720000000000300,88.38,3530.0,533.63,27.94999999999980,48.58000000000000,3629.62,508.91,20.43000000000030,36.53000000000000,4530.45,585.63,34.27000000000040,46.73000000000000,2878.59,533.77,26.759999999999800,42.24000000000000,4468.05,597.29,14.460000000000000,12.030000000000100,4294.47,603.19,41.72999999999960,69.56999999999990,4474.77,566.94,21.86999999999990,40.69999999999990 -671,3590.91,648.81,45.14000000000030,85.24000000000000,3658.97,543.74,22.79000000000040,49.610000000000000,4683.34,643.75,67.02999999999980,105.54000000000000,4321.55,699.8,51.51999999999950,93.13,4276.51,625.8,41.23999999999980,72.20000000000010,4147.66,572.92,32.900000000000500,50.610000000000000,4300.78,561.24,31.0,54.64000000000000,4443.43,587.84,42.39999999999960,50.66000000000000,4517.35,584.32,34.11999999999990,48.40000000000000,4039.81,522.98,17.559999999999900,34.040000000000000,3857.03,659.69,40.159999999999900,89.29000000000000,4460.99,617.12,48.32000000000060,79.24000000000000,3877.09,615.25,38.57999999999990,73.33000000000000,4362.66,575.93,28.540000000000000,51.780000000000100,4126.26,560.98,26.05999999999950,48.79000000000000,3546.36,598.63,45.65000000000010,88.18000000000000,3530.17,533.48,27.94999999999980,48.59000000000000,3630.72,508.97,20.43000000000030,36.54000000000000,4528.94,584.46,34.27000000000040,46.71999999999990,2879.53,533.69,26.759999999999800,42.239999999999900,4467.92,597.18,14.449999999999800,12.030000000000100,4293.9,602.53,41.55000000000020,69.36000000000000,4473.42,567.16,21.86999999999990,40.700000000000000 -672,3592.07,648.26,45.13999999999990,85.24000000000000,3658.58,542.51,22.790000000000000,49.610000000000000,4683.91,644.26,66.46000000000000,105.03000000000000,4319.48,699.5,51.35000000000040,92.97000000000000,4276.43,625.17,41.21999999999940,72.07000000000010,4147.86,572.62,32.910000000000800,50.55000000000000,4300.7,560.49,31.090000000000100,54.5,4445.34,587.92,42.39999999999960,50.66000000000010,4516.53,583.7,34.13000000000010,48.40000000000000,4042.25,522.89,17.559999999999900,34.040000000000000,3853.96,659.17,40.09999999999990,89.14000000000000,4459.87,616.41,48.31999999999970,79.24000000000000,3877.79,614.79,38.59999999999990,73.13,4362.13,575.42,28.01000000000020,50.99000000000000,4126.55,560.64,26.09999999999950,48.620000000000000,3546.8,598.27,45.57999999999990,87.98000000000000,3530.34,533.33,27.94999999999980,48.58999999999990,3631.82,509.04,20.42999999999980,36.53000000000000,4527.42,583.28,34.26999999999950,46.73000000000000,2880.48,533.62,26.759999999999800,42.24000000000000,4467.78,597.07,14.449999999999800,12.020000000000000,4293.33,601.88,41.38000000000010,69.14000000000000,4472.07,567.37,21.88000000000010,40.700000000000000 -673,3593.24,647.72,45.14000000000030,85.23000000000000,3658.19,541.28,22.790000000000000,49.610000000000000,4684.49,644.77,65.88000000000010,104.52000000000000,4317.42,699.2,51.18000000000030,92.80000000000000,4276.35,624.54,41.19999999999980,71.93000000000010,4148.07,572.33,32.900000000000500,50.47999999999990,4300.62,559.73,31.17000000000010,54.370000000000000,4447.26,588.0,42.39999999999960,50.67000000000000,4515.71,583.08,34.13000000000010,48.40000000000000,4044.69,522.8,17.559999999999900,34.05000000000010,3850.9,658.64,40.04000000000000,89.01000000000000,4458.74,615.7,48.32999999999990,79.24000000000000,3878.49,614.33,38.61000000000010,72.93999999999990,4361.59,574.9,27.5,50.200000000000000,4126.84,560.29,26.13999999999940,48.47000000000000,3547.24,597.91,45.5,87.78000000000010,3530.51,533.18,27.94999999999980,48.59000000000000,3632.92,509.11,20.42999999999980,36.53000000000000,4525.91,582.11,34.27000000000040,46.72000000000000,2881.42,533.55,26.759999999999800,42.24000000000000,4467.64,596.95,14.460000000000000,12.030000000000000,4292.76,601.22,41.19999999999980,68.93999999999990,4470.73,567.59,21.8700000000008,40.68999999999990 -674,3594.41,647.17,45.14000000000030,85.24000000000000,3658.27,541.14,22.74000000000020,49.51000000000000,4685.06,645.28,65.30999999999950,104.01,4315.35,698.89,51.00999999999930,92.65000000000000,4276.27,623.9,41.17999999999940,71.80000000000010,4148.27,572.04,32.909999999999900,50.41000000000010,4300.54,558.97,31.25,54.24000000000000,4449.18,588.09,42.39999999999960,50.66000000000000,4514.89,582.45,34.13000000000010,48.40000000000000,4047.13,522.72,17.559999999999900,34.040000000000000,3847.83,658.12,39.98000000000000,88.86000000000000,4457.62,614.99,48.32999999999990,79.24000000000000,3879.18,613.87,38.63000000000010,72.74000000000000,4361.06,574.39,26.969999999999300,49.41000000000000,4127.14,559.94,26.17999999999940,48.309999999999900,3547.68,597.55,45.42000000000010,87.58000000000000,3530.68,533.04,27.95000000000030,48.58000000000000,3634.02,509.17,20.42999999999980,36.53000000000000,4524.4,580.93,34.27000000000040,46.73000000000000,2882.36,533.47,26.759999999999800,42.24000000000000,4467.51,596.84,14.449999999999800,12.030000000000000,4292.19,600.57,41.02000000000040,68.71999999999990,4469.38,567.8,21.86999999999990,40.700000000000000 -675,3595.58,646.62,45.13999999999990,85.24000000000000,3658.35,541.01,22.69000000000010,49.41000000000000,4685.63,645.79,64.73999999999980,103.5,4313.29,698.59,50.82999999999990,92.48000000000000,4276.19,623.27,41.16000000000080,71.67000000000010,4148.48,571.75,32.900000000000500,50.34000000000000,4300.46,558.22,31.329999999999900,54.08999999999990,4451.1,588.17,42.38999999999940,50.66000000000010,4514.07,581.83,34.13000000000010,48.40000000000000,4048.76,522.62,17.559999999999900,34.040000000000000,3844.77,657.59,39.909999999999900,88.73000000000000,4456.5,614.28,48.32999999999990,79.24000000000000,3879.88,613.42,38.65000000000010,72.54000000000010,4360.52,573.87,26.459999999999100,48.63,4127.43,559.6,26.219999999999300,48.15000000000000,3548.12,597.2,45.34999999999990,87.37,3530.86,532.89,27.94999999999980,48.59000000000000,3635.71,508.95,20.42999999999980,36.53000000000000,4521.56,580.19,34.07999999999990,46.68000000000000,2883.3,533.4,26.759999999999800,42.24000000000000,4467.37,596.72,14.460000000000000,12.030000000000000,4291.63,599.91,40.84000000000020,68.51000000000000,4468.03,568.01,21.86999999999990,40.700000000000000 -676,3596.75,646.07,45.13999999999990,85.2399999999999,3658.42,540.87,22.65999999999990,49.32000000000010,4686.2,646.31,64.17000000000010,102.98000000000000,4311.22,698.29,50.67000000000010,92.32000000000000,4276.11,622.64,41.15000000000060,71.53000000000000,4148.69,571.45,32.900000000000500,50.27000000000000,4300.38,557.46,31.40999999999990,53.95999999999990,4453.01,588.25,42.39999999999960,50.66000000000000,4513.25,581.21,34.13000000000010,48.40000000000000,4050.39,522.52,17.559999999999900,34.040000000000000,3841.7,657.06,39.85000000000040,88.59000000000000,4455.38,613.57,48.31999999999970,79.2399999999999,3880.07,613.0,38.659999999999900,72.34000000000000,4359.9,573.27,26.450000000000700,48.63,4127.72,559.25,26.25999999999930,47.99000000000000,3548.56,596.84,45.27000000000000,87.17000000000000,3531.03,532.74,27.94999999999980,48.59000000000000,3637.39,508.72,20.44000000000010,36.53000000000000,4518.73,579.45,33.88000000000010,46.620000000000000,2884.24,533.32,26.76000000000020,42.239999999999900,4467.24,596.61,14.449999999999800,12.030000000000000,4291.06,599.26,40.659999999999900,68.29000000000000,4466.68,568.23,21.86999999999990,40.68999999999990 -677,3597.92,645.53,45.13000000000010,85.23000000000000,3658.5,540.74,22.610000000000100,49.22000000000000,4686.78,646.82,63.59000000000020,102.47000000000000,4309.16,697.98,50.48999999999980,92.17000000000000,4276.03,622.0,41.13000000000010,71.40000000000000,4148.89,571.16,32.89999999999960,50.200000000000000,4300.3,556.7,31.48999999999980,53.82999999999990,4454.93,588.33,42.39999999999960,50.67000000000000,4512.65,580.8,34.13000000000010,48.40000000000010,4052.02,522.42,17.559999999999900,34.04000000000010,3838.64,656.54,39.7800000000002,88.44000000000010,4454.26,612.86,48.31999999999970,79.24000000000000,3880.27,612.59,38.67000000000010,72.14000000000000,4359.27,572.67,26.459999999999100,48.63,4128.01,558.9,26.300000000000200,47.83000000000000,3549.0,596.48,45.19999999999980,86.97000000000000,3531.2,532.59,27.95000000000030,48.58999999999990,3639.08,508.49,20.43000000000030,36.53000000000000,4515.89,578.71,33.6899999999996,46.569999999999900,2885.18,533.25,26.76000000000020,42.24000000000000,4467.1,596.49,14.449999999999800,12.030000000000000,4290.49,598.6,40.48000000000050,68.09000000000000,4465.5,568.6,21.86999999999990,40.69999999999990 -678,3599.08,644.98,45.13999999999990,85.24000000000000,3658.58,540.6,22.559999999999900,49.13,4687.35,647.33,63.01999999999950,101.96000000000000,4307.09,697.68,50.32999999999990,92.0,4274.09,621.5,41.10999999999970,71.27000000000000,4149.1,570.87,32.89999999999960,50.13,4300.22,555.95,31.56999999999970,53.68999999999990,4456.85,588.42,42.38999999999940,50.66000000000010,4512.05,580.39,34.13000000000010,48.40000000000000,4053.65,522.32,17.559999999999900,34.040000000000000,3835.57,656.01,39.7199999999998,88.31000000000010,4451.64,612.65,48.32999999999990,79.24000000000000,3880.46,612.18,38.690000000000100,71.94000000000010,4358.65,572.07,26.450000000000700,48.63,4128.3,558.55,26.340000000000100,47.680000000000100,3549.43,596.12,45.13000000000010,86.77000000000000,3531.37,532.45,27.95000000000030,48.57999999999990,3640.77,508.26,20.42999999999980,36.53000000000000,4513.06,577.96,33.48999999999980,46.52000000000000,2886.12,533.18,26.76000000000020,42.24000000000000,4466.96,596.38,14.460000000000000,12.030000000000000,4289.92,597.94,40.30999999999950,67.88,4464.31,568.97,21.86999999999990,40.69999999999990 -679,3600.25,644.43,45.13999999999990,85.24000000000000,3658.66,540.47,22.51000000000020,49.02000000000000,4687.92,647.84,62.44999999999980,101.45000000000000,4305.03,697.38,50.15000000000060,91.84000000000010,4272.16,621.0,41.09000000000020,71.13,4148.22,570.68,32.840000000000100,50.030000000000100,4300.14,555.19,31.64999999999960,53.559999999999900,4458.76,588.5,42.39999999999960,50.66000000000000,4511.45,579.98,34.13000000000010,48.40000000000000,4055.28,522.22,17.559999999999900,34.040000000000000,3832.51,655.49,39.659999999999900,88.16000000000000,4449.03,612.44,48.32999999999990,79.2399999999999,3880.65,611.76,38.71000000000000,71.75,4358.02,571.47,26.459999999999100,48.63,4128.6,558.21,26.36999999999990,47.51000000000000,3549.87,595.76,45.059999999999900,86.57000000000010,3531.54,532.3,27.94999999999980,48.59000000000000,3642.45,508.04,20.44000000000010,36.53000000000000,4510.22,577.22,33.30000000000020,46.47000000000000,2887.07,533.1,26.759999999999800,42.24000000000000,4466.83,596.27,14.449999999999800,12.020000000000000,4289.35,597.29,40.1299999999992,67.66000000000010,4463.12,569.35,21.88000000000010,40.69999999999990 -680,3601.42,643.88,45.13999999999990,85.24000000000000,3658.74,540.33,22.47000000000030,48.93000000000000,4688.49,648.35,61.88000000000010,100.94000000000000,4302.96,697.08,49.97999999999960,91.67000000000000,4270.23,620.5,41.07000000000060,71.0,4147.34,570.49,32.76999999999950,49.93000000000000,4300.06,554.43,31.729999999999600,53.430000000000100,4460.68,588.58,42.39999999999960,50.67000000000000,4510.85,579.57,34.1299999999992,48.40000000000000,4056.91,522.12,17.559999999999900,34.040000000000000,3829.44,654.96,39.59999999999990,88.02000000000000,4446.42,612.23,48.32999999999990,79.23000000000000,3880.85,611.35,38.720000000000300,71.55000000000000,4357.4,570.87,26.46000000000000,48.63,4126.93,557.9,26.40999999999990,47.35000000000000,3550.31,595.4,44.98000000000000,86.37,3531.72,532.15,27.95000000000030,48.59000000000000,3644.14,507.81,20.43000000000030,36.53000000000000,4507.39,576.48,33.099999999999500,46.41000000000000,2888.01,533.03,26.759999999999800,42.24000000000000,4466.69,596.15,14.460000000000000,12.030000000000000,4288.79,596.63,39.9399999999996,67.45000000000010,4461.94,569.72,21.8700000000008,40.69999999999990 -681,3602.59,643.34,45.13999999999990,85.23000000000000,3658.82,540.2,22.41999999999960,48.82999999999990,4689.07,648.87,61.30000000000020,100.42000000000000,4300.9,696.77,49.8100000000004,91.52000000000000,4268.29,620.0,41.0600000000004,70.87,4146.46,570.3,32.71000000000000,49.83000000000000,4299.98,553.68,31.82000000000060,53.29000000000010,4462.6,588.66,42.39999999999960,50.67000000000010,4510.25,579.15,34.13000000000010,48.40000000000000,4058.54,522.02,17.559999999999900,34.040000000000000,3826.38,654.43,39.52999999999980,87.8900000000001,4443.81,612.01,48.32999999999990,79.24000000000000,3881.04,610.94,38.74000000000020,71.33999999999990,4356.77,570.27,26.459999999999100,48.64000000000000,4125.26,557.59,26.46000000000000,47.18999999999990,3550.75,595.04,44.909999999999900,86.17000000000010,3531.89,532.0,27.95000000000030,48.59000000000000,3645.83,507.58,20.43000000000030,36.53000000000000,4504.55,575.74,32.909999999999900,46.360000000000000,2888.95,532.95,26.76000000000020,42.24000000000000,4466.56,596.04,14.449999999999800,12.030000000000100,4288.22,595.98,39.76999999999950,67.24000000000000,4460.75,570.1,21.86999999999990,40.69999999999990 -682,3603.76,642.79,45.13999999999990,85.24000000000000,3658.9,540.06,22.36999999999990,48.74000000000000,4689.64,649.38,60.72999999999960,99.91000000000000,4298.83,696.47,49.64000000000030,91.36,4266.36,619.5,41.04000000000000,70.73000000000000,4145.58,570.12,32.64999999999960,49.72000000000000,4299.9,552.92,31.900000000000500,53.15000000000010,4464.52,588.75,42.38999999999940,50.66000000000000,4509.66,578.74,34.11999999999990,48.40000000000000,4060.17,521.92,17.559999999999900,34.04000000000010,3823.32,653.91,39.46000000000000,87.74000000000000,4441.2,611.8,48.32000000000060,79.24000000000000,3881.23,610.53,38.75999999999980,71.14000000000000,4356.15,569.68,26.46000000000000,48.63,4123.59,557.27,26.5,47.04000000000000,3551.19,594.69,44.82999999999990,85.95999999999990,3532.06,531.86,27.95000000000030,48.58000000000000,3647.51,507.35,20.4399999999996,36.54000000000000,4501.72,575.0,32.71000000000000,46.309999999999900,2889.89,532.88,26.76000000000020,42.24000000000000,4466.42,595.92,14.449999999999800,12.030000000000100,4287.65,595.32,39.59000000000020,67.03000000000000,4459.56,570.47,21.8799999999992,40.69999999999990 -683,3604.92,642.24,45.13999999999990,85.24000000000000,3658.98,539.93,22.320000000000200,48.6400000000001,4690.21,649.89,60.159999999999900,99.40000000000000,4296.77,696.17,49.46999999999940,91.19000000000000,4264.43,619.0,41.01999999999950,70.60000000000000,4144.7,569.93,32.57999999999990,49.620000000000000,4299.82,552.17,31.98000000000050,53.01000000000000,4466.43,588.83,42.39999999999960,50.66000000000000,4509.06,578.33,34.11999999999990,48.40000000000000,4061.8,521.82,17.559999999999900,34.040000000000000,3820.25,653.38,39.40000000000010,87.60000000000000,4438.59,611.59,48.31999999999970,79.24000000000000,3881.43,610.11,38.77000000000000,70.94999999999990,4355.53,569.08,26.44999999999980,48.63,4121.92,556.96,26.540000000000000,46.88,3551.63,594.33,44.75,85.76000000000000,3532.23,531.71,27.94999999999980,48.58999999999990,3649.2,507.13,20.43000000000030,36.53000000000000,4498.88,574.25,32.51999999999950,46.26000000000000,2890.83,532.81,26.76000000000020,42.24000000000000,4466.28,593.68,14.460000000000000,12.030000000000100,4287.08,594.67,39.409999999999900,66.81000000000010,4458.38,570.85,21.86999999999990,40.69999999999990 -684,3606.09,641.69,45.13999999999990,85.2399999999999,3659.06,539.79,22.2800000000002,48.54000000000010,4690.78,650.4,59.59000000000020,98.89,4294.7,695.86,49.30000000000020,91.04000000000000,4262.49,618.49,41.0,70.47000000000000,4143.82,569.74,32.52000000000040,49.52000000000000,4299.74,551.41,32.0600000000004,52.88,4468.35,588.91,42.39999999999960,50.67000000000010,4508.46,577.92,34.11999999999990,48.40000000000010,4063.43,521.72,17.559999999999900,34.040000000000000,3817.19,652.86,39.34000000000020,87.46000000000000,4435.98,611.37,48.32000000000060,79.24000000000000,3881.62,609.7,38.79000000000000,70.75,4354.9,568.48,26.46000000000000,48.63,4120.25,556.65,26.579999999999900,46.72000000000000,3552.06,593.97,44.690000000000100,85.56000000000000,3532.4,531.56,27.94999999999980,48.59000000000000,3650.89,506.9,20.43000000000030,36.53000000000000,4496.05,573.51,32.31999999999970,46.21000000000000,2891.77,532.73,26.76000000000020,42.24000000000000,4466.15,591.45,14.450000000000700,12.020000000000000,4286.51,594.01,39.23999999999980,66.60000000000000,4457.19,571.22,21.8700000000008,40.69999999999990 -685,3607.26,641.15,45.13999999999990,85.23000000000000,3659.14,539.66,22.23000000000000,48.440000000000100,4691.36,650.91,59.01000000000020,98.38,4292.64,695.56,49.13000000000010,90.87,4260.56,617.99,40.97999999999960,70.34000000000000,4142.95,569.55,32.44999999999980,49.42000000000010,4299.66,550.65,32.14000000000030,52.75,4470.27,588.99,42.38999999999940,50.67000000000000,4507.86,577.51,34.11999999999990,48.40000000000000,4065.06,521.62,17.559999999999900,34.040000000000000,3814.12,652.33,39.2800000000002,87.31999999999990,4433.36,611.16,48.32999999999990,79.24000000000000,3881.81,609.29,38.809999999999900,70.55000000000010,4354.28,567.88,26.46000000000000,48.63,4118.58,556.34,26.61999999999990,46.559999999999900,3552.5,593.61,44.61000000000010,85.35000000000000,3532.58,531.41,27.95000000000030,48.59000000000000,3652.57,506.67,20.44000000000010,36.53000000000000,4493.21,572.77,32.11999999999990,46.15000000000000,2892.71,532.66,26.759999999999800,42.24000000000000,4466.01,589.21,14.449999999999800,12.030000000000000,4285.95,593.35,39.05000000000020,66.40000000000000,4456.0,571.6,21.88000000000010,40.69999999999990 -686,3608.43,640.6,45.14000000000030,85.24000000000000,3659.22,539.52,22.18000000000030,48.35000000000000,4691.93,651.42,58.4399999999996,97.87,4290.57,695.26,48.96000000000000,90.71000000000000,4258.63,617.49,40.96000000000000,70.20000000000010,4142.07,569.36,32.39000000000030,49.309999999999900,4298.87,550.32,32.040000000000000,52.65000000000000,4472.18,589.08,42.39999999999960,50.66000000000000,4507.26,577.1,34.11999999999990,48.40000000000000,4066.69,521.52,17.559999999999900,34.040000000000000,3811.06,651.81,39.21000000000000,87.18000000000010,4430.75,610.95,48.32999999999990,79.24000000000000,3882.01,608.87,38.81999999999970,70.35000000000000,4353.65,567.28,26.46000000000000,48.63,4116.91,556.03,26.65999999999990,46.40000000000000,3552.94,593.25,44.54000000000000,85.15000000000000,3532.75,531.27,27.94999999999980,48.58000000000000,3654.26,506.45,20.42999999999980,36.53000000000000,4490.38,572.03,31.92000000000010,46.10000000000000,2893.65,532.58,26.759999999999800,42.24000000000000,4465.88,586.97,14.449999999999800,12.030000000000000,4285.38,592.7,38.86999999999990,66.18000000000000,4454.82,571.97,21.86999999999990,40.69999999999990 -687,3609.6,640.05,45.13999999999990,85.24000000000000,3659.29,539.38,22.15000000000010,48.26000000000000,4692.5,651.94,57.86999999999990,97.34999999999990,4288.51,694.96,48.77999999999980,90.55000000000000,4256.69,616.99,40.95000000000070,70.06999999999990,4141.19,569.17,32.32000000000060,49.21000000000000,4298.08,549.99,31.94000000000050,52.55000000000000,4473.61,589.29,42.39000000000030,50.81000000000010,4506.66,576.69,34.13000000000010,48.40000000000000,4068.32,521.42,17.559999999999900,34.04000000000010,3807.99,651.28,39.15000000000010,87.04000000000010,4428.14,610.74,48.32999999999990,79.23000000000000,3882.2,608.46,38.83000000000040,70.15000000000000,4353.03,566.68,26.46000000000000,48.63,4115.24,555.72,26.69999999999980,46.24000000000000,3553.38,592.89,44.46000000000000,84.95000000000010,3532.92,531.12,27.94999999999980,48.59000000000000,3655.95,506.22,20.43000000000030,36.53000000000000,4487.54,571.28,31.73000000000050,46.05000000000010,2894.6,532.51,26.76000000000020,42.24000000000000,4464.17,586.68,14.449999999999800,12.030000000000100,4284.81,592.04,38.69999999999980,65.97000000000000,4453.63,572.35,21.86999999999990,40.69999999999990 -688,3610.76,639.51,45.13999999999990,85.23000000000000,3659.37,539.25,22.09999999999990,48.15000000000000,4693.08,652.45,57.29000000000000,96.83999999999990,4286.44,694.65,48.6200000000008,90.39,4254.76,616.49,40.92999999999940,69.93000000000000,4140.31,568.99,32.25999999999930,49.10000000000000,4297.29,549.66,31.840000000000100,52.450000000000000,4475.04,589.5,42.36999999999990,50.950000000000000,4506.06,576.28,34.1299999999992,48.40000000000000,4069.95,521.32,17.5600000000004,34.040000000000000,3804.93,650.75,39.08000000000040,86.90000000000000,4425.53,610.52,48.32999999999990,79.24000000000000,3882.39,608.05,38.84999999999990,69.95000000000010,4352.41,566.08,26.44999999999980,48.63,4113.57,555.41,26.74000000000070,46.08000000000000,3553.82,592.54,44.38999999999990,84.74000000000000,3533.09,530.97,27.94999999999980,48.58999999999990,3657.63,505.99,20.44000000000010,36.53000000000000,4484.71,570.54,31.529999999999700,46.0,2895.54,532.44,26.76000000000020,42.239999999999900,4462.46,586.4,14.449999999999800,12.030000000000000,4284.24,591.39,38.52000000000040,65.75,4452.45,572.72,21.86999999999990,40.69999999999990 -689,3611.93,638.96,45.14000000000030,85.23000000000000,3659.45,539.11,22.050000000000200,48.059999999999900,4693.65,652.96,56.720000000000300,96.32999999999990,4284.37,694.35,48.44999999999980,90.23000000000000,4252.83,615.99,40.909999999999900,69.80000000000000,4139.43,568.8,32.19999999999980,49.0,4296.5,549.33,31.73999999999980,52.34999999999990,4476.47,589.71,42.35999999999970,51.09999999999990,4505.46,575.87,34.13000000000010,48.40000000000000,4071.58,521.22,17.559999999999900,34.040000000000000,3801.86,650.23,39.02000000000000,86.76000000000000,4422.92,610.31,48.31999999999970,79.24000000000000,3882.59,607.64,38.85999999999970,69.75,4351.78,565.48,26.46000000000000,48.63,4111.9,555.1,26.78000000000070,45.92000000000000,3554.26,592.18,44.309999999999900,84.54000000000010,3533.26,530.82,27.94999999999980,48.58999999999990,3659.32,505.76,20.42999999999980,36.53000000000000,4481.87,569.8,31.340000000000100,45.950000000000000,2896.48,532.36,26.759999999999800,42.24000000000000,4460.75,586.12,14.460000000000000,12.020000000000000,4283.67,590.73,38.34000000000020,65.54000000000000,4451.26,573.1,21.86999999999990,40.68999999999990 -690,3613.1,638.41,45.13999999999990,85.24000000000000,3659.53,538.98,22.0,47.96000000000000,4694.22,653.47,56.14999999999960,95.81999999999990,4282.31,694.05,48.27999999999980,90.06000000000010,4250.89,615.49,40.88999999999940,69.67000000000000,4138.55,568.61,32.13000000000010,48.90000000000000,4295.71,549.0,31.640000000000300,52.24000000000000,4477.89,589.92,42.35999999999970,51.24000000000000,4504.86,575.45,34.13000000000010,48.40000000000000,4073.21,521.12,17.559999999999900,34.040000000000000,3798.8,649.7,38.96000000000000,86.62,4420.31,610.1,48.31999999999970,79.24000000000000,3882.78,607.22,38.87999999999970,69.56000000000000,4351.16,564.88,26.46000000000000,48.63,4110.24,554.79,26.8100000000004,45.76000000000000,3554.69,591.82,44.23999999999980,84.33999999999990,3533.44,530.68,27.94999999999980,48.58000000000000,3661.01,505.54,20.42999999999980,36.53000000000000,4477.7,569.06,31.150000000000500,45.8900000000001,2897.42,532.29,26.759999999999800,42.24000000000000,4459.05,585.83,14.449999999999800,12.030000000000000,4283.11,590.08,38.15000000000060,65.32999999999990,4450.07,573.47,21.86999999999990,40.69999999999990 -691,3614.27,637.86,45.13999999999990,85.24000000000000,3659.61,538.84,21.96000000000000,47.870000000000000,4694.79,653.98,55.57999999999990,95.31000000000000,4280.24,693.74,48.11000000000060,89.91000000000000,4248.96,614.99,40.86999999999990,69.53000000000000,4137.67,568.42,32.06999999999970,48.80000000000010,4294.92,548.67,31.540000000000000,52.14000000000000,4479.32,590.13,42.35000000000040,51.38,4504.26,575.04,34.13000000000010,48.40000000000010,4074.84,521.03,17.559999999999900,34.04000000000010,3795.74,649.18,38.89000000000030,86.47000000000000,4417.7,609.88,48.32000000000060,79.24000000000000,3882.97,606.81,38.90000000000010,69.36000000000000,4350.53,564.28,26.46000000000000,48.63,4108.57,554.47,26.850000000000400,45.610000000000000,3555.13,591.46,44.17000000000010,84.14000000000000,3533.61,530.53,27.94999999999980,48.59000000000000,3662.68,505.54,20.44000000000010,36.53000000000000,4473.53,568.32,30.94999999999980,45.83999999999990,2898.36,532.21,26.759999999999800,42.24000000000000,4457.34,585.55,14.449999999999800,12.020000000000100,4282.54,589.42,37.98000000000050,65.12,4448.89,573.85,21.86999999999990,40.68999999999990 -692,3615.44,637.32,45.13999999999990,85.2299999999999,3659.69,538.71,21.90999999999990,47.77000000000000,4695.37,654.5,55.0,94.79000000000000,4278.18,693.44,47.92999999999940,89.7399999999999,4247.03,614.49,40.85000000000040,69.40000000000000,4136.79,568.23,32.01000000000020,48.69999999999990,4294.13,548.34,31.4399999999996,52.04000000000000,4480.75,590.34,42.32999999999990,51.53000000000000,4503.66,574.63,34.13000000000010,48.40000000000000,4076.47,520.93,17.5600000000004,34.04000000000010,3792.67,648.65,38.82999999999990,86.34000000000000,4416.25,609.14,48.31999999999970,79.24000000000000,3883.17,606.4,38.909999999999900,69.15000000000000,4349.91,563.68,26.46000000000000,48.63,4106.9,554.16,26.890000000000300,45.450000000000000,3555.57,591.1,44.08999999999970,83.93999999999990,3533.78,530.38,27.94999999999980,48.59000000000000,3664.36,505.54,20.42999999999980,36.53000000000000,4469.35,567.57,30.75999999999930,45.79000000000000,2899.3,532.14,26.759999999999800,42.24000000000000,4455.63,585.26,14.460000000000000,12.030000000000000,4281.97,588.77,37.80000000000020,64.90000000000000,4447.7,574.22,21.86999999999990,40.69999999999990 -693,3616.61,636.77,45.12999999999970,85.23000000000000,3659.77,538.57,21.860000000000100,47.67000000000000,4695.94,655.01,54.43000000000030,94.28000000000000,4276.11,693.14,47.77000000000040,89.58000000000000,4245.09,613.98,40.84000000000020,69.27000000000000,4135.92,568.04,31.93000000000030,48.60000000000000,4293.34,548.01,31.340000000000100,51.940000000000100,4482.17,590.56,42.32999999999990,51.66000000000010,4503.06,574.22,34.1299999999992,48.40000000000000,4078.1,520.83,17.550000000000200,34.040000000000000,3789.61,648.12,38.75999999999980,86.20000000000010,4414.8,608.4,48.31999999999970,79.24000000000000,3883.36,605.98,38.92999999999980,68.96000000000000,4349.29,563.08,26.44999999999980,48.64000000000000,4105.23,553.85,26.93000000000030,45.29000000000000,3556.01,590.74,44.02000000000000,83.74000000000000,3533.95,530.23,27.95000000000030,48.59000000000000,3666.03,505.54,20.4399999999996,36.53000000000000,4465.18,566.83,30.55999999999950,45.74000000000000,2900.24,532.07,26.76000000000020,42.239999999999900,4453.93,584.98,14.449999999999800,12.030000000000000,4281.4,588.11,37.6200000000008,64.68999999999990,4446.51,574.59,21.86999999999990,40.69999999999990 -694,3617.77,636.22,45.13999999999990,85.24000000000000,3659.85,538.44,21.809999999999900,47.569999999999900,4696.51,655.52,53.85999999999970,93.77000000000000,4274.05,692.83,47.59000000000020,89.43000000000000,4243.16,613.48,40.81999999999970,69.14000000000000,4135.04,567.86,31.86999999999990,48.49000000000000,4292.56,547.68,31.219999999999300,51.84000000000000,4483.6,590.77,42.31999999999970,51.81000000000010,4502.46,573.81,34.13000000000010,48.40000000000010,4079.73,520.73,17.549999999999700,34.040000000000000,3786.54,647.6,38.69999999999980,86.05000000000000,4413.35,607.66,48.32999999999990,79.24000000000000,3883.55,605.57,38.94999999999980,68.76000000000000,4348.66,562.49,26.46000000000000,48.63,4103.56,553.54,26.969999999999300,45.13,3556.45,590.39,43.940000000000100,83.53000000000000,3534.12,530.09,27.95000000000030,48.57999999999990,3667.71,505.54,20.42999999999980,36.53000000000000,4461.01,566.09,30.35999999999970,45.68000000000000,2901.18,531.99,26.76000000000020,42.24000000000000,4452.22,584.69,14.449999999999800,12.030000000000000,4280.83,587.45,37.44999999999980,64.49000000000000,4445.33,574.97,21.86999999999990,40.69999999999990 -695,3618.94,635.67,45.13999999999990,85.24000000000000,3659.93,538.3,21.770000000000000,47.48000000000000,4697.08,656.03,53.29000000000000,93.26,4271.98,692.53,47.43000000000030,89.26000000000000,4241.23,612.98,40.79000000000090,69.0,4134.16,567.67,31.8100000000004,48.39000000000000,4291.77,547.35,31.11999999999990,51.74000000000000,4485.03,590.98,42.30000000000020,51.94999999999990,4501.86,573.4,34.13000000000010,48.40000000000000,4081.36,520.63,17.549999999999700,34.040000000000000,3783.48,647.07,38.63999999999990,85.92000000000000,4411.9,606.92,48.32999999999990,79.24000000000000,3883.75,605.16,38.96000000000000,68.56000000000010,4348.04,561.89,26.44999999999980,48.63,4101.89,553.23,27.00999999999930,44.97000000000000,3555.31,590.04,43.86999999999990,83.34000000000000,3534.3,529.94,27.94999999999980,48.58999999999990,3669.39,505.54,20.43000000000030,36.53000000000000,4456.83,565.35,30.18000000000030,45.63,2902.13,531.92,26.759999999999800,42.24000000000000,4450.51,584.41,14.460000000000000,12.030000000000100,4279.23,586.88,37.27000000000040,64.27000000000000,4444.14,575.34,21.86999999999990,40.69999999999990 -696,3620.11,635.13,45.13999999999990,85.23000000000000,3660.01,538.17,21.7199999999998,47.38,4697.66,656.54,52.71000000000000,92.75,4269.92,692.23,47.25,89.10000000000000,4239.29,612.48,40.77999999999980,68.87,4133.28,567.48,31.74000000000070,48.29000000000000,4290.98,547.02,31.02000000000040,51.64000000000000,4486.46,591.19,42.29000000000000,52.09999999999990,4501.26,572.99,34.13000000000010,48.40000000000000,4082.99,520.53,17.550000000000200,34.04000000000010,3780.41,646.55,38.57999999999990,85.7700000000001,4410.45,606.18,48.32999999999990,79.24000000000000,3883.94,604.74,38.98000000000000,68.37,4345.72,561.62,26.44999999999980,48.63,4100.22,552.92,27.050000000000200,44.81000000000010,3554.18,589.7,43.79000000000000,83.14000000000000,3534.47,529.79,27.95000000000030,48.59000000000000,3671.06,505.54,20.42999999999980,36.53000000000000,4452.66,564.6,29.98000000000050,45.59000000000000,2903.07,531.84,26.759999999999800,42.24000000000000,4448.81,584.12,14.449999999999800,12.030000000000000,4277.64,586.31,37.07999999999990,64.06000000000010,4442.95,575.72,21.86999999999990,40.69999999999990 -697,3621.28,634.58,45.13999999999990,85.2299999999999,3660.09,538.03,21.67000000000010,47.29000000000010,4698.23,657.06,52.14000000000030,92.23000000000000,4267.85,691.93,47.08999999999920,88.93000000000010,4237.36,611.98,40.76000000000020,68.73000000000000,4132.4,567.29,31.68000000000030,48.190000000000100,4290.19,546.69,30.92000000000010,51.54000000000000,4487.88,591.4,42.29000000000000,52.24000000000000,4500.66,572.58,34.13000000000010,48.40000000000000,4082.63,520.43,17.550000000000200,34.04000000000010,3777.35,646.02,38.51000000000020,85.64000000000000,4409.01,605.44,48.31999999999970,79.2399999999999,3884.13,604.33,38.98999999999980,68.16000000000000,4343.4,561.36,26.450000000000700,48.63,4098.55,552.61,27.090000000000100,44.65000000000000,3553.04,589.36,43.73000000000000,82.93000000000000,3534.64,529.64,27.95000000000030,48.59000000000000,3672.74,505.54,20.43000000000030,36.53000000000000,4448.49,563.86,29.78000000000070,45.53000000000000,2904.01,531.77,26.759999999999800,42.24000000000000,4447.1,583.84,14.449999999999800,12.030000000000000,4276.04,585.73,36.89999999999960,63.85000000000000,4441.44,575.39,21.8700000000008,40.700000000000000 -698,3622.45,634.03,45.14000000000030,85.24000000000000,3660.16,537.89,21.63000000000010,47.190000000000100,4698.8,657.57,51.56999999999970,91.71999999999990,4265.79,691.62,46.909999999999900,88.78000000000000,4235.43,611.48,40.73999999999980,68.60000000000000,4131.52,567.1,31.61999999999990,48.09000000000000,4289.4,546.36,30.82000000000060,51.43000000000000,4489.31,591.61,42.26999999999950,52.39000000000000,4497.85,572.18,34.1299999999992,48.40000000000010,4082.27,520.33,17.549999999999700,34.040000000000000,3774.28,645.5,38.44999999999980,85.49000000000000,4407.56,604.7,48.31999999999970,79.24000000000000,3884.33,603.92,39.0,67.96000000000000,4341.08,561.09,26.44999999999980,48.63,4096.88,552.3,27.13000000000010,44.48000000000000,3551.91,589.02,43.65000000000010,82.73000000000000,3534.81,529.5,27.95000000000030,48.59000000000000,3674.41,505.54,20.43000000000030,36.53000000000000,4444.31,563.12,29.58999999999920,45.48000000000000,2904.95,531.7,26.76000000000020,42.24000000000000,4445.39,583.55,14.460000000000000,12.030000000000100,4274.44,585.16,36.720000000000300,63.63,4439.93,575.07,21.86999999999990,40.68999999999990 -699,3623.61,633.48,45.13999999999990,85.24000000000000,3659.14,537.57,21.579999999999900,47.09999999999990,4699.37,658.08,51.0,91.20999999999990,4262.64,691.69,46.92000000000010,88.77000000000000,4233.49,610.98,40.73000000000050,68.46000000000000,4130.64,566.91,31.55999999999950,47.99000000000000,4288.61,546.03,30.72000000000030,51.33000000000000,4490.74,591.82,42.26000000000020,52.53000000000000,4495.03,571.79,34.13000000000010,48.40000000000010,4081.91,520.23,17.550000000000200,34.040000000000000,3771.22,644.97,38.38000000000010,85.35000000000000,4405.66,604.55,48.32999999999990,79.23000000000000,3883.65,603.51,39.02999999999980,67.76000000000000,4338.76,560.83,26.44999999999980,48.63,4095.21,551.99,27.17000000000010,44.319999999999900,3550.77,588.68,43.57999999999990,82.53000000000010,3535.08,529.35,27.809999999999900,48.47000000000000,3676.09,505.54,20.42999999999980,36.53000000000000,4440.14,562.38,29.38999999999940,45.42000000000000,2905.89,531.62,26.76000000000020,42.24000000000000,4443.68,583.27,14.460000000000000,12.030000000000000,4272.84,584.59,36.55000000000020,63.42000000000000,4438.42,574.74,21.86999999999990,40.700000000000000 -700,3624.78,632.94,45.13999999999990,85.2299999999999,3658.12,537.25,21.540000000000000,47.0,4699.95,658.59,50.42000000000010,90.69999999999990,4259.5,691.75,46.909999999999900,88.78000000000000,4231.56,610.48,40.71000000000000,68.32999999999990,4129.77,566.73,31.479999999999600,47.88,4287.82,545.7,30.61999999999990,51.22999999999990,4492.17,592.04,42.25,52.67000000000010,4492.22,571.4,34.13000000000010,48.40000000000000,4081.55,520.13,17.550000000000200,34.040000000000000,3768.15,644.44,38.31999999999970,85.21999999999990,4403.76,604.39,48.32999999999990,79.24000000000000,3882.98,603.09,39.04000000000000,67.56999999999990,4336.44,560.56,26.450000000000700,48.63000000000010,4093.54,551.67,27.21000000000000,44.17000000000010,3549.64,588.34,43.5,82.32999999999990,3535.35,529.21,27.67000000000010,48.33999999999990,3677.76,505.54,20.4399999999996,36.53000000000000,4435.97,561.64,29.1899999999996,45.370000000000000,2906.83,531.55,26.76000000000020,42.24000000000000,4441.98,582.99,14.450000000000700,12.020000000000000,4271.24,584.01,36.36999999999990,63.21000000000000,4436.9,574.41,21.88000000000010,40.700000000000000 -701,3625.95,632.39,45.14000000000030,85.23000000000000,3657.1,536.93,21.49000000000020,46.90000000000010,4700.52,659.1,49.849999999999500,90.18999999999990,4256.35,691.81,46.92000000000010,88.78000000000010,4229.63,609.98,40.68000000000030,68.19999999999990,4128.89,566.54,31.42000000000010,47.77000000000000,4287.03,545.37,30.52000000000040,51.13,4493.59,592.25,42.25,52.809999999999900,4489.41,571.0,34.13000000000010,48.40000000000000,4081.19,520.03,17.549999999999700,34.04000000000010,3765.09,643.92,38.25999999999980,85.07000000000010,4401.87,604.23,48.31999999999970,79.24000000000000,3882.31,602.68,39.05000000000020,67.37,4334.12,560.3,26.44999999999980,48.63,4091.87,551.36,27.25,44.01000000000000,3548.5,588.0,43.42999999999980,82.12,3535.62,529.07,27.540000000000000,48.20999999999990,3679.44,505.54,20.42999999999980,36.53000000000000,4431.8,560.89,29.0,45.32000000000010,2907.77,531.48,26.76000000000020,42.24000000000000,4440.27,582.7,14.449999999999800,12.030000000000000,4269.64,583.44,36.1899999999996,63.0,4435.39,574.08,21.86999999999990,40.69999999999990 -702,3627.12,631.84,45.14000000000030,85.24000000000000,3656.08,536.61,21.44000000000010,46.80000000000000,4701.09,659.62,49.27999999999980,89.67000000000000,4253.21,691.88,46.909999999999900,88.77000000000000,4227.69,609.47,40.67000000000010,68.06999999999990,4128.01,566.35,31.35999999999970,47.67000000000000,4286.24,545.04,30.42000000000010,51.030000000000100,4495.02,592.46,42.22999999999960,52.95999999999990,4486.6,570.61,34.1299999999992,48.40000000000000,4080.83,519.93,17.5600000000004,34.04000000000010,3762.03,643.39,38.1899999999996,84.93000000000010,4399.97,604.07,48.32999999999990,79.2399999999999,3881.63,602.27,39.06999999999970,67.16000000000000,4331.8,560.03,26.44999999999980,48.63,4090.21,551.05,27.290000000000000,43.85000000000000,3547.37,587.66,43.34999999999990,81.92000000000010,3535.89,528.92,27.40000000000010,48.09000000000000,3681.11,505.54,20.44000000000010,36.53000000000000,4427.62,560.15,28.8100000000004,45.27000000000000,2908.72,531.4,26.76000000000020,42.24000000000000,4438.56,582.42,14.460000000000000,12.030000000000100,4268.04,582.86,36.01000000000020,62.79000000000000,4433.88,573.76,21.86999999999990,40.700000000000000 -703,3628.29,631.29,45.13999999999990,85.24000000000000,3655.06,536.29,21.38999999999990,46.71000000000000,4701.66,660.13,48.71000000000000,89.16000000000000,4250.07,691.94,46.909999999999900,88.78000000000000,4225.76,608.97,40.64999999999960,67.93999999999990,4127.13,566.16,31.290000000000000,47.57000000000010,4285.45,544.71,30.32000000000060,50.93000000000000,4496.45,592.67,42.220000000000300,53.10000000000000,4483.79,570.21,34.13000000000010,48.40000000000000,4080.47,519.83,17.559999999999900,34.040000000000000,3758.96,642.87,38.13000000000010,84.79000000000000,4398.07,603.91,48.32999999999990,79.24000000000000,3880.96,601.85,39.07999999999990,66.97000000000000,4329.48,559.77,26.450000000000700,48.63,4088.54,550.74,27.329999999999900,43.68999999999990,3546.23,587.31,43.2800000000002,81.73000000000000,3536.16,528.78,27.26000000000020,47.96000000000000,3682.79,505.54,20.42999999999980,36.53000000000000,4423.45,559.41,28.610000000000600,45.22000000000000,2909.66,531.33,26.76000000000020,42.24000000000000,4436.86,582.13,14.450000000000700,12.030000000000000,4266.44,582.29,35.83000000000080,62.58000000000000,4432.37,573.43,21.86999999999990,40.700000000000000 -704,3629.45,630.75,45.14000000000030,85.23000000000000,3654.03,535.97,21.34999999999990,46.610000000000000,4702.24,660.64,48.13000000000010,88.65000000000000,4246.92,692.0,46.92000000000010,88.78000000000000,4223.83,608.47,40.63000000000010,67.80000000000000,4126.25,565.97,31.229999999999600,47.47000000000000,4284.66,544.38,30.22000000000030,50.83000000000000,4497.88,592.88,42.21000000000000,53.25,4480.98,569.82,34.13000000000010,48.40000000000000,4080.11,519.73,17.559999999999900,34.040000000000000,3755.9,642.34,38.059999999999900,84.65000000000000,4396.18,603.76,48.31999999999970,79.24000000000000,3880.29,601.44,39.09999999999990,66.77000000000000,4327.15,559.5,26.46000000000000,48.64000000000000,4086.87,550.43,27.36999999999990,43.530000000000100,3545.1,586.97,43.20000000000030,81.52000000000000,3536.42,528.64,27.13000000000010,47.83000000000000,3684.46,505.54,20.44000000000010,36.53000000000000,4419.28,558.67,28.40999999999990,45.16000000000010,2910.6,531.25,26.76000000000020,42.24000000000000,4435.15,581.85,14.450000000000700,12.030000000000000,4264.84,581.72,35.659999999999900,62.360000000000000,4430.86,573.1,21.86999999999990,40.69999999999990 -705,3630.62,630.2,45.14000000000030,85.24000000000000,3653.01,535.65,21.299999999999700,46.51000000000000,4702.81,661.15,47.55999999999950,88.14000000000000,4243.78,692.06,46.909999999999900,88.78000000000010,4221.89,607.97,40.61999999999990,67.67000000000000,4125.37,565.78,31.17000000000010,47.370000000000000,4283.87,544.05,30.11999999999990,50.73000000000000,4499.3,593.09,42.19999999999980,53.39000000000000,4478.16,569.43,34.13000000000010,48.40000000000010,4079.75,519.63,17.5600000000004,34.040000000000000,3752.83,641.81,38.0,84.5200000000001,4394.28,603.6,48.32999999999990,79.24000000000000,3879.61,601.03,39.11999999999990,66.57000000000010,4324.83,559.24,26.46000000000000,48.63,4085.2,550.12,27.40999999999990,43.370000000000000,3543.96,586.63,43.13000000000010,81.32000000000010,3536.69,528.49,26.98999999999980,47.71000000000000,3686.14,505.54,20.43000000000030,36.53000000000000,4415.1,557.92,28.219999999999300,45.120000000000000,2911.54,531.18,26.76000000000020,42.24000000000000,4433.44,581.56,14.460000000000000,12.030000000000100,4263.24,581.14,35.48000000000050,62.15000000000000,4429.34,572.78,21.86999999999990,40.700000000000000 -706,3628.92,629.64,44.9699999999998,84.98000000000000,3651.99,535.33,21.26000000000020,46.41000000000000,4703.38,661.66,46.98999999999980,87.63,4240.63,692.13,46.92000000000010,88.77000000000000,4219.96,607.47,40.60000000000040,67.53000000000000,4124.49,565.59,31.100000000000400,47.27000000000000,4283.08,543.72,30.02000000000040,50.620000000000000,4500.73,593.3,42.19000000000050,53.54000000000010,4475.35,569.03,34.1299999999992,48.40000000000000,4079.39,519.53,17.559999999999900,34.04000000000010,3749.77,641.29,37.940000000000100,84.37,4392.38,603.44,48.32999999999990,79.2399999999999,3878.94,600.62,39.13000000000010,66.37,4322.51,558.98,26.46000000000000,48.63,4083.53,549.81,27.449999999999400,43.21000000000000,3542.83,586.29,43.059999999999900,81.12,3536.96,528.35,26.860000000000100,47.59000000000000,3687.82,505.54,20.42999999999980,36.53000000000000,4410.93,557.18,28.029999999999700,45.06000000000010,2912.48,531.11,26.759999999999800,42.24000000000000,4431.74,581.28,14.449999999999800,12.030000000000000,4261.64,580.57,35.29999999999930,61.93999999999990,4427.83,572.45,21.86999999999990,40.69999999999990 -707,3627.22,629.07,44.80000000000020,84.71999999999990,3650.97,535.01,21.21000000000000,46.31000000000010,4703.95,662.18,46.42000000000010,87.11000000000000,4237.49,692.19,46.909999999999900,88.78000000000000,4218.03,606.97,40.57000000000060,67.40000000000000,4123.62,565.41,31.029999999999700,47.16000000000010,4282.29,543.39,29.92000000000010,50.52000000000000,4502.16,593.52,42.18000000000030,53.67000000000010,4472.54,568.64,34.13000000000010,48.40000000000000,4079.03,519.43,17.559999999999900,34.04000000000010,3746.7,640.76,37.88000000000010,84.23000000000000,4390.49,603.28,48.32000000000060,79.24000000000000,3878.26,600.2,39.14999999999960,66.17000000000000,4320.19,558.71,26.46000000000000,48.63,4081.86,549.5,27.49000000000020,43.05000000000000,3541.69,585.95,42.98999999999980,80.91000000000000,3537.23,528.21,26.7199999999998,47.45999999999990,3689.49,505.54,20.43000000000030,36.53000000000000,4406.76,556.44,27.829999999999900,45.01000000000000,2913.42,531.03,26.759999999999800,42.24000000000000,4430.03,580.99,14.449999999999800,12.030000000000000,4260.04,580.0,35.11999999999990,61.72000000000000,4426.32,572.12,21.86999999999990,40.700000000000000 -708,3625.52,628.51,44.63999999999990,84.46000000000000,3649.95,534.68,21.16000000000030,46.23000000000000,4704.53,662.69,45.84000000000020,86.59999999999990,4234.35,692.25,46.909999999999900,88.78000000000000,4216.09,606.47,40.55999999999950,67.26000000000000,4122.74,565.22,30.97000000000030,47.059999999999900,4281.5,543.05,29.81999999999970,50.430000000000100,4503.58,593.73,42.17000000000010,53.819999999999900,4469.73,568.25,34.13000000000010,48.40000000000000,4078.67,519.33,17.55999999999950,34.040000000000000,3743.64,640.24,37.809999999999900,84.09000000000000,4388.59,603.13,48.32999999999990,79.23000000000000,3877.59,599.79,39.17000000000010,65.97000000000000,4317.87,558.45,26.46000000000000,48.63,4080.19,549.19,27.5300000000002,42.89000000000000,3540.56,585.61,42.909999999999900,80.71000000000000,3537.5,528.06,26.579999999999900,47.34000000000000,3691.17,505.54,20.42999999999980,36.53000000000000,4402.58,555.7,27.640000000000300,44.94999999999990,2914.36,530.96,26.759999999999800,42.24000000000000,4428.32,580.71,14.460000000000000,12.030000000000000,4258.45,579.42,34.93000000000030,61.520000000000100,4424.81,571.8,21.86999999999990,40.700000000000000 -709,3623.82,627.95,44.4699999999998,84.19999999999990,3648.92,534.36,21.11999999999990,46.13,4705.1,663.2,45.26999999999950,86.08999999999990,4231.2,692.32,46.92000000000010,88.77000000000000,4214.16,605.97,40.54000000000000,67.13,4121.86,565.03,30.900000000000500,46.96000000000000,4280.71,542.72,29.72000000000030,50.32999999999990,4505.01,593.94,42.159999999999900,53.95999999999990,4466.92,567.85,34.13000000000010,48.40000000000000,4078.31,519.23,17.559999999999900,34.040000000000000,3740.57,639.71,37.75,83.94999999999990,4386.69,602.97,48.33000000000080,79.24000000000000,3876.92,599.38,39.17999999999980,65.77000000000000,4315.55,558.18,26.46000000000000,48.63,4078.52,548.87,27.570000000000200,42.74000000000000,3539.42,585.27,42.84000000000020,80.51000000000000,3537.77,527.92,26.44000000000010,47.21000000000000,3690.24,505.51,20.43000000000030,36.54000000000000,4398.41,554.96,27.44000000000050,44.90000000000000,2915.3,530.88,26.759999999999800,42.24000000000000,4426.62,580.43,14.449999999999800,12.020000000000100,4256.4,578.79,34.76000000000020,61.30000000000010,4423.29,571.47,21.88000000000010,40.69999999999990 -710,3622.13,627.39,44.29000000000000,83.94000000000010,3647.9,534.04,21.06999999999970,46.030000000000100,4706.26,663.44,45.26999999999950,86.08999999999990,4228.06,692.38,46.909999999999900,88.78000000000000,4212.02,605.76,40.54000000000000,67.04000000000000,4120.98,564.84,30.840000000000100,46.860000000000000,4279.92,542.39,29.60999999999970,50.23000000000000,4506.44,594.15,42.15000000000060,54.110000000000000,4464.11,567.46,34.13000000000010,48.40000000000000,4077.95,519.13,17.5600000000004,34.040000000000000,3737.51,639.19,37.67999999999980,83.80000000000000,4384.8,602.81,48.31999999999970,79.24000000000000,3876.24,598.96,39.20000000000030,65.57999999999990,4313.23,557.92,26.46000000000000,48.63,4076.85,548.56,27.610000000000100,42.58000000000000,3538.29,584.93,42.76000000000020,80.31000000000010,3538.04,527.78,26.300000000000200,47.08000000000000,3689.31,505.49,20.42999999999980,36.53000000000000,4394.24,554.21,27.23999999999980,44.860000000000000,2916.25,530.81,26.76000000000020,42.24000000000000,4424.91,580.14,14.449999999999800,12.030000000000000,4254.36,578.15,34.57999999999990,61.09000000000000,4421.78,571.14,21.86999999999990,40.700000000000000 -711,3620.43,626.82,44.120000000000300,83.68999999999990,3646.88,533.72,21.020000000000000,45.93000000000000,4707.42,663.68,45.26999999999950,86.09000000000000,4224.91,692.44,46.92000000000010,88.78000000000000,4209.89,605.55,40.54000000000000,66.95000000000010,4120.1,564.65,30.779999999999700,46.76000000000000,4279.14,542.06,29.5,50.13000000000010,4507.87,594.36,42.14000000000030,54.25,4461.29,567.06,34.13000000000010,48.40000000000010,4077.8,518.55,17.559999999999900,34.04000000000010,3734.45,638.66,37.61000000000010,83.67000000000010,4382.9,602.65,48.32999999999990,79.24000000000000,3875.57,598.55,39.21000000000000,65.38,4310.91,557.65,26.46000000000000,48.63,4075.18,548.25,27.65000000000010,42.42000000000000,3537.15,584.58,42.690000000000100,80.11000000000000,3538.31,527.63,26.15999999999990,46.96000000000000,3688.38,505.47,20.42999999999980,36.53000000000000,4390.07,553.47,27.050000000000200,44.80000000000000,2917.19,530.74,26.759999999999800,42.24000000000000,4423.2,579.86,14.449999999999800,12.020000000000000,4252.32,577.51,34.400000000000500,60.88,4420.27,570.82,21.86999999999990,40.69999999999990 -712,3618.73,626.26,43.94999999999980,83.43000000000010,3645.86,533.4,20.98000000000000,45.84000000000000,4708.58,663.92,45.27000000000040,86.09000000000000,4221.77,692.51,46.909999999999900,88.77000000000000,4207.75,605.35,40.54000000000000,66.85000000000000,4119.22,564.46,30.71000000000000,46.66000000000000,4278.35,541.73,29.39999999999960,50.03000000000000,4509.29,594.57,42.13000000000010,54.40000000000000,4458.48,566.67,34.13000000000010,48.40000000000010,4077.66,517.96,17.550000000000200,34.040000000000000,3731.38,638.13,37.559999999999900,83.53000000000000,4381.0,602.49,48.32999999999990,79.24000000000000,3874.9,598.14,39.23000000000000,65.18000000000010,4308.59,557.39,26.46000000000000,48.63,4073.51,547.94,27.6899999999996,42.26000000000000,3536.02,584.24,42.61000000000010,79.91000000000000,3538.57,527.49,26.040000000000000,46.83000000000000,3687.45,505.45,20.43000000000030,36.53000000000000,4385.89,552.73,26.85999999999970,44.75,2918.13,530.66,26.759999999999800,42.24000000000000,4421.94,579.51,14.460000000000000,12.030000000000000,4250.28,576.87,34.220000000000300,60.67000000000000,4418.76,570.49,21.86999999999990,40.700000000000000 -713,3617.03,625.7,43.77999999999980,83.17000000000000,3644.84,533.08,20.92999999999980,45.74000000000000,4709.73,664.16,45.27000000000040,86.09000000000000,4218.63,692.57,46.909999999999900,88.78000000000000,4205.61,605.14,40.55000000000020,66.76000000000000,4118.34,564.28,30.64999999999960,46.55000000000010,4277.56,541.4,29.299999999999300,49.930000000000100,4510.72,594.78,42.11999999999990,54.54000000000010,4455.67,566.28,34.13000000000010,48.40000000000000,4077.51,517.37,17.559999999999900,34.040000000000000,3728.32,637.61,37.48999999999980,83.38,4379.11,602.34,48.32000000000060,79.23000000000000,3874.22,597.73,39.25,64.97000000000000,4306.27,557.12,26.459999999999100,48.63,4071.36,547.69,27.67999999999980,42.26000000000000,3534.88,583.9,42.54000000000000,79.71000000000000,3538.84,527.35,25.89999999999960,46.69999999999990,3688.4,505.43,20.42999999999980,36.53000000000000,4381.72,551.99,26.65999999999990,44.68999999999990,2919.07,530.59,26.759999999999800,42.24000000000000,4420.69,579.16,14.450000000000700,12.030000000000100,4248.23,576.23,34.05000000000020,60.46000000000000,4417.25,570.16,21.86999999999990,40.700000000000000 -714,3615.33,625.14,43.61000000000010,82.91000000000000,3643.82,532.76,20.87999999999970,45.64000000000000,4710.89,664.4,45.26999999999950,86.09000000000000,4215.48,692.63,46.91000000000080,88.78000000000000,4203.48,604.94,40.54000000000090,66.66000000000000,4117.47,564.09,30.579999999999900,46.44999999999990,4276.77,541.07,29.19999999999980,49.819999999999900,4512.15,594.99,42.11000000000060,54.68999999999990,4452.86,565.88,34.13000000000010,48.40000000000000,4077.36,516.78,17.559999999999900,34.04000000000010,3725.25,637.08,37.42999999999980,83.25,4377.21,602.18,48.32999999999990,79.24000000000000,3873.55,597.31,39.25999999999980,64.78000000000010,4303.95,556.86,26.46000000000000,48.63,4069.2,547.44,27.69000000000050,42.26000000000000,3533.75,583.56,42.46000000000000,79.5,3539.11,527.2,25.759999999999800,46.58999999999990,3689.35,505.41,20.43000000000030,36.53000000000000,4377.55,551.24,26.46000000000000,44.65000000000000,2920.01,530.51,26.759999999999800,42.24000000000000,4419.43,578.81,14.449999999999800,12.030000000000100,4246.19,575.6,33.8700000000008,60.24000000000000,4415.73,569.84,21.8700000000008,40.69999999999990 -715,3613.63,624.57,43.440000000000100,82.66000000000000,3642.79,532.44,20.840000000000100,45.54000000000000,4712.05,664.65,45.26999999999950,86.08000000000000,4212.34,692.69,46.909999999999900,88.78000000000000,4201.34,604.73,40.54000000000000,66.56999999999990,4116.59,563.9,30.519999999999500,46.35000000000000,4275.98,540.74,29.100000000000400,49.72000000000000,4513.58,595.21,42.09000000000020,54.819999999999900,4450.05,565.49,34.13000000000010,48.40000000000000,4075.61,516.2,17.559999999999900,34.040000000000000,3722.19,636.56,37.36000000000010,83.10000000000000,4375.31,602.02,48.32999999999990,79.24000000000000,3872.88,596.9,39.27000000000000,64.58000000000000,4301.63,556.59,26.46000000000000,48.63,4067.05,547.19,27.67999999999980,42.26000000000000,3532.62,583.22,42.39000000000030,79.30000000000000,3539.38,527.06,25.61999999999990,46.46000000000000,3690.3,505.39,20.42999999999980,36.53000000000000,4373.37,550.5,26.27000000000040,44.59000000000000,2920.95,530.44,26.76000000000020,42.239999999999900,4418.17,578.47,14.460000000000000,12.030000000000000,4244.15,574.96,33.69000000000050,60.03000000000000,4414.22,569.51,21.86999999999990,40.700000000000000 -716,3611.93,624.01,43.2800000000002,82.40000000000000,3641.77,532.12,20.790000000000000,45.450000000000000,4713.21,664.89,45.26999999999950,86.08000000000000,4209.19,692.76,46.92000000000010,88.77000000000000,4199.2,604.52,40.55000000000020,66.48000000000000,4115.71,563.71,30.44999999999980,46.24000000000000,4275.19,540.41,29.0,49.620000000000000,4515.0,595.42,42.09000000000020,54.97000000000000,4447.24,565.1,34.13000000000010,48.40000000000000,4073.87,515.61,17.559999999999900,34.040000000000000,3719.12,636.03,37.30000000000020,82.97000000000000,4373.42,601.86,48.31999999999970,79.24000000000000,3871.68,596.49,39.29000000000000,64.38,4299.31,556.33,26.46000000000000,48.63,4064.89,546.95,27.69000000000010,42.25,3531.48,582.88,42.32000000000020,79.10000000000000,3539.65,526.92,25.48000000000000,46.33000000000000,3691.25,505.37,20.42999999999980,36.53000000000000,4369.2,549.76,26.079999999999900,44.54000000000000,2921.89,530.37,26.76000000000020,42.24000000000000,4416.92,578.12,14.449999999999800,12.030000000000000,4242.11,574.32,33.5,59.819999999999900,4412.71,569.18,21.86999999999990,40.700000000000000 -717,3610.23,623.45,43.11000000000010,82.14000000000000,3640.75,531.8,20.73999999999980,45.35000000000000,4714.37,665.13,45.27000000000040,86.08000000000000,4206.05,692.82,46.909999999999900,88.78000000000000,4197.07,604.32,40.54000000000000,66.38,4114.83,563.52,30.390000000000300,46.14000000000000,4274.4,540.08,28.900000000000500,49.52000000000000,4516.43,595.63,42.07999999999990,55.110000000000000,4444.42,564.7,34.13000000000010,48.40000000000000,4072.12,515.02,17.559999999999900,34.040000000000000,3716.06,635.5,37.24000000000020,82.83000000000000,4371.52,601.7,48.32999999999990,79.24000000000000,3870.48,596.07,39.309999999999900,64.18999999999990,4296.99,556.06,26.46000000000000,48.63000000000010,4062.73,546.7,27.69000000000010,42.26000000000000,3530.35,582.54,42.24000000000020,78.89000000000000,3539.92,526.77,25.340000000000100,46.21000000000000,3692.2,505.34,20.43000000000030,36.54000000000000,4364.78,549.39,26.079999999999900,44.54000000000000,2922.83,530.29,26.76000000000020,42.24000000000000,4415.66,577.77,14.449999999999800,12.030000000000000,4240.06,573.68,33.32999999999990,59.610000000000000,4409.83,568.81,21.86999999999990,40.700000000000000 -718,3608.53,622.89,42.9399999999996,81.88,3639.73,531.47,20.69999999999980,45.26000000000000,4715.53,665.37,45.27000000000040,86.08000000000000,4202.91,692.88,46.909999999999900,88.78000000000000,4194.93,604.11,40.54999999999930,66.28000000000000,4113.95,563.33,30.329999999999900,46.04000000000000,4273.61,539.75,28.800000000000200,49.42000000000000,4517.86,595.84,42.0600000000004,55.26000000000000,4441.61,564.31,34.13000000000010,48.40000000000010,4070.38,514.43,17.549999999999700,34.04000000000010,3712.99,634.98,37.18000000000030,82.68000000000000,4369.62,601.55,48.32999999999990,79.23000000000000,3869.28,595.66,39.31999999999970,63.98000000000000,4294.67,555.8,26.46000000000000,48.63,4060.58,546.45,27.68000000000030,42.26000000000000,3529.21,582.2,42.17000000000010,78.68999999999990,3540.19,526.63,25.21000000000000,46.08000000000000,3693.15,505.32,20.44000000000010,36.53000000000000,4360.37,549.02,26.06999999999970,44.54000000000000,2923.78,530.22,26.759999999999800,42.24000000000000,4414.4,577.43,14.450000000000700,12.020000000000100,4238.02,573.05,33.14999999999960,59.3900000000001,4406.96,568.44,21.86999999999990,40.69999999999990 -719,3606.83,622.32,42.77000000000000,81.63,3638.71,531.15,20.65000000000010,45.16000000000000,4716.68,665.61,45.26999999999950,86.08000000000000,4199.76,692.95,46.909999999999900,88.77000000000000,4192.79,603.91,40.55000000000020,66.18000000000010,4113.07,563.15,30.26000000000020,45.930000000000100,4272.82,539.42,28.700000000000700,49.32000000000010,4519.28,596.05,42.0600000000004,55.40000000000010,4438.8,563.91,34.13000000000010,48.40000000000000,4068.63,513.85,17.559999999999900,34.040000000000000,3709.93,634.45,37.11000000000010,82.55000000000000,4367.73,601.39,48.32000000000060,79.24000000000000,3868.08,595.25,39.34000000000020,63.78000000000000,4292.35,555.53,26.46000000000000,48.64000000000000,4058.42,546.2,27.69000000000010,42.26000000000000,3528.08,581.86,42.09000000000020,78.49000000000000,3540.46,526.49,25.070000000000200,45.950000000000000,3694.1,505.3,20.44000000000010,36.53000000000000,4355.95,548.66,26.079999999999900,44.54000000000010,2924.72,530.14,26.76000000000020,42.24000000000000,4413.14,577.08,14.460000000000000,12.030000000000000,4235.98,572.41,32.970000000000300,59.180000000000100,4404.08,568.07,21.86999999999990,40.69999999999990 -720,3605.13,621.76,42.59999999999990,81.37,3637.69,530.83,20.59999999999990,45.059999999999900,4717.84,665.85,45.26999999999950,86.09000000000000,4196.62,693.01,46.909999999999900,88.78000000000000,4190.66,603.7,40.54000000000000,66.08999999999990,4112.19,562.96,30.200000000000700,45.82999999999990,4272.03,539.09,28.600000000000400,49.21999999999990,4520.71,596.26,42.05000000000020,55.55000000000000,4435.99,563.52,34.13000000000010,48.40000000000000,4066.88,513.26,17.559999999999900,34.040000000000000,3706.87,633.93,37.04000000000000,82.40000000000010,4365.83,601.23,48.32999999999990,79.24000000000000,3866.88,594.83,39.34999999999990,63.58999999999990,4290.03,555.27,26.46000000000000,48.63,4056.26,545.95,27.6899999999996,42.26000000000000,3526.94,581.51,42.02000000000000,78.30000000000000,3540.72,526.34,24.94000000000010,45.82999999999990,3695.06,505.28,20.42999999999980,36.53000000000000,4351.54,548.29,26.06999999999970,44.54000000000010,2925.66,530.07,26.76000000000020,42.239999999999900,4411.89,576.73,14.449999999999800,12.030000000000000,4233.94,571.77,32.790000000000000,58.97000000000000,4401.2,567.69,21.86999999999990,40.69999999999990 -721,3603.43,621.2,42.43000000000030,81.1099999999999,3636.66,530.51,20.559999999999900,44.97000000000000,4719.0,666.09,45.27000000000040,86.08999999999990,4193.47,693.07,46.92000000000010,88.78000000000000,4188.52,603.49,40.54999999999930,66.0,4111.31,562.77,30.13999999999940,45.73000000000000,4271.24,538.76,28.5,49.120000000000000,4522.14,596.47,42.04000000000000,55.68999999999990,4433.18,563.13,34.13000000000010,48.40000000000000,4065.14,512.67,17.550000000000200,34.04000000000010,3704.03,633.53,36.98999999999980,82.26000000000000,4363.93,601.07,48.32999999999990,79.2399999999999,3865.68,594.42,39.370000000000300,63.39000000000000,4287.71,555.01,26.46000000000000,48.63,4054.11,545.7,27.69000000000010,42.26000000000000,3525.81,581.17,41.940000000000100,78.09000000000000,3540.99,526.2,24.800000000000200,45.70999999999990,3696.01,505.26,20.42999999999980,36.53000000000000,4347.12,547.92,26.06999999999970,44.54000000000010,2926.6,530.0,26.76000000000020,42.24000000000000,4410.63,576.38,14.449999999999800,12.030000000000000,4231.89,571.13,32.61999999999990,58.76000000000000,4398.33,567.32,21.86999999999990,40.69999999999990 -722,3601.73,620.63,42.25999999999980,80.86000000000000,3635.64,530.19,20.51000000000020,44.86999999999990,4720.16,666.33,45.27000000000040,86.08999999999990,4190.33,693.14,46.909999999999900,88.77000000000000,4186.39,603.29,40.54000000000000,65.90000000000010,4110.44,562.58,30.0600000000004,45.63,4270.45,538.43,28.400000000000500,49.010000000000100,4523.57,596.69,42.02000000000040,55.82999999999990,4430.37,562.73,34.13000000000010,48.40000000000000,4063.39,512.08,17.559999999999900,34.040000000000000,3701.2,633.13,36.92000000000010,82.12,4362.04,600.91,48.31999999999970,79.24000000000000,3864.48,594.01,39.38999999999990,63.190000000000100,4285.39,554.74,26.46000000000000,48.63,4051.95,545.45,27.69000000000010,42.26000000000000,3524.67,580.83,41.86999999999990,77.89000000000000,3541.26,526.06,24.65999999999990,45.58000000000000,3696.96,505.24,20.42999999999980,36.53000000000000,4342.7,547.55,26.079999999999900,44.54000000000010,2927.54,529.92,26.76000000000020,42.24000000000000,4409.37,576.04,14.460000000000000,12.030000000000100,4229.85,570.5,32.4399999999996,58.54000000000000,4395.45,566.95,21.86999999999990,40.69999999999990 -723,3600.03,620.07,42.09999999999990,80.59999999999990,3634.62,529.87,20.46000000000000,44.77000000000000,4721.32,666.57,45.27000000000040,86.08999999999990,4187.19,693.2,46.91000000000080,88.78000000000000,4184.25,603.08,40.54000000000000,65.81000000000000,4109.56,562.39,30.0,45.53000000000000,4269.66,538.1,28.300000000000200,48.91000000000000,4524.99,596.9,42.02000000000040,55.97000000000000,4427.55,562.34,34.13000000000010,48.40000000000000,4061.64,511.49,17.559999999999900,34.040000000000000,3698.37,632.73,36.86000000000010,81.98000000000000,4360.14,600.76,48.32999999999990,79.24000000000000,3863.28,593.6,39.39999999999960,62.98000000000000,4283.07,554.48,26.46000000000000,48.63,4049.8,545.2,27.67999999999980,42.26000000000000,3523.54,580.49,41.79000000000000,77.68999999999990,3541.13,525.91,24.520000000000000,45.46000000000000,3697.91,505.22,20.43000000000030,36.53000000000000,4338.29,547.18,26.06999999999970,44.54000000000010,2928.48,529.85,26.759999999999800,42.24000000000000,4408.11,575.69,14.460000000000000,12.030000000000000,4227.81,569.86,32.25999999999930,58.33000000000000,4392.57,566.58,21.86999999999990,40.69999999999990 -724,3598.33,619.51,41.93000000000030,80.34000000000000,3633.6,529.55,20.42000000000010,44.67000000000010,4722.48,666.81,45.27000000000040,86.09000000000000,4184.04,693.26,46.909999999999900,88.78000000000000,4182.11,602.88,40.55000000000020,65.71000000000000,4108.68,562.2,29.9399999999996,45.43000000000000,4268.87,537.77,28.19999999999980,48.81000000000010,4526.42,597.11,42.01000000000020,56.120000000000000,4424.74,561.95,34.13000000000010,48.40000000000000,4059.9,510.91,17.549999999999700,34.04000000000000,3695.54,632.33,36.79000000000000,81.83999999999990,4358.24,600.6,48.32999999999990,79.24000000000000,3862.08,593.18,39.42000000000010,62.79000000000010,4280.75,554.21,26.46000000000000,48.63,4047.64,544.95,27.69000000000010,42.26000000000000,3522.4,580.15,41.73000000000000,77.48000000000000,3540.99,525.77,24.390000000000300,45.33000000000000,3698.86,505.2,20.42999999999980,36.53000000000000,4333.87,546.82,26.079999999999900,44.54000000000000,2929.42,529.77,26.759999999999800,42.24000000000000,4406.86,575.34,14.450000000000700,12.030000000000000,4225.77,569.22,32.07999999999990,58.120000000000000,4389.7,566.21,21.86999999999990,40.68999999999990 -725,3596.63,618.95,41.75999999999980,80.07999999999990,3632.58,529.23,20.36999999999990,44.57999999999990,4723.63,667.06,45.27999999999980,86.08000000000000,4180.9,693.33,46.91000000000080,88.77000000000000,4179.98,602.67,40.54000000000090,65.62,4107.8,562.02,29.86999999999990,45.32000000000010,4268.08,537.44,28.100000000000400,48.70999999999990,4527.85,597.32,41.98999999999980,56.26000000000000,4421.93,561.55,34.13000000000010,48.40000000000010,4058.15,510.32,17.559999999999900,34.04000000000000,3692.71,631.92,36.73000000000000,81.71000000000000,4356.35,600.44,48.31999999999970,79.2399999999999,3860.88,592.77,39.440000000000100,62.59000000000000,4278.43,553.95,26.46000000000000,48.63,4045.48,544.71,27.69000000000010,42.25,3521.27,579.81,41.65000000000010,77.28000000000010,3540.86,525.63,24.25,45.200000000000000,3699.81,505.17,20.42999999999980,36.54000000000000,4329.46,546.45,26.06999999999970,44.54000000000000,2930.37,529.7,26.76000000000020,42.24000000000000,4405.6,575.0,14.449999999999800,12.020000000000000,4223.73,568.58,31.890000000000300,57.91000000000000,4386.82,565.83,21.86999999999990,40.69999999999990 -726,3594.93,618.38,41.59000000000020,79.83000000000000,3631.55,528.91,20.329999999999900,44.48000000000000,4724.79,667.3,45.27000000000040,86.08000000000000,4177.75,693.39,46.92000000000010,88.78000000000000,4177.84,602.46,40.55000000000020,65.53000000000000,4106.92,561.83,29.80999999999950,45.21999999999990,4267.29,537.11,27.98999999999980,48.610000000000000,4529.28,597.53,41.98000000000050,56.41000000000010,4417.98,560.81,33.650000000000500,47.950000000000000,4056.4,509.73,17.559999999999900,34.040000000000000,3689.88,631.52,36.659999999999900,81.56000000000010,4354.45,600.28,48.32999999999990,79.24000000000000,3859.69,592.36,39.440000000000100,62.39000000000000,4276.11,553.68,26.46000000000000,48.63,4043.33,544.46,27.68000000000030,42.26000000000000,3520.13,579.47,41.57999999999990,77.07999999999990,3540.72,525.48,24.120000000000300,45.07999999999990,3700.76,505.15,20.4399999999996,36.53000000000000,4325.04,546.08,26.06999999999970,44.54000000000000,2931.31,529.63,26.76000000000020,42.24000000000000,4404.34,574.65,14.460000000000000,12.030000000000000,4221.68,567.95,31.719999999999300,57.68999999999990,4383.94,565.46,21.8700000000008,40.69999999999990 -727,3593.23,617.82,41.42000000000010,79.56999999999990,3630.53,528.59,20.279999999999700,44.38,4725.95,667.54,45.27000000000040,86.08000000000000,4174.61,693.45,46.91000000000080,88.78000000000000,4175.7,602.26,40.55000000000020,65.43000000000010,4106.04,561.64,29.75,45.120000000000000,4266.5,536.78,27.890000000000300,48.51000000000000,4530.7,597.74,41.98000000000050,56.55000000000000,4414.03,560.06,33.17000000000010,47.510000000000100,4054.66,509.14,17.550000000000200,34.040000000000000,3687.05,631.12,36.59999999999990,81.42000000000000,4352.55,600.12,48.32999999999990,79.24000000000000,3858.49,591.94,39.46000000000000,62.19999999999990,4273.79,553.42,26.46000000000000,48.63,4041.17,544.21,27.69000000000010,42.26000000000000,3519.0,579.13,41.5,76.87,3540.59,525.34,23.98000000000000,44.94999999999990,3701.71,505.13,20.44000000000010,36.53000000000000,4320.62,545.71,26.079999999999900,44.54000000000000,2932.25,529.55,26.76000000000020,42.24000000000000,4403.09,574.3,14.449999999999800,12.030000000000100,4219.64,567.31,31.540000000000000,57.48000000000000,4381.07,565.09,21.86999999999990,40.69999999999990 -728,3591.53,617.26,41.25,79.31000000000010,3629.51,528.27,20.229999999999600,44.28000000000000,4727.11,667.78,45.27000000000040,86.08000000000000,4171.47,693.51,46.909999999999900,88.78000000000000,4173.57,602.05,40.54000000000000,65.34000000000000,4105.16,561.45,29.69000000000050,45.02000000000000,4265.71,536.45,27.790000000000000,48.41000000000000,4532.13,597.95,41.96000000000000,56.69999999999990,4410.08,559.31,32.69000000000050,47.06000000000010,4052.91,508.56,17.559999999999900,34.04000000000000,3684.22,630.72,36.5300000000002,81.28000000000000,4350.66,599.97,48.31999999999970,79.24000000000000,3857.29,591.53,39.48000000000000,61.99000000000000,4271.47,553.15,26.46000000000000,48.63,4039.02,543.96,27.67999999999980,42.26000000000000,3517.86,578.78,41.42999999999980,76.68000000000010,3540.46,525.2,23.840000000000100,44.819999999999900,3702.67,505.11,20.42999999999980,36.53000000000000,4316.21,545.34,26.06999999999970,44.54000000000000,2932.91,529.5,26.76000000000020,42.24000000000000,4401.83,573.95,14.449999999999800,12.030000000000000,4217.6,566.67,31.35999999999970,57.270000000000100,4378.19,564.72,21.8700000000008,40.68999999999990 -729,3589.83,616.7,41.07999999999990,79.05000000000000,3628.49,527.94,20.18000000000030,44.19999999999990,4728.27,668.02,45.26999999999950,86.08000000000000,4168.32,693.58,46.909999999999900,88.77000000000000,4171.43,601.84,40.54999999999930,65.25,4104.29,561.26,29.60999999999970,44.92000000000000,4264.93,536.12,27.67999999999940,48.309999999999900,4533.56,598.17,41.94999999999980,56.83000000000000,4406.13,558.57,32.21000000000000,46.6099999999999,4051.16,507.97,17.559999999999900,34.040000000000000,3681.38,630.32,36.48000000000000,81.14000000000000,4348.76,599.81,48.32999999999990,79.24000000000000,3856.09,591.12,39.48999999999980,61.79000000000000,4269.15,552.89,26.46000000000000,48.63,4036.86,543.71,27.69000000000010,42.26000000000000,3516.73,578.44,41.34999999999990,76.4799999999999,3540.32,525.05,23.69999999999980,44.71000000000000,3703.62,505.09,20.43000000000030,36.53000000000000,4311.79,544.98,26.079999999999900,44.54000000000000,2933.57,529.45,26.759999999999800,42.24000000000000,4400.57,573.61,14.450000000000700,12.020000000000000,4215.56,566.03,31.17999999999940,57.06000000000010,4375.31,564.34,21.86999999999990,40.69999999999990 -730,3588.14,616.13,40.90000000000010,78.80000000000000,3627.47,527.62,20.140000000000300,44.10000000000000,4729.43,668.26,45.26999999999950,86.09000000000000,4165.18,693.64,46.909999999999900,88.78000000000000,4169.3,601.64,40.54000000000000,65.15000000000000,4103.41,561.07,29.550000000000200,44.809999999999900,4264.14,535.79,27.579999999999900,48.200000000000000,4534.99,598.38,41.94000000000050,56.98000000000000,4402.18,557.82,31.729999999999600,46.17000000000000,4049.42,507.38,17.559999999999900,34.040000000000000,3678.55,629.92,36.409999999999900,81.0,4346.86,599.65,48.32999999999990,79.24000000000000,3854.89,590.71,39.51000000000020,61.58999999999990,4266.83,552.62,26.46000000000000,48.63,4034.7,543.46,27.69000000000010,42.26000000000000,3515.59,578.1,41.27999999999980,76.28000000000000,3540.19,524.91,23.559999999999900,44.58000000000000,3704.57,505.07,20.42999999999980,36.53000000000000,4307.38,544.61,26.06999999999970,44.54000000000000,2934.23,529.4,26.759999999999800,42.24000000000000,4399.31,573.26,14.460000000000000,12.030000000000000,4213.51,565.39,31.01000000000020,56.85000000000000,4374.0,563.99,21.86999999999990,40.700000000000000 -731,3586.44,615.57,40.73999999999980,78.54000000000000,3626.45,527.3,20.090000000000100,44.0,4728.02,668.4,45.26999999999950,86.09000000000000,4162.03,693.7,46.92000000000010,88.78000000000000,4167.16,601.43,40.55000000000020,65.06000000000010,4102.53,560.88,29.49000000000070,44.71000000000000,4263.35,535.46,27.479999999999600,48.09999999999990,4536.41,598.59,41.94000000000050,57.120000000000000,4398.23,557.07,31.25,45.71999999999990,4047.67,506.79,17.559999999999900,34.04000000000000,3675.72,629.52,36.35000000000040,80.86000000000000,4344.97,599.49,48.31999999999970,79.24000000000000,3853.5,590.16,39.51000000000020,61.60000000000000,4264.51,552.36,26.46000000000000,48.63,4032.55,543.21,27.67999999999980,42.26000000000000,3514.46,577.76,41.19999999999980,76.07000000000010,3540.05,524.77,23.42999999999980,44.450000000000000,3705.52,505.05,20.42999999999980,36.53000000000000,4302.96,544.24,26.06999999999970,44.54000000000000,2934.89,529.34,26.76000000000020,42.24000000000000,4398.06,572.91,14.449999999999800,12.030000000000100,4211.47,564.76,30.829999999999900,56.64000000000000,4372.69,563.63,21.88000000000010,40.700000000000000 -732,3584.74,615.01,40.57000000000020,78.28000000000000,3625.42,526.98,20.049999999999700,43.90000000000000,4726.61,668.55,45.27000000000040,86.08000000000000,4158.89,693.77,46.909999999999900,88.77000000000000,4165.02,601.23,40.54999999999930,64.96000000000000,4101.65,560.7,29.42000000000010,44.59999999999990,4262.56,535.13,27.3799999999992,48.0,4537.84,598.8,41.92000000000010,57.270000000000100,4394.28,556.33,30.77000000000040,45.27000000000000,4045.92,506.21,17.559999999999900,34.04000000000000,3672.89,629.12,36.2800000000002,80.72000000000000,4343.07,599.34,48.32999999999990,79.23000000000000,3852.11,589.62,39.50999999999980,61.59000000000000,4262.19,552.09,26.46000000000000,48.63,4030.39,542.96,27.69000000000010,42.26000000000000,3513.32,577.42,41.12999999999970,75.87,3539.92,524.62,23.290000000000000,44.33000000000000,3706.47,505.02,20.43000000000030,36.54000000000000,4298.54,543.87,26.079999999999900,44.54000000000000,2935.55,529.29,26.759999999999800,42.24000000000000,4396.8,572.56,14.449999999999800,12.030000000000100,4209.43,564.12,30.64999999999960,56.43000000000000,4371.38,563.27,21.88000000000010,40.700000000000000 -733,3583.04,614.45,40.40000000000010,78.02000000000000,3624.4,526.66,20.0,43.80000000000010,4725.2,668.69,45.27999999999980,86.08999999999990,4155.74,693.83,46.92000000000010,88.78000000000000,4162.89,601.02,40.54000000000000,64.87,4100.77,560.51,29.35999999999970,44.5,4261.77,534.8,27.279999999999700,47.90000000000010,4539.27,599.01,41.909999999999900,57.41000000000000,4390.33,555.58,30.290000000000000,44.82999999999990,4044.18,505.62,17.559999999999900,34.040000000000000,3670.06,628.72,36.220000000000300,80.57999999999990,4341.17,599.18,48.32999999999990,79.24000000000000,3850.72,589.08,39.51000000000020,61.58999999999990,4259.87,551.83,26.46000000000000,48.63,4028.24,542.71,27.68000000000030,42.26000000000000,3512.19,577.08,41.059999999999900,75.67000000000000,3539.78,524.48,23.15999999999990,44.19999999999990,3707.42,505.0,20.42999999999980,36.53000000000000,4294.13,543.5,26.06999999999970,44.54000000000000,2936.21,529.24,26.759999999999800,42.24000000000000,4395.54,572.22,14.460000000000000,12.030000000000000,4207.39,563.48,30.46000000000000,56.22000000000000,4370.08,562.92,21.86999999999990,40.700000000000000 -734,3581.34,613.88,40.23000000000000,77.77000000000000,3623.38,526.34,19.94999999999980,43.70999999999990,4723.8,668.84,45.26999999999950,86.07999999999990,4152.6,693.89,46.909999999999900,88.78000000000000,4160.75,600.81,40.55000000000020,64.7700000000001,4099.89,560.32,29.299999999999300,44.40000000000000,4260.98,534.47,27.18000000000030,47.80000000000000,4540.69,599.22,41.91000000000080,57.559999999999900,4386.38,554.84,29.80999999999950,44.370000000000000,4042.43,505.03,17.559999999999900,34.04000000000010,3667.23,628.32,36.15000000000010,80.43999999999990,4339.28,599.02,48.32000000000060,79.24000000000000,3849.32,588.53,39.52000000000000,61.60000000000000,4257.55,551.56,26.46000000000000,48.6400000000001,4026.08,542.47,27.69000000000010,42.25,3511.05,576.74,40.98999999999980,75.46000000000000,3539.65,524.34,23.020000000000000,44.069999999999900,3708.37,504.98,20.44000000000010,36.53000000000000,4289.71,543.14,26.079999999999900,44.54000000000000,2936.87,529.19,26.76000000000020,42.239999999999900,4394.28,571.87,14.460000000000000,12.030000000000000,4205.34,562.84,30.290000000000000,56.01000000000000,4368.77,562.56,21.86999999999990,40.700000000000000 -735,3579.64,613.32,40.059999999999900,77.51000000000000,3622.36,526.02,19.90000000000010,43.610000000000000,4722.39,668.98,45.26999999999950,86.09000000000000,4149.46,693.96,46.909999999999900,88.77000000000000,4158.61,600.61,40.55000000000020,64.67000000000000,4099.01,560.13,29.229999999999600,44.30000000000000,4260.19,534.14,27.08000000000080,47.700000000000000,4542.12,599.43,41.89000000000030,57.700000000000000,4382.42,554.09,29.340000000000100,43.93000000000000,4040.69,504.44,17.549999999999700,34.04000000000000,3664.4,627.92,36.08999999999970,80.30000000000010,4337.38,598.86,48.32999999999990,79.24000000000000,3847.93,587.99,39.52000000000000,61.59000000000000,4255.23,551.3,26.46000000000000,48.63,4023.92,542.22,27.69000000000010,42.26000000000000,3509.92,576.4,40.909999999999900,75.26000000000000,3539.52,524.19,22.88000000000010,43.94999999999990,3709.32,504.96,20.44000000000010,36.53000000000000,4285.3,542.77,26.06999999999970,44.54000000000000,2937.53,529.14,26.759999999999800,42.24000000000000,4393.03,571.52,14.449999999999800,12.030000000000000,4203.3,562.21,30.10999999999970,55.79000000000000,4367.46,562.2,21.86999999999990,40.69999999999990 -736,3577.94,612.76,39.88999999999990,77.25,3621.34,525.7,19.85999999999970,43.51000000000000,4720.98,669.13,45.27000000000040,86.08000000000000,4146.31,694.02,46.91999999999920,88.78000000000000,4156.48,600.4,40.55000000000020,64.58000000000000,4098.14,559.94,29.15999999999990,44.19999999999990,4259.4,533.81,26.98000000000050,47.60000000000000,4543.55,599.65,41.88000000000010,57.84000000000000,4378.47,553.34,28.85999999999970,43.49000000000000,4038.74,504.17,17.5600000000004,34.04000000000000,3661.57,627.52,36.02000000000000,80.16000000000000,4335.48,598.7,48.33000000000080,79.24000000000000,3846.54,587.45,39.51000000000020,61.58999999999990,4252.91,551.03,26.44999999999980,48.64000000000000,4021.77,541.97,27.67999999999980,42.26000000000000,3508.78,576.05,40.83999999999970,75.07000000000010,3539.38,524.05,22.73999999999980,43.83000000000000,3710.28,504.94,20.42999999999980,36.53000000000000,4280.88,542.4,26.06999999999970,44.54000000000010,2938.19,529.08,26.759999999999800,42.24000000000000,4391.77,571.18,14.449999999999800,12.020000000000100,4201.26,561.57,29.92999999999940,55.57999999999990,4366.15,561.85,21.8700000000008,40.69999999999990 -737,3576.24,612.2,39.720000000000300,76.99000000000000,3620.31,525.38,19.820000000000200,43.41000000000000,4719.58,669.27,45.27000000000040,86.09000000000000,4142.42,694.22,46.909999999999900,88.78000000000000,4154.34,600.2,40.55000000000020,64.4799999999999,4097.26,559.75,29.09999999999950,44.10000000000000,4258.61,533.48,26.88000000000010,47.5,4544.98,599.86,41.8700000000008,57.98000000000000,4374.52,552.6,28.3799999999992,43.03000000000000,4036.8,503.89,17.549999999999700,34.040000000000000,3658.73,627.12,35.9699999999998,80.01000000000000,4333.59,598.55,48.31999999999970,79.23000000000000,3845.15,586.9,39.50999999999980,61.60000000000000,4250.59,550.77,26.44999999999980,48.63,4019.61,541.72,27.69000000000010,42.26000000000000,3507.65,575.71,40.75999999999980,74.86000000000000,3539.25,523.91,22.59999999999990,43.700000000000000,3711.45,504.66,20.43000000000030,36.53000000000000,4276.46,542.03,26.079999999999900,44.54000000000010,2938.85,529.03,26.76000000000020,42.24000000000000,4390.51,570.83,14.460000000000000,12.030000000000000,4199.22,560.93,29.75,55.370000000000000,4364.84,561.49,21.86999999999990,40.700000000000000 -738,3574.54,611.63,39.55000000000020,76.74000000000000,3619.29,525.06,19.770000000000000,43.32000000000010,4718.17,669.42,45.26999999999950,86.08000000000000,4138.52,694.42,46.91999999999920,88.7700000000001,4152.2,599.99,40.55000000000020,64.39000000000000,4096.38,559.57,29.029999999999700,43.989999999999900,4257.82,533.15,26.78000000000070,47.39000000000000,4545.82,599.94,41.86000000000060,58.13,4370.57,551.85,27.900000000000500,42.59000000000000,4034.85,503.61,17.559999999999900,34.040000000000000,3655.9,626.72,35.90000000000010,79.87,4330.63,598.41,48.32999999999990,79.24000000000000,3843.76,586.36,39.50999999999980,61.60000000000000,4248.27,550.51,26.44999999999980,48.63,4017.46,541.47,27.67999999999980,42.26000000000000,3506.51,575.37,40.6899999999996,74.66000000000000,3539.11,523.76,22.4699999999998,43.58000000000000,3712.62,504.38,20.43000000000030,36.53000000000000,4272.05,541.66,26.06999999999970,44.54000000000010,2939.51,528.98,26.759999999999800,42.24000000000000,4389.26,570.48,14.449999999999800,12.030000000000000,4197.18,560.29,29.56999999999970,55.16000000000010,4363.53,561.13,21.86999999999990,40.700000000000000 -739,3572.84,611.07,39.38999999999990,76.4799999999999,3618.27,524.73,19.7199999999998,43.23000000000000,4716.76,669.56,45.26999999999950,86.09000000000000,4134.63,694.62,46.909999999999900,88.77000000000000,4150.07,599.78,40.55000000000020,64.30000000000010,4095.5,559.38,28.97000000000030,43.89000000000000,4257.03,532.81,26.68000000000030,47.30000000000010,4546.67,600.02,41.85000000000040,58.27000000000000,4366.62,551.11,27.42000000000010,42.14000000000000,4032.9,503.33,17.559999999999900,34.04000000000000,3653.07,626.32,35.83999999999970,79.7299999999999,4327.68,598.28,48.32999999999990,79.23000000000000,3842.37,585.82,39.51000000000020,61.58999999999990,4245.95,550.24,26.44999999999980,48.63,4015.3,541.22,27.6899999999996,42.26000000000000,3505.38,575.03,40.60999999999970,74.46000000000000,3538.98,523.62,22.329999999999900,43.450000000000000,3713.79,504.1,20.44000000000010,36.53000000000000,4267.63,541.3,26.079999999999900,44.54000000000010,2940.17,528.93,26.759999999999800,42.24000000000000,4387.26,570.27,14.460000000000000,12.020000000000000,4195.13,559.66,29.39999999999960,54.940000000000100,4362.22,560.78,21.86999999999990,40.700000000000000 -740,3571.14,610.51,39.220000000000300,76.22000000000000,3617.25,524.41,19.67000000000010,43.13,4715.35,669.71,45.27999999999980,86.07999999999990,4130.73,694.82,46.92000000000010,88.77000000000000,4147.93,599.58,40.54999999999930,64.19999999999990,4094.62,559.19,28.90999999999990,43.79000000000000,4256.24,532.48,26.579999999999900,47.19999999999990,4547.51,600.11,41.84000000000020,58.41000000000000,4362.67,550.36,26.9399999999996,41.68999999999990,4030.96,503.05,17.559999999999900,34.04000000000000,3650.24,625.92,35.77000000000040,79.59000000000000,4324.73,598.14,48.33000000000080,79.24000000000000,3840.98,585.27,39.50999999999980,61.60000000000000,4243.63,549.98,26.44999999999980,48.63,4013.14,540.97,27.69000000000010,42.26000000000000,3504.24,574.69,40.54000000000040,74.26000000000000,3538.84,523.48,22.19999999999980,43.319999999999900,3714.97,503.82,20.43000000000030,36.53000000000000,4263.22,540.93,26.06999999999970,44.54000000000010,2940.83,528.88,26.76000000000020,42.24000000000000,4385.27,570.05,14.449999999999800,12.030000000000100,4193.09,559.02,29.22000000000030,54.73000000000000,4360.91,560.42,21.86999999999990,40.700000000000000 -741,3569.44,609.94,39.04999999999970,75.96999999999990,3616.23,524.09,19.61999999999990,43.03000000000000,4713.95,669.85,45.27000000000040,86.09000000000000,4126.84,695.02,46.909999999999900,88.77000000000000,4145.8,599.37,40.54000000000000,64.11000000000000,4093.74,559.0,28.850000000000400,43.690000000000100,4255.45,532.15,26.48000000000050,47.10000000000000,4548.36,600.19,41.82999999999990,58.559999999999900,4358.72,549.61,26.46000000000000,41.25,4029.01,502.78,17.559999999999900,34.04000000000010,3647.41,625.52,35.71000000000000,79.45000000000010,4321.78,598.01,48.32999999999990,79.23000000000000,3839.59,584.73,39.50999999999980,61.60000000000000,4241.31,549.71,26.44999999999980,48.63,4010.99,540.72,27.68000000000030,42.26000000000000,3503.11,574.35,40.46000000000000,74.05000000000000,3538.71,523.33,22.059999999999900,43.19999999999990,3716.14,503.54,20.43000000000030,36.53000000000000,4258.8,540.56,26.06999999999970,44.54000000000010,2941.49,528.82,26.76000000000020,42.239999999999900,4383.28,569.83,14.449999999999800,12.030000000000000,4191.05,558.38,29.029999999999700,54.52000000000000,4359.6,560.06,21.86999999999990,40.700000000000000 -742,3567.74,609.38,38.88000000000010,75.71000000000000,3615.21,523.77,19.579999999999900,42.940000000000100,4712.54,670.0,45.27000000000040,86.08000000000000,4122.94,695.22,46.92000000000010,88.77000000000000,4143.66,599.17,40.55000000000020,64.01000000000000,4092.86,558.81,28.7800000000002,43.59000000000000,4254.66,531.82,26.36999999999990,47.0,4549.2,600.27,41.82000000000060,58.71000000000000,4354.77,548.87,25.979999999999600,40.80000000000000,4027.07,502.5,17.559999999999900,34.040000000000000,3644.58,625.12,35.63999999999990,79.31000000000000,4318.83,597.87,48.32999999999990,79.24000000000000,3838.2,584.19,39.51000000000020,61.58999999999990,4238.99,549.45,26.44999999999980,48.63,4008.83,540.47,27.69000000000010,42.26000000000000,3501.97,574.01,40.40000000000010,73.85000000000000,3538.57,523.19,21.92999999999980,43.069999999999900,3717.31,503.26,20.42999999999980,36.53000000000000,4254.38,540.19,26.079999999999900,44.54000000000000,2942.15,528.77,26.759999999999800,42.24000000000000,4381.28,569.62,14.460000000000000,12.030000000000000,4189.01,557.74,28.84999999999950,54.309999999999900,4358.29,559.71,21.86999999999990,40.69999999999990 -743,3566.04,608.82,38.71000000000000,75.44999999999990,3614.18,523.45,19.540000000000000,42.83999999999990,4711.13,670.14,45.26999999999950,86.09000000000000,4119.05,695.42,46.909999999999900,88.7700000000001,4141.52,598.96,40.54999999999930,63.92000000000000,4091.99,558.62,28.71000000000000,43.49000000000000,4253.87,531.49,26.27000000000040,46.90000000000000,4550.05,600.36,41.80999999999950,58.84000000000000,4350.82,548.12,25.5,40.35000000000000,4025.12,502.22,17.559999999999900,34.040000000000000,3641.75,624.72,35.57999999999990,79.17000000000000,4315.88,597.74,48.32999999999990,79.23000000000000,3836.81,583.64,39.51000000000020,61.60000000000000,4236.67,549.18,26.44999999999980,48.63,4006.67,540.23,27.69000000000010,42.25,3500.84,573.67,40.31999999999970,73.65000000000010,3538.44,523.05,21.790000000000000,42.940000000000100,3718.48,502.98,20.44000000000010,36.53000000000000,4249.97,539.82,26.06999999999970,44.54000000000000,2942.81,528.72,26.76000000000020,42.24000000000000,4379.29,569.4,14.449999999999800,12.030000000000000,4186.96,557.11,28.68000000000030,54.09000000000000,4356.98,559.35,21.8700000000008,40.69999999999990 -744,3564.34,608.26,38.54000000000000,75.19000000000010,3613.16,523.13,19.49000000000020,42.74000000000000,4709.73,670.29,45.27000000000040,86.08000000000000,4115.16,695.61,46.909999999999900,88.78000000000000,4139.39,598.75,40.54999999999930,63.83000000000000,4091.11,558.44,28.65000000000010,43.38,4253.08,531.16,26.17000000000010,46.80000000000010,4550.89,600.44,41.79999999999930,58.989999999999900,4346.87,547.37,25.02000000000040,39.91000000000000,4023.18,501.94,17.559999999999900,34.04000000000000,3638.92,624.32,35.50999999999980,79.03000000000000,4312.93,597.6,48.32999999999990,79.24000000000000,3835.41,583.1,39.52000000000000,61.60000000000000,4234.34,548.92,26.46000000000000,48.63,4004.52,539.98,27.69000000000010,42.26000000000000,3499.7,573.32,40.25,73.44999999999990,3538.31,522.9,21.63999999999990,42.83000000000000,3719.65,502.7,20.44000000000010,36.53000000000000,4245.55,539.46,26.079999999999900,44.54000000000000,2943.47,528.67,26.76000000000020,42.24000000000000,4377.29,569.19,14.460000000000000,12.030000000000000,4184.92,556.47,28.5,53.88,4355.67,558.99,21.86999999999990,40.700000000000000 -745,3562.64,607.69,38.370000000000300,74.93999999999990,3612.14,522.81,19.44000000000010,42.6400000000001,4708.32,670.43,45.27000000000040,86.09000000000000,4111.26,695.81,46.909999999999900,88.78000000000010,4137.25,598.55,40.55000000000020,63.73000000000000,4090.23,558.25,28.580000000000400,43.27000000000000,4252.29,530.83,26.06999999999970,46.69999999999990,4551.74,600.53,41.79000000000000,59.13,4342.92,546.63,24.540000000000000,39.46000000000000,4021.23,501.66,17.559999999999900,34.04000000000000,3636.09,623.92,35.44999999999980,78.89000000000000,4309.98,597.47,48.32000000000060,79.23000000000000,3834.02,582.56,39.52000000000000,61.59000000000000,4232.02,548.65,26.459999999999100,48.63,4002.36,539.73,27.69000000000010,42.26000000000000,3498.57,572.98,40.16999999999960,73.25,3538.17,522.76,21.509999999999800,42.700000000000000,3720.83,502.42,20.43000000000030,36.53000000000000,4241.13,539.09,26.079999999999900,44.54000000000000,2944.13,528.62,26.759999999999800,42.24000000000000,4375.3,568.97,14.449999999999800,12.030000000000000,4182.88,555.83,28.31999999999970,53.67000000000000,4354.36,558.64,21.88000000000010,40.700000000000000 -746,3560.73,607.25,38.19999999999980,74.68000000000000,3611.12,522.49,19.390000000000300,42.54000000000000,4706.91,670.58,45.27000000000040,86.07999999999990,4107.37,696.01,46.909999999999900,88.78000000000000,4135.11,598.34,40.55000000000020,63.64000000000000,4089.35,558.06,28.520000000000000,43.17000000000010,4251.51,530.5,25.96000000000000,46.59000000000000,4552.59,600.61,41.76999999999950,59.28000000000000,4338.97,545.88,24.05999999999950,39.01000000000000,4019.29,501.39,17.559999999999900,34.040000000000000,3633.25,623.52,35.38999999999990,78.75,4307.03,597.33,48.32000000000060,79.24000000000000,3832.63,582.02,39.50999999999980,61.59000000000000,4229.7,548.39,26.46000000000000,48.63,4000.21,539.48,27.67999999999980,42.26000000000000,3497.43,572.64,40.10000000000040,73.05000000000010,3538.04,522.62,21.36999999999990,42.57000000000010,3722.0,502.13,20.42999999999980,36.54000000000000,4236.72,538.72,26.06999999999970,44.54000000000000,2944.79,528.56,26.76000000000020,42.24000000000000,4373.31,568.76,14.449999999999800,12.030000000000000,4180.77,555.52,28.279999999999700,53.49000000000000,4353.06,558.28,21.86999999999990,40.700000000000000 -747,3558.81,606.81,38.0300000000002,74.42000000000010,3610.1,522.17,19.340000000000100,42.450000000000000,4705.5,670.72,45.27000000000040,86.08999999999990,4103.47,696.21,46.909999999999900,88.78000000000000,4132.98,598.14,40.55000000000020,63.54000000000000,4088.47,557.87,28.46000000000050,43.07000000000010,4250.72,530.17,25.85999999999970,46.49000000000000,4553.43,600.69,41.76999999999950,59.42000000000000,4335.02,545.14,23.579999999999900,38.56000000000010,4017.34,501.11,17.559999999999900,34.040000000000000,3630.42,623.12,35.32999999999990,78.61000000000000,4304.08,597.2,48.31999999999970,79.2299999999999,3831.24,581.47,39.51000000000020,61.60000000000000,4227.38,548.12,26.46000000000000,48.63,3998.05,539.23,27.6899999999996,42.26000000000000,3496.3,572.3,40.02000000000000,72.84000000000000,3537.9,522.47,21.23999999999980,42.44999999999990,3723.17,501.85,20.42999999999980,36.54000000000000,4232.3,538.35,26.079999999999900,44.54000000000000,2945.45,528.51,26.76000000000020,42.24000000000000,4371.31,568.54,14.460000000000000,12.030000000000100,4178.66,555.22,28.23999999999980,53.30000000000000,4351.75,557.92,21.86999999999990,40.700000000000000 -748,3556.9,606.37,37.86000000000010,74.16000000000000,3609.08,521.85,19.300000000000200,42.35000000000000,4704.1,670.87,45.26999999999950,86.08000000000000,4099.58,696.41,46.909999999999900,88.78000000000010,4130.84,597.93,40.55000000000020,63.450000000000000,4087.59,557.68,28.38999999999940,42.97000000000000,4249.93,529.84,25.75999999999930,46.39000000000000,4554.28,600.78,41.75,59.56000000000010,4331.12,544.73,23.69999999999980,38.64000000000000,4015.4,500.83,17.559999999999900,34.04000000000000,3627.59,622.72,35.25999999999980,78.47000000000000,4301.13,597.06,48.31999999999970,79.24000000000000,3829.85,580.93,39.51000000000020,61.59000000000000,4225.06,547.86,26.46000000000000,48.63,3995.89,538.98,27.69000000000010,42.26000000000000,3495.16,571.96,39.95000000000030,72.64000000000000,3537.77,522.33,21.09999999999990,42.319999999999900,3724.34,501.57,20.44000000000010,36.53000000000000,4227.89,537.98,26.06999999999970,44.54000000000000,2946.11,528.46,26.759999999999800,42.24000000000000,4369.32,568.33,14.450000000000700,12.020000000000000,4176.55,554.91,28.19999999999980,53.120000000000000,4350.44,557.57,21.8700000000008,40.69999999999990 -749,3554.98,605.92,37.690000000000100,73.91000000000010,3608.05,521.52,19.259999999999800,42.26000000000000,4702.69,671.01,45.27000000000040,86.09000000000000,4095.68,696.61,46.92000000000050,88.78000000000000,4128.7,597.72,40.5600000000004,63.360000000000000,4086.71,557.49,28.329999999999900,42.870000000000000,4249.14,529.51,25.65999999999990,46.29000000000000,4555.12,600.86,41.75,59.71000000000000,4327.23,544.32,23.82000000000060,38.72999999999990,4013.45,500.55,17.5600000000004,34.04000000000000,3624.76,622.32,35.19999999999980,78.31999999999990,4298.17,596.93,48.32999999999990,79.23000000000000,3828.46,580.39,39.50999999999980,61.59000000000000,4222.74,547.59,26.46000000000000,48.63,3993.74,538.73,27.68000000000030,42.26000000000000,3494.03,571.62,39.86999999999990,72.43999999999990,3537.63,522.19,20.9699999999998,42.18999999999990,3725.52,501.29,20.42999999999980,36.53000000000000,4223.47,537.62,26.079999999999900,44.54000000000000,2946.77,528.41,26.76000000000020,42.24000000000000,4367.33,568.11,14.449999999999800,12.030000000000000,4174.44,554.61,28.17000000000010,52.93000000000000,4349.13,557.21,21.86999999999990,40.69999999999990 -750,3553.06,605.48,37.5300000000002,73.65000000000000,3607.03,521.2,19.20999999999960,42.16000000000000,4701.28,671.16,45.27000000000040,86.08000000000000,4091.79,696.81,46.909999999999900,88.78000000000010,4126.57,597.52,40.55000000000020,63.25,4085.83,557.3,28.27000000000040,42.770000000000100,4248.36,529.33,25.660000000000800,46.29000000000000,4555.97,600.94,41.72999999999960,59.84999999999990,4323.33,543.91,23.94000000000050,38.81000000000010,4011.51,500.28,17.559999999999900,34.04000000000010,3621.93,621.92,35.13000000000010,78.18000000000010,4295.22,596.79,48.32999999999990,79.24000000000000,3827.07,579.84,39.50999999999980,61.60000000000000,4220.42,547.33,26.46000000000000,48.63,3991.58,538.48,27.69000000000010,42.26000000000000,3492.9,571.28,39.79000000000000,72.24000000000000,3537.5,522.04,20.829999999999900,42.07000000000010,3726.69,501.01,20.42999999999980,36.53000000000000,4219.05,537.25,26.079999999999900,44.54000000000000,2947.43,528.36,26.76000000000020,42.24000000000000,4365.33,567.9,14.460000000000000,12.020000000000000,4172.34,554.3,28.11999999999990,52.76000000000000,4347.82,556.85,21.86999999999990,40.69999999999990 -751,3551.15,605.04,37.34999999999990,73.39000000000000,3606.01,520.88,19.15999999999990,42.07000000000010,4699.88,671.3,45.26999999999950,86.09000000000000,4087.89,697.01,46.92000000000050,88.78000000000000,4125.03,597.28,40.55000000000020,63.16000000000010,4084.96,557.12,28.1899999999996,42.66000000000000,4247.58,529.15,25.65999999999990,46.29000000000010,4556.81,601.03,41.72999999999960,59.99000000000000,4319.44,543.5,24.050000000000200,38.90000000000000,4009.56,500.0,17.559999999999900,34.040000000000000,3619.1,621.51,35.070000000000200,78.05000000000000,4292.27,596.66,48.32999999999990,79.23000000000000,3825.68,579.3,39.51000000000020,61.59000000000000,4218.1,547.06,26.46000000000000,48.6400000000001,3989.43,538.24,27.68000000000030,42.25,3491.76,570.94,39.72999999999960,72.03000000000000,3537.37,521.9,20.69000000000010,41.950000000000000,3727.86,500.73,20.42999999999980,36.53000000000000,4214.64,536.88,26.06999999999970,44.54000000000000,2948.09,528.3,26.759999999999800,42.24000000000000,4363.97,567.61,14.460000000000000,12.020000000000000,4170.23,554.0,28.08000000000080,52.57000000000010,4347.96,556.8,21.86999999999990,40.700000000000000 -752,3549.23,604.6,37.190000000000100,73.13,3604.99,520.56,19.110000000000100,41.97000000000000,4698.47,671.45,45.26999999999950,86.07999999999990,4084.0,697.21,46.909999999999900,88.78000000000000,4123.48,597.04,40.55000000000020,63.07000000000010,4084.08,556.93,28.13000000000010,42.56000000000010,4246.79,528.97,25.67000000000010,46.28000000000000,4557.66,601.11,41.71000000000000,60.14000000000000,4315.54,543.09,24.18000000000030,38.98000000000000,4007.62,499.72,17.559999999999900,34.040000000000000,3616.27,621.11,35.0,77.91000000000000,4289.32,596.52,48.32999999999990,79.24000000000000,3824.29,578.76,39.51000000000020,61.59000000000000,4215.78,546.8,26.46000000000000,48.63,3987.27,537.99,27.69000000000010,42.25,3490.63,570.59,39.65000000000010,71.83999999999990,3537.23,521.76,20.550000000000200,41.82000000000010,3729.03,500.45,20.4399999999996,36.53000000000000,4210.22,536.51,26.079999999999900,44.54000000000000,2948.75,528.25,26.76000000000020,42.24000000000000,4362.61,567.32,14.460000000000000,12.030000000000000,4168.12,553.69,28.040000000000000,52.39000000000000,4348.11,556.75,21.86999999999990,40.700000000000000 -753,3547.32,604.15,37.00999999999980,72.88,3604.48,520.29,19.070000000000200,41.870000000000000,4697.06,671.59,45.26999999999950,86.08999999999990,4080.1,697.41,46.92000000000050,88.78000000000010,4121.94,596.81,40.55000000000020,62.97000000000000,4083.2,556.74,28.07000000000060,42.46000000000000,4246.01,528.78,25.67000000000010,46.29000000000010,4558.5,601.2,41.71000000000000,60.28000000000000,4311.64,542.68,24.299999999999300,39.07000000000010,4005.67,499.44,17.559999999999900,34.04000000000000,3613.44,620.71,34.940000000000100,77.77000000000000,4286.37,596.39,48.32999999999990,79.23000000000000,3822.9,578.21,39.50999999999980,61.59999999999990,4213.46,546.54,26.46000000000000,48.63,3985.11,537.74,27.69000000000010,42.26000000000000,3489.49,570.25,39.58000000000040,71.64000000000000,3537.1,521.61,20.41000000000030,41.69999999999990,3730.21,500.17,20.42999999999980,36.53000000000000,4205.81,536.14,26.06999999999970,44.54000000000000,2949.41,528.2,26.76000000000020,42.24000000000000,4361.25,567.03,14.449999999999800,12.030000000000000,4166.01,553.39,28.0,52.200000000000000,4348.25,556.71,21.86999999999990,40.68999999999990 -754,3545.4,603.71,36.84999999999990,72.62,3603.98,520.02,19.020000000000000,41.78000000000000,4695.65,671.74,45.27000000000040,86.08000000000000,4076.21,697.61,46.909999999999900,88.78000000000000,4120.4,596.57,40.55000000000020,62.88,4082.32,556.55,28.009999999999800,42.360000000000000,4245.23,528.6,25.67000000000010,46.29000000000000,4559.35,601.28,41.6899999999996,60.42000000000010,4307.75,542.27,24.40999999999990,39.15000000000000,4003.73,499.16,17.559999999999900,34.04000000000000,3610.6,620.31,34.88000000000010,77.63000000000010,4283.42,596.25,48.32999999999990,79.24000000000000,3821.5,577.67,39.52000000000000,61.60000000000000,4211.14,546.27,26.46000000000000,48.63,3982.96,537.49,27.67999999999980,42.26000000000000,3488.36,569.91,39.5,71.43000000000010,3536.96,521.47,20.279999999999700,41.569999999999900,3731.38,499.89,20.42999999999980,36.53000000000000,4201.98,535.66,26.0,44.38,2950.07,528.15,26.759999999999800,42.24000000000000,4359.89,566.74,14.449999999999800,12.030000000000000,4163.9,553.08,27.96000000000000,52.02000000000000,4348.39,556.66,21.86999999999990,40.690000000000100 -755,3543.49,603.27,36.67000000000010,72.36000000000000,3603.47,519.75,18.97000000000030,41.68000000000000,4694.25,671.88,45.27000000000040,86.09000000000000,4072.31,697.81,46.91999999999960,88.78000000000010,4118.85,596.33,40.54999999999930,62.79000000000000,4081.44,556.36,27.94000000000010,42.26000000000000,4244.45,528.42,25.67000000000010,46.29000000000010,4560.19,601.36,41.69000000000050,60.569999999999900,4303.85,541.86,24.529999999999700,39.23000000000000,4001.78,498.89,17.559999999999900,34.040000000000000,3607.77,619.91,34.820000000000200,77.49000000000000,4280.47,596.12,48.31999999999970,79.23000000000000,3820.11,577.13,39.52000000000000,61.59000000000000,4208.82,546.01,26.46000000000000,48.63,3980.8,537.24,27.6899999999996,42.26000000000000,3487.22,569.57,39.43000000000030,71.2299999999999,3536.83,521.33,20.13999999999990,41.43999999999990,3731.03,499.61,20.42999999999980,36.53000000000000,4198.16,535.18,25.93000000000030,44.21000000000000,2950.73,528.1,26.759999999999800,42.24000000000000,4358.53,566.45,14.449999999999800,12.030000000000000,4161.79,552.78,27.93000000000030,51.83000000000000,4348.54,556.61,21.86999999999990,40.68999999999990 -756,3541.57,602.83,36.50999999999980,72.09999999999990,3602.96,519.48,18.92999999999980,41.57999999999990,4692.84,672.03,45.26999999999950,86.08000000000000,4068.42,698.01,46.909999999999900,88.78000000000000,4117.31,596.09,40.54999999999930,62.68999999999990,4080.56,556.17,27.87999999999970,42.16000000000010,4243.67,528.24,25.65999999999990,46.29000000000000,4561.04,601.45,41.67000000000010,60.70999999999990,4299.96,541.45,24.64999999999960,39.319999999999900,3999.84,498.61,17.549999999999700,34.040000000000000,3604.94,619.51,34.75,77.35000000000000,4277.52,595.98,48.31999999999970,79.24000000000000,3818.72,576.58,39.51000000000020,61.59999999999990,4207.52,546.03,26.459999999999100,48.63,3978.65,536.99,27.67999999999980,42.26000000000000,3486.09,569.23,39.34999999999990,71.03000000000000,3536.69,521.19,20.009999999999800,41.309999999999900,3730.68,499.33,20.43000000000030,36.53000000000000,4194.34,534.7,25.84999999999950,44.04000000000000,2951.39,528.04,26.76000000000020,42.24000000000000,4357.17,566.16,14.449999999999800,12.030000000000100,4159.68,552.47,27.88999999999940,51.65000000000000,4348.68,556.56,21.86999999999990,40.700000000000000 -757,3539.65,602.38,36.33999999999970,71.85000000000000,3602.46,519.21,18.88000000000010,41.49000000000000,4691.43,672.17,45.26999999999950,86.09000000000000,4064.53,698.21,46.9099999999994,88.77000000000000,4115.77,595.86,40.54999999999930,62.59000000000000,4079.68,555.99,27.820000000000200,42.05000000000000,4242.89,528.06,25.65999999999990,46.29000000000010,4561.88,601.53,41.67000000000010,60.85000000000000,4296.06,541.04,24.769999999999500,39.40000000000010,3997.89,498.33,17.559999999999900,34.04000000000000,3602.11,619.11,34.690000000000100,77.21000000000000,4274.57,595.85,48.32000000000060,79.23000000000000,3817.33,576.04,39.51000000000020,61.60000000000000,4206.23,546.04,26.450000000000700,48.64000000000000,3976.49,536.74,27.69000000000010,42.26000000000000,3484.95,568.89,39.2800000000002,70.82000000000010,3536.56,521.04,19.86999999999990,41.190000000000100,3730.32,499.05,20.44000000000010,36.53000000000000,4190.52,534.22,25.769999999999500,43.870000000000000,2952.05,527.99,26.759999999999800,42.24000000000000,4355.81,565.87,14.449999999999800,12.030000000000000,4157.57,552.17,27.850000000000400,51.46000000000000,4348.82,556.51,21.88000000000010,40.700000000000000 -758,3537.74,601.94,36.17000000000010,71.58999999999990,3601.95,518.94,18.840000000000100,41.39000000000000,4690.02,672.32,45.27999999999980,86.07999999999990,4060.63,698.41,46.909999999999900,88.77000000000000,4114.22,595.62,40.55000000000020,62.5,4078.81,555.8,27.74000000000020,41.950000000000000,4242.11,527.88,25.660000000000800,46.28000000000000,4562.73,601.61,41.65000000000060,61.0,4292.17,540.63,24.88000000000010,39.49000000000000,3995.95,498.05,17.550000000000200,34.04000000000000,3599.28,618.71,34.61999999999990,77.06999999999990,4271.62,595.71,48.31999999999970,79.24000000000000,3817.07,575.67,39.50999999999980,61.59000000000000,4204.93,546.06,26.46000000000000,48.6400000000001,3974.33,536.49,27.69000000000010,42.26000000000000,3485.33,568.63,39.21000000000000,70.62,3536.42,520.9,19.73999999999980,41.06000000000010,3729.97,498.77,20.43000000000030,36.53000000000000,4186.69,533.74,25.700000000000700,43.700000000000000,2952.71,527.94,26.759999999999800,42.239999999999900,4354.44,565.58,14.460000000000000,12.030000000000000,4155.47,551.86,27.800000000000200,51.28000000000000,4348.97,556.46,21.86999999999990,40.69999999999990 -759,3535.82,601.5,36.0,71.33000000000000,3601.44,518.68,18.790000000000000,41.280000000000100,4688.62,672.46,45.27000000000040,86.08999999999990,4056.74,698.61,46.909999999999900,88.77000000000000,4112.68,595.38,40.54999999999930,62.41000000000000,4077.93,555.61,27.67999999999980,41.85000000000000,4241.33,527.69,25.65999999999990,46.29000000000000,4563.58,601.7,41.64000000000030,61.14000000000000,4288.27,540.22,25.00999999999930,39.569999999999900,3994.0,497.77,17.559999999999900,34.040000000000000,3596.45,618.31,34.5600000000004,76.93000000000010,4268.66,595.58,48.32999999999990,79.2299999999999,3816.81,575.3,39.51000000000020,61.59000000000000,4203.63,546.08,26.46000000000000,48.63,3972.18,536.24,27.68000000000030,42.26000000000000,3485.71,568.36,39.13000000000010,70.42000000000000,3536.29,520.76,19.590000000000100,40.940000000000100,3729.62,498.49,20.43000000000030,36.53000000000000,4182.87,533.26,25.61999999999990,43.54000000000000,2953.37,527.89,26.76000000000020,42.24000000000000,4353.08,565.29,14.460000000000000,12.030000000000100,4153.36,551.56,27.76000000000020,51.09000000000000,4349.11,556.41,21.86999999999990,40.700000000000000 -760,3533.91,601.05,35.82999999999990,71.08000000000000,3600.94,518.41,18.73999999999980,41.190000000000100,4687.21,672.61,45.26999999999950,86.08000000000000,4052.84,698.81,46.909999999999900,88.7700000000001,4111.14,595.14,40.54999999999930,62.32000000000010,4077.05,555.42,27.61999999999990,41.74000000000000,4240.55,527.51,25.65999999999990,46.29000000000000,4564.42,601.78,41.63000000000010,61.29000000000010,4284.38,539.81,25.11999999999990,39.66000000000010,3992.06,497.5,17.550000000000200,34.040000000000000,3593.62,617.91,34.49000000000020,76.78000000000010,4265.71,595.44,48.32999999999990,79.2399999999999,3816.54,574.93,39.51000000000020,61.59000000000000,4202.33,546.1,26.46000000000000,48.63,3970.02,536.0,27.69000000000010,42.25,3486.09,568.1,39.059999999999900,70.22000000000000,3536.16,520.61,19.45000000000030,40.819999999999900,3729.27,498.21,20.42999999999980,36.53000000000000,4179.05,532.78,25.550000000000200,43.370000000000000,2954.03,527.83,26.759999999999800,42.24000000000000,4351.72,565.0,14.460000000000000,12.030000000000000,4151.25,551.25,27.72000000000030,50.92000000000000,4349.26,556.36,21.86999999999990,40.69999999999990 -761,3531.99,600.61,35.66000000000030,70.81999999999990,3600.43,518.14,18.70000000000030,41.09000000000000,4685.8,672.75,45.26999999999950,86.09000000000000,4048.95,699.01,46.91000000000030,88.77000000000000,4109.59,594.91,40.55999999999950,62.21000000000000,4076.17,555.23,27.550000000000200,41.64000000000000,4239.77,527.33,25.65999999999990,46.29000000000000,4565.27,601.86,41.61999999999990,61.43000000000000,4280.48,539.4,25.24000000000070,39.74000000000000,3990.11,497.22,17.559999999999900,34.040000000000000,3590.79,617.51,34.42999999999980,76.64000000000000,4262.76,595.31,48.32999999999990,79.23000000000000,3816.28,574.56,39.50999999999980,61.59000000000000,4201.04,546.12,26.44999999999980,48.63,3968.34,535.54,27.67999999999980,42.26000000000000,3486.47,567.84,38.99000000000020,70.02000000000000,3536.02,520.47,19.320000000000200,40.68999999999990,3728.92,497.93,20.42999999999980,36.53000000000000,4175.22,532.3,25.479999999999600,43.200000000000000,2954.7,527.78,26.76000000000020,42.24000000000000,4350.36,564.71,14.450000000000700,12.030000000000000,4149.14,550.95,27.6899999999996,50.72999999999990,4349.4,556.31,21.8700000000008,40.700000000000000 -762,3530.08,600.17,35.49000000000020,70.56000000000010,3599.92,517.87,18.65000000000010,41.0,4684.4,672.9,45.27000000000040,86.08000000000000,4045.05,699.21,46.91999999999960,88.77000000000000,4108.05,594.67,40.55000000000020,62.120000000000000,4075.9,555.21,27.49000000000020,41.54000000000000,4238.99,527.15,25.65999999999990,46.29000000000010,4566.11,601.95,41.61000000000060,61.569999999999900,4276.59,538.99,25.35999999999970,39.83000000000000,3988.17,496.94,17.549999999999700,34.04000000000000,3587.95,617.11,34.370000000000300,76.5,4259.81,595.17,48.32999999999990,79.24000000000000,3816.02,574.19,39.51000000000020,61.58999999999990,4199.74,546.14,26.46000000000000,48.63,3966.65,535.09,27.69000000000010,42.25,3486.85,567.57,38.91000000000030,69.81999999999990,3535.89,520.33,19.18000000000030,40.559999999999900,3728.56,497.65,20.44000000000010,36.53000000000000,4171.4,531.82,25.400000000000500,43.03000000000000,2955.36,527.73,26.759999999999800,42.24000000000000,4349.0,564.42,14.449999999999800,12.030000000000100,4147.03,550.64,27.650000000000500,50.55000000000010,4349.54,556.26,21.86999999999990,40.700000000000000 -763,3528.16,599.73,35.320000000000200,70.30000000000000,3599.42,517.6,18.59999999999990,40.90000000000000,4682.99,673.04,45.27000000000040,86.09000000000000,4041.16,699.4,46.91000000000030,88.78000000000000,4106.51,594.43,40.55000000000020,62.030000000000100,4075.63,555.18,27.42000000000010,41.440000000000100,4238.21,526.97,25.65999999999990,46.28000000000000,4566.96,602.03,41.60000000000040,61.72000000000000,4272.69,538.58,25.48000000000050,39.91000000000000,3986.22,496.66,17.5600000000004,34.04000000000000,3585.12,616.71,34.309999999999900,76.36000000000000,4256.86,595.04,48.32999999999990,79.24000000000000,3815.75,573.82,39.51000000000020,61.58999999999990,4198.44,546.16,26.46000000000000,48.63,3964.97,534.63,27.68000000000030,42.26000000000000,3487.23,567.31,38.84000000000020,69.62,3535.75,520.18,19.050000000000200,40.440000000000100,3728.21,497.37,20.44000000000010,36.53000000000000,4167.58,531.34,25.31999999999970,42.860000000000000,2956.02,527.68,26.76000000000020,42.24000000000000,4347.64,564.14,14.449999999999800,12.020000000000000,4144.92,550.34,27.60999999999970,50.360000000000000,4349.69,556.21,21.8700000000008,40.69999999999990 -764,3526.24,599.28,35.16000000000030,70.05000000000010,3598.91,517.33,18.559999999999900,40.80000000000000,4681.58,673.19,45.27000000000040,86.07999999999990,4037.26,699.6,46.91999999999960,88.78000000000000,4104.96,594.2,40.5600000000004,61.93000000000000,4075.36,555.16,27.360000000000100,41.33000000000000,4237.42,526.78,25.67000000000010,46.29000000000010,4567.8,602.12,41.59000000000020,61.85000000000000,4268.8,538.17,25.590000000000100,39.99000000000000,3984.28,496.38,17.549999999999700,34.050000000000000,3582.29,616.31,34.24000000000020,76.22000000000000,4253.91,594.9,48.32999999999990,79.24000000000000,3815.49,573.44,39.51000000000020,61.59999999999990,4197.14,546.18,26.46000000000000,48.63,3963.28,534.18,27.6899999999996,42.25,3487.61,567.05,38.77000000000000,69.41000000000010,3535.62,520.04,18.91000000000030,40.31000000000010,3727.86,497.09,20.42999999999980,36.53000000000000,4163.76,530.86,25.23999999999980,42.68999999999990,2956.68,527.63,26.76000000000020,42.24000000000000,4346.28,563.85,14.449999999999800,12.020000000000000,4142.81,550.03,27.56999999999970,50.180000000000100,4349.83,556.16,21.86999999999990,40.700000000000000 -765,3524.33,598.84,34.98000000000000,69.79000000000000,3598.4,517.06,18.509999999999800,40.71000000000000,4680.17,673.33,45.27999999999980,86.08999999999990,4033.37,699.8,46.91000000000030,88.78000000000010,4103.42,593.96,40.55000000000020,61.83999999999990,4075.09,555.13,27.300000000000200,41.23000000000000,4236.64,526.6,25.67000000000010,46.29000000000000,4568.65,602.2,41.57999999999990,62.0,4264.9,537.76,25.71000000000000,40.08000000000000,3982.33,496.11,17.559999999999900,34.040000000000000,3579.46,615.91,34.17999999999980,76.08000000000000,4250.96,594.77,48.32999999999990,79.24000000000000,3815.23,573.07,39.50999999999980,61.59999999999990,4195.85,546.2,26.44999999999980,48.63,3961.6,533.72,27.68000000000030,42.26000000000000,3487.99,566.79,38.690000000000100,69.21000000000000,3535.48,519.9,18.7800000000002,40.180000000000100,3727.51,496.8,20.42999999999980,36.54000000000000,4159.93,530.38,25.17999999999940,42.53000000000000,2957.34,527.57,26.759999999999800,42.239999999999900,4344.92,563.56,14.449999999999800,12.020000000000100,4140.7,549.73,27.529999999999700,49.99000000000000,4349.98,556.11,21.8700000000008,40.69999999999990 -766,3523.83,598.62,34.809999999999900,69.53000000000000,3597.9,516.79,18.46000000000000,40.610000000000000,4678.77,673.48,45.26999999999950,86.07999999999990,4029.47,700.0,46.92000000000010,88.78000000000000,4101.88,593.72,40.55000000000020,61.75,4074.82,555.11,27.23000000000000,41.13,4235.86,526.42,25.67000000000010,46.29000000000010,4569.49,602.28,41.57000000000060,62.15000000000000,4261.01,537.35,25.829999999999900,40.16000000000000,3980.39,495.83,17.550000000000200,34.04000000000000,3576.63,615.51,34.11999999999990,75.94000000000010,4248.01,594.63,48.31999999999970,79.24000000000000,3814.96,572.7,39.50999999999980,61.59999999999990,4194.04,546.22,26.46000000000000,48.63,3959.91,533.27,27.69000000000010,42.25,3488.37,566.52,38.61999999999990,69.01000000000000,3535.35,519.75,18.63999999999990,40.059999999999900,3727.16,496.52,20.43000000000030,36.54000000000000,4156.11,529.9,25.100000000000400,42.360000000000000,2958.0,527.52,26.76000000000020,42.24000000000000,4343.55,563.27,14.460000000000000,12.030000000000000,4138.6,549.42,27.479999999999600,49.81000000000010,4350.12,556.06,21.86999999999990,40.700000000000000 -767,3523.33,598.4,34.63999999999990,69.27000000000000,3597.39,516.52,18.42000000000010,40.52000000000000,4677.36,673.62,45.27000000000040,86.09000000000000,4025.58,700.2,46.909999999999900,88.78000000000000,4100.33,593.48,40.5600000000004,61.65000000000000,4074.55,555.08,27.17000000000010,41.03000000000000,4235.08,526.24,25.67000000000010,46.29000000000000,4570.34,602.37,41.55999999999950,62.29000000000000,4257.11,536.94,25.950000000000700,40.25,3978.44,495.55,17.559999999999900,34.04000000000000,3573.8,615.11,34.04999999999970,75.80000000000000,4245.06,594.5,48.31999999999970,79.24000000000000,3814.7,572.33,39.51000000000020,61.59999999999990,4192.24,546.24,26.46000000000000,48.63,3958.22,532.81,27.69000000000010,42.260000000000100,3488.75,566.26,38.54000000000000,68.81000000000010,3535.22,519.61,18.49000000000020,39.93999999999990,3726.81,496.24,20.42999999999980,36.53000000000000,4152.29,529.42,25.02000000000040,42.190000000000100,2958.66,527.47,26.76000000000020,42.24000000000000,4342.19,562.98,14.460000000000000,12.030000000000000,4136.49,549.11,27.44999999999980,49.63,4350.26,556.01,21.86999999999990,40.700000000000000 -768,3522.83,598.17,34.470000000000300,69.0200000000001,3596.88,516.25,18.36999999999990,40.42000000000000,4675.95,673.77,45.27000000000040,86.08000000000000,4021.68,700.4,46.92000000000010,88.78000000000000,4098.79,593.25,40.55000000000020,61.55000000000000,4074.28,555.06,27.09999999999990,40.92000000000010,4234.3,526.06,25.65999999999990,46.29000000000010,4571.18,602.45,41.54999999999930,62.43000000000000,4253.22,536.53,26.05999999999950,40.33000000000000,3976.5,495.27,17.550000000000200,34.040000000000000,3570.97,614.71,33.99000000000020,75.66000000000000,4242.11,594.36,48.32000000000060,79.24000000000000,3814.44,571.96,39.50999999999980,61.59999999999990,4190.43,546.26,26.46000000000000,48.63,3956.54,532.36,27.69000000000010,42.25,3489.13,566.0,38.4699999999998,68.60000000000000,3535.08,519.47,18.360000000000100,39.809999999999900,3726.45,495.96,20.44000000000010,36.53000000000000,4148.47,528.94,24.9399999999996,42.02000000000000,2959.32,527.42,26.759999999999800,42.24000000000000,4340.83,562.69,14.460000000000000,12.030000000000000,4134.38,548.81,27.40999999999990,49.440000000000100,4350.41,555.96,21.86999999999990,40.69999999999990 -769,3522.32,597.95,34.309999999999900,68.76000000000000,3596.38,515.98,18.31999999999970,40.319999999999900,4674.55,673.91,45.26999999999950,86.09000000000000,4017.79,700.6,46.909999999999900,88.78000000000000,4097.25,593.01,40.55000000000020,61.46000000000000,4074.01,555.03,27.040000000000000,40.83000000000000,4233.52,525.88,25.65999999999990,46.28000000000000,4572.03,602.53,41.54000000000000,62.58000000000000,4249.32,536.12,26.19000000000050,40.42000000000000,3974.55,495.0,17.559999999999900,34.040000000000000,3568.14,614.31,33.92000000000010,75.5200000000001,4239.16,594.23,48.31999999999970,79.24000000000000,3814.17,571.59,39.52000000000000,61.58999999999990,4188.63,546.28,26.46000000000000,48.63,3954.85,531.9,27.69000000000010,42.26000000000000,3489.51,565.73,38.39999999999960,68.41000000000000,3534.95,519.32,18.22000000000030,39.68999999999990,3726.1,495.68,20.43000000000030,36.53000000000000,4144.64,528.46,24.86999999999990,41.84999999999990,2959.98,527.37,26.759999999999800,42.24000000000000,4339.47,562.4,14.449999999999800,12.030000000000000,4132.27,548.5,27.36999999999990,49.26000000000000,4350.55,555.91,21.86999999999990,40.700000000000000 -770,3521.82,597.73,34.13999999999990,68.5,3595.87,515.71,18.2800000000002,40.23000000000000,4673.14,674.06,45.26999999999950,86.08000000000000,4013.9,700.8,46.909999999999900,88.78000000000010,4095.7,592.77,40.5600000000004,61.370000000000000,4073.74,555.01,26.97000000000030,40.72000000000000,4232.74,525.69,25.65999999999990,46.29000000000000,4572.87,602.62,41.52999999999980,62.72000000000000,4245.43,535.71,26.299999999999300,40.5,3972.61,494.72,17.549999999999700,34.040000000000000,3565.31,613.91,33.86000000000010,75.38,4236.2,594.09,48.32999999999990,79.24000000000000,3813.91,571.22,39.51000000000020,61.58999999999990,4186.83,546.3,26.44999999999980,48.63,3953.17,531.45,27.69000000000010,42.25,3489.89,565.47,38.32000000000020,68.19999999999990,3534.81,519.18,18.090000000000100,39.56000000000010,3725.5,495.63,20.42999999999980,36.53000000000000,4140.82,527.98,24.800000000000200,41.68999999999990,2960.64,527.31,26.76000000000020,42.24000000000000,4341.39,562.82,14.449999999999800,12.030000000000000,4130.16,548.2,27.329999999999900,49.07999999999990,4350.69,555.86,21.88000000000010,40.69999999999990 -771,3521.32,597.51,33.9699999999998,68.24000000000000,3595.36,515.44,18.23999999999980,40.13,4671.83,674.05,45.27000000000040,86.08000000000000,4010.0,701.0,46.909999999999900,88.78000000000000,4094.16,592.53,40.55000000000020,61.28000000000000,4073.47,554.98,26.91000000000030,40.620000000000000,4231.96,525.51,25.65999999999990,46.29000000000000,4573.72,602.7,41.51999999999950,62.8599999999999,4241.53,535.3,26.42000000000010,40.58000000000000,3970.66,494.44,17.559999999999900,34.04000000000000,3562.47,613.51,33.80000000000020,75.23000000000000,4233.25,593.96,48.32999999999990,79.24000000000000,3813.65,570.85,39.50999999999980,61.59000000000000,4185.02,546.32,26.459999999999100,48.63,3951.48,530.99,27.69000000000010,42.26000000000000,3490.27,565.21,38.25,68.0,3534.45,519.08,18.090000000000100,39.559999999999900,3724.89,495.58,20.44000000000010,36.53000000000000,4137.0,527.5,24.72000000000030,41.52000000000000,2961.3,527.26,26.759999999999800,42.24000000000000,4343.3,563.24,14.449999999999800,12.030000000000000,4128.05,547.89,27.290000000000000,48.90000000000000,4350.84,555.81,21.86999999999990,40.700000000000000 -772,3520.82,597.28,33.79999999999970,67.99000000000000,3594.86,515.17,18.17999999999980,40.030000000000100,4670.53,674.04,45.27000000000040,86.09000000000000,4006.11,701.2,46.909999999999900,88.78000000000000,4092.62,592.3,40.55000000000020,61.17000000000010,4073.2,554.96,26.840000000000100,40.51000000000000,4231.18,525.33,25.65999999999990,46.29000000000000,4574.57,602.78,41.5,63.01000000000000,4237.64,534.89,26.540000000000000,40.67000000000000,3968.71,494.16,17.559999999999900,34.04000000000000,3559.64,613.11,33.74000000000020,75.09000000000000,4230.3,593.82,48.32999999999990,79.2399999999999,3813.38,570.48,39.52000000000000,61.59000000000000,4183.22,546.34,26.46000000000000,48.63,3949.8,530.54,27.67999999999980,42.26000000000000,3490.65,564.95,38.17999999999980,67.79000000000000,3534.1,518.98,18.079999999999900,39.559999999999900,3724.29,495.53,20.42999999999980,36.53000000000000,4133.17,527.02,24.64999999999960,41.35000000000000,2961.96,527.21,26.759999999999800,42.24000000000000,4345.22,563.67,14.449999999999800,12.030000000000100,4125.94,547.59,27.25,48.70999999999990,4351.51,555.81,21.88000000000010,40.690000000000100 -773,3520.32,597.06,33.629999999999700,67.73000000000000,3594.35,514.9,18.13999999999990,39.940000000000100,4669.22,674.03,45.26999999999950,86.09000000000000,4002.21,701.4,46.909999999999900,88.78000000000000,4091.07,592.06,40.559999999999900,61.08000000000000,4072.93,554.93,26.7800000000002,40.42000000000010,4230.4,525.15,25.660000000000800,46.29000000000010,4575.41,602.87,41.5,63.15000000000000,4233.74,534.48,26.65999999999990,40.75,3966.77,493.88,17.559999999999900,34.040000000000000,3556.81,612.71,33.67000000000010,74.94999999999990,4227.35,593.69,48.32999999999990,79.2399999999999,3813.12,570.11,39.51000000000020,61.59000000000000,4181.42,546.36,26.44999999999980,48.63,3948.11,530.08,27.69000000000010,42.26000000000000,3491.03,564.68,38.09999999999990,67.60000000000000,3533.74,518.88,18.080000000000400,39.57000000000010,3723.69,495.47,20.42999999999980,36.53000000000000,4129.35,526.54,24.56999999999970,41.180000000000100,2962.62,527.16,26.76000000000020,42.24000000000000,4347.13,564.09,14.449999999999800,12.030000000000000,4123.84,547.28,27.19999999999980,48.53000000000000,4352.19,555.8,21.8700000000008,40.700000000000000 -774,3519.82,596.84,33.46000000000000,67.46999999999990,3593.85,514.63,18.090000000000100,39.84000000000000,4667.92,674.03,45.26999999999950,86.08000000000000,3998.32,701.6,46.909999999999900,88.78000000000000,4089.53,591.82,40.559999999999900,60.989999999999900,4072.66,554.91,26.72000000000030,40.31000000000010,4229.62,524.97,25.65999999999990,46.28000000000000,4576.26,602.95,41.47999999999960,63.30000000000000,4229.85,534.07,26.769999999999500,40.83999999999990,3964.82,493.61,17.559999999999900,34.040000000000000,3553.98,612.31,33.61000000000010,74.81000000000010,4224.4,593.55,48.32999999999990,79.24000000000000,3812.86,569.73,39.50999999999980,61.60000000000000,4179.61,546.38,26.46000000000000,48.63,3946.43,529.63,27.68000000000030,42.26000000000000,3491.42,564.42,38.02000000000000,67.40000000000010,3533.38,518.79,18.08999999999970,39.56000000000010,3723.08,495.42,20.43000000000030,36.53000000000000,4125.53,526.06,24.49000000000070,41.010000000000100,2963.28,527.11,26.759999999999800,42.24000000000000,4349.04,564.51,14.460000000000000,12.030000000000000,4121.73,546.98,27.17000000000010,48.34000000000000,4352.87,555.79,21.86999999999990,40.700000000000000 -775,3519.32,596.62,33.290000000000000,67.21000000000000,3593.34,514.36,18.040000000000000,39.75,4666.61,674.02,45.27000000000040,86.08000000000000,3994.42,701.8,46.92000000000010,88.78000000000010,4087.99,591.59,40.55000000000020,60.89000000000000,4072.39,554.88,26.65000000000010,40.21000000000000,4228.84,524.78,25.65999999999990,46.29000000000010,4577.1,603.04,41.47999999999960,63.430000000000100,4225.95,533.66,26.890000000000300,40.92000000000010,3962.88,493.33,17.559999999999900,34.04000000000000,3551.15,611.91,33.540000000000000,74.67000000000010,4221.45,593.42,48.32999999999990,79.24000000000000,3812.6,569.36,39.51000000000020,61.60000000000000,4177.81,546.4,26.46000000000000,48.63,3944.74,529.17,27.69000000000010,42.26000000000000,3491.8,564.16,37.9399999999996,67.19000000000010,3533.02,518.69,18.090000000000100,39.559999999999900,3722.48,495.37,20.42999999999980,36.53000000000000,4121.71,525.58,24.42000000000010,40.83999999999990,2963.94,527.05,26.759999999999800,42.24000000000000,4350.96,564.94,14.449999999999800,12.020000000000000,4119.62,546.67,27.13000000000010,48.16000000000010,4353.54,555.78,21.86999999999990,40.700000000000000 -776,3518.82,596.39,33.11999999999990,66.96000000000000,3592.83,514.09,18.0,39.65000000000000,4665.31,674.01,45.26999999999950,86.09000000000000,3990.53,702.0,46.909999999999900,88.78000000000000,4086.44,591.35,40.559999999999900,60.80000000000000,4072.12,554.86,26.590000000000100,40.10000000000000,4228.05,524.6,25.67000000000010,46.29000000000000,4577.95,603.12,41.46000000000000,63.58000000000000,4222.06,533.25,27.00999999999930,41.01000000000000,3960.93,493.05,17.559999999999900,34.04000000000000,3548.32,611.5,33.48000000000000,74.54000000000000,4218.5,593.28,48.31999999999970,79.24000000000000,3812.33,568.99,39.51000000000020,61.60000000000000,4176.0,546.41,26.46000000000000,48.64000000000000,3943.06,528.72,27.67999999999980,42.26000000000000,3492.18,563.89,37.870000000000300,67.0,3532.66,518.59,18.090000000000100,39.559999999999900,3721.87,495.32,20.44000000000010,36.53000000000000,4117.88,525.1,24.34999999999950,40.68000000000000,2964.6,527.0,26.76000000000020,42.24000000000000,4352.87,565.36,14.460000000000000,12.030000000000000,4117.51,546.37,27.090000000000100,47.97000000000000,4354.22,555.77,21.86999999999990,40.700000000000000 -777,3518.32,596.17,32.94999999999980,66.70000000000010,3592.33,513.83,17.950000000000300,39.54000000000000,4664.0,674.0,45.27000000000040,86.09000000000000,3986.63,702.2,46.92000000000010,88.77000000000000,4084.9,591.11,40.559999999999900,60.69999999999990,4071.85,554.83,26.520000000000000,40.01000000000000,4227.27,524.42,25.669999999999200,46.29000000000010,4578.79,603.2,41.46000000000000,63.72999999999990,4218.89,532.83,27.13000000000010,41.08999999999990,3958.99,492.77,17.5600000000004,34.040000000000000,3545.49,611.1,33.41000000000030,74.40000000000000,4215.55,593.15,48.31999999999970,79.24000000000000,3812.07,568.62,39.50999999999980,61.60000000000000,4174.2,546.43,26.46000000000000,48.63,3941.37,528.26,27.69000000000010,42.26000000000000,3492.56,563.63,37.80000000000020,66.79000000000000,3532.3,518.49,18.08999999999970,39.559999999999900,3721.27,495.26,20.42999999999980,36.53000000000000,4114.06,524.62,24.269999999999500,40.51000000000000,2965.26,526.95,26.759999999999800,42.24000000000000,4354.79,565.78,14.449999999999800,12.030000000000000,4115.4,546.06,27.050000000000200,47.79000000000010,4354.89,555.76,21.88000000000010,40.700000000000000 -778,3517.82,595.95,32.779999999999700,66.43999999999990,3591.82,513.56,17.899999999999600,39.450000000000000,4662.7,674.0,45.27000000000040,86.08000000000000,3982.74,702.4,46.91000000000030,88.77000000000000,4083.36,590.87,40.54999999999970,60.610000000000000,4071.58,554.81,26.46000000000000,39.90000000000010,4226.49,524.24,25.67000000000010,46.29000000000000,4579.64,603.29,41.4399999999996,63.870000000000000,4215.73,532.41,27.25,41.17000000000010,3957.04,492.49,17.559999999999900,34.040000000000000,3542.66,610.7,33.350000000000400,74.26000000000000,4212.6,593.01,48.31999999999970,79.24000000000000,3811.81,568.25,39.51000000000020,61.60000000000000,4172.4,546.45,26.450000000000700,48.63,3939.69,527.81,27.67999999999980,42.260000000000100,3492.94,563.37,37.7199999999998,66.59000000000000,3531.94,518.39,18.090000000000100,39.56000000000010,3720.66,495.21,20.44000000000010,36.53000000000000,4110.24,524.14,24.19000000000050,40.34000000000000,2965.92,526.9,26.759999999999800,42.24000000000000,4356.7,566.2,14.460000000000000,12.030000000000000,4113.29,545.76,27.01000000000020,47.60000000000000,4355.57,555.75,21.86999999999990,40.700000000000000 -779,3517.32,595.73,32.60999999999970,66.18000000000000,3591.31,513.29,17.860000000000100,39.35000000000000,4661.39,673.99,45.26999999999950,86.08000000000000,3978.84,702.6,46.92000000000010,88.77000000000000,4081.81,590.64,40.559999999999900,60.51000000000000,4071.31,554.78,26.38999999999990,39.80000000000010,4225.71,524.06,25.67000000000010,46.29000000000010,4580.48,603.37,41.44000000000050,64.01000000000000,4212.57,531.99,27.360000000000600,41.25,3955.1,492.22,17.559999999999900,34.040000000000000,3539.82,610.3,33.290000000000000,74.12,4209.65,592.88,48.32000000000060,79.24000000000000,3811.54,567.88,39.51000000000020,61.60000000000000,4170.59,546.47,26.46000000000000,48.63,3938.0,527.35,27.69000000000010,42.26000000000000,3493.32,563.11,37.64999999999960,66.38,3531.58,518.29,18.090000000000100,39.57000000000010,3720.06,495.16,20.42999999999980,36.53000000000000,4106.42,523.66,24.10999999999970,40.17000000000010,2966.58,526.85,26.76000000000020,42.24000000000000,4358.62,566.63,14.449999999999800,12.030000000000000,4111.18,545.45,26.969999999999300,47.42000000000000,4356.25,555.75,21.86999999999990,40.690000000000100 -780,3516.81,595.5,32.45000000000030,65.93000000000000,3590.81,513.02,17.809999999999900,39.26000000000000,4660.09,673.98,45.26999999999950,86.07999999999990,3974.95,702.8,46.91000000000030,88.7700000000001,4080.27,590.4,40.559999999999900,60.42000000000010,4071.04,554.76,26.329999999999900,39.690000000000100,4224.93,523.87,25.65999999999990,46.29000000000000,4581.33,603.45,41.42000000000010,64.16000000000000,4209.4,531.56,27.49000000000070,41.34000000000000,3953.15,491.94,17.559999999999900,34.04000000000000,3538.15,609.94,33.23000000000000,73.96999999999990,4206.69,592.74,48.33000000000080,79.24000000000000,3811.28,567.51,39.50999999999980,61.59000000000000,4168.79,546.49,26.46000000000000,48.63,3936.32,526.9,27.67999999999980,42.26000000000000,3493.7,562.84,37.58000000000040,66.18999999999990,3531.23,518.2,18.079999999999900,39.559999999999900,3719.46,495.11,20.42999999999980,36.53000000000000,4102.59,523.18,24.050000000000200,40.0,2967.24,526.79,26.76000000000020,42.24000000000000,4360.53,567.05,14.460000000000000,12.030000000000100,4109.07,545.15,26.94000000000050,47.24000000000000,4356.92,555.74,21.86999999999990,40.68999999999990 -781,3516.31,595.28,32.2800000000002,65.67000000000010,3590.3,512.75,17.770000000000000,39.16000000000000,4658.78,673.97,45.27000000000040,86.08999999999990,3971.05,703.0,46.91999999999960,88.77000000000000,4078.73,590.16,40.54999999999970,60.33000000000000,4070.77,554.73,26.259999999999800,39.60000000000000,4224.15,523.69,25.660000000000800,46.29000000000000,4582.17,603.54,41.42000000000010,64.30000000000010,4206.24,531.14,27.600000000000400,41.42000000000000,3951.21,491.66,17.559999999999900,34.04000000000000,3536.48,609.58,33.159999999999900,73.82999999999990,4203.74,592.61,48.32999999999990,79.24000000000000,3811.02,567.14,39.51000000000020,61.59000000000000,4166.98,546.51,26.46000000000000,48.63,3934.63,526.44,27.69000000000010,42.26000000000000,3494.08,562.58,37.5,65.9799999999999,3530.87,518.1,18.079999999999900,39.559999999999900,3718.85,495.05,20.44000000000010,36.53000000000000,4098.77,522.7,23.969999999999300,39.83999999999990,2967.9,526.74,26.759999999999800,42.24000000000000,4362.45,567.47,14.449999999999800,12.030000000000000,4108.04,544.89,26.890000000000300,47.05000000000010,4357.6,555.73,21.86999999999990,40.69999999999990 -782,3515.81,595.06,32.11000000000010,65.41000000000010,3589.79,512.48,17.720000000000300,39.059999999999900,4657.48,673.96,45.27000000000040,86.08999999999990,3967.16,703.2,46.91000000000030,88.77000000000000,4077.18,589.92,40.559999999999900,60.24000000000000,4070.5,554.71,26.19999999999980,39.49000000000000,4223.37,523.51,25.65999999999990,46.29000000000000,4583.02,603.62,41.39999999999960,64.43999999999990,4203.08,530.72,27.72000000000030,41.5,3949.26,491.38,17.559999999999900,34.040000000000000,3534.81,609.21,33.090000000000100,73.69999999999990,4200.79,592.47,48.32999999999990,79.24000000000000,3810.75,566.77,39.51000000000020,61.59000000000000,4165.18,546.53,26.46000000000000,48.63,3933.09,526.51,27.67999999999980,42.26000000000000,3494.46,562.32,37.42999999999980,65.78000000000000,3530.51,518.0,18.08999999999970,39.559999999999900,3718.25,495.0,20.42999999999980,36.53000000000000,4094.95,522.22,23.890000000000300,39.67000000000000,2968.56,526.69,26.76000000000020,42.239999999999900,4364.36,567.9,14.460000000000000,12.020000000000000,4107.0,544.63,26.850000000000400,46.870000000000000,4358.28,555.72,21.86999999999990,40.69999999999990 -783,3515.31,594.84,31.94000000000010,65.15000000000000,3589.29,512.21,17.670000000000100,38.96999999999990,4656.17,673.96,45.26999999999950,86.07999999999990,3963.27,703.39,46.909999999999900,88.78000000000000,4075.64,589.69,40.559999999999900,60.13,4071.27,554.75,26.20000000000030,39.49000000000000,4222.59,523.33,25.65999999999990,46.29000000000000,4583.86,603.71,41.40000000000060,64.57999999999990,4199.92,530.3,27.829999999999900,41.58000000000000,3947.32,491.11,17.559999999999900,34.040000000000000,3533.14,608.85,33.0300000000002,73.55000000000000,4197.84,592.34,48.32999999999990,79.24000000000000,3810.49,566.4,39.51000000000020,61.59000000000000,4163.38,546.55,26.44999999999980,48.63,3931.55,526.58,27.67999999999980,42.25,3494.84,562.05,37.34999999999990,65.58000000000000,3530.15,517.9,18.08999999999970,39.56000000000010,3717.64,494.95,20.44000000000010,36.53000000000000,4091.12,521.74,23.81999999999970,39.5,2969.22,526.64,26.76000000000020,42.24000000000000,4364.08,567.97,14.449999999999800,12.030000000000000,4105.96,544.36,26.81999999999970,46.68999999999990,4358.95,555.71,21.86999999999990,40.69999999999990 -784,3514.81,594.61,31.770000000000000,64.90000000000000,3588.78,511.94,17.629999999999700,38.87000000000000,4654.87,673.95,45.27000000000040,86.07999999999990,3959.37,703.59,46.91000000000030,88.78000000000000,4074.1,589.45,40.54999999999970,60.04000000000000,4072.04,554.79,26.19999999999980,39.49000000000000,4221.81,523.15,25.65999999999990,46.29000000000010,4584.71,603.79,41.38000000000010,64.73000000000000,4196.75,529.87,27.96000000000000,41.68000000000000,3945.37,490.83,17.559999999999900,34.04000000000000,3531.46,608.49,32.9699999999998,73.41000000000000,4194.89,592.2,48.32999999999990,79.24000000000000,3810.23,566.03,39.50999999999980,61.59000000000000,4161.57,546.57,26.46000000000000,48.63,3930.0,526.64,27.69000000000010,42.26000000000000,3495.22,561.79,37.2800000000002,65.38,3529.79,517.8,18.090000000000100,39.56000000000010,3717.04,494.9,20.42999999999980,36.53000000000000,4087.3,521.26,23.73999999999980,39.33000000000000,2969.88,526.59,26.759999999999800,42.24000000000000,4363.8,568.04,14.449999999999800,12.030000000000100,4104.93,544.1,26.769999999999500,46.51000000000000,4359.63,555.7,21.86999999999990,40.69999999999990 -785,3514.31,594.39,31.59999999999990,64.64000000000000,3588.27,511.67,17.579999999999900,38.77000000000000,4653.56,673.94,45.26999999999950,86.08999999999990,3955.48,703.79,46.909999999999900,88.78000000000010,4072.55,589.21,40.55999999999950,59.94999999999990,4072.81,554.83,26.20000000000030,39.49000000000000,4221.03,522.97,25.65999999999990,46.28000000000000,4585.56,603.87,41.36999999999990,64.88,4193.59,529.45,28.06999999999970,41.76000000000000,3943.61,491.21,17.58999999999970,33.410000000000000,3529.79,608.13,32.909999999999900,73.27000000000000,4191.94,592.07,48.33000000000080,79.2399999999999,3810.77,566.2,39.51000000000020,61.58999999999990,4159.77,546.59,26.459999999999100,48.63,3928.46,526.71,27.69000000000010,42.26000000000000,3495.6,561.53,37.21000000000000,65.17000000000010,3529.43,517.7,18.090000000000100,39.569999999999900,3716.44,494.84,20.42999999999980,36.53000000000000,4083.48,520.78,23.66999999999960,39.16000000000010,2970.54,526.53,26.76000000000020,42.24000000000000,4363.51,568.12,14.449999999999800,12.030000000000000,4103.89,543.84,26.729999999999600,46.319999999999900,4360.3,555.69,21.88000000000010,40.69999999999990 -786,3513.81,594.17,31.42999999999980,64.38,3587.77,511.4,17.5300000000002,38.680000000000100,4652.25,673.93,45.27999999999980,86.09000000000000,3951.58,703.99,46.909999999999900,88.78000000000000,4071.01,588.98,40.55999999999950,59.85000000000000,4073.58,554.87,26.19999999999980,39.5,4220.25,522.78,25.65999999999990,46.29000000000010,4586.4,603.96,41.36000000000060,65.01000000000000,4190.43,529.03,28.1899999999996,41.84000000000000,3941.85,491.59,17.610000000000100,32.78000000000000,3528.12,607.76,32.840000000000100,73.13,4188.99,591.93,48.32000000000060,79.24000000000000,3811.3,566.37,39.52000000000000,61.59000000000000,4157.97,546.61,26.44999999999980,48.63,3926.92,526.78,27.67999999999980,42.26000000000000,3495.98,561.27,37.13000000000010,64.97000000000000,3529.07,517.61,18.08999999999970,39.559999999999900,3715.83,494.79,20.43000000000030,36.53000000000000,4079.66,520.3,23.590000000000100,38.99000000000000,2971.2,526.48,26.76000000000020,42.24000000000000,4363.23,568.19,14.450000000000700,12.030000000000000,4102.85,543.58,26.69999999999980,46.14000000000000,4360.98,555.68,21.8700000000008,40.700000000000000 -787,3513.31,593.95,31.26000000000020,64.12,3586.96,511.21,17.529999999999700,38.68000000000000,4650.95,673.93,45.27000000000040,86.08000000000000,3947.69,704.19,46.909999999999900,88.78000000000000,4069.47,588.74,40.559999999999900,59.76000000000000,4074.35,554.91,26.20000000000030,39.5,4219.47,522.6,25.65999999999990,46.29000000000000,4587.25,604.04,41.35000000000040,65.16000000000010,4187.26,528.6,28.30999999999950,41.93000000000000,3940.08,491.97,17.65000000000010,32.15000000000000,3526.45,607.4,32.7800000000002,72.99000000000000,4186.04,591.8,48.31999999999970,79.24000000000000,3811.84,566.54,39.52000000000000,61.59000000000000,4156.16,546.63,26.46000000000000,48.63,3925.37,526.84,27.69000000000010,42.26000000000000,3496.36,561.0,37.059999999999900,64.77000000000000,3528.71,517.51,18.090000000000100,39.56000000000010,3713.58,494.62,20.43000000000030,36.53000000000000,4075.83,519.82,23.52000000000040,38.82999999999990,2971.86,526.43,26.759999999999800,42.24000000000000,4362.94,568.27,14.460000000000000,12.020000000000000,4101.82,543.32,26.650000000000500,45.94999999999990,4362.05,555.84,21.86999999999990,40.69999999999990 -788,3512.81,593.72,31.090000000000100,63.870000000000000,3586.16,511.02,17.5300000000002,38.680000000000100,4649.64,673.92,45.27999999999980,86.08000000000000,3943.79,704.39,46.92000000000010,88.78000000000000,4067.92,588.5,40.55999999999950,59.66000000000000,4075.13,554.95,26.19999999999980,39.5,4218.69,522.42,25.660000000000800,46.29000000000010,4587.59,604.02,41.349999999999500,65.16000000000000,4184.1,528.18,28.42999999999940,42.010000000000100,3938.32,492.36,17.679999999999800,31.520000000000000,3524.78,607.04,32.70999999999960,72.85000000000000,4183.09,591.66,48.31999999999970,79.24000000000000,3812.38,566.71,39.50999999999980,61.58999999999990,4154.36,546.65,26.46000000000000,48.63,3923.83,526.91,27.69000000000010,42.26000000000000,3496.74,560.74,36.98000000000000,64.56999999999990,3528.36,517.41,18.079999999999900,39.56000000000010,3711.32,494.44,20.44000000000010,36.53000000000000,4072.01,519.34,23.4399999999996,38.66000000000000,2972.52,526.38,26.76000000000020,42.24000000000000,4362.66,568.34,14.449999999999800,12.030000000000000,4100.78,543.06,26.610000000000600,45.770000000000100,4363.11,556.0,21.86999999999990,40.700000000000000 -789,3512.31,593.5,30.92000000000010,63.610000000000000,3585.35,510.83,17.5300000000002,38.68000000000000,4648.28,674.06,45.27000000000040,86.08000000000000,3939.9,704.59,46.909999999999900,88.78000000000000,4066.38,588.26,40.55999999999950,59.57000000000010,4075.9,555.0,26.20000000000030,39.49000000000000,4217.9,522.24,25.67000000000010,46.29000000000000,4587.93,603.99,41.349999999999500,65.16000000000000,4180.94,527.76,28.550000000000200,42.09000000000000,3936.55,492.74,17.7199999999998,30.890000000000000,3523.11,606.67,32.65000000000010,72.71000000000000,4180.14,591.53,48.31999999999970,79.24000000000000,3812.92,566.88,39.50999999999980,61.59000000000000,4152.55,546.67,26.46000000000000,48.63,3922.29,526.98,27.67999999999980,42.26000000000000,3497.12,560.48,36.91000000000030,64.37,3528.0,517.31,18.079999999999900,39.56000000000010,3709.07,494.27,20.42999999999980,36.53000000000000,4068.19,518.86,23.360000000000100,38.49000000000000,2973.18,526.33,26.76000000000020,42.24000000000000,4362.37,568.41,14.460000000000000,12.030000000000100,4099.74,542.8,26.579999999999900,45.59000000000000,4364.17,556.16,21.88000000000010,40.690000000000100 -790,3511.81,593.28,30.75,63.35000000000000,3584.55,510.64,17.529999999999700,38.680000000000100,4646.91,674.19,45.27000000000040,86.08999999999990,3936.0,704.79,46.92000000000010,88.78000000000010,4064.84,588.03,40.55999999999950,59.47000000000000,4076.67,555.04,26.19999999999980,39.49000000000000,4217.12,522.06,25.67000000000010,46.280000000000100,4588.27,603.97,41.349999999999500,65.16000000000000,4177.78,527.34,28.65999999999990,42.17000000000000,3934.79,493.12,17.740000000000200,30.26000000000000,3521.43,606.31,32.590000000000100,72.57000000000010,4177.18,591.39,48.32999999999990,79.24000000000000,3813.46,567.05,39.50999999999980,61.60000000000000,4150.75,546.69,26.46000000000000,48.63,3920.75,527.05,27.67999999999980,42.25,3497.5,560.21,36.84000000000020,64.17000000000000,3527.64,517.21,18.090000000000100,39.559999999999900,3706.81,494.09,20.44000000000010,36.53000000000000,4064.37,518.38,23.290000000000000,38.32000000000010,2973.84,526.27,26.759999999999800,42.24000000000000,4362.09,568.49,14.449999999999800,12.030000000000000,4098.7,542.54,26.540000000000000,45.40000000000010,4365.24,556.31,21.86999999999990,40.700000000000000 -791,3511.3,593.06,30.58999999999970,63.09000000000000,3583.74,510.45,17.5300000000002,38.68000000000000,4645.55,674.33,45.26999999999950,86.08999999999990,3932.11,704.99,46.909999999999900,88.78000000000000,4063.29,587.79,40.5600000000004,59.38,4077.44,555.08,26.20000000000030,39.49000000000000,4216.34,521.87,25.67000000000010,46.29000000000000,4588.6,603.95,41.35999999999970,65.16000000000000,4174.61,526.91,28.790000000000000,42.26000000000000,3933.03,493.5,17.770000000000000,29.630000000000000,3519.76,605.95,32.52000000000000,72.43000000000000,4174.23,591.26,48.33000000000080,79.24000000000000,3814.0,567.22,39.51000000000020,61.60000000000000,4149.73,546.71,26.46000000000000,48.63,3919.2,527.11,27.69000000000010,42.26000000000000,3497.88,559.95,36.75999999999980,63.96999999999990,3527.28,517.11,18.08999999999970,39.569999999999900,3704.56,493.92,20.42999999999980,36.53000000000000,4060.54,517.9,23.22000000000030,38.15000000000000,2974.5,526.22,26.76000000000020,42.24000000000000,4361.81,568.56,14.449999999999800,12.030000000000100,4097.67,542.28,26.48999999999980,45.22000000000000,4366.3,556.47,21.86999999999990,40.69999999999990 -792,3510.8,592.83,30.41999999999960,62.83999999999990,3582.94,510.26,17.529999999999700,38.680000000000100,4644.18,674.47,45.26999999999950,86.07999999999990,3928.21,705.19,46.92000000000010,88.78000000000000,4061.75,587.55,40.5600000000004,59.29000000000010,4078.21,555.12,26.19999999999980,39.49000000000000,4215.56,521.69,25.669999999999200,46.29000000000000,4588.94,603.93,41.36000000000060,65.16000000000010,4171.45,526.49,28.900000000000500,42.35000000000000,3931.26,493.89,17.809999999999900,28.99000000000000,3518.09,605.58,32.46000000000000,72.29000000000000,4171.28,591.12,48.32999999999990,79.24000000000000,3814.54,567.39,39.51000000000020,61.60000000000000,4148.72,546.73,26.46000000000000,48.63,3917.66,527.18,27.69000000000010,42.260000000000100,3498.26,559.69,36.6899999999996,63.76000000000000,3526.92,517.02,18.090000000000100,39.56000000000010,3702.3,493.74,20.4399999999996,36.53000000000000,4056.72,517.42,23.140000000000300,37.99000000000000,2975.16,526.17,26.76000000000020,42.24000000000000,4362.37,567.23,14.449999999999800,12.020000000000000,4096.63,542.02,26.46000000000000,45.03000000000000,4367.37,556.63,21.86999999999990,40.690000000000100 -793,3510.3,592.61,30.25,62.58000000000000,3582.13,510.08,17.529999999999700,38.670000000000000,4642.81,674.61,45.26999999999950,86.08000000000000,3924.32,705.39,46.909999999999900,88.78000000000000,4060.21,587.31,40.5600000000004,59.200000000000000,4078.98,555.16,26.20000000000030,39.5,4214.78,521.51,25.65999999999990,46.29000000000000,4589.28,603.9,41.36000000000060,65.16000000000000,4168.29,526.07,29.02000000000040,42.43000000000000,3929.5,494.27,17.829999999999900,28.360000000000000,3516.42,605.22,32.38999999999990,72.15000000000000,4168.33,590.99,48.32999999999990,79.24000000000000,3815.08,567.56,39.51000000000020,61.60000000000000,4147.7,546.75,26.46000000000000,48.63,3916.12,527.25,27.68000000000030,42.25,3498.64,559.43,36.620000000000300,63.56000000000010,3526.56,516.92,18.090000000000100,39.56000000000010,3700.05,493.57,20.42999999999980,36.53000000000000,4052.9,516.94,23.059999999999900,37.819999999999900,2975.82,526.12,26.759999999999800,42.24000000000000,4362.93,565.89,14.449999999999800,12.030000000000000,4095.59,541.76,26.42000000000010,44.85000000000000,4368.43,556.78,21.86999999999990,40.700000000000000 -794,3509.8,592.39,30.079999999999900,62.32000000000010,3581.33,509.89,17.5300000000002,38.67000000000000,4641.45,674.74,45.27000000000040,86.09000000000000,3920.42,705.59,46.92000000000010,88.78000000000000,4058.66,587.08,40.5600000000004,59.08999999999990,4079.75,555.2,26.19999999999980,39.5,4214.0,521.33,25.65999999999990,46.29000000000000,4589.62,603.88,41.35999999999970,65.16000000000000,4165.12,525.65,29.140000000000300,42.51000000000000,3927.73,494.65,17.86999999999990,27.74000000000000,3514.75,604.86,32.32999999999990,72.01000000000000,4165.38,590.85,48.32999999999990,79.24000000000000,3815.62,567.73,39.51000000000020,61.60000000000000,4146.68,546.77,26.46000000000000,48.63,3914.57,527.31,27.69000000000010,42.260000000000100,3499.02,559.16,36.54000000000000,63.360000000000000,3526.2,516.82,18.090000000000100,39.559999999999900,3697.8,493.39,20.42999999999980,36.54000000000000,4049.07,516.46,22.98999999999980,37.65000000000000,2976.48,526.07,26.759999999999800,42.239999999999900,4363.49,564.55,14.460000000000000,12.030000000000100,4094.56,541.5,26.370000000000300,44.66000000000000,4369.5,556.94,21.86999999999990,40.69999999999990 -795,3509.3,592.17,29.90999999999990,62.06000000000010,3580.52,509.7,17.5300000000002,38.68000000000000,4640.08,674.88,45.27000000000040,86.09000000000000,3916.53,705.79,46.909999999999900,88.78000000000010,4057.12,586.84,40.5600000000004,59.0,4080.52,555.25,26.20000000000030,39.49000000000000,4213.22,521.15,25.65999999999990,46.29000000000010,4589.96,603.86,41.35999999999970,65.16000000000000,4161.96,525.22,29.26000000000020,42.60000000000000,3925.97,495.03,17.90000000000010,27.110000000000000,3513.07,604.5,32.27000000000000,71.86000000000000,4162.43,590.72,48.32999999999990,79.24000000000000,3816.16,567.91,39.51000000000020,61.59000000000000,4145.67,546.78,26.46000000000000,48.64000000000000,3913.03,527.38,27.6899999999996,42.26000000000000,3499.4,558.9,36.4699999999998,63.16000000000000,3525.84,516.72,18.08999999999970,39.559999999999900,3695.54,493.22,20.42999999999980,36.53000000000000,4045.25,515.98,22.92000000000010,37.48000000000000,2977.14,526.01,26.76000000000020,42.24000000000000,4364.05,563.22,14.460000000000000,12.030000000000000,4093.52,541.24,26.33999999999970,44.48000000000000,4370.56,557.1,21.86999999999990,40.69999999999990 -796,3508.8,591.94,29.73999999999980,61.809999999999900,3579.72,509.51,17.5300000000002,38.680000000000100,4638.71,675.02,45.27999999999980,86.09000000000000,3912.64,705.99,46.91000000000030,88.78000000000000,4055.58,586.6,40.5600000000004,58.91000000000000,4081.29,555.29,26.19999999999980,39.49000000000000,4212.44,520.97,25.660000000000800,46.28000000000000,4590.3,603.83,41.35999999999970,65.16000000000000,4158.8,524.8,29.36999999999990,42.680000000000100,3924.21,495.42,17.920000000000100,26.47000000000000,3511.4,604.13,32.21000000000000,71.73000000000000,4159.48,590.58,48.33000000000080,79.24000000000000,3816.7,568.08,39.51000000000020,61.58999999999990,4144.65,546.8,26.46000000000000,48.6400000000001,3911.49,527.45,27.68000000000030,42.26000000000000,3499.15,558.99,36.4699999999998,63.16000000000000,3525.49,516.62,18.080000000000400,39.559999999999900,3693.29,493.05,20.42999999999980,36.53000000000000,4041.43,515.5,22.840000000000100,37.309999999999900,2977.8,525.96,26.759999999999800,42.24000000000000,4364.62,561.88,14.449999999999800,12.030000000000000,4092.48,540.98,26.299999999999700,44.30000000000000,4371.63,557.25,21.86999999999990,40.700000000000000 -797,3508.3,591.72,29.56999999999970,61.55000000000000,3578.91,509.32,17.5300000000002,38.68000000000000,4637.35,675.16,45.26999999999950,86.08000000000000,3908.74,706.19,46.91000000000030,88.77000000000000,4054.03,586.37,40.559999999999900,58.809999999999900,4082.06,555.33,26.20000000000030,39.49000000000000,4211.66,520.78,25.65999999999990,46.29000000000010,4590.64,603.81,41.35999999999970,65.16000000000010,4155.63,524.38,29.5,42.76000000000000,3922.44,495.8,17.960000000000000,25.84000000000000,3509.73,603.77,32.13999999999990,71.58000000000000,4156.53,590.45,48.32000000000060,79.24000000000000,3817.23,568.25,39.52000000000000,61.59000000000000,4143.64,546.82,26.44999999999980,48.63,3909.94,527.51,27.69000000000010,42.26000000000000,3498.89,559.08,36.470000000000300,63.16000000000000,3525.13,516.52,18.079999999999900,39.57000000000010,3691.03,492.87,20.42999999999980,36.53000000000000,4037.61,515.02,22.759999999999800,37.14000000000000,2978.46,525.91,26.759999999999800,42.24000000000000,4365.18,560.55,14.449999999999800,12.020000000000100,4091.44,540.72,26.259999999999800,44.110000000000000,4372.69,557.41,21.8700000000008,40.700000000000000 -798,3507.8,591.5,29.39999999999960,61.29000000000000,3578.1,509.13,17.540000000000000,38.68000000000000,4635.98,675.3,45.27000000000040,86.08000000000000,3904.85,706.39,46.91000000000030,88.77000000000000,4052.49,586.13,40.5600000000004,58.72000000000000,4082.83,555.37,26.19999999999980,39.49000000000000,4210.88,520.6,25.65999999999990,46.29000000000000,4590.98,603.79,41.36000000000060,65.16000000000010,4152.47,523.95,29.60999999999970,42.84999999999990,3920.45,495.65,17.960000000000000,25.850000000000000,3508.06,603.41,32.07999999999990,71.44000000000010,4153.58,590.31,48.31999999999970,79.24000000000000,3817.77,568.42,39.51000000000020,61.59000000000000,4142.62,546.84,26.46000000000000,48.63,3908.4,527.58,27.69000000000010,42.26000000000000,3498.64,559.17,36.470000000000300,63.16000000000010,3524.77,516.43,18.090000000000100,39.56000000000010,3688.78,492.7,20.42999999999980,36.53000000000000,4033.78,514.54,22.6899999999996,36.98000000000000,2979.12,525.86,26.76000000000020,42.24000000000000,4365.74,559.21,14.449999999999800,12.030000000000000,4090.41,540.46,26.21000000000000,43.93000000000000,4373.76,557.57,21.86999999999990,40.69999999999990 -799,3507.3,591.28,29.23000000000000,61.03000000000000,3577.3,508.94,17.529999999999700,38.68000000000000,4634.62,675.43,45.27000000000040,86.09000000000000,3900.95,706.59,46.91000000000030,88.77000000000000,4050.95,585.89,40.5600000000004,58.620000000000000,4083.61,555.41,26.20000000000030,39.49000000000000,4210.1,520.42,25.65999999999990,46.29000000000010,4591.32,603.76,41.36000000000060,65.16000000000000,4149.31,523.53,29.729999999999600,42.930000000000100,3918.46,495.51,17.960000000000000,25.840000000000000,3506.39,603.04,32.01000000000020,71.31000000000010,4150.63,590.18,48.31999999999970,79.24000000000000,3818.31,568.59,39.51000000000020,61.58999999999990,4141.6,546.86,26.46000000000000,48.63,3906.86,527.65,27.69000000000010,42.26000000000000,3498.39,559.26,36.470000000000300,63.16000000000000,3524.41,516.33,18.090000000000100,39.559999999999900,3687.17,492.69,20.360000000000100,36.49000000000000,4029.96,514.06,22.610000000000100,36.81000000000010,2979.78,525.8,26.759999999999800,42.24000000000000,4366.3,557.87,14.460000000000000,12.030000000000000,4089.37,540.19,26.18000000000030,43.75,4374.82,557.73,21.86999999999990,40.68999999999990 -800,3506.8,591.05,29.059999999999900,60.780000000000100,3576.49,508.75,17.54000000000040,38.68000000000000,4633.25,675.57,45.27000000000040,86.08999999999990,3897.06,706.79,46.909999999999900,88.77000000000000,4049.4,585.65,40.56999999999970,58.53000000000000,4084.38,555.45,26.19999999999980,39.5,4209.32,520.24,25.65999999999990,46.29000000000000,4591.66,603.74,41.36000000000060,65.16000000000000,4146.15,523.11,29.840000000000100,43.02000000000000,3916.47,495.36,17.960000000000000,25.840000000000000,3505.42,602.71,31.94999999999980,71.16000000000000,4147.68,590.04,48.31999999999970,79.24000000000000,3818.85,568.76,39.51000000000020,61.60000000000000,4140.59,546.88,26.46000000000000,48.63,3905.32,527.72,27.67999999999980,42.25,3498.13,559.35,36.4699999999998,63.16000000000000,3524.05,516.23,18.08999999999970,39.559999999999900,3685.56,492.69,20.2800000000002,36.45000000000000,4026.77,513.8,22.540000000000000,36.6400000000001,2980.44,525.75,26.759999999999800,42.24000000000000,4367.49,561.0,14.449999999999800,12.030000000000000,4088.33,539.93,26.140000000000300,43.57000000000010,4375.89,557.88,21.86999999999990,40.700000000000000 -801,3506.3,590.83,28.88999999999990,60.52000000000000,3575.69,508.56,17.529999999999700,38.68000000000000,4631.88,675.71,45.26999999999950,86.07999999999990,3893.16,706.99,46.92000000000010,88.77000000000000,4047.86,585.42,40.559999999999900,58.430000000000100,4085.15,555.49,26.20000000000030,39.5,4208.53,520.06,25.67000000000010,46.280000000000100,4592.0,603.72,41.35999999999970,65.16000000000000,4142.98,522.69,29.97000000000030,43.09999999999990,3914.49,495.22,17.950000000000300,25.83999999999990,3504.45,602.38,31.890000000000300,71.02000000000000,4144.72,589.91,48.32999999999990,79.24000000000000,3819.39,568.93,39.51000000000020,61.60000000000000,4139.57,546.9,26.46000000000000,48.63,3903.77,527.78,27.69000000000010,42.26000000000000,3497.88,559.44,36.4699999999998,63.16000000000000,3523.69,516.13,18.090000000000100,39.56000000000010,3683.95,492.68,20.21000000000000,36.410000000000000,4023.57,513.54,22.4699999999998,36.48000000000000,2981.1,525.7,26.76000000000020,42.24000000000000,4368.68,564.13,14.449999999999800,12.030000000000000,4087.3,539.67,26.090000000000100,43.38,4376.95,558.04,21.86999999999990,40.700000000000000 -802,3505.8,590.61,28.7199999999998,60.26000000000000,3574.88,508.37,17.540000000000000,38.68000000000000,4630.52,675.85,45.26999999999950,86.07999999999990,3889.27,707.19,46.909999999999900,88.77000000000000,4046.32,585.18,40.559999999999900,58.34000000000000,4085.92,555.54,26.19999999999980,39.49000000000000,4207.75,519.87,25.67000000000010,46.29000000000000,4592.34,603.7,41.35999999999970,65.16000000000000,4139.82,522.26,30.079999999999900,43.190000000000100,3912.5,495.07,17.949999999999800,25.84000000000000,3503.49,602.04,31.820000000000200,70.88,4141.77,589.77,48.32999999999990,79.24000000000000,3819.93,569.1,39.51000000000020,61.60000000000000,4138.55,546.92,26.46000000000000,48.63,3902.84,527.88,27.69000000000010,42.26000000000000,3497.63,559.54,36.4699999999998,63.15000000000010,3523.33,516.03,18.090000000000100,39.56000000000010,3682.34,492.67,20.12999999999970,36.37999999999990,4020.38,513.29,22.38999999999990,36.30000000000010,2981.76,525.65,26.759999999999800,42.24000000000000,4369.87,567.25,14.449999999999800,12.030000000000000,4086.26,539.41,26.05999999999950,43.200000000000000,4378.01,558.2,21.88000000000010,40.68999999999990 -803,3505.29,590.39,28.559999999999900,60.0,3574.08,508.18,17.5300000000002,38.68000000000000,4629.15,675.98,45.27000000000040,86.09000000000000,3885.37,707.38,46.92000000000010,88.78000000000000,4044.77,584.94,40.57000000000020,58.25,4086.69,555.58,26.20000000000030,39.49000000000000,4206.97,519.69,25.67000000000010,46.29000000000000,4592.68,603.67,41.35999999999970,65.16000000000010,4136.66,521.84,30.19999999999980,43.27000000000000,3910.51,494.92,17.95999999999960,25.85000000000000,3502.52,601.71,31.76000000000020,70.74000000000000,4144.7,589.97,48.32000000000060,79.24000000000000,3820.47,569.27,39.51000000000020,61.60000000000000,4137.54,546.94,26.46000000000000,48.63,3901.91,527.98,27.68000000000030,42.26000000000000,3497.37,559.63,36.470000000000300,63.15000000000000,3522.97,515.93,18.090000000000100,39.57000000000010,3680.73,492.67,20.059999999999900,36.330000000000000,4017.19,513.03,22.309999999999900,36.13,2982.42,525.6,26.759999999999800,42.24000000000000,4371.05,570.38,14.460000000000000,12.030000000000000,4085.22,539.15,26.020000000000000,43.01000000000000,4379.08,558.35,21.86999999999990,40.69999999999990 -804,3504.79,590.16,28.38999999999990,59.75,3573.27,507.99,17.540000000000000,38.68000000000000,4627.79,676.12,45.27000000000040,86.09000000000000,3881.48,707.58,46.909999999999900,88.78000000000000,4043.23,584.71,40.559999999999900,58.15000000000000,4087.46,555.62,26.19999999999980,39.49000000000000,4206.19,519.51,25.67000000000010,46.29000000000000,4593.02,603.65,41.349999999999500,65.16000000000000,4133.49,521.42,30.32000000000060,43.35000000000000,3908.52,494.78,17.960000000000000,25.840000000000000,3501.55,601.37,31.69999999999980,70.61000000000000,4147.62,590.17,48.31999999999970,79.24000000000000,3821.01,569.44,39.50999999999980,61.59999999999990,4136.52,546.96,26.459999999999100,48.63,3900.97,528.07,27.69000000000010,42.26000000000000,3497.12,559.72,36.470000000000300,63.15000000000000,3522.62,515.84,18.079999999999900,39.559999999999900,3679.12,492.66,19.98000000000000,36.30000000000000,4013.99,512.77,22.24000000000020,35.97000000000000,2983.08,525.54,26.76000000000020,42.24000000000000,4375.41,573.86,14.449999999999800,12.030000000000000,4084.19,538.89,25.9699999999998,42.83000000000000,4380.14,558.51,21.88000000000010,40.700000000000000 -805,3504.29,589.94,28.22000000000030,59.489999999999900,3572.47,507.8,17.5300000000002,38.68000000000000,4626.42,676.26,45.26999999999950,86.09000000000000,3877.58,707.78,46.92000000000010,88.78000000000000,4041.69,584.47,40.559999999999900,58.05000000000000,4088.23,555.66,26.20000000000030,39.49000000000000,4205.41,519.33,25.65999999999990,46.29000000000000,4593.36,603.63,41.35000000000040,65.16000000000000,4130.33,520.99,30.44000000000050,43.43999999999990,3906.53,494.63,17.95999999999960,25.840000000000000,3500.58,601.04,31.63999999999990,70.46000000000000,4150.54,590.38,48.32999999999990,79.23000000000000,3821.55,569.61,39.50999999999980,61.60000000000000,4135.51,546.98,26.44999999999980,48.63,3900.04,528.17,27.67999999999980,42.26000000000000,3496.87,559.81,36.470000000000300,63.16000000000010,3522.26,515.74,18.079999999999900,39.559999999999900,3677.51,492.66,19.90999999999990,36.24999999999990,4010.8,512.51,22.15999999999990,35.800000000000000,2983.74,525.49,26.76000000000020,42.24000000000000,4379.77,577.34,14.449999999999800,12.020000000000000,4083.15,538.63,25.94000000000010,42.65000000000000,4381.21,558.67,21.86999999999990,40.700000000000000 -806,3503.79,589.72,28.050000000000200,59.23000000000000,3571.66,507.62,17.540000000000000,38.67000000000000,4625.05,676.4,45.26999999999950,86.08000000000000,3873.69,707.98,46.909999999999900,88.78000000000000,4040.14,584.23,40.57000000000020,57.96000000000000,4089.0,555.7,26.19999999999980,39.5,4204.63,519.15,25.65999999999990,46.29000000000010,4593.7,603.6,41.35000000000040,65.16000000000000,4127.17,520.57,30.550000000000200,43.52000000000000,3904.54,494.48,17.960000000000000,25.850000000000000,3499.62,600.71,31.559999999999900,70.31999999999990,4149.18,590.58,48.32999999999990,79.24000000000000,3822.09,569.79,39.50999999999980,61.59000000000000,4134.49,547.0,26.46000000000000,48.63,3899.1,528.27,27.69000000000010,42.26000000000000,3496.61,559.9,36.4699999999998,63.16000000000000,3521.9,515.64,18.08999999999970,39.56000000000010,3675.9,492.65,19.829999999999900,36.21000000000000,4007.61,512.25,22.079999999999900,35.630000000000000,2984.4,525.44,26.759999999999800,42.239999999999900,4384.12,580.82,14.449999999999800,12.020000000000000,4082.11,538.37,25.90000000000010,42.46000000000000,4382.27,558.82,21.86999999999990,40.69999999999990 -807,3503.29,589.5,27.88000000000010,58.97000000000000,3570.86,507.43,17.529999999999700,38.670000000000000,4624.91,676.51,45.27000000000040,86.09000000000000,3869.8,708.18,46.909999999999900,88.78000000000010,4038.6,583.99,40.559999999999900,57.870000000000000,4089.77,555.74,26.20000000000030,39.5,4203.85,518.97,25.65999999999990,46.28000000000000,4594.04,603.58,41.35000000000040,65.16000000000000,4124.01,520.15,30.67000000000010,43.60000000000000,3902.55,494.34,17.960000000000000,25.84000000000000,3498.65,600.37,31.5,70.18000000000000,4147.82,590.78,48.32000000000060,79.24000000000000,3822.62,569.96,39.52000000000000,61.58999999999990,4133.47,547.02,26.46000000000000,48.63,3898.17,528.37,27.69000000000010,42.26000000000000,3496.36,559.99,36.4699999999998,63.16000000000000,3521.54,515.54,18.090000000000100,39.56000000000010,3674.29,492.65,19.76000000000020,36.17000000000010,4004.41,512.0,22.01000000000020,35.46000000000000,2985.06,525.39,26.76000000000020,42.24000000000000,4388.48,584.29,14.450000000000700,12.030000000000100,4081.07,538.11,25.860000000000100,42.28000000000000,4383.34,558.98,21.86999999999990,40.69999999999990 -808,3502.79,589.27,27.71000000000000,58.72000000000000,3571.58,507.28,17.5300000000002,38.680000000000100,4624.76,676.62,45.26999999999950,86.09000000000000,3865.9,708.38,46.909999999999900,88.78000000000000,4037.06,583.76,40.559999999999900,57.77000000000000,4090.54,555.78,26.19999999999980,39.5,4203.07,518.78,25.65999999999990,46.29000000000010,4594.38,603.56,41.349999999999500,65.16000000000010,4120.84,519.73,30.790000000000000,43.68999999999990,3900.56,494.19,17.960000000000000,25.84000000000000,3497.68,600.04,31.44000000000010,70.04000000000010,4146.46,590.98,48.31999999999970,79.24000000000000,3823.16,570.13,39.52000000000000,61.59000000000000,4132.46,547.04,26.44999999999980,48.63,3897.24,528.46,27.68000000000030,42.26000000000000,3496.11,560.08,36.4699999999998,63.16000000000000,3521.18,515.44,18.090000000000100,39.559999999999900,3672.68,492.64,19.68000000000030,36.13,4001.22,511.74,21.94000000000010,35.290000000000000,2985.73,525.34,26.759999999999800,42.24000000000000,4392.83,587.77,14.449999999999800,12.030000000000000,4080.04,537.85,25.81999999999970,42.09000000000000,4384.4,559.14,21.8700000000008,40.700000000000000 -809,3502.29,589.05,27.540000000000000,58.46000000000000,3572.3,507.14,17.529999999999700,38.680000000000100,4624.62,676.74,45.27000000000040,86.08000000000000,3862.01,708.58,46.909999999999900,88.78000000000000,4035.51,583.52,40.56999999999970,57.680000000000100,4091.31,555.83,26.20000000000030,39.49000000000000,4202.29,518.6,25.65999999999990,46.29000000000000,4594.72,603.54,41.349999999999500,65.16000000000010,4117.68,519.3,30.90999999999990,43.780000000000100,3898.57,494.05,17.960000000000000,25.84000000000000,3496.72,599.71,31.370000000000300,69.89000000000000,4145.09,591.18,48.32999999999990,79.24000000000000,3823.7,570.3,39.51000000000020,61.59000000000000,4135.35,547.32,26.44999999999980,48.63,3896.3,528.56,27.6899999999996,42.260000000000100,3495.86,560.17,36.46000000000000,63.16000000000010,3520.82,515.34,18.08999999999970,39.569999999999900,3671.07,492.64,19.60999999999970,36.09000000000000,3998.03,511.48,21.85999999999970,35.130000000000000,2986.39,525.28,26.76000000000020,42.24000000000000,4397.19,591.25,14.450000000000700,12.030000000000000,4079.0,537.59,25.779999999999700,41.91000000000000,4385.47,559.29,21.86999999999990,40.700000000000000 -810,3501.79,588.83,27.36999999999990,58.19999999999990,3573.02,507.0,17.5300000000002,38.68000000000000,4624.47,676.85,45.26999999999950,86.09000000000000,3858.11,708.78,46.909999999999900,88.78000000000000,4033.97,583.28,40.5600000000004,57.58000000000000,4092.08,555.87,26.19999999999980,39.49000000000000,4201.51,518.42,25.65999999999990,46.29000000000010,4595.06,603.51,41.349999999999500,65.16000000000000,4114.52,518.88,31.019999999999500,43.860000000000000,3896.58,493.9,17.960000000000000,25.840000000000000,3495.75,599.37,31.309999999999900,69.76000000000000,4143.73,591.38,48.33000000000080,79.24000000000000,3824.24,570.47,39.51000000000020,61.58999999999990,4138.24,547.6,26.44999999999980,48.63,3895.37,528.66,27.69000000000010,42.26000000000000,3495.6,560.26,36.470000000000300,63.16000000000000,3520.46,515.25,18.090000000000100,39.559999999999900,3669.46,492.63,19.529999999999700,36.05000000000000,3994.83,511.22,21.790000000000000,34.95999999999990,2987.05,525.23,26.759999999999800,42.24000000000000,4401.54,594.73,14.449999999999800,12.030000000000000,4077.96,537.33,25.73999999999980,41.71999999999990,4386.53,559.45,21.86999999999990,40.69999999999990 -811,3501.29,588.61,27.19999999999980,57.93999999999990,3573.74,506.86,17.5300000000002,38.67000000000000,4624.33,676.97,45.27000000000040,86.07999999999990,3854.22,708.98,46.91000000000030,88.78000000000000,4032.43,583.04,40.559999999999900,57.49000000000000,4092.86,555.91,26.20000000000030,39.49000000000000,4200.73,518.24,25.660000000000800,46.29000000000000,4595.4,603.49,41.35000000000040,65.16000000000000,4111.35,518.46,31.14999999999960,43.93999999999990,3894.59,493.75,17.960000000000000,25.850000000000000,3494.78,599.04,31.25,69.62,4142.37,591.58,48.32999999999990,79.24000000000000,3824.78,570.64,39.50999999999980,61.60000000000000,4141.12,547.88,26.46000000000000,48.63,3894.44,528.76,27.67999999999980,42.26000000000000,3495.35,560.35,36.470000000000300,63.16000000000000,3520.1,515.15,18.090000000000100,39.56000000000010,3667.85,492.63,19.46000000000000,36.01000000000000,3991.64,510.96,21.71000000000000,34.79000000000000,2987.71,525.18,26.759999999999800,42.24000000000000,4407.95,596.54,14.449999999999800,12.020000000000000,4076.93,537.07,25.70000000000030,41.54000000000000,4387.6,559.61,21.86999999999990,40.69999999999990 -812,3500.79,588.38,27.0300000000002,57.690000000000100,3574.46,506.71,17.529999999999700,38.68000000000000,4624.18,677.08,45.26999999999950,86.07999999999990,3850.32,709.18,46.909999999999900,88.78000000000010,4030.88,582.81,40.56999999999970,57.3900000000001,4093.63,555.95,26.19999999999980,39.49000000000000,4199.95,518.06,25.65999999999990,46.280000000000100,4595.74,603.47,41.35000000000040,65.16000000000000,4108.82,518.21,30.8100000000004,43.63,3892.61,493.61,17.949999999999800,25.840000000000000,3493.82,598.7,31.17999999999980,69.4799999999999,4141.01,591.78,48.32999999999990,79.24000000000000,3825.32,570.81,39.50999999999980,61.60000000000000,4144.01,548.16,26.46000000000000,48.63,3893.5,528.85,27.69000000000010,42.26000000000000,3495.1,560.44,36.46000000000000,63.16000000000000,3519.75,515.05,18.079999999999900,39.56000000000010,3666.24,492.62,19.38000000000010,35.97000000000000,3988.45,510.71,21.63000000000010,34.62000000000010,2988.37,525.13,26.76000000000020,42.24000000000000,4414.35,598.34,14.460000000000000,12.030000000000000,4075.89,536.81,25.66000000000030,41.360000000000000,4388.66,559.77,21.86999999999990,40.690000000000100 -813,3500.29,588.16,26.860000000000100,57.430000000000100,3575.18,506.57,17.5300000000002,38.68000000000000,4624.04,677.19,45.27000000000040,86.08999999999990,3846.43,709.38,46.91000000000030,88.78000000000000,4029.34,582.57,40.559999999999900,57.30000000000000,4094.4,555.99,26.20000000000030,39.5,4199.16,517.87,25.67000000000010,46.29000000000000,4596.08,603.44,41.35000000000040,65.16000000000000,4106.29,517.96,30.48000000000050,43.319999999999900,3890.62,493.46,17.960000000000000,25.84000000000000,3492.85,598.37,31.11999999999990,69.34000000000000,4139.65,591.98,48.32000000000060,79.24000000000000,3825.86,570.98,39.50999999999980,61.60000000000000,4146.9,548.44,26.46000000000000,48.63,3892.57,528.95,27.69000000000010,42.26000000000000,3494.84,560.53,36.4699999999998,63.16000000000010,3519.39,514.95,18.079999999999900,39.559999999999900,3664.63,492.62,19.309999999999900,35.93000000000000,3985.25,510.45,21.559999999999900,34.45000000000000,2989.03,525.08,26.759999999999800,42.24000000000000,4420.76,600.15,14.449999999999800,12.030000000000000,4074.85,536.55,25.620000000000300,41.17000000000010,4389.73,559.92,21.8700000000008,40.700000000000000 -814,3499.78,587.94,26.69999999999980,57.17000000000000,3575.9,506.43,17.529999999999700,38.68000000000000,4623.89,677.31,45.26999999999950,86.08000000000000,3842.53,709.58,46.91999999999960,88.78000000000000,4027.8,582.33,40.559999999999900,57.20999999999990,4095.17,556.03,26.19999999999980,39.5,4198.38,517.69,25.67000000000010,46.29000000000000,4596.42,603.42,41.35000000000040,65.16000000000010,4103.76,517.72,30.13999999999940,43.0,3888.63,493.31,17.960000000000000,25.85000000000000,3491.88,598.04,31.059999999999900,69.19000000000010,4138.29,592.19,48.31999999999970,79.2299999999999,3826.4,571.15,39.50999999999980,61.60000000000000,4149.79,548.72,26.46000000000000,48.63,3891.64,529.05,27.68000000000030,42.26000000000000,3494.59,560.62,36.4699999999998,63.16000000000000,3519.03,514.85,18.08999999999970,39.559999999999900,3663.02,492.61,19.23000000000000,35.890000000000000,3982.06,510.19,21.48000000000000,34.29000000000000,2989.69,525.02,26.759999999999800,42.24000000000000,4427.17,601.96,14.449999999999800,12.030000000000000,4073.82,536.29,25.579999999999500,40.99000000000000,4390.79,560.08,21.86999999999990,40.69999999999990 -815,3499.28,587.72,26.529999999999700,56.91000000000000,3576.61,506.29,17.540000000000000,38.68000000000000,4623.75,677.42,45.27000000000040,86.09000000000000,3838.64,709.78,46.91000000000030,88.78000000000000,4026.25,582.1,40.57000000000020,57.10000000000000,4095.94,556.07,26.20000000000030,39.5,4197.6,517.51,25.67000000000010,46.29000000000000,4596.76,603.4,41.349999999999500,65.16000000000000,4101.22,517.47,29.81999999999970,42.68000000000000,3886.64,493.17,17.960000000000000,25.84000000000000,3490.91,597.7,31.0,69.06000000000000,4136.92,592.39,48.32999999999990,79.24000000000000,3825.73,569.22,39.50999999999980,61.60000000000000,4152.18,548.92,26.46000000000000,48.63,3890.7,529.15,27.69000000000010,42.26000000000000,3494.34,560.72,36.46000000000000,63.15000000000000,3518.67,514.75,18.090000000000100,39.57000000000010,3661.41,492.61,19.16000000000030,35.85000000000000,3978.87,509.93,21.40000000000010,34.12000000000000,2990.35,524.97,26.76000000000020,42.24000000000000,4433.57,603.77,14.450000000000700,12.030000000000000,4072.78,536.02,25.53999999999950,40.81000000000010,4391.86,560.24,21.86999999999990,40.68999999999990 -816,3498.78,587.49,26.35999999999970,56.66000000000000,3577.33,506.14,17.540000000000000,38.680000000000100,4623.6,677.53,45.26999999999950,86.09000000000000,3834.74,709.98,46.92000000000010,88.77000000000000,4024.71,581.86,40.57000000000020,57.01000000000000,4096.71,556.12,26.19999999999980,39.49000000000000,4196.82,517.33,25.67000000000010,46.29000000000000,4597.1,603.38,41.349999999999500,65.16000000000000,4098.69,517.22,29.48000000000050,42.370000000000000,3884.65,493.02,17.960000000000000,25.840000000000000,3489.95,597.37,30.93000000000030,68.91000000000000,4135.56,592.59,48.32999999999990,79.24000000000000,3825.06,567.3,39.51000000000020,61.59000000000000,4154.57,549.12,26.450000000000700,48.63,3889.77,529.24,27.67999999999980,42.26000000000000,3494.08,560.81,36.470000000000300,63.15000000000010,3518.31,514.66,18.090000000000100,39.56000000000010,3659.81,492.6,19.079999999999900,35.809999999999900,3975.67,509.67,21.340000000000100,33.95000000000000,2991.01,524.92,26.759999999999800,42.24000000000000,4439.98,605.58,14.450000000000700,12.020000000000000,4071.74,535.76,25.5,40.63,4392.92,560.39,21.86999999999990,40.700000000000000 -817,3498.28,587.27,26.1899999999996,56.40000000000000,3578.05,506.0,17.540000000000000,38.68000000000000,4623.46,677.65,45.26999999999950,86.08000000000000,3830.85,710.18,46.91000000000030,88.7700000000001,4023.17,581.62,40.559999999999900,56.92000000000000,4097.48,556.16,26.200000000000700,39.49000000000000,4196.47,517.21,25.73999999999980,46.18999999999990,4597.44,603.35,41.35000000000040,65.16000000000000,4096.16,516.97,29.150000000000500,42.059999999999900,3882.66,492.88,17.960000000000000,25.840000000000000,3488.98,597.04,30.86999999999990,68.77000000000000,4134.2,592.79,48.32999999999990,79.24000000000000,3824.39,565.37,39.51000000000020,61.59000000000000,4156.95,549.32,26.46000000000000,48.63,3888.83,529.34,27.69000000000010,42.26000000000000,3493.83,560.9,36.470000000000300,63.15000000000000,3517.95,514.56,18.090000000000100,39.56000000000010,3658.2,492.59,19.0,35.78000000000000,3972.48,509.42,21.259999999999800,33.78000000000000,2991.67,524.87,26.759999999999800,42.24000000000000,4446.38,607.38,14.460000000000000,12.030000000000000,4070.7,535.5,25.47000000000030,40.440000000000100,4393.82,559.63,21.86999999999990,40.700000000000000 -818,3497.78,587.05,26.020000000000000,56.1400000000001,3578.77,505.86,17.540000000000000,38.68000000000000,4623.31,677.76,45.26999999999950,86.09000000000000,3826.95,710.38,46.92000000000010,88.77000000000000,4021.62,581.38,40.57000000000020,56.83000000000000,4098.25,556.2,26.19999999999980,39.49000000000000,4196.11,517.08,25.829999999999900,46.110000000000000,4597.78,603.33,41.35000000000040,65.16000000000000,4093.62,516.73,28.81999999999970,41.74000000000000,3880.67,492.73,17.960000000000000,25.840000000000000,3488.01,596.7,30.809999999999900,68.64000000000000,4132.84,592.99,48.32999999999990,79.24000000000000,3823.72,563.44,39.51000000000020,61.58999999999990,4159.34,549.51,26.46000000000000,48.63,3887.9,529.44,27.69000000000010,42.26000000000000,3493.58,560.99,36.46000000000000,63.16000000000000,3517.59,514.46,18.08999999999970,39.559999999999900,3656.59,492.59,18.92999999999980,35.730000000000100,3969.29,509.16,21.17999999999980,33.61000000000000,2992.33,524.82,26.76000000000020,42.239999999999900,4452.79,609.19,14.449999999999800,12.030000000000000,4069.67,535.24,25.42000000000010,40.26000000000000,4394.72,558.87,21.86999999999990,40.700000000000000 -819,3497.28,586.83,25.84999999999990,55.88,3579.49,505.72,17.54000000000040,38.68000000000000,4623.17,677.88,45.26999999999950,86.08000000000000,3823.06,710.58,46.909999999999900,88.77000000000000,4020.08,581.15,40.57000000000020,56.73000000000000,4099.02,556.24,26.19999999999980,39.49000000000000,4195.75,516.96,25.92000000000010,46.01000000000000,4598.12,603.31,41.35000000000040,65.16000000000010,4091.09,516.48,28.48999999999980,41.43000000000000,3878.68,492.58,17.960000000000000,25.85000000000000,3487.05,596.37,30.73999999999980,68.49000000000000,4131.48,593.19,48.32000000000060,79.2399999999999,3823.05,561.51,39.50999999999980,61.59000000000000,4161.73,549.71,26.46000000000000,48.63,3886.97,529.54,27.68000000000030,42.26000000000000,3493.32,561.08,36.4699999999998,63.16000000000000,3517.24,514.36,18.080000000000400,39.559999999999900,3654.98,492.58,18.84999999999990,35.69,3966.09,508.9,21.10999999999970,33.440000000000100,2992.99,524.76,26.76000000000020,42.24000000000000,4459.2,611.0,14.449999999999800,12.030000000000000,4068.63,534.98,25.38000000000010,40.069999999999900,4395.61,558.11,21.86999999999990,40.68999999999990 -820,3496.78,586.6,25.67999999999980,55.63,3580.21,505.58,17.540000000000000,38.670000000000000,4623.02,677.99,45.26999999999950,86.08000000000000,3819.17,710.78,46.909999999999900,88.77000000000000,4018.54,580.91,40.559999999999900,56.64000000000000,4099.79,556.28,26.19999999999980,39.5,4195.39,516.83,26.0,45.93000000000000,4598.46,603.28,41.35000000000040,65.16000000000010,4088.56,516.23,28.15000000000010,41.120000000000000,3876.69,492.44,17.960000000000000,25.84000000000000,3486.08,596.03,30.67000000000010,68.36000000000000,4130.12,593.39,48.31999999999970,79.24000000000000,3822.38,559.58,39.50999999999980,61.58999999999990,4164.12,549.91,26.44999999999980,48.63,3886.03,529.63,27.6899999999996,42.26000000000000,3493.07,561.17,36.4699999999998,63.16000000000010,3516.88,514.26,18.079999999999900,39.56000000000010,3653.37,492.58,18.7800000000002,35.650000000000000,3963.77,508.79,21.110000000000100,33.44,2993.65,524.71,26.759999999999800,42.24000000000000,4465.6,612.81,14.460000000000000,12.030000000000100,4067.59,534.72,25.34999999999990,39.89000000000000,4396.51,557.34,21.86999999999990,40.69999999999990 -821,3496.28,586.38,25.509999999999800,55.370000000000000,3580.93,505.43,17.540000000000000,38.68000000000000,4622.88,678.1,45.26999999999950,86.09000000000000,3815.27,710.98,46.909999999999900,88.77000000000000,4016.99,580.67,40.57000000000020,56.54000000000010,4100.56,556.32,26.19999999999980,39.5,4195.04,516.71,26.079999999999900,45.82999999999990,4598.8,603.26,41.349999999999500,65.16000000000000,4086.03,515.99,27.820000000000200,40.79000000000000,3874.7,492.29,17.960000000000000,25.84000000000000,3485.11,595.7,30.60999999999970,68.20999999999990,4128.75,593.59,48.32999999999990,79.24000000000000,3821.71,557.65,39.50999999999980,61.59000000000000,4166.5,550.1,26.46000000000000,48.63,3885.1,529.73,27.69000000000010,42.26000000000000,3492.82,561.26,36.46000000000000,63.16000000000000,3516.52,514.16,18.090000000000100,39.57000000000010,3651.76,492.57,18.69999999999980,35.61000000000000,3961.45,508.67,21.110000000000100,33.45000000000000,2994.31,524.66,26.76000000000020,42.24000000000000,4472.01,614.62,14.449999999999800,12.020000000000000,4066.56,534.46,25.300000000000200,39.70999999999990,4397.41,556.58,21.86999999999990,40.69999999999990 -822,3495.78,586.16,25.33999999999970,55.110000000000000,3581.65,505.29,17.529999999999700,38.68000000000000,4622.73,678.22,45.27000000000040,86.07999999999990,3811.38,711.17,46.909999999999900,88.78000000000010,4015.45,580.43,40.57000000000020,56.450000000000000,4101.53,556.58,26.300000000000200,39.77000000000000,4194.68,516.59,26.17000000000010,45.74000000000000,4599.14,603.24,41.349999999999500,65.16000000000000,4083.49,515.74,27.48999999999980,40.48000000000000,3872.72,492.14,17.950000000000300,25.850000000000000,3484.15,595.37,30.540000000000000,68.07000000000010,4127.39,593.79,48.32999999999990,79.24000000000000,3823.17,557.85,39.50999999999980,61.59000000000000,4168.89,550.3,26.46000000000000,48.63,3884.17,529.83,27.67999999999980,42.26000000000000,3492.56,561.35,36.470000000000300,63.16000000000000,3516.16,514.07,18.090000000000100,39.559999999999900,3650.15,492.57,18.63000000000010,35.57000000000000,3959.13,508.56,21.09999999999990,33.44,2994.97,524.61,26.76000000000020,42.24000000000000,4478.41,616.42,14.460000000000000,12.030000000000100,4065.52,534.2,25.26000000000020,39.52000000000000,4397.92,556.51,21.86999999999990,40.690000000000100 -823,3495.83,586.21,25.340000000000100,55.120000000000000,3582.37,505.15,17.5300000000002,38.680000000000100,4622.59,678.33,45.26999999999950,86.08999999999990,3807.48,711.37,46.909999999999900,88.78000000000000,4013.91,580.2,40.559999999999900,56.34999999999990,4102.5,556.83,26.390000000000300,40.04000000000000,4194.32,516.46,26.25,45.65000000000000,4599.47,603.21,41.35999999999970,65.16000000000000,4080.96,515.49,27.15999999999990,40.17000000000000,3870.73,492.0,17.949999999999800,25.840000000000000,3483.18,595.03,30.48000000000000,67.93000000000010,4127.92,594.0,48.31999999999970,79.23000000000000,3824.62,558.04,39.51000000000020,61.60000000000000,4171.28,550.5,26.46000000000000,48.63,3883.23,529.93,27.69000000000010,42.260000000000100,3492.31,561.44,36.470000000000300,63.16000000000000,3515.8,513.97,18.08999999999970,39.559999999999900,3648.54,492.56,18.550000000000200,35.53000000000000,3956.8,508.44,21.10999999999970,33.45000000000000,2995.63,524.56,26.759999999999800,42.24000000000000,4483.21,618.49,14.460000000000000,12.020000000000000,4064.48,533.94,25.23000000000000,39.33999999999990,4398.43,556.43,21.86999999999990,40.700000000000000 -824,3495.88,586.27,25.34999999999990,55.110000000000000,3583.09,505.01,17.529999999999700,38.67000000000000,4622.44,678.44,45.27000000000040,86.08999999999990,3803.59,711.57,46.909999999999900,88.78000000000000,4012.36,579.96,40.56999999999970,56.26000000000000,4103.47,557.09,26.48999999999980,40.309999999999900,4193.96,516.34,26.340000000000100,45.559999999999900,4599.81,603.19,41.35999999999970,65.16000000000000,4078.43,515.24,26.820000000000200,39.860000000000000,3868.74,491.85,17.960000000000000,25.840000000000000,3482.21,594.7,30.42000000000010,67.79000000000000,4128.44,594.2,48.33000000000080,79.24000000000000,3826.08,558.24,39.51000000000020,61.60000000000000,4173.66,550.7,26.46000000000000,48.63,3882.3,530.02,27.67999999999980,42.26000000000000,3492.06,561.53,36.470000000000300,63.16000000000010,3515.44,513.87,18.090000000000100,39.559999999999900,3646.93,492.56,18.48000000000000,35.49000000000000,3954.48,508.33,21.110000000000100,33.44,2996.29,524.5,26.76000000000020,42.24000000000000,4488.01,620.55,14.449999999999800,12.030000000000100,4063.45,533.68,25.18000000000030,39.15000000000010,4398.93,556.36,21.86999999999990,40.68999999999990 -825,3495.94,586.32,25.340000000000100,55.120000000000000,3583.81,504.86,17.5300000000002,38.68000000000000,4622.3,678.56,45.26999999999950,86.08000000000000,3799.69,711.77,46.909999999999900,88.78000000000000,4010.82,579.72,40.56999999999970,56.17000000000000,4104.44,557.34,26.58000000000080,40.58999999999990,4193.61,516.21,26.42000000000010,45.46999999999990,4600.15,603.17,41.36000000000060,65.16000000000010,4075.89,515.0,26.49000000000020,39.54000000000000,3866.75,491.71,17.960000000000000,25.84000000000000,3481.24,594.37,30.360000000000100,67.65000000000000,4128.97,594.4,48.32999999999990,79.24000000000000,3827.53,558.44,39.50999999999980,61.58999999999990,4176.05,550.89,26.46000000000000,48.63,3881.36,530.12,27.69000000000010,42.26000000000000,3491.8,561.62,36.4699999999998,63.16000000000000,3515.08,513.77,18.090000000000100,39.56000000000010,3645.32,492.55,18.39999999999960,35.45000000000000,3952.16,508.21,21.110000000000100,33.45000000000000,2996.95,524.45,26.76000000000020,42.24000000000000,4492.81,622.61,14.449999999999800,12.030000000000000,4062.41,533.42,25.140000000000300,38.97000000000000,4399.44,556.28,21.8700000000008,40.700000000000000 -826,3495.99,586.38,25.340000000000100,55.110000000000000,3584.53,504.72,17.529999999999700,38.68000000000000,4622.15,678.67,45.27000000000040,86.09000000000000,3795.8,711.97,46.909999999999900,88.78000000000000,4009.28,579.49,40.559999999999900,56.059999999999900,4105.41,557.6,26.67000000000010,40.860000000000000,4193.25,516.09,26.5,45.38,4600.49,603.15,41.36000000000060,65.16000000000000,4073.36,514.75,26.16000000000030,39.23000000000000,3864.76,491.56,17.95999999999960,25.84000000000000,3480.68,594.4,30.350000000000400,67.65000000000000,4129.49,594.6,48.32999999999990,79.24000000000000,3828.99,558.64,39.51000000000020,61.59000000000000,4178.44,551.09,26.46000000000000,48.63,3880.43,530.22,27.69000000000010,42.26000000000000,3491.55,561.71,36.4699999999998,63.16000000000000,3514.72,513.67,18.090000000000100,39.56000000000010,3643.71,492.55,18.329999999999900,35.410000000000000,3949.84,508.1,21.10999999999970,33.43999999999990,2997.61,524.4,26.759999999999800,42.24000000000000,4497.61,624.67,14.450000000000700,12.030000000000100,4061.37,533.16,25.110000000000100,38.780000000000100,4399.95,556.21,21.86999999999990,40.68999999999990 -827,3496.04,586.44,25.34999999999990,55.1099999999999,3585.25,504.58,17.5300000000002,38.68000000000000,4622.01,678.79,45.26999999999950,86.08000000000000,3791.9,712.17,46.92000000000010,88.78000000000010,4007.73,579.25,40.57000000000020,55.97000000000000,4106.38,557.85,26.769999999999500,41.14000000000000,4192.89,515.97,26.58999999999920,45.28000000000000,4600.83,603.12,41.35999999999970,65.16000000000000,4070.83,514.5,25.81999999999970,38.92000000000000,3862.77,491.41,17.960000000000000,25.85000000000000,3480.11,594.43,30.34999999999990,67.65000000000010,4130.02,594.8,48.32999999999990,79.24000000000000,3830.45,558.83,39.51000000000020,61.59999999999990,4180.83,551.29,26.44999999999980,48.63,3879.5,530.32,27.67999999999980,42.26000000000000,3491.3,561.8,36.4699999999998,63.16000000000010,3514.37,513.57,18.079999999999900,39.569999999999900,3642.1,492.54,18.25,35.37000000000000,3947.52,507.98,21.09999999999990,33.44999999999990,2998.27,524.35,26.76000000000020,42.24000000000000,4502.41,626.73,14.449999999999800,12.030000000000000,4060.33,532.9,25.070000000000200,38.60000000000000,4400.46,556.13,21.86999999999990,40.700000000000000 -828,3496.1,586.49,25.340000000000100,55.110000000000000,3585.97,504.44,17.5300000000002,38.68000000000000,4621.86,678.9,45.27000000000040,86.08000000000000,3788.01,712.37,46.909999999999900,88.78000000000000,4006.19,579.01,40.57000000000020,55.88,4107.35,558.11,26.85999999999970,41.41000000000000,4192.54,515.84,26.67000000000010,45.19999999999990,4601.17,603.1,41.35999999999970,65.16000000000000,4068.3,514.25,25.48999999999980,38.60000000000000,3860.78,491.27,17.95999999999960,25.840000000000000,3479.54,594.47,30.360000000000100,67.65000000000000,4130.55,595.0,48.31999999999970,79.24000000000000,3831.9,559.03,39.50999999999980,61.59000000000000,4183.21,551.48,26.46000000000000,48.64000000000000,3878.56,530.41,27.69000000000010,42.26000000000000,3491.04,561.9,36.470000000000300,63.15000000000000,3514.01,513.48,18.079999999999900,39.559999999999900,3640.49,492.54,18.18000000000030,35.330000000000000,3945.19,507.87,21.110000000000100,33.43999999999990,2998.93,524.3,26.76000000000020,42.24000000000000,4507.93,628.13,14.449999999999800,12.020000000000000,4060.57,532.89,25.06999999999970,38.610000000000000,4401.52,556.53,21.86999999999990,40.700000000000000 -829,3496.15,586.55,25.33999999999970,55.110000000000000,3586.69,504.29,17.529999999999700,38.68000000000000,4621.72,679.01,45.26999999999950,86.09000000000000,3784.11,712.57,46.92000000000010,88.78000000000000,4004.65,578.77,40.56999999999970,55.79000000000000,4108.32,558.36,26.96000000000000,41.68999999999990,4192.18,515.72,26.75,45.10000000000000,4601.51,603.08,41.35999999999970,65.16000000000000,4065.76,514.01,25.15999999999990,38.28000000000000,3858.79,491.12,17.960000000000000,25.840000000000000,3478.97,594.5,30.360000000000100,67.65000000000000,4131.07,595.2,48.32999999999990,79.24000000000000,3833.36,559.23,39.50999999999980,61.59000000000000,4185.6,551.68,26.46000000000000,48.63,3877.63,530.51,27.69000000000010,42.26000000000000,3490.79,561.99,36.470000000000300,63.15000000000000,3513.65,513.38,18.08999999999970,39.56000000000010,3638.88,492.53,18.09999999999990,35.29000000000010,3942.87,507.75,21.110000000000100,33.450000000000000,2999.59,524.24,26.759999999999800,42.24000000000000,4513.45,629.52,14.449999999999800,12.030000000000000,4060.81,532.89,25.070000000000200,38.60000000000000,4402.58,556.93,21.86999999999990,40.690000000000100 -830,3496.2,586.6,25.340000000000100,55.120000000000000,3587.41,504.15,17.5300000000002,38.680000000000100,4621.57,679.13,45.27000000000040,86.08000000000000,3780.22,712.77,46.91000000000030,88.78000000000000,4003.1,578.54,40.57000000000020,55.690000000000100,4109.29,558.62,27.050000000000200,41.950000000000000,4191.82,515.59,26.840000000000100,45.02000000000000,4601.85,603.05,41.35999999999970,65.16000000000010,4063.23,513.76,24.829999999999900,37.97000000000000,3856.8,490.97,17.960000000000000,25.850000000000000,3478.4,594.54,30.360000000000100,67.65000000000010,4131.6,595.4,48.31999999999970,79.24000000000000,3834.81,559.42,39.52000000000000,61.60000000000000,4189.32,552.48,26.850000000000400,48.809999999999900,3876.7,530.61,27.68000000000030,42.26000000000000,3490.54,562.08,36.470000000000300,63.15000000000000,3513.29,513.28,18.090000000000100,39.56000000000010,3637.27,492.53,18.0300000000002,35.24000000000000,3940.55,507.64,21.10999999999970,33.440000000000100,3000.25,524.19,26.76000000000020,42.239999999999900,4518.97,630.91,14.449999999999800,12.030000000000100,4061.05,532.88,25.06999999999970,38.610000000000000,4403.64,557.32,21.86999999999990,40.69999999999990 -831,3496.26,586.66,25.33999999999970,55.110000000000000,3588.13,504.01,17.529999999999700,38.680000000000100,4621.43,679.24,45.26999999999950,86.09000000000000,3776.32,712.97,46.91999999999960,88.78000000000000,4001.56,578.3,40.57000000000020,55.60000000000000,4110.26,558.88,27.14999999999960,42.22000000000000,4191.46,515.47,26.93000000000030,44.92000000000000,4602.19,603.03,41.36000000000060,65.16000000000010,4060.7,513.51,24.49000000000020,37.66000000000000,3854.81,490.83,17.960000000000000,25.84000000000000,3477.83,594.57,30.360000000000100,67.65000000000000,4132.12,595.6,48.32999999999990,79.24000000000000,3836.27,559.62,39.51000000000020,61.60000000000000,4193.03,553.28,27.25,49.0,3875.76,530.71,27.6899999999996,42.26000000000000,3490.28,562.17,36.4699999999998,63.16000000000010,3512.93,513.18,18.090000000000100,39.56000000000010,3635.66,492.52,17.950000000000300,35.21000000000000,3938.23,507.52,21.110000000000100,33.450000000000000,3000.91,524.14,26.76000000000020,42.24000000000000,4524.49,632.3,14.449999999999800,12.030000000000100,4061.29,532.88,25.070000000000200,38.60000000000000,4404.7,557.72,21.86999999999990,40.69999999999990 -832,3496.31,586.71,25.340000000000100,55.120000000000000,3588.85,503.87,17.5300000000002,38.68000000000000,4621.28,679.35,45.27000000000040,86.09000000000000,3772.43,713.17,46.91000000000030,88.78000000000010,4000.02,578.06,40.57000000000020,55.5,4111.23,559.13,27.24000000000070,42.5,4191.11,515.35,27.0,44.82999999999990,4602.53,603.01,41.36000000000060,65.16000000000000,4058.16,513.26,24.17000000000010,37.35000000000000,3852.83,490.68,17.950000000000300,25.84000000000000,3477.26,594.6,30.35999999999970,67.66000000000000,4132.65,595.81,48.32000000000060,79.23000000000000,3837.73,559.82,39.50999999999980,61.58999999999990,4196.74,554.07,27.650000000000500,49.18999999999990,3874.83,530.8,27.68000000000030,42.26000000000000,3490.03,562.26,36.4699999999998,63.16000000000000,3512.57,513.08,18.08999999999970,39.559999999999900,3634.05,492.52,17.879999999999700,35.16000000000000,3935.91,507.41,21.110000000000100,33.44,3001.57,524.09,26.759999999999800,42.24000000000000,4530.01,633.7,14.449999999999800,12.020000000000000,4061.53,532.88,25.059999999999900,38.60000000000000,4405.76,558.12,21.86999999999990,40.700000000000000 -833,3496.36,586.77,25.33999999999970,55.110000000000000,3589.57,503.73,17.529999999999700,38.67000000000000,4621.14,679.47,45.26999999999950,86.07999999999990,3770.86,713.17,48.67000000000010,89.87,3998.47,577.82,40.57000000000020,55.41000000000000,4112.2,559.39,27.329999999999900,42.77000000000000,4190.75,515.22,27.090000000000100,44.74000000000000,4602.87,602.99,41.35999999999970,65.16000000000000,4055.63,513.02,23.829999999999900,37.03000000000000,3850.84,490.54,17.949999999999800,25.84000000000000,3476.69,594.64,30.360000000000100,67.65000000000000,4133.17,596.01,48.32999999999990,79.24000000000000,3839.18,560.02,39.51000000000020,61.59000000000000,4200.46,554.87,28.050000000000200,49.370000000000000,3873.89,530.9,27.69000000000010,42.26000000000000,3489.78,562.35,36.4699999999998,63.16000000000000,3512.21,512.98,18.090000000000100,39.569999999999900,3632.44,492.51,17.809999999999900,35.130000000000000,3933.59,507.29,21.09999999999990,33.45000000000000,3002.23,524.04,26.759999999999800,42.24000000000000,4535.53,635.09,14.449999999999800,12.030000000000000,4061.77,532.87,25.059999999999900,38.60000000000000,4406.82,558.52,21.86999999999990,40.690000000000100 -834,3496.41,586.83,25.350000000000400,55.110000000000000,3590.29,503.58,17.5300000000002,38.68000000000000,4620.99,679.58,45.27000000000040,86.08999999999990,3769.29,713.17,50.42999999999980,90.97000000000000,3996.93,577.59,40.57000000000020,55.309999999999900,4113.17,559.64,27.43000000000030,43.05000000000010,4190.39,515.1,27.17999999999940,44.65000000000000,4603.21,602.96,41.35999999999970,65.16000000000000,4053.1,512.77,23.5,36.71000000000000,3848.85,490.39,17.960000000000000,25.840000000000000,3476.13,594.67,30.34999999999990,67.65000000000010,4133.7,596.21,48.32999999999990,79.24000000000000,3840.64,560.21,39.51000000000020,61.59999999999990,4204.17,555.67,28.44999999999980,49.55000000000010,3872.96,531.0,27.69000000000010,42.26000000000000,3489.52,562.44,36.4699999999998,63.16000000000000,3511.85,512.89,18.090000000000100,39.56000000000010,3630.83,492.5,17.730000000000000,35.09000000000000,3931.26,507.18,21.10999999999970,33.44,3002.89,523.98,26.76000000000020,42.24000000000000,4541.05,636.48,14.449999999999800,12.030000000000000,4062.01,532.87,25.059999999999900,38.60000000000000,4407.88,558.91,21.86999999999990,40.700000000000000 -835,3496.47,586.88,25.340000000000100,55.110000000000000,3591.01,503.44,17.529999999999700,38.68000000000000,4620.85,679.69,45.26999999999950,86.08999999999990,3767.72,713.17,52.20000000000030,92.07000000000000,3994.58,577.29,40.40000000000010,55.23000000000000,4114.14,559.9,27.519999999999500,43.32000000000010,4190.03,514.97,27.26000000000020,44.559999999999900,4603.55,602.94,41.35999999999970,65.16000000000000,4050.57,512.52,23.15999999999990,36.40000000000000,3846.86,490.24,17.960000000000000,25.850000000000000,3475.56,594.71,30.34999999999990,67.65000000000000,4134.22,596.41,48.32999999999990,79.24000000000000,3842.09,560.41,39.52000000000000,61.59000000000000,4207.89,556.46,28.83999999999920,49.75,3872.03,531.1,27.67999999999980,42.26000000000000,3489.27,562.53,36.4699999999998,63.16000000000010,3511.5,512.79,18.079999999999900,39.56000000000010,3629.22,492.5,17.66000000000030,35.050000000000000,3928.94,507.06,21.110000000000100,33.45000000000000,3003.55,523.93,26.759999999999800,42.24000000000000,4546.57,637.87,14.450000000000700,12.030000000000000,4062.25,532.86,25.059999999999900,38.60000000000000,4408.94,559.31,21.8700000000008,40.700000000000000 -836,3496.52,586.94,25.340000000000100,55.1099999999999,3591.73,503.3,17.5300000000002,38.68000000000000,4620.7,679.81,45.27000000000040,86.08000000000000,3766.16,713.17,53.95000000000030,93.17000000000010,3992.22,577.0,40.25,55.13,4115.11,560.15,27.61999999999990,43.59000000000000,4189.68,514.85,27.340000000000100,44.47000000000000,4603.89,602.92,41.349999999999500,65.16000000000010,4048.03,512.28,22.83999999999970,36.08000000000000,3844.87,490.1,17.960000000000000,25.840000000000000,3474.99,594.74,30.360000000000100,67.65000000000000,4134.75,596.61,48.32999999999990,79.24000000000000,3843.55,560.61,39.50999999999980,61.59000000000000,4211.6,557.26,29.23999999999980,49.930000000000100,3871.09,531.19,27.69000000000010,42.26000000000000,3489.02,562.62,36.4699999999998,63.16000000000000,3511.14,512.69,18.079999999999900,39.559999999999900,3627.61,492.49,17.579999999999900,35.01000000000000,3926.62,506.95,21.110000000000100,33.44,3004.21,523.88,26.759999999999800,42.24000000000000,4552.09,639.27,14.460000000000000,12.020000000000000,4062.48,532.86,25.070000000000200,38.60000000000000,4410.0,559.71,21.86999999999990,40.69999999999990 -837,3496.57,586.99,25.34999999999990,55.110000000000000,3592.45,503.16,17.5300000000002,38.670000000000000,4620.56,679.92,45.26999999999950,86.09000000000000,3764.59,713.17,55.71000000000000,94.26,3989.87,576.71,40.07999999999990,55.04000000000000,4116.08,560.41,27.71000000000000,43.860000000000000,4189.32,514.73,27.43000000000030,44.370000000000000,4604.23,602.89,41.35000000000040,65.16000000000000,4045.5,512.03,22.5,35.77000000000000,3842.88,489.95,17.960000000000000,25.84000000000000,3474.42,594.78,30.360000000000100,67.65000000000000,4135.28,596.81,48.32000000000060,79.24000000000000,3845.01,560.8,39.50999999999980,61.60000000000000,4215.32,558.06,29.63000000000010,50.110000000000000,3870.16,531.29,27.69000000000010,42.26000000000000,3488.77,562.71,36.46000000000000,63.16000000000000,3510.78,512.59,18.08999999999970,39.559999999999900,3626.0,492.49,17.51000000000020,34.97000000000000,3924.3,506.83,21.10999999999970,33.45000000000000,3004.09,523.8,26.759999999999800,42.24000000000000,4557.61,640.66,14.460000000000000,12.030000000000100,4062.72,532.85,25.070000000000200,38.610000000000000,4411.06,560.11,21.86999999999990,40.68999999999990 -838,3496.63,587.05,25.33999999999970,55.110000000000000,3593.17,503.01,17.529999999999700,38.680000000000100,4620.41,680.04,45.27000000000040,86.08000000000000,3763.02,713.17,57.4699999999998,95.36,3987.52,576.41,39.92000000000010,54.96000000000000,4117.05,560.66,27.800000000000200,44.14000000000000,4188.96,514.6,27.519999999999500,44.29000000000000,4603.65,602.83,41.36000000000060,65.16000000000000,4043.45,511.8,22.610000000000100,35.87999999999990,3840.89,489.8,17.960000000000000,25.85000000000000,3473.85,594.81,30.360000000000100,67.65000000000010,4135.8,597.01,48.32999999999990,79.24000000000000,3846.46,561.0,39.50999999999980,61.60000000000000,4219.03,558.85,30.03000000000070,50.30000000000000,3869.23,531.39,27.67999999999980,42.26000000000000,3488.51,562.8,36.4699999999998,63.16000000000010,3510.42,512.49,18.090000000000100,39.559999999999900,3624.39,492.48,17.43000000000030,34.93000000000000,3921.98,506.72,21.09999999999990,33.43999999999990,3003.96,523.71,26.759999999999800,42.24000000000000,4563.13,642.05,14.460000000000000,12.030000000000100,4062.96,532.85,25.070000000000200,38.60000000000000,4412.12,560.5,21.86999999999990,40.700000000000000 -839,3496.68,587.1,25.340000000000100,55.120000000000000,3593.89,502.87,17.5300000000002,38.68000000000000,4620.27,680.15,45.26999999999950,86.08000000000000,3761.45,713.17,59.23000000000000,96.46000000000000,3985.17,576.12,39.75,54.870000000000000,4118.02,560.92,27.89999999999960,44.41000000000010,4188.61,514.48,27.590000000000100,44.18999999999990,4603.07,602.77,41.36000000000060,65.16000000000000,4041.41,511.58,22.71000000000000,35.97000000000000,3838.9,489.66,17.960000000000000,25.84000000000000,3473.28,594.84,30.35999999999970,67.65000000000000,4136.33,597.21,48.31999999999970,79.24000000000000,3847.92,561.2,39.50999999999980,61.58999999999990,4222.75,559.65,30.43000000000030,50.49000000000000,3868.29,531.49,27.69000000000010,42.26000000000000,3488.26,562.89,36.4699999999998,63.16000000000000,3510.06,512.39,18.090000000000100,39.57000000000010,3622.79,492.48,17.34999999999990,34.890000000000000,3919.65,506.6,21.110000000000100,33.44999999999990,3003.84,523.63,26.759999999999800,42.24000000000000,4568.65,643.44,14.460000000000000,12.030000000000000,4063.2,532.84,25.070000000000200,38.610000000000000,4413.18,560.9,21.86999999999990,40.700000000000000 -840,3496.73,587.16,25.34999999999990,55.110000000000000,3594.61,502.73,17.529999999999700,38.68000000000000,4620.12,680.26,45.27000000000040,86.09000000000000,3759.88,713.17,60.98999999999980,97.56000000000010,3982.81,575.83,39.59999999999990,54.77000000000000,4118.99,561.17,27.98999999999980,44.690000000000100,4188.25,514.35,27.68000000000030,44.110000000000000,4602.49,602.7,41.36000000000060,65.16000000000000,4039.36,511.35,22.81999999999970,36.07999999999990,3836.91,489.51,17.960000000000000,25.840000000000000,3472.71,594.88,30.360000000000100,67.65000000000000,4136.85,597.41,48.32999999999990,79.24000000000000,3849.38,561.39,39.50999999999980,61.60000000000000,4226.46,560.45,30.829999999999900,50.67000000000000,3867.36,531.58,27.67999999999980,42.26000000000000,3488.01,562.98,36.45999999999960,63.16000000000000,3509.7,512.3,18.090000000000100,39.56000000000010,3621.18,492.47,17.270000000000000,34.85000000000000,3917.33,506.49,21.110000000000100,33.43999999999990,3003.71,523.55,26.759999999999800,42.24000000000000,4574.17,644.84,14.460000000000000,12.030000000000000,4063.44,532.84,25.070000000000200,38.60000000000000,4414.24,561.3,21.86999999999990,40.700000000000000 -841,3496.79,587.21,25.340000000000100,55.120000000000000,3595.33,502.59,17.5300000000002,38.68000000000000,4619.98,680.38,45.27000000000040,86.08000000000000,3758.31,713.17,62.75,98.65000000000010,3980.46,575.53,39.42999999999980,54.690000000000100,4119.96,561.43,28.090000000000100,44.96000000000000,4187.89,514.23,27.769999999999500,44.01000000000000,4601.92,602.64,41.35000000000040,65.16000000000000,4037.31,511.12,22.94000000000010,36.18000000000000,3834.92,489.37,17.960000000000000,25.840000000000000,3472.15,594.91,30.34999999999990,67.65000000000000,4137.38,597.62,48.31999999999970,79.23000000000000,3850.83,561.59,39.51000000000020,61.60000000000000,4230.17,561.24,31.229999999999600,50.860000000000000,3866.42,531.68,27.69000000000010,42.260000000000100,3487.75,563.08,36.4699999999998,63.15000000000000,3509.34,512.2,18.08999999999970,39.559999999999900,3619.57,492.47,17.199999999999800,34.809999999999900,3915.01,506.37,21.10999999999970,33.450000000000000,3003.59,523.47,26.759999999999800,42.24000000000000,4576.59,646.27,14.449999999999800,12.030000000000000,4063.68,532.84,25.059999999999900,38.60000000000000,4416.46,560.76,21.86999999999990,40.700000000000000 -842,3496.84,587.27,25.33999999999970,55.110000000000000,3596.05,502.44,17.529999999999700,38.68000000000000,4619.83,680.49,45.27000000000040,86.09000000000000,3756.75,713.17,64.5,99.75,3978.11,575.24,39.27000000000000,54.60000000000000,4120.93,561.68,28.17999999999940,45.24000000000000,4187.53,514.11,27.850000000000400,43.92000000000000,4601.34,602.58,41.349999999999500,65.16000000000000,4035.27,510.9,23.040000000000000,36.28000000000000,3832.93,489.22,17.960000000000000,25.83999999999990,3471.58,594.95,30.34999999999990,67.65000000000000,4137.9,597.82,48.32999999999990,79.2399999999999,3852.29,561.79,39.51000000000020,61.59000000000000,4233.89,562.04,31.61999999999990,51.04000000000010,3865.49,531.78,27.69000000000010,42.26000000000000,3487.5,563.17,36.4699999999998,63.15000000000010,3508.98,512.1,18.090000000000100,39.559999999999900,3617.96,492.46,17.11999999999990,34.77000000000000,3912.69,506.26,21.110000000000100,33.440000000000100,3003.47,523.38,26.76000000000020,42.24000000000000,4579.0,647.7,14.460000000000000,12.030000000000000,4063.92,532.83,25.059999999999900,38.59999999999990,4418.68,560.22,21.86999999999990,40.69999999999990 -843,3496.89,587.33,25.340000000000100,55.110000000000000,3596.77,502.3,17.5300000000002,38.68000000000000,4619.69,680.6,45.27000000000040,86.09000000000000,3755.18,713.17,66.26000000000020,100.85000000000000,3975.75,574.95,39.11000000000010,54.51000000000000,4121.9,561.94,28.27000000000040,45.5,4187.18,513.98,27.92999999999940,43.82999999999990,4600.76,602.51,41.349999999999500,65.16000000000000,4033.22,510.67,23.15000000000010,36.38999999999990,3830.95,489.07,17.950000000000300,25.85000000000000,3471.01,594.98,30.34999999999990,67.65000000000000,4138.43,598.02,48.31999999999970,79.24000000000000,3853.74,561.99,39.51000000000020,61.59000000000000,4237.6,562.84,32.01999999999950,51.23000000000000,3864.56,531.88,27.67999999999980,42.26000000000000,3487.25,563.26,36.46000000000000,63.15000000000000,3508.63,512.0,18.079999999999900,39.559999999999900,3616.35,492.46,17.050000000000200,34.72000000000000,3910.37,506.14,21.09999999999990,33.450000000000000,3003.34,523.3,26.759999999999800,42.24000000000000,4581.42,649.13,14.449999999999800,12.030000000000000,4064.16,532.83,25.059999999999900,38.59999999999990,4420.9,559.69,21.8700000000008,40.68999999999990 -844,3497.11,586.96,25.509999999999800,55.73000000000000,3597.48,502.16,17.540000000000000,38.68000000000000,4619.54,680.72,45.27000000000040,86.07999999999990,3753.61,713.17,68.02000000000000,101.95000000000000,3973.4,574.65,38.94999999999980,54.42000000000010,4122.87,562.19,28.36999999999990,45.78000000000000,4186.82,513.86,28.02000000000040,43.74000000000000,4600.18,602.45,41.349999999999500,65.16000000000000,4031.17,510.45,23.259999999999800,36.48000000000000,3828.96,488.93,17.960000000000000,25.84000000000000,3471.89,595.14,30.360000000000100,67.65000000000000,4138.95,598.22,48.32999999999990,79.24000000000000,3855.2,562.18,39.51000000000020,61.60000000000000,4241.32,563.63,32.42000000000010,51.42000000000000,3863.62,531.97,27.69000000000010,42.26000000000000,3486.99,563.35,36.470000000000300,63.16000000000000,3508.27,511.9,18.079999999999900,39.56000000000010,3614.74,492.45,16.970000000000300,34.69,3908.04,506.03,21.110000000000100,33.440000000000100,3003.22,523.22,26.76000000000020,42.24000000000000,4580.64,649.02,14.460000000000000,12.030000000000000,4064.4,532.82,25.059999999999900,38.59999999999990,4423.12,559.15,21.86999999999990,40.700000000000000 -845,3497.32,586.59,25.67999999999980,56.35000000000000,3598.2,502.02,17.540000000000000,38.680000000000100,4619.4,680.83,45.27000000000040,86.08999999999990,3752.04,713.17,69.7800000000002,103.04000000000000,3971.05,574.36,38.77999999999980,54.33000000000000,4123.84,562.45,28.46000000000000,46.05000000000000,4186.46,513.73,28.100000000000400,43.65000000000000,4599.6,602.39,41.349999999999500,65.16000000000000,4029.13,510.22,23.35999999999970,36.58999999999990,3826.97,488.78,17.960000000000000,25.840000000000000,3472.77,595.29,30.360000000000100,67.65000000000010,4139.48,598.42,48.33000000000080,79.24000000000000,3856.66,562.38,39.51000000000020,61.60000000000000,4245.03,564.43,32.82000000000060,51.60000000000000,3862.69,532.07,27.69000000000010,42.26000000000000,3486.74,563.44,36.470000000000300,63.16000000000000,3507.91,511.8,18.090000000000100,39.57000000000000,3613.13,492.45,16.90000000000010,34.64000000000000,3905.72,505.91,21.110000000000100,33.45000000000000,3003.09,523.13,26.759999999999800,42.24000000000000,4579.87,648.91,14.449999999999800,12.030000000000100,4064.63,532.82,25.06999999999970,38.59999999999990,4425.34,558.61,21.88000000000010,40.69999999999990 -846,3497.54,586.22,25.840000000000100,56.97000000000000,3598.92,501.88,17.540000000000000,38.67000000000000,4619.25,680.95,45.27000000000040,86.07999999999990,3750.47,713.17,71.54000000000040,104.14,3968.7,574.07,38.620000000000300,54.239999999999900,4124.81,562.7,28.55999999999950,46.32999999999990,4186.1,513.61,28.1899999999996,43.559999999999900,4599.02,602.32,41.35999999999970,65.16000000000000,4027.08,509.99,23.47000000000030,36.68999999999990,3824.98,488.63,17.960000000000000,25.850000000000000,3473.66,595.45,30.350000000000400,67.65000000000000,4140.01,598.62,48.31999999999970,79.24000000000000,3858.11,562.58,39.50999999999980,61.58999999999990,4248.75,565.23,33.21000000000000,51.78000000000000,3861.76,532.17,27.67999999999980,42.26000000000000,3486.49,563.53,36.46000000000000,63.16000000000010,3507.55,511.71,18.08999999999970,39.56,3611.52,492.44,16.820000000000200,34.61000000000000,3903.4,505.8,21.110000000000100,33.44,3002.97,523.05,26.76000000000020,42.24000000000000,4579.09,648.81,14.460000000000000,12.030000000000100,4064.87,532.81,25.070000000000200,38.610000000000000,4427.57,558.07,21.86999999999990,40.69999999999990 -847,3497.75,585.85,26.01000000000020,57.59000000000000,3599.64,501.73,17.540000000000000,38.68000000000000,4619.11,681.06,45.27000000000040,86.08000000000000,3748.9,713.17,73.29999999999970,105.24,3966.34,573.78,38.46000000000000,54.15000000000000,4125.78,562.96,28.650000000000500,46.59999999999990,4185.75,513.49,28.27000000000040,43.46000000000000,4598.44,602.26,41.36000000000060,65.16000000000000,4025.03,509.77,23.579999999999900,36.79000000000000,3823.6,488.65,17.960000000000000,25.840000000000000,3474.54,595.6,30.360000000000100,67.66000000000000,4140.53,598.82,48.32999999999990,79.2399999999999,3859.57,562.77,39.50999999999980,61.60000000000000,4252.46,566.02,33.60999999999970,51.98000000000000,3860.82,532.27,27.69000000000010,42.26000000000000,3486.23,563.62,36.4699999999998,63.16000000000000,3507.19,511.61,18.090000000000100,39.559999999999900,3609.91,492.44,16.75,34.56,3901.08,505.69,21.110000000000100,33.44,3002.85,522.97,26.76000000000020,42.24000000000000,4578.32,648.7,14.450000000000700,12.030000000000000,4065.11,532.81,25.06999999999970,38.60000000000000,4429.15,558.19,21.8700000000008,40.69999999999990 -848,3497.97,585.48,26.17000000000010,58.21000000000000,3600.36,501.59,17.540000000000000,38.68000000000000,4618.96,681.17,45.26999999999950,86.09000000000000,3747.34,713.17,75.06000000000000,106.34000000000000,3963.99,573.48,38.30000000000020,54.059999999999900,4126.75,563.21,28.73999999999980,46.88,4185.39,513.36,28.34999999999950,43.38,4597.86,602.2,41.36000000000060,65.16000000000000,4022.99,509.54,23.69000000000010,36.900000000000000,3822.23,488.66,17.949999999999800,25.84000000000000,3475.42,595.76,30.360000000000100,67.65000000000000,4141.06,599.02,48.31999999999970,79.24000000000000,3861.02,562.97,39.52000000000000,61.60000000000000,4256.17,566.82,34.01000000000020,52.16000000000000,3859.89,532.36,27.69000000000010,42.26000000000000,3485.98,563.71,36.4699999999998,63.16000000000000,3506.83,511.51,18.090000000000100,39.56000000000010,3608.3,492.43,16.669999999999600,34.53000000000000,3898.76,505.57,21.10999999999970,33.45000000000000,3002.72,522.89,26.76000000000020,42.24000000000000,4577.54,648.59,14.449999999999800,12.030000000000000,4065.35,532.8,25.070000000000200,38.610000000000000,4430.73,558.3,21.8700000000008,40.700000000000000 -849,3498.18,585.12,26.340000000000100,58.82000000000010,3601.08,501.45,17.540000000000000,38.68000000000000,4618.82,681.29,45.27000000000040,86.08000000000000,3745.77,713.17,76.82000000000020,107.43000000000000,3961.64,573.19,38.13000000000010,53.96999999999990,4127.72,563.47,28.840000000000100,47.15000000000000,4185.03,513.24,28.44000000000050,43.28000000000000,4597.29,602.13,41.35000000000040,65.16000000000000,4020.94,509.31,23.799999999999700,36.99999999999990,3820.85,488.67,17.960000000000000,25.85000000000000,3476.31,595.92,30.34999999999990,67.65000000000010,4141.58,599.22,48.32999999999990,79.24000000000000,3862.48,563.17,39.50999999999980,61.59000000000000,4259.89,567.62,34.39999999999960,52.34000000000000,3858.96,532.46,27.67999999999980,42.26000000000000,3485.73,563.8,36.4699999999998,63.16000000000010,3509.01,513.59,18.08999999999970,39.559999999999900,3606.69,492.42,16.59999999999990,34.49000000000000,3896.44,505.46,21.09999999999990,33.44,3002.6,522.8,26.76000000000020,42.24000000000000,4576.76,648.49,14.460000000000000,12.030000000000000,4065.59,532.8,25.06999999999970,38.60000000000000,4432.32,558.42,21.86999999999990,40.690000000000100 -850,3498.39,584.75,26.51000000000020,59.440000000000100,3601.8,501.31,17.540000000000000,38.670000000000000,4618.67,681.4,45.26999999999950,86.09000000000000,3744.2,713.17,78.58000000000040,108.53000000000000,3959.29,572.9,37.970000000000300,53.88,4128.69,563.72,28.93000000000030,47.42000000000000,4184.68,513.11,28.519999999999500,43.19999999999990,4596.71,602.07,41.35000000000040,65.16000000000000,4018.89,509.09,23.91000000000030,37.10000000000010,3819.47,488.69,17.960000000000000,25.84000000000000,3477.19,596.07,30.360000000000100,67.65000000000000,4142.11,599.43,48.32000000000060,79.23000000000000,3863.94,563.37,39.50999999999980,61.59000000000000,4263.6,568.41,34.80999999999950,52.530000000000100,3859.04,532.65,27.69000000000010,42.25,3485.47,563.89,36.470000000000300,63.16000000000000,3508.76,513.58,18.08999999999970,39.559999999999900,3605.08,492.42,16.5300000000002,34.45000000000000,3894.11,505.34,21.10999999999970,33.45000000000000,3002.47,522.72,26.76000000000020,42.24000000000000,4575.99,648.38,14.449999999999800,12.030000000000000,4065.83,532.8,25.059999999999900,38.60000000000000,4433.9,558.53,21.8700000000008,40.700000000000000 -851,3498.61,584.38,26.67000000000010,60.06000000000010,3602.52,501.16,17.5300000000002,38.68000000000000,4618.53,681.51,45.27000000000040,86.09000000000000,3744.81,713.17,78.15999999999990,108.51,3956.93,572.6,37.809999999999900,53.80000000000000,4129.66,563.98,29.029999999999700,47.68999999999990,4184.32,512.99,28.600000000000400,43.10000000000000,4596.13,602.01,41.349999999999500,65.16000000000000,4016.85,508.86,24.01000000000020,37.19999999999990,3818.1,488.7,17.960000000000000,25.84000000000000,3478.07,596.23,30.35999999999970,67.65000000000000,4145.65,599.88,48.32999999999990,79.23000000000000,3865.39,563.56,39.51000000000020,61.60000000000000,4267.32,569.21,35.20000000000070,52.71999999999990,3859.12,532.83,27.69000000000010,42.26000000000000,3485.22,563.98,36.470000000000300,63.16000000000000,3508.5,513.57,18.090000000000100,39.559999999999900,3603.47,492.41,16.450000000000300,34.410000000000000,3892.31,505.25,21.110000000000100,33.450000000000000,3002.35,522.64,26.76000000000020,42.24000000000000,4575.21,648.28,14.449999999999800,12.020000000000000,4066.07,532.79,25.059999999999900,38.60000000000000,4435.48,558.64,21.8700000000008,40.700000000000000 -852,3498.82,584.01,26.83999999999970,60.680000000000100,3603.24,501.02,17.5300000000002,38.680000000000100,4619.91,682.35,46.44000000000050,86.84000000000000,3745.42,713.17,77.73999999999980,108.5,3954.58,572.31,37.65000000000010,53.700000000000000,4130.63,564.23,29.11999999999990,47.97000000000000,4183.96,512.87,28.6899999999996,43.01000000000000,4595.55,601.94,41.349999999999500,65.16000000000000,4014.8,508.64,24.11999999999990,37.30000000000010,3816.72,488.71,17.960000000000000,25.85000000000000,3478.96,596.38,30.34999999999990,67.66000000000000,4149.2,600.32,48.32000000000060,79.2399999999999,3866.85,563.76,39.51000000000020,61.60000000000000,4271.03,570.01,35.600000000000400,52.90000000000000,3859.21,533.01,27.69000000000010,42.26000000000000,3484.97,564.07,36.470000000000300,63.16000000000000,3508.25,513.56,18.079999999999900,39.56000000000010,3601.86,492.41,16.379999999999700,34.37000000000000,3890.51,505.17,21.10999999999970,33.44,3002.23,522.56,26.759999999999800,42.24000000000000,4574.43,648.17,14.460000000000000,12.030000000000100,4066.31,532.79,25.059999999999900,38.60000000000000,4437.07,558.76,21.86999999999990,40.700000000000000 -853,3499.04,583.64,27.0,61.31000000000010,3603.96,500.88,17.529999999999700,38.68000000000000,4621.3,683.18,47.60999999999970,87.59000000000000,3746.03,713.17,77.31999999999970,108.48000000000000,3952.23,572.02,37.48000000000000,53.610000000000000,4131.6,564.49,29.219999999999300,48.24000000000000,4183.6,512.74,28.779999999999700,42.92000000000000,4594.97,601.88,41.349999999999500,65.16000000000000,4012.75,508.41,24.23000000000000,37.410000000000000,3815.35,488.73,17.950000000000300,25.840000000000000,3479.84,596.54,30.35999999999970,67.65000000000010,4152.74,600.77,48.32999999999990,79.24000000000000,3868.3,563.96,39.52000000000000,61.58999999999990,4274.75,570.8,35.98999999999980,53.09000000000000,3859.29,533.2,27.69000000000010,42.25,3484.71,564.16,36.4699999999998,63.16000000000010,3507.99,513.55,18.090000000000100,39.56000000000010,3600.25,492.4,16.300000000000200,34.33000000000000,3888.71,505.08,21.110000000000100,33.45000000000000,3002.1,522.47,26.76000000000020,42.24000000000000,4573.66,648.06,14.449999999999800,12.030000000000100,4066.54,532.78,25.070000000000200,38.60000000000000,4438.65,558.87,21.8700000000008,40.700000000000000 -854,3499.25,583.27,27.17000000000010,61.930000000000100,3604.68,500.74,17.5300000000002,38.68000000000000,4622.68,684.01,48.79000000000000,88.35000000000000,3746.64,713.17,76.90000000000010,108.47000000000000,3949.87,571.72,37.32999999999990,53.53000000000000,4132.57,564.75,29.3100000000004,48.51000000000000,4183.48,512.85,28.850000000000400,42.82999999999990,4594.39,601.82,41.35999999999970,65.16000000000000,4010.71,508.18,24.329999999999900,37.51000000000010,3813.97,488.74,17.960000000000000,25.840000000000000,3480.72,596.7,30.360000000000100,67.65000000000000,4156.29,601.22,48.31999999999970,79.24000000000000,3869.76,564.15,39.50999999999980,61.60000000000000,4278.46,571.6,36.39000000000030,53.27000000000000,3859.38,533.38,27.67999999999980,42.26000000000000,3484.46,564.26,36.4699999999998,63.15000000000000,3507.74,513.54,18.080000000000400,39.56000000000010,3598.64,492.4,16.230000000000000,34.29000000000010,3886.91,505.0,21.110000000000100,33.440000000000100,3001.98,522.39,26.759999999999800,42.24000000000000,4572.88,647.96,14.460000000000000,12.020000000000000,4066.78,532.78,25.06999999999970,38.60000000000000,4440.23,558.99,21.8700000000008,40.68999999999990 -855,3499.47,582.91,27.330000000000400,62.54000000000010,3605.4,500.59,17.529999999999700,38.68000000000000,4624.07,684.84,49.95000000000070,89.11000000000000,3747.25,713.17,76.48000000000000,108.45000000000000,3947.52,571.43,37.159999999999900,53.430000000000100,4133.54,565.0,29.39999999999960,48.79000000000000,4183.35,512.96,28.9399999999996,42.73000000000000,4593.81,601.75,41.35999999999970,65.16000000000000,4008.66,507.96,24.44000000000010,37.61000000000010,3812.59,488.75,17.960000000000000,25.850000000000000,3481.61,596.85,30.34999999999990,67.65000000000000,4159.83,601.67,48.32999999999990,79.24000000000000,3871.22,564.35,39.51000000000020,61.60000000000000,4282.18,572.4,36.77999999999980,53.46000000000000,3859.46,533.56,27.69000000000010,42.260000000000100,3484.21,564.35,36.4699999999998,63.15000000000000,3507.48,513.53,18.090000000000100,39.56000000000010,3597.03,492.39,16.149999999999600,34.25,3885.11,504.91,21.10999999999970,33.45000000000000,3001.85,522.31,26.76000000000020,42.24000000000000,4572.11,647.85,14.450000000000700,12.030000000000000,4067.02,532.77,25.070000000000200,38.610000000000000,4441.82,559.1,21.86999999999990,40.69999999999990 -856,3499.68,582.54,27.5,63.16000000000010,3606.12,500.45,17.5300000000002,38.68000000000000,4625.45,685.68,51.13000000000010,89.85000000000000,3747.85,713.17,76.07000000000020,108.44000000000000,3945.17,571.14,37.0,53.34000000000000,4134.51,565.26,29.5,49.05000000000000,4183.23,513.07,29.02000000000040,42.64000000000000,4593.23,601.69,41.36000000000060,65.16000000000000,4006.61,507.73,24.559999999999900,37.71000000000000,3811.22,488.77,17.960000000000000,25.840000000000000,3482.49,597.01,30.360000000000100,67.65000000000000,4163.38,602.12,48.31999999999970,79.24000000000000,3872.67,564.55,39.50999999999980,61.59000000000000,4285.89,573.19,37.1899999999996,53.65000000000000,3859.55,533.75,27.67999999999980,42.25,3483.95,564.44,36.470000000000300,63.15000000000000,3507.22,513.51,18.090000000000100,39.57000000000010,3595.42,492.39,16.079999999999900,34.200000000000000,3883.31,504.83,21.09999999999990,33.44,3001.73,522.23,26.759999999999800,42.24000000000000,4571.33,647.74,14.449999999999800,12.030000000000000,4067.26,532.77,25.06999999999970,38.60000000000000,4443.4,559.21,21.8700000000008,40.69999999999990 -857,3499.9,582.17,27.65999999999990,63.780000000000100,3606.84,500.31,17.529999999999700,38.68000000000000,4626.83,686.51,52.30000000000020,90.61,3748.46,713.17,75.65000000000010,108.42000000000000,3942.82,570.84,36.82999999999990,53.26000000000000,4135.48,565.51,29.590000000000100,49.33000000000000,4183.1,513.17,29.10999999999970,42.56000000000010,4592.66,601.63,41.35000000000040,65.16000000000000,4004.57,507.51,24.65999999999990,37.81000000000010,3809.84,488.78,17.960000000000000,25.840000000000000,3483.37,597.16,30.360000000000100,67.65000000000000,4166.92,602.57,48.32999999999990,79.2399999999999,3874.13,564.75,39.50999999999980,61.59000000000000,4289.6,573.99,37.58999999999920,53.83000000000000,3859.63,533.93,27.69000000000010,42.260000000000100,3483.7,564.53,36.470000000000300,63.16000000000010,3506.97,513.5,18.090000000000100,39.57000000000010,3593.81,492.38,16.0,34.17000000000000,3881.51,504.74,21.09999999999990,33.43999999999990,3001.61,522.14,26.759999999999800,42.24000000000000,4570.55,647.64,14.460000000000000,12.020000000000000,4067.5,532.76,25.070000000000200,38.610000000000000,4444.98,559.33,21.8700000000008,40.69999999999990 -858,3500.11,581.8,27.829999999999900,64.40000000000010,3607.56,500.17,17.5300000000002,38.68000000000000,4628.22,687.34,53.46999999999940,91.37,3749.07,713.17,75.23000000000000,108.41000000000000,3940.46,570.55,36.67999999999980,53.17000000000010,4136.45,565.77,29.69000000000050,49.60000000000000,4182.97,513.28,29.19999999999980,42.46000000000000,4592.08,601.56,41.35000000000040,65.16000000000010,4002.52,507.28,24.770000000000000,37.92000000000010,3808.46,488.79,17.960000000000000,25.85000000000000,3484.26,597.32,30.34999999999990,67.65000000000000,4170.47,603.02,48.31999999999970,79.24000000000000,3875.59,564.94,39.50999999999980,61.59999999999990,4293.32,574.79,37.98000000000050,54.01000000000000,3859.72,534.11,27.68000000000030,42.26000000000000,3483.45,564.62,36.470000000000300,63.16000000000000,3506.71,513.49,18.090000000000100,39.569999999999900,3592.2,492.38,15.930000000000300,34.120000000000000,3879.7,504.65,21.110000000000100,33.450000000000000,3001.48,522.06,26.759999999999800,42.24000000000000,4569.78,647.53,14.449999999999800,12.030000000000000,4067.74,532.76,25.070000000000200,38.60000000000000,4446.57,559.44,21.86999999999990,40.69999999999990 -859,3500.33,581.43,27.99000000000020,65.0200000000001,3608.28,500.03,17.529999999999700,38.67000000000010,4629.6,688.17,54.63999999999940,92.13,3749.68,713.17,74.81000000000000,108.39,3938.11,570.26,36.50999999999980,53.07000000000010,4137.42,566.02,29.779999999999700,49.88,4182.85,513.39,29.279999999999700,42.370000000000000,4591.5,601.5,41.35000000000040,65.16000000000000,4000.47,507.05,24.88000000000010,38.02000000000000,3807.09,488.81,17.960000000000000,25.84000000000000,3485.14,597.48,30.360000000000100,67.65000000000000,4174.01,603.47,48.32999999999990,79.24000000000000,3877.04,565.14,39.51000000000020,61.60000000000000,4297.03,575.58,38.38000000000010,54.19999999999990,3859.8,534.3,27.6899999999996,42.25,3483.19,564.71,36.4699999999998,63.16000000000000,3506.46,513.48,18.090000000000100,39.559999999999900,3590.59,492.37,15.849999999999900,34.09000000000000,3877.9,504.57,21.110000000000100,33.44,3001.36,521.98,26.759999999999800,42.24000000000000,4569.0,647.42,14.460000000000000,12.030000000000100,4067.98,532.76,25.059999999999900,38.60000000000000,4448.15,559.56,21.8700000000008,40.690000000000100 -860,3500.54,581.06,28.15999999999990,65.6400000000001,3609.0,499.88,17.5300000000002,38.68000000000000,4630.99,689.01,55.8100000000004,92.87,3750.29,713.17,74.40000000000010,108.38,3935.76,569.96,36.34999999999990,52.99000000000000,4139.16,566.45,29.779999999999700,49.88,4182.27,513.29,29.269999999999500,42.370000000000000,4590.92,601.44,41.35000000000040,65.16000000000000,3998.43,506.83,24.98000000000000,38.12000000000010,3805.71,488.82,17.960000000000000,25.84000000000000,3486.02,597.63,30.360000000000100,67.65000000000000,4177.56,603.92,48.31999999999970,79.24000000000000,3878.5,565.34,39.51000000000020,61.58999999999990,4301.68,575.97,38.76999999999950,54.38,3859.89,534.48,27.68000000000030,42.26000000000000,3482.94,564.8,36.4699999999998,63.16000000000010,3506.2,513.47,18.090000000000100,39.559999999999900,3589.74,492.5,15.770000000000400,34.050000000000000,3876.1,504.48,21.110000000000100,33.44999999999990,3001.23,521.89,26.759999999999800,42.24000000000000,4569.6,647.4,14.460000000000000,12.030000000000000,4068.22,532.75,25.0600000000004,38.60000000000000,4449.73,559.67,21.8700000000008,40.700000000000000 -861,3501.18,580.86,28.140000000000300,65.56000000000000,3609.72,499.74,17.5300000000002,38.68000000000000,4632.37,689.84,56.98000000000050,93.63,3750.9,713.17,73.98000000000000,108.36,3933.4,569.67,36.190000000000100,52.90000000000010,4140.91,566.88,29.779999999999700,49.88,4181.69,513.2,29.27000000000040,42.370000000000000,4590.34,601.38,41.349999999999500,65.16000000000000,3996.38,506.6,25.08999999999970,38.22000000000000,3804.34,488.83,17.949999999999800,25.84000000000000,3486.91,597.79,30.350000000000400,67.65000000000010,4181.1,604.37,48.32999999999990,79.24000000000000,3879.95,565.53,39.52000000000000,61.60000000000000,4306.32,576.35,39.18000000000030,54.569999999999900,3859.97,534.66,27.69000000000010,42.26000000000000,3482.69,564.89,36.4699999999998,63.16000000000000,3505.95,513.46,18.080000000000400,39.559999999999900,3588.88,492.63,15.699999999999800,34.01000000000000,3874.3,504.4,21.10999999999970,33.440000000000100,3001.11,521.81,26.759999999999800,42.24000000000000,4570.2,647.38,14.449999999999800,12.020000000000000,4068.46,532.75,25.059999999999900,38.60000000000000,4451.32,559.78,21.86999999999990,40.700000000000000 -862,3501.82,580.65,28.11999999999990,65.49000000000000,3610.44,499.6,17.529999999999700,38.68000000000000,4633.76,690.67,58.14999999999960,94.39,3751.51,713.17,73.56000000000000,108.35000000000000,3931.05,569.38,36.02999999999980,52.81000000000010,4142.65,567.31,29.78000000000070,49.88000000000010,4181.1,513.1,29.279999999999700,42.370000000000000,4589.76,601.31,41.35999999999970,65.16000000000010,3994.33,506.38,25.20000000000030,38.32000000000010,3802.96,488.85,17.960000000000000,25.840000000000000,3487.79,597.94,30.360000000000100,67.65000000000000,4184.65,604.82,48.32000000000060,79.2399999999999,3881.41,565.73,39.51000000000020,61.60000000000000,4310.97,576.73,39.56999999999970,54.76000000000000,3860.06,534.85,27.67999999999980,42.25,3482.44,564.98,36.46000000000000,63.16000000000000,3505.69,513.45,18.090000000000100,39.559999999999900,3588.03,492.77,15.61999999999990,33.96000000000000,3872.5,504.31,21.110000000000100,33.45000000000000,3000.99,521.73,26.76000000000020,42.24000000000000,4570.8,647.35,14.449999999999800,12.030000000000000,4068.69,532.74,25.070000000000200,38.610000000000000,4452.9,559.9,21.8700000000008,40.700000000000000 -863,3502.46,580.44,28.09999999999990,65.41000000000000,3611.16,499.46,17.5300000000002,38.670000000000000,4635.14,691.5,59.32999999999990,95.14,3752.12,713.17,73.14000000000030,108.33000000000000,3928.7,569.08,35.86000000000010,52.71999999999990,4144.4,567.75,29.78000000000070,49.870000000000000,4180.52,513.01,29.279999999999700,42.370000000000000,4589.18,601.25,41.35999999999970,65.16000000000000,3992.29,506.15,25.309999999999900,38.430000000000100,3801.58,488.86,17.960000000000000,25.840000000000000,3488.67,598.1,30.360000000000100,67.65000000000000,4188.19,605.27,48.33000000000080,79.24000000000000,3882.87,565.93,39.51000000000020,61.59000000000000,4315.62,577.11,39.96000000000000,54.94999999999990,3860.14,535.03,27.69000000000010,42.26000000000000,3482.18,565.07,36.470000000000300,63.16000000000000,3505.44,513.44,18.079999999999900,39.559999999999900,3587.17,492.9,15.549999999999700,33.930000000000100,3870.7,504.22,21.110000000000100,33.44999999999990,3000.86,521.65,26.759999999999800,42.24000000000000,4570.18,647.82,14.449999999999800,12.020000000000000,4068.93,532.74,25.070000000000200,38.60000000000000,4455.0,560.0,21.86999999999990,40.700000000000000 -864,3503.1,580.24,28.079999999999900,65.33000000000000,3611.83,499.53,17.51000000000020,38.620000000000000,4636.53,692.34,60.49000000000070,95.89,3752.73,713.17,72.7199999999998,108.31000000000000,3926.35,568.79,35.70000000000030,52.63,4146.14,568.18,29.779999999999700,49.870000000000000,4179.94,512.91,29.28000000000070,42.370000000000000,4588.6,601.19,41.35999999999970,65.16000000000000,3990.24,505.92,25.42000000000010,38.53000000000000,3800.21,488.87,17.960000000000000,25.840000000000000,3489.56,598.26,30.34999999999990,67.65000000000000,4191.73,605.72,48.33000000000080,79.24000000000000,3884.32,566.13,39.50999999999980,61.59000000000000,4320.26,577.5,40.36999999999990,55.13,3860.23,535.21,27.67999999999980,42.26000000000000,3481.93,565.16,36.470000000000300,63.16000000000010,3505.18,513.43,18.090000000000100,39.56000000000010,3586.31,493.03,15.480000000000000,33.890000000000000,3868.9,504.14,21.110000000000100,33.440000000000100,3000.74,521.56,26.76000000000020,42.24000000000000,4569.55,648.28,14.460000000000000,12.030000000000000,4069.17,532.73,25.06999999999970,38.610000000000000,4457.1,560.1,21.86999999999990,40.69999999999990 -865,3503.75,580.03,28.059999999999900,65.26000000000000,3612.5,499.61,17.48999999999980,38.55000000000000,4637.91,693.17,61.67000000000010,96.65000000000010,3753.34,713.17,72.29999999999970,108.30000000000000,3923.99,568.5,35.54000000000040,52.54000000000000,4147.89,568.61,29.779999999999700,49.88,4179.36,512.81,29.28000000000070,42.38000000000010,4588.03,601.12,41.35000000000040,65.16000000000000,3988.19,505.7,25.529999999999700,38.63000000000010,3798.83,488.88,17.960000000000000,25.850000000000000,3490.44,598.41,30.360000000000100,67.65000000000000,4195.28,606.17,48.32999999999990,79.24000000000000,3885.78,566.32,39.50999999999980,61.59999999999990,4324.91,577.88,40.76000000000020,55.31000000000010,3860.31,535.4,27.69000000000010,42.25,3481.68,565.25,36.46000000000000,63.16000000000000,3504.92,513.42,18.090000000000100,39.56000000000010,3585.46,493.16,15.389999999999900,33.850000000000000,3867.1,504.05,21.09999999999990,33.45000000000000,3000.61,521.48,26.759999999999800,42.24000000000000,4562.21,645.38,14.449999999999800,12.030000000000000,4069.41,532.73,25.070000000000200,38.60000000000000,4459.19,560.2,21.8700000000008,40.69999999999990 -866,3504.39,579.82,28.040000000000000,65.18999999999990,3613.18,499.68,17.470000000000300,38.49000000000000,4639.29,694.0,62.84000000000020,97.40000000000000,3753.94,713.17,71.88999999999990,108.28000000000000,3921.64,568.2,35.38000000000010,52.45999999999990,4149.63,569.04,29.779999999999700,49.88,4178.78,512.72,29.28000000000070,42.370000000000000,4587.45,601.06,41.35000000000040,65.16000000000010,3986.15,505.47,25.63000000000010,38.73000000000000,3797.45,488.9,17.960000000000000,25.840000000000000,3491.32,598.57,30.35999999999970,67.65000000000000,4198.82,606.62,48.32999999999990,79.24000000000000,3887.23,566.52,39.52000000000000,61.60000000000000,4329.55,578.26,41.159999999999900,55.5,3860.4,535.58,27.67999999999980,42.26000000000000,3481.42,565.34,36.4699999999998,63.16000000000000,3504.67,513.41,18.090000000000100,39.56000000000010,3584.6,493.29,15.320000000000200,33.81,3865.29,503.97,21.110000000000100,33.43999999999990,3000.49,521.4,26.76000000000020,42.24000000000000,4554.87,642.49,14.449999999999800,12.030000000000000,4069.65,532.72,25.06999999999970,38.610000000000000,4461.29,560.3,21.86999999999990,40.700000000000000 -867,3505.03,579.61,28.020000000000000,65.12,3613.85,499.76,17.450000000000300,38.42000000000000,4640.68,694.83,64.00999999999930,98.16000000000000,3754.55,713.17,71.4699999999998,108.2700000000000,3919.29,567.91,35.21000000000000,52.360000000000000,4151.38,569.47,29.779999999999700,49.88,4178.2,512.62,29.279999999999700,42.370000000000000,4586.87,601.0,41.35000000000040,65.16000000000000,3984.1,505.24,25.74000000000020,38.84000000000000,3796.08,488.91,17.960000000000000,25.84000000000000,3492.21,598.72,30.34999999999990,67.65000000000000,4202.37,607.07,48.32999999999990,79.2299999999999,3888.69,566.72,39.50999999999980,61.58999999999990,4334.2,578.65,41.5600000000004,55.680000000000100,3860.48,535.76,27.69000000000010,42.26000000000000,3481.17,565.44,36.4699999999998,63.15000000000000,3504.41,513.4,18.090000000000100,39.56000000000010,3583.25,493.52,15.320000000000200,33.81000000000010,3863.49,503.88,21.110000000000100,33.450000000000000,3000.37,521.32,26.76000000000020,42.239999999999900,4547.52,639.59,14.459999999999100,12.030000000000000,4069.89,532.72,25.070000000000200,38.60000000000000,4463.39,560.4,21.86999999999990,40.700000000000000 -868,3505.67,579.41,28.0,65.03000000000010,3614.52,499.83,17.429999999999800,38.37000000000010,4642.06,695.67,65.17999999999940,98.91000000000010,3755.16,713.17,71.05000000000020,108.25,3916.94,567.62,35.04999999999970,52.27000000000000,4153.12,569.9,29.779999999999700,49.88,4177.62,512.53,29.27000000000040,42.370000000000000,4586.29,600.93,41.35000000000040,65.16000000000010,3982.05,505.02,25.84999999999990,38.940000000000100,3794.7,488.92,17.960000000000000,25.85000000000000,3493.09,598.88,30.35999999999970,67.65000000000000,4205.91,607.52,48.32999999999990,79.23000000000000,3890.15,566.91,39.50999999999980,61.60000000000000,4338.85,579.03,41.94999999999980,55.870000000000000,3860.56,535.95,27.69000000000010,42.25,3480.92,565.53,36.46000000000000,63.15000000000000,3504.16,513.39,18.079999999999900,39.56000000000010,3581.9,493.75,15.319999999999700,33.809999999999900,3861.69,503.8,21.110000000000100,33.44,3000.24,521.23,26.76000000000020,42.24000000000000,4540.18,636.7,14.460000000000000,12.030000000000000,4070.13,532.72,25.059999999999900,38.60000000000000,4465.49,560.51,21.86999999999990,40.690000000000100 -869,3506.31,579.2,27.98000000000000,64.95999999999990,3615.2,499.9,17.40000000000010,38.31000000000010,4643.45,696.5,66.35000000000040,99.67000000000000,3755.77,713.17,70.63000000000010,108.24,3914.58,567.32,34.88999999999990,52.18999999999990,4154.87,570.33,29.779999999999700,49.88,4177.04,512.43,29.27000000000040,42.370000000000000,4585.71,600.87,41.35000000000040,65.16000000000000,3980.01,504.79,25.94999999999980,39.04000000000000,3793.33,488.94,17.950000000000300,25.84000000000000,3493.97,599.04,30.360000000000100,67.65000000000010,4207.48,607.74,48.32000000000060,79.24000000000000,3891.6,567.11,39.51000000000020,61.60000000000000,4342.27,580.12,41.94999999999980,55.870000000000000,3860.65,536.13,27.69000000000010,42.26000000000000,3480.66,565.62,36.470000000000300,63.15000000000000,3503.9,513.38,18.08999999999970,39.56000000000010,3580.55,493.98,15.319999999999700,33.809999999999900,3859.89,503.71,21.110000000000100,33.44,3000.12,521.15,26.76000000000020,42.24000000000000,4532.84,633.8,14.449999999999800,12.030000000000100,4070.37,532.71,25.059999999999900,38.59999999999990,4467.59,560.61,21.86999999999990,40.69999999999990 -870,3506.95,578.99,27.96000000000000,64.89000000000000,3615.87,499.98,17.38000000000010,38.24000000000000,4644.64,696.75,65.17999999999940,98.91000000000000,3756.38,713.17,70.21000000000000,108.22000000000000,3912.23,567.03,34.73000000000000,52.09000000000000,4156.61,570.76,29.78000000000070,49.88,4176.45,512.34,29.279999999999700,42.370000000000000,4585.13,600.81,41.35999999999970,65.16000000000010,3977.96,504.57,26.070000000000200,39.14000000000000,3791.95,488.95,17.960000000000000,25.84000000000000,3494.86,599.19,30.34999999999990,67.65000000000000,4209.04,607.97,48.32999999999990,79.24000000000000,3893.06,567.31,39.51000000000020,61.59000000000000,4345.69,581.21,41.96000000000000,55.88,3860.73,536.31,27.69000000000010,42.260000000000100,3480.41,565.71,36.470000000000300,63.16000000000000,3503.65,513.37,18.079999999999900,39.559999999999900,3579.19,494.21,15.329999999999900,33.81,3858.09,503.62,21.10999999999970,33.450000000000000,2999.99,521.07,26.76000000000020,42.239999999999900,4525.5,630.91,14.449999999999800,12.030000000000100,4070.61,532.71,25.059999999999900,38.59999999999990,4469.69,560.71,21.8700000000008,40.69999999999990 -871,3507.59,578.78,27.94000000000010,64.82000000000010,3616.54,500.05,17.360000000000100,38.18000000000000,4645.83,697.0,64.01000000000020,98.15000000000000,3756.99,713.17,69.79000000000040,108.21000000000000,3909.88,566.74,34.559999999999900,52.0,4158.36,571.19,29.78000000000070,49.88,4175.87,512.24,29.279999999999700,42.370000000000000,4584.55,600.74,41.35999999999970,65.16000000000000,3975.91,504.34,26.18000000000030,39.24000000000010,3790.57,488.96,17.960000000000000,25.85000000000000,3495.74,599.35,30.360000000000100,67.65000000000000,4210.61,608.2,48.32000000000060,79.24000000000000,3894.51,567.51,39.52000000000000,61.59000000000000,4349.12,582.31,41.94999999999980,55.870000000000000,3860.82,536.5,27.69000000000010,42.25,3480.16,565.8,36.46000000000000,63.16000000000010,3503.39,513.36,18.090000000000100,39.559999999999900,3577.84,494.44,15.319999999999700,33.81,3856.29,503.54,21.110000000000100,33.44,2999.87,520.99,26.76000000000020,42.24000000000000,4518.15,628.01,14.460000000000000,12.030000000000000,4070.84,532.7,25.06999999999970,38.6099999999999,4471.78,560.81,21.88000000000010,40.700000000000000 -872,3508.23,578.58,27.92000000000010,64.74000000000000,3617.21,500.13,17.34999999999990,38.120000000000000,4647.01,697.24,62.84000000000020,97.41000000000000,3757.6,713.17,69.38000000000010,108.19000000000000,3907.52,566.44,34.409999999999900,51.92000000000000,4160.1,571.62,29.779999999999700,49.88,4175.29,512.15,29.279999999999700,42.370000000000000,4583.97,600.68,41.35999999999970,65.16000000000010,3973.87,504.11,26.2800000000002,39.35000000000000,3789.2,488.98,17.960000000000000,25.840000000000000,3496.62,599.5,30.360000000000100,67.65000000000000,4212.17,608.43,48.32999999999990,79.24000000000000,3895.97,567.7,39.51000000000020,61.59999999999990,4352.54,583.4,41.96000000000000,55.870000000000000,3860.9,536.68,27.69000000000010,42.260000000000100,3479.9,565.89,36.4699999999998,63.16000000000000,3503.14,513.35,18.079999999999900,39.559999999999900,3576.49,494.67,15.320000000000200,33.81,3854.49,503.45,21.110000000000100,33.45000000000000,2999.75,520.9,26.76000000000020,42.24000000000000,4510.81,625.12,14.449999999999800,12.030000000000000,4071.08,532.7,25.06999999999970,38.59999999999990,4473.88,560.91,21.86999999999990,40.700000000000000 -873,3508.87,578.37,27.90000000000010,64.66000000000000,3617.89,500.2,17.320000000000200,38.06,4648.2,697.49,61.67000000000010,96.65000000000000,3758.21,713.17,68.96000000000000,108.18000000000000,3905.17,566.15,34.23999999999980,51.83000000000000,4161.85,572.05,29.779999999999700,49.88,4174.71,512.05,29.279999999999700,42.370000000000000,4583.4,600.62,41.35000000000040,65.16000000000000,3971.82,503.89,26.38999999999990,39.450000000000000,3787.82,488.99,17.960000000000000,25.840000000000000,3497.5,599.66,30.360000000000100,67.65000000000000,4213.73,608.66,48.33000000000080,79.24000000000000,3897.43,567.9,39.51000000000020,61.60000000000000,4355.97,584.49,41.94999999999980,55.870000000000000,3860.99,536.86,27.68000000000030,42.26000000000000,3479.65,565.98,36.4699999999998,63.16000000000000,3502.88,513.34,18.08999999999970,39.559999999999900,3575.14,494.9,15.320000000000200,33.81000000000010,3852.69,503.37,21.09999999999990,33.43999999999990,2999.62,520.82,26.76000000000020,42.239999999999900,4506.12,623.16,14.460000000000000,12.030000000000100,4071.32,532.69,25.070000000000200,38.6099999999999,4475.98,561.01,21.8700000000008,40.700000000000000 -874,3509.51,578.16,27.87999999999970,64.59000000000000,3618.56,500.28,17.300000000000200,37.99000000000000,4649.39,697.74,60.5,95.89,3758.82,713.17,68.54000000000000,108.16000000000000,3902.82,565.86,34.06999999999970,51.73000000000000,4163.59,572.49,29.779999999999700,49.870000000000000,4174.13,511.95,29.279999999999700,42.38000000000010,4582.82,600.55,41.35000000000040,65.16000000000010,3969.77,503.66,26.5,39.55000000000000,3786.44,489.0,17.960000000000000,25.850000000000000,3498.39,599.82,30.360000000000100,67.65000000000000,4215.3,608.89,48.31999999999970,79.23000000000000,3898.88,568.1,39.50999999999980,61.59000000000000,4359.39,585.59,41.96000000000000,55.870000000000000,3861.07,537.05,27.69000000000010,42.25,3479.4,566.07,36.46000000000000,63.16000000000000,3502.62,513.32,18.090000000000100,39.569999999999900,3573.79,495.13,15.320000000000200,33.81000000000010,3850.89,503.28,21.09999999999990,33.440000000000100,2999.5,520.74,26.76000000000020,42.24000000000000,4501.44,621.2,14.450000000000700,12.030000000000000,4071.56,532.69,25.070000000000200,38.59999999999990,4478.08,561.11,21.86999999999990,40.69999999999990 -875,3510.16,577.95,27.860000000000100,64.52000000000000,3619.23,500.35,17.2800000000002,37.93000000000000,4650.58,697.99,59.32999999999990,95.14,3759.43,713.17,68.12000000000040,108.15000000000000,3900.47,565.57,33.91000000000030,51.64000000000000,4165.34,572.92,29.779999999999700,49.870000000000000,4173.55,511.86,29.279999999999700,42.370000000000000,4582.24,600.49,41.35000000000040,65.16000000000000,3967.73,503.44,26.59999999999990,39.650000000000000,3785.07,489.02,17.960000000000000,25.840000000000000,3499.27,599.97,30.360000000000100,67.65000000000000,4216.86,609.11,48.32999999999990,79.24000000000000,3900.34,568.29,39.50999999999980,61.60000000000000,4362.81,586.68,41.96000000000000,55.870000000000000,3861.16,537.23,27.68000000000030,42.26000000000000,3479.14,566.16,36.470000000000300,63.16000000000010,3502.37,513.31,18.090000000000100,39.57000000000010,3572.44,495.36,15.320000000000200,33.809999999999900,3849.08,503.19,21.110000000000100,33.45000000000000,2999.37,520.65,26.76000000000020,42.24000000000000,4496.75,619.24,14.449999999999800,12.030000000000000,4071.8,532.69,25.06999999999970,38.59999999999990,4480.18,561.22,21.86999999999990,40.68999999999990 -876,3510.8,577.75,27.83999999999970,64.44000000000010,3619.91,500.43,17.25,37.87000000000000,4651.77,698.24,58.159999999999900,94.38,3760.04,713.17,67.69999999999980,108.13,3898.11,565.27,33.75,51.56000000000010,4167.08,573.35,29.779999999999700,49.88,4172.97,511.76,29.269999999999500,42.370000000000000,4581.66,600.43,41.35000000000040,65.16000000000010,3965.68,503.21,26.71000000000000,39.75000000000010,3783.69,489.03,17.960000000000000,25.840000000000000,3500.15,600.13,30.360000000000100,67.65000000000000,4218.43,609.34,48.31999999999970,79.24000000000000,3901.8,568.49,39.50999999999980,61.60000000000000,4366.24,587.77,41.94999999999980,55.870000000000000,3861.24,537.41,27.69000000000010,42.26000000000000,3478.89,566.25,36.470000000000300,63.16000000000000,3502.11,513.3,18.08999999999970,39.56000000000010,3571.08,495.59,15.329999999999900,33.81,3847.28,503.11,21.10999999999970,33.43999999999990,2999.25,520.57,26.76000000000020,42.239999999999900,4492.06,617.28,14.449999999999800,12.030000000000000,4072.04,532.68,25.06999999999970,38.60000000000000,4482.28,561.32,21.86999999999990,40.69999999999990 -877,3511.44,577.54,27.820000000000200,64.37,3620.58,500.5,17.240000000000200,37.809999999999900,4652.96,698.49,56.97999999999960,93.63,3760.64,713.17,67.29000000000000,108.11,3895.76,564.98,33.58999999999970,51.47000000000000,4168.83,573.78,29.779999999999700,49.88,4172.39,511.67,29.269999999999500,42.37000000000000,4581.08,600.36,41.35000000000040,65.16000000000000,3963.63,502.98,26.829999999999900,39.860000000000000,3782.32,489.04,17.949999999999800,25.85000000000000,3501.04,600.28,30.34999999999990,67.65000000000000,4219.99,609.57,48.32999999999990,79.2399999999999,3903.25,568.69,39.51000000000020,61.58999999999990,4369.66,588.86,41.96000000000000,55.88,3861.33,537.6,27.68000000000030,42.25,3478.64,566.34,36.470000000000300,63.16000000000000,3501.86,513.29,18.079999999999900,39.56000000000010,3569.73,495.82,15.329999999999900,33.81,3845.48,503.02,21.110000000000100,33.450000000000000,2999.13,520.49,26.759999999999800,42.24000000000000,4487.37,615.32,14.460000000000000,12.030000000000000,4072.28,532.68,25.059999999999900,38.60000000000000,4484.37,561.42,21.88000000000010,40.700000000000000 -878,3512.08,577.33,27.800000000000200,64.30000000000000,3621.25,500.58,17.2199999999998,37.74000000000010,4654.15,698.73,55.8100000000004,92.88,3761.25,713.17,66.86999999999990,108.10000000000000,3893.41,564.69,33.42000000000010,51.36999999999990,4170.57,574.21,29.78000000000070,49.88,4171.8,511.57,29.279999999999700,42.37000000000010,4580.5,600.3,41.35999999999970,65.16000000000010,3961.59,502.76,26.92999999999980,39.96000000000000,3780.94,489.06,17.960000000000000,25.84000000000000,3501.92,600.44,30.360000000000100,67.65000000000000,4221.55,609.8,48.32999999999990,79.24000000000000,3904.71,568.89,39.50999999999980,61.59000000000000,4373.09,589.96,41.94999999999980,55.870000000000000,3861.41,537.78,27.69000000000010,42.26000000000000,3478.38,566.43,36.4699999999998,63.16000000000010,3501.6,513.28,18.090000000000100,39.56000000000010,3569.85,495.79,15.320000000000200,33.81,3843.68,502.94,21.110000000000100,33.44,2999.0,520.41,26.76000000000020,42.24000000000000,4482.68,613.36,14.460000000000000,12.030000000000000,4072.52,532.67,25.059999999999900,38.60000000000000,4486.47,561.52,21.86999999999990,40.700000000000000 -879,3512.72,577.13,27.7800000000002,64.21000000000000,3621.92,500.65,17.199999999999800,37.680000000000100,4655.34,698.98,54.63999999999940,92.12,3761.86,713.17,66.44999999999980,108.08000000000000,3891.05,564.39,33.27000000000000,51.29000000000000,4171.63,574.5,29.779999999999700,49.88,4171.22,511.48,29.279999999999700,42.370000000000000,4579.92,600.24,41.35999999999970,65.16000000000000,3959.54,502.53,27.040000000000000,40.06000000000010,3779.56,489.07,17.960000000000000,25.84000000000000,3502.8,600.6,30.35999999999970,67.65000000000000,4223.12,610.03,48.31999999999970,79.24000000000000,3906.16,569.08,39.52000000000000,61.59999999999990,4376.51,591.05,41.96000000000000,55.870000000000000,3861.5,537.96,27.67999999999980,42.26000000000000,3478.13,566.52,36.4699999999998,63.16000000000000,3501.74,513.41,18.090000000000100,39.56000000000010,3569.97,495.76,15.320000000000200,33.81000000000010,3841.88,502.85,21.10999999999970,33.44999999999990,2998.88,520.32,26.759999999999800,42.239999999999900,4478.0,611.4,14.449999999999800,12.030000000000000,4072.76,532.67,25.05999999999950,38.60000000000000,4485.85,561.43,21.86999999999990,40.700000000000000 -880,3513.36,576.92,27.759999999999800,64.14000000000000,3622.6,500.73,17.170000000000100,37.620000000000000,4656.53,699.23,53.470000000000300,91.37,3762.47,713.17,66.0300000000002,108.07000000000000,3888.7,564.1,33.100000000000400,51.19999999999990,4172.7,574.79,29.779999999999700,49.870000000000000,4170.64,511.38,29.279999999999700,42.370000000000000,4579.34,600.17,41.35999999999970,65.16000000000010,3957.49,502.31,27.15000000000010,40.160000000000000,3778.19,489.08,17.960000000000000,25.85000000000000,3503.69,600.75,30.34999999999990,67.65000000000000,4224.68,610.26,48.32999999999990,79.23000000000000,3907.62,569.28,39.51000000000020,61.60000000000000,4377.26,590.58,41.94999999999980,55.870000000000000,3861.58,538.15,27.69000000000010,42.26000000000000,3477.88,566.62,36.4699999999998,63.15000000000000,3501.88,513.54,18.079999999999900,39.56000000000010,3570.09,495.73,15.319999999999700,33.800000000000000,3840.08,502.76,21.110000000000100,33.450000000000000,2998.75,520.24,26.76000000000020,42.24000000000000,4473.31,609.44,14.449999999999800,12.030000000000000,4072.99,532.66,25.07000000000060,38.610000000000000,4485.23,561.33,21.88000000000010,40.69999999999990 -881,3514.0,576.71,27.73999999999980,64.06999999999990,3623.27,500.8,17.15000000000010,37.56,4657.72,699.48,52.30000000000020,90.61,3763.08,713.17,65.61000000000010,108.05000000000000,3886.35,563.81,32.940000000000100,51.110000000000000,4173.76,575.07,29.779999999999700,49.88,4170.06,511.29,29.279999999999700,42.37000000000000,4578.77,600.11,41.349999999999500,65.16000000000000,3955.45,502.08,27.25,40.26000000000010,3776.81,489.1,17.960000000000000,25.840000000000000,3504.57,600.91,30.35999999999970,67.65000000000000,4226.25,610.48,48.31999999999970,79.24000000000000,3909.08,569.48,39.51000000000020,61.59000000000000,4378.01,590.11,41.94999999999980,55.870000000000000,3861.67,538.33,27.67999999999980,42.26000000000000,3477.62,566.71,36.470000000000300,63.15000000000000,3502.01,513.67,18.08999999999970,39.56000000000010,3570.21,495.69,15.320000000000200,33.81,3838.28,502.68,21.10999999999970,33.44,2998.63,520.16,26.759999999999800,42.24000000000000,4468.62,607.48,14.460000000000000,12.030000000000000,4073.23,532.66,25.070000000000200,38.60000000000000,4484.62,561.24,21.86999999999990,40.700000000000000 -882,3514.64,576.5,27.72000000000030,64.0,3623.94,500.88,17.13000000000010,37.49000000000000,4658.91,699.73,51.11999999999990,89.86000000000000,3763.69,713.17,65.19000000000010,108.04000000000000,3884.0,563.51,32.77000000000000,51.02000000000000,4174.83,575.36,29.779999999999700,49.88,4169.48,511.19,29.28000000000070,42.37000000000000,4578.19,600.05,41.35000000000040,65.16000000000010,3953.4,501.85,27.360000000000100,40.370000000000000,3775.44,489.11,17.949999999999800,25.840000000000000,3505.45,601.06,30.360000000000100,67.65000000000010,4227.81,610.71,48.32999999999990,79.24000000000000,3908.26,569.36,39.52000000000000,61.59000000000000,4378.76,589.63,41.94999999999980,55.88,3861.75,538.51,27.69000000000010,42.26000000000000,3477.37,566.8,36.470000000000300,63.15000000000010,3502.15,513.8,18.08999999999970,39.56000000000010,3570.33,495.66,15.320000000000200,33.81,3836.48,502.59,21.09999999999990,33.45000000000000,2998.51,520.08,26.759999999999800,42.24000000000000,4463.93,605.52,14.460000000000000,12.030000000000000,4073.47,532.65,25.070000000000200,38.610000000000000,4484.0,561.15,21.86999999999990,40.700000000000000 -883,3515.28,576.3,27.69999999999980,63.92000000000010,3624.62,500.95,17.110000000000100,37.43000000000000,4660.1,699.98,49.94999999999980,89.10000000000000,3764.3,713.17,64.77000000000000,108.0200000000000,3881.64,563.22,32.620000000000300,50.93000000000000,4175.89,575.65,29.779999999999700,49.88,4168.9,511.09,29.28000000000070,42.38000000000010,4577.61,599.98,41.35000000000040,65.16000000000000,3951.35,501.63,27.47000000000030,40.47000000000000,3774.06,489.12,17.960000000000000,25.850000000000000,3506.34,601.22,30.34999999999990,67.65000000000000,4229.37,610.94,48.32999999999990,79.2399999999999,3907.45,569.23,39.51000000000020,61.60000000000000,4379.5,589.16,41.96000000000000,55.870000000000000,3861.84,538.7,27.67999999999980,42.26000000000000,3477.12,566.89,36.470000000000300,63.16000000000000,3502.29,513.92,18.090000000000100,39.57000000000010,3570.45,495.63,15.320000000000200,33.81000000000010,3834.68,502.51,21.100000000000400,33.440000000000100,2998.38,519.99,26.759999999999800,42.24000000000000,4459.25,603.56,14.449999999999800,12.030000000000100,4073.71,532.65,25.06999999999970,38.60000000000000,4483.38,561.06,21.86999999999990,40.700000000000000 -884,3515.92,576.09,27.67999999999980,63.83999999999990,3625.29,501.03,17.090000000000100,37.370000000000000,4661.29,700.22,48.77999999999980,88.35000000000000,3764.91,713.17,64.36000000000010,108.01,3879.29,562.93,32.44999999999980,50.84000000000000,4176.96,575.94,29.779999999999700,49.88,4168.32,511.0,29.27000000000040,42.370000000000000,4577.03,599.92,41.35000000000040,65.16000000000010,3949.3,501.4,27.579999999999900,40.57000000000010,3772.68,489.14,17.960000000000000,25.840000000000000,3507.22,601.38,30.360000000000100,67.65000000000000,4230.94,611.17,48.32000000000060,79.24000000000000,3906.64,569.11,39.51000000000020,61.60000000000000,4380.25,588.69,41.96000000000000,55.86999999999990,3861.92,538.88,27.69000000000010,42.26000000000000,3476.86,566.98,36.4699999999998,63.16000000000000,3502.43,514.05,18.090000000000100,39.57000000000010,3570.57,495.6,15.319999999999700,33.800000000000000,3832.87,502.42,21.110000000000100,33.45000000000000,2998.26,519.91,26.759999999999800,42.24000000000000,4454.56,601.6,14.449999999999800,12.030000000000000,4073.95,532.65,25.07000000000060,38.60000000000000,4482.76,560.96,21.86999999999990,40.69999999999990 -885,3516.57,575.88,27.65999999999990,63.77000000000000,3625.96,501.1,17.070000000000200,37.309999999999900,4662.48,700.47,47.61000000000060,87.60000000000000,3765.52,713.17,63.940000000000100,107.99,3876.94,562.63,32.290000000000000,50.76000000000000,4178.02,576.23,29.779999999999700,49.870000000000000,4167.74,510.9,29.27000000000040,42.370000000000000,4576.45,599.86,41.35000000000040,65.16000000000000,3947.26,501.17,27.6899999999996,40.68000000000000,3771.31,489.15,17.960000000000000,25.840000000000000,3508.1,601.53,30.360000000000100,67.65000000000000,4232.5,611.4,48.32999999999990,79.24000000000000,3905.83,568.99,39.51000000000020,61.59000000000000,4381.0,588.22,41.94999999999980,55.870000000000000,3862.0,539.06,27.69000000000010,42.260000000000100,3476.61,567.07,36.4699999999998,63.16000000000000,3502.57,514.18,18.079999999999900,39.56000000000010,3570.69,495.56,15.320000000000200,33.81,3831.07,502.34,21.10999999999970,33.44,2998.13,519.83,26.759999999999800,42.24000000000000,4449.87,599.64,14.449999999999800,12.030000000000000,4074.19,532.64,25.070000000000200,38.60000000000000,4482.14,560.87,21.86999999999990,40.700000000000000 -886,3517.21,575.67,27.63999999999990,63.700000000000000,3626.63,501.18,17.049999999999700,37.24000000000000,4663.66,700.72,46.44999999999980,86.83999999999990,3766.13,713.17,63.52000000000000,107.98000000000000,3874.59,562.34,32.11999999999990,50.66000000000000,4179.08,576.51,29.779999999999700,49.88,4167.15,510.81,29.28000000000070,42.37000000000000,4575.87,599.79,41.35999999999970,65.16000000000010,3945.21,500.95,27.800000000000200,40.77000000000000,3769.93,489.16,17.960000000000000,25.84000000000000,3508.99,601.69,30.350000000000400,67.65000000000000,4234.07,611.62,48.32000000000060,79.24000000000000,3905.02,568.87,39.51000000000020,61.59000000000000,4381.75,587.75,41.94999999999980,55.870000000000000,3862.09,539.25,27.69000000000010,42.26000000000000,3477.19,566.85,36.34000000000020,62.91000000000000,3502.7,514.31,18.090000000000100,39.56000000000010,3570.81,495.53,15.320000000000200,33.81000000000010,3829.27,502.25,21.110000000000100,33.440000000000100,2998.01,519.75,26.759999999999800,42.24000000000000,4445.18,597.68,14.460000000000000,12.030000000000100,4074.43,532.64,25.059999999999900,38.60000000000000,4481.52,560.78,21.86999999999990,40.700000000000000 -887,3517.85,575.47,27.61999999999990,63.620000000000000,3627.31,501.25,17.020000000000000,37.18000000000000,4664.85,700.97,45.26999999999950,86.08999999999990,3766.74,713.17,63.10000000000040,107.96000000000000,3872.23,562.05,31.9699999999998,50.57000000000010,4180.15,576.8,29.78000000000070,49.88,4166.57,510.71,29.28000000000070,42.37000000000010,4575.29,599.73,41.35999999999970,65.16000000000000,3943.16,500.72,27.91000000000030,40.88,3768.55,489.18,17.960000000000000,25.84000000000000,3509.87,601.84,30.360000000000100,67.65000000000000,4235.63,611.85,48.32999999999990,79.24000000000000,3904.21,568.75,39.50999999999980,61.59000000000000,4382.5,587.27,41.94999999999980,55.88,3862.17,539.43,27.69000000000010,42.260000000000100,3477.77,566.64,36.21000000000000,62.64000000000000,3502.84,514.44,18.08999999999970,39.559999999999900,3570.93,495.5,15.320000000000200,33.809999999999900,3827.47,502.16,21.110000000000100,33.45000000000000,2997.88,519.66,26.759999999999800,42.24000000000000,4440.5,595.72,14.449999999999800,12.030000000000000,4074.67,532.63,25.05999999999950,38.60000000000000,4480.9,560.69,21.8700000000008,40.68999999999990 -888,3518.49,575.26,27.600000000000400,63.55000000000000,3627.98,501.33,17.009999999999800,37.12000000000010,4662.94,700.9,45.27000000000040,86.08000000000000,3767.34,713.17,62.690000000000100,107.95000000000000,3870.79,561.5,31.800000000000200,50.48000000000000,4181.21,577.09,29.779999999999700,49.88,4165.99,510.62,29.28000000000070,42.370000000000000,4574.71,599.67,41.35999999999970,65.16000000000010,3941.12,500.5,28.01000000000020,40.98000000000000,3767.18,489.19,17.960000000000000,25.84000000000000,3510.75,602.0,30.360000000000100,67.65000000000000,4237.19,612.08,48.33000000000080,79.24000000000000,3903.4,568.62,39.50999999999980,61.60000000000000,4383.25,586.8,41.94999999999980,55.870000000000000,3862.26,539.61,27.6899999999996,42.26000000000000,3478.34,566.42,36.08999999999970,62.39000000000000,3502.98,514.57,18.090000000000100,39.559999999999900,3571.04,495.47,15.329999999999900,33.800000000000000,3825.67,502.08,21.110000000000100,33.44,2997.76,519.58,26.759999999999800,42.24000000000000,4435.81,593.76,14.449999999999800,12.030000000000000,4074.91,532.63,25.0600000000004,38.60000000000000,4480.28,560.59,21.86999999999990,40.69999999999990 -889,3519.13,575.05,27.579999999999900,63.47000000000000,3628.65,501.4,16.98999999999980,37.06000000000010,4661.02,700.82,45.26999999999950,86.08999999999990,3767.95,713.17,62.27000000000000,107.93000000000000,3869.35,560.95,31.63999999999990,50.40000000000000,4182.28,577.38,29.78000000000070,49.88,4165.41,510.52,29.279999999999700,42.370000000000000,4574.14,599.6,41.349999999999500,65.16000000000000,3939.07,500.27,28.11999999999990,41.08000000000000,3765.8,489.2,17.960000000000000,25.84000000000000,3511.64,602.16,30.34999999999990,67.65000000000000,4238.76,612.31,48.31999999999970,79.24000000000000,3902.58,568.5,39.52000000000000,61.60000000000000,4383.99,586.33,41.96000000000000,55.870000000000000,3862.34,539.8,27.69000000000010,42.26000000000000,3478.92,566.21,35.9699999999998,62.13,3503.12,514.7,18.079999999999900,39.559999999999900,3571.16,495.43,15.329999999999900,33.81,3823.87,501.99,21.110000000000100,33.450000000000000,2997.64,519.5,26.76000000000020,42.24000000000000,4433.26,592.72,14.460000000000000,12.030000000000000,4075.14,532.62,25.070000000000200,38.610000000000000,4477.9,560.12,21.8700000000008,40.700000000000000 -890,3519.77,574.85,27.559999999999900,63.39000000000000,3629.33,501.48,16.960000000000000,36.99000000000000,4659.1,700.75,45.26999999999950,86.08000000000000,3768.56,713.17,61.84999999999990,107.91000000000000,3867.9,560.41,31.48000000000000,50.30000000000010,4183.34,577.67,29.779999999999700,49.870000000000000,4164.83,510.43,29.279999999999700,42.37000000000000,4573.56,599.54,41.349999999999500,65.16000000000010,3937.02,500.04,28.23000000000000,41.19,3764.43,489.22,17.950000000000300,25.83999999999990,3512.5,602.06,30.360000000000100,67.65000000000010,4240.32,612.54,48.32999999999990,79.24000000000000,3901.77,568.38,39.51000000000020,61.59000000000000,4384.74,585.86,41.96000000000000,55.870000000000000,3861.85,539.72,27.69000000000010,42.26000000000000,3479.5,565.99,35.840000000000100,61.88,3503.26,514.82,18.079999999999900,39.569999999999900,3571.28,495.4,15.329999999999900,33.81000000000010,3822.07,501.91,21.10999999999970,33.44,2997.51,519.41,26.759999999999800,42.24000000000000,4430.72,591.68,14.449999999999800,12.020000000000100,4075.38,532.62,25.06999999999970,38.60000000000000,4475.52,559.65,21.8799999999992,40.700000000000000 -891,3520.41,574.64,27.540000000000000,63.32000000000010,3630.0,501.55,16.940000000000100,36.93000000000000,4657.18,700.67,45.27999999999980,86.09000000000000,3769.17,713.17,61.42999999999980,107.90000000000000,3866.46,559.86,31.309999999999900,50.21000000000000,4184.4,577.95,29.78000000000070,49.88,4164.25,510.33,29.279999999999700,42.37000000000010,4572.98,599.48,41.35000000000040,65.16000000000000,3934.98,499.82,28.329999999999900,41.28000000000000,3763.05,489.23,17.960000000000000,25.840000000000000,3513.36,601.96,30.35999999999970,67.65000000000000,4241.89,612.77,48.31999999999970,79.23000000000000,3900.96,568.26,39.50999999999980,61.59000000000000,4385.49,585.39,41.94999999999980,55.870000000000000,3861.36,539.64,27.69000000000010,42.26000000000000,3480.07,565.78,35.7199999999998,61.620000000000000,3503.39,514.95,18.090000000000100,39.559999999999900,3571.4,495.37,15.329999999999900,33.809999999999900,3820.27,501.82,21.09999999999990,33.45000000000000,2997.39,519.33,26.76000000000020,42.24000000000000,4428.17,590.63,14.460000000000000,12.030000000000000,4075.62,532.61,25.06999999999970,38.610000000000000,4473.15,559.18,21.8700000000008,40.700000000000000 -892,3521.05,574.43,27.520000000000000,63.25,3630.67,501.63,16.920000000000100,36.870000000000000,4655.27,700.6,45.26999999999950,86.09000000000000,3769.78,713.17,61.00999999999980,107.88,3865.01,559.31,31.15999999999990,50.13000000000010,4185.47,578.24,29.779999999999700,49.88,4163.67,510.23,29.269999999999500,42.38,4572.4,599.41,41.35000000000040,65.16000000000010,3932.93,499.59,28.45000000000030,41.39000000000000,3761.67,489.24,17.960000000000000,25.840000000000000,3514.22,601.87,30.360000000000100,67.65000000000000,4243.45,612.99,48.32999999999990,79.24000000000000,3900.15,568.14,39.50999999999980,61.59000000000000,4386.24,584.91,41.94999999999980,55.870000000000000,3860.87,539.56,27.69000000000010,42.260000000000100,3480.65,565.56,35.58999999999970,61.370000000000000,3503.53,515.08,18.08999999999970,39.559999999999900,3571.52,495.34,15.329999999999900,33.80000000000000,3818.46,501.73,21.110000000000100,33.44999999999990,2997.26,519.25,26.759999999999800,42.24000000000000,4425.63,589.59,14.449999999999800,12.030000000000000,4075.86,532.61,25.070000000000200,38.60000000000000,4470.77,558.72,21.86999999999990,40.68999999999990 -893,3521.69,574.22,27.5,63.18000000000000,3631.34,501.7,16.899999999999600,36.81,4653.35,700.53,45.26999999999950,86.08000000000000,3770.39,713.17,60.59000000000020,107.87,3863.57,558.77,30.98999999999980,50.03000000000000,4185.13,577.63,29.779999999999700,49.88,4163.09,510.14,29.269999999999500,42.370000000000000,4571.82,599.35,41.35000000000040,65.16000000000000,3930.88,499.37,28.559999999999900,41.49000000000000,3760.3,489.25,17.960000000000000,25.850000000000000,3515.08,601.77,30.360000000000100,67.65000000000000,4245.01,613.22,48.32999999999990,79.24000000000000,3899.34,568.01,39.50999999999980,61.60000000000000,4386.99,584.44,41.94999999999980,55.86999999999990,3860.39,539.49,27.68000000000030,42.25,3481.23,565.34,35.46000000000000,61.110000000000000,3503.67,515.21,18.090000000000100,39.559999999999900,3571.64,495.31,15.320000000000200,33.80000000000000,3817.08,501.58,21.110000000000100,33.45000000000000,2997.14,519.17,26.76000000000020,42.24000000000000,4423.08,588.55,14.460000000000000,12.030000000000100,4076.1,532.61,25.070000000000200,38.60000000000000,4468.39,558.25,21.86999999999990,40.690000000000100 -894,3522.33,574.02,27.48000000000000,63.09000000000000,3632.02,501.77,16.88000000000010,36.75,4651.43,700.45,45.26999999999950,86.08999999999990,3771.0,713.17,60.17000000000010,107.85000000000000,3862.13,558.22,30.829999999999900,49.94999999999990,4184.78,577.03,29.78000000000070,49.870000000000000,4162.5,510.04,29.279999999999700,42.37000000000000,4570.78,599.25,41.35000000000040,65.16000000000000,3928.84,499.14,28.65999999999990,41.59000000000000,3758.92,489.27,17.960000000000000,25.840000000000000,3515.94,601.67,30.360000000000100,67.65000000000010,4246.58,613.45,48.31999999999970,79.24000000000000,3898.53,567.89,39.50999999999980,61.60000000000000,4387.73,583.97,41.96000000000000,55.870000000000000,3859.9,539.41,27.67999999999980,42.26000000000000,3481.8,565.13,35.33999999999970,60.85000000000000,3503.81,515.34,18.079999999999900,39.559999999999900,3571.76,495.27,15.319999999999700,33.81000000000010,3815.7,501.43,21.110000000000100,33.45000000000000,2997.02,519.08,26.76000000000020,42.24000000000000,4420.54,587.51,14.449999999999800,12.030000000000000,4076.34,532.6,25.06999999999970,38.60000000000000,4466.01,557.78,21.86999999999990,40.690000000000100 -895,3522.98,573.81,27.46000000000000,63.020000000000100,3632.69,501.85,16.860000000000100,36.68000000000000,4649.51,700.38,45.27999999999980,86.08000000000000,3771.61,713.17,59.75,107.84000000000000,3860.68,557.67,30.67000000000010,49.860000000000000,4184.44,576.42,29.78000000000070,49.88,4161.92,509.95,29.279999999999700,42.37000000000010,4569.74,599.16,41.35000000000040,65.16000000000010,3926.79,498.91,28.770000000000000,41.70000000000000,3757.54,489.28,17.960000000000000,25.840000000000000,3516.81,601.58,30.34999999999990,67.65000000000000,4248.14,613.68,48.32999999999990,79.24000000000000,3897.72,567.77,39.51000000000020,61.59000000000000,4388.48,583.5,41.96000000000000,55.870000000000000,3859.41,539.33,27.68000000000030,42.26000000000000,3482.38,564.91,35.21000000000000,60.60000000000000,3503.94,515.47,18.090000000000100,39.559999999999900,3571.88,495.24,15.319999999999700,33.809999999999900,3814.32,501.28,21.10999999999970,33.450000000000000,2996.89,519.0,26.76000000000020,42.24000000000000,4417.99,586.47,14.460000000000000,12.030000000000000,4076.58,532.6,25.0600000000004,38.60000000000000,4463.63,557.31,21.86999999999990,40.700000000000000 -896,3523.62,573.6,27.44000000000010,62.94999999999990,3633.36,501.92,16.83999999999970,36.62999999999990,4647.6,700.3,45.26999999999950,86.09000000000000,3772.22,713.17,59.34000000000020,107.82000000000000,3859.24,557.12,30.5,49.77000000000000,4184.09,575.81,29.779999999999700,49.88000000000010,4161.34,509.85,29.279999999999700,42.370000000000000,4568.7,599.06,41.36000000000060,65.16000000000010,3924.74,498.69,28.88000000000010,41.79000000000000,3756.17,489.29,17.960000000000000,25.85000000000000,3517.67,601.48,30.360000000000100,67.65000000000000,4248.49,613.41,48.32999999999990,79.24000000000000,3896.9,567.65,39.52000000000000,61.59000000000000,4389.23,583.02,41.95000000000070,55.88,3858.92,539.25,27.67999999999980,42.26000000000000,3482.96,564.7,35.07999999999990,60.33999999999990,3504.08,515.6,18.090000000000100,39.559999999999900,3572.0,495.21,15.320000000000200,33.80000000000000,3812.94,501.13,21.110000000000100,33.440000000000100,2996.77,518.92,26.76000000000020,42.24000000000000,4415.45,585.43,14.449999999999800,12.030000000000100,4076.82,532.59,25.059999999999900,38.60000000000000,4461.25,556.84,21.88000000000010,40.69999999999990 -897,3524.26,573.39,27.41999999999960,62.88,3634.04,502.0,16.809999999999900,36.559999999999900,4645.68,700.23,45.26999999999950,86.09000000000000,3772.83,713.17,58.92000000000010,107.81000000000000,3857.8,556.58,30.33999999999970,49.68000000000000,4183.75,575.2,29.779999999999700,49.88,4160.76,509.76,29.279999999999700,42.370000000000000,4567.66,598.96,41.36000000000060,65.16000000000000,3922.7,498.46,28.98000000000000,41.900000000000000,3754.79,489.31,17.960000000000000,25.84000000000000,3518.53,601.38,30.35999999999970,67.65000000000000,4248.84,613.14,48.32999999999990,79.23000000000000,3896.09,567.53,39.50999999999980,61.59000000000000,4389.98,582.55,41.95000000000070,55.870000000000000,3858.43,539.18,27.68000000000030,42.25,3483.54,564.48,34.96000000000000,60.09000000000000,3504.22,515.72,18.090000000000100,39.569999999999900,3572.12,495.18,15.320000000000200,33.80000000000000,3811.56,500.98,21.110000000000100,33.43999999999990,2996.64,518.84,26.76000000000020,42.24000000000000,4412.9,584.39,14.460000000000000,12.020000000000000,4077.06,532.59,25.059999999999900,38.60000000000000,4458.88,556.37,21.86999999999990,40.700000000000000 -898,3524.9,573.19,27.40000000000010,62.80000000000000,3634.71,502.07,16.790000000000000,36.50000000000010,4643.76,700.16,45.26999999999950,86.08000000000000,3773.43,713.17,58.51000000000020,107.79000000000000,3856.35,556.03,30.18000000000030,49.59000000000000,4183.41,574.59,29.779999999999700,49.88,4160.18,509.66,29.279999999999700,42.37000000000000,4566.62,598.87,41.35999999999970,65.16000000000000,3920.65,498.23,29.08999999999970,42.01000000000000,3753.42,489.32,17.949999999999800,25.84000000000000,3519.39,601.29,30.360000000000100,67.65000000000010,4249.19,612.86,48.33000000000080,79.24000000000000,3895.28,567.4,39.50999999999980,61.60000000000000,4390.73,582.08,41.95000000000070,55.870000000000000,3857.94,539.1,27.67999999999980,42.26000000000000,3484.11,564.27,34.83999999999970,59.83000000000000,3504.36,515.85,18.08999999999970,39.559999999999900,3572.24,495.14,15.320000000000200,33.81000000000010,3810.18,500.83,21.110000000000100,33.44,2996.52,518.75,26.76000000000020,42.24000000000000,4410.36,583.35,14.450000000000700,12.020000000000000,4077.29,532.58,25.06999999999970,38.610000000000000,4456.5,555.9,21.86999999999990,40.700000000000000 -899,3525.54,572.98,27.38000000000010,62.72000000000000,3635.38,502.15,16.779999999999700,36.430000000000100,4641.85,700.08,45.26999999999950,86.08999999999990,3774.04,713.17,58.09000000000020,107.78000000000000,3854.91,555.48,30.020000000000000,49.5,4183.06,573.99,29.779999999999700,49.88,4159.6,509.57,29.279999999999700,42.37000000000010,4565.58,598.77,41.35999999999970,65.16000000000000,3918.6,498.01,29.21000000000000,42.10000000000000,3752.04,489.33,17.960000000000000,25.85000000000000,3520.25,601.19,30.360000000000100,67.65000000000000,4249.54,612.59,48.31999999999970,79.24000000000000,3894.47,567.28,39.51000000000020,61.60000000000000,4391.47,581.61,41.96000000000000,55.870000000000000,3857.45,539.02,27.68000000000030,42.26000000000000,3484.69,564.05,34.71000000000000,59.57000000000010,3504.5,515.98,18.079999999999900,39.559999999999900,3572.36,495.11,15.319999999999700,33.809999999999900,3808.8,500.68,21.09999999999990,33.44,2996.4,518.67,26.759999999999800,42.24000000000000,4407.81,582.3,14.460000000000000,12.030000000000100,4077.53,532.58,25.070000000000200,38.59999999999990,4454.12,555.43,21.86999999999990,40.700000000000000 \ No newline at end of file